arrfab / rpms / glibc

Forked from rpms/glibc 4 years ago
Clone

Blame SOURCES/glibc-rh1540480-6.patch

147e83
commit 2bd86632b7cb97dc9002a23795e140fc880e1987
147e83
Author: Dmitry V. Levin <ldv@altlinux.org>
147e83
Date:   Wed Dec 20 11:27:51 2017 +0000
147e83
147e83
    elf: remove redundant is_path argument
147e83
    
147e83
    is_path argument is no longer used and could be safely removed.
147e83
    
147e83
    * elf/dl-dst.h (DL_DST_COUNT): Remove is_path argument, all callers
147e83
    updated.
147e83
    * elf/dl-load.c (is_dst, _dl_dst_count, _dl_dst_substitute,
147e83
    expand_dynamic_string_token): Likewise.
147e83
    * sysdeps/generic/ldsodefs.h (_dl_dst_count, _dl_dst_substitute): Remove
147e83
    is_path argument.
147e83
147e83
Index: glibc-2.17-c758a686/elf/dl-deps.c
147e83
===================================================================
147e83
--- glibc-2.17-c758a686.orig/elf/dl-deps.c
147e83
+++ glibc-2.17-c758a686/elf/dl-deps.c
147e83
@@ -101,7 +101,7 @@ struct list
147e83
   ({									      \
147e83
     const char *__str = (str);						      \
147e83
     const char *__result = __str;					      \
147e83
-    size_t __dst_cnt = DL_DST_COUNT (__str, 0);				      \
147e83
+    size_t __dst_cnt = DL_DST_COUNT (__str);				      \
147e83
 									      \
147e83
     if (__dst_cnt != 0)							      \
147e83
       {									      \
147e83
@@ -115,7 +115,7 @@ DST not allowed in SUID/SGID programs"))
147e83
 	__newp = (char *) alloca (DL_DST_REQUIRED (l, __str, strlen (__str),  \
147e83
 						   __dst_cnt));		      \
147e83
 									      \
147e83
-	__result = _dl_dst_substitute (l, __str, __newp, 0);		      \
147e83
+	__result = _dl_dst_substitute (l, __str, __newp);		      \
147e83
 									      \
147e83
 	if (*__result == '\0')						      \
147e83
 	  {								      \
147e83
Index: glibc-2.17-c758a686/elf/dl-dst.h
147e83
===================================================================
147e83
--- glibc-2.17-c758a686.orig/elf/dl-dst.h
147e83
+++ glibc-2.17-c758a686/elf/dl-dst.h
147e83
@@ -20,13 +20,13 @@
147e83
 
147e83
 /* Determine the number of DST elements in the name.  Only if IS_PATH is
147e83
    nonzero paths are recognized (i.e., multiple, ':' separated filenames).  */
147e83
-#define DL_DST_COUNT(name, is_path) \
147e83
+#define DL_DST_COUNT(name) \
147e83
   ({									      \
147e83
     size_t __cnt = 0;							      \
147e83
     const char *__sf = strchr (name, '$');				      \
147e83
 									      \
147e83
     if (__builtin_expect (__sf != NULL, 0))				      \
147e83
-      __cnt = _dl_dst_count (__sf, is_path);			      \
147e83
+      __cnt = _dl_dst_count (__sf);					      \
147e83
 									      \
147e83
     __cnt; })
147e83
 
147e83
Index: glibc-2.17-c758a686/elf/dl-load.c
147e83
===================================================================
147e83
--- glibc-2.17-c758a686.orig/elf/dl-load.c
147e83
+++ glibc-2.17-c758a686/elf/dl-load.c
147e83
@@ -232,8 +232,7 @@ is_trusted_path_normalize (const char *p
147e83
 
147e83
 
147e83
 static size_t
147e83
-is_dst (const char *start, const char *name, const char *str,
147e83
-	int is_path, int secure)
147e83
+is_dst (const char *start, const char *name, const char *str, int secure)
147e83
 {
147e83
   size_t len;
147e83
   bool is_curly = false;
147e83
@@ -271,7 +270,7 @@ is_dst (const char *start, const char *n
147e83
 
147e83
 
147e83
 size_t
147e83
-_dl_dst_count (const char *name, int is_path)
147e83
+_dl_dst_count (const char *name)
147e83
 {
147e83
   const char *const start = name;
147e83
   size_t cnt = 0;
147e83
@@ -283,10 +282,9 @@ _dl_dst_count (const char *name, int is_
147e83
       /* $ORIGIN is not expanded for SUID/GUID programs (except if it
147e83
 	 is $ORIGIN alone) and it must always appear first in path.  */
147e83
       ++name;
147e83
-      if ((len = is_dst (start, name, "ORIGIN", is_path,
147e83
-			 INTUSE(__libc_enable_secure))) != 0
147e83
-	  || (len = is_dst (start, name, "PLATFORM", is_path, 0)) != 0
147e83
-	  || (len = is_dst (start, name, "LIB", is_path, 0)) != 0)
147e83
+      if ((len = is_dst (start, name, "ORIGIN", INTUSE(__libc_enable_secure))) != 0
147e83
+	  || (len = is_dst (start, name, "PLATFORM", 0)) != 0
147e83
+	  || (len = is_dst (start, name, "LIB", 0)) != 0)
147e83
 	++cnt;
147e83
 
147e83
       name = strchr (name + len, '$');
147e83
@@ -298,8 +296,7 @@ _dl_dst_count (const char *name, int is_
147e83
 
147e83
 
147e83
 char *
147e83
-_dl_dst_substitute (struct link_map *l, const char *name, char *result,
147e83
-		    int is_path)
147e83
+_dl_dst_substitute (struct link_map *l, const char *name, char *result)
147e83
 {
147e83
   const char *const start = name;
147e83
 
147e83
@@ -319,8 +316,7 @@ _dl_dst_substitute (struct link_map *l,
147e83
 	  size_t len;
147e83
 
147e83
 	  ++name;
147e83
-	  if ((len = is_dst (start, name, "ORIGIN", is_path,
147e83
-			     INTUSE(__libc_enable_secure))) != 0)
147e83
+	  if ((len = is_dst (start, name, "ORIGIN", INTUSE(__libc_enable_secure))) != 0)
147e83
 	    {
147e83
 #ifndef SHARED
147e83
 	      if (l == NULL)
147e83
@@ -332,9 +328,9 @@ _dl_dst_substitute (struct link_map *l,
147e83
 	      check_for_trusted = (INTUSE(__libc_enable_secure)
147e83
 				   && l->l_type == lt_executable);
147e83
 	    }
147e83
-	  else if ((len = is_dst (start, name, "PLATFORM", is_path, 0)) != 0)
147e83
+	  else if ((len = is_dst (start, name, "PLATFORM", 0)) != 0)
147e83
 	    repl = GLRO(dl_platform);
147e83
-	  else if ((len = is_dst (start, name, "LIB", is_path, 0)) != 0)
147e83
+	  else if ((len = is_dst (start, name, "LIB", 0)) != 0)
147e83
 	    repl = DL_DST_LIB;
147e83
 
147e83
 	  if (repl != NULL && repl != (const char *) -1)
147e83
@@ -378,7 +374,7 @@ _dl_dst_substitute (struct link_map *l,
147e83
    belonging to the map is loaded.  In this case the path element
147e83
    containing $ORIGIN is left out.  */
147e83
 static char *
147e83
-expand_dynamic_string_token (struct link_map *l, const char *s, int is_path)
147e83
+expand_dynamic_string_token (struct link_map *l, const char *s)
147e83
 {
147e83
   /* We make two runs over the string.  First we determine how large the
147e83
      resulting string is and then we copy it over.  Since this is no
147e83
@@ -389,7 +385,7 @@ expand_dynamic_string_token (struct link
147e83
   char *result;
147e83
 
147e83
   /* Determine the number of DST elements.  */
147e83
-  cnt = DL_DST_COUNT (s, is_path);
147e83
+  cnt = DL_DST_COUNT (s);
147e83
 
147e83
   /* If we do not have to replace anything simply copy the string.  */
147e83
   if (__builtin_expect (cnt, 0) == 0)
147e83
@@ -403,7 +399,7 @@ expand_dynamic_string_token (struct link
147e83
   if (result == NULL)
147e83
     return NULL;
147e83
 
147e83
-  return _dl_dst_substitute (l, s, result, is_path);
147e83
+  return _dl_dst_substitute (l, s, result);
147e83
 }
147e83
 
147e83
 
147e83
@@ -458,7 +454,7 @@ fillin_rpath (char *rpath, struct r_sear
147e83
     {
147e83
       struct r_search_path_elem *dirp;
147e83
 
147e83
-      to_free = cp = expand_dynamic_string_token (l, cp, 1);
147e83
+      to_free = cp = expand_dynamic_string_token (l, cp);
147e83
 
147e83
       size_t len = strlen (cp);
147e83
 
147e83
@@ -2263,7 +2259,7 @@ _dl_map_object (struct link_map *loader,
147e83
     {
147e83
       /* The path may contain dynamic string tokens.  */
147e83
       realname = (loader
147e83
-		  ? expand_dynamic_string_token (loader, name, 0)
147e83
+		  ? expand_dynamic_string_token (loader, name)
147e83
 		  : local_strdup (name));
147e83
       if (realname == NULL)
147e83
 	fd = -1;
147e83
Index: glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h
147e83
===================================================================
147e83
--- glibc-2.17-c758a686.orig/sysdeps/generic/ldsodefs.h
147e83
+++ glibc-2.17-c758a686/sysdeps/generic/ldsodefs.h
147e83
@@ -983,11 +983,11 @@ extern void _dl_nothread_init_static_tls
147e83
 extern const char *_dl_get_origin (void) attribute_hidden;
147e83
 
147e83
 /* Count DSTs.  */
147e83
-extern size_t _dl_dst_count (const char *name, int is_path) attribute_hidden;
147e83
+extern size_t _dl_dst_count (const char *name) attribute_hidden;
147e83
 
147e83
 /* Substitute DST values.  */
147e83
 extern char *_dl_dst_substitute (struct link_map *l, const char *name,
147e83
-				 char *result, int is_path) attribute_hidden;
147e83
+				 char *result) attribute_hidden;
147e83
 
147e83
 /* Check validity of the caller.  */
147e83
 extern int _dl_check_caller (const void *caller, enum allowmask mask)