-
Notifications
You must be signed in to change notification settings - Fork 585
Recording Firefox
This page is intended to help Firefox/Gecko developers get started using rr to debug Firefox.
You must have Linux installed with a recent kernel. If you're not running Linux already, an option is set up a virtual machine in which to record Firefox. Be forewarned though that
- rr requires a VM hypervisor that virtualizes CPU performance counters. VMWare Workstation supports that.
- there's a 20% or so performance hit from running in a VM; generally speaking recorder overhead increases from ~1.2x to ~1.4x. (It's a feather in the cap of the hypervisor authors that the hit is that small, though!)
- Some features (reverse execution) may not work well in VMWare due to a VMWare optimization that can be disabled this way.
Ensure that you've installed or built rr and have used it successfully.
Firefox developers are strongly encouraged to build rr from source. If your Firefox patch triggers a bug in rr, rr developers will fix that bug with high priority. You might be able to pull a fix within a few hours or days instead of waiting for the next release.
To record Firefox running normally, simply launch it under rr as you would if running it under valgrind or gdb
rr $ff-objdir/dist/bin/firefox ...
This will save a trace to your working directory as described in the usage instructions. Please refer to those instructions for details on how to debug the recording, which isn't covered in this document.
When recording and replaying Firefox running with the Linux sandbox, you will get SIGSYS signals frequently. This is expected behavior caused by the sandbox. In gdb, use handle SIGSYS noprint nostop
to suppress the signals.
You can use the test runners' --debugger
feature to punch rr down through the layers of python script to where Firefox is launched. This is used in the same way you would use --debugger
to run valgrind or gdb, for example:
./mach mochitest --debugger=rr ...
The test harnesses disable the slow-script timeout when the --debugger
argument is passed. That's usually sensible, because you don't want those warnings being generated while Firefox is stopped in gdb. However, this has been observed to change Gecko behavior. rr doesn't need to have the slow-script timeout disabled, so to avoid those kinds of pitfalls, pass the --slowscript
argument to the test harness.
To run rr in chaos mode:
./mach mochitest --debugger=rr --debugger-args="record --chaos"
You can also run the entire test harness in rr:
rr ./mach mochitest ...
The trace will contain many processes, so to debug the correct one, you'll want to use rr ps
or rr replay -p firefox
etc.
rr should work out of the box with multi-process Firefox. Once you have a recording you can use rr ps
to show all the process that were recorded and rr replay -p <pid>
to attach to a particular process.
You can combine that with the -M
and -g
flags to jump to a particular point in a particular process' lifetime.
If you encounter a problem with rr, please file an issue. Firefox bugs are high priority, so usually your issue can be fixed very quickly.
If you want to chat with rr developers, because you need more help or want to contribute or want to complain, we hang out in the #research channel on moznet.
You also may find these debugging protips helpful, though many are for rr developers, not users.
Happy debugging!