vote up 3 vote down star
2

I came across a reference to it recently on proggit and (as of now) it is not explained.

I suspect this might be it, but I don't know for sure.

flag

79% accept rate

3 Answers

vote up 3 vote down check

If you set LD_PRELOAD to the path of a shared object, that file will be loaded before any other library (including the C runtime, libc.so). So to run ls with a your special malloc() implementation, do this:

$ LD_PRELOAD=/path/to/my/malloc.so /bin/ls
link|flag
I had no idea this existed... it seems like it would be a major vector for security attacks. Any idea how it is secured? – rmeador Jan 8 at 22:25
It is secured by the fact the loader will ignore LD_PRELOAD if ruid != euid -- Joshua – Joshua Jan 8 at 22:30
vote up 2 vote down

You can override symbols in the stock libraries by creating a library with the same symbols and specifying the library in LD_PRELOAD.

Some people use it to specify libraries in nonstandard locations, but LD_LIBRARY_PATH is better for that purpose.

link|flag
vote up 3 vote down

With LD_PRELOAD you can give libraries precedence.

For example you can write a library which implement malloc and free. And by loading these with LD_PRELOAD your malloc and free will be executed rather than the standard ones.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.