Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Nov 2018 19:11:33 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340136 - head/sys/arm/include
Message-ID:  <201811041911.wA4JBXKv007192@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Nov  4 19:11:32 2018
New Revision: 340136
URL: https://svnweb.freebsd.org/changeset/base/340136

Log:
  Move the fixed base for PIE loading on arm.
  
  Existing base causes conflicts for direct execution of ld-elf.so.1
  because default linking base for non-PIE binaries is 0x10000.
  
  Reported and tested by:	Mark Millard <marklmi26-fbsd@yahoo.com>
  Sponsored by:	The FreeBSD Foundation
  MFC after:	1 week

Modified:
  head/sys/arm/include/elf.h

Modified: head/sys/arm/include/elf.h
==============================================================================
--- head/sys/arm/include/elf.h	Sun Nov  4 19:10:44 2018	(r340135)
+++ head/sys/arm/include/elf.h	Sun Nov  4 19:11:32 2018	(r340136)
@@ -84,7 +84,7 @@ __ElfType(Auxinfo);
  */
 #define	MAGIC_TRAMP_NUMBER	0x5c000003
 
-#define	ET_DYN_LOAD_ADDR	0x12000
+#define	ET_DYN_LOAD_ADDR	0x500000
 
 /* Flags passed in AT_HWCAP. */
 #define	HWCAP_SWP		0x00000001	/* Unsupported, never set.    */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811041911.wA4JBXKv007192>