Skip to content

Commit 67afb7f

Browse files
committed
scripts/sorttable: Add helper functions for Elf_Shdr
In order to remove the double #include of sorttable.h for 64 and 32 bit to create duplicate functions, add helper functions for Elf_Shdr. This will create a function pointer for each helper that will get assigned to the appropriate function to handle either the 64bit or 32bit version. This also moves the _r()/r() wrappers for the Elf_Shdr references that handle endian and size differences between the different architectures, into the helper function and out of the open code which is more error prone. Cc: bpf <[email protected]> Cc: Masami Hiramatsu <[email protected]> Cc: Mark Rutland <[email protected]> Cc: Mathieu Desnoyers <[email protected]> Cc: Andrew Morton <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Masahiro Yamada <[email protected]> Cc: Nathan Chancellor <[email protected]> Cc: Nicolas Schier <[email protected]> Cc: Zheng Yejian <[email protected]> Cc: Martin Kelly <[email protected]> Cc: Christophe Leroy <[email protected]> Cc: Josh Poimboeuf <[email protected]> Link: https://lore.kernel.org/[email protected] Signed-off-by: Steven Rostedt (Google) <[email protected]>
1 parent 1dfb59a commit 67afb7f

File tree

2 files changed

+85
-23
lines changed

2 files changed

+85
-23
lines changed

scripts/sorttable.c

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,48 @@ EHDR_HALF(shentsize)
110110
EHDR_HALF(shstrndx)
111111
EHDR_HALF(shnum)
112112

