arrfab / rpms / glibc

Forked from rpms/glibc 4 years ago
Clone

Blame SOURCES/glibc-rh1161666.patch

147e83
commit 533bb7c2ae156ff2d49b2e0b20b33810ba5e2721
147e83
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
147e83
Date:   Wed Nov 12 19:30:24 2014 +0530
147e83
147e83
    Fix stack alignment when loader is invoked directly
147e83
    
147e83
    The s390 ABI requires the stack pointer to be aligned at 8-bytes.
147e83
    When a program is invoked as an argument to the dynamic linker,
147e83
    _dl_start_user adjusts the stack to remove the dynamic linker
147e83
    arguments so that the program sees only its name and arguments.  This
147e83
    may result in the stack being misaligned since each argument shift is
147e83
    only a word and not a double-word.
147e83
    
147e83
    This is now fixed shifting argv and envp down instead of shifting argc
147e83
    up and reclaiming the stack.  This requires _dl_argv to be adjusted
147e83
    and hence, is no longer relro.
147e83
147e83
diff --git glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-machine.h glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-machine.h
147e83
index c56185c..79f8ef9 100644
147e83
--- glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-machine.h
147e83
+++ glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-machine.h
147e83
@@ -166,18 +166,49 @@ _dl_start_user:\n\
147e83
 	# See if we were run as a command with the executable file\n\
147e83
 	# name as an extra leading argument.\n\
147e83
 	l     %r1,_dl_skip_args@GOT12(0,%r12)\n\
147e83
-	l     %r1,0(%r1)          # load _dl_skip_args\n\
147e83
+	l     %r1,0(%r1)	# load _dl_skip_args\n\
147e83
+	ltr   %r1,%r1\n\
147e83
+	je    .L4		# Skip the arg adjustment if there were none.\n\
147e83
 	# Get the original argument count.\n\
147e83
 	l     %r0,96(%r15)\n\
147e83
 	# Subtract _dl_skip_args from it.\n\
147e83
 	sr    %r0,%r1\n\
147e83
-	# Adjust the stack pointer to skip _dl_skip_args words.\n\
147e83
-	sll   %r1,2\n\
147e83
-	ar    %r15,%r1\n\
147e83
-	# Set the back chain to zero again\n\
147e83
-	xc    0(4,%r15),0(%r15)\n\
147e83
 	# Store back the modified argument count.\n\
147e83
 	st    %r0,96(%r15)\n\
147e83
+	# Copy argv and envp forward to account for skipped argv entries.\n\
147e83
+	# We skipped at least one argument or we would not get here.\n\
147e83
+	la    %r6,100(%r15)	# Destination pointer i.e. &argv[0]\n\
147e83
+	lr    %r5,%r6\n\
147e83
+	lr    %r0,%r1\n\
147e83
+	sll   %r0,2\n		# Number of skipped bytes.\n\
147e83
+	ar    %r5,%r0		# Source pointer = Dest + Skipped args.\n\
147e83
+	# argv copy loop:\n\
147e83
+.L1:	l     %r7,0(%r5)	# Load a word from the source.\n\
147e83
+	st    %r7,0(%r6)	# Store the word in the destination.\n\
147e83
+	ahi   %r5,4\n\
147e83
+	ahi   %r6,4\n\
147e83
+	ltr   %r7,%r7\n\
147e83
+	jne   .L1		# Stop after copying the NULL.\n\
147e83
+	# envp copy loop:\n\
147e83
+.L2:	l     %r7,0(%r5)	# Load a word from the source.\n\
147e83
+	st    %r7,0(%r6)	# Store the word in the destination.\n\
147e83
+	ahi   %r5,4\n\
147e83
+	ahi   %r6,4\n\
147e83
+	ltr   %r7,%r7\n\
147e83
+	jne   .L2		# Stop after copying the NULL.\n\
147e83
+	# Now we have to zero out the envp entries after NULL to allow\n\
147e83
+	# start.S to properly find auxv by skipping zeroes.\n\
147e83
+	# zero out loop:\n\
147e83
+	lhi   %r7,0\n\
147e83
+.L3:	st    %r7,0(%r6)	# Store zero.\n\
147e83
+	ahi   %r6,4		# Advance dest pointer.\n\
147e83
+	ahi   %r1,-1		# Subtract one from the word count.\n\
147e83
+	ltr   %r1,%r1\n\
147e83
+	jne    .L3		# Keep copying if the word count is non-zero.\n\
147e83
+	# Adjust _dl_argv\n\
147e83
+	la    %r6,100(%r15)\n\
147e83
+	l     %r1,_dl_argv@GOT12(0,%r12)\n\
147e83
+	st    %r6,0(%r1)\n\
147e83
 	# The special initializer gets called with the stack just\n\
147e83
 	# as the application's entry point will see it; it can\n\
147e83
 	# switch stacks if it moves these contents over.\n\
147e83
@@ -185,7 +216,7 @@ _dl_start_user:\n\
147e83
 	# Call the function to run the initializers.\n\
147e83
 	# Load the parameters:\n\
147e83
 	# (%r2, %r3, %r4, %r5) = (_dl_loaded, argc, argv, envp)\n\
147e83
-	l     %r2,_rtld_local@GOT(%r12)\n\
147e83
+.L4:	l     %r2,_rtld_local@GOT(%r12)\n\
147e83
 	l     %r2,0(%r2)\n\
147e83
 	l     %r3,96(%r15)\n\
147e83
 	la    %r4,100(%r15)\n\
147e83
@@ -198,6 +229,9 @@ _dl_start_user:\n\
147e83
 	l     %r14,_dl_fini@GOT(%r12)\n\
147e83
 	# Free stack frame\n\
147e83
 	ahi   %r15,96\n\
147e83
+	# Reload argc and argv for the user's entry point.\n\
147e83
+	# l     %r2,0(%r15)\n\
147e83
+	# la    %r3,4(%r15)\n\
147e83
 	# Jump to the user's entry point (saved in %r8).\n\
147e83
 	br    %r8\n\
147e83
 .Llit:\n\
147e83
diff --git glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-sysdep.h glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-sysdep.h
147e83
new file mode 100644
147e83
index 0000000..b992778
147e83
--- /dev/null
147e83
+++ glibc-2.17-c758a686/sysdeps/s390/s390-32/dl-sysdep.h
147e83
@@ -0,0 +1,23 @@
147e83
+/* System-specific settings for dynamic linker code.  S/390 version.
147e83
+   Copyright (C) 2014 Free Software Foundation, Inc.
147e83
+   This file is part of the GNU C Library.
147e83
+
147e83
+   The GNU C Library is free software; you can redistribute it and/or
147e83
+   modify it under the terms of the GNU Lesser General Public
147e83
+   License as published by the Free Software Foundation; either
147e83
+   version 2.1 of the License, or (at your option) any later version.
147e83
+
147e83
+   The GNU C Library is distributed in the hope that it will be useful,
147e83
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
147e83
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
147e83
+   Lesser General Public License for more details.
147e83
+
147e83
+   You should have received a copy of the GNU Lesser General Public
147e83
+   License along with the GNU C Library.  If not, see
147e83
+   <http://www.gnu.org/licenses/>.  */
147e83
+
147e83
+#include_next <dl-sysdep.h>
147e83
+
147e83
+/* _dl_argv cannot be attribute_relro, because _dl_start_user
147e83
+   might write into it after _dl_start returns.  */
147e83
+#define DL_ARGV_NOT_RELRO 1