about summary refs log tree commit diff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-07-23 01:13:01 +0000
committerUlrich Drepper <drepper@redhat.com>2001-07-23 01:13:01 +0000
commit32463b1aa6e3974e772fb984178820c2631d0283 (patch)
treea809319eba85bbda306ad335ba73ec0699a8966b /elf/dl-load.c
parent8d42e2e526839af70dc5ae38f18aeaf7ffe959e9 (diff)
downloadglibc-32463b1aa6e3974e772fb984178820c2631d0283.tar.gz
glibc-32463b1aa6e3974e772fb984178820c2631d0283.tar.xz
glibc-32463b1aa6e3974e772fb984178820c2631d0283.zip
Update.
	* elf/dl-load.c (_dl_dst_count): In SUID binaries expand $ORIGIN
	if it is alone.
	(_dl_dst_substitute): Likewise.
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index 46b7d81412..b9ef523b49 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -180,8 +180,8 @@ _dl_dst_count (const char *name, int is_path)
     {
       size_t len = 1;
 
-      /* $ORIGIN is not expanded for SUID/GUID programs and it must
-	 always appear first in path.
+      /* $ORIGIN is not expanded for SUID/GUID programs (except if it
+	 is $ORIGIN alone) and it must always appear first in path.
 
 	 Note that it is no bug that the string in the second and
 	 fourth `strncmp' call is longer than the sequence which is
@@ -192,7 +192,8 @@ _dl_dst_count (const char *name, int is_path)
 		   || (is_path && name[7] == ':'))
 	       && (len = 7) != 0)))
 	{
-	  if (__builtin_expect (!__libc_enable_secure, 1)
+	  if ((__builtin_expect (!__libc_enable_secure, 1)
+	       || name[len] == '\0' || (is_path && name[len] == ':'))
 	      && (name == start || (is_path && name[-1] == ':')))
 	    ++cnt;
 	}
@@ -241,7 +242,8 @@ _dl_dst_substitute (struct link_map *l, const char *name, char *result,
 		       || (is_path && name[7] == ':'))
 		   && (len = 7) != 0)))
 	    {
-	      if (__builtin_expect (!__libc_enable_secure, 1)
+	      if ((__builtin_expect (!__libc_enable_secure, 1)
+		   || name[len] == '\0' || (is_path && name[len] == ':'))
 		  && (name == start || (is_path && name[-1] == ':')))
 		repl = l->l_origin;
 	    }