113+
#define SHDR_WORD(fn_name) \
114+
static uint32_t shdr64_##fn_name(Elf_Shdr *shdr) \
115+
{ \
116+
return r(&shdr->e64.sh_##fn_name); \
117+
} \
118+
\
119+
static uint32_t shdr32_##fn_name(Elf_Shdr *shdr) \
120+
{ \
121+
return r(&shdr->e32.sh_##fn_name); \
122+
}
123+
124+
#define SHDR_ADDR(fn_name) \
125+
static uint64_t shdr64_##fn_name(Elf_Shdr *shdr) \
126+
{ \
127+
return r8(&shdr->e64.sh_##fn_name); \
128+
} \
129+
\
130+
static uint64_t shdr32_##fn_name(Elf_Shdr *shdr) \
131+
{ \
132+
return r(&shdr->e32.sh_##fn_name); \
133+
}
134+
135+
#define SHDR_WORD(fn_name) \
136+
static uint32_t shdr64_##fn_name(Elf_Shdr *shdr) \
137+
{ \
138+
return r(&shdr->e64.sh_##fn_name); \
139+
} \
140+
\
141+
static uint32_t shdr32_##fn_name(Elf_Shdr *shdr) \
142+
{ \
143+
return r(&shdr->e32.sh_##fn_name); \
144+
}
145+
146+
SHDR_ADDR(addr)
147+
SHDR_ADDR(offset)
148+
SHDR_ADDR(size)
149+
SHDR_ADDR(entsize)
150+
151+
SHDR_WORD(link)
152+
SHDR_WORD(name)
153+
SHDR_WORD(type)
154+
113155
/*
114156
* Get the whole file as a programming convenience in order to avoid
115157
* malloc+lseek+read+free of many pieces. If successful, then mmap

scripts/sorttable.h

Lines changed: 43 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,13 @@
3131
#undef ehdr_shentsize
3232
#undef ehdr_shstrndx
3333
#undef ehdr_shnum
34+
#undef shdr_addr
35+
#undef shdr_offset
36+
#undef shdr_link
37+
#undef shdr_size
38+
#undef shdr_name
39+
#undef shdr_type
40+
#undef shdr_entsize
3441

3542
#ifdef SORTTABLE_64
3643
# define extable_ent_size 16
@@ -47,6 +54,13 @@
4754
# define ehdr_shentsize ehdr64_shentsize
4855
# define ehdr_shstrndx ehdr64_shstrndx
4956
# define ehdr_shnum ehdr64_shnum
57+
# define shdr_addr shdr64_addr
58+
# define shdr_offset shdr64_offset
59+
# define shdr_link shdr64_link
60+
# define shdr_size shdr64_size
61+
# define shdr_name shdr64_name
62+
# define shdr_type shdr64_type
63+
# define shdr_entsize shdr64_entsize
5064
#else
5165
# define extable_ent_size 8
5266
# define compare_extable compare_extable_32
@@ -62,6 +76,13 @@
6276
# define ehdr_shentsize ehdr32_shentsize
6377
# define ehdr_shstrndx ehdr32_shstrndx
6478
# define ehdr_shnum ehdr32_shnum
79+
# define shdr_addr shdr32_addr
80+
# define shdr_offset shdr32_offset
81+
# define shdr_link shdr32_link
82+
# define shdr_size shdr32_size
83+
# define shdr_name shdr32_name
84+
# define shdr_type shdr32_type
85+
# define shdr_entsize shdr32_entsize
6586
#endif
6687

6788
#if defined(SORTTABLE_64) && defined(UNWINDER_ORC_ENABLED)
@@ -177,8 +198,8 @@ struct elf_mcount_loc {
177198
static void *sort_mcount_loc(void *arg)
178199
{
179200
struct elf_mcount_loc *emloc = (struct elf_mcount_loc *)arg;
180-
uint_t offset = emloc->start_mcount_loc - _r(&(emloc->init_data_sec)->etype.sh_addr)
181-
+ _r(&(emloc->init_data_sec)->etype.sh_offset);
201+
uint_t offset = emloc->start_mcount_loc - shdr_addr(emloc->init_data_sec)
202+
+ shdr_offset(emloc->init_data_sec);
182203
uint_t count = emloc->stop_mcount_loc - emloc->start_mcount_loc;
183204
unsigned char *start_loc = (void *)emloc->ehdr + offset;
184205

@@ -267,28 +288,28 @@ static int do_sort(Elf_Ehdr *ehdr,
267288

268289
shstrndx = ehdr_shstrndx(ehdr);
269290
if (shstrndx == SHN_XINDEX)
270-
shstrndx = r(&shdr_start->etype.sh_link);
291+
shstrndx = shdr_link(shdr_start);
271292
string_sec = get_index(shdr_start, shentsize, shstrndx);
272-
secstrings = (const char *)ehdr + _r(&string_sec->etype.sh_offset);
293+
secstrings = (const char *)ehdr + shdr_offset(string_sec);
273294

274295
shnum = ehdr_shnum(ehdr);
275296
if (shnum == SHN_UNDEF)
276-
shnum = _r(&shdr_start->etype.sh_size);
297+
shnum = shdr_size(shdr_start);
277298

278299
for (i = 0; i < shnum; i++) {
279300
Elf_Shdr *shdr = get_index(shdr_start, shentsize, i);
280301

281-
idx = r(&shdr->etype.sh_name);
302+
idx = shdr_name(shdr);
282303
if (!strcmp(secstrings + idx, "__ex_table"))
283304
extab_sec = shdr;
284305
if (!strcmp(secstrings + idx, ".symtab"))
285306
symtab_sec = shdr;
286307
if (!strcmp(secstrings + idx, ".strtab"))
287308
strtab_sec = shdr;
288309

289-
if (r(&shdr->etype.sh_type) == SHT_SYMTAB_SHNDX)
310+
if (shdr_type(shdr) == SHT_SYMTAB_SHNDX)
290311
symtab_shndx = (Elf32_Word *)((const char *)ehdr +
291-
_r(&shdr->etype.sh_offset));
312+
shdr_offset(shdr));
292313

293314
#ifdef MCOUNT_SORT_ENABLED
294315
/* locate the .init.data section in vmlinux */
@@ -304,14 +325,14 @@ static int do_sort(Elf_Ehdr *ehdr,
304325
#if defined(SORTTABLE_64) && defined(UNWINDER_ORC_ENABLED)
305326
/* locate the ORC unwind tables */
306327
if (!strcmp(secstrings + idx, ".orc_unwind_ip")) {
307-
orc_ip_size = _r(&shdr->etype.sh_size);
328+
orc_ip_size = shdr_size(shdr);
308329
g_orc_ip_table = (int *)((void *)ehdr +
309-
_r(&shdr->etype.sh_offset));
330+
shdr_offset(shdr));
310331
}
311332
if (!strcmp(secstrings + idx, ".orc_unwind")) {
312-
orc_size = _r(&shdr->etype.sh_size);
333+
orc_size = shdr_size(shdr);
313334
g_orc_table = (struct orc_entry *)((void *)ehdr +
314-
_r(&shdr->etype.sh_offset));
335+
shdr_offset(shdr));
315336
}
316337
#endif
317338
} /* for loop */
@@ -374,23 +395,22 @@ static int do_sort(Elf_Ehdr *ehdr,
374395
goto out;
375396
}
376397

377-
extab_image = (void *)ehdr + _r(&extab_sec->etype.sh_offset);
378-
strtab = (const char *)ehdr + _r(&strtab_sec->etype.sh_offset);
379-
symtab = (const Elf_Sym *)((const char *)ehdr +
380-
_r(&symtab_sec->etype.sh_offset));
398+
extab_image = (void *)ehdr + shdr_offset(extab_sec);
399+
strtab = (const char *)ehdr + shdr_offset(strtab_sec);
400+
symtab = (const Elf_Sym *)((const char *)ehdr + shdr_offset(symtab_sec));
381401

382402
if (custom_sort) {
383-
custom_sort(extab_image, _r(&extab_sec->etype.sh_size));
403+
custom_sort(extab_image, shdr_size(extab_sec));
384404
} else {
385-
int num_entries = _r(&extab_sec->etype.sh_size) / extable_ent_size;
405+
int num_entries = shdr_size(extab_sec) / extable_ent_size;
386406
qsort(extab_image, num_entries,
387407
extable_ent_size, compare_extable);
388408
}
389409

390410
/* find the flag main_extable_sort_needed */
391-
sym_start = (void *)ehdr + _r(&symtab_sec->etype.sh_offset);
392-
sym_end = sym_start + _r(&symtab_sec->etype.sh_size);
393-
symentsize = _r(&symtab_sec->etype.sh_entsize);
411+
sym_start = (void *)ehdr + shdr_offset(symtab_sec);
412+
sym_end = sym_start + shdr_size(symtab_sec);
413+
symentsize = shdr_entsize(symtab_sec);
394414

395415
for (sym = sym_start; (void *)sym + symentsize < sym_end;
396416
sym = (void *)sym + symentsize) {
@@ -415,9 +435,9 @@ static int do_sort(Elf_Ehdr *ehdr,
415435
symtab_shndx);
416436
sort_needed_sec = get_index(shdr_start, shentsize, sort_need_index);
417437
sort_needed_loc = (void *)ehdr +
418-
_r(&sort_needed_sec->etype.sh_offset) +
438+
shdr_offset(sort_needed_sec) +
419439
_r(&sort_needed_sym->etype.st_value) -
420-
_r(&sort_needed_sec->etype.sh_addr);
440+
shdr_addr(sort_needed_sec);
421441

422442
/* extable has been sorted, clear the flag */
423443
w(0, sort_needed_loc);

0 commit comments

Comments
 (0)