I am executing a program say A from another by first fork-ing followed by execve(). Now the problem is I would want A to use my library that I would generaly do by using LD_PRELOAD. How do I do it within execve().
Thanks
|
|
|
you can pass the LD_PRELOAD in envp execve's argument: the program that gets execved, named "run":
the program that does the execve, named "ex":
running it:
EDIT: the error shown gets thrown because "caca" lib can't be preloaded for run, so it works. (I skipped the fork() part for clarity but the usage is the same) EDIT: doing something like:
will not automagically preload caca lib when execve()-ing run if you're not passing it via envp execve()'s argument |
||||
|
|
|
If you want to use LD_PRELOAD just for program A (and not for its parent) you could load it via the shell; pass to the shell the name of the program to execute and add LD_PRELOAD to the environment. |
|||
|
|
|
Update After reading the added info from the question, I'm guessing that you might have to specify a complete path, or set LD_LIBRARY_PATH as well? Since the loader is acknowledging the fact that the preload is ordered. Otherwise, I can imagine there being a security restriction (allthough it would have to be tied to being run invoked from a login shell, which seems quite brittle to detect). Nonetheless, you may wish to try running as root (use It would appear from this earlier question that such behaviour is the default LD_PRELOAD affects new child even after unsetenv("LD_PRELOAD") Have you tested it? |
||||