diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/extable.c | 7 | ||||
| -rw-r--r-- | kernel/trace/ftrace.c | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/kernel/extable.c b/kernel/extable.c index d8a6446adbcb..c98f926277a8 100644 --- a/kernel/extable.c +++ b/kernel/extable.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <linux/ftrace.h> | 18 | #include <linux/ftrace.h> |
| 19 | #include <linux/memory.h> | 19 | #include <linux/memory.h> |
| 20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
| 21 | #include <linux/ftrace.h> | ||
| 21 | #include <linux/mutex.h> | 22 | #include <linux/mutex.h> |
| 22 | #include <linux/init.h> | 23 | #include <linux/init.h> |
| 23 | 24 | ||
| @@ -102,6 +103,8 @@ int __kernel_text_address(unsigned long addr) | |||
| 102 | return 1; | 103 | return 1; |
| 103 | if (is_module_text_address(addr)) | 104 | if (is_module_text_address(addr)) |
| 104 | return 1; | 105 | return 1; |
| 106 | if (is_ftrace_trampoline(addr)) | ||
| 107 | return 1; | ||
| 105 | /* | 108 | /* |
| 106 | * There might be init symbols in saved stacktraces. | 109 | * There might be init symbols in saved stacktraces. |
| 107 | * Give those symbols a chance to be printed in | 110 | * Give those symbols a chance to be printed in |
| @@ -119,7 +122,9 @@ int kernel_text_address(unsigned long addr) | |||
| 119 | { | 122 | { |
| 120 | if (core_kernel_text(addr)) | 123 | if (core_kernel_text(addr)) |
| 121 | return 1; | 124 | return 1; |
| 122 | return is_module_text_address(addr); | 125 | if (is_module_text_address(addr)) |
| 126 | return 1; | ||
| 127 | return is_ftrace_trampoline(addr); | ||
| 123 | } | 128 | } |
| 124 | 129 | ||
| 125 | /* | 130 | /* |
diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index 6233f9102179..fa0f36bb32e9 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c | |||
| @@ -1117,6 +1117,43 @@ static struct ftrace_ops global_ops = { | |||
| 1117 | FTRACE_OPS_FL_INITIALIZED, | 1117 | FTRACE_OPS_FL_INITIALIZED, |
| 1118 | }; | 1118 | }; |
| 1119 | 1119 | ||
| 1120 | /* | ||
| 1121 | * This is used by __kernel_text_address() to return true if the | ||
| 1122 | * the address is on a dynamically allocated trampoline that would | ||
| 1123 | * not return true for either core_kernel_text() or | ||
| 1124 | * is_module_text_address(). | ||
| 1125 | */ | ||
| 1126 | bool is_ftrace_trampoline(unsigned long addr) | ||
| 1127 | { | ||
| 1128 | struct ftrace_ops *op; | ||
| 1129 | bool ret = false; | ||
| 1130 | |||
| 1131 | /* | ||
| 1132 | * Some of the ops may be dynamically allocated, | ||
| 1133 | * they are freed after a synchronize_sched(). | ||
| 1134 | */ | ||
| 1135 | preempt_disable_notrace(); | ||
| 1136 | |||
| 1137 | do_for_each_ftrace_op(op, ftrace_ops_list) { | ||
| 1138 | /* | ||
| 1139 | * This is to check for dynamically allocated trampolines. | ||
| 1140 | * Trampolines that are in kernel text will have | ||
| 1141 | * core_kernel_text() return true. | ||
| 1142 | */ | ||
| 1143 | if (op->trampoline && op->trampoline_size) | ||
| 1144 | if (addr >= op->trampoline && | ||
| 1145 | addr < op->trampoline + op->trampoline_size) { | ||
| 1146 | ret = true; | ||
| 1147 | goto out; | ||
| 1148 | } | ||
| 1149 | } while_for_each_ftrace_op(op); | ||
| 1150 | |||
| 1151 | out: | ||
| 1152 | preempt_enable_notrace(); | ||
| 1153 | |||
| 1154 | return ret; | ||
| 1155 | } | ||
| 1156 | |||
| 1120 | struct ftrace_page { | 1157 | struct ftrace_page { |
| 1121 | struct ftrace_page *next; | 1158 | struct ftrace_page *next; |
| 1122 | struct dyn_ftrace *records; | 1159 | struct dyn_ftrace *records; |
| @@ -5373,6 +5410,7 @@ static struct ftrace_ops graph_ops = { | |||
| 5373 | FTRACE_OPS_FL_STUB, | 5410 | FTRACE_OPS_FL_STUB, |
| 5374 | #ifdef FTRACE_GRAPH_TRAMP_ADDR | 5411 | #ifdef FTRACE_GRAPH_TRAMP_ADDR |
| 5375 | .trampoline = FTRACE_GRAPH_TRAMP_ADDR, | 5412 | .trampoline = FTRACE_GRAPH_TRAMP_ADDR, |
| 5413 | /* trampoline_size is only needed for dynamically allocated tramps */ | ||
| 5376 | #endif | 5414 | #endif |
| 5377 | ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash) | 5415 | ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash) |
| 5378 | }; | 5416 | }; |
