Blame SOURCES/0281-arm64-Add-support-for-relocations-needed-for-linaro-.patch

4fe85b
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
4fe85b
From: Vladimir Serbinenko <phcoder@gmail.com>
4fe85b
Date: Fri, 22 Jan 2016 19:09:37 +0100
4fe85b
Subject: [PATCH] arm64: Add support for relocations needed for linaro gcc
4fe85b
4fe85b
---
4fe85b
 grub-core/kern/arm64/dl.c        | 18 ++++++++++++++++++
4fe85b
 grub-core/kern/arm64/dl_helper.c | 40 ++++++++++++++++++++++++++++++++++++++++
4fe85b
 util/grub-mkimagexx.c            | 31 +++++++++++++++++++++++++++++++
4fe85b
 util/grub-module-verifier.c      |  8 +++++++-
4fe85b
 include/grub/arm64/reloc.h       |  8 ++++++++
4fe85b
 include/grub/elf.h               |  3 +++
4fe85b
 6 files changed, 107 insertions(+), 1 deletion(-)
4fe85b
4fe85b
diff --git a/grub-core/kern/arm64/dl.c b/grub-core/kern/arm64/dl.c
4fe85b
index e19ba6a0d58..cf50d7250d9 100644
4fe85b
--- a/grub-core/kern/arm64/dl.c
4fe85b
+++ b/grub-core/kern/arm64/dl.c
4fe85b
@@ -132,6 +132,12 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
4fe85b
 	    *abs_place = (grub_uint64_t) sym_addr;
4fe85b
 	  }
4fe85b
 	  break;
4fe85b
+	case R_AARCH64_ADD_ABS_LO12_NC:
4fe85b
+	  grub_arm64_set_abs_lo12 (place, sym_addr);
4fe85b
+	  break;
4fe85b
+	case R_AARCH64_LDST64_ABS_LO12_NC:
4fe85b
+	  grub_arm64_set_abs_lo12_ldst64 (place, sym_addr);
4fe85b
+	  break;
4fe85b
 	case R_AARCH64_CALL26:
4fe85b
 	case R_AARCH64_JUMP26:
4fe85b
 	  {
4fe85b
@@ -154,6 +160,18 @@ grub_arch_dl_relocate_symbols (grub_dl_t mod, void *ehdr,
4fe85b
 	    grub_arm64_set_xxxx26_offset (place, offset);
4fe85b
 	  }
4fe85b
 	  break;
4fe85b
+	case R_AARCH64_ADR_PREL_PG_HI21:
4fe85b
+	  {
4fe85b
+	    grub_int64_t offset = (sym_addr & ~0xfffULL) - (((grub_uint64_t) place) & ~0xfffULL);
4fe85b
+
4fe85b
+	    if (!grub_arm64_check_hi21_signed (offset))
4fe85b
+		return grub_error (GRUB_ERR_BAD_MODULE,
4fe85b
+				   "HI21 out of range");
4fe85b
+
4fe85b
+	    grub_arm64_set_hi21 (place, offset);
4fe85b
+	  }
4fe85b
+	  break;
4fe85b
+
4fe85b
 	default:
4fe85b
 	  return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET,
4fe85b
 			     N_("relocation 0x%x is not implemented yet"),
4fe85b
diff --git a/grub-core/kern/arm64/dl_helper.c b/grub-core/kern/arm64/dl_helper.c
4fe85b
index d213ab93e88..f031b1ae921 100644
4fe85b
--- a/grub-core/kern/arm64/dl_helper.c
4fe85b
+++ b/grub-core/kern/arm64/dl_helper.c
4fe85b
@@ -53,3 +53,43 @@ grub_arm64_set_xxxx26_offset (grub_uint32_t *place, grub_int64_t offset)
4fe85b
   *place &= insmask;
4fe85b
   *place |= grub_cpu_to_le32 (offset >> 2) & ~insmask;
4fe85b
 }
