This repository contains the canonical source for mdb_v8, an
mdb debugger module ("dmod") for debugging both
live processes and core dumps of programs using Google's V8 JavaScript
engine, and particularly
Node.js. This module fully supports Node versions 5, 4,
0.12, and 0.10. Basic functionality (stack traces, printing out objects, and
using findjsobjects
) should also work on Node versions 0.8, 0.6, and 0.4, but
those versions are not regularly tested.
Downstream versions of mdb_v8 exist in both Node.js and SmartOS. See CHANGES.md for details.
For information about using these tools, see the usage guide.
You can build mdb_v8 by cloning this repository and running make
. It will
only build and run on illumos-based systems. See the usage
guide for details on system support.
Binaries for mdb_v8 can be found at https://us-east.manta.joyent.com/Joyent_Dev/public/mdb_v8. If you have the Manta command-line tools installed, you can list the latest binaries with:
$ mfind -t o $(mget -q /Joyent_Dev/public/mdb_v8/latest)
/Joyent_Dev/public/mdb_v8/v1.4.3/mdb_v8_amd64.so
/Joyent_Dev/public/mdb_v8/v1.4.3/mdb_v8_ia32.so
You can fetch a specific binary like this (in this case, the 32-bit version 1.4.2 binary):
$ mget -O /Joyent_Dev/public/mdb_v8/v1.4.3/mdb_v8_ia32.so
or using curl:
$ curl -O https://us-east.manta.joyent.com/Joyent_Dev/public/mdb_v8/v1.4.3/mdb_v8_ia32.so
This one-liner will get you the latest 32-bit binary:
$ mget -O $(mget -q /Joyent_Dev/public/mdb_v8/latest)/mdb_v8_ia32.so
An important design constraint on this tool is that it should not rely on assistance from the JavaScript runtime environment (i.e., V8) to debug Node.js programs. This is for many reasons:
In short, there are many kinds of problems that cannot be debugged with a debugger that relies on the running process to help debug itself. The ACM Queue article Postmortem Debugging in Dynamic Environments outlines the history and motivation for postmortem debugging and the challenges underlying postmortem debugging in higher-level languages.
We built this tool on mdb for two reasons:
In order to provide postmortem support, mdb_v8 has to grok a number of internal implementation details of the V8 VM. Some algorithms, like property iteration, are (regrettably) duplicated inside mdb_v8. But many pieces, particularly related to the structure of V8 internal fields, are dynamically configured based on the process being debugged. It works like this:
As part of the V8 build process, a C++ file is
generated
that defines a number of global int
s that describe the class hierarchy that
V8 uses to represent Heap objects. The class names, their inheritance
hierarchy, and their field names are described by the names of these
constants, and the values describe offsets of fields inside class instances.
This C++ file is linked into the final V8 binary.
You can think of the debug metadata as debug information similar to DWARF or CTF, but it's considerably lighter-weight than DWARF and much easier to interpret. Besides that, because of the way V8 defines heap classes, traditional DWARF or CTF would not have been sufficient to encode the information we needed because many of the relevant classes and nearly all of the class members are totally synthetic at compile-time and not present at all in the final V8 binary.
Because of this approach (rather than, say, attempting to parse the C++ header files that describe up the V8 heap), the values of these constants are always correct for the program being debugged, whether it's 32-bit, 64-bit, or has any compile-time configuration options altered that would affect these structures.
An ideal solution would avoid duplicating any VM knowledge in the debugger module. There are two obvious approaches for doing that:
Both of these approach require considerable first-class support from the VM (and team, who would have to maintain these implementations), which does not seem to exist for the case of V8 (or any other VM we know of). The existing approach requires minimal maintenance because much of the metadata is created through the same mechanisms in the build process that define the classes and fields themselves.
See the Developer's Notes for details.
With the exception of the "cstyle.pl" tool, all components in this repo are licensed under the MPL 2.0. "cstyle.pl" is licensed under the CDDL. (Various pieces in this repo were historically released under other open source licenses as well.)