Skip to content
Advertisement

How do I update my libthread_db shared library so as to match libpthread shared library?

I am using CentOS. I didn’t set up the server and the environment is quite old.

I tried to debug a multithreaded server program and some error showed up.

JavaScript

Then I realize that the problem is that the version of libpthread shared library I link doesn’t match the version of libthread_db shared library which gdb uses when debugging.

I read these 2 related questions Unable to Debug Multi-Threaded Application with gdb, GDB debugging warnings .

Then I tried to figure out what version of each is by using file command (Please tell me if using file to check the differences is correct. Anyway, I found some differences.)

JavaScript

So my progam is linked to libpthread-2.17.so , which is for for GNU/Linux 2.6.16, and gdb uses libthread_db-1.0.so, which is for for GNU/Linux 2.6.18, mismatch? (Well I am not sure if I can compare them based on this information, can I?)

Does it mean that now I need to download a libthread_db-1.0.so which is for for GNU/Linux 2.6.16 and link libthread_db.so.1 to it? Where can I download it from?

By the way, I also feel strange that for libpthread-2.17.so and libpthread-2.12.so on my server , 2.17 > 2.12, the former should be a newer version. But it’s for a lower Linux version (2.6.16), maybe someone just copy it and rename the file? I don’t know. 🙁

Advertisement

Answer

Your question is the exact duplicate of the two answers you’ve already found: someone installed GLIBC-2.17 onto your system (which likely had GLIBC-2.12 originally), but failed to install matching libthread_db.so.1.

The output of fileGNU/Linux 2.6.18 is a red herring and is irrelevant.

The good news is that updating libpthread_db is risk-free — if you screw up, the worst that can happen is that GDB will not work for multi-threaded programs, but since that is the current state, you can’t make it any worse.

But you should be able to make it better:

  • download GLIBC-2.17 source, configure and build it (but don’t make install, or you’ll likely brick your system).
  • as part of the build, there should now exist build/nptl_db/libthread_db.so.1
  • test it by pointing GDB to it with set libthread-db-search-path /path/to/build/nptl_db and trying to debug your program again.

If that works, you can overwrite the non-working /lib64/libthread_db.so.1 with the one you just built.

Update:

Is there any command I can use to grab some version information of these shared library files?

For libpthread*.so.0, this is quite easy:

JavaScript

For libthread_db.so.1 it’s quite a bit harder: you need to disassemble td_ta_new, and look for memcmp call, which could be inlined:

JavaScript

Here, at address 0x022e2 is an inlined call to memcmp("2.30", <data-read-from-nptl_version>, 5).

Advertisement