views:

90

answers:

1

LD_PRELOAD hooks some functions for the entire process, but I need to hook a particular function for only one dynamically linked library by its name.

A: 

See the article Redirecting functions in shared ELF libraries. There's code of ELF hooking attached.

iUm