Hello,

Is there a standard way for a .so file to find where it was loaded from?

Background:

I ported an ISAPI module from windows to Linux (to connect to Zeus
web server). The original code on Windows relays on the .DLL's ability
to find its path on the disk in order to lookup a configuration file relative
to it.

On Linux I just used an anvironment variable but later I noticed that
the Java Plugin for Mozilla relays on being symbolically-linked
(rather than copied) in order to run, and I suspect that maybe it
needs this in order to find the rest of the files at runtime (e.g. the
runtime class library, the zoneinfo files etc).
I'd like to use the same trick myself.

Currently I think of immitating the ld.so algorithm for finding files
but that could get unreliable if the algorithm changes one day,
and involves duplicating of the work already done by the loader itself.
I'd rather try to get the real info from the dynamic loader.

Any ideas?

Thanks,

--Amos

(BTW - the ISAPI module is Caucho's Resin and is under GPL, the port
is expected to be included in the next release of Resin (3.0.12), and I'll be
happy to provide the patch to anyone who asks).
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to