]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
authorUlrich Drepper <drepper@redhat.com>
Fri, 1 Aug 2008 18:03:57 +0000 (18:03 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 1 Aug 2008 18:03:57 +0000 (18:03 +0000)
use the AT_EXECFN value if it is no absolute path.
* sysdeps/unix/sysv/linux/kernel-features.h: Never define
__ASSUME_AT_EXECFN.

ChangeLog
sysdeps/unix/sysv/linux/dl-origin.c
sysdeps/unix/sysv/linux/kernel-features.h

index 2e5944ba88a4caa538769e9199b06977d22c9234..838509174bf6dbd43bf4764d0621e949584ef9ab 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2008-08-01  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/dl-origin.c (_dl_get_origin): We cannot
+       use the AT_EXECFN value if it is no absolute path.
+       * sysdeps/unix/sysv/linux/kernel-features.h: Never define
+       __ASSUME_AT_EXECFN.
+
        * Versions.def: Add GLIBC_2.9 to libresolv.
        * include/resolv.h: Remove hidden proto declarations for __ns_*
        functions.  Add them for __dn_count_labels and __p_secstodate.
index fdb6372f093037d072a4ea08d6dc1386e4c70391..64e865b92af46f099a128b7c4d5d7cad4b8499c2 100644 (file)
 const char *
 _dl_get_origin (void)
 {
-#ifndef __ASSUME_AT_EXECFN
   char linkval[PATH_MAX];
-#endif
   const char *str;
   char *result = (char *) -1l;
   int len;
 
   str = GLRO(dl_execfn);
-#ifndef __ASSUME_AT_EXECFN
-  if (str == NULL)
+  if (str == NULL || str[0] != '/')
     {
       INTERNAL_SYSCALL_DECL (err);
 
@@ -53,12 +50,12 @@ _dl_get_origin (void)
       if (! INTERNAL_SYSCALL_ERROR_P (len, err)
          && len > 0 && linkval[0] != '[')
        str = linkval;
+      else
+       str = NULL;
     }
   else
-#endif
     len = strlen (str);
 
-#ifndef __ASSUME_AT_EXECFN
   if (str == NULL)
     {
       /* We use the environment variable LD_ORIGIN_PATH.  If it is set make
@@ -79,7 +76,6 @@ _dl_get_origin (void)
        }
     }
   else
-#endif
     {
       /* We can use this value.  */
       assert (str[0] == '/');
index e0d80a5b063da73ced08cbbfda22640b01864acc..64a7f7223022f754b4acb0dee7cfa6ddc637b847 100644 (file)
 # define __ASSUME_ADJ_OFFSET_SS_READ   1
 #endif
 
-/* Support for AT_EXECFN was added in 2.6.27.  */
-#if __LINUX_KERNEL_VERSION >= 0x02061b
-# define __ASSUME_AT_EXECFN    1
-#endif
-
 /* Support for various CLOEXEC and NONBLOCK flags was added for x86,
    x86-64, PPC, IA-64, and SPARC in 2.6.27.  */
 #if __LINUX_KERNEL_VERSION >= 0x02061b \