Blame SOURCES/kmod-0004-libkmod-elf-resolve-CRC-if-module-is-built-with-MODU.patch

d2cad3
From 1e48901166efd65c574de9f6a2b7139721b72623 Mon Sep 17 00:00:00 2001
d2cad3
From: Yauheni Kaliuta <yauheni.kaliuta@redhat.com>
d2cad3
Date: Wed, 19 Jul 2017 17:56:49 +0300
d2cad3
Subject: [PATCH] libkmod-elf: resolve CRC if module is built with
d2cad3
 MODULE_REL_CRCS
d2cad3
d2cad3
Normally exported symbol's crc is stored as absolute (SHN_ABS)
d2cad3
value of special named symbol __crc_<symbol name>.
d2cad3
d2cad3
When the kernel and modules are built with the config option
d2cad3
CONFIG_MODULE_REL_CRCS, all the CRCs are put in a special section
d2cad3
and the __crc_<symbol name> symbols values are offsets in the
d2cad3
section. See patch description of the commit:
d2cad3
d2cad3
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=56067812d5b0e737ac2063e94a50f76b810d6ca3
d2cad3
d2cad3
Add kmod support of this configuration.
d2cad3
d2cad3
Signed-off-by: Yauheni Kaliuta <yauheni.kaliuta@redhat.com>
d2cad3
---
d2cad3
 libkmod/libkmod-elf.c | 30 +++++++++++++++++++++++++++++-
d2cad3
 1 file changed, 29 insertions(+), 1 deletion(-)
d2cad3
d2cad3
diff --git a/libkmod/libkmod-elf.c b/libkmod/libkmod-elf.c
d2cad3
index 90da89aebbaf..ef4a8a3142a1 100644
d2cad3
--- a/libkmod/libkmod-elf.c
d2cad3
+++ b/libkmod/libkmod-elf.c
d2cad3
@@ -747,6 +747,31 @@ static inline uint8_t kmod_symbol_bind_from_elf(uint8_t elf_value)
d2cad3
 	}
d2cad3
 }
d2cad3
 
d2cad3
+static uint64_t kmod_elf_resolve_crc(const struct kmod_elf *elf, uint64_t crc, uint16_t shndx)
d2cad3
+{
d2cad3
+	int err;
d2cad3
+	uint64_t off, size;
d2cad3
+	uint32_t nameoff;
d2cad3
+
d2cad3
+	if (shndx == SHN_ABS || shndx == SHN_UNDEF)
d2cad3
+		return crc;
d2cad3
+
d2cad3
+	err = elf_get_section_info(elf, shndx, &off, &size, &nameoff);
d2cad3
+	if (err < 0) {
d2cad3
+		ELFDBG("Cound not find section index %"PRIu16" for crc", shndx);
d2cad3
+		return (uint64_t)-1;
d2cad3
+	}
d2cad3
+
d2cad3
+	if (crc > (size - sizeof(uint32_t))) {
d2cad3
+		ELFDBG("CRC offset %"PRIu64" is too big, section %"PRIu16" size is %"PRIu64"\n",
d2cad3
+		       crc, shndx, size);
d2cad3
+		return (uint64_t)-1;
d2cad3
+	}
d2cad3
+
d2cad3
+	crc = elf_get_uint(elf, off + crc, sizeof(uint32_t));
d2cad3
+	return crc;
d2cad3
+}
d2cad3
+
d2cad3
 /* array will be allocated with strings in a single malloc, just free *array */
d2cad3
 int kmod_elf_get_symbols(const struct kmod_elf *elf, struct kmod_modversion **array)
d2cad3
 {
d2cad3
@@ -830,6 +855,7 @@ int kmod_elf_get_symbols(const struct kmod_elf *elf, struct kmod_modversion **ar
d2cad3
 		uint32_t name_off;
d2cad3
 		uint64_t crc;
d2cad3
 		uint8_t info, bind;
d2cad3
+		uint16_t shndx;
d2cad3
 
d2cad3
 #define READV(field)							\
d2cad3
 		elf_get_uint(elf, sym_off + offsetof(typeof(*s), field),\
d2cad3
@@ -839,11 +865,13 @@ int kmod_elf_get_symbols(const struct kmod_elf *elf, struct kmod_modversion **ar
d2cad3
 			name_off = READV(st_name);
d2cad3
 			crc = READV(st_value);
d2cad3
 			info = READV(st_info);
d2cad3
+			shndx = READV(st_shndx);
d2cad3
 		} else {
d2cad3
 			Elf64_Sym *s;
d2cad3
 			name_off = READV(st_name);
d2cad3
 			crc = READV(st_value);
d2cad3
 			info = READV(st_info);
d2cad3
+			shndx = READV(st_shndx);
d2cad3
 		}
d2cad3
 #undef READV
d2cad3
 		name = elf_get_mem(elf, str_off + name_off);
d2cad3
@@ -856,7 +884,7 @@ int kmod_elf_get_symbols(const struct kmod_elf *elf, struct kmod_modversion **ar
d2cad3
 		else
d2cad3
 			bind = ELF64_ST_BIND(info);
d2cad3
 
d2cad3
-		a[count].crc = crc;
d2cad3
+		a[count].crc = kmod_elf_resolve_crc(elf, crc, shndx);
d2cad3
 		a[count].bind = kmod_symbol_bind_from_elf(bind);
d2cad3
 		a[count].symbol = itr;
d2cad3
 		slen = strlen(name);
d2cad3
-- 
d2cad3
2.14.0.rc0
d2cad3