4fe85b
+
4fe85b
+int
4fe85b
+grub_arm64_check_hi21_signed (grub_int64_t offset)
4fe85b
+{
4fe85b
+  if (offset != (grub_int64_t)(grub_int32_t)offset)
4fe85b
+    return 0;
4fe85b
+  return 1;
4fe85b
+}
4fe85b
+
4fe85b
+void
4fe85b
+grub_arm64_set_hi21 (grub_uint32_t *place, grub_int64_t offset)
4fe85b
+{
4fe85b
+  const grub_uint32_t insmask = grub_cpu_to_le32_compile_time (0x9f00001f);
4fe85b
+  grub_uint32_t val;
4fe85b
+
4fe85b
+  offset >>= 12;
4fe85b
+  
4fe85b
+  val = ((offset & 3) << 29) | (((offset >> 2) & 0x7ffff) << 5);
4fe85b
+  
4fe85b
+  *place &= insmask;
4fe85b
+  *place |= grub_cpu_to_le32 (val) & ~insmask;
4fe85b
+}
4fe85b
+
4fe85b
+void
4fe85b
+grub_arm64_set_abs_lo12 (grub_uint32_t *place, grub_int64_t target)
4fe85b
+{
4fe85b
+  const grub_uint32_t insmask = grub_cpu_to_le32_compile_time (0xffc003ff);
4fe85b
+
4fe85b
+  *place &= insmask;
4fe85b
+  *place |= grub_cpu_to_le32 (target << 10) & ~insmask;
4fe85b
+}
4fe85b
+
4fe85b
+void
4fe85b
+grub_arm64_set_abs_lo12_ldst64 (grub_uint32_t *place, grub_int64_t target)
4fe85b
+{
4fe85b
+  const grub_uint32_t insmask = grub_cpu_to_le32_compile_time (0xfff803ff);
4fe85b
+
4fe85b
+  *place &= insmask;
4fe85b
+  *place |= grub_cpu_to_le32 (target << 7) & ~insmask;
4fe85b
+}
4fe85b
diff --git a/util/grub-mkimagexx.c b/util/grub-mkimagexx.c
4fe85b
index 66e8576411e..d1bc95e350d 100644
4fe85b
--- a/util/grub-mkimagexx.c
4fe85b
+++ b/util/grub-mkimagexx.c
4fe85b
@@ -836,6 +836,14 @@ SUFFIX (relocate_addresses) (Elf_Ehdr *e, Elf_Shdr *sections,
4fe85b
 		       *target = grub_host_to_target64 (grub_target_to_host64 (*target) + sym_addr);
4fe85b
 		     }
4fe85b
 		     break;
4fe85b
+		   case R_AARCH64_ADD_ABS_LO12_NC:
4fe85b
+		     grub_arm64_set_abs_lo12 ((grub_uint32_t *) target,
4fe85b
+					      sym_addr);
4fe85b
+		     break;
4fe85b
+		   case R_AARCH64_LDST64_ABS_LO12_NC:
4fe85b
+		     grub_arm64_set_abs_lo12_ldst64 ((grub_uint32_t *) target,
4fe85b
+						     sym_addr);
4fe85b
+		     break;
4fe85b
 		   case R_AARCH64_JUMP26:
4fe85b
 		   case R_AARCH64_CALL26:
4fe85b
 		     {
4fe85b
@@ -848,6 +856,17 @@ SUFFIX (relocate_addresses) (Elf_Ehdr *e, Elf_Shdr *sections,
4fe85b
 						     sym_addr);
4fe85b
 		     }
4fe85b
 		     break;
4fe85b
+		   case R_AARCH64_ADR_PREL_PG_HI21:
4fe85b
+		     {
4fe85b
+		       sym_addr &= ~0xfffULL;
4fe85b
+		       sym_addr -= (offset + SUFFIX (entry_point)) & ~0xfffULL;
4fe85b
+		       if (!grub_arm64_check_hi21_signed (sym_addr))
4fe85b
+			 grub_util_error ("%s", "CALL26 Relocation out of range");
4fe85b
+
4fe85b
+		       grub_arm64_set_hi21((grub_uint32_t *)target,
4fe85b
+					   sym_addr);
4fe85b
+		     }
4fe85b
+		     break;
4fe85b
 		   default:
4fe85b
 		     grub_util_error (_("relocation 0x%x is not implemented yet"),
4fe85b
 				      (unsigned int) ELF_R_TYPE (info));
