<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
<A href="http://linuxmafia.com/faq/Admin/ld-lib-path.html">http://linuxmafia.com/faq/Admin/ld-lib-path.html</A><BR><BR><BR><BR>
<H3>Why setting LD_LIBRARY_PATH is considered harmful</H3>
For the following reasons: 
<UL>
<LI><TT>LD_LIBRARY_PATH</TT> is used in preference to any run time or default system linker path. If (God forbid) you had it set to something like <TT>/dcs/spod/baduser/lib</TT>, if there was a hacked version of <TT>libc</TT> in that directory (for example) your account could be compromised. It is for this reason that set-uid programs completely ignore <TT>LD_LIBRARY_PATH</TT>. 
<LI>When code is compiled and depends on this to work, it can cause confusion where different versions of a library are installed in different directories, for example there is a <TT>libtiff</TT> in <TT>/usr/openwin/lib</TT> and <TT>/usr/local/lib</TT>. In this case, the former library is an older one used by some programs that come with Solaris. 
<LI>Sometimes when using precompiled binaries they may have been built with 3rd party libraries in specific locations; ideally code should either ship with the libraries and install into a certain location or link the code as a pre-installation step. Solaris 7 introduces <TT>$ORIGIN</TT> which allows for a <I>relative</I> library location to be specified at run time (see the <A href="http://www:8888/ab2/coll.45.12/LLM/@Ab2TocView?" target=main>Solaris Linker and Libraries Guide</A>). The alternative is to set <TT>LD_LIBRARY_PATH</TT> on a per-program basis, either as a wrapper program to the real program or a shell alias. Note however, that <TT>LD_LIBRARY_PATH</TT> may be inherited by programs called by the wrapped one ... <BR><BR></LI></UL>
<P><A href="http://lists.trolltech.com/qt4-preview-feedback/2005-04/msg00648.html">http://lists.trolltech.com/qt4-preview-feedback/2005-04/msg00648.html</A><BR>
 <BR>
Requiring LD_LIBRARY_PATH is not a good idea imo. It's a variable meant to<BR>override defaults, not for the common case. If all packages on ours disks<BR>would require this variable hell would break loose. Ask a system<BR>administrator.<BR><BR>
.... different person...<BR>
 <BR>
 <BR>
Unfortunately rpath is not a solution by itself (although it could be <BR>part of the solution). Having rpath point to the build directory is a <BR>security hole. It can be part of the solution though<BR>
 <BR>
 <BR>
..yet another...shades of things I have said here...<BR>
 <BR>
Now you may argue that runMyAppUsingQtAndMyLib needs to be re-linked <BR>deployment anyway. I agree that's what some programs do or should do <BR>(some have even suggested to distribute *.o files and relink them on the <BR>target platform using an adequate rpath, but that's a bad idea since the <BR>linker may be unpatched and the C++ compiler broken on the target <BR>platform). Some users won't relink though. Shouldn't Qt protect them by <BR>default?<BR><BR>What do you think?<BR><BR>
 <BR>
<A href="http://lists.apple.com/archives/Unix-porting/2005/May/msg00034.html">http://lists.apple.com/archives/Unix-porting/2005/May/msg00034.html</A><BR><BR>
 <BR>
<FONT face="Courier New">As others have pointed out there is not really an equivalent of LD_LIBRARY_PATH because the whole shared library system is unique to MacOS X/Darwin.<BR><BR><TT>I think it is fair to say that if you find yourself using DYLD_LIBRARY_PATH except for testing uninstalled binaries, then you are doing it wrong. Every executable file on Darwin contains the full paths of the libraries against which it was linked, and these are used first by dyld at runtime. They can be changed after linking. (see docs about install_name) So you should never need to specify some odd DYLD_LIBRARY_PATH with a properly installed library wherever it is installed.</TT></FONT><BR><BR>
 <BR>
So now maybe I should search the web for negative comments about $origin?<BR>
Well, when I try "what is wrong with ld $origin" I again find criticism of LD_LIBRARY_PATH. :)<BR>
Ok, I admit I didn't look very hard. I'll look more later.<BR>
 <BR>
So you see, the point is, there is a lot stuff out there discouraging LD_LIBRARY_PATH and encouraging full paths and/or $origin. Including Sun's linker developer(s).<BR>
Full paths are ok for us, to the symlinks, if we then have full paths within the files.<BR>
But if we use $origin, then the pkg store bites us.<BR>
 <BR>
 <BR>
Is some of this making sense?<BR>
 <BR>
 - Jay<BR>
