Remove *xattr syscalls.
[glibc.git] / sysdeps / unix / sysv / linux / dl-origin.c
blob3824681fa7883d32599064598976f8dae6cfde89
1 /* Find path of executable.
2 Copyright (C) 1998, 1999, 2000, 2002 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #include <assert.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <sys/param.h>
26 #include <ldsodefs.h>
28 #include <dl-dst.h>
30 /* On Linux >= 2.1 systems which have the dcache implementation we can get
31 the path of the application from the /proc/self/exe symlink. Try this
32 first and fall back on the generic method if necessary. */
34 #undef _dl_get_origin
35 const char *
36 _dl_get_origin (void)
38 char linkval[PATH_MAX];
39 char *result;
40 int len;
42 if ((len = __readlink ("/proc/self/exe", linkval, sizeof (linkval))) > 0
43 && linkval[0] != '[')
45 /* We can use this value. */
46 assert (linkval[0] == '/');
47 while (len > 1 && linkval[len - 1] != '/')
48 --len;
49 result = (char *) malloc (len + 1);
50 if (result == NULL)
51 result = (char *) -1;
52 else if (len == 1)
53 memcpy (result, "/", 2);
54 else
55 *((char *) __mempcpy (result, linkval, len - 1)) = '\0';
57 else
59 result = (char *) -1;
60 /* We use the environment variable LD_ORIGIN_PATH. If it is set make
61 a copy and strip out trailing slashes. */
62 if (GL(dl_origin_path) != NULL)
64 size_t len = strlen (GL(dl_origin_path));
65 result = (char *) malloc (len + 1);
66 if (result == NULL)
67 result = (char *) -1;
68 else
70 char *cp = __mempcpy (result, GL(dl_origin_path), len);
71 while (cp > result + 1 && cp[-1] == '/')
72 --cp;
73 *cp = '\0';
78 return result;
80 INTDEF(_dl_get_origin)