1998-08-27 20:08:32 +00:00
|
|
|
/* Find path of executable.
|
2008-07-24 18:33:44 +00:00
|
|
|
Copyright (C) 1998-2000, 2002, 2004, 2008 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>
|
2004-07-06 04:26:42 +00:00
|
|
|
#include <sysdep.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. */
|
|
|
|
|
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];
|
2008-07-26 08:42:54 +00:00
|
|
|
const char *str;
|
2008-07-24 18:33:44 +00:00
|
|
|
char *result = (char *) -1l;
|
2002-02-02 20:17:54 +00:00
|
|
|
int len;
|
1998-08-27 20:08:32 +00:00
|
|
|
|
2008-07-24 18:33:44 +00:00
|
|
|
str = GLRO(dl_execfn);
|
2008-08-01 18:03:57 +00:00
|
|
|
if (str == NULL || str[0] != '/')
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
2008-07-24 18:33:44 +00:00
|
|
|
INTERNAL_SYSCALL_DECL (err);
|
|
|
|
|
|
|
|
len = INTERNAL_SYSCALL (readlink, err, 3, "/proc/self/exe", linkval,
|
|
|
|
sizeof (linkval));
|
|
|
|
if (! INTERNAL_SYSCALL_ERROR_P (len, err)
|
|
|
|
&& len > 0 && linkval[0] != '[')
|
|
|
|
str = linkval;
|
2008-08-01 18:03:57 +00:00
|
|
|
else
|
|
|
|
str = NULL;
|
1998-08-27 20:08:32 +00:00
|
|
|
}
|
|
|
|
else
|
2008-07-24 18:33:44 +00:00
|
|
|
len = strlen (str);
|
|
|
|
|
|
|
|
if (str == NULL)
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
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. */
|
2004-03-05 10:29:47 +00:00
|
|
|
if (GLRO(dl_origin_path) != NULL)
|
1998-08-27 20:08:32 +00:00
|
|
|
{
|
2004-03-05 10:29:47 +00:00
|
|
|
size_t len = strlen (GLRO(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
|
|
|
|
{
|
2004-03-05 10:29:47 +00:00
|
|
|
char *cp = __mempcpy (result, GLRO(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';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-07-24 18:33:44 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* We can use this value. */
|
|
|
|
assert (str[0] == '/');
|
|
|
|
while (len > 1 && str[len - 1] != '/')
|
|
|
|
--len;
|
|
|
|
result = (char *) malloc (len + 1);
|
|
|
|
if (result == NULL)
|
|
|
|
result = (char *) -1;
|
|
|
|
else if (len == 1)
|
|
|
|
memcpy (result, "/", 2);
|
|
|
|
else
|
|
|
|
*((char *) __mempcpy (result, str, len - 1)) = '\0';
|
|
|
|
}
|
1998-08-27 20:08:32 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|