Search Down the Stack

I’ve found it useful to search though the source code of things lower in the stack lately. For example I saw an error something like this at work recently:

❯ rake test
symbol lookup error: /home/jez/.../foo.so: undefined symbol bar

I was pretty confused. Modulo the names of commands and files, this was pretty much all the output.

So I started searching. First I searched through my codebase for "symbol lookup error", but found nothing. Surely that string exists somewhere. That must mean it’s coming from lower in the stack?

The next level lower would mean third party Ruby gems. At work we use Bundler in a mode where it installs all gems into a single convenient folder in the current directory: ./vendor/bundle/. But a search in that folder turned up nothing again. So… further down?

If it’s not from the app, and not from the gems, then maybe it’s in Ruby itself? I cloned the Ruby source, checked out the version tag for the Ruby version we’re running, and searched for "symbol lookup error" once again. And again nothing!

There’s still plenty of layers below us, so let’s keep peeling them back. Ruby is written in C, which means we should check libc next (the C standard library). There are multiple libc implementations, but I was running this on Linux, so let’s check GNU libc (glibc). glibc is isn’t on GitHub, but that’s not a huge deterrant. Here’s the search:

❯ rg -t c 'symbol lookup error'
dl-lookup.c
876:      _dl_signal_cexception (0, &exception, N_("symbol lookup error"));

That’s a bit of a smoking gun! After all those layers, we found our error message in libc itself. (This gave me a lot of leads on the problem at hand, e.g., I had definitely ruled out a problem in my app or its dependencies, and I was thinking, “probably something is wrong about how foo.so was compiled.” There’s a fun story here about how Ruby C extensions work, but that’s a tangent for another time.)

My point is that searching all the code is a super power, and it applies to more than just searching the code we’ve written. What a blessing that the tools we’re building on, like Ruby and GNU libc, are all open source!

The next time it looks like a problem is outside the scope of your app’s code, maybe try searching the code:

For me, I’ve already noticed it help save me time and give me more context when I’m debugging.