1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Derived from arch/ppc/mm/extable.c and arch/i386/mm/extable.c.
5 * Copyright (C) 2004 Paul Mackerras, IBM Corp.
8 #include <linux/bsearch.h>
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/sort.h>
12 #include <linux/uaccess.h>
13 #include <linux/extable.h>
15 #ifndef ARCH_HAS_RELATIVE_EXTABLE
16 #define ex_to_insn(x) ((x)->insn)
18 static inline unsigned long ex_to_insn(const struct exception_table_entry *x)
20 return (unsigned long)&x->insn + x->insn;
24 #ifndef ARCH_HAS_SORT_EXTABLE
25 #ifndef ARCH_HAS_RELATIVE_EXTABLE
28 static void swap_ex(void *a, void *b, int size)
30 struct exception_table_entry *x = a, *y = b, tmp;
34 x->insn = y->insn + delta;
35 y->insn = tmp.insn - delta;
37 #ifdef swap_ex_entry_fixup
38 swap_ex_entry_fixup(x, y, tmp, delta);
40 x->fixup = y->fixup + delta;
41 y->fixup = tmp.fixup - delta;
44 #endif /* ARCH_HAS_RELATIVE_EXTABLE */
47 * The exception table needs to be sorted so that the binary
48 * search that we use to find entries in it works properly.
49 * This is used both for the kernel exception table and for
50 * the exception tables of modules that get loaded.
52 static int cmp_ex_sort(const void *a, const void *b)
54 const struct exception_table_entry *x = a, *y = b;
57 if (ex_to_insn(x) > ex_to_insn(y))
59 if (ex_to_insn(x) < ex_to_insn(y))
64 void sort_extable(struct exception_table_entry *start,
65 struct exception_table_entry *finish)
67 sort(start, finish - start, sizeof(struct exception_table_entry),
68 cmp_ex_sort, swap_ex);
73 * If the exception table is sorted, any referring to the module init
74 * will be at the beginning or the end.
76 void trim_init_extable(struct module *m)
78 /*trim the beginning*/
79 while (m->num_exentries &&
80 within_module_init(ex_to_insn(&m->extable[0]), m)) {
85 while (m->num_exentries &&
86 within_module_init(ex_to_insn(&m->extable[m->num_exentries - 1]),
90 #endif /* CONFIG_MODULES */
91 #endif /* !ARCH_HAS_SORT_EXTABLE */
93 #ifndef ARCH_HAS_SEARCH_EXTABLE
95 static int cmp_ex_search(const void *key, const void *elt)
97 const struct exception_table_entry *_elt = elt;
98 unsigned long _key = *(unsigned long *)key;
101 if (_key > ex_to_insn(_elt))
103 if (_key < ex_to_insn(_elt))
109 * Search one exception table for an entry corresponding to the
110 * given instruction address, and return the address of the entry,
111 * or NULL if none is found.
112 * We use a binary search, and thus we assume that the table is
115 const struct exception_table_entry *
116 search_extable(const struct exception_table_entry *base,
120 return bsearch(&value, base, num,
121 sizeof(struct exception_table_entry), cmp_ex_search);