| 1 | /* |
| 2 | * Infrastructure for profiling code inserted by 'gcc -pg'. |
| 3 | * |
| 4 | * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com> |
| 5 | * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com> |
| 6 | * |
| 7 | * Originally ported from the -rt patch by: |
| 8 | * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com> |
| 9 | * |
| 10 | * Based on code in the latency_tracer, that is: |
| 11 | * |
| 12 | * Copyright (C) 2004-2006 Ingo Molnar |
| 13 | * Copyright (C) 2004 Nadia Yvette Chambers |
| 14 | */ |
| 15 | |
| 16 | #include <linux/stop_machine.h> |
| 17 | #include <linux/clocksource.h> |
| 18 | #include <linux/kallsyms.h> |
| 19 | #include <linux/seq_file.h> |
| 20 | #include <linux/suspend.h> |
| 21 | #include <linux/tracefs.h> |
| 22 | #include <linux/hardirq.h> |
| 23 | #include <linux/kthread.h> |
| 24 | #include <linux/uaccess.h> |
| 25 | #include <linux/bsearch.h> |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/ftrace.h> |
| 28 | #include <linux/sysctl.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/ctype.h> |
| 31 | #include <linux/sort.h> |
| 32 | #include <linux/list.h> |
| 33 | #include <linux/hash.h> |
| 34 | #include <linux/rcupdate.h> |
| 35 | |
| 36 | #include <trace/events/sched.h> |
| 37 | |
| 38 | #include <asm/setup.h> |
| 39 | |
| 40 | #include "trace_output.h" |
| 41 | #include "trace_stat.h" |
| 42 | |
| 43 | #define FTRACE_WARN_ON(cond) \ |
| 44 | ({ \ |
| 45 | int ___r = cond; \ |
| 46 | if (WARN_ON(___r)) \ |
| 47 | ftrace_kill(); \ |
| 48 | ___r; \ |
| 49 | }) |
| 50 | |
| 51 | #define FTRACE_WARN_ON_ONCE(cond) \ |
| 52 | ({ \ |
| 53 | int ___r = cond; \ |
| 54 | if (WARN_ON_ONCE(___r)) \ |
| 55 | ftrace_kill(); \ |
| 56 | ___r; \ |
| 57 | }) |
| 58 | |
| 59 | /* hash bits for specific function selection */ |
| 60 | #define FTRACE_HASH_BITS 7 |
| 61 | #define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS) |
| 62 | #define FTRACE_HASH_DEFAULT_BITS 10 |
| 63 | #define FTRACE_HASH_MAX_BITS 12 |
| 64 | |
| 65 | #define FL_GLOBAL_CONTROL_MASK (FTRACE_OPS_FL_CONTROL) |
| 66 | |
| 67 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 68 | #define INIT_OPS_HASH(opsname) \ |
| 69 | .func_hash = &opsname.local_hash, \ |
| 70 | .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock), |
| 71 | #define ASSIGN_OPS_HASH(opsname, val) \ |
| 72 | .func_hash = val, \ |
| 73 | .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock), |
| 74 | #else |
| 75 | #define INIT_OPS_HASH(opsname) |
| 76 | #define ASSIGN_OPS_HASH(opsname, val) |
| 77 | #endif |
| 78 | |
| 79 | static struct ftrace_ops ftrace_list_end __read_mostly = { |
| 80 | .func = ftrace_stub, |
| 81 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB, |
| 82 | INIT_OPS_HASH(ftrace_list_end) |
| 83 | }; |
| 84 | |
| 85 | /* ftrace_enabled is a method to turn ftrace on or off */ |
| 86 | int ftrace_enabled __read_mostly; |
| 87 | static int last_ftrace_enabled; |
| 88 | |
| 89 | /* Current function tracing op */ |
| 90 | struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end; |
| 91 | /* What to set function_trace_op to */ |
| 92 | static struct ftrace_ops *set_function_trace_op; |
| 93 | |
| 94 | /* List for set_ftrace_pid's pids. */ |
| 95 | LIST_HEAD(ftrace_pids); |
| 96 | struct ftrace_pid { |
| 97 | struct list_head list; |
| 98 | struct pid *pid; |
| 99 | }; |
| 100 | |
| 101 | static bool ftrace_pids_enabled(void) |
| 102 | { |
| 103 | return !list_empty(&ftrace_pids); |
| 104 | } |
| 105 | |
| 106 | static void ftrace_update_trampoline(struct ftrace_ops *ops); |
| 107 | |
| 108 | /* |
| 109 | * ftrace_disabled is set when an anomaly is discovered. |
| 110 | * ftrace_disabled is much stronger than ftrace_enabled. |
| 111 | */ |
| 112 | static int ftrace_disabled __read_mostly; |
| 113 | |
| 114 | static DEFINE_MUTEX(ftrace_lock); |
| 115 | |
| 116 | static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end; |
| 117 | static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end; |
| 118 | ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub; |
| 119 | static struct ftrace_ops global_ops; |
| 120 | static struct ftrace_ops control_ops; |
| 121 | |
| 122 | static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip, |
| 123 | struct ftrace_ops *op, struct pt_regs *regs); |
| 124 | |
| 125 | #if ARCH_SUPPORTS_FTRACE_OPS |
| 126 | static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip, |
| 127 | struct ftrace_ops *op, struct pt_regs *regs); |
| 128 | #else |
| 129 | /* See comment below, where ftrace_ops_list_func is defined */ |
| 130 | static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip); |
| 131 | #define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops) |
| 132 | #endif |
| 133 | |
| 134 | /* |
| 135 | * Traverse the ftrace_global_list, invoking all entries. The reason that we |
| 136 | * can use rcu_dereference_raw_notrace() is that elements removed from this list |
| 137 | * are simply leaked, so there is no need to interact with a grace-period |
| 138 | * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle |
| 139 | * concurrent insertions into the ftrace_global_list. |
| 140 | * |
| 141 | * Silly Alpha and silly pointer-speculation compiler optimizations! |
| 142 | */ |
| 143 | #define do_for_each_ftrace_op(op, list) \ |
| 144 | op = rcu_dereference_raw_notrace(list); \ |
| 145 | do |
| 146 | |
| 147 | /* |
| 148 | * Optimized for just a single item in the list (as that is the normal case). |
| 149 | */ |
| 150 | #define while_for_each_ftrace_op(op) \ |
| 151 | while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \ |
| 152 | unlikely((op) != &ftrace_list_end)) |
| 153 | |
| 154 | static inline void ftrace_ops_init(struct ftrace_ops *ops) |
| 155 | { |
| 156 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 157 | if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) { |
| 158 | mutex_init(&ops->local_hash.regex_lock); |
| 159 | ops->func_hash = &ops->local_hash; |
| 160 | ops->flags |= FTRACE_OPS_FL_INITIALIZED; |
| 161 | } |
| 162 | #endif |
| 163 | } |
| 164 | |
| 165 | /** |
| 166 | * ftrace_nr_registered_ops - return number of ops registered |
| 167 | * |
| 168 | * Returns the number of ftrace_ops registered and tracing functions |
| 169 | */ |
| 170 | int ftrace_nr_registered_ops(void) |
| 171 | { |
| 172 | struct ftrace_ops *ops; |
| 173 | int cnt = 0; |
| 174 | |
| 175 | mutex_lock(&ftrace_lock); |
| 176 | |
| 177 | for (ops = ftrace_ops_list; |
| 178 | ops != &ftrace_list_end; ops = ops->next) |
| 179 | cnt++; |
| 180 | |
| 181 | mutex_unlock(&ftrace_lock); |
| 182 | |
| 183 | return cnt; |
| 184 | } |
| 185 | |
| 186 | static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip, |
| 187 | struct ftrace_ops *op, struct pt_regs *regs) |
| 188 | { |
| 189 | if (!test_tsk_trace_trace(current)) |
| 190 | return; |
| 191 | |
| 192 | op->saved_func(ip, parent_ip, op, regs); |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * clear_ftrace_function - reset the ftrace function |
| 197 | * |
| 198 | * This NULLs the ftrace function and in essence stops |
| 199 | * tracing. There may be lag |
| 200 | */ |
| 201 | void clear_ftrace_function(void) |
| 202 | { |
| 203 | ftrace_trace_function = ftrace_stub; |
| 204 | } |
| 205 | |
| 206 | static void control_ops_disable_all(struct ftrace_ops *ops) |
| 207 | { |
| 208 | int cpu; |
| 209 | |
| 210 | for_each_possible_cpu(cpu) |
| 211 | *per_cpu_ptr(ops->disabled, cpu) = 1; |
| 212 | } |
| 213 | |
| 214 | static int control_ops_alloc(struct ftrace_ops *ops) |
| 215 | { |
| 216 | int __percpu *disabled; |
| 217 | |
| 218 | disabled = alloc_percpu(int); |
| 219 | if (!disabled) |
| 220 | return -ENOMEM; |
| 221 | |
| 222 | ops->disabled = disabled; |
| 223 | control_ops_disable_all(ops); |
| 224 | return 0; |
| 225 | } |
| 226 | |
| 227 | static void ftrace_sync(struct work_struct *work) |
| 228 | { |
| 229 | /* |
| 230 | * This function is just a stub to implement a hard force |
| 231 | * of synchronize_sched(). This requires synchronizing |
| 232 | * tasks even in userspace and idle. |
| 233 | * |
| 234 | * Yes, function tracing is rude. |
| 235 | */ |
| 236 | } |
| 237 | |
| 238 | static void ftrace_sync_ipi(void *data) |
| 239 | { |
| 240 | /* Probably not needed, but do it anyway */ |
| 241 | smp_rmb(); |
| 242 | } |
| 243 | |
| 244 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 245 | static void update_function_graph_func(void); |
| 246 | |
| 247 | /* Both enabled by default (can be cleared by function_graph tracer flags */ |
| 248 | static bool fgraph_sleep_time = true; |
| 249 | static bool fgraph_graph_time = true; |
| 250 | |
| 251 | #else |
| 252 | static inline void update_function_graph_func(void) { } |
| 253 | #endif |
| 254 | |
| 255 | |
| 256 | static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops) |
| 257 | { |
| 258 | /* |
| 259 | * If this is a dynamic ops or we force list func, |
| 260 | * then it needs to call the list anyway. |
| 261 | */ |
| 262 | if (ops->flags & FTRACE_OPS_FL_DYNAMIC || FTRACE_FORCE_LIST_FUNC) |
| 263 | return ftrace_ops_list_func; |
| 264 | |
| 265 | return ftrace_ops_get_func(ops); |
| 266 | } |
| 267 | |
| 268 | static void update_ftrace_function(void) |
| 269 | { |
| 270 | ftrace_func_t func; |
| 271 | |
| 272 | /* |
| 273 | * Prepare the ftrace_ops that the arch callback will use. |
| 274 | * If there's only one ftrace_ops registered, the ftrace_ops_list |
| 275 | * will point to the ops we want. |
| 276 | */ |
| 277 | set_function_trace_op = ftrace_ops_list; |
| 278 | |
| 279 | /* If there's no ftrace_ops registered, just call the stub function */ |
| 280 | if (ftrace_ops_list == &ftrace_list_end) { |
| 281 | func = ftrace_stub; |
| 282 | |
| 283 | /* |
| 284 | * If we are at the end of the list and this ops is |
| 285 | * recursion safe and not dynamic and the arch supports passing ops, |
| 286 | * then have the mcount trampoline call the function directly. |
| 287 | */ |
| 288 | } else if (ftrace_ops_list->next == &ftrace_list_end) { |
| 289 | func = ftrace_ops_get_list_func(ftrace_ops_list); |
| 290 | |
| 291 | } else { |
| 292 | /* Just use the default ftrace_ops */ |
| 293 | set_function_trace_op = &ftrace_list_end; |
| 294 | func = ftrace_ops_list_func; |
| 295 | } |
| 296 | |
| 297 | update_function_graph_func(); |
| 298 | |
| 299 | /* If there's no change, then do nothing more here */ |
| 300 | if (ftrace_trace_function == func) |
| 301 | return; |
| 302 | |
| 303 | /* |
| 304 | * If we are using the list function, it doesn't care |
| 305 | * about the function_trace_ops. |
| 306 | */ |
| 307 | if (func == ftrace_ops_list_func) { |
| 308 | ftrace_trace_function = func; |
| 309 | /* |
| 310 | * Don't even bother setting function_trace_ops, |
| 311 | * it would be racy to do so anyway. |
| 312 | */ |
| 313 | return; |
| 314 | } |
| 315 | |
| 316 | #ifndef CONFIG_DYNAMIC_FTRACE |
| 317 | /* |
| 318 | * For static tracing, we need to be a bit more careful. |
| 319 | * The function change takes affect immediately. Thus, |
| 320 | * we need to coorditate the setting of the function_trace_ops |
| 321 | * with the setting of the ftrace_trace_function. |
| 322 | * |
| 323 | * Set the function to the list ops, which will call the |
| 324 | * function we want, albeit indirectly, but it handles the |
| 325 | * ftrace_ops and doesn't depend on function_trace_op. |
| 326 | */ |
| 327 | ftrace_trace_function = ftrace_ops_list_func; |
| 328 | /* |
| 329 | * Make sure all CPUs see this. Yes this is slow, but static |
| 330 | * tracing is slow and nasty to have enabled. |
| 331 | */ |
| 332 | schedule_on_each_cpu(ftrace_sync); |
| 333 | /* Now all cpus are using the list ops. */ |
| 334 | function_trace_op = set_function_trace_op; |
| 335 | /* Make sure the function_trace_op is visible on all CPUs */ |
| 336 | smp_wmb(); |
| 337 | /* Nasty way to force a rmb on all cpus */ |
| 338 | smp_call_function(ftrace_sync_ipi, NULL, 1); |
| 339 | /* OK, we are all set to update the ftrace_trace_function now! */ |
| 340 | #endif /* !CONFIG_DYNAMIC_FTRACE */ |
| 341 | |
| 342 | ftrace_trace_function = func; |
| 343 | } |
| 344 | |
| 345 | int using_ftrace_ops_list_func(void) |
| 346 | { |
| 347 | return ftrace_trace_function == ftrace_ops_list_func; |
| 348 | } |
| 349 | |
| 350 | static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops) |
| 351 | { |
| 352 | ops->next = *list; |
| 353 | /* |
| 354 | * We are entering ops into the list but another |
| 355 | * CPU might be walking that list. We need to make sure |
| 356 | * the ops->next pointer is valid before another CPU sees |
| 357 | * the ops pointer included into the list. |
| 358 | */ |
| 359 | rcu_assign_pointer(*list, ops); |
| 360 | } |
| 361 | |
| 362 | static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops) |
| 363 | { |
| 364 | struct ftrace_ops **p; |
| 365 | |
| 366 | /* |
| 367 | * If we are removing the last function, then simply point |
| 368 | * to the ftrace_stub. |
| 369 | */ |
| 370 | if (*list == ops && ops->next == &ftrace_list_end) { |
| 371 | *list = &ftrace_list_end; |
| 372 | return 0; |
| 373 | } |
| 374 | |
| 375 | for (p = list; *p != &ftrace_list_end; p = &(*p)->next) |
| 376 | if (*p == ops) |
| 377 | break; |
| 378 | |
| 379 | if (*p != ops) |
| 380 | return -1; |
| 381 | |
| 382 | *p = (*p)->next; |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | static void add_ftrace_list_ops(struct ftrace_ops **list, |
| 387 | struct ftrace_ops *main_ops, |
| 388 | struct ftrace_ops *ops) |
| 389 | { |
| 390 | int first = *list == &ftrace_list_end; |
| 391 | add_ftrace_ops(list, ops); |
| 392 | if (first) |
| 393 | add_ftrace_ops(&ftrace_ops_list, main_ops); |
| 394 | } |
| 395 | |
| 396 | static int remove_ftrace_list_ops(struct ftrace_ops **list, |
| 397 | struct ftrace_ops *main_ops, |
| 398 | struct ftrace_ops *ops) |
| 399 | { |
| 400 | int ret = remove_ftrace_ops(list, ops); |
| 401 | if (!ret && *list == &ftrace_list_end) |
| 402 | ret = remove_ftrace_ops(&ftrace_ops_list, main_ops); |
| 403 | return ret; |
| 404 | } |
| 405 | |
| 406 | static void ftrace_update_trampoline(struct ftrace_ops *ops); |
| 407 | |
| 408 | static int __register_ftrace_function(struct ftrace_ops *ops) |
| 409 | { |
| 410 | if (ops->flags & FTRACE_OPS_FL_DELETED) |
| 411 | return -EINVAL; |
| 412 | |
| 413 | if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED)) |
| 414 | return -EBUSY; |
| 415 | |
| 416 | #ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 417 | /* |
| 418 | * If the ftrace_ops specifies SAVE_REGS, then it only can be used |
| 419 | * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set. |
| 420 | * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant. |
| 421 | */ |
| 422 | if (ops->flags & FTRACE_OPS_FL_SAVE_REGS && |
| 423 | !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)) |
| 424 | return -EINVAL; |
| 425 | |
| 426 | if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED) |
| 427 | ops->flags |= FTRACE_OPS_FL_SAVE_REGS; |
| 428 | #endif |
| 429 | |
| 430 | if (!core_kernel_data((unsigned long)ops)) |
| 431 | ops->flags |= FTRACE_OPS_FL_DYNAMIC; |
| 432 | |
| 433 | if (ops->flags & FTRACE_OPS_FL_CONTROL) { |
| 434 | if (control_ops_alloc(ops)) |
| 435 | return -ENOMEM; |
| 436 | add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops); |
| 437 | /* The control_ops needs the trampoline update */ |
| 438 | ops = &control_ops; |
| 439 | } else |
| 440 | add_ftrace_ops(&ftrace_ops_list, ops); |
| 441 | |
| 442 | /* Always save the function, and reset at unregistering */ |
| 443 | ops->saved_func = ops->func; |
| 444 | |
| 445 | if (ops->flags & FTRACE_OPS_FL_PID && ftrace_pids_enabled()) |
| 446 | ops->func = ftrace_pid_func; |
| 447 | |
| 448 | ftrace_update_trampoline(ops); |
| 449 | |
| 450 | if (ftrace_enabled) |
| 451 | update_ftrace_function(); |
| 452 | |
| 453 | return 0; |
| 454 | } |
| 455 | |
| 456 | static int __unregister_ftrace_function(struct ftrace_ops *ops) |
| 457 | { |
| 458 | int ret; |
| 459 | |
| 460 | if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED))) |
| 461 | return -EBUSY; |
| 462 | |
| 463 | if (ops->flags & FTRACE_OPS_FL_CONTROL) { |
| 464 | ret = remove_ftrace_list_ops(&ftrace_control_list, |
| 465 | &control_ops, ops); |
| 466 | } else |
| 467 | ret = remove_ftrace_ops(&ftrace_ops_list, ops); |
| 468 | |
| 469 | if (ret < 0) |
| 470 | return ret; |
| 471 | |
| 472 | if (ftrace_enabled) |
| 473 | update_ftrace_function(); |
| 474 | |
| 475 | ops->func = ops->saved_func; |
| 476 | |
| 477 | return 0; |
| 478 | } |
| 479 | |
| 480 | static void ftrace_update_pid_func(void) |
| 481 | { |
| 482 | bool enabled = ftrace_pids_enabled(); |
| 483 | struct ftrace_ops *op; |
| 484 | |
| 485 | /* Only do something if we are tracing something */ |
| 486 | if (ftrace_trace_function == ftrace_stub) |
| 487 | return; |
| 488 | |
| 489 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 490 | if (op->flags & FTRACE_OPS_FL_PID) { |
| 491 | op->func = enabled ? ftrace_pid_func : |
| 492 | op->saved_func; |
| 493 | ftrace_update_trampoline(op); |
| 494 | } |
| 495 | } while_for_each_ftrace_op(op); |
| 496 | |
| 497 | update_ftrace_function(); |
| 498 | } |
| 499 | |
| 500 | #ifdef CONFIG_FUNCTION_PROFILER |
| 501 | struct ftrace_profile { |
| 502 | struct hlist_node node; |
| 503 | unsigned long ip; |
| 504 | unsigned long counter; |
| 505 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 506 | unsigned long long time; |
| 507 | unsigned long long time_squared; |
| 508 | #endif |
| 509 | }; |
| 510 | |
| 511 | struct ftrace_profile_page { |
| 512 | struct ftrace_profile_page *next; |
| 513 | unsigned long index; |
| 514 | struct ftrace_profile records[]; |
| 515 | }; |
| 516 | |
| 517 | struct ftrace_profile_stat { |
| 518 | atomic_t disabled; |
| 519 | struct hlist_head *hash; |
| 520 | struct ftrace_profile_page *pages; |
| 521 | struct ftrace_profile_page *start; |
| 522 | struct tracer_stat stat; |
| 523 | }; |
| 524 | |
| 525 | #define PROFILE_RECORDS_SIZE \ |
| 526 | (PAGE_SIZE - offsetof(struct ftrace_profile_page, records)) |
| 527 | |
| 528 | #define PROFILES_PER_PAGE \ |
| 529 | (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile)) |
| 530 | |
| 531 | static int ftrace_profile_enabled __read_mostly; |
| 532 | |
| 533 | /* ftrace_profile_lock - synchronize the enable and disable of the profiler */ |
| 534 | static DEFINE_MUTEX(ftrace_profile_lock); |
| 535 | |
| 536 | static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats); |
| 537 | |
| 538 | #define FTRACE_PROFILE_HASH_BITS 10 |
| 539 | #define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS) |
| 540 | |
| 541 | static void * |
| 542 | function_stat_next(void *v, int idx) |
| 543 | { |
| 544 | struct ftrace_profile *rec = v; |
| 545 | struct ftrace_profile_page *pg; |
| 546 | |
| 547 | pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK); |
| 548 | |
| 549 | again: |
| 550 | if (idx != 0) |
| 551 | rec++; |
| 552 | |
| 553 | if ((void *)rec >= (void *)&pg->records[pg->index]) { |
| 554 | pg = pg->next; |
| 555 | if (!pg) |
| 556 | return NULL; |
| 557 | rec = &pg->records[0]; |
| 558 | if (!rec->counter) |
| 559 | goto again; |
| 560 | } |
| 561 | |
| 562 | return rec; |
| 563 | } |
| 564 | |
| 565 | static void *function_stat_start(struct tracer_stat *trace) |
| 566 | { |
| 567 | struct ftrace_profile_stat *stat = |
| 568 | container_of(trace, struct ftrace_profile_stat, stat); |
| 569 | |
| 570 | if (!stat || !stat->start) |
| 571 | return NULL; |
| 572 | |
| 573 | return function_stat_next(&stat->start->records[0], 0); |
| 574 | } |
| 575 | |
| 576 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 577 | /* function graph compares on total time */ |
| 578 | static int function_stat_cmp(void *p1, void *p2) |
| 579 | { |
| 580 | struct ftrace_profile *a = p1; |
| 581 | struct ftrace_profile *b = p2; |
| 582 | |
| 583 | if (a->time < b->time) |
| 584 | return -1; |
| 585 | if (a->time > b->time) |
| 586 | return 1; |
| 587 | else |
| 588 | return 0; |
| 589 | } |
| 590 | #else |
| 591 | /* not function graph compares against hits */ |
| 592 | static int function_stat_cmp(void *p1, void *p2) |
| 593 | { |
| 594 | struct ftrace_profile *a = p1; |
| 595 | struct ftrace_profile *b = p2; |
| 596 | |
| 597 | if (a->counter < b->counter) |
| 598 | return -1; |
| 599 | if (a->counter > b->counter) |
| 600 | return 1; |
| 601 | else |
| 602 | return 0; |
| 603 | } |
| 604 | #endif |
| 605 | |
| 606 | static int function_stat_headers(struct seq_file *m) |
| 607 | { |
| 608 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 609 | seq_puts(m, " Function " |
| 610 | "Hit Time Avg s^2\n" |
| 611 | " -------- " |
| 612 | "--- ---- --- ---\n"); |
| 613 | #else |
| 614 | seq_puts(m, " Function Hit\n" |
| 615 | " -------- ---\n"); |
| 616 | #endif |
| 617 | return 0; |
| 618 | } |
| 619 | |
| 620 | static int function_stat_show(struct seq_file *m, void *v) |
| 621 | { |
| 622 | struct ftrace_profile *rec = v; |
| 623 | char str[KSYM_SYMBOL_LEN]; |
| 624 | int ret = 0; |
| 625 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 626 | static struct trace_seq s; |
| 627 | unsigned long long avg; |
| 628 | unsigned long long stddev; |
| 629 | #endif |
| 630 | mutex_lock(&ftrace_profile_lock); |
| 631 | |
| 632 | /* we raced with function_profile_reset() */ |
| 633 | if (unlikely(rec->counter == 0)) { |
| 634 | ret = -EBUSY; |
| 635 | goto out; |
| 636 | } |
| 637 | |
| 638 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 639 | avg = rec->time; |
| 640 | do_div(avg, rec->counter); |
| 641 | if (tracing_thresh && (avg < tracing_thresh)) |
| 642 | goto out; |
| 643 | #endif |
| 644 | |
| 645 | kallsyms_lookup(rec->ip, NULL, NULL, NULL, str); |
| 646 | seq_printf(m, " %-30.30s %10lu", str, rec->counter); |
| 647 | |
| 648 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 649 | seq_puts(m, " "); |
| 650 | |
| 651 | /* Sample standard deviation (s^2) */ |
| 652 | if (rec->counter <= 1) |
| 653 | stddev = 0; |
| 654 | else { |
| 655 | /* |
| 656 | * Apply Welford's method: |
| 657 | * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2) |
| 658 | */ |
| 659 | stddev = rec->counter * rec->time_squared - |
| 660 | rec->time * rec->time; |
| 661 | |
| 662 | /* |
| 663 | * Divide only 1000 for ns^2 -> us^2 conversion. |
| 664 | * trace_print_graph_duration will divide 1000 again. |
| 665 | */ |
| 666 | do_div(stddev, rec->counter * (rec->counter - 1) * 1000); |
| 667 | } |
| 668 | |
| 669 | trace_seq_init(&s); |
| 670 | trace_print_graph_duration(rec->time, &s); |
| 671 | trace_seq_puts(&s, " "); |
| 672 | trace_print_graph_duration(avg, &s); |
| 673 | trace_seq_puts(&s, " "); |
| 674 | trace_print_graph_duration(stddev, &s); |
| 675 | trace_print_seq(m, &s); |
| 676 | #endif |
| 677 | seq_putc(m, '\n'); |
| 678 | out: |
| 679 | mutex_unlock(&ftrace_profile_lock); |
| 680 | |
| 681 | return ret; |
| 682 | } |
| 683 | |
| 684 | static void ftrace_profile_reset(struct ftrace_profile_stat *stat) |
| 685 | { |
| 686 | struct ftrace_profile_page *pg; |
| 687 | |
| 688 | pg = stat->pages = stat->start; |
| 689 | |
| 690 | while (pg) { |
| 691 | memset(pg->records, 0, PROFILE_RECORDS_SIZE); |
| 692 | pg->index = 0; |
| 693 | pg = pg->next; |
| 694 | } |
| 695 | |
| 696 | memset(stat->hash, 0, |
| 697 | FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head)); |
| 698 | } |
| 699 | |
| 700 | int ftrace_profile_pages_init(struct ftrace_profile_stat *stat) |
| 701 | { |
| 702 | struct ftrace_profile_page *pg; |
| 703 | int functions; |
| 704 | int pages; |
| 705 | int i; |
| 706 | |
| 707 | /* If we already allocated, do nothing */ |
| 708 | if (stat->pages) |
| 709 | return 0; |
| 710 | |
| 711 | stat->pages = (void *)get_zeroed_page(GFP_KERNEL); |
| 712 | if (!stat->pages) |
| 713 | return -ENOMEM; |
| 714 | |
| 715 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 716 | functions = ftrace_update_tot_cnt; |
| 717 | #else |
| 718 | /* |
| 719 | * We do not know the number of functions that exist because |
| 720 | * dynamic tracing is what counts them. With past experience |
| 721 | * we have around 20K functions. That should be more than enough. |
| 722 | * It is highly unlikely we will execute every function in |
| 723 | * the kernel. |
| 724 | */ |
| 725 | functions = 20000; |
| 726 | #endif |
| 727 | |
| 728 | pg = stat->start = stat->pages; |
| 729 | |
| 730 | pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE); |
| 731 | |
| 732 | for (i = 1; i < pages; i++) { |
| 733 | pg->next = (void *)get_zeroed_page(GFP_KERNEL); |
| 734 | if (!pg->next) |
| 735 | goto out_free; |
| 736 | pg = pg->next; |
| 737 | } |
| 738 | |
| 739 | return 0; |
| 740 | |
| 741 | out_free: |
| 742 | pg = stat->start; |
| 743 | while (pg) { |
| 744 | unsigned long tmp = (unsigned long)pg; |
| 745 | |
| 746 | pg = pg->next; |
| 747 | free_page(tmp); |
| 748 | } |
| 749 | |
| 750 | stat->pages = NULL; |
| 751 | stat->start = NULL; |
| 752 | |
| 753 | return -ENOMEM; |
| 754 | } |
| 755 | |
| 756 | static int ftrace_profile_init_cpu(int cpu) |
| 757 | { |
| 758 | struct ftrace_profile_stat *stat; |
| 759 | int size; |
| 760 | |
| 761 | stat = &per_cpu(ftrace_profile_stats, cpu); |
| 762 | |
| 763 | if (stat->hash) { |
| 764 | /* If the profile is already created, simply reset it */ |
| 765 | ftrace_profile_reset(stat); |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | /* |
| 770 | * We are profiling all functions, but usually only a few thousand |
| 771 | * functions are hit. We'll make a hash of 1024 items. |
| 772 | */ |
| 773 | size = FTRACE_PROFILE_HASH_SIZE; |
| 774 | |
| 775 | stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL); |
| 776 | |
| 777 | if (!stat->hash) |
| 778 | return -ENOMEM; |
| 779 | |
| 780 | /* Preallocate the function profiling pages */ |
| 781 | if (ftrace_profile_pages_init(stat) < 0) { |
| 782 | kfree(stat->hash); |
| 783 | stat->hash = NULL; |
| 784 | return -ENOMEM; |
| 785 | } |
| 786 | |
| 787 | return 0; |
| 788 | } |
| 789 | |
| 790 | static int ftrace_profile_init(void) |
| 791 | { |
| 792 | int cpu; |
| 793 | int ret = 0; |
| 794 | |
| 795 | for_each_possible_cpu(cpu) { |
| 796 | ret = ftrace_profile_init_cpu(cpu); |
| 797 | if (ret) |
| 798 | break; |
| 799 | } |
| 800 | |
| 801 | return ret; |
| 802 | } |
| 803 | |
| 804 | /* interrupts must be disabled */ |
| 805 | static struct ftrace_profile * |
| 806 | ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip) |
| 807 | { |
| 808 | struct ftrace_profile *rec; |
| 809 | struct hlist_head *hhd; |
| 810 | unsigned long key; |
| 811 | |
| 812 | key = hash_long(ip, FTRACE_PROFILE_HASH_BITS); |
| 813 | hhd = &stat->hash[key]; |
| 814 | |
| 815 | if (hlist_empty(hhd)) |
| 816 | return NULL; |
| 817 | |
| 818 | hlist_for_each_entry_rcu_notrace(rec, hhd, node) { |
| 819 | if (rec->ip == ip) |
| 820 | return rec; |
| 821 | } |
| 822 | |
| 823 | return NULL; |
| 824 | } |
| 825 | |
| 826 | static void ftrace_add_profile(struct ftrace_profile_stat *stat, |
| 827 | struct ftrace_profile *rec) |
| 828 | { |
| 829 | unsigned long key; |
| 830 | |
| 831 | key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS); |
| 832 | hlist_add_head_rcu(&rec->node, &stat->hash[key]); |
| 833 | } |
| 834 | |
| 835 | /* |
| 836 | * The memory is already allocated, this simply finds a new record to use. |
| 837 | */ |
| 838 | static struct ftrace_profile * |
| 839 | ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip) |
| 840 | { |
| 841 | struct ftrace_profile *rec = NULL; |
| 842 | |
| 843 | /* prevent recursion (from NMIs) */ |
| 844 | if (atomic_inc_return(&stat->disabled) != 1) |
| 845 | goto out; |
| 846 | |
| 847 | /* |
| 848 | * Try to find the function again since an NMI |
| 849 | * could have added it |
| 850 | */ |
| 851 | rec = ftrace_find_profiled_func(stat, ip); |
| 852 | if (rec) |
| 853 | goto out; |
| 854 | |
| 855 | if (stat->pages->index == PROFILES_PER_PAGE) { |
| 856 | if (!stat->pages->next) |
| 857 | goto out; |
| 858 | stat->pages = stat->pages->next; |
| 859 | } |
| 860 | |
| 861 | rec = &stat->pages->records[stat->pages->index++]; |
| 862 | rec->ip = ip; |
| 863 | ftrace_add_profile(stat, rec); |
| 864 | |
| 865 | out: |
| 866 | atomic_dec(&stat->disabled); |
| 867 | |
| 868 | return rec; |
| 869 | } |
| 870 | |
| 871 | static void |
| 872 | function_profile_call(unsigned long ip, unsigned long parent_ip, |
| 873 | struct ftrace_ops *ops, struct pt_regs *regs) |
| 874 | { |
| 875 | struct ftrace_profile_stat *stat; |
| 876 | struct ftrace_profile *rec; |
| 877 | unsigned long flags; |
| 878 | |
| 879 | if (!ftrace_profile_enabled) |
| 880 | return; |
| 881 | |
| 882 | local_irq_save(flags); |
| 883 | |
| 884 | stat = this_cpu_ptr(&ftrace_profile_stats); |
| 885 | if (!stat->hash || !ftrace_profile_enabled) |
| 886 | goto out; |
| 887 | |
| 888 | rec = ftrace_find_profiled_func(stat, ip); |
| 889 | if (!rec) { |
| 890 | rec = ftrace_profile_alloc(stat, ip); |
| 891 | if (!rec) |
| 892 | goto out; |
| 893 | } |
| 894 | |
| 895 | rec->counter++; |
| 896 | out: |
| 897 | local_irq_restore(flags); |
| 898 | } |
| 899 | |
| 900 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 901 | static int profile_graph_entry(struct ftrace_graph_ent *trace) |
| 902 | { |
| 903 | function_profile_call(trace->func, 0, NULL, NULL); |
| 904 | return 1; |
| 905 | } |
| 906 | |
| 907 | static void profile_graph_return(struct ftrace_graph_ret *trace) |
| 908 | { |
| 909 | struct ftrace_profile_stat *stat; |
| 910 | unsigned long long calltime; |
| 911 | struct ftrace_profile *rec; |
| 912 | unsigned long flags; |
| 913 | |
| 914 | local_irq_save(flags); |
| 915 | stat = this_cpu_ptr(&ftrace_profile_stats); |
| 916 | if (!stat->hash || !ftrace_profile_enabled) |
| 917 | goto out; |
| 918 | |
| 919 | /* If the calltime was zero'd ignore it */ |
| 920 | if (!trace->calltime) |
| 921 | goto out; |
| 922 | |
| 923 | calltime = trace->rettime - trace->calltime; |
| 924 | |
| 925 | if (!fgraph_graph_time) { |
| 926 | int index; |
| 927 | |
| 928 | index = trace->depth; |
| 929 | |
| 930 | /* Append this call time to the parent time to subtract */ |
| 931 | if (index) |
| 932 | current->ret_stack[index - 1].subtime += calltime; |
| 933 | |
| 934 | if (current->ret_stack[index].subtime < calltime) |
| 935 | calltime -= current->ret_stack[index].subtime; |
| 936 | else |
| 937 | calltime = 0; |
| 938 | } |
| 939 | |
| 940 | rec = ftrace_find_profiled_func(stat, trace->func); |
| 941 | if (rec) { |
| 942 | rec->time += calltime; |
| 943 | rec->time_squared += calltime * calltime; |
| 944 | } |
| 945 | |
| 946 | out: |
| 947 | local_irq_restore(flags); |
| 948 | } |
| 949 | |
| 950 | static int register_ftrace_profiler(void) |
| 951 | { |
| 952 | return register_ftrace_graph(&profile_graph_return, |
| 953 | &profile_graph_entry); |
| 954 | } |
| 955 | |
| 956 | static void unregister_ftrace_profiler(void) |
| 957 | { |
| 958 | unregister_ftrace_graph(); |
| 959 | } |
| 960 | #else |
| 961 | static struct ftrace_ops ftrace_profile_ops __read_mostly = { |
| 962 | .func = function_profile_call, |
| 963 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED, |
| 964 | INIT_OPS_HASH(ftrace_profile_ops) |
| 965 | }; |
| 966 | |
| 967 | static int register_ftrace_profiler(void) |
| 968 | { |
| 969 | return register_ftrace_function(&ftrace_profile_ops); |
| 970 | } |
| 971 | |
| 972 | static void unregister_ftrace_profiler(void) |
| 973 | { |
| 974 | unregister_ftrace_function(&ftrace_profile_ops); |
| 975 | } |
| 976 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 977 | |
| 978 | static ssize_t |
| 979 | ftrace_profile_write(struct file *filp, const char __user *ubuf, |
| 980 | size_t cnt, loff_t *ppos) |
| 981 | { |
| 982 | unsigned long val; |
| 983 | int ret; |
| 984 | |
| 985 | ret = kstrtoul_from_user(ubuf, cnt, 10, &val); |
| 986 | if (ret) |
| 987 | return ret; |
| 988 | |
| 989 | val = !!val; |
| 990 | |
| 991 | mutex_lock(&ftrace_profile_lock); |
| 992 | if (ftrace_profile_enabled ^ val) { |
| 993 | if (val) { |
| 994 | ret = ftrace_profile_init(); |
| 995 | if (ret < 0) { |
| 996 | cnt = ret; |
| 997 | goto out; |
| 998 | } |
| 999 | |
| 1000 | ret = register_ftrace_profiler(); |
| 1001 | if (ret < 0) { |
| 1002 | cnt = ret; |
| 1003 | goto out; |
| 1004 | } |
| 1005 | ftrace_profile_enabled = 1; |
| 1006 | } else { |
| 1007 | ftrace_profile_enabled = 0; |
| 1008 | /* |
| 1009 | * unregister_ftrace_profiler calls stop_machine |
| 1010 | * so this acts like an synchronize_sched. |
| 1011 | */ |
| 1012 | unregister_ftrace_profiler(); |
| 1013 | } |
| 1014 | } |
| 1015 | out: |
| 1016 | mutex_unlock(&ftrace_profile_lock); |
| 1017 | |
| 1018 | *ppos += cnt; |
| 1019 | |
| 1020 | return cnt; |
| 1021 | } |
| 1022 | |
| 1023 | static ssize_t |
| 1024 | ftrace_profile_read(struct file *filp, char __user *ubuf, |
| 1025 | size_t cnt, loff_t *ppos) |
| 1026 | { |
| 1027 | char buf[64]; /* big enough to hold a number */ |
| 1028 | int r; |
| 1029 | |
| 1030 | r = sprintf(buf, "%u\n", ftrace_profile_enabled); |
| 1031 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
| 1032 | } |
| 1033 | |
| 1034 | static const struct file_operations ftrace_profile_fops = { |
| 1035 | .open = tracing_open_generic, |
| 1036 | .read = ftrace_profile_read, |
| 1037 | .write = ftrace_profile_write, |
| 1038 | .llseek = default_llseek, |
| 1039 | }; |
| 1040 | |
| 1041 | /* used to initialize the real stat files */ |
| 1042 | static struct tracer_stat function_stats __initdata = { |
| 1043 | .name = "functions", |
| 1044 | .stat_start = function_stat_start, |
| 1045 | .stat_next = function_stat_next, |
| 1046 | .stat_cmp = function_stat_cmp, |
| 1047 | .stat_headers = function_stat_headers, |
| 1048 | .stat_show = function_stat_show |
| 1049 | }; |
| 1050 | |
| 1051 | static __init void ftrace_profile_tracefs(struct dentry *d_tracer) |
| 1052 | { |
| 1053 | struct ftrace_profile_stat *stat; |
| 1054 | struct dentry *entry; |
| 1055 | char *name; |
| 1056 | int ret; |
| 1057 | int cpu; |
| 1058 | |
| 1059 | for_each_possible_cpu(cpu) { |
| 1060 | stat = &per_cpu(ftrace_profile_stats, cpu); |
| 1061 | |
| 1062 | /* allocate enough for function name + cpu number */ |
| 1063 | name = kmalloc(32, GFP_KERNEL); |
| 1064 | if (!name) { |
| 1065 | /* |
| 1066 | * The files created are permanent, if something happens |
| 1067 | * we still do not free memory. |
| 1068 | */ |
| 1069 | WARN(1, |
| 1070 | "Could not allocate stat file for cpu %d\n", |
| 1071 | cpu); |
| 1072 | return; |
| 1073 | } |
| 1074 | stat->stat = function_stats; |
| 1075 | snprintf(name, 32, "function%d", cpu); |
| 1076 | stat->stat.name = name; |
| 1077 | ret = register_stat_tracer(&stat->stat); |
| 1078 | if (ret) { |
| 1079 | WARN(1, |
| 1080 | "Could not register function stat for cpu %d\n", |
| 1081 | cpu); |
| 1082 | kfree(name); |
| 1083 | return; |
| 1084 | } |
| 1085 | } |
| 1086 | |
| 1087 | entry = tracefs_create_file("function_profile_enabled", 0644, |
| 1088 | d_tracer, NULL, &ftrace_profile_fops); |
| 1089 | if (!entry) |
| 1090 | pr_warning("Could not create tracefs " |
| 1091 | "'function_profile_enabled' entry\n"); |
| 1092 | } |
| 1093 | |
| 1094 | #else /* CONFIG_FUNCTION_PROFILER */ |
| 1095 | static __init void ftrace_profile_tracefs(struct dentry *d_tracer) |
| 1096 | { |
| 1097 | } |
| 1098 | #endif /* CONFIG_FUNCTION_PROFILER */ |
| 1099 | |
| 1100 | static struct pid * const ftrace_swapper_pid = &init_struct_pid; |
| 1101 | |
| 1102 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 1103 | static int ftrace_graph_active; |
| 1104 | #else |
| 1105 | # define ftrace_graph_active 0 |
| 1106 | #endif |
| 1107 | |
| 1108 | #ifdef CONFIG_DYNAMIC_FTRACE |
| 1109 | |
| 1110 | static struct ftrace_ops *removed_ops; |
| 1111 | |
| 1112 | /* |
| 1113 | * Set when doing a global update, like enabling all recs or disabling them. |
| 1114 | * It is not set when just updating a single ftrace_ops. |
| 1115 | */ |
| 1116 | static bool update_all_ops; |
| 1117 | |
| 1118 | #ifndef CONFIG_FTRACE_MCOUNT_RECORD |
| 1119 | # error Dynamic ftrace depends on MCOUNT_RECORD |
| 1120 | #endif |
| 1121 | |
| 1122 | static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly; |
| 1123 | |
| 1124 | struct ftrace_func_probe { |
| 1125 | struct hlist_node node; |
| 1126 | struct ftrace_probe_ops *ops; |
| 1127 | unsigned long flags; |
| 1128 | unsigned long ip; |
| 1129 | void *data; |
| 1130 | struct list_head free_list; |
| 1131 | }; |
| 1132 | |
| 1133 | struct ftrace_func_entry { |
| 1134 | struct hlist_node hlist; |
| 1135 | unsigned long ip; |
| 1136 | }; |
| 1137 | |
| 1138 | struct ftrace_hash { |
| 1139 | unsigned long size_bits; |
| 1140 | struct hlist_head *buckets; |
| 1141 | unsigned long count; |
| 1142 | struct rcu_head rcu; |
| 1143 | }; |
| 1144 | |
| 1145 | /* |
| 1146 | * We make these constant because no one should touch them, |
| 1147 | * but they are used as the default "empty hash", to avoid allocating |
| 1148 | * it all the time. These are in a read only section such that if |
| 1149 | * anyone does try to modify it, it will cause an exception. |
| 1150 | */ |
| 1151 | static const struct hlist_head empty_buckets[1]; |
| 1152 | static const struct ftrace_hash empty_hash = { |
| 1153 | .buckets = (struct hlist_head *)empty_buckets, |
| 1154 | }; |
| 1155 | #define EMPTY_HASH ((struct ftrace_hash *)&empty_hash) |
| 1156 | |
| 1157 | static struct ftrace_ops global_ops = { |
| 1158 | .func = ftrace_stub, |
| 1159 | .local_hash.notrace_hash = EMPTY_HASH, |
| 1160 | .local_hash.filter_hash = EMPTY_HASH, |
| 1161 | INIT_OPS_HASH(global_ops) |
| 1162 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | |
| 1163 | FTRACE_OPS_FL_INITIALIZED | |
| 1164 | FTRACE_OPS_FL_PID, |
| 1165 | }; |
| 1166 | |
| 1167 | /* |
| 1168 | * This is used by __kernel_text_address() to return true if the |
| 1169 | * address is on a dynamically allocated trampoline that would |
| 1170 | * not return true for either core_kernel_text() or |
| 1171 | * is_module_text_address(). |
| 1172 | */ |
| 1173 | bool is_ftrace_trampoline(unsigned long addr) |
| 1174 | { |
| 1175 | struct ftrace_ops *op; |
| 1176 | bool ret = false; |
| 1177 | |
| 1178 | /* |
| 1179 | * Some of the ops may be dynamically allocated, |
| 1180 | * they are freed after a synchronize_sched(). |
| 1181 | */ |
| 1182 | preempt_disable_notrace(); |
| 1183 | |
| 1184 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 1185 | /* |
| 1186 | * This is to check for dynamically allocated trampolines. |
| 1187 | * Trampolines that are in kernel text will have |
| 1188 | * core_kernel_text() return true. |
| 1189 | */ |
| 1190 | if (op->trampoline && op->trampoline_size) |
| 1191 | if (addr >= op->trampoline && |
| 1192 | addr < op->trampoline + op->trampoline_size) { |
| 1193 | ret = true; |
| 1194 | goto out; |
| 1195 | } |
| 1196 | } while_for_each_ftrace_op(op); |
| 1197 | |
| 1198 | out: |
| 1199 | preempt_enable_notrace(); |
| 1200 | |
| 1201 | return ret; |
| 1202 | } |
| 1203 | |
| 1204 | struct ftrace_page { |
| 1205 | struct ftrace_page *next; |
| 1206 | struct dyn_ftrace *records; |
| 1207 | int index; |
| 1208 | int size; |
| 1209 | }; |
| 1210 | |
| 1211 | #define ENTRY_SIZE sizeof(struct dyn_ftrace) |
| 1212 | #define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE) |
| 1213 | |
| 1214 | /* estimate from running different kernels */ |
| 1215 | #define NR_TO_INIT 10000 |
| 1216 | |
| 1217 | static struct ftrace_page *ftrace_pages_start; |
| 1218 | static struct ftrace_page *ftrace_pages; |
| 1219 | |
| 1220 | static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash) |
| 1221 | { |
| 1222 | return !hash || !hash->count; |
| 1223 | } |
| 1224 | |
| 1225 | static struct ftrace_func_entry * |
| 1226 | ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip) |
| 1227 | { |
| 1228 | unsigned long key; |
| 1229 | struct ftrace_func_entry *entry; |
| 1230 | struct hlist_head *hhd; |
| 1231 | |
| 1232 | if (ftrace_hash_empty(hash)) |
| 1233 | return NULL; |
| 1234 | |
| 1235 | if (hash->size_bits > 0) |
| 1236 | key = hash_long(ip, hash->size_bits); |
| 1237 | else |
| 1238 | key = 0; |
| 1239 | |
| 1240 | hhd = &hash->buckets[key]; |
| 1241 | |
| 1242 | hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) { |
| 1243 | if (entry->ip == ip) |
| 1244 | return entry; |
| 1245 | } |
| 1246 | return NULL; |
| 1247 | } |
| 1248 | |
| 1249 | static void __add_hash_entry(struct ftrace_hash *hash, |
| 1250 | struct ftrace_func_entry *entry) |
| 1251 | { |
| 1252 | struct hlist_head *hhd; |
| 1253 | unsigned long key; |
| 1254 | |
| 1255 | if (hash->size_bits) |
| 1256 | key = hash_long(entry->ip, hash->size_bits); |
| 1257 | else |
| 1258 | key = 0; |
| 1259 | |
| 1260 | hhd = &hash->buckets[key]; |
| 1261 | hlist_add_head(&entry->hlist, hhd); |
| 1262 | hash->count++; |
| 1263 | } |
| 1264 | |
| 1265 | static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip) |
| 1266 | { |
| 1267 | struct ftrace_func_entry *entry; |
| 1268 | |
| 1269 | entry = kmalloc(sizeof(*entry), GFP_KERNEL); |
| 1270 | if (!entry) |
| 1271 | return -ENOMEM; |
| 1272 | |
| 1273 | entry->ip = ip; |
| 1274 | __add_hash_entry(hash, entry); |
| 1275 | |
| 1276 | return 0; |
| 1277 | } |
| 1278 | |
| 1279 | static void |
| 1280 | free_hash_entry(struct ftrace_hash *hash, |
| 1281 | struct ftrace_func_entry *entry) |
| 1282 | { |
| 1283 | hlist_del(&entry->hlist); |
| 1284 | kfree(entry); |
| 1285 | hash->count--; |
| 1286 | } |
| 1287 | |
| 1288 | static void |
| 1289 | remove_hash_entry(struct ftrace_hash *hash, |
| 1290 | struct ftrace_func_entry *entry) |
| 1291 | { |
| 1292 | hlist_del(&entry->hlist); |
| 1293 | hash->count--; |
| 1294 | } |
| 1295 | |
| 1296 | static void ftrace_hash_clear(struct ftrace_hash *hash) |
| 1297 | { |
| 1298 | struct hlist_head *hhd; |
| 1299 | struct hlist_node *tn; |
| 1300 | struct ftrace_func_entry *entry; |
| 1301 | int size = 1 << hash->size_bits; |
| 1302 | int i; |
| 1303 | |
| 1304 | if (!hash->count) |
| 1305 | return; |
| 1306 | |
| 1307 | for (i = 0; i < size; i++) { |
| 1308 | hhd = &hash->buckets[i]; |
| 1309 | hlist_for_each_entry_safe(entry, tn, hhd, hlist) |
| 1310 | free_hash_entry(hash, entry); |
| 1311 | } |
| 1312 | FTRACE_WARN_ON(hash->count); |
| 1313 | } |
| 1314 | |
| 1315 | static void free_ftrace_hash(struct ftrace_hash *hash) |
| 1316 | { |
| 1317 | if (!hash || hash == EMPTY_HASH) |
| 1318 | return; |
| 1319 | ftrace_hash_clear(hash); |
| 1320 | kfree(hash->buckets); |
| 1321 | kfree(hash); |
| 1322 | } |
| 1323 | |
| 1324 | static void __free_ftrace_hash_rcu(struct rcu_head *rcu) |
| 1325 | { |
| 1326 | struct ftrace_hash *hash; |
| 1327 | |
| 1328 | hash = container_of(rcu, struct ftrace_hash, rcu); |
| 1329 | free_ftrace_hash(hash); |
| 1330 | } |
| 1331 | |
| 1332 | static void free_ftrace_hash_rcu(struct ftrace_hash *hash) |
| 1333 | { |
| 1334 | if (!hash || hash == EMPTY_HASH) |
| 1335 | return; |
| 1336 | call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu); |
| 1337 | } |
| 1338 | |
| 1339 | void ftrace_free_filter(struct ftrace_ops *ops) |
| 1340 | { |
| 1341 | ftrace_ops_init(ops); |
| 1342 | free_ftrace_hash(ops->func_hash->filter_hash); |
| 1343 | free_ftrace_hash(ops->func_hash->notrace_hash); |
| 1344 | } |
| 1345 | |
| 1346 | static struct ftrace_hash *alloc_ftrace_hash(int size_bits) |
| 1347 | { |
| 1348 | struct ftrace_hash *hash; |
| 1349 | int size; |
| 1350 | |
| 1351 | hash = kzalloc(sizeof(*hash), GFP_KERNEL); |
| 1352 | if (!hash) |
| 1353 | return NULL; |
| 1354 | |
| 1355 | size = 1 << size_bits; |
| 1356 | hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL); |
| 1357 | |
| 1358 | if (!hash->buckets) { |
| 1359 | kfree(hash); |
| 1360 | return NULL; |
| 1361 | } |
| 1362 | |
| 1363 | hash->size_bits = size_bits; |
| 1364 | |
| 1365 | return hash; |
| 1366 | } |
| 1367 | |
| 1368 | static struct ftrace_hash * |
| 1369 | alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash) |
| 1370 | { |
| 1371 | struct ftrace_func_entry *entry; |
| 1372 | struct ftrace_hash *new_hash; |
| 1373 | int size; |
| 1374 | int ret; |
| 1375 | int i; |
| 1376 | |
| 1377 | new_hash = alloc_ftrace_hash(size_bits); |
| 1378 | if (!new_hash) |
| 1379 | return NULL; |
| 1380 | |
| 1381 | /* Empty hash? */ |
| 1382 | if (ftrace_hash_empty(hash)) |
| 1383 | return new_hash; |
| 1384 | |
| 1385 | size = 1 << hash->size_bits; |
| 1386 | for (i = 0; i < size; i++) { |
| 1387 | hlist_for_each_entry(entry, &hash->buckets[i], hlist) { |
| 1388 | ret = add_hash_entry(new_hash, entry->ip); |
| 1389 | if (ret < 0) |
| 1390 | goto free_hash; |
| 1391 | } |
| 1392 | } |
| 1393 | |
| 1394 | FTRACE_WARN_ON(new_hash->count != hash->count); |
| 1395 | |
| 1396 | return new_hash; |
| 1397 | |
| 1398 | free_hash: |
| 1399 | free_ftrace_hash(new_hash); |
| 1400 | return NULL; |
| 1401 | } |
| 1402 | |
| 1403 | static void |
| 1404 | ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash); |
| 1405 | static void |
| 1406 | ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash); |
| 1407 | |
| 1408 | static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops, |
| 1409 | struct ftrace_hash *new_hash); |
| 1410 | |
| 1411 | static int |
| 1412 | ftrace_hash_move(struct ftrace_ops *ops, int enable, |
| 1413 | struct ftrace_hash **dst, struct ftrace_hash *src) |
| 1414 | { |
| 1415 | struct ftrace_func_entry *entry; |
| 1416 | struct hlist_node *tn; |
| 1417 | struct hlist_head *hhd; |
| 1418 | struct ftrace_hash *new_hash; |
| 1419 | int size = src->count; |
| 1420 | int bits = 0; |
| 1421 | int ret; |
| 1422 | int i; |
| 1423 | |
| 1424 | /* Reject setting notrace hash on IPMODIFY ftrace_ops */ |
| 1425 | if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable) |
| 1426 | return -EINVAL; |
| 1427 | |
| 1428 | /* |
| 1429 | * If the new source is empty, just free dst and assign it |
| 1430 | * the empty_hash. |
| 1431 | */ |
| 1432 | if (!src->count) { |
| 1433 | new_hash = EMPTY_HASH; |
| 1434 | goto update; |
| 1435 | } |
| 1436 | |
| 1437 | /* |
| 1438 | * Make the hash size about 1/2 the # found |
| 1439 | */ |
| 1440 | for (size /= 2; size; size >>= 1) |
| 1441 | bits++; |
| 1442 | |
| 1443 | /* Don't allocate too much */ |
| 1444 | if (bits > FTRACE_HASH_MAX_BITS) |
| 1445 | bits = FTRACE_HASH_MAX_BITS; |
| 1446 | |
| 1447 | new_hash = alloc_ftrace_hash(bits); |
| 1448 | if (!new_hash) |
| 1449 | return -ENOMEM; |
| 1450 | |
| 1451 | size = 1 << src->size_bits; |
| 1452 | for (i = 0; i < size; i++) { |
| 1453 | hhd = &src->buckets[i]; |
| 1454 | hlist_for_each_entry_safe(entry, tn, hhd, hlist) { |
| 1455 | remove_hash_entry(src, entry); |
| 1456 | __add_hash_entry(new_hash, entry); |
| 1457 | } |
| 1458 | } |
| 1459 | |
| 1460 | update: |
| 1461 | /* Make sure this can be applied if it is IPMODIFY ftrace_ops */ |
| 1462 | if (enable) { |
| 1463 | /* IPMODIFY should be updated only when filter_hash updating */ |
| 1464 | ret = ftrace_hash_ipmodify_update(ops, new_hash); |
| 1465 | if (ret < 0) { |
| 1466 | free_ftrace_hash(new_hash); |
| 1467 | return ret; |
| 1468 | } |
| 1469 | } |
| 1470 | |
| 1471 | /* |
| 1472 | * Remove the current set, update the hash and add |
| 1473 | * them back. |
| 1474 | */ |
| 1475 | ftrace_hash_rec_disable_modify(ops, enable); |
| 1476 | |
| 1477 | rcu_assign_pointer(*dst, new_hash); |
| 1478 | |
| 1479 | ftrace_hash_rec_enable_modify(ops, enable); |
| 1480 | |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
| 1484 | static bool hash_contains_ip(unsigned long ip, |
| 1485 | struct ftrace_ops_hash *hash) |
| 1486 | { |
| 1487 | /* |
| 1488 | * The function record is a match if it exists in the filter |
| 1489 | * hash and not in the notrace hash. Note, an emty hash is |
| 1490 | * considered a match for the filter hash, but an empty |
| 1491 | * notrace hash is considered not in the notrace hash. |
| 1492 | */ |
| 1493 | return (ftrace_hash_empty(hash->filter_hash) || |
| 1494 | ftrace_lookup_ip(hash->filter_hash, ip)) && |
| 1495 | (ftrace_hash_empty(hash->notrace_hash) || |
| 1496 | !ftrace_lookup_ip(hash->notrace_hash, ip)); |
| 1497 | } |
| 1498 | |
| 1499 | /* |
| 1500 | * Test the hashes for this ops to see if we want to call |
| 1501 | * the ops->func or not. |
| 1502 | * |
| 1503 | * It's a match if the ip is in the ops->filter_hash or |
| 1504 | * the filter_hash does not exist or is empty, |
| 1505 | * AND |
| 1506 | * the ip is not in the ops->notrace_hash. |
| 1507 | * |
| 1508 | * This needs to be called with preemption disabled as |
| 1509 | * the hashes are freed with call_rcu_sched(). |
| 1510 | */ |
| 1511 | static int |
| 1512 | ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs) |
| 1513 | { |
| 1514 | struct ftrace_ops_hash hash; |
| 1515 | int ret; |
| 1516 | |
| 1517 | #ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS |
| 1518 | /* |
| 1519 | * There's a small race when adding ops that the ftrace handler |
| 1520 | * that wants regs, may be called without them. We can not |
| 1521 | * allow that handler to be called if regs is NULL. |
| 1522 | */ |
| 1523 | if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS)) |
| 1524 | return 0; |
| 1525 | #endif |
| 1526 | |
| 1527 | hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash); |
| 1528 | hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash); |
| 1529 | |
| 1530 | if (hash_contains_ip(ip, &hash)) |
| 1531 | ret = 1; |
| 1532 | else |
| 1533 | ret = 0; |
| 1534 | |
| 1535 | return ret; |
| 1536 | } |
| 1537 | |
| 1538 | /* |
| 1539 | * This is a double for. Do not use 'break' to break out of the loop, |
| 1540 | * you must use a goto. |
| 1541 | */ |
| 1542 | #define do_for_each_ftrace_rec(pg, rec) \ |
| 1543 | for (pg = ftrace_pages_start; pg; pg = pg->next) { \ |
| 1544 | int _____i; \ |
| 1545 | for (_____i = 0; _____i < pg->index; _____i++) { \ |
| 1546 | rec = &pg->records[_____i]; |
| 1547 | |
| 1548 | #define while_for_each_ftrace_rec() \ |
| 1549 | } \ |
| 1550 | } |
| 1551 | |
| 1552 | |
| 1553 | static int ftrace_cmp_recs(const void *a, const void *b) |
| 1554 | { |
| 1555 | const struct dyn_ftrace *key = a; |
| 1556 | const struct dyn_ftrace *rec = b; |
| 1557 | |
| 1558 | if (key->flags < rec->ip) |
| 1559 | return -1; |
| 1560 | if (key->ip >= rec->ip + MCOUNT_INSN_SIZE) |
| 1561 | return 1; |
| 1562 | return 0; |
| 1563 | } |
| 1564 | |
| 1565 | static unsigned long ftrace_location_range(unsigned long start, unsigned long end) |
| 1566 | { |
| 1567 | struct ftrace_page *pg; |
| 1568 | struct dyn_ftrace *rec; |
| 1569 | struct dyn_ftrace key; |
| 1570 | |
| 1571 | key.ip = start; |
| 1572 | key.flags = end; /* overload flags, as it is unsigned long */ |
| 1573 | |
| 1574 | for (pg = ftrace_pages_start; pg; pg = pg->next) { |
| 1575 | if (end < pg->records[0].ip || |
| 1576 | start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE)) |
| 1577 | continue; |
| 1578 | rec = bsearch(&key, pg->records, pg->index, |
| 1579 | sizeof(struct dyn_ftrace), |
| 1580 | ftrace_cmp_recs); |
| 1581 | if (rec) |
| 1582 | return rec->ip; |
| 1583 | } |
| 1584 | |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | /** |
| 1589 | * ftrace_location - return true if the ip giving is a traced location |
| 1590 | * @ip: the instruction pointer to check |
| 1591 | * |
| 1592 | * Returns rec->ip if @ip given is a pointer to a ftrace location. |
| 1593 | * That is, the instruction that is either a NOP or call to |
| 1594 | * the function tracer. It checks the ftrace internal tables to |
| 1595 | * determine if the address belongs or not. |
| 1596 | */ |
| 1597 | unsigned long ftrace_location(unsigned long ip) |
| 1598 | { |
| 1599 | return ftrace_location_range(ip, ip); |
| 1600 | } |
| 1601 | |
| 1602 | /** |
| 1603 | * ftrace_text_reserved - return true if range contains an ftrace location |
| 1604 | * @start: start of range to search |
| 1605 | * @end: end of range to search (inclusive). @end points to the last byte to check. |
| 1606 | * |
| 1607 | * Returns 1 if @start and @end contains a ftrace location. |
| 1608 | * That is, the instruction that is either a NOP or call to |
| 1609 | * the function tracer. It checks the ftrace internal tables to |
| 1610 | * determine if the address belongs or not. |
| 1611 | */ |
| 1612 | int ftrace_text_reserved(const void *start, const void *end) |
| 1613 | { |
| 1614 | unsigned long ret; |
| 1615 | |
| 1616 | ret = ftrace_location_range((unsigned long)start, |
| 1617 | (unsigned long)end); |
| 1618 | |
| 1619 | return (int)!!ret; |
| 1620 | } |
| 1621 | |
| 1622 | /* Test if ops registered to this rec needs regs */ |
| 1623 | static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec) |
| 1624 | { |
| 1625 | struct ftrace_ops *ops; |
| 1626 | bool keep_regs = false; |
| 1627 | |
| 1628 | for (ops = ftrace_ops_list; |
| 1629 | ops != &ftrace_list_end; ops = ops->next) { |
| 1630 | /* pass rec in as regs to have non-NULL val */ |
| 1631 | if (ftrace_ops_test(ops, rec->ip, rec)) { |
| 1632 | if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) { |
| 1633 | keep_regs = true; |
| 1634 | break; |
| 1635 | } |
| 1636 | } |
| 1637 | } |
| 1638 | |
| 1639 | return keep_regs; |
| 1640 | } |
| 1641 | |
| 1642 | static void __ftrace_hash_rec_update(struct ftrace_ops *ops, |
| 1643 | int filter_hash, |
| 1644 | bool inc) |
| 1645 | { |
| 1646 | struct ftrace_hash *hash; |
| 1647 | struct ftrace_hash *other_hash; |
| 1648 | struct ftrace_page *pg; |
| 1649 | struct dyn_ftrace *rec; |
| 1650 | int count = 0; |
| 1651 | int all = 0; |
| 1652 | |
| 1653 | /* Only update if the ops has been registered */ |
| 1654 | if (!(ops->flags & FTRACE_OPS_FL_ENABLED)) |
| 1655 | return; |
| 1656 | |
| 1657 | /* |
| 1658 | * In the filter_hash case: |
| 1659 | * If the count is zero, we update all records. |
| 1660 | * Otherwise we just update the items in the hash. |
| 1661 | * |
| 1662 | * In the notrace_hash case: |
| 1663 | * We enable the update in the hash. |
| 1664 | * As disabling notrace means enabling the tracing, |
| 1665 | * and enabling notrace means disabling, the inc variable |
| 1666 | * gets inversed. |
| 1667 | */ |
| 1668 | if (filter_hash) { |
| 1669 | hash = ops->func_hash->filter_hash; |
| 1670 | other_hash = ops->func_hash->notrace_hash; |
| 1671 | if (ftrace_hash_empty(hash)) |
| 1672 | all = 1; |
| 1673 | } else { |
| 1674 | inc = !inc; |
| 1675 | hash = ops->func_hash->notrace_hash; |
| 1676 | other_hash = ops->func_hash->filter_hash; |
| 1677 | /* |
| 1678 | * If the notrace hash has no items, |
| 1679 | * then there's nothing to do. |
| 1680 | */ |
| 1681 | if (ftrace_hash_empty(hash)) |
| 1682 | return; |
| 1683 | } |
| 1684 | |
| 1685 | do_for_each_ftrace_rec(pg, rec) { |
| 1686 | int in_other_hash = 0; |
| 1687 | int in_hash = 0; |
| 1688 | int match = 0; |
| 1689 | |
| 1690 | if (all) { |
| 1691 | /* |
| 1692 | * Only the filter_hash affects all records. |
| 1693 | * Update if the record is not in the notrace hash. |
| 1694 | */ |
| 1695 | if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip)) |
| 1696 | match = 1; |
| 1697 | } else { |
| 1698 | in_hash = !!ftrace_lookup_ip(hash, rec->ip); |
| 1699 | in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip); |
| 1700 | |
| 1701 | /* |
| 1702 | * If filter_hash is set, we want to match all functions |
| 1703 | * that are in the hash but not in the other hash. |
| 1704 | * |
| 1705 | * If filter_hash is not set, then we are decrementing. |
| 1706 | * That means we match anything that is in the hash |
| 1707 | * and also in the other_hash. That is, we need to turn |
| 1708 | * off functions in the other hash because they are disabled |
| 1709 | * by this hash. |
| 1710 | */ |
| 1711 | if (filter_hash && in_hash && !in_other_hash) |
| 1712 | match = 1; |
| 1713 | else if (!filter_hash && in_hash && |
| 1714 | (in_other_hash || ftrace_hash_empty(other_hash))) |
| 1715 | match = 1; |
| 1716 | } |
| 1717 | if (!match) |
| 1718 | continue; |
| 1719 | |
| 1720 | if (inc) { |
| 1721 | rec->flags++; |
| 1722 | if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX)) |
| 1723 | return; |
| 1724 | |
| 1725 | /* |
| 1726 | * If there's only a single callback registered to a |
| 1727 | * function, and the ops has a trampoline registered |
| 1728 | * for it, then we can call it directly. |
| 1729 | */ |
| 1730 | if (ftrace_rec_count(rec) == 1 && ops->trampoline) |
| 1731 | rec->flags |= FTRACE_FL_TRAMP; |
| 1732 | else |
| 1733 | /* |
| 1734 | * If we are adding another function callback |
| 1735 | * to this function, and the previous had a |
| 1736 | * custom trampoline in use, then we need to go |
| 1737 | * back to the default trampoline. |
| 1738 | */ |
| 1739 | rec->flags &= ~FTRACE_FL_TRAMP; |
| 1740 | |
| 1741 | /* |
| 1742 | * If any ops wants regs saved for this function |
| 1743 | * then all ops will get saved regs. |
| 1744 | */ |
| 1745 | if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) |
| 1746 | rec->flags |= FTRACE_FL_REGS; |
| 1747 | } else { |
| 1748 | if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0)) |
| 1749 | return; |
| 1750 | rec->flags--; |
| 1751 | |
| 1752 | /* |
| 1753 | * If the rec had REGS enabled and the ops that is |
| 1754 | * being removed had REGS set, then see if there is |
| 1755 | * still any ops for this record that wants regs. |
| 1756 | * If not, we can stop recording them. |
| 1757 | */ |
| 1758 | if (ftrace_rec_count(rec) > 0 && |
| 1759 | rec->flags & FTRACE_FL_REGS && |
| 1760 | ops->flags & FTRACE_OPS_FL_SAVE_REGS) { |
| 1761 | if (!test_rec_ops_needs_regs(rec)) |
| 1762 | rec->flags &= ~FTRACE_FL_REGS; |
| 1763 | } |
| 1764 | |
| 1765 | /* |
| 1766 | * If the rec had TRAMP enabled, then it needs to |
| 1767 | * be cleared. As TRAMP can only be enabled iff |
| 1768 | * there is only a single ops attached to it. |
| 1769 | * In otherwords, always disable it on decrementing. |
| 1770 | * In the future, we may set it if rec count is |
| 1771 | * decremented to one, and the ops that is left |
| 1772 | * has a trampoline. |
| 1773 | */ |
| 1774 | rec->flags &= ~FTRACE_FL_TRAMP; |
| 1775 | |
| 1776 | /* |
| 1777 | * flags will be cleared in ftrace_check_record() |
| 1778 | * if rec count is zero. |
| 1779 | */ |
| 1780 | } |
| 1781 | count++; |
| 1782 | /* Shortcut, if we handled all records, we are done. */ |
| 1783 | if (!all && count == hash->count) |
| 1784 | return; |
| 1785 | } while_for_each_ftrace_rec(); |
| 1786 | } |
| 1787 | |
| 1788 | static void ftrace_hash_rec_disable(struct ftrace_ops *ops, |
| 1789 | int filter_hash) |
| 1790 | { |
| 1791 | __ftrace_hash_rec_update(ops, filter_hash, 0); |
| 1792 | } |
| 1793 | |
| 1794 | static void ftrace_hash_rec_enable(struct ftrace_ops *ops, |
| 1795 | int filter_hash) |
| 1796 | { |
| 1797 | __ftrace_hash_rec_update(ops, filter_hash, 1); |
| 1798 | } |
| 1799 | |
| 1800 | static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops, |
| 1801 | int filter_hash, int inc) |
| 1802 | { |
| 1803 | struct ftrace_ops *op; |
| 1804 | |
| 1805 | __ftrace_hash_rec_update(ops, filter_hash, inc); |
| 1806 | |
| 1807 | if (ops->func_hash != &global_ops.local_hash) |
| 1808 | return; |
| 1809 | |
| 1810 | /* |
| 1811 | * If the ops shares the global_ops hash, then we need to update |
| 1812 | * all ops that are enabled and use this hash. |
| 1813 | */ |
| 1814 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 1815 | /* Already done */ |
| 1816 | if (op == ops) |
| 1817 | continue; |
| 1818 | if (op->func_hash == &global_ops.local_hash) |
| 1819 | __ftrace_hash_rec_update(op, filter_hash, inc); |
| 1820 | } while_for_each_ftrace_op(op); |
| 1821 | } |
| 1822 | |
| 1823 | static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, |
| 1824 | int filter_hash) |
| 1825 | { |
| 1826 | ftrace_hash_rec_update_modify(ops, filter_hash, 0); |
| 1827 | } |
| 1828 | |
| 1829 | static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, |
| 1830 | int filter_hash) |
| 1831 | { |
| 1832 | ftrace_hash_rec_update_modify(ops, filter_hash, 1); |
| 1833 | } |
| 1834 | |
| 1835 | /* |
| 1836 | * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK |
| 1837 | * or no-needed to update, -EBUSY if it detects a conflict of the flag |
| 1838 | * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs. |
| 1839 | * Note that old_hash and new_hash has below meanings |
| 1840 | * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected) |
| 1841 | * - If the hash is EMPTY_HASH, it hits nothing |
| 1842 | * - Anything else hits the recs which match the hash entries. |
| 1843 | */ |
| 1844 | static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops, |
| 1845 | struct ftrace_hash *old_hash, |
| 1846 | struct ftrace_hash *new_hash) |
| 1847 | { |
| 1848 | struct ftrace_page *pg; |
| 1849 | struct dyn_ftrace *rec, *end = NULL; |
| 1850 | int in_old, in_new; |
| 1851 | |
| 1852 | /* Only update if the ops has been registered */ |
| 1853 | if (!(ops->flags & FTRACE_OPS_FL_ENABLED)) |
| 1854 | return 0; |
| 1855 | |
| 1856 | if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY)) |
| 1857 | return 0; |
| 1858 | |
| 1859 | /* |
| 1860 | * Since the IPMODIFY is a very address sensitive action, we do not |
| 1861 | * allow ftrace_ops to set all functions to new hash. |
| 1862 | */ |
| 1863 | if (!new_hash || !old_hash) |
| 1864 | return -EINVAL; |
| 1865 | |
| 1866 | /* Update rec->flags */ |
| 1867 | do_for_each_ftrace_rec(pg, rec) { |
| 1868 | /* We need to update only differences of filter_hash */ |
| 1869 | in_old = !!ftrace_lookup_ip(old_hash, rec->ip); |
| 1870 | in_new = !!ftrace_lookup_ip(new_hash, rec->ip); |
| 1871 | if (in_old == in_new) |
| 1872 | continue; |
| 1873 | |
| 1874 | if (in_new) { |
| 1875 | /* New entries must ensure no others are using it */ |
| 1876 | if (rec->flags & FTRACE_FL_IPMODIFY) |
| 1877 | goto rollback; |
| 1878 | rec->flags |= FTRACE_FL_IPMODIFY; |
| 1879 | } else /* Removed entry */ |
| 1880 | rec->flags &= ~FTRACE_FL_IPMODIFY; |
| 1881 | } while_for_each_ftrace_rec(); |
| 1882 | |
| 1883 | return 0; |
| 1884 | |
| 1885 | rollback: |
| 1886 | end = rec; |
| 1887 | |
| 1888 | /* Roll back what we did above */ |
| 1889 | do_for_each_ftrace_rec(pg, rec) { |
| 1890 | if (rec == end) |
| 1891 | goto err_out; |
| 1892 | |
| 1893 | in_old = !!ftrace_lookup_ip(old_hash, rec->ip); |
| 1894 | in_new = !!ftrace_lookup_ip(new_hash, rec->ip); |
| 1895 | if (in_old == in_new) |
| 1896 | continue; |
| 1897 | |
| 1898 | if (in_new) |
| 1899 | rec->flags &= ~FTRACE_FL_IPMODIFY; |
| 1900 | else |
| 1901 | rec->flags |= FTRACE_FL_IPMODIFY; |
| 1902 | } while_for_each_ftrace_rec(); |
| 1903 | |
| 1904 | err_out: |
| 1905 | return -EBUSY; |
| 1906 | } |
| 1907 | |
| 1908 | static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops) |
| 1909 | { |
| 1910 | struct ftrace_hash *hash = ops->func_hash->filter_hash; |
| 1911 | |
| 1912 | if (ftrace_hash_empty(hash)) |
| 1913 | hash = NULL; |
| 1914 | |
| 1915 | return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash); |
| 1916 | } |
| 1917 | |
| 1918 | /* Disabling always succeeds */ |
| 1919 | static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops) |
| 1920 | { |
| 1921 | struct ftrace_hash *hash = ops->func_hash->filter_hash; |
| 1922 | |
| 1923 | if (ftrace_hash_empty(hash)) |
| 1924 | hash = NULL; |
| 1925 | |
| 1926 | __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH); |
| 1927 | } |
| 1928 | |
| 1929 | static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops, |
| 1930 | struct ftrace_hash *new_hash) |
| 1931 | { |
| 1932 | struct ftrace_hash *old_hash = ops->func_hash->filter_hash; |
| 1933 | |
| 1934 | if (ftrace_hash_empty(old_hash)) |
| 1935 | old_hash = NULL; |
| 1936 | |
| 1937 | if (ftrace_hash_empty(new_hash)) |
| 1938 | new_hash = NULL; |
| 1939 | |
| 1940 | return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash); |
| 1941 | } |
| 1942 | |
| 1943 | static void print_ip_ins(const char *fmt, unsigned char *p) |
| 1944 | { |
| 1945 | int i; |
| 1946 | |
| 1947 | printk(KERN_CONT "%s", fmt); |
| 1948 | |
| 1949 | for (i = 0; i < MCOUNT_INSN_SIZE; i++) |
| 1950 | printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]); |
| 1951 | } |
| 1952 | |
| 1953 | static struct ftrace_ops * |
| 1954 | ftrace_find_tramp_ops_any(struct dyn_ftrace *rec); |
| 1955 | |
| 1956 | /** |
| 1957 | * ftrace_bug - report and shutdown function tracer |
| 1958 | * @failed: The failed type (EFAULT, EINVAL, EPERM) |
| 1959 | * @rec: The record that failed |
| 1960 | * |
| 1961 | * The arch code that enables or disables the function tracing |
| 1962 | * can call ftrace_bug() when it has detected a problem in |
| 1963 | * modifying the code. @failed should be one of either: |
| 1964 | * EFAULT - if the problem happens on reading the @ip address |
| 1965 | * EINVAL - if what is read at @ip is not what was expected |
| 1966 | * EPERM - if the problem happens on writting to the @ip address |
| 1967 | */ |
| 1968 | void ftrace_bug(int failed, struct dyn_ftrace *rec) |
| 1969 | { |
| 1970 | unsigned long ip = rec ? rec->ip : 0; |
| 1971 | |
| 1972 | switch (failed) { |
| 1973 | case -EFAULT: |
| 1974 | FTRACE_WARN_ON_ONCE(1); |
| 1975 | pr_info("ftrace faulted on modifying "); |
| 1976 | print_ip_sym(ip); |
| 1977 | break; |
| 1978 | case -EINVAL: |
| 1979 | FTRACE_WARN_ON_ONCE(1); |
| 1980 | pr_info("ftrace failed to modify "); |
| 1981 | print_ip_sym(ip); |
| 1982 | print_ip_ins(" actual: ", (unsigned char *)ip); |
| 1983 | pr_cont("\n"); |
| 1984 | break; |
| 1985 | case -EPERM: |
| 1986 | FTRACE_WARN_ON_ONCE(1); |
| 1987 | pr_info("ftrace faulted on writing "); |
| 1988 | print_ip_sym(ip); |
| 1989 | break; |
| 1990 | default: |
| 1991 | FTRACE_WARN_ON_ONCE(1); |
| 1992 | pr_info("ftrace faulted on unknown error "); |
| 1993 | print_ip_sym(ip); |
| 1994 | } |
| 1995 | if (rec) { |
| 1996 | struct ftrace_ops *ops = NULL; |
| 1997 | |
| 1998 | pr_info("ftrace record flags: %lx\n", rec->flags); |
| 1999 | pr_cont(" (%ld)%s", ftrace_rec_count(rec), |
| 2000 | rec->flags & FTRACE_FL_REGS ? " R" : " "); |
| 2001 | if (rec->flags & FTRACE_FL_TRAMP_EN) { |
| 2002 | ops = ftrace_find_tramp_ops_any(rec); |
| 2003 | if (ops) |
| 2004 | pr_cont("\ttramp: %pS", |
| 2005 | (void *)ops->trampoline); |
| 2006 | else |
| 2007 | pr_cont("\ttramp: ERROR!"); |
| 2008 | |
| 2009 | } |
| 2010 | ip = ftrace_get_addr_curr(rec); |
| 2011 | pr_cont(" expected tramp: %lx\n", ip); |
| 2012 | } |
| 2013 | } |
| 2014 | |
| 2015 | static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update) |
| 2016 | { |
| 2017 | unsigned long flag = 0UL; |
| 2018 | |
| 2019 | /* |
| 2020 | * If we are updating calls: |
| 2021 | * |
| 2022 | * If the record has a ref count, then we need to enable it |
| 2023 | * because someone is using it. |
| 2024 | * |
| 2025 | * Otherwise we make sure its disabled. |
| 2026 | * |
| 2027 | * If we are disabling calls, then disable all records that |
| 2028 | * are enabled. |
| 2029 | */ |
| 2030 | if (enable && ftrace_rec_count(rec)) |
| 2031 | flag = FTRACE_FL_ENABLED; |
| 2032 | |
| 2033 | /* |
| 2034 | * If enabling and the REGS flag does not match the REGS_EN, or |
| 2035 | * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore |
| 2036 | * this record. Set flags to fail the compare against ENABLED. |
| 2037 | */ |
| 2038 | if (flag) { |
| 2039 | if (!(rec->flags & FTRACE_FL_REGS) != |
| 2040 | !(rec->flags & FTRACE_FL_REGS_EN)) |
| 2041 | flag |= FTRACE_FL_REGS; |
| 2042 | |
| 2043 | if (!(rec->flags & FTRACE_FL_TRAMP) != |
| 2044 | !(rec->flags & FTRACE_FL_TRAMP_EN)) |
| 2045 | flag |= FTRACE_FL_TRAMP; |
| 2046 | } |
| 2047 | |
| 2048 | /* If the state of this record hasn't changed, then do nothing */ |
| 2049 | if ((rec->flags & FTRACE_FL_ENABLED) == flag) |
| 2050 | return FTRACE_UPDATE_IGNORE; |
| 2051 | |
| 2052 | if (flag) { |
| 2053 | /* Save off if rec is being enabled (for return value) */ |
| 2054 | flag ^= rec->flags & FTRACE_FL_ENABLED; |
| 2055 | |
| 2056 | if (update) { |
| 2057 | rec->flags |= FTRACE_FL_ENABLED; |
| 2058 | if (flag & FTRACE_FL_REGS) { |
| 2059 | if (rec->flags & FTRACE_FL_REGS) |
| 2060 | rec->flags |= FTRACE_FL_REGS_EN; |
| 2061 | else |
| 2062 | rec->flags &= ~FTRACE_FL_REGS_EN; |
| 2063 | } |
| 2064 | if (flag & FTRACE_FL_TRAMP) { |
| 2065 | if (rec->flags & FTRACE_FL_TRAMP) |
| 2066 | rec->flags |= FTRACE_FL_TRAMP_EN; |
| 2067 | else |
| 2068 | rec->flags &= ~FTRACE_FL_TRAMP_EN; |
| 2069 | } |
| 2070 | } |
| 2071 | |
| 2072 | /* |
| 2073 | * If this record is being updated from a nop, then |
| 2074 | * return UPDATE_MAKE_CALL. |
| 2075 | * Otherwise, |
| 2076 | * return UPDATE_MODIFY_CALL to tell the caller to convert |
| 2077 | * from the save regs, to a non-save regs function or |
| 2078 | * vice versa, or from a trampoline call. |
| 2079 | */ |
| 2080 | if (flag & FTRACE_FL_ENABLED) |
| 2081 | return FTRACE_UPDATE_MAKE_CALL; |
| 2082 | |
| 2083 | return FTRACE_UPDATE_MODIFY_CALL; |
| 2084 | } |
| 2085 | |
| 2086 | if (update) { |
| 2087 | /* If there's no more users, clear all flags */ |
| 2088 | if (!ftrace_rec_count(rec)) |
| 2089 | rec->flags = 0; |
| 2090 | else |
| 2091 | /* |
| 2092 | * Just disable the record, but keep the ops TRAMP |
| 2093 | * and REGS states. The _EN flags must be disabled though. |
| 2094 | */ |
| 2095 | rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN | |
| 2096 | FTRACE_FL_REGS_EN); |
| 2097 | } |
| 2098 | |
| 2099 | return FTRACE_UPDATE_MAKE_NOP; |
| 2100 | } |
| 2101 | |
| 2102 | /** |
| 2103 | * ftrace_update_record, set a record that now is tracing or not |
| 2104 | * @rec: the record to update |
| 2105 | * @enable: set to 1 if the record is tracing, zero to force disable |
| 2106 | * |
| 2107 | * The records that represent all functions that can be traced need |
| 2108 | * to be updated when tracing has been enabled. |
| 2109 | */ |
| 2110 | int ftrace_update_record(struct dyn_ftrace *rec, int enable) |
| 2111 | { |
| 2112 | return ftrace_check_record(rec, enable, 1); |
| 2113 | } |
| 2114 | |
| 2115 | /** |
| 2116 | * ftrace_test_record, check if the record has been enabled or not |
| 2117 | * @rec: the record to test |
| 2118 | * @enable: set to 1 to check if enabled, 0 if it is disabled |
| 2119 | * |
| 2120 | * The arch code may need to test if a record is already set to |
| 2121 | * tracing to determine how to modify the function code that it |
| 2122 | * represents. |
| 2123 | */ |
| 2124 | int ftrace_test_record(struct dyn_ftrace *rec, int enable) |
| 2125 | { |
| 2126 | return ftrace_check_record(rec, enable, 0); |
| 2127 | } |
| 2128 | |
| 2129 | static struct ftrace_ops * |
| 2130 | ftrace_find_tramp_ops_any(struct dyn_ftrace *rec) |
| 2131 | { |
| 2132 | struct ftrace_ops *op; |
| 2133 | unsigned long ip = rec->ip; |
| 2134 | |
| 2135 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 2136 | |
| 2137 | if (!op->trampoline) |
| 2138 | continue; |
| 2139 | |
| 2140 | if (hash_contains_ip(ip, op->func_hash)) |
| 2141 | return op; |
| 2142 | } while_for_each_ftrace_op(op); |
| 2143 | |
| 2144 | return NULL; |
| 2145 | } |
| 2146 | |
| 2147 | static struct ftrace_ops * |
| 2148 | ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec) |
| 2149 | { |
| 2150 | struct ftrace_ops *op; |
| 2151 | unsigned long ip = rec->ip; |
| 2152 | |
| 2153 | /* |
| 2154 | * Need to check removed ops first. |
| 2155 | * If they are being removed, and this rec has a tramp, |
| 2156 | * and this rec is in the ops list, then it would be the |
| 2157 | * one with the tramp. |
| 2158 | */ |
| 2159 | if (removed_ops) { |
| 2160 | if (hash_contains_ip(ip, &removed_ops->old_hash)) |
| 2161 | return removed_ops; |
| 2162 | } |
| 2163 | |
| 2164 | /* |
| 2165 | * Need to find the current trampoline for a rec. |
| 2166 | * Now, a trampoline is only attached to a rec if there |
| 2167 | * was a single 'ops' attached to it. But this can be called |
| 2168 | * when we are adding another op to the rec or removing the |
| 2169 | * current one. Thus, if the op is being added, we can |
| 2170 | * ignore it because it hasn't attached itself to the rec |
| 2171 | * yet. |
| 2172 | * |
| 2173 | * If an ops is being modified (hooking to different functions) |
| 2174 | * then we don't care about the new functions that are being |
| 2175 | * added, just the old ones (that are probably being removed). |
| 2176 | * |
| 2177 | * If we are adding an ops to a function that already is using |
| 2178 | * a trampoline, it needs to be removed (trampolines are only |
| 2179 | * for single ops connected), then an ops that is not being |
| 2180 | * modified also needs to be checked. |
| 2181 | */ |
| 2182 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 2183 | |
| 2184 | if (!op->trampoline) |
| 2185 | continue; |
| 2186 | |
| 2187 | /* |
| 2188 | * If the ops is being added, it hasn't gotten to |
| 2189 | * the point to be removed from this tree yet. |
| 2190 | */ |
| 2191 | if (op->flags & FTRACE_OPS_FL_ADDING) |
| 2192 | continue; |
| 2193 | |
| 2194 | |
| 2195 | /* |
| 2196 | * If the ops is being modified and is in the old |
| 2197 | * hash, then it is probably being removed from this |
| 2198 | * function. |
| 2199 | */ |
| 2200 | if ((op->flags & FTRACE_OPS_FL_MODIFYING) && |
| 2201 | hash_contains_ip(ip, &op->old_hash)) |
| 2202 | return op; |
| 2203 | /* |
| 2204 | * If the ops is not being added or modified, and it's |
| 2205 | * in its normal filter hash, then this must be the one |
| 2206 | * we want! |
| 2207 | */ |
| 2208 | if (!(op->flags & FTRACE_OPS_FL_MODIFYING) && |
| 2209 | hash_contains_ip(ip, op->func_hash)) |
| 2210 | return op; |
| 2211 | |
| 2212 | } while_for_each_ftrace_op(op); |
| 2213 | |
| 2214 | return NULL; |
| 2215 | } |
| 2216 | |
| 2217 | static struct ftrace_ops * |
| 2218 | ftrace_find_tramp_ops_new(struct dyn_ftrace *rec) |
| 2219 | { |
| 2220 | struct ftrace_ops *op; |
| 2221 | unsigned long ip = rec->ip; |
| 2222 | |
| 2223 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 2224 | /* pass rec in as regs to have non-NULL val */ |
| 2225 | if (hash_contains_ip(ip, op->func_hash)) |
| 2226 | return op; |
| 2227 | } while_for_each_ftrace_op(op); |
| 2228 | |
| 2229 | return NULL; |
| 2230 | } |
| 2231 | |
| 2232 | /** |
| 2233 | * ftrace_get_addr_new - Get the call address to set to |
| 2234 | * @rec: The ftrace record descriptor |
| 2235 | * |
| 2236 | * If the record has the FTRACE_FL_REGS set, that means that it |
| 2237 | * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS |
| 2238 | * is not not set, then it wants to convert to the normal callback. |
| 2239 | * |
| 2240 | * Returns the address of the trampoline to set to |
| 2241 | */ |
| 2242 | unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec) |
| 2243 | { |
| 2244 | struct ftrace_ops *ops; |
| 2245 | |
| 2246 | /* Trampolines take precedence over regs */ |
| 2247 | if (rec->flags & FTRACE_FL_TRAMP) { |
| 2248 | ops = ftrace_find_tramp_ops_new(rec); |
| 2249 | if (FTRACE_WARN_ON(!ops || !ops->trampoline)) { |
| 2250 | pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n", |
| 2251 | (void *)rec->ip, (void *)rec->ip, rec->flags); |
| 2252 | /* Ftrace is shutting down, return anything */ |
| 2253 | return (unsigned long)FTRACE_ADDR; |
| 2254 | } |
| 2255 | return ops->trampoline; |
| 2256 | } |
| 2257 | |
| 2258 | if (rec->flags & FTRACE_FL_REGS) |
| 2259 | return (unsigned long)FTRACE_REGS_ADDR; |
| 2260 | else |
| 2261 | return (unsigned long)FTRACE_ADDR; |
| 2262 | } |
| 2263 | |
| 2264 | /** |
| 2265 | * ftrace_get_addr_curr - Get the call address that is already there |
| 2266 | * @rec: The ftrace record descriptor |
| 2267 | * |
| 2268 | * The FTRACE_FL_REGS_EN is set when the record already points to |
| 2269 | * a function that saves all the regs. Basically the '_EN' version |
| 2270 | * represents the current state of the function. |
| 2271 | * |
| 2272 | * Returns the address of the trampoline that is currently being called |
| 2273 | */ |
| 2274 | unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec) |
| 2275 | { |
| 2276 | struct ftrace_ops *ops; |
| 2277 | |
| 2278 | /* Trampolines take precedence over regs */ |
| 2279 | if (rec->flags & FTRACE_FL_TRAMP_EN) { |
| 2280 | ops = ftrace_find_tramp_ops_curr(rec); |
| 2281 | if (FTRACE_WARN_ON(!ops)) { |
| 2282 | pr_warning("Bad trampoline accounting at: %p (%pS)\n", |
| 2283 | (void *)rec->ip, (void *)rec->ip); |
| 2284 | /* Ftrace is shutting down, return anything */ |
| 2285 | return (unsigned long)FTRACE_ADDR; |
| 2286 | } |
| 2287 | return ops->trampoline; |
| 2288 | } |
| 2289 | |
| 2290 | if (rec->flags & FTRACE_FL_REGS_EN) |
| 2291 | return (unsigned long)FTRACE_REGS_ADDR; |
| 2292 | else |
| 2293 | return (unsigned long)FTRACE_ADDR; |
| 2294 | } |
| 2295 | |
| 2296 | static int |
| 2297 | __ftrace_replace_code(struct dyn_ftrace *rec, int enable) |
| 2298 | { |
| 2299 | unsigned long ftrace_old_addr; |
| 2300 | unsigned long ftrace_addr; |
| 2301 | int ret; |
| 2302 | |
| 2303 | ftrace_addr = ftrace_get_addr_new(rec); |
| 2304 | |
| 2305 | /* This needs to be done before we call ftrace_update_record */ |
| 2306 | ftrace_old_addr = ftrace_get_addr_curr(rec); |
| 2307 | |
| 2308 | ret = ftrace_update_record(rec, enable); |
| 2309 | |
| 2310 | switch (ret) { |
| 2311 | case FTRACE_UPDATE_IGNORE: |
| 2312 | return 0; |
| 2313 | |
| 2314 | case FTRACE_UPDATE_MAKE_CALL: |
| 2315 | return ftrace_make_call(rec, ftrace_addr); |
| 2316 | |
| 2317 | case FTRACE_UPDATE_MAKE_NOP: |
| 2318 | return ftrace_make_nop(NULL, rec, ftrace_old_addr); |
| 2319 | |
| 2320 | case FTRACE_UPDATE_MODIFY_CALL: |
| 2321 | return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr); |
| 2322 | } |
| 2323 | |
| 2324 | return -1; /* unknow ftrace bug */ |
| 2325 | } |
| 2326 | |
| 2327 | void __weak ftrace_replace_code(int enable) |
| 2328 | { |
| 2329 | struct dyn_ftrace *rec; |
| 2330 | struct ftrace_page *pg; |
| 2331 | int failed; |
| 2332 | |
| 2333 | if (unlikely(ftrace_disabled)) |
| 2334 | return; |
| 2335 | |
| 2336 | do_for_each_ftrace_rec(pg, rec) { |
| 2337 | failed = __ftrace_replace_code(rec, enable); |
| 2338 | if (failed) { |
| 2339 | ftrace_bug(failed, rec); |
| 2340 | /* Stop processing */ |
| 2341 | return; |
| 2342 | } |
| 2343 | } while_for_each_ftrace_rec(); |
| 2344 | } |
| 2345 | |
| 2346 | struct ftrace_rec_iter { |
| 2347 | struct ftrace_page *pg; |
| 2348 | int index; |
| 2349 | }; |
| 2350 | |
| 2351 | /** |
| 2352 | * ftrace_rec_iter_start, start up iterating over traced functions |
| 2353 | * |
| 2354 | * Returns an iterator handle that is used to iterate over all |
| 2355 | * the records that represent address locations where functions |
| 2356 | * are traced. |
| 2357 | * |
| 2358 | * May return NULL if no records are available. |
| 2359 | */ |
| 2360 | struct ftrace_rec_iter *ftrace_rec_iter_start(void) |
| 2361 | { |
| 2362 | /* |
| 2363 | * We only use a single iterator. |
| 2364 | * Protected by the ftrace_lock mutex. |
| 2365 | */ |
| 2366 | static struct ftrace_rec_iter ftrace_rec_iter; |
| 2367 | struct ftrace_rec_iter *iter = &ftrace_rec_iter; |
| 2368 | |
| 2369 | iter->pg = ftrace_pages_start; |
| 2370 | iter->index = 0; |
| 2371 | |
| 2372 | /* Could have empty pages */ |
| 2373 | while (iter->pg && !iter->pg->index) |
| 2374 | iter->pg = iter->pg->next; |
| 2375 | |
| 2376 | if (!iter->pg) |
| 2377 | return NULL; |
| 2378 | |
| 2379 | return iter; |
| 2380 | } |
| 2381 | |
| 2382 | /** |
| 2383 | * ftrace_rec_iter_next, get the next record to process. |
| 2384 | * @iter: The handle to the iterator. |
| 2385 | * |
| 2386 | * Returns the next iterator after the given iterator @iter. |
| 2387 | */ |
| 2388 | struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter) |
| 2389 | { |
| 2390 | iter->index++; |
| 2391 | |
| 2392 | if (iter->index >= iter->pg->index) { |
| 2393 | iter->pg = iter->pg->next; |
| 2394 | iter->index = 0; |
| 2395 | |
| 2396 | /* Could have empty pages */ |
| 2397 | while (iter->pg && !iter->pg->index) |
| 2398 | iter->pg = iter->pg->next; |
| 2399 | } |
| 2400 | |
| 2401 | if (!iter->pg) |
| 2402 | return NULL; |
| 2403 | |
| 2404 | return iter; |
| 2405 | } |
| 2406 | |
| 2407 | /** |
| 2408 | * ftrace_rec_iter_record, get the record at the iterator location |
| 2409 | * @iter: The current iterator location |
| 2410 | * |
| 2411 | * Returns the record that the current @iter is at. |
| 2412 | */ |
| 2413 | struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter) |
| 2414 | { |
| 2415 | return &iter->pg->records[iter->index]; |
| 2416 | } |
| 2417 | |
| 2418 | static int |
| 2419 | ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec) |
| 2420 | { |
| 2421 | int ret; |
| 2422 | |
| 2423 | if (unlikely(ftrace_disabled)) |
| 2424 | return 0; |
| 2425 | |
| 2426 | ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR); |
| 2427 | if (ret) { |
| 2428 | ftrace_bug(ret, rec); |
| 2429 | return 0; |
| 2430 | } |
| 2431 | return 1; |
| 2432 | } |
| 2433 | |
| 2434 | /* |
| 2435 | * archs can override this function if they must do something |
| 2436 | * before the modifying code is performed. |
| 2437 | */ |
| 2438 | int __weak ftrace_arch_code_modify_prepare(void) |
| 2439 | { |
| 2440 | return 0; |
| 2441 | } |
| 2442 | |
| 2443 | /* |
| 2444 | * archs can override this function if they must do something |
| 2445 | * after the modifying code is performed. |
| 2446 | */ |
| 2447 | int __weak ftrace_arch_code_modify_post_process(void) |
| 2448 | { |
| 2449 | return 0; |
| 2450 | } |
| 2451 | |
| 2452 | void ftrace_modify_all_code(int command) |
| 2453 | { |
| 2454 | int update = command & FTRACE_UPDATE_TRACE_FUNC; |
| 2455 | int err = 0; |
| 2456 | |
| 2457 | /* |
| 2458 | * If the ftrace_caller calls a ftrace_ops func directly, |
| 2459 | * we need to make sure that it only traces functions it |
| 2460 | * expects to trace. When doing the switch of functions, |
| 2461 | * we need to update to the ftrace_ops_list_func first |
| 2462 | * before the transition between old and new calls are set, |
| 2463 | * as the ftrace_ops_list_func will check the ops hashes |
| 2464 | * to make sure the ops are having the right functions |
| 2465 | * traced. |
| 2466 | */ |
| 2467 | if (update) { |
| 2468 | err = ftrace_update_ftrace_func(ftrace_ops_list_func); |
| 2469 | if (FTRACE_WARN_ON(err)) |
| 2470 | return; |
| 2471 | } |
| 2472 | |
| 2473 | if (command & FTRACE_UPDATE_CALLS) |
| 2474 | ftrace_replace_code(1); |
| 2475 | else if (command & FTRACE_DISABLE_CALLS) |
| 2476 | ftrace_replace_code(0); |
| 2477 | |
| 2478 | if (update && ftrace_trace_function != ftrace_ops_list_func) { |
| 2479 | function_trace_op = set_function_trace_op; |
| 2480 | smp_wmb(); |
| 2481 | /* If irqs are disabled, we are in stop machine */ |
| 2482 | if (!irqs_disabled()) |
| 2483 | smp_call_function(ftrace_sync_ipi, NULL, 1); |
| 2484 | err = ftrace_update_ftrace_func(ftrace_trace_function); |
| 2485 | if (FTRACE_WARN_ON(err)) |
| 2486 | return; |
| 2487 | } |
| 2488 | |
| 2489 | if (command & FTRACE_START_FUNC_RET) |
| 2490 | err = ftrace_enable_ftrace_graph_caller(); |
| 2491 | else if (command & FTRACE_STOP_FUNC_RET) |
| 2492 | err = ftrace_disable_ftrace_graph_caller(); |
| 2493 | FTRACE_WARN_ON(err); |
| 2494 | } |
| 2495 | |
| 2496 | static int __ftrace_modify_code(void *data) |
| 2497 | { |
| 2498 | int *command = data; |
| 2499 | |
| 2500 | ftrace_modify_all_code(*command); |
| 2501 | |
| 2502 | return 0; |
| 2503 | } |
| 2504 | |
| 2505 | /** |
| 2506 | * ftrace_run_stop_machine, go back to the stop machine method |
| 2507 | * @command: The command to tell ftrace what to do |
| 2508 | * |
| 2509 | * If an arch needs to fall back to the stop machine method, the |
| 2510 | * it can call this function. |
| 2511 | */ |
| 2512 | void ftrace_run_stop_machine(int command) |
| 2513 | { |
| 2514 | stop_machine(__ftrace_modify_code, &command, NULL); |
| 2515 | } |
| 2516 | |
| 2517 | /** |
| 2518 | * arch_ftrace_update_code, modify the code to trace or not trace |
| 2519 | * @command: The command that needs to be done |
| 2520 | * |
| 2521 | * Archs can override this function if it does not need to |
| 2522 | * run stop_machine() to modify code. |
| 2523 | */ |
| 2524 | void __weak arch_ftrace_update_code(int command) |
| 2525 | { |
| 2526 | ftrace_run_stop_machine(command); |
| 2527 | } |
| 2528 | |
| 2529 | static void ftrace_run_update_code(int command) |
| 2530 | { |
| 2531 | int ret; |
| 2532 | |
| 2533 | ret = ftrace_arch_code_modify_prepare(); |
| 2534 | FTRACE_WARN_ON(ret); |
| 2535 | if (ret) |
| 2536 | return; |
| 2537 | |
| 2538 | /* |
| 2539 | * By default we use stop_machine() to modify the code. |
| 2540 | * But archs can do what ever they want as long as it |
| 2541 | * is safe. The stop_machine() is the safest, but also |
| 2542 | * produces the most overhead. |
| 2543 | */ |
| 2544 | arch_ftrace_update_code(command); |
| 2545 | |
| 2546 | ret = ftrace_arch_code_modify_post_process(); |
| 2547 | FTRACE_WARN_ON(ret); |
| 2548 | } |
| 2549 | |
| 2550 | static void ftrace_run_modify_code(struct ftrace_ops *ops, int command, |
| 2551 | struct ftrace_ops_hash *old_hash) |
| 2552 | { |
| 2553 | ops->flags |= FTRACE_OPS_FL_MODIFYING; |
| 2554 | ops->old_hash.filter_hash = old_hash->filter_hash; |
| 2555 | ops->old_hash.notrace_hash = old_hash->notrace_hash; |
| 2556 | ftrace_run_update_code(command); |
| 2557 | ops->old_hash.filter_hash = NULL; |
| 2558 | ops->old_hash.notrace_hash = NULL; |
| 2559 | ops->flags &= ~FTRACE_OPS_FL_MODIFYING; |
| 2560 | } |
| 2561 | |
| 2562 | static ftrace_func_t saved_ftrace_func; |
| 2563 | static int ftrace_start_up; |
| 2564 | |
| 2565 | void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops) |
| 2566 | { |
| 2567 | } |
| 2568 | |
| 2569 | static void control_ops_free(struct ftrace_ops *ops) |
| 2570 | { |
| 2571 | free_percpu(ops->disabled); |
| 2572 | } |
| 2573 | |
| 2574 | static void ftrace_startup_enable(int command) |
| 2575 | { |
| 2576 | if (saved_ftrace_func != ftrace_trace_function) { |
| 2577 | saved_ftrace_func = ftrace_trace_function; |
| 2578 | command |= FTRACE_UPDATE_TRACE_FUNC; |
| 2579 | } |
| 2580 | |
| 2581 | if (!command || !ftrace_enabled) |
| 2582 | return; |
| 2583 | |
| 2584 | ftrace_run_update_code(command); |
| 2585 | } |
| 2586 | |
| 2587 | static void ftrace_startup_all(int command) |
| 2588 | { |
| 2589 | update_all_ops = true; |
| 2590 | ftrace_startup_enable(command); |
| 2591 | update_all_ops = false; |
| 2592 | } |
| 2593 | |
| 2594 | static int ftrace_startup(struct ftrace_ops *ops, int command) |
| 2595 | { |
| 2596 | int ret; |
| 2597 | |
| 2598 | if (unlikely(ftrace_disabled)) |
| 2599 | return -ENODEV; |
| 2600 | |
| 2601 | ret = __register_ftrace_function(ops); |
| 2602 | if (ret) |
| 2603 | return ret; |
| 2604 | |
| 2605 | ftrace_start_up++; |
| 2606 | command |= FTRACE_UPDATE_CALLS; |
| 2607 | |
| 2608 | /* |
| 2609 | * Note that ftrace probes uses this to start up |
| 2610 | * and modify functions it will probe. But we still |
| 2611 | * set the ADDING flag for modification, as probes |
| 2612 | * do not have trampolines. If they add them in the |
| 2613 | * future, then the probes will need to distinguish |
| 2614 | * between adding and updating probes. |
| 2615 | */ |
| 2616 | ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING; |
| 2617 | |
| 2618 | ret = ftrace_hash_ipmodify_enable(ops); |
| 2619 | if (ret < 0) { |
| 2620 | /* Rollback registration process */ |
| 2621 | __unregister_ftrace_function(ops); |
| 2622 | ftrace_start_up--; |
| 2623 | ops->flags &= ~FTRACE_OPS_FL_ENABLED; |
| 2624 | return ret; |
| 2625 | } |
| 2626 | |
| 2627 | ftrace_hash_rec_enable(ops, 1); |
| 2628 | |
| 2629 | ftrace_startup_enable(command); |
| 2630 | |
| 2631 | ops->flags &= ~FTRACE_OPS_FL_ADDING; |
| 2632 | |
| 2633 | return 0; |
| 2634 | } |
| 2635 | |
| 2636 | static int ftrace_shutdown(struct ftrace_ops *ops, int command) |
| 2637 | { |
| 2638 | int ret; |
| 2639 | |
| 2640 | if (unlikely(ftrace_disabled)) |
| 2641 | return -ENODEV; |
| 2642 | |
| 2643 | ret = __unregister_ftrace_function(ops); |
| 2644 | if (ret) |
| 2645 | return ret; |
| 2646 | |
| 2647 | ftrace_start_up--; |
| 2648 | /* |
| 2649 | * Just warn in case of unbalance, no need to kill ftrace, it's not |
| 2650 | * critical but the ftrace_call callers may be never nopped again after |
| 2651 | * further ftrace uses. |
| 2652 | */ |
| 2653 | WARN_ON_ONCE(ftrace_start_up < 0); |
| 2654 | |
| 2655 | /* Disabling ipmodify never fails */ |
| 2656 | ftrace_hash_ipmodify_disable(ops); |
| 2657 | ftrace_hash_rec_disable(ops, 1); |
| 2658 | |
| 2659 | ops->flags &= ~FTRACE_OPS_FL_ENABLED; |
| 2660 | |
| 2661 | command |= FTRACE_UPDATE_CALLS; |
| 2662 | |
| 2663 | if (saved_ftrace_func != ftrace_trace_function) { |
| 2664 | saved_ftrace_func = ftrace_trace_function; |
| 2665 | command |= FTRACE_UPDATE_TRACE_FUNC; |
| 2666 | } |
| 2667 | |
| 2668 | if (!command || !ftrace_enabled) { |
| 2669 | /* |
| 2670 | * If these are dynamic or control ops, they still |
| 2671 | * need their data freed. Since, function tracing is |
| 2672 | * not currently active, we can just free them |
| 2673 | * without synchronizing all CPUs. |
| 2674 | */ |
| 2675 | if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) |
| 2676 | goto free_ops; |
| 2677 | |
| 2678 | return 0; |
| 2679 | } |
| 2680 | |
| 2681 | /* |
| 2682 | * If the ops uses a trampoline, then it needs to be |
| 2683 | * tested first on update. |
| 2684 | */ |
| 2685 | ops->flags |= FTRACE_OPS_FL_REMOVING; |
| 2686 | removed_ops = ops; |
| 2687 | |
| 2688 | /* The trampoline logic checks the old hashes */ |
| 2689 | ops->old_hash.filter_hash = ops->func_hash->filter_hash; |
| 2690 | ops->old_hash.notrace_hash = ops->func_hash->notrace_hash; |
| 2691 | |
| 2692 | ftrace_run_update_code(command); |
| 2693 | |
| 2694 | /* |
| 2695 | * If there's no more ops registered with ftrace, run a |
| 2696 | * sanity check to make sure all rec flags are cleared. |
| 2697 | */ |
| 2698 | if (ftrace_ops_list == &ftrace_list_end) { |
| 2699 | struct ftrace_page *pg; |
| 2700 | struct dyn_ftrace *rec; |
| 2701 | |
| 2702 | do_for_each_ftrace_rec(pg, rec) { |
| 2703 | if (FTRACE_WARN_ON_ONCE(rec->flags)) |
| 2704 | pr_warn(" %pS flags:%lx\n", |
| 2705 | (void *)rec->ip, rec->flags); |
| 2706 | } while_for_each_ftrace_rec(); |
| 2707 | } |
| 2708 | |
| 2709 | ops->old_hash.filter_hash = NULL; |
| 2710 | ops->old_hash.notrace_hash = NULL; |
| 2711 | |
| 2712 | removed_ops = NULL; |
| 2713 | ops->flags &= ~FTRACE_OPS_FL_REMOVING; |
| 2714 | |
| 2715 | /* |
| 2716 | * Dynamic ops may be freed, we must make sure that all |
| 2717 | * callers are done before leaving this function. |
| 2718 | * The same goes for freeing the per_cpu data of the control |
| 2719 | * ops. |
| 2720 | * |
| 2721 | * Again, normal synchronize_sched() is not good enough. |
| 2722 | * We need to do a hard force of sched synchronization. |
| 2723 | * This is because we use preempt_disable() to do RCU, but |
| 2724 | * the function tracers can be called where RCU is not watching |
| 2725 | * (like before user_exit()). We can not rely on the RCU |
| 2726 | * infrastructure to do the synchronization, thus we must do it |
| 2727 | * ourselves. |
| 2728 | */ |
| 2729 | if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) { |
| 2730 | schedule_on_each_cpu(ftrace_sync); |
| 2731 | |
| 2732 | free_ops: |
| 2733 | arch_ftrace_trampoline_free(ops); |
| 2734 | |
| 2735 | if (ops->flags & FTRACE_OPS_FL_CONTROL) |
| 2736 | control_ops_free(ops); |
| 2737 | } |
| 2738 | |
| 2739 | return 0; |
| 2740 | } |
| 2741 | |
| 2742 | static void ftrace_startup_sysctl(void) |
| 2743 | { |
| 2744 | int command; |
| 2745 | |
| 2746 | if (unlikely(ftrace_disabled)) |
| 2747 | return; |
| 2748 | |
| 2749 | /* Force update next time */ |
| 2750 | saved_ftrace_func = NULL; |
| 2751 | /* ftrace_start_up is true if we want ftrace running */ |
| 2752 | if (ftrace_start_up) { |
| 2753 | command = FTRACE_UPDATE_CALLS; |
| 2754 | if (ftrace_graph_active) |
| 2755 | command |= FTRACE_START_FUNC_RET; |
| 2756 | ftrace_startup_enable(command); |
| 2757 | } |
| 2758 | } |
| 2759 | |
| 2760 | static void ftrace_shutdown_sysctl(void) |
| 2761 | { |
| 2762 | int command; |
| 2763 | |
| 2764 | if (unlikely(ftrace_disabled)) |
| 2765 | return; |
| 2766 | |
| 2767 | /* ftrace_start_up is true if ftrace is running */ |
| 2768 | if (ftrace_start_up) { |
| 2769 | command = FTRACE_DISABLE_CALLS; |
| 2770 | if (ftrace_graph_active) |
| 2771 | command |= FTRACE_STOP_FUNC_RET; |
| 2772 | ftrace_run_update_code(command); |
| 2773 | } |
| 2774 | } |
| 2775 | |
| 2776 | static cycle_t ftrace_update_time; |
| 2777 | unsigned long ftrace_update_tot_cnt; |
| 2778 | |
| 2779 | static inline int ops_traces_mod(struct ftrace_ops *ops) |
| 2780 | { |
| 2781 | /* |
| 2782 | * Filter_hash being empty will default to trace module. |
| 2783 | * But notrace hash requires a test of individual module functions. |
| 2784 | */ |
| 2785 | return ftrace_hash_empty(ops->func_hash->filter_hash) && |
| 2786 | ftrace_hash_empty(ops->func_hash->notrace_hash); |
| 2787 | } |
| 2788 | |
| 2789 | /* |
| 2790 | * Check if the current ops references the record. |
| 2791 | * |
| 2792 | * If the ops traces all functions, then it was already accounted for. |
| 2793 | * If the ops does not trace the current record function, skip it. |
| 2794 | * If the ops ignores the function via notrace filter, skip it. |
| 2795 | */ |
| 2796 | static inline bool |
| 2797 | ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec) |
| 2798 | { |
| 2799 | /* If ops isn't enabled, ignore it */ |
| 2800 | if (!(ops->flags & FTRACE_OPS_FL_ENABLED)) |
| 2801 | return 0; |
| 2802 | |
| 2803 | /* If ops traces all mods, we already accounted for it */ |
| 2804 | if (ops_traces_mod(ops)) |
| 2805 | return 0; |
| 2806 | |
| 2807 | /* The function must be in the filter */ |
| 2808 | if (!ftrace_hash_empty(ops->func_hash->filter_hash) && |
| 2809 | !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip)) |
| 2810 | return 0; |
| 2811 | |
| 2812 | /* If in notrace hash, we ignore it too */ |
| 2813 | if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) |
| 2814 | return 0; |
| 2815 | |
| 2816 | return 1; |
| 2817 | } |
| 2818 | |
| 2819 | static int referenced_filters(struct dyn_ftrace *rec) |
| 2820 | { |
| 2821 | struct ftrace_ops *ops; |
| 2822 | int cnt = 0; |
| 2823 | |
| 2824 | for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) { |
| 2825 | if (ops_references_rec(ops, rec)) |
| 2826 | cnt++; |
| 2827 | } |
| 2828 | |
| 2829 | return cnt; |
| 2830 | } |
| 2831 | |
| 2832 | static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs) |
| 2833 | { |
| 2834 | struct ftrace_page *pg; |
| 2835 | struct dyn_ftrace *p; |
| 2836 | cycle_t start, stop; |
| 2837 | unsigned long update_cnt = 0; |
| 2838 | unsigned long ref = 0; |
| 2839 | bool test = false; |
| 2840 | int i; |
| 2841 | |
| 2842 | /* |
| 2843 | * When adding a module, we need to check if tracers are |
| 2844 | * currently enabled and if they are set to trace all functions. |
| 2845 | * If they are, we need to enable the module functions as well |
| 2846 | * as update the reference counts for those function records. |
| 2847 | */ |
| 2848 | if (mod) { |
| 2849 | struct ftrace_ops *ops; |
| 2850 | |
| 2851 | for (ops = ftrace_ops_list; |
| 2852 | ops != &ftrace_list_end; ops = ops->next) { |
| 2853 | if (ops->flags & FTRACE_OPS_FL_ENABLED) { |
| 2854 | if (ops_traces_mod(ops)) |
| 2855 | ref++; |
| 2856 | else |
| 2857 | test = true; |
| 2858 | } |
| 2859 | } |
| 2860 | } |
| 2861 | |
| 2862 | start = ftrace_now(raw_smp_processor_id()); |
| 2863 | |
| 2864 | for (pg = new_pgs; pg; pg = pg->next) { |
| 2865 | |
| 2866 | for (i = 0; i < pg->index; i++) { |
| 2867 | int cnt = ref; |
| 2868 | |
| 2869 | /* If something went wrong, bail without enabling anything */ |
| 2870 | if (unlikely(ftrace_disabled)) |
| 2871 | return -1; |
| 2872 | |
| 2873 | p = &pg->records[i]; |
| 2874 | if (test) |
| 2875 | cnt += referenced_filters(p); |
| 2876 | p->flags = cnt; |
| 2877 | |
| 2878 | /* |
| 2879 | * Do the initial record conversion from mcount jump |
| 2880 | * to the NOP instructions. |
| 2881 | */ |
| 2882 | if (!ftrace_code_disable(mod, p)) |
| 2883 | break; |
| 2884 | |
| 2885 | update_cnt++; |
| 2886 | |
| 2887 | /* |
| 2888 | * If the tracing is enabled, go ahead and enable the record. |
| 2889 | * |
| 2890 | * The reason not to enable the record immediatelly is the |
| 2891 | * inherent check of ftrace_make_nop/ftrace_make_call for |
| 2892 | * correct previous instructions. Making first the NOP |
| 2893 | * conversion puts the module to the correct state, thus |
| 2894 | * passing the ftrace_make_call check. |
| 2895 | */ |
| 2896 | if (ftrace_start_up && cnt) { |
| 2897 | int failed = __ftrace_replace_code(p, 1); |
| 2898 | if (failed) |
| 2899 | ftrace_bug(failed, p); |
| 2900 | } |
| 2901 | } |
| 2902 | } |
| 2903 | |
| 2904 | stop = ftrace_now(raw_smp_processor_id()); |
| 2905 | ftrace_update_time = stop - start; |
| 2906 | ftrace_update_tot_cnt += update_cnt; |
| 2907 | |
| 2908 | return 0; |
| 2909 | } |
| 2910 | |
| 2911 | static int ftrace_allocate_records(struct ftrace_page *pg, int count) |
| 2912 | { |
| 2913 | int order; |
| 2914 | int cnt; |
| 2915 | |
| 2916 | if (WARN_ON(!count)) |
| 2917 | return -EINVAL; |
| 2918 | |
| 2919 | order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE)); |
| 2920 | |
| 2921 | /* |
| 2922 | * We want to fill as much as possible. No more than a page |
| 2923 | * may be empty. |
| 2924 | */ |
| 2925 | while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE) |
| 2926 | order--; |
| 2927 | |
| 2928 | again: |
| 2929 | pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order); |
| 2930 | |
| 2931 | if (!pg->records) { |
| 2932 | /* if we can't allocate this size, try something smaller */ |
| 2933 | if (!order) |
| 2934 | return -ENOMEM; |
| 2935 | order >>= 1; |
| 2936 | goto again; |
| 2937 | } |
| 2938 | |
| 2939 | cnt = (PAGE_SIZE << order) / ENTRY_SIZE; |
| 2940 | pg->size = cnt; |
| 2941 | |
| 2942 | if (cnt > count) |
| 2943 | cnt = count; |
| 2944 | |
| 2945 | return cnt; |
| 2946 | } |
| 2947 | |
| 2948 | static struct ftrace_page * |
| 2949 | ftrace_allocate_pages(unsigned long num_to_init) |
| 2950 | { |
| 2951 | struct ftrace_page *start_pg; |
| 2952 | struct ftrace_page *pg; |
| 2953 | int order; |
| 2954 | int cnt; |
| 2955 | |
| 2956 | if (!num_to_init) |
| 2957 | return 0; |
| 2958 | |
| 2959 | start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL); |
| 2960 | if (!pg) |
| 2961 | return NULL; |
| 2962 | |
| 2963 | /* |
| 2964 | * Try to allocate as much as possible in one continues |
| 2965 | * location that fills in all of the space. We want to |
| 2966 | * waste as little space as possible. |
| 2967 | */ |
| 2968 | for (;;) { |
| 2969 | cnt = ftrace_allocate_records(pg, num_to_init); |
| 2970 | if (cnt < 0) |
| 2971 | goto free_pages; |
| 2972 | |
| 2973 | num_to_init -= cnt; |
| 2974 | if (!num_to_init) |
| 2975 | break; |
| 2976 | |
| 2977 | pg->next = kzalloc(sizeof(*pg), GFP_KERNEL); |
| 2978 | if (!pg->next) |
| 2979 | goto free_pages; |
| 2980 | |
| 2981 | pg = pg->next; |
| 2982 | } |
| 2983 | |
| 2984 | return start_pg; |
| 2985 | |
| 2986 | free_pages: |
| 2987 | pg = start_pg; |
| 2988 | while (pg) { |
| 2989 | order = get_count_order(pg->size / ENTRIES_PER_PAGE); |
| 2990 | free_pages((unsigned long)pg->records, order); |
| 2991 | start_pg = pg->next; |
| 2992 | kfree(pg); |
| 2993 | pg = start_pg; |
| 2994 | } |
| 2995 | pr_info("ftrace: FAILED to allocate memory for functions\n"); |
| 2996 | return NULL; |
| 2997 | } |
| 2998 | |
| 2999 | #define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */ |
| 3000 | |
| 3001 | struct ftrace_iterator { |
| 3002 | loff_t pos; |
| 3003 | loff_t func_pos; |
| 3004 | struct ftrace_page *pg; |
| 3005 | struct dyn_ftrace *func; |
| 3006 | struct ftrace_func_probe *probe; |
| 3007 | struct trace_parser parser; |
| 3008 | struct ftrace_hash *hash; |
| 3009 | struct ftrace_ops *ops; |
| 3010 | int hidx; |
| 3011 | int idx; |
| 3012 | unsigned flags; |
| 3013 | }; |
| 3014 | |
| 3015 | static void * |
| 3016 | t_hash_next(struct seq_file *m, loff_t *pos) |
| 3017 | { |
| 3018 | struct ftrace_iterator *iter = m->private; |
| 3019 | struct hlist_node *hnd = NULL; |
| 3020 | struct hlist_head *hhd; |
| 3021 | |
| 3022 | (*pos)++; |
| 3023 | iter->pos = *pos; |
| 3024 | |
| 3025 | if (iter->probe) |
| 3026 | hnd = &iter->probe->node; |
| 3027 | retry: |
| 3028 | if (iter->hidx >= FTRACE_FUNC_HASHSIZE) |
| 3029 | return NULL; |
| 3030 | |
| 3031 | hhd = &ftrace_func_hash[iter->hidx]; |
| 3032 | |
| 3033 | if (hlist_empty(hhd)) { |
| 3034 | iter->hidx++; |
| 3035 | hnd = NULL; |
| 3036 | goto retry; |
| 3037 | } |
| 3038 | |
| 3039 | if (!hnd) |
| 3040 | hnd = hhd->first; |
| 3041 | else { |
| 3042 | hnd = hnd->next; |
| 3043 | if (!hnd) { |
| 3044 | iter->hidx++; |
| 3045 | goto retry; |
| 3046 | } |
| 3047 | } |
| 3048 | |
| 3049 | if (WARN_ON_ONCE(!hnd)) |
| 3050 | return NULL; |
| 3051 | |
| 3052 | iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node); |
| 3053 | |
| 3054 | return iter; |
| 3055 | } |
| 3056 | |
| 3057 | static void *t_hash_start(struct seq_file *m, loff_t *pos) |
| 3058 | { |
| 3059 | struct ftrace_iterator *iter = m->private; |
| 3060 | void *p = NULL; |
| 3061 | loff_t l; |
| 3062 | |
| 3063 | if (!(iter->flags & FTRACE_ITER_DO_HASH)) |
| 3064 | return NULL; |
| 3065 | |
| 3066 | if (iter->func_pos > *pos) |
| 3067 | return NULL; |
| 3068 | |
| 3069 | iter->hidx = 0; |
| 3070 | for (l = 0; l <= (*pos - iter->func_pos); ) { |
| 3071 | p = t_hash_next(m, &l); |
| 3072 | if (!p) |
| 3073 | break; |
| 3074 | } |
| 3075 | if (!p) |
| 3076 | return NULL; |
| 3077 | |
| 3078 | /* Only set this if we have an item */ |
| 3079 | iter->flags |= FTRACE_ITER_HASH; |
| 3080 | |
| 3081 | return iter; |
| 3082 | } |
| 3083 | |
| 3084 | static int |
| 3085 | t_hash_show(struct seq_file *m, struct ftrace_iterator *iter) |
| 3086 | { |
| 3087 | struct ftrace_func_probe *rec; |
| 3088 | |
| 3089 | rec = iter->probe; |
| 3090 | if (WARN_ON_ONCE(!rec)) |
| 3091 | return -EIO; |
| 3092 | |
| 3093 | if (rec->ops->print) |
| 3094 | return rec->ops->print(m, rec->ip, rec->ops, rec->data); |
| 3095 | |
| 3096 | seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func); |
| 3097 | |
| 3098 | if (rec->data) |
| 3099 | seq_printf(m, ":%p", rec->data); |
| 3100 | seq_putc(m, '\n'); |
| 3101 | |
| 3102 | return 0; |
| 3103 | } |
| 3104 | |
| 3105 | static void * |
| 3106 | t_next(struct seq_file *m, void *v, loff_t *pos) |
| 3107 | { |
| 3108 | struct ftrace_iterator *iter = m->private; |
| 3109 | struct ftrace_ops *ops = iter->ops; |
| 3110 | struct dyn_ftrace *rec = NULL; |
| 3111 | |
| 3112 | if (unlikely(ftrace_disabled)) |
| 3113 | return NULL; |
| 3114 | |
| 3115 | if (iter->flags & FTRACE_ITER_HASH) |
| 3116 | return t_hash_next(m, pos); |
| 3117 | |
| 3118 | (*pos)++; |
| 3119 | iter->pos = iter->func_pos = *pos; |
| 3120 | |
| 3121 | if (iter->flags & FTRACE_ITER_PRINTALL) |
| 3122 | return t_hash_start(m, pos); |
| 3123 | |
| 3124 | retry: |
| 3125 | if (iter->idx >= iter->pg->index) { |
| 3126 | if (iter->pg->next) { |
| 3127 | iter->pg = iter->pg->next; |
| 3128 | iter->idx = 0; |
| 3129 | goto retry; |
| 3130 | } |
| 3131 | } else { |
| 3132 | rec = &iter->pg->records[iter->idx++]; |
| 3133 | if (((iter->flags & FTRACE_ITER_FILTER) && |
| 3134 | !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) || |
| 3135 | |
| 3136 | ((iter->flags & FTRACE_ITER_NOTRACE) && |
| 3137 | !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) || |
| 3138 | |
| 3139 | ((iter->flags & FTRACE_ITER_ENABLED) && |
| 3140 | !(rec->flags & FTRACE_FL_ENABLED))) { |
| 3141 | |
| 3142 | rec = NULL; |
| 3143 | goto retry; |
| 3144 | } |
| 3145 | } |
| 3146 | |
| 3147 | if (!rec) |
| 3148 | return t_hash_start(m, pos); |
| 3149 | |
| 3150 | iter->func = rec; |
| 3151 | |
| 3152 | return iter; |
| 3153 | } |
| 3154 | |
| 3155 | static void reset_iter_read(struct ftrace_iterator *iter) |
| 3156 | { |
| 3157 | iter->pos = 0; |
| 3158 | iter->func_pos = 0; |
| 3159 | iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH); |
| 3160 | } |
| 3161 | |
| 3162 | static void *t_start(struct seq_file *m, loff_t *pos) |
| 3163 | { |
| 3164 | struct ftrace_iterator *iter = m->private; |
| 3165 | struct ftrace_ops *ops = iter->ops; |
| 3166 | void *p = NULL; |
| 3167 | loff_t l; |
| 3168 | |
| 3169 | mutex_lock(&ftrace_lock); |
| 3170 | |
| 3171 | if (unlikely(ftrace_disabled)) |
| 3172 | return NULL; |
| 3173 | |
| 3174 | /* |
| 3175 | * If an lseek was done, then reset and start from beginning. |
| 3176 | */ |
| 3177 | if (*pos < iter->pos) |
| 3178 | reset_iter_read(iter); |
| 3179 | |
| 3180 | /* |
| 3181 | * For set_ftrace_filter reading, if we have the filter |
| 3182 | * off, we can short cut and just print out that all |
| 3183 | * functions are enabled. |
| 3184 | */ |
| 3185 | if ((iter->flags & FTRACE_ITER_FILTER && |
| 3186 | ftrace_hash_empty(ops->func_hash->filter_hash)) || |
| 3187 | (iter->flags & FTRACE_ITER_NOTRACE && |
| 3188 | ftrace_hash_empty(ops->func_hash->notrace_hash))) { |
| 3189 | if (*pos > 0) |
| 3190 | return t_hash_start(m, pos); |
| 3191 | iter->flags |= FTRACE_ITER_PRINTALL; |
| 3192 | /* reset in case of seek/pread */ |
| 3193 | iter->flags &= ~FTRACE_ITER_HASH; |
| 3194 | return iter; |
| 3195 | } |
| 3196 | |
| 3197 | if (iter->flags & FTRACE_ITER_HASH) |
| 3198 | return t_hash_start(m, pos); |
| 3199 | |
| 3200 | /* |
| 3201 | * Unfortunately, we need to restart at ftrace_pages_start |
| 3202 | * every time we let go of the ftrace_mutex. This is because |
| 3203 | * those pointers can change without the lock. |
| 3204 | */ |
| 3205 | iter->pg = ftrace_pages_start; |
| 3206 | iter->idx = 0; |
| 3207 | for (l = 0; l <= *pos; ) { |
| 3208 | p = t_next(m, p, &l); |
| 3209 | if (!p) |
| 3210 | break; |
| 3211 | } |
| 3212 | |
| 3213 | if (!p) |
| 3214 | return t_hash_start(m, pos); |
| 3215 | |
| 3216 | return iter; |
| 3217 | } |
| 3218 | |
| 3219 | static void t_stop(struct seq_file *m, void *p) |
| 3220 | { |
| 3221 | mutex_unlock(&ftrace_lock); |
| 3222 | } |
| 3223 | |
| 3224 | void * __weak |
| 3225 | arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec) |
| 3226 | { |
| 3227 | return NULL; |
| 3228 | } |
| 3229 | |
| 3230 | static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops, |
| 3231 | struct dyn_ftrace *rec) |
| 3232 | { |
| 3233 | void *ptr; |
| 3234 | |
| 3235 | ptr = arch_ftrace_trampoline_func(ops, rec); |
| 3236 | if (ptr) |
| 3237 | seq_printf(m, " ->%pS", ptr); |
| 3238 | } |
| 3239 | |
| 3240 | static int t_show(struct seq_file *m, void *v) |
| 3241 | { |
| 3242 | struct ftrace_iterator *iter = m->private; |
| 3243 | struct dyn_ftrace *rec; |
| 3244 | |
| 3245 | if (iter->flags & FTRACE_ITER_HASH) |
| 3246 | return t_hash_show(m, iter); |
| 3247 | |
| 3248 | if (iter->flags & FTRACE_ITER_PRINTALL) { |
| 3249 | if (iter->flags & FTRACE_ITER_NOTRACE) |
| 3250 | seq_puts(m, "#### no functions disabled ####\n"); |
| 3251 | else |
| 3252 | seq_puts(m, "#### all functions enabled ####\n"); |
| 3253 | return 0; |
| 3254 | } |
| 3255 | |
| 3256 | rec = iter->func; |
| 3257 | |
| 3258 | if (!rec) |
| 3259 | return 0; |
| 3260 | |
| 3261 | seq_printf(m, "%ps", (void *)rec->ip); |
| 3262 | if (iter->flags & FTRACE_ITER_ENABLED) { |
| 3263 | struct ftrace_ops *ops = NULL; |
| 3264 | |
| 3265 | seq_printf(m, " (%ld)%s%s", |
| 3266 | ftrace_rec_count(rec), |
| 3267 | rec->flags & FTRACE_FL_REGS ? " R" : " ", |
| 3268 | rec->flags & FTRACE_FL_IPMODIFY ? " I" : " "); |
| 3269 | if (rec->flags & FTRACE_FL_TRAMP_EN) { |
| 3270 | ops = ftrace_find_tramp_ops_any(rec); |
| 3271 | if (ops) |
| 3272 | seq_printf(m, "\ttramp: %pS", |
| 3273 | (void *)ops->trampoline); |
| 3274 | else |
| 3275 | seq_puts(m, "\ttramp: ERROR!"); |
| 3276 | |
| 3277 | } |
| 3278 | add_trampoline_func(m, ops, rec); |
| 3279 | } |
| 3280 | |
| 3281 | seq_putc(m, '\n'); |
| 3282 | |
| 3283 | return 0; |
| 3284 | } |
| 3285 | |
| 3286 | static const struct seq_operations show_ftrace_seq_ops = { |
| 3287 | .start = t_start, |
| 3288 | .next = t_next, |
| 3289 | .stop = t_stop, |
| 3290 | .show = t_show, |
| 3291 | }; |
| 3292 | |
| 3293 | static int |
| 3294 | ftrace_avail_open(struct inode *inode, struct file *file) |
| 3295 | { |
| 3296 | struct ftrace_iterator *iter; |
| 3297 | |
| 3298 | if (unlikely(ftrace_disabled)) |
| 3299 | return -ENODEV; |
| 3300 | |
| 3301 | iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter)); |
| 3302 | if (iter) { |
| 3303 | iter->pg = ftrace_pages_start; |
| 3304 | iter->ops = &global_ops; |
| 3305 | } |
| 3306 | |
| 3307 | return iter ? 0 : -ENOMEM; |
| 3308 | } |
| 3309 | |
| 3310 | static int |
| 3311 | ftrace_enabled_open(struct inode *inode, struct file *file) |
| 3312 | { |
| 3313 | struct ftrace_iterator *iter; |
| 3314 | |
| 3315 | iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter)); |
| 3316 | if (iter) { |
| 3317 | iter->pg = ftrace_pages_start; |
| 3318 | iter->flags = FTRACE_ITER_ENABLED; |
| 3319 | iter->ops = &global_ops; |
| 3320 | } |
| 3321 | |
| 3322 | return iter ? 0 : -ENOMEM; |
| 3323 | } |
| 3324 | |
| 3325 | /** |
| 3326 | * ftrace_regex_open - initialize function tracer filter files |
| 3327 | * @ops: The ftrace_ops that hold the hash filters |
| 3328 | * @flag: The type of filter to process |
| 3329 | * @inode: The inode, usually passed in to your open routine |
| 3330 | * @file: The file, usually passed in to your open routine |
| 3331 | * |
| 3332 | * ftrace_regex_open() initializes the filter files for the |
| 3333 | * @ops. Depending on @flag it may process the filter hash or |
| 3334 | * the notrace hash of @ops. With this called from the open |
| 3335 | * routine, you can use ftrace_filter_write() for the write |
| 3336 | * routine if @flag has FTRACE_ITER_FILTER set, or |
| 3337 | * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set. |
| 3338 | * tracing_lseek() should be used as the lseek routine, and |
| 3339 | * release must call ftrace_regex_release(). |
| 3340 | */ |
| 3341 | int |
| 3342 | ftrace_regex_open(struct ftrace_ops *ops, int flag, |
| 3343 | struct inode *inode, struct file *file) |
| 3344 | { |
| 3345 | struct ftrace_iterator *iter; |
| 3346 | struct ftrace_hash *hash; |
| 3347 | int ret = 0; |
| 3348 | |
| 3349 | ftrace_ops_init(ops); |
| 3350 | |
| 3351 | if (unlikely(ftrace_disabled)) |
| 3352 | return -ENODEV; |
| 3353 | |
| 3354 | iter = kzalloc(sizeof(*iter), GFP_KERNEL); |
| 3355 | if (!iter) |
| 3356 | return -ENOMEM; |
| 3357 | |
| 3358 | if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) { |
| 3359 | kfree(iter); |
| 3360 | return -ENOMEM; |
| 3361 | } |
| 3362 | |
| 3363 | iter->ops = ops; |
| 3364 | iter->flags = flag; |
| 3365 | |
| 3366 | mutex_lock(&ops->func_hash->regex_lock); |
| 3367 | |
| 3368 | if (flag & FTRACE_ITER_NOTRACE) |
| 3369 | hash = ops->func_hash->notrace_hash; |
| 3370 | else |
| 3371 | hash = ops->func_hash->filter_hash; |
| 3372 | |
| 3373 | if (file->f_mode & FMODE_WRITE) { |
| 3374 | const int size_bits = FTRACE_HASH_DEFAULT_BITS; |
| 3375 | |
| 3376 | if (file->f_flags & O_TRUNC) |
| 3377 | iter->hash = alloc_ftrace_hash(size_bits); |
| 3378 | else |
| 3379 | iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash); |
| 3380 | |
| 3381 | if (!iter->hash) { |
| 3382 | trace_parser_put(&iter->parser); |
| 3383 | kfree(iter); |
| 3384 | ret = -ENOMEM; |
| 3385 | goto out_unlock; |
| 3386 | } |
| 3387 | } |
| 3388 | |
| 3389 | if (file->f_mode & FMODE_READ) { |
| 3390 | iter->pg = ftrace_pages_start; |
| 3391 | |
| 3392 | ret = seq_open(file, &show_ftrace_seq_ops); |
| 3393 | if (!ret) { |
| 3394 | struct seq_file *m = file->private_data; |
| 3395 | m->private = iter; |
| 3396 | } else { |
| 3397 | /* Failed */ |
| 3398 | free_ftrace_hash(iter->hash); |
| 3399 | trace_parser_put(&iter->parser); |
| 3400 | kfree(iter); |
| 3401 | } |
| 3402 | } else |
| 3403 | file->private_data = iter; |
| 3404 | |
| 3405 | out_unlock: |
| 3406 | mutex_unlock(&ops->func_hash->regex_lock); |
| 3407 | |
| 3408 | return ret; |
| 3409 | } |
| 3410 | |
| 3411 | static int |
| 3412 | ftrace_filter_open(struct inode *inode, struct file *file) |
| 3413 | { |
| 3414 | struct ftrace_ops *ops = inode->i_private; |
| 3415 | |
| 3416 | return ftrace_regex_open(ops, |
| 3417 | FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH, |
| 3418 | inode, file); |
| 3419 | } |
| 3420 | |
| 3421 | static int |
| 3422 | ftrace_notrace_open(struct inode *inode, struct file *file) |
| 3423 | { |
| 3424 | struct ftrace_ops *ops = inode->i_private; |
| 3425 | |
| 3426 | return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE, |
| 3427 | inode, file); |
| 3428 | } |
| 3429 | |
| 3430 | /* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */ |
| 3431 | struct ftrace_glob { |
| 3432 | char *search; |
| 3433 | unsigned len; |
| 3434 | int type; |
| 3435 | }; |
| 3436 | |
| 3437 | static int ftrace_match(char *str, struct ftrace_glob *g) |
| 3438 | { |
| 3439 | int matched = 0; |
| 3440 | int slen; |
| 3441 | |
| 3442 | switch (g->type) { |
| 3443 | case MATCH_FULL: |
| 3444 | if (strcmp(str, g->search) == 0) |
| 3445 | matched = 1; |
| 3446 | break; |
| 3447 | case MATCH_FRONT_ONLY: |
| 3448 | if (strncmp(str, g->search, g->len) == 0) |
| 3449 | matched = 1; |
| 3450 | break; |
| 3451 | case MATCH_MIDDLE_ONLY: |
| 3452 | if (strstr(str, g->search)) |
| 3453 | matched = 1; |
| 3454 | break; |
| 3455 | case MATCH_END_ONLY: |
| 3456 | slen = strlen(str); |
| 3457 | if (slen >= g->len && |
| 3458 | memcmp(str + slen - g->len, g->search, g->len) == 0) |
| 3459 | matched = 1; |
| 3460 | break; |
| 3461 | } |
| 3462 | |
| 3463 | return matched; |
| 3464 | } |
| 3465 | |
| 3466 | static int |
| 3467 | enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter) |
| 3468 | { |
| 3469 | struct ftrace_func_entry *entry; |
| 3470 | int ret = 0; |
| 3471 | |
| 3472 | entry = ftrace_lookup_ip(hash, rec->ip); |
| 3473 | if (clear_filter) { |
| 3474 | /* Do nothing if it doesn't exist */ |
| 3475 | if (!entry) |
| 3476 | return 0; |
| 3477 | |
| 3478 | free_hash_entry(hash, entry); |
| 3479 | } else { |
| 3480 | /* Do nothing if it exists */ |
| 3481 | if (entry) |
| 3482 | return 0; |
| 3483 | |
| 3484 | ret = add_hash_entry(hash, rec->ip); |
| 3485 | } |
| 3486 | return ret; |
| 3487 | } |
| 3488 | |
| 3489 | static int |
| 3490 | ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g, |
| 3491 | struct ftrace_glob *mod_g, int exclude_mod) |
| 3492 | { |
| 3493 | char str[KSYM_SYMBOL_LEN]; |
| 3494 | char *modname; |
| 3495 | |
| 3496 | kallsyms_lookup(rec->ip, NULL, NULL, &modname, str); |
| 3497 | |
| 3498 | if (mod_g) { |
| 3499 | int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0; |
| 3500 | |
| 3501 | /* blank module name to match all modules */ |
| 3502 | if (!mod_g->len) { |
| 3503 | /* blank module globbing: modname xor exclude_mod */ |
| 3504 | if ((!exclude_mod) != (!modname)) |
| 3505 | goto func_match; |
| 3506 | return 0; |
| 3507 | } |
| 3508 | |
| 3509 | /* not matching the module */ |
| 3510 | if (!modname || !mod_matches) { |
| 3511 | if (exclude_mod) |
| 3512 | goto func_match; |
| 3513 | else |
| 3514 | return 0; |
| 3515 | } |
| 3516 | |
| 3517 | if (mod_matches && exclude_mod) |
| 3518 | return 0; |
| 3519 | |
| 3520 | func_match: |
| 3521 | /* blank search means to match all funcs in the mod */ |
| 3522 | if (!func_g->len) |
| 3523 | return 1; |
| 3524 | } |
| 3525 | |
| 3526 | return ftrace_match(str, func_g); |
| 3527 | } |
| 3528 | |
| 3529 | static int |
| 3530 | match_records(struct ftrace_hash *hash, char *func, int len, char *mod) |
| 3531 | { |
| 3532 | struct ftrace_page *pg; |
| 3533 | struct dyn_ftrace *rec; |
| 3534 | struct ftrace_glob func_g = { .type = MATCH_FULL }; |
| 3535 | struct ftrace_glob mod_g = { .type = MATCH_FULL }; |
| 3536 | struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL; |
| 3537 | int exclude_mod = 0; |
| 3538 | int found = 0; |
| 3539 | int ret; |
| 3540 | int clear_filter = 0; |
| 3541 | |
| 3542 | if (func) { |
| 3543 | func_g.type = filter_parse_regex(func, len, &func_g.search, |
| 3544 | &clear_filter); |
| 3545 | func_g.len = strlen(func_g.search); |
| 3546 | } |
| 3547 | |
| 3548 | if (mod) { |
| 3549 | mod_g.type = filter_parse_regex(mod, strlen(mod), |
| 3550 | &mod_g.search, &exclude_mod); |
| 3551 | mod_g.len = strlen(mod_g.search); |
| 3552 | } |
| 3553 | |
| 3554 | mutex_lock(&ftrace_lock); |
| 3555 | |
| 3556 | if (unlikely(ftrace_disabled)) |
| 3557 | goto out_unlock; |
| 3558 | |
| 3559 | do_for_each_ftrace_rec(pg, rec) { |
| 3560 | if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) { |
| 3561 | ret = enter_record(hash, rec, clear_filter); |
| 3562 | if (ret < 0) { |
| 3563 | found = ret; |
| 3564 | goto out_unlock; |
| 3565 | } |
| 3566 | found = 1; |
| 3567 | } |
| 3568 | } while_for_each_ftrace_rec(); |
| 3569 | out_unlock: |
| 3570 | mutex_unlock(&ftrace_lock); |
| 3571 | |
| 3572 | return found; |
| 3573 | } |
| 3574 | |
| 3575 | static int |
| 3576 | ftrace_match_records(struct ftrace_hash *hash, char *buff, int len) |
| 3577 | { |
| 3578 | return match_records(hash, buff, len, NULL); |
| 3579 | } |
| 3580 | |
| 3581 | |
| 3582 | /* |
| 3583 | * We register the module command as a template to show others how |
| 3584 | * to register the a command as well. |
| 3585 | */ |
| 3586 | |
| 3587 | static int |
| 3588 | ftrace_mod_callback(struct ftrace_hash *hash, |
| 3589 | char *func, char *cmd, char *module, int enable) |
| 3590 | { |
| 3591 | int ret; |
| 3592 | |
| 3593 | /* |
| 3594 | * cmd == 'mod' because we only registered this func |
| 3595 | * for the 'mod' ftrace_func_command. |
| 3596 | * But if you register one func with multiple commands, |
| 3597 | * you can tell which command was used by the cmd |
| 3598 | * parameter. |
| 3599 | */ |
| 3600 | ret = match_records(hash, func, strlen(func), module); |
| 3601 | if (!ret) |
| 3602 | return -EINVAL; |
| 3603 | if (ret < 0) |
| 3604 | return ret; |
| 3605 | return 0; |
| 3606 | } |
| 3607 | |
| 3608 | static struct ftrace_func_command ftrace_mod_cmd = { |
| 3609 | .name = "mod", |
| 3610 | .func = ftrace_mod_callback, |
| 3611 | }; |
| 3612 | |
| 3613 | static int __init ftrace_mod_cmd_init(void) |
| 3614 | { |
| 3615 | return register_ftrace_command(&ftrace_mod_cmd); |
| 3616 | } |
| 3617 | core_initcall(ftrace_mod_cmd_init); |
| 3618 | |
| 3619 | static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip, |
| 3620 | struct ftrace_ops *op, struct pt_regs *pt_regs) |
| 3621 | { |
| 3622 | struct ftrace_func_probe *entry; |
| 3623 | struct hlist_head *hhd; |
| 3624 | unsigned long key; |
| 3625 | |
| 3626 | key = hash_long(ip, FTRACE_HASH_BITS); |
| 3627 | |
| 3628 | hhd = &ftrace_func_hash[key]; |
| 3629 | |
| 3630 | if (hlist_empty(hhd)) |
| 3631 | return; |
| 3632 | |
| 3633 | /* |
| 3634 | * Disable preemption for these calls to prevent a RCU grace |
| 3635 | * period. This syncs the hash iteration and freeing of items |
| 3636 | * on the hash. rcu_read_lock is too dangerous here. |
| 3637 | */ |
| 3638 | preempt_disable_notrace(); |
| 3639 | hlist_for_each_entry_rcu_notrace(entry, hhd, node) { |
| 3640 | if (entry->ip == ip) |
| 3641 | entry->ops->func(ip, parent_ip, &entry->data); |
| 3642 | } |
| 3643 | preempt_enable_notrace(); |
| 3644 | } |
| 3645 | |
| 3646 | static struct ftrace_ops trace_probe_ops __read_mostly = |
| 3647 | { |
| 3648 | .func = function_trace_probe_call, |
| 3649 | .flags = FTRACE_OPS_FL_INITIALIZED, |
| 3650 | INIT_OPS_HASH(trace_probe_ops) |
| 3651 | }; |
| 3652 | |
| 3653 | static int ftrace_probe_registered; |
| 3654 | |
| 3655 | static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash) |
| 3656 | { |
| 3657 | int ret; |
| 3658 | int i; |
| 3659 | |
| 3660 | if (ftrace_probe_registered) { |
| 3661 | /* still need to update the function call sites */ |
| 3662 | if (ftrace_enabled) |
| 3663 | ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS, |
| 3664 | old_hash); |
| 3665 | return; |
| 3666 | } |
| 3667 | |
| 3668 | for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) { |
| 3669 | struct hlist_head *hhd = &ftrace_func_hash[i]; |
| 3670 | if (hhd->first) |
| 3671 | break; |
| 3672 | } |
| 3673 | /* Nothing registered? */ |
| 3674 | if (i == FTRACE_FUNC_HASHSIZE) |
| 3675 | return; |
| 3676 | |
| 3677 | ret = ftrace_startup(&trace_probe_ops, 0); |
| 3678 | |
| 3679 | ftrace_probe_registered = 1; |
| 3680 | } |
| 3681 | |
| 3682 | static bool __disable_ftrace_function_probe(void) |
| 3683 | { |
| 3684 | int i; |
| 3685 | |
| 3686 | if (!ftrace_probe_registered) |
| 3687 | return false; |
| 3688 | |
| 3689 | for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) { |
| 3690 | struct hlist_head *hhd = &ftrace_func_hash[i]; |
| 3691 | if (hhd->first) |
| 3692 | return false; |
| 3693 | } |
| 3694 | |
| 3695 | /* no more funcs left */ |
| 3696 | ftrace_shutdown(&trace_probe_ops, 0); |
| 3697 | |
| 3698 | ftrace_probe_registered = 0; |
| 3699 | return true; |
| 3700 | } |
| 3701 | |
| 3702 | |
| 3703 | static void ftrace_free_entry(struct ftrace_func_probe *entry) |
| 3704 | { |
| 3705 | if (entry->ops->free) |
| 3706 | entry->ops->free(entry->ops, entry->ip, &entry->data); |
| 3707 | kfree(entry); |
| 3708 | } |
| 3709 | |
| 3710 | int |
| 3711 | register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops, |
| 3712 | void *data) |
| 3713 | { |
| 3714 | struct ftrace_ops_hash old_hash_ops; |
| 3715 | struct ftrace_func_probe *entry; |
| 3716 | struct ftrace_glob func_g; |
| 3717 | struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash; |
| 3718 | struct ftrace_hash *old_hash = *orig_hash; |
| 3719 | struct ftrace_hash *hash; |
| 3720 | struct ftrace_page *pg; |
| 3721 | struct dyn_ftrace *rec; |
| 3722 | int not; |
| 3723 | unsigned long key; |
| 3724 | int count = 0; |
| 3725 | int ret; |
| 3726 | |
| 3727 | func_g.type = filter_parse_regex(glob, strlen(glob), |
| 3728 | &func_g.search, ¬); |
| 3729 | func_g.len = strlen(func_g.search); |
| 3730 | |
| 3731 | /* we do not support '!' for function probes */ |
| 3732 | if (WARN_ON(not)) |
| 3733 | return -EINVAL; |
| 3734 | |
| 3735 | mutex_lock(&trace_probe_ops.func_hash->regex_lock); |
| 3736 | |
| 3737 | old_hash_ops.filter_hash = old_hash; |
| 3738 | /* Probes only have filters */ |
| 3739 | old_hash_ops.notrace_hash = NULL; |
| 3740 | |
| 3741 | hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash); |
| 3742 | if (!hash) { |
| 3743 | count = -ENOMEM; |
| 3744 | goto out; |
| 3745 | } |
| 3746 | |
| 3747 | if (unlikely(ftrace_disabled)) { |
| 3748 | count = -ENODEV; |
| 3749 | goto out; |
| 3750 | } |
| 3751 | |
| 3752 | mutex_lock(&ftrace_lock); |
| 3753 | |
| 3754 | do_for_each_ftrace_rec(pg, rec) { |
| 3755 | |
| 3756 | if (!ftrace_match_record(rec, &func_g, NULL, 0)) |
| 3757 | continue; |
| 3758 | |
| 3759 | entry = kmalloc(sizeof(*entry), GFP_KERNEL); |
| 3760 | if (!entry) { |
| 3761 | /* If we did not process any, then return error */ |
| 3762 | if (!count) |
| 3763 | count = -ENOMEM; |
| 3764 | goto out_unlock; |
| 3765 | } |
| 3766 | |
| 3767 | count++; |
| 3768 | |
| 3769 | entry->data = data; |
| 3770 | |
| 3771 | /* |
| 3772 | * The caller might want to do something special |
| 3773 | * for each function we find. We call the callback |
| 3774 | * to give the caller an opportunity to do so. |
| 3775 | */ |
| 3776 | if (ops->init) { |
| 3777 | if (ops->init(ops, rec->ip, &entry->data) < 0) { |
| 3778 | /* caller does not like this func */ |
| 3779 | kfree(entry); |
| 3780 | continue; |
| 3781 | } |
| 3782 | } |
| 3783 | |
| 3784 | ret = enter_record(hash, rec, 0); |
| 3785 | if (ret < 0) { |
| 3786 | kfree(entry); |
| 3787 | count = ret; |
| 3788 | goto out_unlock; |
| 3789 | } |
| 3790 | |
| 3791 | entry->ops = ops; |
| 3792 | entry->ip = rec->ip; |
| 3793 | |
| 3794 | key = hash_long(entry->ip, FTRACE_HASH_BITS); |
| 3795 | hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]); |
| 3796 | |
| 3797 | } while_for_each_ftrace_rec(); |
| 3798 | |
| 3799 | ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash); |
| 3800 | |
| 3801 | __enable_ftrace_function_probe(&old_hash_ops); |
| 3802 | |
| 3803 | if (!ret) |
| 3804 | free_ftrace_hash_rcu(old_hash); |
| 3805 | else |
| 3806 | count = ret; |
| 3807 | |
| 3808 | out_unlock: |
| 3809 | mutex_unlock(&ftrace_lock); |
| 3810 | out: |
| 3811 | mutex_unlock(&trace_probe_ops.func_hash->regex_lock); |
| 3812 | free_ftrace_hash(hash); |
| 3813 | |
| 3814 | return count; |
| 3815 | } |
| 3816 | |
| 3817 | enum { |
| 3818 | PROBE_TEST_FUNC = 1, |
| 3819 | PROBE_TEST_DATA = 2 |
| 3820 | }; |
| 3821 | |
| 3822 | static void |
| 3823 | __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops, |
| 3824 | void *data, int flags) |
| 3825 | { |
| 3826 | struct ftrace_ops_hash old_hash_ops; |
| 3827 | struct ftrace_func_entry *rec_entry; |
| 3828 | struct ftrace_func_probe *entry; |
| 3829 | struct ftrace_func_probe *p; |
| 3830 | struct ftrace_glob func_g; |
| 3831 | struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash; |
| 3832 | struct ftrace_hash *old_hash = *orig_hash; |
| 3833 | struct list_head free_list; |
| 3834 | struct ftrace_hash *hash; |
| 3835 | struct hlist_node *tmp; |
| 3836 | char str[KSYM_SYMBOL_LEN]; |
| 3837 | int i, ret; |
| 3838 | bool disabled; |
| 3839 | |
| 3840 | if (glob && (strcmp(glob, "*") == 0 || !strlen(glob))) |
| 3841 | func_g.search = NULL; |
| 3842 | else if (glob) { |
| 3843 | int not; |
| 3844 | |
| 3845 | func_g.type = filter_parse_regex(glob, strlen(glob), |
| 3846 | &func_g.search, ¬); |
| 3847 | func_g.len = strlen(func_g.search); |
| 3848 | func_g.search = glob; |
| 3849 | |
| 3850 | /* we do not support '!' for function probes */ |
| 3851 | if (WARN_ON(not)) |
| 3852 | return; |
| 3853 | } |
| 3854 | |
| 3855 | mutex_lock(&trace_probe_ops.func_hash->regex_lock); |
| 3856 | |
| 3857 | old_hash_ops.filter_hash = old_hash; |
| 3858 | /* Probes only have filters */ |
| 3859 | old_hash_ops.notrace_hash = NULL; |
| 3860 | |
| 3861 | hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash); |
| 3862 | if (!hash) |
| 3863 | /* Hmm, should report this somehow */ |
| 3864 | goto out_unlock; |
| 3865 | |
| 3866 | INIT_LIST_HEAD(&free_list); |
| 3867 | |
| 3868 | for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) { |
| 3869 | struct hlist_head *hhd = &ftrace_func_hash[i]; |
| 3870 | |
| 3871 | hlist_for_each_entry_safe(entry, tmp, hhd, node) { |
| 3872 | |
| 3873 | /* break up if statements for readability */ |
| 3874 | if ((flags & PROBE_TEST_FUNC) && entry->ops != ops) |
| 3875 | continue; |
| 3876 | |
| 3877 | if ((flags & PROBE_TEST_DATA) && entry->data != data) |
| 3878 | continue; |
| 3879 | |
| 3880 | /* do this last, since it is the most expensive */ |
| 3881 | if (func_g.search) { |
| 3882 | kallsyms_lookup(entry->ip, NULL, NULL, |
| 3883 | NULL, str); |
| 3884 | if (!ftrace_match(str, &func_g)) |
| 3885 | continue; |
| 3886 | } |
| 3887 | |
| 3888 | rec_entry = ftrace_lookup_ip(hash, entry->ip); |
| 3889 | /* It is possible more than one entry had this ip */ |
| 3890 | if (rec_entry) |
| 3891 | free_hash_entry(hash, rec_entry); |
| 3892 | |
| 3893 | hlist_del_rcu(&entry->node); |
| 3894 | list_add(&entry->free_list, &free_list); |
| 3895 | } |
| 3896 | } |
| 3897 | mutex_lock(&ftrace_lock); |
| 3898 | disabled = __disable_ftrace_function_probe(); |
| 3899 | /* |
| 3900 | * Remove after the disable is called. Otherwise, if the last |
| 3901 | * probe is removed, a null hash means *all enabled*. |
| 3902 | */ |
| 3903 | ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash); |
| 3904 | |
| 3905 | /* still need to update the function call sites */ |
| 3906 | if (ftrace_enabled && !disabled) |
| 3907 | ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS, |
| 3908 | &old_hash_ops); |
| 3909 | synchronize_sched(); |
| 3910 | if (!ret) |
| 3911 | free_ftrace_hash_rcu(old_hash); |
| 3912 | |
| 3913 | list_for_each_entry_safe(entry, p, &free_list, free_list) { |
| 3914 | list_del(&entry->free_list); |
| 3915 | ftrace_free_entry(entry); |
| 3916 | } |
| 3917 | mutex_unlock(&ftrace_lock); |
| 3918 | |
| 3919 | out_unlock: |
| 3920 | mutex_unlock(&trace_probe_ops.func_hash->regex_lock); |
| 3921 | free_ftrace_hash(hash); |
| 3922 | } |
| 3923 | |
| 3924 | void |
| 3925 | unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops, |
| 3926 | void *data) |
| 3927 | { |
| 3928 | __unregister_ftrace_function_probe(glob, ops, data, |
| 3929 | PROBE_TEST_FUNC | PROBE_TEST_DATA); |
| 3930 | } |
| 3931 | |
| 3932 | void |
| 3933 | unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops) |
| 3934 | { |
| 3935 | __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC); |
| 3936 | } |
| 3937 | |
| 3938 | void unregister_ftrace_function_probe_all(char *glob) |
| 3939 | { |
| 3940 | __unregister_ftrace_function_probe(glob, NULL, NULL, 0); |
| 3941 | } |
| 3942 | |
| 3943 | static LIST_HEAD(ftrace_commands); |
| 3944 | static DEFINE_MUTEX(ftrace_cmd_mutex); |
| 3945 | |
| 3946 | /* |
| 3947 | * Currently we only register ftrace commands from __init, so mark this |
| 3948 | * __init too. |
| 3949 | */ |
| 3950 | __init int register_ftrace_command(struct ftrace_func_command *cmd) |
| 3951 | { |
| 3952 | struct ftrace_func_command *p; |
| 3953 | int ret = 0; |
| 3954 | |
| 3955 | mutex_lock(&ftrace_cmd_mutex); |
| 3956 | list_for_each_entry(p, &ftrace_commands, list) { |
| 3957 | if (strcmp(cmd->name, p->name) == 0) { |
| 3958 | ret = -EBUSY; |
| 3959 | goto out_unlock; |
| 3960 | } |
| 3961 | } |
| 3962 | list_add(&cmd->list, &ftrace_commands); |
| 3963 | out_unlock: |
| 3964 | mutex_unlock(&ftrace_cmd_mutex); |
| 3965 | |
| 3966 | return ret; |
| 3967 | } |
| 3968 | |
| 3969 | /* |
| 3970 | * Currently we only unregister ftrace commands from __init, so mark |
| 3971 | * this __init too. |
| 3972 | */ |
| 3973 | __init int unregister_ftrace_command(struct ftrace_func_command *cmd) |
| 3974 | { |
| 3975 | struct ftrace_func_command *p, *n; |
| 3976 | int ret = -ENODEV; |
| 3977 | |
| 3978 | mutex_lock(&ftrace_cmd_mutex); |
| 3979 | list_for_each_entry_safe(p, n, &ftrace_commands, list) { |
| 3980 | if (strcmp(cmd->name, p->name) == 0) { |
| 3981 | ret = 0; |
| 3982 | list_del_init(&p->list); |
| 3983 | goto out_unlock; |
| 3984 | } |
| 3985 | } |
| 3986 | out_unlock: |
| 3987 | mutex_unlock(&ftrace_cmd_mutex); |
| 3988 | |
| 3989 | return ret; |
| 3990 | } |
| 3991 | |
| 3992 | static int ftrace_process_regex(struct ftrace_hash *hash, |
| 3993 | char *buff, int len, int enable) |
| 3994 | { |
| 3995 | char *func, *command, *next = buff; |
| 3996 | struct ftrace_func_command *p; |
| 3997 | int ret = -EINVAL; |
| 3998 | |
| 3999 | func = strsep(&next, ":"); |
| 4000 | |
| 4001 | if (!next) { |
| 4002 | ret = ftrace_match_records(hash, func, len); |
| 4003 | if (!ret) |
| 4004 | ret = -EINVAL; |
| 4005 | if (ret < 0) |
| 4006 | return ret; |
| 4007 | return 0; |
| 4008 | } |
| 4009 | |
| 4010 | /* command found */ |
| 4011 | |
| 4012 | command = strsep(&next, ":"); |
| 4013 | |
| 4014 | mutex_lock(&ftrace_cmd_mutex); |
| 4015 | list_for_each_entry(p, &ftrace_commands, list) { |
| 4016 | if (strcmp(p->name, command) == 0) { |
| 4017 | ret = p->func(hash, func, command, next, enable); |
| 4018 | goto out_unlock; |
| 4019 | } |
| 4020 | } |
| 4021 | out_unlock: |
| 4022 | mutex_unlock(&ftrace_cmd_mutex); |
| 4023 | |
| 4024 | return ret; |
| 4025 | } |
| 4026 | |
| 4027 | static ssize_t |
| 4028 | ftrace_regex_write(struct file *file, const char __user *ubuf, |
| 4029 | size_t cnt, loff_t *ppos, int enable) |
| 4030 | { |
| 4031 | struct ftrace_iterator *iter; |
| 4032 | struct trace_parser *parser; |
| 4033 | ssize_t ret, read; |
| 4034 | |
| 4035 | if (!cnt) |
| 4036 | return 0; |
| 4037 | |
| 4038 | if (file->f_mode & FMODE_READ) { |
| 4039 | struct seq_file *m = file->private_data; |
| 4040 | iter = m->private; |
| 4041 | } else |
| 4042 | iter = file->private_data; |
| 4043 | |
| 4044 | if (unlikely(ftrace_disabled)) |
| 4045 | return -ENODEV; |
| 4046 | |
| 4047 | /* iter->hash is a local copy, so we don't need regex_lock */ |
| 4048 | |
| 4049 | parser = &iter->parser; |
| 4050 | read = trace_get_user(parser, ubuf, cnt, ppos); |
| 4051 | |
| 4052 | if (read >= 0 && trace_parser_loaded(parser) && |
| 4053 | !trace_parser_cont(parser)) { |
| 4054 | ret = ftrace_process_regex(iter->hash, parser->buffer, |
| 4055 | parser->idx, enable); |
| 4056 | trace_parser_clear(parser); |
| 4057 | if (ret < 0) |
| 4058 | goto out; |
| 4059 | } |
| 4060 | |
| 4061 | ret = read; |
| 4062 | out: |
| 4063 | return ret; |
| 4064 | } |
| 4065 | |
| 4066 | ssize_t |
| 4067 | ftrace_filter_write(struct file *file, const char __user *ubuf, |
| 4068 | size_t cnt, loff_t *ppos) |
| 4069 | { |
| 4070 | return ftrace_regex_write(file, ubuf, cnt, ppos, 1); |
| 4071 | } |
| 4072 | |
| 4073 | ssize_t |
| 4074 | ftrace_notrace_write(struct file *file, const char __user *ubuf, |
| 4075 | size_t cnt, loff_t *ppos) |
| 4076 | { |
| 4077 | return ftrace_regex_write(file, ubuf, cnt, ppos, 0); |
| 4078 | } |
| 4079 | |
| 4080 | static int |
| 4081 | ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove) |
| 4082 | { |
| 4083 | struct ftrace_func_entry *entry; |
| 4084 | |
| 4085 | if (!ftrace_location(ip)) |
| 4086 | return -EINVAL; |
| 4087 | |
| 4088 | if (remove) { |
| 4089 | entry = ftrace_lookup_ip(hash, ip); |
| 4090 | if (!entry) |
| 4091 | return -ENOENT; |
| 4092 | free_hash_entry(hash, entry); |
| 4093 | return 0; |
| 4094 | } |
| 4095 | |
| 4096 | return add_hash_entry(hash, ip); |
| 4097 | } |
| 4098 | |
| 4099 | static void ftrace_ops_update_code(struct ftrace_ops *ops, |
| 4100 | struct ftrace_ops_hash *old_hash) |
| 4101 | { |
| 4102 | struct ftrace_ops *op; |
| 4103 | |
| 4104 | if (!ftrace_enabled) |
| 4105 | return; |
| 4106 | |
| 4107 | if (ops->flags & FTRACE_OPS_FL_ENABLED) { |
| 4108 | ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash); |
| 4109 | return; |
| 4110 | } |
| 4111 | |
| 4112 | /* |
| 4113 | * If this is the shared global_ops filter, then we need to |
| 4114 | * check if there is another ops that shares it, is enabled. |
| 4115 | * If so, we still need to run the modify code. |
| 4116 | */ |
| 4117 | if (ops->func_hash != &global_ops.local_hash) |
| 4118 | return; |
| 4119 | |
| 4120 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 4121 | if (op->func_hash == &global_ops.local_hash && |
| 4122 | op->flags & FTRACE_OPS_FL_ENABLED) { |
| 4123 | ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash); |
| 4124 | /* Only need to do this once */ |
| 4125 | return; |
| 4126 | } |
| 4127 | } while_for_each_ftrace_op(op); |
| 4128 | } |
| 4129 | |
| 4130 | static int |
| 4131 | ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len, |
| 4132 | unsigned long ip, int remove, int reset, int enable) |
| 4133 | { |
| 4134 | struct ftrace_hash **orig_hash; |
| 4135 | struct ftrace_ops_hash old_hash_ops; |
| 4136 | struct ftrace_hash *old_hash; |
| 4137 | struct ftrace_hash *hash; |
| 4138 | int ret; |
| 4139 | |
| 4140 | if (unlikely(ftrace_disabled)) |
| 4141 | return -ENODEV; |
| 4142 | |
| 4143 | mutex_lock(&ops->func_hash->regex_lock); |
| 4144 | |
| 4145 | if (enable) |
| 4146 | orig_hash = &ops->func_hash->filter_hash; |
| 4147 | else |
| 4148 | orig_hash = &ops->func_hash->notrace_hash; |
| 4149 | |
| 4150 | if (reset) |
| 4151 | hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS); |
| 4152 | else |
| 4153 | hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash); |
| 4154 | |
| 4155 | if (!hash) { |
| 4156 | ret = -ENOMEM; |
| 4157 | goto out_regex_unlock; |
| 4158 | } |
| 4159 | |
| 4160 | if (buf && !ftrace_match_records(hash, buf, len)) { |
| 4161 | ret = -EINVAL; |
| 4162 | goto out_regex_unlock; |
| 4163 | } |
| 4164 | if (ip) { |
| 4165 | ret = ftrace_match_addr(hash, ip, remove); |
| 4166 | if (ret < 0) |
| 4167 | goto out_regex_unlock; |
| 4168 | } |
| 4169 | |
| 4170 | mutex_lock(&ftrace_lock); |
| 4171 | old_hash = *orig_hash; |
| 4172 | old_hash_ops.filter_hash = ops->func_hash->filter_hash; |
| 4173 | old_hash_ops.notrace_hash = ops->func_hash->notrace_hash; |
| 4174 | ret = ftrace_hash_move(ops, enable, orig_hash, hash); |
| 4175 | if (!ret) { |
| 4176 | ftrace_ops_update_code(ops, &old_hash_ops); |
| 4177 | free_ftrace_hash_rcu(old_hash); |
| 4178 | } |
| 4179 | mutex_unlock(&ftrace_lock); |
| 4180 | |
| 4181 | out_regex_unlock: |
| 4182 | mutex_unlock(&ops->func_hash->regex_lock); |
| 4183 | |
| 4184 | free_ftrace_hash(hash); |
| 4185 | return ret; |
| 4186 | } |
| 4187 | |
| 4188 | static int |
| 4189 | ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove, |
| 4190 | int reset, int enable) |
| 4191 | { |
| 4192 | return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable); |
| 4193 | } |
| 4194 | |
| 4195 | /** |
| 4196 | * ftrace_set_filter_ip - set a function to filter on in ftrace by address |
| 4197 | * @ops - the ops to set the filter with |
| 4198 | * @ip - the address to add to or remove from the filter. |
| 4199 | * @remove - non zero to remove the ip from the filter |
| 4200 | * @reset - non zero to reset all filters before applying this filter. |
| 4201 | * |
| 4202 | * Filters denote which functions should be enabled when tracing is enabled |
| 4203 | * If @ip is NULL, it failes to update filter. |
| 4204 | */ |
| 4205 | int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip, |
| 4206 | int remove, int reset) |
| 4207 | { |
| 4208 | ftrace_ops_init(ops); |
| 4209 | return ftrace_set_addr(ops, ip, remove, reset, 1); |
| 4210 | } |
| 4211 | EXPORT_SYMBOL_GPL(ftrace_set_filter_ip); |
| 4212 | |
| 4213 | static int |
| 4214 | ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len, |
| 4215 | int reset, int enable) |
| 4216 | { |
| 4217 | return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable); |
| 4218 | } |
| 4219 | |
| 4220 | /** |
| 4221 | * ftrace_set_filter - set a function to filter on in ftrace |
| 4222 | * @ops - the ops to set the filter with |
| 4223 | * @buf - the string that holds the function filter text. |
| 4224 | * @len - the length of the string. |
| 4225 | * @reset - non zero to reset all filters before applying this filter. |
| 4226 | * |
| 4227 | * Filters denote which functions should be enabled when tracing is enabled. |
| 4228 | * If @buf is NULL and reset is set, all functions will be enabled for tracing. |
| 4229 | */ |
| 4230 | int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf, |
| 4231 | int len, int reset) |
| 4232 | { |
| 4233 | ftrace_ops_init(ops); |
| 4234 | return ftrace_set_regex(ops, buf, len, reset, 1); |
| 4235 | } |
| 4236 | EXPORT_SYMBOL_GPL(ftrace_set_filter); |
| 4237 | |
| 4238 | /** |
| 4239 | * ftrace_set_notrace - set a function to not trace in ftrace |
| 4240 | * @ops - the ops to set the notrace filter with |
| 4241 | * @buf - the string that holds the function notrace text. |
| 4242 | * @len - the length of the string. |
| 4243 | * @reset - non zero to reset all filters before applying this filter. |
| 4244 | * |
| 4245 | * Notrace Filters denote which functions should not be enabled when tracing |
| 4246 | * is enabled. If @buf is NULL and reset is set, all functions will be enabled |
| 4247 | * for tracing. |
| 4248 | */ |
| 4249 | int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf, |
| 4250 | int len, int reset) |
| 4251 | { |
| 4252 | ftrace_ops_init(ops); |
| 4253 | return ftrace_set_regex(ops, buf, len, reset, 0); |
| 4254 | } |
| 4255 | EXPORT_SYMBOL_GPL(ftrace_set_notrace); |
| 4256 | /** |
| 4257 | * ftrace_set_global_filter - set a function to filter on with global tracers |
| 4258 | * @buf - the string that holds the function filter text. |
| 4259 | * @len - the length of the string. |
| 4260 | * @reset - non zero to reset all filters before applying this filter. |
| 4261 | * |
| 4262 | * Filters denote which functions should be enabled when tracing is enabled. |
| 4263 | * If @buf is NULL and reset is set, all functions will be enabled for tracing. |
| 4264 | */ |
| 4265 | void ftrace_set_global_filter(unsigned char *buf, int len, int reset) |
| 4266 | { |
| 4267 | ftrace_set_regex(&global_ops, buf, len, reset, 1); |
| 4268 | } |
| 4269 | EXPORT_SYMBOL_GPL(ftrace_set_global_filter); |
| 4270 | |
| 4271 | /** |
| 4272 | * ftrace_set_global_notrace - set a function to not trace with global tracers |
| 4273 | * @buf - the string that holds the function notrace text. |
| 4274 | * @len - the length of the string. |
| 4275 | * @reset - non zero to reset all filters before applying this filter. |
| 4276 | * |
| 4277 | * Notrace Filters denote which functions should not be enabled when tracing |
| 4278 | * is enabled. If @buf is NULL and reset is set, all functions will be enabled |
| 4279 | * for tracing. |
| 4280 | */ |
| 4281 | void ftrace_set_global_notrace(unsigned char *buf, int len, int reset) |
| 4282 | { |
| 4283 | ftrace_set_regex(&global_ops, buf, len, reset, 0); |
| 4284 | } |
| 4285 | EXPORT_SYMBOL_GPL(ftrace_set_global_notrace); |
| 4286 | |
| 4287 | /* |
| 4288 | * command line interface to allow users to set filters on boot up. |
| 4289 | */ |
| 4290 | #define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE |
| 4291 | static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata; |
| 4292 | static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata; |
| 4293 | |
| 4294 | /* Used by function selftest to not test if filter is set */ |
| 4295 | bool ftrace_filter_param __initdata; |
| 4296 | |
| 4297 | static int __init set_ftrace_notrace(char *str) |
| 4298 | { |
| 4299 | ftrace_filter_param = true; |
| 4300 | strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE); |
| 4301 | return 1; |
| 4302 | } |
| 4303 | __setup("ftrace_notrace=", set_ftrace_notrace); |
| 4304 | |
| 4305 | static int __init set_ftrace_filter(char *str) |
| 4306 | { |
| 4307 | ftrace_filter_param = true; |
| 4308 | strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE); |
| 4309 | return 1; |
| 4310 | } |
| 4311 | __setup("ftrace_filter=", set_ftrace_filter); |
| 4312 | |
| 4313 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 4314 | static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata; |
| 4315 | static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata; |
| 4316 | static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer); |
| 4317 | |
| 4318 | static int __init set_graph_function(char *str) |
| 4319 | { |
| 4320 | strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE); |
| 4321 | return 1; |
| 4322 | } |
| 4323 | __setup("ftrace_graph_filter=", set_graph_function); |
| 4324 | |
| 4325 | static int __init set_graph_notrace_function(char *str) |
| 4326 | { |
| 4327 | strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE); |
| 4328 | return 1; |
| 4329 | } |
| 4330 | __setup("ftrace_graph_notrace=", set_graph_notrace_function); |
| 4331 | |
| 4332 | static void __init set_ftrace_early_graph(char *buf, int enable) |
| 4333 | { |
| 4334 | int ret; |
| 4335 | char *func; |
| 4336 | unsigned long *table = ftrace_graph_funcs; |
| 4337 | int *count = &ftrace_graph_count; |
| 4338 | |
| 4339 | if (!enable) { |
| 4340 | table = ftrace_graph_notrace_funcs; |
| 4341 | count = &ftrace_graph_notrace_count; |
| 4342 | } |
| 4343 | |
| 4344 | while (buf) { |
| 4345 | func = strsep(&buf, ","); |
| 4346 | /* we allow only one expression at a time */ |
| 4347 | ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func); |
| 4348 | if (ret) |
| 4349 | printk(KERN_DEBUG "ftrace: function %s not " |
| 4350 | "traceable\n", func); |
| 4351 | } |
| 4352 | } |
| 4353 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 4354 | |
| 4355 | void __init |
| 4356 | ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable) |
| 4357 | { |
| 4358 | char *func; |
| 4359 | |
| 4360 | ftrace_ops_init(ops); |
| 4361 | |
| 4362 | while (buf) { |
| 4363 | func = strsep(&buf, ","); |
| 4364 | ftrace_set_regex(ops, func, strlen(func), 0, enable); |
| 4365 | } |
| 4366 | } |
| 4367 | |
| 4368 | static void __init set_ftrace_early_filters(void) |
| 4369 | { |
| 4370 | if (ftrace_filter_buf[0]) |
| 4371 | ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1); |
| 4372 | if (ftrace_notrace_buf[0]) |
| 4373 | ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0); |
| 4374 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 4375 | if (ftrace_graph_buf[0]) |
| 4376 | set_ftrace_early_graph(ftrace_graph_buf, 1); |
| 4377 | if (ftrace_graph_notrace_buf[0]) |
| 4378 | set_ftrace_early_graph(ftrace_graph_notrace_buf, 0); |
| 4379 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 4380 | } |
| 4381 | |
| 4382 | int ftrace_regex_release(struct inode *inode, struct file *file) |
| 4383 | { |
| 4384 | struct seq_file *m = (struct seq_file *)file->private_data; |
| 4385 | struct ftrace_ops_hash old_hash_ops; |
| 4386 | struct ftrace_iterator *iter; |
| 4387 | struct ftrace_hash **orig_hash; |
| 4388 | struct ftrace_hash *old_hash; |
| 4389 | struct trace_parser *parser; |
| 4390 | int filter_hash; |
| 4391 | int ret; |
| 4392 | |
| 4393 | if (file->f_mode & FMODE_READ) { |
| 4394 | iter = m->private; |
| 4395 | seq_release(inode, file); |
| 4396 | } else |
| 4397 | iter = file->private_data; |
| 4398 | |
| 4399 | parser = &iter->parser; |
| 4400 | if (trace_parser_loaded(parser)) { |
| 4401 | parser->buffer[parser->idx] = 0; |
| 4402 | ftrace_match_records(iter->hash, parser->buffer, parser->idx); |
| 4403 | } |
| 4404 | |
| 4405 | trace_parser_put(parser); |
| 4406 | |
| 4407 | mutex_lock(&iter->ops->func_hash->regex_lock); |
| 4408 | |
| 4409 | if (file->f_mode & FMODE_WRITE) { |
| 4410 | filter_hash = !!(iter->flags & FTRACE_ITER_FILTER); |
| 4411 | |
| 4412 | if (filter_hash) |
| 4413 | orig_hash = &iter->ops->func_hash->filter_hash; |
| 4414 | else |
| 4415 | orig_hash = &iter->ops->func_hash->notrace_hash; |
| 4416 | |
| 4417 | mutex_lock(&ftrace_lock); |
| 4418 | old_hash = *orig_hash; |
| 4419 | old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash; |
| 4420 | old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash; |
| 4421 | ret = ftrace_hash_move(iter->ops, filter_hash, |
| 4422 | orig_hash, iter->hash); |
| 4423 | if (!ret) { |
| 4424 | ftrace_ops_update_code(iter->ops, &old_hash_ops); |
| 4425 | free_ftrace_hash_rcu(old_hash); |
| 4426 | } |
| 4427 | mutex_unlock(&ftrace_lock); |
| 4428 | } |
| 4429 | |
| 4430 | mutex_unlock(&iter->ops->func_hash->regex_lock); |
| 4431 | free_ftrace_hash(iter->hash); |
| 4432 | kfree(iter); |
| 4433 | |
| 4434 | return 0; |
| 4435 | } |
| 4436 | |
| 4437 | static const struct file_operations ftrace_avail_fops = { |
| 4438 | .open = ftrace_avail_open, |
| 4439 | .read = seq_read, |
| 4440 | .llseek = seq_lseek, |
| 4441 | .release = seq_release_private, |
| 4442 | }; |
| 4443 | |
| 4444 | static const struct file_operations ftrace_enabled_fops = { |
| 4445 | .open = ftrace_enabled_open, |
| 4446 | .read = seq_read, |
| 4447 | .llseek = seq_lseek, |
| 4448 | .release = seq_release_private, |
| 4449 | }; |
| 4450 | |
| 4451 | static const struct file_operations ftrace_filter_fops = { |
| 4452 | .open = ftrace_filter_open, |
| 4453 | .read = seq_read, |
| 4454 | .write = ftrace_filter_write, |
| 4455 | .llseek = tracing_lseek, |
| 4456 | .release = ftrace_regex_release, |
| 4457 | }; |
| 4458 | |
| 4459 | static const struct file_operations ftrace_notrace_fops = { |
| 4460 | .open = ftrace_notrace_open, |
| 4461 | .read = seq_read, |
| 4462 | .write = ftrace_notrace_write, |
| 4463 | .llseek = tracing_lseek, |
| 4464 | .release = ftrace_regex_release, |
| 4465 | }; |
| 4466 | |
| 4467 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 4468 | |
| 4469 | static DEFINE_MUTEX(graph_lock); |
| 4470 | |
| 4471 | int ftrace_graph_count; |
| 4472 | int ftrace_graph_notrace_count; |
| 4473 | unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly; |
| 4474 | unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly; |
| 4475 | |
| 4476 | struct ftrace_graph_data { |
| 4477 | unsigned long *table; |
| 4478 | size_t size; |
| 4479 | int *count; |
| 4480 | const struct seq_operations *seq_ops; |
| 4481 | }; |
| 4482 | |
| 4483 | static void * |
| 4484 | __g_next(struct seq_file *m, loff_t *pos) |
| 4485 | { |
| 4486 | struct ftrace_graph_data *fgd = m->private; |
| 4487 | |
| 4488 | if (*pos >= *fgd->count) |
| 4489 | return NULL; |
| 4490 | return &fgd->table[*pos]; |
| 4491 | } |
| 4492 | |
| 4493 | static void * |
| 4494 | g_next(struct seq_file *m, void *v, loff_t *pos) |
| 4495 | { |
| 4496 | (*pos)++; |
| 4497 | return __g_next(m, pos); |
| 4498 | } |
| 4499 | |
| 4500 | static void *g_start(struct seq_file *m, loff_t *pos) |
| 4501 | { |
| 4502 | struct ftrace_graph_data *fgd = m->private; |
| 4503 | |
| 4504 | mutex_lock(&graph_lock); |
| 4505 | |
| 4506 | /* Nothing, tell g_show to print all functions are enabled */ |
| 4507 | if (!*fgd->count && !*pos) |
| 4508 | return (void *)1; |
| 4509 | |
| 4510 | return __g_next(m, pos); |
| 4511 | } |
| 4512 | |
| 4513 | static void g_stop(struct seq_file *m, void *p) |
| 4514 | { |
| 4515 | mutex_unlock(&graph_lock); |
| 4516 | } |
| 4517 | |
| 4518 | static int g_show(struct seq_file *m, void *v) |
| 4519 | { |
| 4520 | unsigned long *ptr = v; |
| 4521 | |
| 4522 | if (!ptr) |
| 4523 | return 0; |
| 4524 | |
| 4525 | if (ptr == (unsigned long *)1) { |
| 4526 | struct ftrace_graph_data *fgd = m->private; |
| 4527 | |
| 4528 | if (fgd->table == ftrace_graph_funcs) |
| 4529 | seq_puts(m, "#### all functions enabled ####\n"); |
| 4530 | else |
| 4531 | seq_puts(m, "#### no functions disabled ####\n"); |
| 4532 | return 0; |
| 4533 | } |
| 4534 | |
| 4535 | seq_printf(m, "%ps\n", (void *)*ptr); |
| 4536 | |
| 4537 | return 0; |
| 4538 | } |
| 4539 | |
| 4540 | static const struct seq_operations ftrace_graph_seq_ops = { |
| 4541 | .start = g_start, |
| 4542 | .next = g_next, |
| 4543 | .stop = g_stop, |
| 4544 | .show = g_show, |
| 4545 | }; |
| 4546 | |
| 4547 | static int |
| 4548 | __ftrace_graph_open(struct inode *inode, struct file *file, |
| 4549 | struct ftrace_graph_data *fgd) |
| 4550 | { |
| 4551 | int ret = 0; |
| 4552 | |
| 4553 | mutex_lock(&graph_lock); |
| 4554 | if ((file->f_mode & FMODE_WRITE) && |
| 4555 | (file->f_flags & O_TRUNC)) { |
| 4556 | *fgd->count = 0; |
| 4557 | memset(fgd->table, 0, fgd->size * sizeof(*fgd->table)); |
| 4558 | } |
| 4559 | mutex_unlock(&graph_lock); |
| 4560 | |
| 4561 | if (file->f_mode & FMODE_READ) { |
| 4562 | ret = seq_open(file, fgd->seq_ops); |
| 4563 | if (!ret) { |
| 4564 | struct seq_file *m = file->private_data; |
| 4565 | m->private = fgd; |
| 4566 | } |
| 4567 | } else |
| 4568 | file->private_data = fgd; |
| 4569 | |
| 4570 | return ret; |
| 4571 | } |
| 4572 | |
| 4573 | static int |
| 4574 | ftrace_graph_open(struct inode *inode, struct file *file) |
| 4575 | { |
| 4576 | struct ftrace_graph_data *fgd; |
| 4577 | |
| 4578 | if (unlikely(ftrace_disabled)) |
| 4579 | return -ENODEV; |
| 4580 | |
| 4581 | fgd = kmalloc(sizeof(*fgd), GFP_KERNEL); |
| 4582 | if (fgd == NULL) |
| 4583 | return -ENOMEM; |
| 4584 | |
| 4585 | fgd->table = ftrace_graph_funcs; |
| 4586 | fgd->size = FTRACE_GRAPH_MAX_FUNCS; |
| 4587 | fgd->count = &ftrace_graph_count; |
| 4588 | fgd->seq_ops = &ftrace_graph_seq_ops; |
| 4589 | |
| 4590 | return __ftrace_graph_open(inode, file, fgd); |
| 4591 | } |
| 4592 | |
| 4593 | static int |
| 4594 | ftrace_graph_notrace_open(struct inode *inode, struct file *file) |
| 4595 | { |
| 4596 | struct ftrace_graph_data *fgd; |
| 4597 | |
| 4598 | if (unlikely(ftrace_disabled)) |
| 4599 | return -ENODEV; |
| 4600 | |
| 4601 | fgd = kmalloc(sizeof(*fgd), GFP_KERNEL); |
| 4602 | if (fgd == NULL) |
| 4603 | return -ENOMEM; |
| 4604 | |
| 4605 | fgd->table = ftrace_graph_notrace_funcs; |
| 4606 | fgd->size = FTRACE_GRAPH_MAX_FUNCS; |
| 4607 | fgd->count = &ftrace_graph_notrace_count; |
| 4608 | fgd->seq_ops = &ftrace_graph_seq_ops; |
| 4609 | |
| 4610 | return __ftrace_graph_open(inode, file, fgd); |
| 4611 | } |
| 4612 | |
| 4613 | static int |
| 4614 | ftrace_graph_release(struct inode *inode, struct file *file) |
| 4615 | { |
| 4616 | if (file->f_mode & FMODE_READ) { |
| 4617 | struct seq_file *m = file->private_data; |
| 4618 | |
| 4619 | kfree(m->private); |
| 4620 | seq_release(inode, file); |
| 4621 | } else { |
| 4622 | kfree(file->private_data); |
| 4623 | } |
| 4624 | |
| 4625 | return 0; |
| 4626 | } |
| 4627 | |
| 4628 | static int |
| 4629 | ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer) |
| 4630 | { |
| 4631 | struct ftrace_glob func_g; |
| 4632 | struct dyn_ftrace *rec; |
| 4633 | struct ftrace_page *pg; |
| 4634 | int fail = 1; |
| 4635 | int not; |
| 4636 | bool exists; |
| 4637 | int i; |
| 4638 | |
| 4639 | /* decode regex */ |
| 4640 | func_g.type = filter_parse_regex(buffer, strlen(buffer), |
| 4641 | &func_g.search, ¬); |
| 4642 | if (!not && *idx >= size) |
| 4643 | return -EBUSY; |
| 4644 | |
| 4645 | func_g.len = strlen(func_g.search); |
| 4646 | |
| 4647 | mutex_lock(&ftrace_lock); |
| 4648 | |
| 4649 | if (unlikely(ftrace_disabled)) { |
| 4650 | mutex_unlock(&ftrace_lock); |
| 4651 | return -ENODEV; |
| 4652 | } |
| 4653 | |
| 4654 | do_for_each_ftrace_rec(pg, rec) { |
| 4655 | |
| 4656 | if (ftrace_match_record(rec, &func_g, NULL, 0)) { |
| 4657 | /* if it is in the array */ |
| 4658 | exists = false; |
| 4659 | for (i = 0; i < *idx; i++) { |
| 4660 | if (array[i] == rec->ip) { |
| 4661 | exists = true; |
| 4662 | break; |
| 4663 | } |
| 4664 | } |
| 4665 | |
| 4666 | if (!not) { |
| 4667 | fail = 0; |
| 4668 | if (!exists) { |
| 4669 | array[(*idx)++] = rec->ip; |
| 4670 | if (*idx >= size) |
| 4671 | goto out; |
| 4672 | } |
| 4673 | } else { |
| 4674 | if (exists) { |
| 4675 | array[i] = array[--(*idx)]; |
| 4676 | array[*idx] = 0; |
| 4677 | fail = 0; |
| 4678 | } |
| 4679 | } |
| 4680 | } |
| 4681 | } while_for_each_ftrace_rec(); |
| 4682 | out: |
| 4683 | mutex_unlock(&ftrace_lock); |
| 4684 | |
| 4685 | if (fail) |
| 4686 | return -EINVAL; |
| 4687 | |
| 4688 | return 0; |
| 4689 | } |
| 4690 | |
| 4691 | static ssize_t |
| 4692 | ftrace_graph_write(struct file *file, const char __user *ubuf, |
| 4693 | size_t cnt, loff_t *ppos) |
| 4694 | { |
| 4695 | struct trace_parser parser; |
| 4696 | ssize_t read, ret = 0; |
| 4697 | struct ftrace_graph_data *fgd = file->private_data; |
| 4698 | |
| 4699 | if (!cnt) |
| 4700 | return 0; |
| 4701 | |
| 4702 | if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) |
| 4703 | return -ENOMEM; |
| 4704 | |
| 4705 | read = trace_get_user(&parser, ubuf, cnt, ppos); |
| 4706 | |
| 4707 | if (read >= 0 && trace_parser_loaded((&parser))) { |
| 4708 | parser.buffer[parser.idx] = 0; |
| 4709 | |
| 4710 | mutex_lock(&graph_lock); |
| 4711 | |
| 4712 | /* we allow only one expression at a time */ |
| 4713 | ret = ftrace_set_func(fgd->table, fgd->count, fgd->size, |
| 4714 | parser.buffer); |
| 4715 | |
| 4716 | mutex_unlock(&graph_lock); |
| 4717 | } |
| 4718 | |
| 4719 | if (!ret) |
| 4720 | ret = read; |
| 4721 | |
| 4722 | trace_parser_put(&parser); |
| 4723 | |
| 4724 | return ret; |
| 4725 | } |
| 4726 | |
| 4727 | static const struct file_operations ftrace_graph_fops = { |
| 4728 | .open = ftrace_graph_open, |
| 4729 | .read = seq_read, |
| 4730 | .write = ftrace_graph_write, |
| 4731 | .llseek = tracing_lseek, |
| 4732 | .release = ftrace_graph_release, |
| 4733 | }; |
| 4734 | |
| 4735 | static const struct file_operations ftrace_graph_notrace_fops = { |
| 4736 | .open = ftrace_graph_notrace_open, |
| 4737 | .read = seq_read, |
| 4738 | .write = ftrace_graph_write, |
| 4739 | .llseek = tracing_lseek, |
| 4740 | .release = ftrace_graph_release, |
| 4741 | }; |
| 4742 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 4743 | |
| 4744 | void ftrace_create_filter_files(struct ftrace_ops *ops, |
| 4745 | struct dentry *parent) |
| 4746 | { |
| 4747 | |
| 4748 | trace_create_file("set_ftrace_filter", 0644, parent, |
| 4749 | ops, &ftrace_filter_fops); |
| 4750 | |
| 4751 | trace_create_file("set_ftrace_notrace", 0644, parent, |
| 4752 | ops, &ftrace_notrace_fops); |
| 4753 | } |
| 4754 | |
| 4755 | /* |
| 4756 | * The name "destroy_filter_files" is really a misnomer. Although |
| 4757 | * in the future, it may actualy delete the files, but this is |
| 4758 | * really intended to make sure the ops passed in are disabled |
| 4759 | * and that when this function returns, the caller is free to |
| 4760 | * free the ops. |
| 4761 | * |
| 4762 | * The "destroy" name is only to match the "create" name that this |
| 4763 | * should be paired with. |
| 4764 | */ |
| 4765 | void ftrace_destroy_filter_files(struct ftrace_ops *ops) |
| 4766 | { |
| 4767 | mutex_lock(&ftrace_lock); |
| 4768 | if (ops->flags & FTRACE_OPS_FL_ENABLED) |
| 4769 | ftrace_shutdown(ops, 0); |
| 4770 | ops->flags |= FTRACE_OPS_FL_DELETED; |
| 4771 | mutex_unlock(&ftrace_lock); |
| 4772 | } |
| 4773 | |
| 4774 | static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer) |
| 4775 | { |
| 4776 | |
| 4777 | trace_create_file("available_filter_functions", 0444, |
| 4778 | d_tracer, NULL, &ftrace_avail_fops); |
| 4779 | |
| 4780 | trace_create_file("enabled_functions", 0444, |
| 4781 | d_tracer, NULL, &ftrace_enabled_fops); |
| 4782 | |
| 4783 | ftrace_create_filter_files(&global_ops, d_tracer); |
| 4784 | |
| 4785 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 4786 | trace_create_file("set_graph_function", 0444, d_tracer, |
| 4787 | NULL, |
| 4788 | &ftrace_graph_fops); |
| 4789 | trace_create_file("set_graph_notrace", 0444, d_tracer, |
| 4790 | NULL, |
| 4791 | &ftrace_graph_notrace_fops); |
| 4792 | #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ |
| 4793 | |
| 4794 | return 0; |
| 4795 | } |
| 4796 | |
| 4797 | static int ftrace_cmp_ips(const void *a, const void *b) |
| 4798 | { |
| 4799 | const unsigned long *ipa = a; |
| 4800 | const unsigned long *ipb = b; |
| 4801 | |
| 4802 | if (*ipa > *ipb) |
| 4803 | return 1; |
| 4804 | if (*ipa < *ipb) |
| 4805 | return -1; |
| 4806 | return 0; |
| 4807 | } |
| 4808 | |
| 4809 | static int ftrace_process_locs(struct module *mod, |
| 4810 | unsigned long *start, |
| 4811 | unsigned long *end) |
| 4812 | { |
| 4813 | struct ftrace_page *start_pg; |
| 4814 | struct ftrace_page *pg; |
| 4815 | struct dyn_ftrace *rec; |
| 4816 | unsigned long count; |
| 4817 | unsigned long *p; |
| 4818 | unsigned long addr; |
| 4819 | unsigned long flags = 0; /* Shut up gcc */ |
| 4820 | int ret = -ENOMEM; |
| 4821 | |
| 4822 | count = end - start; |
| 4823 | |
| 4824 | if (!count) |
| 4825 | return 0; |
| 4826 | |
| 4827 | sort(start, count, sizeof(*start), |
| 4828 | ftrace_cmp_ips, NULL); |
| 4829 | |
| 4830 | start_pg = ftrace_allocate_pages(count); |
| 4831 | if (!start_pg) |
| 4832 | return -ENOMEM; |
| 4833 | |
| 4834 | mutex_lock(&ftrace_lock); |
| 4835 | |
| 4836 | /* |
| 4837 | * Core and each module needs their own pages, as |
| 4838 | * modules will free them when they are removed. |
| 4839 | * Force a new page to be allocated for modules. |
| 4840 | */ |
| 4841 | if (!mod) { |
| 4842 | WARN_ON(ftrace_pages || ftrace_pages_start); |
| 4843 | /* First initialization */ |
| 4844 | ftrace_pages = ftrace_pages_start = start_pg; |
| 4845 | } else { |
| 4846 | if (!ftrace_pages) |
| 4847 | goto out; |
| 4848 | |
| 4849 | if (WARN_ON(ftrace_pages->next)) { |
| 4850 | /* Hmm, we have free pages? */ |
| 4851 | while (ftrace_pages->next) |
| 4852 | ftrace_pages = ftrace_pages->next; |
| 4853 | } |
| 4854 | |
| 4855 | ftrace_pages->next = start_pg; |
| 4856 | } |
| 4857 | |
| 4858 | p = start; |
| 4859 | pg = start_pg; |
| 4860 | while (p < end) { |
| 4861 | addr = ftrace_call_adjust(*p++); |
| 4862 | /* |
| 4863 | * Some architecture linkers will pad between |
| 4864 | * the different mcount_loc sections of different |
| 4865 | * object files to satisfy alignments. |
| 4866 | * Skip any NULL pointers. |
| 4867 | */ |
| 4868 | if (!addr) |
| 4869 | continue; |
| 4870 | |
| 4871 | if (pg->index == pg->size) { |
| 4872 | /* We should have allocated enough */ |
| 4873 | if (WARN_ON(!pg->next)) |
| 4874 | break; |
| 4875 | pg = pg->next; |
| 4876 | } |
| 4877 | |
| 4878 | rec = &pg->records[pg->index++]; |
| 4879 | rec->ip = addr; |
| 4880 | } |
| 4881 | |
| 4882 | /* We should have used all pages */ |
| 4883 | WARN_ON(pg->next); |
| 4884 | |
| 4885 | /* Assign the last page to ftrace_pages */ |
| 4886 | ftrace_pages = pg; |
| 4887 | |
| 4888 | /* |
| 4889 | * We only need to disable interrupts on start up |
| 4890 | * because we are modifying code that an interrupt |
| 4891 | * may execute, and the modification is not atomic. |
| 4892 | * But for modules, nothing runs the code we modify |
| 4893 | * until we are finished with it, and there's no |
| 4894 | * reason to cause large interrupt latencies while we do it. |
| 4895 | */ |
| 4896 | if (!mod) |
| 4897 | local_irq_save(flags); |
| 4898 | ftrace_update_code(mod, start_pg); |
| 4899 | if (!mod) |
| 4900 | local_irq_restore(flags); |
| 4901 | ret = 0; |
| 4902 | out: |
| 4903 | mutex_unlock(&ftrace_lock); |
| 4904 | |
| 4905 | return ret; |
| 4906 | } |
| 4907 | |
| 4908 | #ifdef CONFIG_MODULES |
| 4909 | |
| 4910 | #define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next) |
| 4911 | |
| 4912 | void ftrace_release_mod(struct module *mod) |
| 4913 | { |
| 4914 | struct dyn_ftrace *rec; |
| 4915 | struct ftrace_page **last_pg; |
| 4916 | struct ftrace_page *pg; |
| 4917 | int order; |
| 4918 | |
| 4919 | mutex_lock(&ftrace_lock); |
| 4920 | |
| 4921 | if (ftrace_disabled) |
| 4922 | goto out_unlock; |
| 4923 | |
| 4924 | /* |
| 4925 | * Each module has its own ftrace_pages, remove |
| 4926 | * them from the list. |
| 4927 | */ |
| 4928 | last_pg = &ftrace_pages_start; |
| 4929 | for (pg = ftrace_pages_start; pg; pg = *last_pg) { |
| 4930 | rec = &pg->records[0]; |
| 4931 | if (within_module_core(rec->ip, mod)) { |
| 4932 | /* |
| 4933 | * As core pages are first, the first |
| 4934 | * page should never be a module page. |
| 4935 | */ |
| 4936 | if (WARN_ON(pg == ftrace_pages_start)) |
| 4937 | goto out_unlock; |
| 4938 | |
| 4939 | /* Check if we are deleting the last page */ |
| 4940 | if (pg == ftrace_pages) |
| 4941 | ftrace_pages = next_to_ftrace_page(last_pg); |
| 4942 | |
| 4943 | *last_pg = pg->next; |
| 4944 | order = get_count_order(pg->size / ENTRIES_PER_PAGE); |
| 4945 | free_pages((unsigned long)pg->records, order); |
| 4946 | kfree(pg); |
| 4947 | } else |
| 4948 | last_pg = &pg->next; |
| 4949 | } |
| 4950 | out_unlock: |
| 4951 | mutex_unlock(&ftrace_lock); |
| 4952 | } |
| 4953 | |
| 4954 | static void ftrace_init_module(struct module *mod, |
| 4955 | unsigned long *start, unsigned long *end) |
| 4956 | { |
| 4957 | if (ftrace_disabled || start == end) |
| 4958 | return; |
| 4959 | ftrace_process_locs(mod, start, end); |
| 4960 | } |
| 4961 | |
| 4962 | void ftrace_module_init(struct module *mod) |
| 4963 | { |
| 4964 | ftrace_init_module(mod, mod->ftrace_callsites, |
| 4965 | mod->ftrace_callsites + |
| 4966 | mod->num_ftrace_callsites); |
| 4967 | } |
| 4968 | |
| 4969 | static int ftrace_module_notify_exit(struct notifier_block *self, |
| 4970 | unsigned long val, void *data) |
| 4971 | { |
| 4972 | struct module *mod = data; |
| 4973 | |
| 4974 | if (val == MODULE_STATE_GOING) |
| 4975 | ftrace_release_mod(mod); |
| 4976 | |
| 4977 | return 0; |
| 4978 | } |
| 4979 | #else |
| 4980 | static int ftrace_module_notify_exit(struct notifier_block *self, |
| 4981 | unsigned long val, void *data) |
| 4982 | { |
| 4983 | return 0; |
| 4984 | } |
| 4985 | #endif /* CONFIG_MODULES */ |
| 4986 | |
| 4987 | struct notifier_block ftrace_module_exit_nb = { |
| 4988 | .notifier_call = ftrace_module_notify_exit, |
| 4989 | .priority = INT_MIN, /* Run after anything that can remove kprobes */ |
| 4990 | }; |
| 4991 | |
| 4992 | void __init ftrace_init(void) |
| 4993 | { |
| 4994 | extern unsigned long __start_mcount_loc[]; |
| 4995 | extern unsigned long __stop_mcount_loc[]; |
| 4996 | unsigned long count, flags; |
| 4997 | int ret; |
| 4998 | |
| 4999 | local_irq_save(flags); |
| 5000 | ret = ftrace_dyn_arch_init(); |
| 5001 | local_irq_restore(flags); |
| 5002 | if (ret) |
| 5003 | goto failed; |
| 5004 | |
| 5005 | count = __stop_mcount_loc - __start_mcount_loc; |
| 5006 | if (!count) { |
| 5007 | pr_info("ftrace: No functions to be traced?\n"); |
| 5008 | goto failed; |
| 5009 | } |
| 5010 | |
| 5011 | pr_info("ftrace: allocating %ld entries in %ld pages\n", |
| 5012 | count, count / ENTRIES_PER_PAGE + 1); |
| 5013 | |
| 5014 | last_ftrace_enabled = ftrace_enabled = 1; |
| 5015 | |
| 5016 | ret = ftrace_process_locs(NULL, |
| 5017 | __start_mcount_loc, |
| 5018 | __stop_mcount_loc); |
| 5019 | |
| 5020 | ret = register_module_notifier(&ftrace_module_exit_nb); |
| 5021 | if (ret) |
| 5022 | pr_warning("Failed to register trace ftrace module exit notifier\n"); |
| 5023 | |
| 5024 | set_ftrace_early_filters(); |
| 5025 | |
| 5026 | return; |
| 5027 | failed: |
| 5028 | ftrace_disabled = 1; |
| 5029 | } |
| 5030 | |
| 5031 | /* Do nothing if arch does not support this */ |
| 5032 | void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops) |
| 5033 | { |
| 5034 | } |
| 5035 | |
| 5036 | static void ftrace_update_trampoline(struct ftrace_ops *ops) |
| 5037 | { |
| 5038 | |
| 5039 | /* |
| 5040 | * Currently there's no safe way to free a trampoline when the kernel |
| 5041 | * is configured with PREEMPT. That is because a task could be preempted |
| 5042 | * when it jumped to the trampoline, it may be preempted for a long time |
| 5043 | * depending on the system load, and currently there's no way to know |
| 5044 | * when it will be off the trampoline. If the trampoline is freed |
| 5045 | * too early, when the task runs again, it will be executing on freed |
| 5046 | * memory and crash. |
| 5047 | */ |
| 5048 | #ifdef CONFIG_PREEMPT |
| 5049 | /* Currently, only non dynamic ops can have a trampoline */ |
| 5050 | if (ops->flags & FTRACE_OPS_FL_DYNAMIC) |
| 5051 | return; |
| 5052 | #endif |
| 5053 | |
| 5054 | arch_ftrace_update_trampoline(ops); |
| 5055 | } |
| 5056 | |
| 5057 | #else |
| 5058 | |
| 5059 | static struct ftrace_ops global_ops = { |
| 5060 | .func = ftrace_stub, |
| 5061 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | |
| 5062 | FTRACE_OPS_FL_INITIALIZED | |
| 5063 | FTRACE_OPS_FL_PID, |
| 5064 | }; |
| 5065 | |
| 5066 | static int __init ftrace_nodyn_init(void) |
| 5067 | { |
| 5068 | ftrace_enabled = 1; |
| 5069 | return 0; |
| 5070 | } |
| 5071 | core_initcall(ftrace_nodyn_init); |
| 5072 | |
| 5073 | static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; } |
| 5074 | static inline void ftrace_startup_enable(int command) { } |
| 5075 | static inline void ftrace_startup_all(int command) { } |
| 5076 | /* Keep as macros so we do not need to define the commands */ |
| 5077 | # define ftrace_startup(ops, command) \ |
| 5078 | ({ \ |
| 5079 | int ___ret = __register_ftrace_function(ops); \ |
| 5080 | if (!___ret) \ |
| 5081 | (ops)->flags |= FTRACE_OPS_FL_ENABLED; \ |
| 5082 | ___ret; \ |
| 5083 | }) |
| 5084 | # define ftrace_shutdown(ops, command) \ |
| 5085 | ({ \ |
| 5086 | int ___ret = __unregister_ftrace_function(ops); \ |
| 5087 | if (!___ret) \ |
| 5088 | (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \ |
| 5089 | ___ret; \ |
| 5090 | }) |
| 5091 | |
| 5092 | # define ftrace_startup_sysctl() do { } while (0) |
| 5093 | # define ftrace_shutdown_sysctl() do { } while (0) |
| 5094 | |
| 5095 | static inline int |
| 5096 | ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs) |
| 5097 | { |
| 5098 | return 1; |
| 5099 | } |
| 5100 | |
| 5101 | static void ftrace_update_trampoline(struct ftrace_ops *ops) |
| 5102 | { |
| 5103 | } |
| 5104 | |
| 5105 | #endif /* CONFIG_DYNAMIC_FTRACE */ |
| 5106 | |
| 5107 | __init void ftrace_init_global_array_ops(struct trace_array *tr) |
| 5108 | { |
| 5109 | tr->ops = &global_ops; |
| 5110 | tr->ops->private = tr; |
| 5111 | } |
| 5112 | |
| 5113 | void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func) |
| 5114 | { |
| 5115 | /* If we filter on pids, update to use the pid function */ |
| 5116 | if (tr->flags & TRACE_ARRAY_FL_GLOBAL) { |
| 5117 | if (WARN_ON(tr->ops->func != ftrace_stub)) |
| 5118 | printk("ftrace ops had %pS for function\n", |
| 5119 | tr->ops->func); |
| 5120 | } |
| 5121 | tr->ops->func = func; |
| 5122 | tr->ops->private = tr; |
| 5123 | } |
| 5124 | |
| 5125 | void ftrace_reset_array_ops(struct trace_array *tr) |
| 5126 | { |
| 5127 | tr->ops->func = ftrace_stub; |
| 5128 | } |
| 5129 | |
| 5130 | static void |
| 5131 | ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip, |
| 5132 | struct ftrace_ops *op, struct pt_regs *regs) |
| 5133 | { |
| 5134 | if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT))) |
| 5135 | return; |
| 5136 | |
| 5137 | /* |
| 5138 | * Some of the ops may be dynamically allocated, |
| 5139 | * they must be freed after a synchronize_sched(). |
| 5140 | */ |
| 5141 | preempt_disable_notrace(); |
| 5142 | trace_recursion_set(TRACE_CONTROL_BIT); |
| 5143 | |
| 5144 | /* |
| 5145 | * Control funcs (perf) uses RCU. Only trace if |
| 5146 | * RCU is currently active. |
| 5147 | */ |
| 5148 | if (!rcu_is_watching()) |
| 5149 | goto out; |
| 5150 | |
| 5151 | do_for_each_ftrace_op(op, ftrace_control_list) { |
| 5152 | if (!(op->flags & FTRACE_OPS_FL_STUB) && |
| 5153 | !ftrace_function_local_disabled(op) && |
| 5154 | ftrace_ops_test(op, ip, regs)) |
| 5155 | op->func(ip, parent_ip, op, regs); |
| 5156 | } while_for_each_ftrace_op(op); |
| 5157 | out: |
| 5158 | trace_recursion_clear(TRACE_CONTROL_BIT); |
| 5159 | preempt_enable_notrace(); |
| 5160 | } |
| 5161 | |
| 5162 | static struct ftrace_ops control_ops = { |
| 5163 | .func = ftrace_ops_control_func, |
| 5164 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED, |
| 5165 | INIT_OPS_HASH(control_ops) |
| 5166 | }; |
| 5167 | |
| 5168 | static inline void |
| 5169 | __ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip, |
| 5170 | struct ftrace_ops *ignored, struct pt_regs *regs) |
| 5171 | { |
| 5172 | struct ftrace_ops *op; |
| 5173 | int bit; |
| 5174 | |
| 5175 | bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX); |
| 5176 | if (bit < 0) |
| 5177 | return; |
| 5178 | |
| 5179 | /* |
| 5180 | * Some of the ops may be dynamically allocated, |
| 5181 | * they must be freed after a synchronize_sched(). |
| 5182 | */ |
| 5183 | preempt_disable_notrace(); |
| 5184 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 5185 | if (ftrace_ops_test(op, ip, regs)) { |
| 5186 | if (FTRACE_WARN_ON(!op->func)) { |
| 5187 | pr_warn("op=%p %pS\n", op, op); |
| 5188 | goto out; |
| 5189 | } |
| 5190 | op->func(ip, parent_ip, op, regs); |
| 5191 | } |
| 5192 | } while_for_each_ftrace_op(op); |
| 5193 | out: |
| 5194 | preempt_enable_notrace(); |
| 5195 | trace_clear_recursion(bit); |
| 5196 | } |
| 5197 | |
| 5198 | /* |
| 5199 | * Some archs only support passing ip and parent_ip. Even though |
| 5200 | * the list function ignores the op parameter, we do not want any |
| 5201 | * C side effects, where a function is called without the caller |
| 5202 | * sending a third parameter. |
| 5203 | * Archs are to support both the regs and ftrace_ops at the same time. |
| 5204 | * If they support ftrace_ops, it is assumed they support regs. |
| 5205 | * If call backs want to use regs, they must either check for regs |
| 5206 | * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS. |
| 5207 | * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved. |
| 5208 | * An architecture can pass partial regs with ftrace_ops and still |
| 5209 | * set the ARCH_SUPPORT_FTARCE_OPS. |
| 5210 | */ |
| 5211 | #if ARCH_SUPPORTS_FTRACE_OPS |
| 5212 | static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip, |
| 5213 | struct ftrace_ops *op, struct pt_regs *regs) |
| 5214 | { |
| 5215 | __ftrace_ops_list_func(ip, parent_ip, NULL, regs); |
| 5216 | } |
| 5217 | #else |
| 5218 | static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip) |
| 5219 | { |
| 5220 | __ftrace_ops_list_func(ip, parent_ip, NULL, NULL); |
| 5221 | } |
| 5222 | #endif |
| 5223 | |
| 5224 | /* |
| 5225 | * If there's only one function registered but it does not support |
| 5226 | * recursion, this function will be called by the mcount trampoline. |
| 5227 | * This function will handle recursion protection. |
| 5228 | */ |
| 5229 | static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip, |
| 5230 | struct ftrace_ops *op, struct pt_regs *regs) |
| 5231 | { |
| 5232 | int bit; |
| 5233 | |
| 5234 | bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX); |
| 5235 | if (bit < 0) |
| 5236 | return; |
| 5237 | |
| 5238 | op->func(ip, parent_ip, op, regs); |
| 5239 | |
| 5240 | trace_clear_recursion(bit); |
| 5241 | } |
| 5242 | |
| 5243 | /** |
| 5244 | * ftrace_ops_get_func - get the function a trampoline should call |
| 5245 | * @ops: the ops to get the function for |
| 5246 | * |
| 5247 | * Normally the mcount trampoline will call the ops->func, but there |
| 5248 | * are times that it should not. For example, if the ops does not |
| 5249 | * have its own recursion protection, then it should call the |
| 5250 | * ftrace_ops_recurs_func() instead. |
| 5251 | * |
| 5252 | * Returns the function that the trampoline should call for @ops. |
| 5253 | */ |
| 5254 | ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops) |
| 5255 | { |
| 5256 | /* |
| 5257 | * If the func handles its own recursion, call it directly. |
| 5258 | * Otherwise call the recursion protected function that |
| 5259 | * will call the ftrace ops function. |
| 5260 | */ |
| 5261 | if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE)) |
| 5262 | return ftrace_ops_recurs_func; |
| 5263 | |
| 5264 | return ops->func; |
| 5265 | } |
| 5266 | |
| 5267 | static void clear_ftrace_swapper(void) |
| 5268 | { |
| 5269 | struct task_struct *p; |
| 5270 | int cpu; |
| 5271 | |
| 5272 | get_online_cpus(); |
| 5273 | for_each_online_cpu(cpu) { |
| 5274 | p = idle_task(cpu); |
| 5275 | clear_tsk_trace_trace(p); |
| 5276 | } |
| 5277 | put_online_cpus(); |
| 5278 | } |
| 5279 | |
| 5280 | static void set_ftrace_swapper(void) |
| 5281 | { |
| 5282 | struct task_struct *p; |
| 5283 | int cpu; |
| 5284 | |
| 5285 | get_online_cpus(); |
| 5286 | for_each_online_cpu(cpu) { |
| 5287 | p = idle_task(cpu); |
| 5288 | set_tsk_trace_trace(p); |
| 5289 | } |
| 5290 | put_online_cpus(); |
| 5291 | } |
| 5292 | |
| 5293 | static void clear_ftrace_pid(struct pid *pid) |
| 5294 | { |
| 5295 | struct task_struct *p; |
| 5296 | |
| 5297 | rcu_read_lock(); |
| 5298 | do_each_pid_task(pid, PIDTYPE_PID, p) { |
| 5299 | clear_tsk_trace_trace(p); |
| 5300 | } while_each_pid_task(pid, PIDTYPE_PID, p); |
| 5301 | rcu_read_unlock(); |
| 5302 | |
| 5303 | put_pid(pid); |
| 5304 | } |
| 5305 | |
| 5306 | static void set_ftrace_pid(struct pid *pid) |
| 5307 | { |
| 5308 | struct task_struct *p; |
| 5309 | |
| 5310 | rcu_read_lock(); |
| 5311 | do_each_pid_task(pid, PIDTYPE_PID, p) { |
| 5312 | set_tsk_trace_trace(p); |
| 5313 | } while_each_pid_task(pid, PIDTYPE_PID, p); |
| 5314 | rcu_read_unlock(); |
| 5315 | } |
| 5316 | |
| 5317 | static void clear_ftrace_pid_task(struct pid *pid) |
| 5318 | { |
| 5319 | if (pid == ftrace_swapper_pid) |
| 5320 | clear_ftrace_swapper(); |
| 5321 | else |
| 5322 | clear_ftrace_pid(pid); |
| 5323 | } |
| 5324 | |
| 5325 | static void set_ftrace_pid_task(struct pid *pid) |
| 5326 | { |
| 5327 | if (pid == ftrace_swapper_pid) |
| 5328 | set_ftrace_swapper(); |
| 5329 | else |
| 5330 | set_ftrace_pid(pid); |
| 5331 | } |
| 5332 | |
| 5333 | static int ftrace_pid_add(int p) |
| 5334 | { |
| 5335 | struct pid *pid; |
| 5336 | struct ftrace_pid *fpid; |
| 5337 | int ret = -EINVAL; |
| 5338 | |
| 5339 | mutex_lock(&ftrace_lock); |
| 5340 | |
| 5341 | if (!p) |
| 5342 | pid = ftrace_swapper_pid; |
| 5343 | else |
| 5344 | pid = find_get_pid(p); |
| 5345 | |
| 5346 | if (!pid) |
| 5347 | goto out; |
| 5348 | |
| 5349 | ret = 0; |
| 5350 | |
| 5351 | list_for_each_entry(fpid, &ftrace_pids, list) |
| 5352 | if (fpid->pid == pid) |
| 5353 | goto out_put; |
| 5354 | |
| 5355 | ret = -ENOMEM; |
| 5356 | |
| 5357 | fpid = kmalloc(sizeof(*fpid), GFP_KERNEL); |
| 5358 | if (!fpid) |
| 5359 | goto out_put; |
| 5360 | |
| 5361 | list_add(&fpid->list, &ftrace_pids); |
| 5362 | fpid->pid = pid; |
| 5363 | |
| 5364 | set_ftrace_pid_task(pid); |
| 5365 | |
| 5366 | ftrace_update_pid_func(); |
| 5367 | |
| 5368 | ftrace_startup_all(0); |
| 5369 | |
| 5370 | mutex_unlock(&ftrace_lock); |
| 5371 | return 0; |
| 5372 | |
| 5373 | out_put: |
| 5374 | if (pid != ftrace_swapper_pid) |
| 5375 | put_pid(pid); |
| 5376 | |
| 5377 | out: |
| 5378 | mutex_unlock(&ftrace_lock); |
| 5379 | return ret; |
| 5380 | } |
| 5381 | |
| 5382 | static void ftrace_pid_reset(void) |
| 5383 | { |
| 5384 | struct ftrace_pid *fpid, *safe; |
| 5385 | |
| 5386 | mutex_lock(&ftrace_lock); |
| 5387 | list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) { |
| 5388 | struct pid *pid = fpid->pid; |
| 5389 | |
| 5390 | clear_ftrace_pid_task(pid); |
| 5391 | |
| 5392 | list_del(&fpid->list); |
| 5393 | kfree(fpid); |
| 5394 | } |
| 5395 | |
| 5396 | ftrace_update_pid_func(); |
| 5397 | ftrace_startup_all(0); |
| 5398 | |
| 5399 | mutex_unlock(&ftrace_lock); |
| 5400 | } |
| 5401 | |
| 5402 | static void *fpid_start(struct seq_file *m, loff_t *pos) |
| 5403 | { |
| 5404 | mutex_lock(&ftrace_lock); |
| 5405 | |
| 5406 | if (!ftrace_pids_enabled() && (!*pos)) |
| 5407 | return (void *) 1; |
| 5408 | |
| 5409 | return seq_list_start(&ftrace_pids, *pos); |
| 5410 | } |
| 5411 | |
| 5412 | static void *fpid_next(struct seq_file *m, void *v, loff_t *pos) |
| 5413 | { |
| 5414 | if (v == (void *)1) |
| 5415 | return NULL; |
| 5416 | |
| 5417 | return seq_list_next(v, &ftrace_pids, pos); |
| 5418 | } |
| 5419 | |
| 5420 | static void fpid_stop(struct seq_file *m, void *p) |
| 5421 | { |
| 5422 | mutex_unlock(&ftrace_lock); |
| 5423 | } |
| 5424 | |
| 5425 | static int fpid_show(struct seq_file *m, void *v) |
| 5426 | { |
| 5427 | const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list); |
| 5428 | |
| 5429 | if (v == (void *)1) { |
| 5430 | seq_puts(m, "no pid\n"); |
| 5431 | return 0; |
| 5432 | } |
| 5433 | |
| 5434 | if (fpid->pid == ftrace_swapper_pid) |
| 5435 | seq_puts(m, "swapper tasks\n"); |
| 5436 | else |
| 5437 | seq_printf(m, "%u\n", pid_vnr(fpid->pid)); |
| 5438 | |
| 5439 | return 0; |
| 5440 | } |
| 5441 | |
| 5442 | static const struct seq_operations ftrace_pid_sops = { |
| 5443 | .start = fpid_start, |
| 5444 | .next = fpid_next, |
| 5445 | .stop = fpid_stop, |
| 5446 | .show = fpid_show, |
| 5447 | }; |
| 5448 | |
| 5449 | static int |
| 5450 | ftrace_pid_open(struct inode *inode, struct file *file) |
| 5451 | { |
| 5452 | int ret = 0; |
| 5453 | |
| 5454 | if ((file->f_mode & FMODE_WRITE) && |
| 5455 | (file->f_flags & O_TRUNC)) |
| 5456 | ftrace_pid_reset(); |
| 5457 | |
| 5458 | if (file->f_mode & FMODE_READ) |
| 5459 | ret = seq_open(file, &ftrace_pid_sops); |
| 5460 | |
| 5461 | return ret; |
| 5462 | } |
| 5463 | |
| 5464 | static ssize_t |
| 5465 | ftrace_pid_write(struct file *filp, const char __user *ubuf, |
| 5466 | size_t cnt, loff_t *ppos) |
| 5467 | { |
| 5468 | char buf[64], *tmp; |
| 5469 | long val; |
| 5470 | int ret; |
| 5471 | |
| 5472 | if (cnt >= sizeof(buf)) |
| 5473 | return -EINVAL; |
| 5474 | |
| 5475 | if (copy_from_user(&buf, ubuf, cnt)) |
| 5476 | return -EFAULT; |
| 5477 | |
| 5478 | buf[cnt] = 0; |
| 5479 | |
| 5480 | /* |
| 5481 | * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid" |
| 5482 | * to clean the filter quietly. |
| 5483 | */ |
| 5484 | tmp = strstrip(buf); |
| 5485 | if (strlen(tmp) == 0) |
| 5486 | return 1; |
| 5487 | |
| 5488 | ret = kstrtol(tmp, 10, &val); |
| 5489 | if (ret < 0) |
| 5490 | return ret; |
| 5491 | |
| 5492 | ret = ftrace_pid_add(val); |
| 5493 | |
| 5494 | return ret ? ret : cnt; |
| 5495 | } |
| 5496 | |
| 5497 | static int |
| 5498 | ftrace_pid_release(struct inode *inode, struct file *file) |
| 5499 | { |
| 5500 | if (file->f_mode & FMODE_READ) |
| 5501 | seq_release(inode, file); |
| 5502 | |
| 5503 | return 0; |
| 5504 | } |
| 5505 | |
| 5506 | static const struct file_operations ftrace_pid_fops = { |
| 5507 | .open = ftrace_pid_open, |
| 5508 | .write = ftrace_pid_write, |
| 5509 | .read = seq_read, |
| 5510 | .llseek = tracing_lseek, |
| 5511 | .release = ftrace_pid_release, |
| 5512 | }; |
| 5513 | |
| 5514 | static __init int ftrace_init_tracefs(void) |
| 5515 | { |
| 5516 | struct dentry *d_tracer; |
| 5517 | |
| 5518 | d_tracer = tracing_init_dentry(); |
| 5519 | if (IS_ERR(d_tracer)) |
| 5520 | return 0; |
| 5521 | |
| 5522 | ftrace_init_dyn_tracefs(d_tracer); |
| 5523 | |
| 5524 | trace_create_file("set_ftrace_pid", 0644, d_tracer, |
| 5525 | NULL, &ftrace_pid_fops); |
| 5526 | |
| 5527 | ftrace_profile_tracefs(d_tracer); |
| 5528 | |
| 5529 | return 0; |
| 5530 | } |
| 5531 | fs_initcall(ftrace_init_tracefs); |
| 5532 | |
| 5533 | /** |
| 5534 | * ftrace_kill - kill ftrace |
| 5535 | * |
| 5536 | * This function should be used by panic code. It stops ftrace |
| 5537 | * but in a not so nice way. If you need to simply kill ftrace |
| 5538 | * from a non-atomic section, use ftrace_kill. |
| 5539 | */ |
| 5540 | void ftrace_kill(void) |
| 5541 | { |
| 5542 | ftrace_disabled = 1; |
| 5543 | ftrace_enabled = 0; |
| 5544 | clear_ftrace_function(); |
| 5545 | } |
| 5546 | |
| 5547 | /** |
| 5548 | * Test if ftrace is dead or not. |
| 5549 | */ |
| 5550 | int ftrace_is_dead(void) |
| 5551 | { |
| 5552 | return ftrace_disabled; |
| 5553 | } |
| 5554 | |
| 5555 | /** |
| 5556 | * register_ftrace_function - register a function for profiling |
| 5557 | * @ops - ops structure that holds the function for profiling. |
| 5558 | * |
| 5559 | * Register a function to be called by all functions in the |
| 5560 | * kernel. |
| 5561 | * |
| 5562 | * Note: @ops->func and all the functions it calls must be labeled |
| 5563 | * with "notrace", otherwise it will go into a |
| 5564 | * recursive loop. |
| 5565 | */ |
| 5566 | int register_ftrace_function(struct ftrace_ops *ops) |
| 5567 | { |
| 5568 | int ret = -1; |
| 5569 | |
| 5570 | ftrace_ops_init(ops); |
| 5571 | |
| 5572 | mutex_lock(&ftrace_lock); |
| 5573 | |
| 5574 | ret = ftrace_startup(ops, 0); |
| 5575 | |
| 5576 | mutex_unlock(&ftrace_lock); |
| 5577 | |
| 5578 | return ret; |
| 5579 | } |
| 5580 | EXPORT_SYMBOL_GPL(register_ftrace_function); |
| 5581 | |
| 5582 | /** |
| 5583 | * unregister_ftrace_function - unregister a function for profiling. |
| 5584 | * @ops - ops structure that holds the function to unregister |
| 5585 | * |
| 5586 | * Unregister a function that was added to be called by ftrace profiling. |
| 5587 | */ |
| 5588 | int unregister_ftrace_function(struct ftrace_ops *ops) |
| 5589 | { |
| 5590 | int ret; |
| 5591 | |
| 5592 | mutex_lock(&ftrace_lock); |
| 5593 | ret = ftrace_shutdown(ops, 0); |
| 5594 | mutex_unlock(&ftrace_lock); |
| 5595 | |
| 5596 | return ret; |
| 5597 | } |
| 5598 | EXPORT_SYMBOL_GPL(unregister_ftrace_function); |
| 5599 | |
| 5600 | int |
| 5601 | ftrace_enable_sysctl(struct ctl_table *table, int write, |
| 5602 | void __user *buffer, size_t *lenp, |
| 5603 | loff_t *ppos) |
| 5604 | { |
| 5605 | int ret = -ENODEV; |
| 5606 | |
| 5607 | mutex_lock(&ftrace_lock); |
| 5608 | |
| 5609 | if (unlikely(ftrace_disabled)) |
| 5610 | goto out; |
| 5611 | |
| 5612 | ret = proc_dointvec(table, write, buffer, lenp, ppos); |
| 5613 | |
| 5614 | if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled)) |
| 5615 | goto out; |
| 5616 | |
| 5617 | last_ftrace_enabled = !!ftrace_enabled; |
| 5618 | |
| 5619 | if (ftrace_enabled) { |
| 5620 | |
| 5621 | /* we are starting ftrace again */ |
| 5622 | if (ftrace_ops_list != &ftrace_list_end) |
| 5623 | update_ftrace_function(); |
| 5624 | |
| 5625 | ftrace_startup_sysctl(); |
| 5626 | |
| 5627 | } else { |
| 5628 | /* stopping ftrace calls (just send to ftrace_stub) */ |
| 5629 | ftrace_trace_function = ftrace_stub; |
| 5630 | |
| 5631 | ftrace_shutdown_sysctl(); |
| 5632 | } |
| 5633 | |
| 5634 | out: |
| 5635 | mutex_unlock(&ftrace_lock); |
| 5636 | return ret; |
| 5637 | } |
| 5638 | |
| 5639 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 5640 | |
| 5641 | static struct ftrace_ops graph_ops = { |
| 5642 | .func = ftrace_stub, |
| 5643 | .flags = FTRACE_OPS_FL_RECURSION_SAFE | |
| 5644 | FTRACE_OPS_FL_INITIALIZED | |
| 5645 | FTRACE_OPS_FL_PID | |
| 5646 | FTRACE_OPS_FL_STUB, |
| 5647 | #ifdef FTRACE_GRAPH_TRAMP_ADDR |
| 5648 | .trampoline = FTRACE_GRAPH_TRAMP_ADDR, |
| 5649 | /* trampoline_size is only needed for dynamically allocated tramps */ |
| 5650 | #endif |
| 5651 | ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash) |
| 5652 | }; |
| 5653 | |
| 5654 | void ftrace_graph_sleep_time_control(bool enable) |
| 5655 | { |
| 5656 | fgraph_sleep_time = enable; |
| 5657 | } |
| 5658 | |
| 5659 | void ftrace_graph_graph_time_control(bool enable) |
| 5660 | { |
| 5661 | fgraph_graph_time = enable; |
| 5662 | } |
| 5663 | |
| 5664 | int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace) |
| 5665 | { |
| 5666 | return 0; |
| 5667 | } |
| 5668 | |
| 5669 | /* The callbacks that hook a function */ |
| 5670 | trace_func_graph_ret_t ftrace_graph_return = |
| 5671 | (trace_func_graph_ret_t)ftrace_stub; |
| 5672 | trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub; |
| 5673 | static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub; |
| 5674 | |
| 5675 | /* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */ |
| 5676 | static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list) |
| 5677 | { |
| 5678 | int i; |
| 5679 | int ret = 0; |
| 5680 | unsigned long flags; |
| 5681 | int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE; |
| 5682 | struct task_struct *g, *t; |
| 5683 | |
| 5684 | for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) { |
| 5685 | ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH |
| 5686 | * sizeof(struct ftrace_ret_stack), |
| 5687 | GFP_KERNEL); |
| 5688 | if (!ret_stack_list[i]) { |
| 5689 | start = 0; |
| 5690 | end = i; |
| 5691 | ret = -ENOMEM; |
| 5692 | goto free; |
| 5693 | } |
| 5694 | } |
| 5695 | |
| 5696 | read_lock_irqsave(&tasklist_lock, flags); |
| 5697 | do_each_thread(g, t) { |
| 5698 | if (start == end) { |
| 5699 | ret = -EAGAIN; |
| 5700 | goto unlock; |
| 5701 | } |
| 5702 | |
| 5703 | if (t->ret_stack == NULL) { |
| 5704 | atomic_set(&t->tracing_graph_pause, 0); |
| 5705 | atomic_set(&t->trace_overrun, 0); |
| 5706 | t->curr_ret_stack = -1; |
| 5707 | /* Make sure the tasks see the -1 first: */ |
| 5708 | smp_wmb(); |
| 5709 | t->ret_stack = ret_stack_list[start++]; |
| 5710 | } |
| 5711 | } while_each_thread(g, t); |
| 5712 | |
| 5713 | unlock: |
| 5714 | read_unlock_irqrestore(&tasklist_lock, flags); |
| 5715 | free: |
| 5716 | for (i = start; i < end; i++) |
| 5717 | kfree(ret_stack_list[i]); |
| 5718 | return ret; |
| 5719 | } |
| 5720 | |
| 5721 | static void |
| 5722 | ftrace_graph_probe_sched_switch(void *ignore, bool preempt, |
| 5723 | struct task_struct *prev, struct task_struct *next) |
| 5724 | { |
| 5725 | unsigned long long timestamp; |
| 5726 | int index; |
| 5727 | |
| 5728 | /* |
| 5729 | * Does the user want to count the time a function was asleep. |
| 5730 | * If so, do not update the time stamps. |
| 5731 | */ |
| 5732 | if (fgraph_sleep_time) |
| 5733 | return; |
| 5734 | |
| 5735 | timestamp = trace_clock_local(); |
| 5736 | |
| 5737 | prev->ftrace_timestamp = timestamp; |
| 5738 | |
| 5739 | /* only process tasks that we timestamped */ |
| 5740 | if (!next->ftrace_timestamp) |
| 5741 | return; |
| 5742 | |
| 5743 | /* |
| 5744 | * Update all the counters in next to make up for the |
| 5745 | * time next was sleeping. |
| 5746 | */ |
| 5747 | timestamp -= next->ftrace_timestamp; |
| 5748 | |
| 5749 | for (index = next->curr_ret_stack; index >= 0; index--) |
| 5750 | next->ret_stack[index].calltime += timestamp; |
| 5751 | } |
| 5752 | |
| 5753 | /* Allocate a return stack for each task */ |
| 5754 | static int start_graph_tracing(void) |
| 5755 | { |
| 5756 | struct ftrace_ret_stack **ret_stack_list; |
| 5757 | int ret, cpu; |
| 5758 | |
| 5759 | ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE * |
| 5760 | sizeof(struct ftrace_ret_stack *), |
| 5761 | GFP_KERNEL); |
| 5762 | |
| 5763 | if (!ret_stack_list) |
| 5764 | return -ENOMEM; |
| 5765 | |
| 5766 | /* The cpu_boot init_task->ret_stack will never be freed */ |
| 5767 | for_each_online_cpu(cpu) { |
| 5768 | if (!idle_task(cpu)->ret_stack) |
| 5769 | ftrace_graph_init_idle_task(idle_task(cpu), cpu); |
| 5770 | } |
| 5771 | |
| 5772 | do { |
| 5773 | ret = alloc_retstack_tasklist(ret_stack_list); |
| 5774 | } while (ret == -EAGAIN); |
| 5775 | |
| 5776 | if (!ret) { |
| 5777 | ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL); |
| 5778 | if (ret) |
| 5779 | pr_info("ftrace_graph: Couldn't activate tracepoint" |
| 5780 | " probe to kernel_sched_switch\n"); |
| 5781 | } |
| 5782 | |
| 5783 | kfree(ret_stack_list); |
| 5784 | return ret; |
| 5785 | } |
| 5786 | |
| 5787 | /* |
| 5788 | * Hibernation protection. |
| 5789 | * The state of the current task is too much unstable during |
| 5790 | * suspend/restore to disk. We want to protect against that. |
| 5791 | */ |
| 5792 | static int |
| 5793 | ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state, |
| 5794 | void *unused) |
| 5795 | { |
| 5796 | switch (state) { |
| 5797 | case PM_HIBERNATION_PREPARE: |
| 5798 | pause_graph_tracing(); |
| 5799 | break; |
| 5800 | |
| 5801 | case PM_POST_HIBERNATION: |
| 5802 | unpause_graph_tracing(); |
| 5803 | break; |
| 5804 | } |
| 5805 | return NOTIFY_DONE; |
| 5806 | } |
| 5807 | |
| 5808 | static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace) |
| 5809 | { |
| 5810 | if (!ftrace_ops_test(&global_ops, trace->func, NULL)) |
| 5811 | return 0; |
| 5812 | return __ftrace_graph_entry(trace); |
| 5813 | } |
| 5814 | |
| 5815 | /* |
| 5816 | * The function graph tracer should only trace the functions defined |
| 5817 | * by set_ftrace_filter and set_ftrace_notrace. If another function |
| 5818 | * tracer ops is registered, the graph tracer requires testing the |
| 5819 | * function against the global ops, and not just trace any function |
| 5820 | * that any ftrace_ops registered. |
| 5821 | */ |
| 5822 | static void update_function_graph_func(void) |
| 5823 | { |
| 5824 | struct ftrace_ops *op; |
| 5825 | bool do_test = false; |
| 5826 | |
| 5827 | /* |
| 5828 | * The graph and global ops share the same set of functions |
| 5829 | * to test. If any other ops is on the list, then |
| 5830 | * the graph tracing needs to test if its the function |
| 5831 | * it should call. |
| 5832 | */ |
| 5833 | do_for_each_ftrace_op(op, ftrace_ops_list) { |
| 5834 | if (op != &global_ops && op != &graph_ops && |
| 5835 | op != &ftrace_list_end) { |
| 5836 | do_test = true; |
| 5837 | /* in double loop, break out with goto */ |
| 5838 | goto out; |
| 5839 | } |
| 5840 | } while_for_each_ftrace_op(op); |
| 5841 | out: |
| 5842 | if (do_test) |
| 5843 | ftrace_graph_entry = ftrace_graph_entry_test; |
| 5844 | else |
| 5845 | ftrace_graph_entry = __ftrace_graph_entry; |
| 5846 | } |
| 5847 | |
| 5848 | static struct notifier_block ftrace_suspend_notifier = { |
| 5849 | .notifier_call = ftrace_suspend_notifier_call, |
| 5850 | }; |
| 5851 | |
| 5852 | int register_ftrace_graph(trace_func_graph_ret_t retfunc, |
| 5853 | trace_func_graph_ent_t entryfunc) |
| 5854 | { |
| 5855 | int ret = 0; |
| 5856 | |
| 5857 | mutex_lock(&ftrace_lock); |
| 5858 | |
| 5859 | /* we currently allow only one tracer registered at a time */ |
| 5860 | if (ftrace_graph_active) { |
| 5861 | ret = -EBUSY; |
| 5862 | goto out; |
| 5863 | } |
| 5864 | |
| 5865 | register_pm_notifier(&ftrace_suspend_notifier); |
| 5866 | |
| 5867 | ftrace_graph_active++; |
| 5868 | ret = start_graph_tracing(); |
| 5869 | if (ret) { |
| 5870 | ftrace_graph_active--; |
| 5871 | goto out; |
| 5872 | } |
| 5873 | |
| 5874 | ftrace_graph_return = retfunc; |
| 5875 | |
| 5876 | /* |
| 5877 | * Update the indirect function to the entryfunc, and the |
| 5878 | * function that gets called to the entry_test first. Then |
| 5879 | * call the update fgraph entry function to determine if |
| 5880 | * the entryfunc should be called directly or not. |
| 5881 | */ |
| 5882 | __ftrace_graph_entry = entryfunc; |
| 5883 | ftrace_graph_entry = ftrace_graph_entry_test; |
| 5884 | update_function_graph_func(); |
| 5885 | |
| 5886 | ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET); |
| 5887 | out: |
| 5888 | mutex_unlock(&ftrace_lock); |
| 5889 | return ret; |
| 5890 | } |
| 5891 | |
| 5892 | void unregister_ftrace_graph(void) |
| 5893 | { |
| 5894 | mutex_lock(&ftrace_lock); |
| 5895 | |
| 5896 | if (unlikely(!ftrace_graph_active)) |
| 5897 | goto out; |
| 5898 | |
| 5899 | ftrace_graph_active--; |
| 5900 | ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub; |
| 5901 | ftrace_graph_entry = ftrace_graph_entry_stub; |
| 5902 | __ftrace_graph_entry = ftrace_graph_entry_stub; |
| 5903 | ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET); |
| 5904 | unregister_pm_notifier(&ftrace_suspend_notifier); |
| 5905 | unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL); |
| 5906 | |
| 5907 | out: |
| 5908 | mutex_unlock(&ftrace_lock); |
| 5909 | } |
| 5910 | |
| 5911 | static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack); |
| 5912 | |
| 5913 | static void |
| 5914 | graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack) |
| 5915 | { |
| 5916 | atomic_set(&t->tracing_graph_pause, 0); |
| 5917 | atomic_set(&t->trace_overrun, 0); |
| 5918 | t->ftrace_timestamp = 0; |
| 5919 | /* make curr_ret_stack visible before we add the ret_stack */ |
| 5920 | smp_wmb(); |
| 5921 | t->ret_stack = ret_stack; |
| 5922 | } |
| 5923 | |
| 5924 | /* |
| 5925 | * Allocate a return stack for the idle task. May be the first |
| 5926 | * time through, or it may be done by CPU hotplug online. |
| 5927 | */ |
| 5928 | void ftrace_graph_init_idle_task(struct task_struct *t, int cpu) |
| 5929 | { |
| 5930 | t->curr_ret_stack = -1; |
| 5931 | /* |
| 5932 | * The idle task has no parent, it either has its own |
| 5933 | * stack or no stack at all. |
| 5934 | */ |
| 5935 | if (t->ret_stack) |
| 5936 | WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu)); |
| 5937 | |
| 5938 | if (ftrace_graph_active) { |
| 5939 | struct ftrace_ret_stack *ret_stack; |
| 5940 | |
| 5941 | ret_stack = per_cpu(idle_ret_stack, cpu); |
| 5942 | if (!ret_stack) { |
| 5943 | ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH |
| 5944 | * sizeof(struct ftrace_ret_stack), |
| 5945 | GFP_KERNEL); |
| 5946 | if (!ret_stack) |
| 5947 | return; |
| 5948 | per_cpu(idle_ret_stack, cpu) = ret_stack; |
| 5949 | } |
| 5950 | graph_init_task(t, ret_stack); |
| 5951 | } |
| 5952 | } |
| 5953 | |
| 5954 | /* Allocate a return stack for newly created task */ |
| 5955 | void ftrace_graph_init_task(struct task_struct *t) |
| 5956 | { |
| 5957 | /* Make sure we do not use the parent ret_stack */ |
| 5958 | t->ret_stack = NULL; |
| 5959 | t->curr_ret_stack = -1; |
| 5960 | |
| 5961 | if (ftrace_graph_active) { |
| 5962 | struct ftrace_ret_stack *ret_stack; |
| 5963 | |
| 5964 | ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH |
| 5965 | * sizeof(struct ftrace_ret_stack), |
| 5966 | GFP_KERNEL); |
| 5967 | if (!ret_stack) |
| 5968 | return; |
| 5969 | graph_init_task(t, ret_stack); |
| 5970 | } |
| 5971 | } |
| 5972 | |
| 5973 | void ftrace_graph_exit_task(struct task_struct *t) |
| 5974 | { |
| 5975 | struct ftrace_ret_stack *ret_stack = t->ret_stack; |
| 5976 | |
| 5977 | t->ret_stack = NULL; |
| 5978 | /* NULL must become visible to IRQs before we free it: */ |
| 5979 | barrier(); |
| 5980 | |
| 5981 | kfree(ret_stack); |
| 5982 | } |
| 5983 | #endif |