Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

4 Answers

up vote 106 down vote accepted

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
share|improve this answer
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 '09 at 22:25
56  
It is secured by the fact the loader will ignore LD_PRELOAD if ruid != euid -- Joshua – Joshua Jan 8 '09 at 22:30
1  
@Joshua: what are ruid and euid? – heinrich5991 Nov 4 '12 at 10:27
@heinrich5991 Real and effective user ids: lst.de/~okir/blackhats/node23.html – gsingh2011 Mar 2 at 6:22
Necropost: @Joshua any advice how to disable the security setting? Currently working on a CTF. And I want them to use a specific exploit on sudo ( CVE: 2012-0809 ). – Stolas Jun 7 at 13:06
show 1 more comment

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.

share|improve this answer
7  
"Some people use it to specify libraries in nonstandard locations"... Really? Sounds like "Some people use it wrong"! – Tom Jun 10 '11 at 7:52
2  
LD_PRELOAD can by virtue of load order intercept application-specified hardcoded paths. – Joshua Jun 10 '11 at 16:05

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.

share|improve this answer

LD_PRELOAD lists shared libraries with functions that override the standard set, just as /etc/ld.so.preload does. These are implemented by the loader /lib/ld-linux.so. If you want to override just a few selected functions, you can do this by creating an overriding object file and setting LD_PRELOAD; the functions in this object file will override just those functions leaving others as they were.

For more information on shared libraries visit http://tldp.org/HOWTO/Program-Library-HOWTO/shared-libraries.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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