Blame view

kernel/extable.c 4.4 KB
1a59d1b8e   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
  /* Rewritten by Rusty Russell, on the backs of many others...
     Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
4
  */
505f2b970   Ingo Molnar   tracing, Text Edi...
5
  #include <linux/ftrace.h>
f80d2d772   Dmitri Vorobiev   tracing, Text Edi...
6
  #include <linux/memory.h>
8a293be0d   Paul Gortmaker   core: migrate exc...
7
  #include <linux/extable.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
8
  #include <linux/module.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
9
  #include <linux/mutex.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
  #include <linux/init.h>
5b485629b   Masami Hiramatsu   kprobes, extable:...
11
  #include <linux/kprobes.h>
74451e66d   Daniel Borkmann   bpf: make jited p...
12
  #include <linux/filter.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
13

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
  #include <asm/sections.h>
7c0f6ba68   Linus Torvalds   Replace <asm/uacc...
15
  #include <linux/uaccess.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
16
17
18
19
20
  
  /*
   * mutex protecting text section modification (dynamic code patching).
   * some users need to sleep (allocating memory...) while they hold this lock.
   *
e846d1395   Zhou Chengming   kprobes, x86/alte...
21
22
   * Note: Also protects SMP-alternatives modification on x86.
   *
505f2b970   Ingo Molnar   tracing, Text Edi...
23
24
25
   * NOT exported to modules - patching kernel text is a really delicate matter.
   */
  DEFINE_MUTEX(text_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
28
  
  extern struct exception_table_entry __start___ex_table[];
  extern struct exception_table_entry __stop___ex_table[];
d219e2e86   David Daney   extable: Skip sor...
29
  /* Cleared by build time tools if the table is already sorted. */
00b710307   Andi Kleen   asmlinkage: Make ...
30
  u32 __initdata __visible main_extable_sort_needed = 1;
d219e2e86   David Daney   extable: Skip sor...
31

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
  /* Sort the kernel's built-in exception table */
  void __init sort_main_extable(void)
  {
63174f61d   Nathan Chancellor   kernel/extable.c:...
35
36
  	if (main_extable_sort_needed &&
  	    &__stop___ex_table > &__start___ex_table) {
bec1b9e76   Borislav Petkov   extable: Flip the...
37
38
  		pr_notice("Sorting __ex_table...
  ");
d219e2e86   David Daney   extable: Skip sor...
39
  		sort_extable(__start___ex_table, __stop___ex_table);
bec1b9e76   Borislav Petkov   extable: Flip the...
40
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
41
  }
49ec9177b   Santosh Sivaraj   extable: Add func...
42
43
44
45
46
47
48
  /* Given an address, look for it in the kernel exception table */
  const
  struct exception_table_entry *search_kernel_exception_table(unsigned long addr)
  {
  	return search_extable(__start___ex_table,
  			      __stop___ex_table - __start___ex_table, addr);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
  /* Given an address, look for it in the exception tables. */
  const struct exception_table_entry *search_exception_tables(unsigned long addr)
  {
  	const struct exception_table_entry *e;
49ec9177b   Santosh Sivaraj   extable: Add func...
53
  	e = search_kernel_exception_table(addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
  	if (!e)
  		e = search_module_extables(addr);
3dec541b2   Alexei Starovoitov   bpf: Add support ...
56
57
  	if (!e)
  		e = search_bpf_extables(addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
58
59
  	return e;
  }
9fbcc57aa   Josh Poimboeuf   extable: Make ini...
60
  int init_kernel_text(unsigned long addr)
4a44bac1f   Ingo Molnar   symbols, stacktra...
61
62
  {
  	if (addr >= (unsigned long)_sinittext &&
5ecbe3c3c   Helge Deller   kernel/extable: f...
63
  	    addr < (unsigned long)_einittext)
4a44bac1f   Ingo Molnar   symbols, stacktra...
64
65
66
  		return 1;
  	return 0;
  }
c0d80ddab   Marcin Nowakowski   kernel/extable.c:...
67
  int notrace core_kernel_text(unsigned long addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
69
  {
  	if (addr >= (unsigned long)_stext &&
5ecbe3c3c   Helge Deller   kernel/extable: f...
70
  	    addr < (unsigned long)_etext)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
  		return 1;
0594729c2   Thomas Gleixner   extable: Adjust s...
72
  	if (system_state < SYSTEM_RUNNING &&
4a44bac1f   Ingo Molnar   symbols, stacktra...
73
  	    init_kernel_text(addr))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
74
75
76
  		return 1;
  	return 0;
  }
a2d063ac2   Steven Rostedt   extable, core_ker...
77
78
79
80
81
82
83
84
85
86
  /**
   * core_kernel_data - tell if addr points to kernel data
   * @addr: address to test
   *
   * Returns true if @addr passed in is from the core kernel data
   * section.
   *
   * Note: On some archs it may return true for core RODATA, and false
   *  for others. But will always be true for core RW data.
   */
cdbe61bfe   Steven Rostedt   ftrace: Allow dyn...
87
88
  int core_kernel_data(unsigned long addr)
  {
a2d063ac2   Steven Rostedt   extable, core_ker...
89
  	if (addr >= (unsigned long)_sdata &&
cdbe61bfe   Steven Rostedt   ftrace: Allow dyn...
90
91
92
93
  	    addr < (unsigned long)_edata)
  		return 1;
  	return 0;
  }
3861a17bc   Frederic Weisbecker   tracing/function-...
94
  int __kernel_text_address(unsigned long addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
  {
9aadde91b   Steven Rostedt (VMware)   extable: Consolid...
96
  	if (kernel_text_address(addr))
74451e66d   Daniel Borkmann   bpf: make jited p...
97
  		return 1;
4a44bac1f   Ingo Molnar   symbols, stacktra...
98
99
100
101
102
103
104
105
106
107
108
  	/*
  	 * There might be init symbols in saved stacktraces.
  	 * Give those symbols a chance to be printed in
  	 * backtraces (such as lockdep traces).
  	 *
  	 * Since we are after the module-symbols check, there's
  	 * no danger of address overlap:
  	 */
  	if (init_kernel_text(addr))
  		return 1;
  	return 0;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
  }
  
  int kernel_text_address(unsigned long addr)
  {
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
113
114
  	bool no_rcu;
  	int ret = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
116
  	if (core_kernel_text(addr))
  		return 1;
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
117
118
119
120
121
122
123
124
  
  	/*
  	 * If a stack dump happens while RCU is not watching, then
  	 * RCU needs to be notified that it requires to start
  	 * watching again. This can happen either by tracing that
  	 * triggers a stack trace, or a WARN() that happens during
  	 * coming back from idle, or cpu on or offlining.
  	 *
e9b4e606c   Jiri Olsa   bpf: Allow to res...
125
126
127
  	 * is_module_text_address() as well as the kprobe slots,
  	 * is_bpf_text_address() and is_bpf_image_address require
  	 * RCU to be watching.
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
128
129
130
131
132
133
  	 */
  	no_rcu = !rcu_is_watching();
  
  	/* Treat this like an NMI as it can happen anywhere */
  	if (no_rcu)
  		rcu_nmi_enter();
aec0be2d6   Steven Rostedt (Red Hat)   ftrace/x86/extabl...
134
  	if (is_module_text_address(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
135
  		goto out;
5b485629b   Masami Hiramatsu   kprobes, extable:...
136
  	if (is_ftrace_trampoline(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
137
  		goto out;
5b485629b   Masami Hiramatsu   kprobes, extable:...
138
  	if (is_kprobe_optinsn_slot(addr) || is_kprobe_insn_slot(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
139
  		goto out;
74451e66d   Daniel Borkmann   bpf: make jited p...
140
  	if (is_bpf_text_address(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
141
142
143
144
145
146
147
  		goto out;
  	ret = 0;
  out:
  	if (no_rcu)
  		rcu_nmi_exit();
  
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
  }
ab7476cf7   Arjan van de Ven   debug: add notifi...
149
150
151
152
153
154
155
156
157
158
159
160
161
162
  
  /*
   * On some architectures (PPC64, IA64) function pointers
   * are actually only tokens to some data that then holds the
   * real function address. As a result, to find if a function
   * pointer is part of the kernel text, we need to do some
   * special dereferencing first.
   */
  int func_ptr_is_kernel_text(void *ptr)
  {
  	unsigned long addr;
  	addr = (unsigned long) dereference_function_descriptor(ptr);
  	if (core_kernel_text(addr))
  		return 1;
a6e6abd57   Rusty Russell   module: remove mo...
163
  	return is_module_text_address(addr);
ab7476cf7   Arjan van de Ven   debug: add notifi...
164
  }