Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

_dl_runtime_resolve -- When do the shared objects get loaded in to memory?

Tags:

c++

linux

ld

We have a message processing system with high performance demands. Recently we have noticed that the first message takes many times longer then subsequent messages. A bunch of transformation and message augmentation happens as this goes through our system, much of it done by way of external lib.

I just profiled this issue (using callgrind), comparing a "run" of just one message with a "run" of many messages (providing a baseline of comparison).

The main difference I see is the function "do_lookup_x" taking up a huge amount of time. Looking at the various calls to this function, they all seem to be called by the common function: _dl_runtime_resolve. Not sure what this function does, but to me this looks like the first time the various shared libraries are being used, and are then being loaded in to memory by the ld.

Is this a correct assumption? That the binary will not load the shared libraries in to memory until they are being prepped for use, therefore we will see a massive slowdown on the first message, but on none of the subsequent?

How do we go about avoiding this?

Note: We operate on the microsecond scale.

like image 503
Alex Avatar asked Jun 15 '10 22:06

Alex


2 Answers

From the ld.so(8) man page, ENVIRONMENT section:

   LD_BIND_NOW
          (libc5;  glibc since 2.1.1) If set to a non-empty string, causes
          the dynamic linker to resolve all  symbols  at  program  startup
          instead  of deferring function call resolution to the point when
          they are first referenced.  This is useful when using  a  debug-
          ger.

So, LD_BIND_NOW=y ./timesensitiveapp.

like image 125
Ignacio Vazquez-Abrams Avatar answered Sep 22 '22 02:09

Ignacio Vazquez-Abrams


As an alternative to Ignacio Vazquez-Abrams's runtime suggestion, you can do the same thing at link time. When you link your shared library, pass the -z now flag to the linker.

like image 22
caf Avatar answered Sep 24 '22 02:09

caf