4fe85b
@@ -1200,6 +1219,15 @@ SUFFIX (make_reloc_section) (Elf_Ehdr *e, void **out,
4fe85b
 		  case R_AARCH64_CALL26:
4fe85b
 		  case R_AARCH64_JUMP26:
4fe85b
 		    break;
4fe85b
+		    /* Page-relative relocations do not require fixup entries. */
4fe85b
+		  case R_AARCH64_ADR_PREL_PG_HI21:
4fe85b
+		     /* We page-align the whole kernel, so no need
4fe85b
+			for fixup entries.
4fe85b
+		      */
4fe85b
+		  case R_AARCH64_ADD_ABS_LO12_NC:
4fe85b
+		  case R_AARCH64_LDST64_ABS_LO12_NC:
4fe85b
+		    break;
4fe85b
+
4fe85b
 		  default:
4fe85b
 		    grub_util_error (_("relocation 0x%x is not implemented yet"),
4fe85b
 				     (unsigned int) ELF_R_TYPE (info));
4fe85b
@@ -1343,6 +1371,9 @@ SUFFIX (locate_sections) (const char *kernel_path,
4fe85b
   Elf_Shdr *s;
4fe85b
 
4fe85b
   *all_align = 1;
4fe85b
+  /* Page-aligning simplifies relocation handling.  */
4fe85b
+  if (image_target->elf_target == EM_AARCH64)
4fe85b
+    *all_align = 4096;
4fe85b
 
4fe85b
   section_addresses = xmalloc (sizeof (*section_addresses) * num_sections);
4fe85b
   memset (section_addresses, 0, sizeof (*section_addresses) * num_sections);
4fe85b
diff --git a/util/grub-module-verifier.c b/util/grub-module-verifier.c
4fe85b
index e217dcddc07..405c9117051 100644
4fe85b
--- a/util/grub-module-verifier.c
4fe85b
+++ b/util/grub-module-verifier.c
4fe85b
@@ -107,7 +107,13 @@ struct grub_module_verifier_arch archs[] = {
4fe85b
       R_AARCH64_CALL26,
4fe85b
       R_AARCH64_JUMP26,
4fe85b
       -1
4fe85b
-    } },
4fe85b
+    }, (int[]){
4fe85b
+      R_AARCH64_ADR_PREL_PG_HI21,
4fe85b
+      R_AARCH64_ADD_ABS_LO12_NC,
4fe85b
+      R_AARCH64_LDST64_ABS_LO12_NC,
4fe85b
+      -1
4fe85b
+    }
4fe85b
+  },
4fe85b
 };
4fe85b
 
4fe85b
 
4fe85b
diff --git a/include/grub/arm64/reloc.h b/include/grub/arm64/reloc.h
4fe85b
index 4aed3d715e0..452c148226d 100644
4fe85b
--- a/include/grub/arm64/reloc.h
4fe85b
+++ b/include/grub/arm64/reloc.h
4fe85b
@@ -22,5 +22,13 @@
4fe85b
 int grub_arm_64_check_xxxx26_offset (grub_int64_t offset);
4fe85b
 void
4fe85b
 grub_arm64_set_xxxx26_offset (grub_uint32_t *place, grub_int64_t offset);
4fe85b
+int
4fe85b
+grub_arm64_check_hi21_signed (grub_int64_t offset);
4fe85b
+void
4fe85b
+grub_arm64_set_hi21 (grub_uint32_t *place, grub_int64_t offset);
4fe85b
+void
4fe85b
+grub_arm64_set_abs_lo12 (grub_uint32_t *place, grub_int64_t target);
4fe85b
+void
4fe85b
+grub_arm64_set_abs_lo12_ldst64 (grub_uint32_t *place, grub_int64_t target);
4fe85b
 
4fe85b
 #endif
4fe85b
diff --git a/include/grub/elf.h b/include/grub/elf.h
4fe85b
index caa79639082..db15acecf9f 100644
4fe85b
--- a/include/grub/elf.h
4fe85b
+++ b/include/grub/elf.h
4fe85b
@@ -2068,6 +2068,9 @@ typedef Elf32_Addr Elf32_Conflict;
4fe85b
 #define R_AARCH64_NONE			0	/* No relocation.  */
4fe85b
 #define R_AARCH64_ABS64			257	/* Direct 64 bit. */
4fe85b
 #define R_AARCH64_ABS32			258	/* Direct 32 bit.  */
4fe85b
+#define R_AARCH64_ADR_PREL_PG_HI21	275
4fe85b
+#define R_AARCH64_ADD_ABS_LO12_NC	277
4fe85b
+#define R_AARCH64_LDST64_ABS_LO12_NC	286
4fe85b
 #define R_AARCH64_JUMP26		282	/* 26-bit relative. */
4fe85b
 #define R_AARCH64_CALL26		283	/* 26-bit relative. */
4fe85b
 #define R_AARCH64_COPY			1024	/* Copy symbol at runtime.  */