Blame view

kernel/extable.c 4.32 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)
  {
e656a6341   Uwe Kleine-König   extable: skip sor...
35
  	if (main_extable_sort_needed && __stop___ex_table > __start___ex_table) {
bec1b9e76   Borislav Petkov   extable: Flip the...
36
37
  		pr_notice("Sorting __ex_table...
  ");
d219e2e86   David Daney   extable: Skip sor...
38
  		sort_extable(__start___ex_table, __stop___ex_table);
bec1b9e76   Borislav Petkov   extable: Flip the...
39
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
  }
49ec9177b   Santosh Sivaraj   extable: Add func...
41
42
43
44
45
46
47
  /* 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
48
49
50
51
  /* 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...
52
  	e = search_kernel_exception_table(addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
53
54
55
56
  	if (!e)
  		e = search_module_extables(addr);
  	return e;
  }
9fbcc57aa   Josh Poimboeuf   extable: Make ini...
57
  int init_kernel_text(unsigned long addr)
4a44bac1f   Ingo Molnar   symbols, stacktra...
58
59
  {
  	if (addr >= (unsigned long)_sinittext &&
5ecbe3c3c   Helge Deller   kernel/extable: f...
60
  	    addr < (unsigned long)_einittext)
4a44bac1f   Ingo Molnar   symbols, stacktra...
61
62
63
  		return 1;
  	return 0;
  }
c0d80ddab   Marcin Nowakowski   kernel/extable.c:...
64
  int notrace core_kernel_text(unsigned long addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
  {
  	if (addr >= (unsigned long)_stext &&
5ecbe3c3c   Helge Deller   kernel/extable: f...
67
  	    addr < (unsigned long)_etext)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
68
  		return 1;
0594729c2   Thomas Gleixner   extable: Adjust s...
69
  	if (system_state < SYSTEM_RUNNING &&
4a44bac1f   Ingo Molnar   symbols, stacktra...
70
  	    init_kernel_text(addr))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
71
72
73
  		return 1;
  	return 0;
  }
a2d063ac2   Steven Rostedt   extable, core_ker...
74
75
76
77
78
79
80
81
82
83
  /**
   * 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...
84
85
  int core_kernel_data(unsigned long addr)
  {
a2d063ac2   Steven Rostedt   extable, core_ker...
86
  	if (addr >= (unsigned long)_sdata &&
cdbe61bfe   Steven Rostedt   ftrace: Allow dyn...
87
88
89
90
  	    addr < (unsigned long)_edata)
  		return 1;
  	return 0;
  }
3861a17bc   Frederic Weisbecker   tracing/function-...
91
  int __kernel_text_address(unsigned long addr)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
92
  {
9aadde91b   Steven Rostedt (VMware)   extable: Consolid...
93
  	if (kernel_text_address(addr))
74451e66d   Daniel Borkmann   bpf: make jited p...
94
  		return 1;
4a44bac1f   Ingo Molnar   symbols, stacktra...
95
96
97
98
99
100
101
102
103
104
105
  	/*
  	 * 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
106
107
108
109
  }
  
  int kernel_text_address(unsigned long addr)
  {
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
110
111
  	bool no_rcu;
  	int ret = 1;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
  	if (core_kernel_text(addr))
  		return 1;
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  
  	/*
  	 * 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.
  	 *
  	 * is_module_text_address() as well as the kprobe slots
  	 * and is_bpf_text_address() require RCU to be watching.
  	 */
  	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...
130
  	if (is_module_text_address(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
131
  		goto out;
5b485629b   Masami Hiramatsu   kprobes, extable:...
132
  	if (is_ftrace_trampoline(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
133
  		goto out;
5b485629b   Masami Hiramatsu   kprobes, extable:...
134
  	if (is_kprobe_optinsn_slot(addr) || is_kprobe_insn_slot(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
135
  		goto out;
74451e66d   Daniel Borkmann   bpf: make jited p...
136
  	if (is_bpf_text_address(addr))
e8cac8b1d   Steven Rostedt (VMware)   extable: Enable R...
137
138
139
140
141
142
143
  		goto out;
  	ret = 0;
  out:
  	if (no_rcu)
  		rcu_nmi_exit();
  
  	return ret;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
144
  }
ab7476cf7   Arjan van de Ven   debug: add notifi...
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  
  /*
   * 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...
159
  	return is_module_text_address(addr);
ab7476cf7   Arjan van de Ven   debug: add notifi...
160
  }