1998-08-27 20:08:32 +00:00
|
|
|
/* Find path of executable.
|
2002-01-31 03:41:25 +00:00
|
|
|
Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
|
1998-08-27 20:08:32 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1998-08-27 20:08:32 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-08-27 20:08:32 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, write to the Free
|
|
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
02111-1307 USA. */
|
1998-08-27 20:08:32 +00:00
|
|
|
|
2002-02-02 20:17:54 +00:00
|
|
|
#include <assert.h>
|
1999-05-05 23:29:18 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/param.h>
|
2000-03-23 20:31:46 +00:00
|
|
|
#include <ldsodefs.h>
|
1999-05-05 23:29:18 +00:00
|
|
|
|
|
|
|
#include <dl-dst.h>
|
|
|
|
|
1998-08-27 20:08:32 +00:00
|
|
|
/* On Linux >= 2.1 systems which have the dcache implementation we can get
|
|
|
|
the path of the application from the /proc/self/exe symlink. Try this
|
|
|
|
first and fall back on the generic method if necessary. */
|
|
|
|
|
2002-03-01 09:44:29 +00:00
|
|
|
#undef _dl_get_origin
|
1999-05-05 23:29:18 +00:00
|
|
|
const char *
|
|
|
|
_dl_get_origin (void)
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
|
|
|
char linkval[PATH_MAX];
|
|
|
|
char *result;
|
2002-02-02 20:17:54 +00:00
|
|
|
int len;
|
1998-08-27 20:08:32 +00:00
|
|
|
|
2002-03-01 09:44:29 +00:00
|
|
|
if ((len = __readlink ("/proc/self/exe", linkval, sizeof (linkval))) > 0
|
1998-08-27 20:42:04 +00:00
|
|
|
&& linkval[0] != '[')
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
|
|
|
/* We can use this value. */
|
2002-02-02 20:17:54 +00:00
|
|
|
assert (linkval[0] == '/');
|
|
|
|
while (len > 1 && linkval[len - 1] != '/')
|
|
|
|
--len;
|
|
|
|
result = (char *) malloc (len + 1);
|
1998-08-27 20:08:32 +00:00
|
|
|
if (result == NULL)
|
|
|
|
result = (char *) -1;
|
2002-02-02 20:17:54 +00:00
|
|
|
else if (len == 1)
|
1998-09-02 12:58:42 +00:00
|
|
|
memcpy (result, "/", 2);
|
1998-08-27 20:08:32 +00:00
|
|
|
else
|
2002-02-02 20:17:54 +00:00
|
|
|
*((char *) __mempcpy (result, linkval, len - 1)) = '\0';
|
1998-08-27 20:08:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result = (char *) -1;
|
1998-09-02 12:58:42 +00:00
|
|
|
/* We use the environment variable LD_ORIGIN_PATH. If it is set make
|
1998-08-27 20:08:32 +00:00
|
|
|
a copy and strip out trailing slashes. */
|
2002-01-31 03:41:25 +00:00
|
|
|
if (GL(dl_origin_path) != NULL)
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
2002-01-31 03:41:25 +00:00
|
|
|
size_t len = strlen (GL(dl_origin_path));
|
2002-02-02 20:17:54 +00:00
|
|
|
result = (char *) malloc (len + 1);
|
1998-08-27 20:08:32 +00:00
|
|
|
if (result == NULL)
|
|
|
|
result = (char *) -1;
|
|
|
|
else
|
|
|
|
{
|
2002-01-31 03:41:25 +00:00
|
|
|
char *cp = __mempcpy (result, GL(dl_origin_path), len);
|
1998-09-02 12:58:42 +00:00
|
|
|
while (cp > result + 1 && cp[-1] == '/')
|
1998-08-27 20:08:32 +00:00
|
|
|
--cp;
|
|
|
|
*cp = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2002-03-01 09:44:29 +00:00
|
|
|
INTDEF(_dl_get_origin)
|