Blame view

lib/extable.c 2.98 KB
2874c5fd2   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
4
5
   * Derived from arch/ppc/mm/extable.c and arch/i386/mm/extable.c.
   *
   * Copyright (C) 2004 Paul Mackerras, IBM Corp.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
   */
a94c33dd1   Thomas Meyer   lib/extable.c: us...
7
  #include <linux/bsearch.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
9
10
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/sort.h>
7c0f6ba68   Linus Torvalds   Replace <asm/uacc...
11
  #include <linux/uaccess.h>
8e72a7a44   Valdis Kletnieks   lib/extable.c: ad...
12
  #include <linux/extable.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13

a272858a3   Ard Biesheuvel   extable: add supp...
14
15
16
17
18
19
20
21
  #ifndef ARCH_HAS_RELATIVE_EXTABLE
  #define ex_to_insn(x)	((x)->insn)
  #else
  static inline unsigned long ex_to_insn(const struct exception_table_entry *x)
  {
  	return (unsigned long)&x->insn + x->insn;
  }
  #endif
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
  #ifndef ARCH_HAS_SORT_EXTABLE
a272858a3   Ard Biesheuvel   extable: add supp...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
  #ifndef ARCH_HAS_RELATIVE_EXTABLE
  #define swap_ex		NULL
  #else
  static void swap_ex(void *a, void *b, int size)
  {
  	struct exception_table_entry *x = a, *y = b, tmp;
  	int delta = b - a;
  
  	tmp = *x;
  	x->insn = y->insn + delta;
  	y->insn = tmp.insn - delta;
  
  #ifdef swap_ex_entry_fixup
  	swap_ex_entry_fixup(x, y, tmp, delta);
  #else
  	x->fixup = y->fixup + delta;
  	y->fixup = tmp.fixup - delta;
  #endif
  }
  #endif /* ARCH_HAS_RELATIVE_EXTABLE */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
43
44
45
46
47
48
  /*
   * The exception table needs to be sorted so that the binary
   * search that we use to find entries in it works properly.
   * This is used both for the kernel exception table and for
   * the exception tables of modules that get loaded.
   */
a94c33dd1   Thomas Meyer   lib/extable.c: us...
49
  static int cmp_ex_sort(const void *a, const void *b)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
50
51
52
53
  {
  	const struct exception_table_entry *x = a, *y = b;
  
  	/* avoid overflow */
a272858a3   Ard Biesheuvel   extable: add supp...
54
  	if (ex_to_insn(x) > ex_to_insn(y))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
55
  		return 1;
a272858a3   Ard Biesheuvel   extable: add supp...
56
  	if (ex_to_insn(x) < ex_to_insn(y))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
57
58
59
60
61
62
63
64
  		return -1;
  	return 0;
  }
  
  void sort_extable(struct exception_table_entry *start,
  		  struct exception_table_entry *finish)
  {
  	sort(start, finish - start, sizeof(struct exception_table_entry),
a94c33dd1   Thomas Meyer   lib/extable.c: us...
65
  	     cmp_ex_sort, swap_ex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
66
  }
ad6561dff   Rusty Russell   module: trim exce...
67
68
69
70
71
72
73
74
75
  
  #ifdef CONFIG_MODULES
  /*
   * If the exception table is sorted, any referring to the module init
   * will be at the beginning or the end.
   */
  void trim_init_extable(struct module *m)
  {
  	/*trim the beginning*/
a272858a3   Ard Biesheuvel   extable: add supp...
76
77
  	while (m->num_exentries &&
  	       within_module_init(ex_to_insn(&m->extable[0]), m)) {
ad6561dff   Rusty Russell   module: trim exce...
78
79
80
81
82
  		m->extable++;
  		m->num_exentries--;
  	}
  	/*trim the end*/
  	while (m->num_exentries &&
a272858a3   Ard Biesheuvel   extable: add supp...
83
84
  	       within_module_init(ex_to_insn(&m->extable[m->num_exentries - 1]),
  				  m))
ad6561dff   Rusty Russell   module: trim exce...
85
86
87
88
  		m->num_exentries--;
  }
  #endif /* CONFIG_MODULES */
  #endif /* !ARCH_HAS_SORT_EXTABLE */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
  
  #ifndef ARCH_HAS_SEARCH_EXTABLE
a94c33dd1   Thomas Meyer   lib/extable.c: us...
91
92
93
94
95
96
97
98
99
100
101
102
103
  
  static int cmp_ex_search(const void *key, const void *elt)
  {
  	const struct exception_table_entry *_elt = elt;
  	unsigned long _key = *(unsigned long *)key;
  
  	/* avoid overflow */
  	if (_key > ex_to_insn(_elt))
  		return 1;
  	if (_key < ex_to_insn(_elt))
  		return -1;
  	return 0;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
105
106
107
108
109
110
111
  /*
   * Search one exception table for an entry corresponding to the
   * given instruction address, and return the address of the entry,
   * or NULL if none is found.
   * We use a binary search, and thus we assume that the table is
   * already sorted.
   */
  const struct exception_table_entry *
a94c33dd1   Thomas Meyer   lib/extable.c: us...
112
113
  search_extable(const struct exception_table_entry *base,
  	       const size_t num,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
  	       unsigned long value)
  {
a94c33dd1   Thomas Meyer   lib/extable.c: us...
116
117
  	return bsearch(&value, base, num,
  		       sizeof(struct exception_table_entry), cmp_ex_search);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
  }
  #endif