Blame view

kernel/extable.c 3.98 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  /* Rewritten by Rusty Russell, on the backs of many others...
     Copyright (C) 2001 Rusty Russell, 2002 Rusty Russell IBM.
  
      This program is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published by
      the Free Software Foundation; either version 2 of the License, or
      (at your option) any later version.
  
      This program is distributed in the hope that it will be useful,
      but WITHOUT ANY WARRANTY; without even the implied warranty of
      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      GNU General Public License for more details.
  
      You should have received a copy of the GNU General Public License
      along with this program; if not, write to the Free Software
      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
505f2b970   Ingo Molnar   tracing, Text Edi...
18
  #include <linux/ftrace.h>
f80d2d772   Dmitri Vorobiev   tracing, Text Edi...
19
  #include <linux/memory.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
  #include <linux/module.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
21
  #include <linux/mutex.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
22
  #include <linux/init.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
23

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24
  #include <asm/sections.h>
505f2b970   Ingo Molnar   tracing, Text Edi...
25
26
27
28
29
30
31
32
33
  #include <asm/uaccess.h>
  
  /*
   * mutex protecting text section modification (dynamic code patching).
   * some users need to sleep (allocating memory...) while they hold this lock.
   *
   * NOT exported to modules - patching kernel text is a really delicate matter.
   */
  DEFINE_MUTEX(text_mutex);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
35
36
  
  extern struct exception_table_entry __start___ex_table[];
  extern struct exception_table_entry __stop___ex_table[];
d219e2e86   David Daney   extable: Skip sor...
37
  /* Cleared by build time tools if the table is already sorted. */
00b710307   Andi Kleen   asmlinkage: Make ...
38
  u32 __initdata __visible main_extable_sort_needed = 1;
d219e2e86   David Daney   extable: Skip sor...
39

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
42
  /* Sort the kernel's built-in exception table */
  void __init sort_main_extable(void)
  {
e656a6341   Uwe Kleine-König   extable: skip sor...
43
  	if (main_extable_sort_needed && __stop___ex_table > __start___ex_table) {
bec1b9e76   Borislav Petkov   extable: Flip the...
44
45
  		pr_notice("Sorting __ex_table...
  ");
d219e2e86   David Daney   extable: Skip sor...
46
  		sort_extable(__start___ex_table, __stop___ex_table);
bec1b9e76   Borislav Petkov   extable: Flip the...
47
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
48
49
50
51
52
53
54
55
56
57
58
59
  }
  
  /* 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;
  
  	e = search_extable(__start___ex_table, __stop___ex_table-1, addr);
  	if (!e)
  		e = search_module_extables(addr);
  	return e;
  }
4a44bac1f   Ingo Molnar   symbols, stacktra...
60
61
62
  static inline int init_kernel_text(unsigned long addr)
  {
  	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;
  }
3861a17bc   Frederic Weisbecker   tracing/function-...
67
  int 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;
a2da4052f   Rusty Russell   module: Don't rep...
72
  	if (system_state == SYSTEM_BOOTING &&
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
96
97
  {
  	if (core_kernel_text(addr))
  		return 1;
cab4e4c43   Linus Torvalds   Merge git://git.k...
98
  	if (is_module_text_address(addr))
4a44bac1f   Ingo Molnar   symbols, stacktra...
99
  		return 1;
aec0be2d6   Steven Rostedt (Red Hat)   ftrace/x86/extabl...
100
101
  	if (is_ftrace_trampoline(addr))
  		return 1;
4a44bac1f   Ingo Molnar   symbols, stacktra...
102
103
104
105
106
107
108
109
110
111
112
  	/*
  	 * 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
113
114
115
116
117
118
  }
  
  int kernel_text_address(unsigned long addr)
  {
  	if (core_kernel_text(addr))
  		return 1;
aec0be2d6   Steven Rostedt (Red Hat)   ftrace/x86/extabl...
119
120
121
  	if (is_module_text_address(addr))
  		return 1;
  	return is_ftrace_trampoline(addr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
  }
ab7476cf7   Arjan van de Ven   debug: add notifi...
123
124
125
126
127
128
129
130
131
132
133
134
135
136
  
  /*
   * 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...
137
  	return is_module_text_address(addr);
ab7476cf7   Arjan van de Ven   debug: add notifi...
138
  }