<BR> <BR>
<HR id=stopSpelling>
From: jay.krell@cornell.edu<BR>To: wagner@elegosoft.com; m3devel@elegosoft.com<BR>Date: Thu, 2 Jul 2009 18:56:27 +0000<BR>Subject: Re: [M3devel] ROOT, $ORIGIN, runpath, LD_LIBRARY_PATH, symlinks, hardlinks, etc.<BR><BR>
<STYLE>
.ExternalClass .EC_hmmessage P
{padding:0px;}
.ExternalClass body.EC_hmmessage
{font-size:10pt;font-family:Verdana;}
</STYLE>
Here are some good links, other people trying to explain this stuff:<BR> <BR> <BR><A href="http://blogs.sun.com/ali/entry/avoiding_ld_library_path_the">http://blogs.sun.com/ali/entry/avoiding_ld_library_path_the</A><BR> <BR>Avoiding LD_LIBRARY_PATH: The Options<BR>With the introduction of the elfedit utility into Solaris, we have a new answer to the age old question of how to avoid everyones favorite way to get into trouble, the LD_LIBRARY_PATH environment variable. This seems like an appropriate time to revisit this topic. <BR>LD_LIBRARY_PATH Seems Useful. What's the Problem?<BR> <BR> <BR><A href="http://blogs.sun.com/rie/entry/hello_there">http://blogs.sun.com/rie/entry/hello_there</A><BR> <BR> <BR>Surfing With a Linker Alien <BR> <BR><BR><A href="http://blogs.sun.com/rie/entry/tt_ld_library_path_tt">http://blogs.sun.com/rie/entry/tt_ld_library_path_tt</A><BR> <BR>LD_LIBRARY_PATH - just say no <BR>A recent email discussion reminded me of how fragile, and prevalent, LD_LIBRARY_PATH use it. Within a development environment, this variable is very useful. I use it all the time to experiment with new libraries. But within a production environment, use of this environment variable can be problematic. See Directories Searched by the Runtime Linker for an overview of LD_LIBRARY_PATH use at runtime. <BR>People use this environment variable to establish search paths for applications whose dependencies do not reside in constant locations. Sometimes wrapper scripts are employed to set this variable, other times users maintain an LD_LIBRARY_PATH within their .profile. This latter model can often get out of hand - try running: <BR>    % ldd -s /usr/bin/date<BR>    ...<BR>    find object=libc.so.1; required by /usr/bin/date<BR> search path=/opt/ISV/lib  (LD_LIBRARY_PATH)<BR>If you have a large number of LD_LIBRARY_PATH components specified, you'll see libc.so.1 being wastefully searched for, until it is finally found in /usr/lib. Excessive LD_LIBRARY_PATH components don't help application startup performance. <BR>Wrapper scripts attempt to compensate for inherited LD_LIBRARY_PATH use. For example, a version of acroread reveals: <BR>    LD_LIBRARY_PATH="`prepend "$ACRO_INSTALL_DIR/$ACRO_CONFIG/lib:\<BR> $ACRO_INSTALL_DIR/$ACRO_CONFIG/lib" "$LD_LIBRARY_PATH"`<BR>The script is prepending its LD_LIBRARY_PATH requirement to any inherited definition. Although this provides the necessary environment for acroread to execute, we're still wasting time looking for any system libraries in the acroread sub-directories. <BR>When 64-bit binaries came along, we had a bit of a dilemma with how to interpret LD_LIBRARY_PATH. But, because of its popularity, it was decided to leave it applicable to both class of binaries (64 and 32-bit), even though its unusual for a directory to contain both 64 and 32-bit dependencies. We also added LD_LIBRARY_PATH_64 and LD_LIBRARY_PATH_32 as a means of specifying search paths that are specific to a class of objects. These class specific environment variables are used instead of any generic LD_LIBRARY_PATH setting. <BR> <BR>Which leads me back to the recent email discussion. Seems a customer was setting both the _64 and _32 variables as part of their startup script, because both 64 and 32 bit processes could be spawned. However, one spawned process was acroread. Its LD_LIBRARY_PATH setting was being overridden by the _32 variable, and hence it failed to execute. Sigh. <BR>Is there a solution to this mess? I guess we could keep bashing LD_LIBRARY_PATH into submission some way, but why not get rid of the LD_LIBRARY_PATH requirement altogether? This can be done. Applications and dependencies can be built to include a runpath using ld(1), and the -R option. This path is used to search for the dependencies of the object in which the runpath is recorded. If the dependencies are not in a constant location, use the $ORIGIN token as part of the pathname. <BR> <BR>Is there a limitation to $ORIGIN use? Yes, as directed by the security folks, expansion of this token is not allowed for secure applications. But then again, for secure applications, LD_LIBRARY_PATH components are ignored for non-secure directories anyway. See Security. <BR>For a flexible mechanism of finding dependencies, use a runpath that includes the $ORIGIN token, and try not to create secure applications :-) <BR>(2004-07-10 22:20:54.0) Permalink Comments [8] <BR>Comments:<BR><BR>....<BR> <BR> <BR> - Jay<BR><BR></body>
</html>