1 // SPDX-License-Identifier: GPL-2.0 2 3 #ifndef _LINUX_KERNEL_TRACE_H 4 #define _LINUX_KERNEL_TRACE_H 5 6 #include <linux/fs.h> 7 #include <linux/atomic.h> 8 #include <linux/sched.h> 9 #include <linux/clocksource.h> 10 #include <linux/ring_buffer.h> 11 #include <linux/mmiotrace.h> 12 #include <linux/tracepoint.h> 13 #include <linux/ftrace.h> 14 #include <linux/trace.h> 15 #include <linux/hw_breakpoint.h> 16 #include <linux/trace_seq.h> 17 #include <linux/trace_events.h> 18 #include <linux/compiler.h> 19 #include <linux/glob.h> 20 #include <linux/irq_work.h> 21 #include <linux/workqueue.h> 22 23 #ifdef CONFIG_FTRACE_SYSCALLS 24 #include <asm/unistd.h> /* For NR_SYSCALLS */ 25 #include <asm/syscall.h> /* some archs define it here */ 26 #endif 27 28 enum trace_type { 29 __TRACE_FIRST_TYPE = 0, 30 31 TRACE_FN, 32 TRACE_CTX, 33 TRACE_WAKE, 34 TRACE_STACK, 35 TRACE_PRINT, 36 TRACE_BPRINT, 37 TRACE_MMIO_RW, 38 TRACE_MMIO_MAP, 39 TRACE_BRANCH, 40 TRACE_GRAPH_RET, 41 TRACE_GRAPH_ENT, 42 TRACE_USER_STACK, 43 TRACE_BLK, 44 TRACE_BPUTS, 45 TRACE_HWLAT, 46 TRACE_RAW_DATA, 47 48 __TRACE_LAST_TYPE, 49 }; 50 51 52 #undef __field 53 #define __field(type, item) type item; 54 55 #undef __field_struct 56 #define __field_struct(type, item) __field(type, item) 57 58 #undef __field_desc 59 #define __field_desc(type, container, item) 60 61 #undef __array 62 #define __array(type, item, size) type item[size]; 63 64 #undef __array_desc 65 #define __array_desc(type, container, item, size) 66 67 #undef __dynamic_array 68 #define __dynamic_array(type, item) type item[]; 69 70 #undef F_STRUCT 71 #define F_STRUCT(args...) args 72 73 #undef FTRACE_ENTRY 74 #define FTRACE_ENTRY(name, struct_name, id, tstruct, print, filter) \ 75 struct struct_name { \ 76 struct trace_entry ent; \ 77 tstruct \ 78 } 79 80 #undef FTRACE_ENTRY_DUP 81 #define FTRACE_ENTRY_DUP(name, name_struct, id, tstruct, printk, filter) 82 83 #undef FTRACE_ENTRY_REG 84 #define FTRACE_ENTRY_REG(name, struct_name, id, tstruct, print, \ 85 filter, regfn) \ 86 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print), \ 87 filter) 88 89 #undef FTRACE_ENTRY_PACKED 90 #define FTRACE_ENTRY_PACKED(name, struct_name, id, tstruct, print, \ 91 filter) \ 92 FTRACE_ENTRY(name, struct_name, id, PARAMS(tstruct), PARAMS(print), \ 93 filter) __packed 94 95 #include "trace_entries.h" 96 97 /* Use this for memory failure errors */ 98 #define MEM_FAIL(condition, fmt, ...) ({ \ 99 static bool __section(.data.once) __warned; \ 100 int __ret_warn_once = !!(condition); \ 101 \ 102 if (unlikely(__ret_warn_once && !__warned)) { \ 103 __warned = true; \ 104 pr_err("ERROR: " fmt, ##__VA_ARGS__); \ 105 } \ 106 unlikely(__ret_warn_once); \ 107 }) 108 109 /* 110 * syscalls are special, and need special handling, this is why 111 * they are not included in trace_entries.h 112 */ 113 struct syscall_trace_enter { 114 struct trace_entry ent; 115 int nr; 116 unsigned long args[]; 117 }; 118 119 struct syscall_trace_exit { 120 struct trace_entry ent; 121 int nr; 122 long ret; 123 }; 124 125 struct kprobe_trace_entry_head { 126 struct trace_entry ent; 127 unsigned long ip; 128 }; 129 130 struct kretprobe_trace_entry_head { 131 struct trace_entry ent; 132 unsigned long func; 133 unsigned long ret_ip; 134 }; 135 136 /* 137 * trace_flag_type is an enumeration that holds different 138 * states when a trace occurs. These are: 139 * IRQS_OFF - interrupts were disabled 140 * IRQS_NOSUPPORT - arch does not support irqs_disabled_flags 141 * NEED_RESCHED - reschedule is requested 142 * HARDIRQ - inside an interrupt handler 143 * SOFTIRQ - inside a softirq handler 144 */ 145 enum trace_flag_type { 146 TRACE_FLAG_IRQS_OFF = 0x01, 147 TRACE_FLAG_IRQS_NOSUPPORT = 0x02, 148 TRACE_FLAG_NEED_RESCHED = 0x04, 149 TRACE_FLAG_HARDIRQ = 0x08, 150 TRACE_FLAG_SOFTIRQ = 0x10, 151 TRACE_FLAG_PREEMPT_RESCHED = 0x20, 152 TRACE_FLAG_NMI = 0x40, 153 }; 154 155 #define TRACE_BUF_SIZE 1024 156 157 struct trace_array; 158 159 /* 160 * The CPU trace array - it consists of thousands of trace entries 161 * plus some other descriptor data: (for example which task started 162 * the trace, etc.) 163 */ 164 struct trace_array_cpu { 165 atomic_t disabled; 166 void *buffer_page; /* ring buffer spare */ 167 168 unsigned long entries; 169 unsigned long saved_latency; 170 unsigned long critical_start; 171 unsigned long critical_end; 172 unsigned long critical_sequence; 173 unsigned long nice; 174 unsigned long policy; 175 unsigned long rt_priority; 176 unsigned long skipped_entries; 177 u64 preempt_timestamp; 178 pid_t pid; 179 kuid_t uid; 180 char comm[TASK_COMM_LEN]; 181 182 bool ignore_pid; 183 #ifdef CONFIG_FUNCTION_TRACER 184 bool ftrace_ignore_pid; 185 #endif 186 }; 187 188 struct tracer; 189 struct trace_option_dentry; 190 191 struct array_buffer { 192 struct trace_array *tr; 193 struct trace_buffer *buffer; 194 struct trace_array_cpu __percpu *data; 195 u64 time_start; 196 int cpu; 197 }; 198 199 #define TRACE_FLAGS_MAX_SIZE 32 200 201 struct trace_options { 202 struct tracer *tracer; 203 struct trace_option_dentry *topts; 204 }; 205 206 struct trace_pid_list { 207 int pid_max; 208 unsigned long *pids; 209 }; 210 211 typedef bool (*cond_update_fn_t)(struct trace_array *tr, void *cond_data); 212 213 /** 214 * struct cond_snapshot - conditional snapshot data and callback 215 * 216 * The cond_snapshot structure encapsulates a callback function and 217 * data associated with the snapshot for a given tracing instance. 218 * 219 * When a snapshot is taken conditionally, by invoking 220 * tracing_snapshot_cond(tr, cond_data), the cond_data passed in is 221 * passed in turn to the cond_snapshot.update() function. That data 222 * can be compared by the update() implementation with the cond_data 223 * contained wihin the struct cond_snapshot instance associated with 224 * the trace_array. Because the tr->max_lock is held throughout the 225 * update() call, the update() function can directly retrieve the 226 * cond_snapshot and cond_data associated with the per-instance 227 * snapshot associated with the trace_array. 228 * 229 * The cond_snapshot.update() implementation can save data to be 230 * associated with the snapshot if it decides to, and returns 'true' 231 * in that case, or it returns 'false' if the conditional snapshot 232 * shouldn't be taken. 233 * 234 * The cond_snapshot instance is created and associated with the 235 * user-defined cond_data by tracing_cond_snapshot_enable(). 236 * Likewise, the cond_snapshot instance is destroyed and is no longer 237 * associated with the trace instance by 238 * tracing_cond_snapshot_disable(). 239 * 240 * The method below is required. 241 * 242 * @update: When a conditional snapshot is invoked, the update() 243 * callback function is invoked with the tr->max_lock held. The 244 * update() implementation signals whether or not to actually 245 * take the snapshot, by returning 'true' if so, 'false' if no 246 * snapshot should be taken. Because the max_lock is held for 247 * the duration of update(), the implementation is safe to 248 * directly retrieven and save any implementation data it needs 249 * to in association with the snapshot. 250 */ 251 struct cond_snapshot { 252 void *cond_data; 253 cond_update_fn_t update; 254 }; 255 256 /* 257 * The trace array - an array of per-CPU trace arrays. This is the 258 * highest level data structure that individual tracers deal with. 259 * They have on/off state as well: 260 */ 261 struct trace_array { 262 struct list_head list; 263 char *name; 264 struct array_buffer array_buffer; 265 #ifdef CONFIG_TRACER_MAX_TRACE 266 /* 267 * The max_buffer is used to snapshot the trace when a maximum 268 * latency is reached, or when the user initiates a snapshot. 269 * Some tracers will use this to store a maximum trace while 270 * it continues examining live traces. 271 * 272 * The buffers for the max_buffer are set up the same as the array_buffer 273 * When a snapshot is taken, the buffer of the max_buffer is swapped 274 * with the buffer of the array_buffer and the buffers are reset for 275 * the array_buffer so the tracing can continue. 276 */ 277 struct array_buffer max_buffer; 278 bool allocated_snapshot; 279 #endif 280 #if defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER) 281 unsigned long max_latency; 282 #ifdef CONFIG_FSNOTIFY 283 struct dentry *d_max_latency; 284 struct work_struct fsnotify_work; 285 struct irq_work fsnotify_irqwork; 286 #endif 287 #endif 288 struct trace_pid_list __rcu *filtered_pids; 289 /* 290 * max_lock is used to protect the swapping of buffers 291 * when taking a max snapshot. The buffers themselves are 292 * protected by per_cpu spinlocks. But the action of the swap 293 * needs its own lock. 294 * 295 * This is defined as a arch_spinlock_t in order to help 296 * with performance when lockdep debugging is enabled. 297 * 298 * It is also used in other places outside the update_max_tr 299 * so it needs to be defined outside of the 300 * CONFIG_TRACER_MAX_TRACE. 301 */ 302 arch_spinlock_t max_lock; 303 int buffer_disabled; 304 #ifdef CONFIG_FTRACE_SYSCALLS 305 int sys_refcount_enter; 306 int sys_refcount_exit; 307 struct trace_event_file __rcu *enter_syscall_files[NR_syscalls]; 308 struct trace_event_file __rcu *exit_syscall_files[NR_syscalls]; 309 #endif 310 int stop_count; 311 int clock_id; 312 int nr_topts; 313 bool clear_trace; 314 int buffer_percent; 315 unsigned int n_err_log_entries; 316 struct tracer *current_trace; 317 unsigned int trace_flags; 318 unsigned char trace_flags_index[TRACE_FLAGS_MAX_SIZE]; 319 unsigned int flags; 320 raw_spinlock_t start_lock; 321 struct list_head err_log; 322 struct dentry *dir; 323 struct dentry *options; 324 struct dentry *percpu_dir; 325 struct dentry *event_dir; 326 struct trace_options *topts; 327 struct list_head systems; 328 struct list_head events; 329 struct trace_event_file *trace_marker_file; 330 cpumask_var_t tracing_cpumask; /* only trace on set CPUs */ 331 int ref; 332 #ifdef CONFIG_FUNCTION_TRACER 333 struct ftrace_ops *ops; 334 struct trace_pid_list __rcu *function_pids; 335 #ifdef CONFIG_DYNAMIC_FTRACE 336 /* All of these are protected by the ftrace_lock */ 337 struct list_head func_probes; 338 struct list_head mod_trace; 339 struct list_head mod_notrace; 340 #endif 341 /* function tracing enabled */ 342 int function_enabled; 343 #endif 344 int time_stamp_abs_ref; 345 struct list_head hist_vars; 346 #ifdef CONFIG_TRACER_SNAPSHOT 347 struct cond_snapshot *cond_snapshot; 348 #endif 349 }; 350 351 enum { 352 TRACE_ARRAY_FL_GLOBAL = (1 << 0) 353 }; 354 355 extern struct list_head ftrace_trace_arrays; 356 357 extern struct mutex trace_types_lock; 358 359 extern int trace_array_get(struct trace_array *tr); 360 extern int tracing_check_open_get_tr(struct trace_array *tr); 361 extern struct trace_array *trace_array_find(const char *instance); 362 extern struct trace_array *trace_array_find_get(const char *instance); 363 364 extern int tracing_set_time_stamp_abs(struct trace_array *tr, bool abs); 365 extern int tracing_set_clock(struct trace_array *tr, const char *clockstr); 366 367 extern bool trace_clock_in_ns(struct trace_array *tr); 368 369 /* 370 * The global tracer (top) should be the first trace array added, 371 * but we check the flag anyway. 372 */ 373 static inline struct trace_array *top_trace_array(void) 374 { 375 struct trace_array *tr; 376 377 if (list_empty(&ftrace_trace_arrays)) 378 return NULL; 379 380 tr = list_entry(ftrace_trace_arrays.prev, 381 typeof(*tr), list); 382 WARN_ON(!(tr->flags & TRACE_ARRAY_FL_GLOBAL)); 383 return tr; 384 } 385 386 #define FTRACE_CMP_TYPE(var, type) \ 387 __builtin_types_compatible_p(typeof(var), type *) 388 389 #undef IF_ASSIGN 390 #define IF_ASSIGN(var, entry, etype, id) \ 391 if (FTRACE_CMP_TYPE(var, etype)) { \ 392 var = (typeof(var))(entry); \ 393 WARN_ON(id != 0 && (entry)->type != id); \ 394 break; \ 395 } 396 397 /* Will cause compile errors if type is not found. */ 398 extern void __ftrace_bad_type(void); 399 400 /* 401 * The trace_assign_type is a verifier that the entry type is 402 * the same as the type being assigned. To add new types simply 403 * add a line with the following format: 404 * 405 * IF_ASSIGN(var, ent, type, id); 406 * 407 * Where "type" is the trace type that includes the trace_entry 408 * as the "ent" item. And "id" is the trace identifier that is 409 * used in the trace_type enum. 410 * 411 * If the type can have more than one id, then use zero. 412 */ 413 #define trace_assign_type(var, ent) \ 414 do { \ 415 IF_ASSIGN(var, ent, struct ftrace_entry, TRACE_FN); \ 416 IF_ASSIGN(var, ent, struct ctx_switch_entry, 0); \ 417 IF_ASSIGN(var, ent, struct stack_entry, TRACE_STACK); \ 418 IF_ASSIGN(var, ent, struct userstack_entry, TRACE_USER_STACK);\ 419 IF_ASSIGN(var, ent, struct print_entry, TRACE_PRINT); \ 420 IF_ASSIGN(var, ent, struct bprint_entry, TRACE_BPRINT); \ 421 IF_ASSIGN(var, ent, struct bputs_entry, TRACE_BPUTS); \ 422 IF_ASSIGN(var, ent, struct hwlat_entry, TRACE_HWLAT); \ 423 IF_ASSIGN(var, ent, struct raw_data_entry, TRACE_RAW_DATA);\ 424 IF_ASSIGN(var, ent, struct trace_mmiotrace_rw, \ 425 TRACE_MMIO_RW); \ 426 IF_ASSIGN(var, ent, struct trace_mmiotrace_map, \ 427 TRACE_MMIO_MAP); \ 428 IF_ASSIGN(var, ent, struct trace_branch, TRACE_BRANCH); \ 429 IF_ASSIGN(var, ent, struct ftrace_graph_ent_entry, \ 430 TRACE_GRAPH_ENT); \ 431 IF_ASSIGN(var, ent, struct ftrace_graph_ret_entry, \ 432 TRACE_GRAPH_RET); \ 433 __ftrace_bad_type(); \ 434 } while (0) 435 436 /* 437 * An option specific to a tracer. This is a boolean value. 438 * The bit is the bit index that sets its value on the 439 * flags value in struct tracer_flags. 440 */ 441 struct tracer_opt { 442 const char *name; /* Will appear on the trace_options file */ 443 u32 bit; /* Mask assigned in val field in tracer_flags */ 444 }; 445 446 /* 447 * The set of specific options for a tracer. Your tracer 448 * have to set the initial value of the flags val. 449 */ 450 struct tracer_flags { 451 u32 val; 452 struct tracer_opt *opts; 453 struct tracer *trace; 454 }; 455 456 /* Makes more easy to define a tracer opt */ 457 #define TRACER_OPT(s, b) .name = #s, .bit = b 458 459 460 struct trace_option_dentry { 461 struct tracer_opt *opt; 462 struct tracer_flags *flags; 463 struct trace_array *tr; 464 struct dentry *entry; 465 }; 466 467 /** 468 * struct tracer - a specific tracer and its callbacks to interact with tracefs 469 * @name: the name chosen to select it on the available_tracers file 470 * @init: called when one switches to this tracer (echo name > current_tracer) 471 * @reset: called when one switches to another tracer 472 * @start: called when tracing is unpaused (echo 1 > tracing_on) 473 * @stop: called when tracing is paused (echo 0 > tracing_on) 474 * @update_thresh: called when tracing_thresh is updated 475 * @open: called when the trace file is opened 476 * @pipe_open: called when the trace_pipe file is opened 477 * @close: called when the trace file is released 478 * @pipe_close: called when the trace_pipe file is released 479 * @read: override the default read callback on trace_pipe 480 * @splice_read: override the default splice_read callback on trace_pipe 481 * @selftest: selftest to run on boot (see trace_selftest.c) 482 * @print_headers: override the first lines that describe your columns 483 * @print_line: callback that prints a trace 484 * @set_flag: signals one of your private flags changed (trace_options file) 485 * @flags: your private flags 486 */ 487 struct tracer { 488 const char *name; 489 int (*init)(struct trace_array *tr); 490 void (*reset)(struct trace_array *tr); 491 void (*start)(struct trace_array *tr); 492 void (*stop)(struct trace_array *tr); 493 int (*update_thresh)(struct trace_array *tr); 494 void (*open)(struct trace_iterator *iter); 495 void (*pipe_open)(struct trace_iterator *iter); 496 void (*close)(struct trace_iterator *iter); 497 void (*pipe_close)(struct trace_iterator *iter); 498 ssize_t (*read)(struct trace_iterator *iter, 499 struct file *filp, char __user *ubuf, 500 size_t cnt, loff_t *ppos); 501 ssize_t (*splice_read)(struct trace_iterator *iter, 502 struct file *filp, 503 loff_t *ppos, 504 struct pipe_inode_info *pipe, 505 size_t len, 506 unsigned int flags); 507 #ifdef CONFIG_FTRACE_STARTUP_TEST 508 int (*selftest)(struct tracer *trace, 509 struct trace_array *tr); 510 #endif 511 void (*print_header)(struct seq_file *m); 512 enum print_line_t (*print_line)(struct trace_iterator *iter); 513 /* If you handled the flag setting, return 0 */ 514 int (*set_flag)(struct trace_array *tr, 515 u32 old_flags, u32 bit, int set); 516 /* Return 0 if OK with change, else return non-zero */ 517 int (*flag_changed)(struct trace_array *tr, 518 u32 mask, int set); 519 struct tracer *next; 520 struct tracer_flags *flags; 521 int enabled; 522 int ref; 523 bool print_max; 524 bool allow_instances; 525 #ifdef CONFIG_TRACER_MAX_TRACE 526 bool use_max_tr; 527 #endif 528 /* True if tracer cannot be enabled in kernel param */ 529 bool noboot; 530 }; 531 532 533 /* Only current can touch trace_recursion */ 534 535 /* 536 * For function tracing recursion: 537 * The order of these bits are important. 538 * 539 * When function tracing occurs, the following steps are made: 540 * If arch does not support a ftrace feature: 541 * call internal function (uses INTERNAL bits) which calls... 542 * If callback is registered to the "global" list, the list 543 * function is called and recursion checks the GLOBAL bits. 544 * then this function calls... 545 * The function callback, which can use the FTRACE bits to 546 * check for recursion. 547 * 548 * Now if the arch does not suppport a feature, and it calls 549 * the global list function which calls the ftrace callback 550 * all three of these steps will do a recursion protection. 551 * There's no reason to do one if the previous caller already 552 * did. The recursion that we are protecting against will 553 * go through the same steps again. 554 * 555 * To prevent the multiple recursion checks, if a recursion 556 * bit is set that is higher than the MAX bit of the current 557 * check, then we know that the check was made by the previous 558 * caller, and we can skip the current check. 559 */ 560 enum { 561 TRACE_BUFFER_BIT, 562 TRACE_BUFFER_NMI_BIT, 563 TRACE_BUFFER_IRQ_BIT, 564 TRACE_BUFFER_SIRQ_BIT, 565 566 /* Start of function recursion bits */ 567 TRACE_FTRACE_BIT, 568 TRACE_FTRACE_NMI_BIT, 569 TRACE_FTRACE_IRQ_BIT, 570 TRACE_FTRACE_SIRQ_BIT, 571 572 /* INTERNAL_BITs must be greater than FTRACE_BITs */ 573 TRACE_INTERNAL_BIT, 574 TRACE_INTERNAL_NMI_BIT, 575 TRACE_INTERNAL_IRQ_BIT, 576 TRACE_INTERNAL_SIRQ_BIT, 577 578 TRACE_BRANCH_BIT, 579 /* 580 * Abuse of the trace_recursion. 581 * As we need a way to maintain state if we are tracing the function 582 * graph in irq because we want to trace a particular function that 583 * was called in irq context but we have irq tracing off. Since this 584 * can only be modified by current, we can reuse trace_recursion. 585 */ 586 TRACE_IRQ_BIT, 587 588 /* Set if the function is in the set_graph_function file */ 589 TRACE_GRAPH_BIT, 590 591 /* 592 * In the very unlikely case that an interrupt came in 593 * at a start of graph tracing, and we want to trace 594 * the function in that interrupt, the depth can be greater 595 * than zero, because of the preempted start of a previous 596 * trace. In an even more unlikely case, depth could be 2 597 * if a softirq interrupted the start of graph tracing, 598 * followed by an interrupt preempting a start of graph 599 * tracing in the softirq, and depth can even be 3 600 * if an NMI came in at the start of an interrupt function 601 * that preempted a softirq start of a function that 602 * preempted normal context!!!! Luckily, it can't be 603 * greater than 3, so the next two bits are a mask 604 * of what the depth is when we set TRACE_GRAPH_BIT 605 */ 606 607 TRACE_GRAPH_DEPTH_START_BIT, 608 TRACE_GRAPH_DEPTH_END_BIT, 609 610 /* 611 * To implement set_graph_notrace, if this bit is set, we ignore 612 * function graph tracing of called functions, until the return 613 * function is called to clear it. 614 */ 615 TRACE_GRAPH_NOTRACE_BIT, 616 }; 617 618 #define trace_recursion_set(bit) do { (current)->trace_recursion |= (1<<(bit)); } while (0) 619 #define trace_recursion_clear(bit) do { (current)->trace_recursion &= ~(1<<(bit)); } while (0) 620 #define trace_recursion_test(bit) ((current)->trace_recursion & (1<<(bit))) 621 622 #define trace_recursion_depth() \ 623 (((current)->trace_recursion >> TRACE_GRAPH_DEPTH_START_BIT) & 3) 624 #define trace_recursion_set_depth(depth) \ 625 do { \ 626 current->trace_recursion &= \ 627 ~(3 << TRACE_GRAPH_DEPTH_START_BIT); \ 628 current->trace_recursion |= \ 629 ((depth) & 3) << TRACE_GRAPH_DEPTH_START_BIT; \ 630 } while (0) 631 632 #define TRACE_CONTEXT_BITS 4 633 634 #define TRACE_FTRACE_START TRACE_FTRACE_BIT 635 #define TRACE_FTRACE_MAX ((1 << (TRACE_FTRACE_START + TRACE_CONTEXT_BITS)) - 1) 636 637 #define TRACE_LIST_START TRACE_INTERNAL_BIT 638 #define TRACE_LIST_MAX ((1 << (TRACE_LIST_START + TRACE_CONTEXT_BITS)) - 1) 639 640 #define TRACE_CONTEXT_MASK TRACE_LIST_MAX 641 642 static __always_inline int trace_get_context_bit(void) 643 { 644 int bit; 645 646 if (in_interrupt()) { 647 if (in_nmi()) 648 bit = 0; 649 650 else if (in_irq()) 651 bit = 1; 652 else 653 bit = 2; 654 } else 655 bit = 3; 656 657 return bit; 658 } 659 660 static __always_inline int trace_test_and_set_recursion(int start, int max) 661 { 662 unsigned int val = current->trace_recursion; 663 int bit; 664 665 /* A previous recursion check was made */ 666 if ((val & TRACE_CONTEXT_MASK) > max) 667 return 0; 668 669 bit = trace_get_context_bit() + start; 670 if (unlikely(val & (1 << bit))) 671 return -1; 672 673 val |= 1 << bit; 674 current->trace_recursion = val; 675 barrier(); 676 677 return bit; 678 } 679 680 static __always_inline void trace_clear_recursion(int bit) 681 { 682 unsigned int val = current->trace_recursion; 683 684 if (!bit) 685 return; 686 687 bit = 1 << bit; 688 val &= ~bit; 689 690 barrier(); 691 current->trace_recursion = val; 692 } 693 694 static inline struct ring_buffer_iter * 695 trace_buffer_iter(struct trace_iterator *iter, int cpu) 696 { 697 return iter->buffer_iter ? iter->buffer_iter[cpu] : NULL; 698 } 699 700 int tracer_init(struct tracer *t, struct trace_array *tr); 701 int tracing_is_enabled(void); 702 void tracing_reset_online_cpus(struct array_buffer *buf); 703 void tracing_reset_current(int cpu); 704 void tracing_reset_all_online_cpus(void); 705 int tracing_open_generic(struct inode *inode, struct file *filp); 706 int tracing_open_generic_tr(struct inode *inode, struct file *filp); 707 bool tracing_is_disabled(void); 708 bool tracer_tracing_is_on(struct trace_array *tr); 709 void tracer_tracing_on(struct trace_array *tr); 710 void tracer_tracing_off(struct trace_array *tr); 711 struct dentry *trace_create_file(const char *name, 712 umode_t mode, 713 struct dentry *parent, 714 void *data, 715 const struct file_operations *fops); 716 717 struct dentry *tracing_init_dentry(void); 718 719 struct ring_buffer_event; 720 721 struct ring_buffer_event * 722 trace_buffer_lock_reserve(struct trace_buffer *buffer, 723 int type, 724 unsigned long len, 725 unsigned long flags, 726 int pc); 727 728 struct trace_entry *tracing_get_trace_entry(struct trace_array *tr, 729 struct trace_array_cpu *data); 730 731 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter, 732 int *ent_cpu, u64 *ent_ts); 733 734 void trace_buffer_unlock_commit_nostack(struct trace_buffer *buffer, 735 struct ring_buffer_event *event); 736 737 int trace_empty(struct trace_iterator *iter); 738 739 void *trace_find_next_entry_inc(struct trace_iterator *iter); 740 741 void trace_init_global_iter(struct trace_iterator *iter); 742 743 void tracing_iter_reset(struct trace_iterator *iter, int cpu); 744 745 unsigned long trace_total_entries_cpu(struct trace_array *tr, int cpu); 746 unsigned long trace_total_entries(struct trace_array *tr); 747 748 void trace_function(struct trace_array *tr, 749 unsigned long ip, 750 unsigned long parent_ip, 751 unsigned long flags, int pc); 752 void trace_graph_function(struct trace_array *tr, 753 unsigned long ip, 754 unsigned long parent_ip, 755 unsigned long flags, int pc); 756 void trace_latency_header(struct seq_file *m); 757 void trace_default_header(struct seq_file *m); 758 void print_trace_header(struct seq_file *m, struct trace_iterator *iter); 759 int trace_empty(struct trace_iterator *iter); 760 761 void trace_graph_return(struct ftrace_graph_ret *trace); 762 int trace_graph_entry(struct ftrace_graph_ent *trace); 763 void set_graph_array(struct trace_array *tr); 764 765 void tracing_start_cmdline_record(void); 766 void tracing_stop_cmdline_record(void); 767 void tracing_start_tgid_record(void); 768 void tracing_stop_tgid_record(void); 769 770 int register_tracer(struct tracer *type); 771 int is_tracing_stopped(void); 772 773 loff_t tracing_lseek(struct file *file, loff_t offset, int whence); 774 775 extern cpumask_var_t __read_mostly tracing_buffer_mask; 776 777 #define for_each_tracing_cpu(cpu) \ 778 for_each_cpu(cpu, tracing_buffer_mask) 779 780 extern unsigned long nsecs_to_usecs(unsigned long nsecs); 781 782 extern unsigned long tracing_thresh; 783 784 /* PID filtering */ 785 786 extern int pid_max; 787 788 bool trace_find_filtered_pid(struct trace_pid_list *filtered_pids, 789 pid_t search_pid); 790 bool trace_ignore_this_task(struct trace_pid_list *filtered_pids, 791 struct task_struct *task); 792 void trace_filter_add_remove_task(struct trace_pid_list *pid_list, 793 struct task_struct *self, 794 struct task_struct *task); 795 void *trace_pid_next(struct trace_pid_list *pid_list, void *v, loff_t *pos); 796 void *trace_pid_start(struct trace_pid_list *pid_list, loff_t *pos); 797 int trace_pid_show(struct seq_file *m, void *v); 798 void trace_free_pid_list(struct trace_pid_list *pid_list); 799 int trace_pid_write(struct trace_pid_list *filtered_pids, 800 struct trace_pid_list **new_pid_list, 801 const char __user *ubuf, size_t cnt); 802 803 #ifdef CONFIG_TRACER_MAX_TRACE 804 void update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu, 805 void *cond_data); 806 void update_max_tr_single(struct trace_array *tr, 807 struct task_struct *tsk, int cpu); 808 #endif /* CONFIG_TRACER_MAX_TRACE */ 809 810 #if (defined(CONFIG_TRACER_MAX_TRACE) || defined(CONFIG_HWLAT_TRACER)) && \ 811 defined(CONFIG_FSNOTIFY) 812 813 void latency_fsnotify(struct trace_array *tr); 814 815 #else 816 817 static inline void latency_fsnotify(struct trace_array *tr) { } 818 819 #endif 820 821 #ifdef CONFIG_STACKTRACE 822 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip, 823 int pc); 824 #else 825 static inline void __trace_stack(struct trace_array *tr, unsigned long flags, 826 int skip, int pc) 827 { 828 } 829 #endif /* CONFIG_STACKTRACE */ 830 831 extern u64 ftrace_now(int cpu); 832 833 extern void trace_find_cmdline(int pid, char comm[]); 834 extern int trace_find_tgid(int pid); 835 extern void trace_event_follow_fork(struct trace_array *tr, bool enable); 836 837 #ifdef CONFIG_DYNAMIC_FTRACE 838 extern unsigned long ftrace_update_tot_cnt; 839 extern unsigned long ftrace_number_of_pages; 840 extern unsigned long ftrace_number_of_groups; 841 void ftrace_init_trace_array(struct trace_array *tr); 842 #else 843 static inline void ftrace_init_trace_array(struct trace_array *tr) { } 844 #endif 845 #define DYN_FTRACE_TEST_NAME trace_selftest_dynamic_test_func 846 extern int DYN_FTRACE_TEST_NAME(void); 847 #define DYN_FTRACE_TEST_NAME2 trace_selftest_dynamic_test_func2 848 extern int DYN_FTRACE_TEST_NAME2(void); 849 850 extern bool ring_buffer_expanded; 851 extern bool tracing_selftest_disabled; 852 853 #ifdef CONFIG_FTRACE_STARTUP_TEST 854 extern int trace_selftest_startup_function(struct tracer *trace, 855 struct trace_array *tr); 856 extern int trace_selftest_startup_function_graph(struct tracer *trace, 857 struct trace_array *tr); 858 extern int trace_selftest_startup_irqsoff(struct tracer *trace, 859 struct trace_array *tr); 860 extern int trace_selftest_startup_preemptoff(struct tracer *trace, 861 struct trace_array *tr); 862 extern int trace_selftest_startup_preemptirqsoff(struct tracer *trace, 863 struct trace_array *tr); 864 extern int trace_selftest_startup_wakeup(struct tracer *trace, 865 struct trace_array *tr); 866 extern int trace_selftest_startup_nop(struct tracer *trace, 867 struct trace_array *tr); 868 extern int trace_selftest_startup_branch(struct tracer *trace, 869 struct trace_array *tr); 870 /* 871 * Tracer data references selftest functions that only occur 872 * on boot up. These can be __init functions. Thus, when selftests 873 * are enabled, then the tracers need to reference __init functions. 874 */ 875 #define __tracer_data __refdata 876 #else 877 /* Tracers are seldom changed. Optimize when selftests are disabled. */ 878 #define __tracer_data __read_mostly 879 #endif /* CONFIG_FTRACE_STARTUP_TEST */ 880 881 extern void *head_page(struct trace_array_cpu *data); 882 extern unsigned long long ns2usecs(u64 nsec); 883 extern int 884 trace_vbprintk(unsigned long ip, const char *fmt, va_list args); 885 extern int 886 trace_vprintk(unsigned long ip, const char *fmt, va_list args); 887 extern int 888 trace_array_vprintk(struct trace_array *tr, 889 unsigned long ip, const char *fmt, va_list args); 890 int trace_array_printk_buf(struct trace_buffer *buffer, 891 unsigned long ip, const char *fmt, ...); 892 void trace_printk_seq(struct trace_seq *s); 893 enum print_line_t print_trace_line(struct trace_iterator *iter); 894 895 extern char trace_find_mark(unsigned long long duration); 896 897 struct ftrace_hash; 898 899 struct ftrace_mod_load { 900 struct list_head list; 901 char *func; 902 char *module; 903 int enable; 904 }; 905 906 enum { 907 FTRACE_HASH_FL_MOD = (1 << 0), 908 }; 909 910 struct ftrace_hash { 911 unsigned long size_bits; 912 struct hlist_head *buckets; 913 unsigned long count; 914 unsigned long flags; 915 struct rcu_head rcu; 916 }; 917 918 struct ftrace_func_entry * 919 ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip); 920 921 static __always_inline bool ftrace_hash_empty(struct ftrace_hash *hash) 922 { 923 return !hash || !(hash->count || (hash->flags & FTRACE_HASH_FL_MOD)); 924 } 925 926 /* Standard output formatting function used for function return traces */ 927 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 928 929 /* Flag options */ 930 #define TRACE_GRAPH_PRINT_OVERRUN 0x1 931 #define TRACE_GRAPH_PRINT_CPU 0x2 932 #define TRACE_GRAPH_PRINT_OVERHEAD 0x4 933 #define TRACE_GRAPH_PRINT_PROC 0x8 934 #define TRACE_GRAPH_PRINT_DURATION 0x10 935 #define TRACE_GRAPH_PRINT_ABS_TIME 0x20 936 #define TRACE_GRAPH_PRINT_REL_TIME 0x40 937 #define TRACE_GRAPH_PRINT_IRQS 0x80 938 #define TRACE_GRAPH_PRINT_TAIL 0x100 939 #define TRACE_GRAPH_SLEEP_TIME 0x200 940 #define TRACE_GRAPH_GRAPH_TIME 0x400 941 #define TRACE_GRAPH_PRINT_FILL_SHIFT 28 942 #define TRACE_GRAPH_PRINT_FILL_MASK (0x3 << TRACE_GRAPH_PRINT_FILL_SHIFT) 943 944 extern void ftrace_graph_sleep_time_control(bool enable); 945 946 #ifdef CONFIG_FUNCTION_PROFILER 947 extern void ftrace_graph_graph_time_control(bool enable); 948 #else 949 static inline void ftrace_graph_graph_time_control(bool enable) { } 950 #endif 951 952 extern enum print_line_t 953 print_graph_function_flags(struct trace_iterator *iter, u32 flags); 954 extern void print_graph_headers_flags(struct seq_file *s, u32 flags); 955 extern void 956 trace_print_graph_duration(unsigned long long duration, struct trace_seq *s); 957 extern void graph_trace_open(struct trace_iterator *iter); 958 extern void graph_trace_close(struct trace_iterator *iter); 959 extern int __trace_graph_entry(struct trace_array *tr, 960 struct ftrace_graph_ent *trace, 961 unsigned long flags, int pc); 962 extern void __trace_graph_return(struct trace_array *tr, 963 struct ftrace_graph_ret *trace, 964 unsigned long flags, int pc); 965 966 #ifdef CONFIG_DYNAMIC_FTRACE 967 extern struct ftrace_hash __rcu *ftrace_graph_hash; 968 extern struct ftrace_hash __rcu *ftrace_graph_notrace_hash; 969 970 static inline int ftrace_graph_addr(struct ftrace_graph_ent *trace) 971 { 972 unsigned long addr = trace->func; 973 int ret = 0; 974 struct ftrace_hash *hash; 975 976 preempt_disable_notrace(); 977 978 /* 979 * Have to open code "rcu_dereference_sched()" because the 980 * function graph tracer can be called when RCU is not 981 * "watching". 982 * Protected with schedule_on_each_cpu(ftrace_sync) 983 */ 984 hash = rcu_dereference_protected(ftrace_graph_hash, !preemptible()); 985 986 if (ftrace_hash_empty(hash)) { 987 ret = 1; 988 goto out; 989 } 990 991 if (ftrace_lookup_ip(hash, addr)) { 992 993 /* 994 * This needs to be cleared on the return functions 995 * when the depth is zero. 996 */ 997 trace_recursion_set(TRACE_GRAPH_BIT); 998 trace_recursion_set_depth(trace->depth); 999 1000 /* 1001 * If no irqs are to be traced, but a set_graph_function 1002 * is set, and called by an interrupt handler, we still 1003 * want to trace it. 1004 */ 1005 if (in_irq()) 1006 trace_recursion_set(TRACE_IRQ_BIT); 1007 else 1008 trace_recursion_clear(TRACE_IRQ_BIT); 1009 ret = 1; 1010 } 1011 1012 out: 1013 preempt_enable_notrace(); 1014 return ret; 1015 } 1016 1017 static inline void ftrace_graph_addr_finish(struct ftrace_graph_ret *trace) 1018 { 1019 if (trace_recursion_test(TRACE_GRAPH_BIT) && 1020 trace->depth == trace_recursion_depth()) 1021 trace_recursion_clear(TRACE_GRAPH_BIT); 1022 } 1023 1024 static inline int ftrace_graph_notrace_addr(unsigned long addr) 1025 { 1026 int ret = 0; 1027 struct ftrace_hash *notrace_hash; 1028 1029 preempt_disable_notrace(); 1030 1031 /* 1032 * Have to open code "rcu_dereference_sched()" because the 1033 * function graph tracer can be called when RCU is not 1034 * "watching". 1035 * Protected with schedule_on_each_cpu(ftrace_sync) 1036 */ 1037 notrace_hash = rcu_dereference_protected(ftrace_graph_notrace_hash, 1038 !preemptible()); 1039 1040 if (ftrace_lookup_ip(notrace_hash, addr)) 1041 ret = 1; 1042 1043 preempt_enable_notrace(); 1044 return ret; 1045 } 1046 #else 1047 static inline int ftrace_graph_addr(struct ftrace_graph_ent *trace) 1048 { 1049 return 1; 1050 } 1051 1052 static inline int ftrace_graph_notrace_addr(unsigned long addr) 1053 { 1054 return 0; 1055 } 1056 static inline void ftrace_graph_addr_finish(struct ftrace_graph_ret *trace) 1057 { } 1058 #endif /* CONFIG_DYNAMIC_FTRACE */ 1059 1060 extern unsigned int fgraph_max_depth; 1061 1062 static inline bool ftrace_graph_ignore_func(struct ftrace_graph_ent *trace) 1063 { 1064 /* trace it when it is-nested-in or is a function enabled. */ 1065 return !(trace_recursion_test(TRACE_GRAPH_BIT) || 1066 ftrace_graph_addr(trace)) || 1067 (trace->depth < 0) || 1068 (fgraph_max_depth && trace->depth >= fgraph_max_depth); 1069 } 1070 1071 #else /* CONFIG_FUNCTION_GRAPH_TRACER */ 1072 static inline enum print_line_t 1073 print_graph_function_flags(struct trace_iterator *iter, u32 flags) 1074 { 1075 return TRACE_TYPE_UNHANDLED; 1076 } 1077 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */ 1078 1079 extern struct list_head ftrace_pids; 1080 1081 #ifdef CONFIG_FUNCTION_TRACER 1082 struct ftrace_func_command { 1083 struct list_head list; 1084 char *name; 1085 int (*func)(struct trace_array *tr, 1086 struct ftrace_hash *hash, 1087 char *func, char *cmd, 1088 char *params, int enable); 1089 }; 1090 extern bool ftrace_filter_param __initdata; 1091 static inline int ftrace_trace_task(struct trace_array *tr) 1092 { 1093 return !this_cpu_read(tr->array_buffer.data->ftrace_ignore_pid); 1094 } 1095 extern int ftrace_is_dead(void); 1096 int ftrace_create_function_files(struct trace_array *tr, 1097 struct dentry *parent); 1098 void ftrace_destroy_function_files(struct trace_array *tr); 1099 void ftrace_init_global_array_ops(struct trace_array *tr); 1100 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func); 1101 void ftrace_reset_array_ops(struct trace_array *tr); 1102 void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer); 1103 void ftrace_init_tracefs_toplevel(struct trace_array *tr, 1104 struct dentry *d_tracer); 1105 void ftrace_clear_pids(struct trace_array *tr); 1106 int init_function_trace(void); 1107 void ftrace_pid_follow_fork(struct trace_array *tr, bool enable); 1108 #else 1109 static inline int ftrace_trace_task(struct trace_array *tr) 1110 { 1111 return 1; 1112 } 1113 static inline int ftrace_is_dead(void) { return 0; } 1114 static inline int 1115 ftrace_create_function_files(struct trace_array *tr, 1116 struct dentry *parent) 1117 { 1118 return 0; 1119 } 1120 static inline void ftrace_destroy_function_files(struct trace_array *tr) { } 1121 static inline __init void 1122 ftrace_init_global_array_ops(struct trace_array *tr) { } 1123 static inline void ftrace_reset_array_ops(struct trace_array *tr) { } 1124 static inline void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d) { } 1125 static inline void ftrace_init_tracefs_toplevel(struct trace_array *tr, struct dentry *d) { } 1126 static inline void ftrace_clear_pids(struct trace_array *tr) { } 1127 static inline int init_function_trace(void) { return 0; } 1128 static inline void ftrace_pid_follow_fork(struct trace_array *tr, bool enable) { } 1129 /* ftace_func_t type is not defined, use macro instead of static inline */ 1130 #define ftrace_init_array_ops(tr, func) do { } while (0) 1131 #endif /* CONFIG_FUNCTION_TRACER */ 1132 1133 #if defined(CONFIG_FUNCTION_TRACER) && defined(CONFIG_DYNAMIC_FTRACE) 1134 1135 struct ftrace_probe_ops { 1136 void (*func)(unsigned long ip, 1137 unsigned long parent_ip, 1138 struct trace_array *tr, 1139 struct ftrace_probe_ops *ops, 1140 void *data); 1141 int (*init)(struct ftrace_probe_ops *ops, 1142 struct trace_array *tr, 1143 unsigned long ip, void *init_data, 1144 void **data); 1145 void (*free)(struct ftrace_probe_ops *ops, 1146 struct trace_array *tr, 1147 unsigned long ip, void *data); 1148 int (*print)(struct seq_file *m, 1149 unsigned long ip, 1150 struct ftrace_probe_ops *ops, 1151 void *data); 1152 }; 1153 1154 struct ftrace_func_mapper; 1155 typedef int (*ftrace_mapper_func)(void *data); 1156 1157 struct ftrace_func_mapper *allocate_ftrace_func_mapper(void); 1158 void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper, 1159 unsigned long ip); 1160 int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper, 1161 unsigned long ip, void *data); 1162 void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper, 1163 unsigned long ip); 1164 void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper, 1165 ftrace_mapper_func free_func); 1166 1167 extern int 1168 register_ftrace_function_probe(char *glob, struct trace_array *tr, 1169 struct ftrace_probe_ops *ops, void *data); 1170 extern int 1171 unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr, 1172 struct ftrace_probe_ops *ops); 1173 extern void clear_ftrace_function_probes(struct trace_array *tr); 1174 1175 int register_ftrace_command(struct ftrace_func_command *cmd); 1176 int unregister_ftrace_command(struct ftrace_func_command *cmd); 1177 1178 void ftrace_create_filter_files(struct ftrace_ops *ops, 1179 struct dentry *parent); 1180 void ftrace_destroy_filter_files(struct ftrace_ops *ops); 1181 1182 extern int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf, 1183 int len, int reset); 1184 extern int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf, 1185 int len, int reset); 1186 #else 1187 struct ftrace_func_command; 1188 1189 static inline __init int register_ftrace_command(struct ftrace_func_command *cmd) 1190 { 1191 return -EINVAL; 1192 } 1193 static inline __init int unregister_ftrace_command(char *cmd_name) 1194 { 1195 return -EINVAL; 1196 } 1197 static inline void clear_ftrace_function_probes(struct trace_array *tr) 1198 { 1199 } 1200 1201 /* 1202 * The ops parameter passed in is usually undefined. 1203 * This must be a macro. 1204 */ 1205 #define ftrace_create_filter_files(ops, parent) do { } while (0) 1206 #define ftrace_destroy_filter_files(ops) do { } while (0) 1207 #endif /* CONFIG_FUNCTION_TRACER && CONFIG_DYNAMIC_FTRACE */ 1208 1209 bool ftrace_event_is_function(struct trace_event_call *call); 1210 1211 /* 1212 * struct trace_parser - servers for reading the user input separated by spaces 1213 * @cont: set if the input is not complete - no final space char was found 1214 * @buffer: holds the parsed user input 1215 * @idx: user input length 1216 * @size: buffer size 1217 */ 1218 struct trace_parser { 1219 bool cont; 1220 char *buffer; 1221 unsigned idx; 1222 unsigned size; 1223 }; 1224 1225 static inline bool trace_parser_loaded(struct trace_parser *parser) 1226 { 1227 return (parser->idx != 0); 1228 } 1229 1230 static inline bool trace_parser_cont(struct trace_parser *parser) 1231 { 1232 return parser->cont; 1233 } 1234 1235 static inline void trace_parser_clear(struct trace_parser *parser) 1236 { 1237 parser->cont = false; 1238 parser->idx = 0; 1239 } 1240 1241 extern int trace_parser_get_init(struct trace_parser *parser, int size); 1242 extern void trace_parser_put(struct trace_parser *parser); 1243 extern int trace_get_user(struct trace_parser *parser, const char __user *ubuf, 1244 size_t cnt, loff_t *ppos); 1245 1246 /* 1247 * Only create function graph options if function graph is configured. 1248 */ 1249 #ifdef CONFIG_FUNCTION_GRAPH_TRACER 1250 # define FGRAPH_FLAGS \ 1251 C(DISPLAY_GRAPH, "display-graph"), 1252 #else 1253 # define FGRAPH_FLAGS 1254 #endif 1255 1256 #ifdef CONFIG_BRANCH_TRACER 1257 # define BRANCH_FLAGS \ 1258 C(BRANCH, "branch"), 1259 #else 1260 # define BRANCH_FLAGS 1261 #endif 1262 1263 #ifdef CONFIG_FUNCTION_TRACER 1264 # define FUNCTION_FLAGS \ 1265 C(FUNCTION, "function-trace"), \ 1266 C(FUNC_FORK, "function-fork"), 1267 # define FUNCTION_DEFAULT_FLAGS TRACE_ITER_FUNCTION 1268 #else 1269 # define FUNCTION_FLAGS 1270 # define FUNCTION_DEFAULT_FLAGS 0UL 1271 # define TRACE_ITER_FUNC_FORK 0UL 1272 #endif 1273 1274 #ifdef CONFIG_STACKTRACE 1275 # define STACK_FLAGS \ 1276 C(STACKTRACE, "stacktrace"), 1277 #else 1278 # define STACK_FLAGS 1279 #endif 1280 1281 /* 1282 * trace_iterator_flags is an enumeration that defines bit 1283 * positions into trace_flags that controls the output. 1284 * 1285 * NOTE: These bits must match the trace_options array in 1286 * trace.c (this macro guarantees it). 1287 */ 1288 #define TRACE_FLAGS \ 1289 C(PRINT_PARENT, "print-parent"), \ 1290 C(SYM_OFFSET, "sym-offset"), \ 1291 C(SYM_ADDR, "sym-addr"), \ 1292 C(VERBOSE, "verbose"), \ 1293 C(RAW, "raw"), \ 1294 C(HEX, "hex"), \ 1295 C(BIN, "bin"), \ 1296 C(BLOCK, "block"), \ 1297 C(PRINTK, "trace_printk"), \ 1298 C(ANNOTATE, "annotate"), \ 1299 C(USERSTACKTRACE, "userstacktrace"), \ 1300 C(SYM_USEROBJ, "sym-userobj"), \ 1301 C(PRINTK_MSGONLY, "printk-msg-only"), \ 1302 C(CONTEXT_INFO, "context-info"), /* Print pid/cpu/time */ \ 1303 C(LATENCY_FMT, "latency-format"), \ 1304 C(RECORD_CMD, "record-cmd"), \ 1305 C(RECORD_TGID, "record-tgid"), \ 1306 C(OVERWRITE, "overwrite"), \ 1307 C(STOP_ON_FREE, "disable_on_free"), \ 1308 C(IRQ_INFO, "irq-info"), \ 1309 C(MARKERS, "markers"), \ 1310 C(EVENT_FORK, "event-fork"), \ 1311 FUNCTION_FLAGS \ 1312 FGRAPH_FLAGS \ 1313 STACK_FLAGS \ 1314 BRANCH_FLAGS 1315 1316 /* 1317 * By defining C, we can make TRACE_FLAGS a list of bit names 1318 * that will define the bits for the flag masks. 1319 */ 1320 #undef C 1321 #define C(a, b) TRACE_ITER_##a##_BIT 1322 1323 enum trace_iterator_bits { 1324 TRACE_FLAGS 1325 /* Make sure we don't go more than we have bits for */ 1326 TRACE_ITER_LAST_BIT 1327 }; 1328 1329 /* 1330 * By redefining C, we can make TRACE_FLAGS a list of masks that 1331 * use the bits as defined above. 1332 */ 1333 #undef C 1334 #define C(a, b) TRACE_ITER_##a = (1 << TRACE_ITER_##a##_BIT) 1335 1336 enum trace_iterator_flags { TRACE_FLAGS }; 1337 1338 /* 1339 * TRACE_ITER_SYM_MASK masks the options in trace_flags that 1340 * control the output of kernel symbols. 1341 */ 1342 #define TRACE_ITER_SYM_MASK \ 1343 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR) 1344 1345 extern struct tracer nop_trace; 1346 1347 #ifdef CONFIG_BRANCH_TRACER 1348 extern int enable_branch_tracing(struct trace_array *tr); 1349 extern void disable_branch_tracing(void); 1350 static inline int trace_branch_enable(struct trace_array *tr) 1351 { 1352 if (tr->trace_flags & TRACE_ITER_BRANCH) 1353 return enable_branch_tracing(tr); 1354 return 0; 1355 } 1356 static inline void trace_branch_disable(void) 1357 { 1358 /* due to races, always disable */ 1359 disable_branch_tracing(); 1360 } 1361 #else 1362 static inline int trace_branch_enable(struct trace_array *tr) 1363 { 1364 return 0; 1365 } 1366 static inline void trace_branch_disable(void) 1367 { 1368 } 1369 #endif /* CONFIG_BRANCH_TRACER */ 1370 1371 /* set ring buffers to default size if not already done so */ 1372 int tracing_update_buffers(void); 1373 1374 struct ftrace_event_field { 1375 struct list_head link; 1376 const char *name; 1377 const char *type; 1378 int filter_type; 1379 int offset; 1380 int size; 1381 int is_signed; 1382 }; 1383 1384 struct prog_entry; 1385 1386 struct event_filter { 1387 struct prog_entry __rcu *prog; 1388 char *filter_string; 1389 }; 1390 1391 struct event_subsystem { 1392 struct list_head list; 1393 const char *name; 1394 struct event_filter *filter; 1395 int ref_count; 1396 }; 1397 1398 struct trace_subsystem_dir { 1399 struct list_head list; 1400 struct event_subsystem *subsystem; 1401 struct trace_array *tr; 1402 struct dentry *entry; 1403 int ref_count; 1404 int nr_events; 1405 }; 1406 1407 extern int call_filter_check_discard(struct trace_event_call *call, void *rec, 1408 struct trace_buffer *buffer, 1409 struct ring_buffer_event *event); 1410 1411 void trace_buffer_unlock_commit_regs(struct trace_array *tr, 1412 struct trace_buffer *buffer, 1413 struct ring_buffer_event *event, 1414 unsigned long flags, int pc, 1415 struct pt_regs *regs); 1416 1417 static inline void trace_buffer_unlock_commit(struct trace_array *tr, 1418 struct trace_buffer *buffer, 1419 struct ring_buffer_event *event, 1420 unsigned long flags, int pc) 1421 { 1422 trace_buffer_unlock_commit_regs(tr, buffer, event, flags, pc, NULL); 1423 } 1424 1425 DECLARE_PER_CPU(struct ring_buffer_event *, trace_buffered_event); 1426 DECLARE_PER_CPU(int, trace_buffered_event_cnt); 1427 void trace_buffered_event_disable(void); 1428 void trace_buffered_event_enable(void); 1429 1430 static inline void 1431 __trace_event_discard_commit(struct trace_buffer *buffer, 1432 struct ring_buffer_event *event) 1433 { 1434 if (this_cpu_read(trace_buffered_event) == event) { 1435 /* Simply release the temp buffer */ 1436 this_cpu_dec(trace_buffered_event_cnt); 1437 return; 1438 } 1439 ring_buffer_discard_commit(buffer, event); 1440 } 1441 1442 /* 1443 * Helper function for event_trigger_unlock_commit{_regs}(). 1444 * If there are event triggers attached to this event that requires 1445 * filtering against its fields, then they wil be called as the 1446 * entry already holds the field information of the current event. 1447 * 1448 * It also checks if the event should be discarded or not. 1449 * It is to be discarded if the event is soft disabled and the 1450 * event was only recorded to process triggers, or if the event 1451 * filter is active and this event did not match the filters. 1452 * 1453 * Returns true if the event is discarded, false otherwise. 1454 */ 1455 static inline bool 1456 __event_trigger_test_discard(struct trace_event_file *file, 1457 struct trace_buffer *buffer, 1458 struct ring_buffer_event *event, 1459 void *entry, 1460 enum event_trigger_type *tt) 1461 { 1462 unsigned long eflags = file->flags; 1463 1464 if (eflags & EVENT_FILE_FL_TRIGGER_COND) 1465 *tt = event_triggers_call(file, entry, event); 1466 1467 if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) || 1468 (unlikely(file->flags & EVENT_FILE_FL_FILTERED) && 1469 !filter_match_preds(file->filter, entry))) { 1470 __trace_event_discard_commit(buffer, event); 1471 return true; 1472 } 1473 1474 return false; 1475 } 1476 1477 /** 1478 * event_trigger_unlock_commit - handle triggers and finish event commit 1479 * @file: The file pointer assoctiated to the event 1480 * @buffer: The ring buffer that the event is being written to 1481 * @event: The event meta data in the ring buffer 1482 * @entry: The event itself 1483 * @irq_flags: The state of the interrupts at the start of the event 1484 * @pc: The state of the preempt count at the start of the event. 1485 * 1486 * This is a helper function to handle triggers that require data 1487 * from the event itself. It also tests the event against filters and 1488 * if the event is soft disabled and should be discarded. 1489 */ 1490 static inline void 1491 event_trigger_unlock_commit(struct trace_event_file *file, 1492 struct trace_buffer *buffer, 1493 struct ring_buffer_event *event, 1494 void *entry, unsigned long irq_flags, int pc) 1495 { 1496 enum event_trigger_type tt = ETT_NONE; 1497 1498 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt)) 1499 trace_buffer_unlock_commit(file->tr, buffer, event, irq_flags, pc); 1500 1501 if (tt) 1502 event_triggers_post_call(file, tt); 1503 } 1504 1505 /** 1506 * event_trigger_unlock_commit_regs - handle triggers and finish event commit 1507 * @file: The file pointer assoctiated to the event 1508 * @buffer: The ring buffer that the event is being written to 1509 * @event: The event meta data in the ring buffer 1510 * @entry: The event itself 1511 * @irq_flags: The state of the interrupts at the start of the event 1512 * @pc: The state of the preempt count at the start of the event. 1513 * 1514 * This is a helper function to handle triggers that require data 1515 * from the event itself. It also tests the event against filters and 1516 * if the event is soft disabled and should be discarded. 1517 * 1518 * Same as event_trigger_unlock_commit() but calls 1519 * trace_buffer_unlock_commit_regs() instead of trace_buffer_unlock_commit(). 1520 */ 1521 static inline void 1522 event_trigger_unlock_commit_regs(struct trace_event_file *file, 1523 struct trace_buffer *buffer, 1524 struct ring_buffer_event *event, 1525 void *entry, unsigned long irq_flags, int pc, 1526 struct pt_regs *regs) 1527 { 1528 enum event_trigger_type tt = ETT_NONE; 1529 1530 if (!__event_trigger_test_discard(file, buffer, event, entry, &tt)) 1531 trace_buffer_unlock_commit_regs(file->tr, buffer, event, 1532 irq_flags, pc, regs); 1533 1534 if (tt) 1535 event_triggers_post_call(file, tt); 1536 } 1537 1538 #define FILTER_PRED_INVALID ((unsigned short)-1) 1539 #define FILTER_PRED_IS_RIGHT (1 << 15) 1540 #define FILTER_PRED_FOLD (1 << 15) 1541 1542 /* 1543 * The max preds is the size of unsigned short with 1544 * two flags at the MSBs. One bit is used for both the IS_RIGHT 1545 * and FOLD flags. The other is reserved. 1546 * 1547 * 2^14 preds is way more than enough. 1548 */ 1549 #define MAX_FILTER_PRED 16384 1550 1551 struct filter_pred; 1552 struct regex; 1553 1554 typedef int (*filter_pred_fn_t) (struct filter_pred *pred, void *event); 1555 1556 typedef int (*regex_match_func)(char *str, struct regex *r, int len); 1557 1558 enum regex_type { 1559 MATCH_FULL = 0, 1560 MATCH_FRONT_ONLY, 1561 MATCH_MIDDLE_ONLY, 1562 MATCH_END_ONLY, 1563 MATCH_GLOB, 1564 MATCH_INDEX, 1565 }; 1566 1567 struct regex { 1568 char pattern[MAX_FILTER_STR_VAL]; 1569 int len; 1570 int field_len; 1571 regex_match_func match; 1572 }; 1573 1574 struct filter_pred { 1575 filter_pred_fn_t fn; 1576 u64 val; 1577 struct regex regex; 1578 unsigned short *ops; 1579 struct ftrace_event_field *field; 1580 int offset; 1581 int not; 1582 int op; 1583 }; 1584 1585 static inline bool is_string_field(struct ftrace_event_field *field) 1586 { 1587 return field->filter_type == FILTER_DYN_STRING || 1588 field->filter_type == FILTER_STATIC_STRING || 1589 field->filter_type == FILTER_PTR_STRING || 1590 field->filter_type == FILTER_COMM; 1591 } 1592 1593 static inline bool is_function_field(struct ftrace_event_field *field) 1594 { 1595 return field->filter_type == FILTER_TRACE_FN; 1596 } 1597 1598 extern enum regex_type 1599 filter_parse_regex(char *buff, int len, char **search, int *not); 1600 extern void print_event_filter(struct trace_event_file *file, 1601 struct trace_seq *s); 1602 extern int apply_event_filter(struct trace_event_file *file, 1603 char *filter_string); 1604 extern int apply_subsystem_event_filter(struct trace_subsystem_dir *dir, 1605 char *filter_string); 1606 extern void print_subsystem_event_filter(struct event_subsystem *system, 1607 struct trace_seq *s); 1608 extern int filter_assign_type(const char *type); 1609 extern int create_event_filter(struct trace_array *tr, 1610 struct trace_event_call *call, 1611 char *filter_str, bool set_str, 1612 struct event_filter **filterp); 1613 extern void free_event_filter(struct event_filter *filter); 1614 1615 struct ftrace_event_field * 1616 trace_find_event_field(struct trace_event_call *call, char *name); 1617 1618 extern void trace_event_enable_cmd_record(bool enable); 1619 extern void trace_event_enable_tgid_record(bool enable); 1620 1621 extern int event_trace_init(void); 1622 extern int event_trace_add_tracer(struct dentry *parent, struct trace_array *tr); 1623 extern int event_trace_del_tracer(struct trace_array *tr); 1624 1625 extern struct trace_event_file *__find_event_file(struct trace_array *tr, 1626 const char *system, 1627 const char *event); 1628 extern struct trace_event_file *find_event_file(struct trace_array *tr, 1629 const char *system, 1630 const char *event); 1631 1632 static inline void *event_file_data(struct file *filp) 1633 { 1634 return READ_ONCE(file_inode(filp)->i_private); 1635 } 1636 1637 extern struct mutex event_mutex; 1638 extern struct list_head ftrace_events; 1639 1640 extern const struct file_operations event_trigger_fops; 1641 extern const struct file_operations event_hist_fops; 1642 extern const struct file_operations event_inject_fops; 1643 1644 #ifdef CONFIG_HIST_TRIGGERS 1645 extern int register_trigger_hist_cmd(void); 1646 extern int register_trigger_hist_enable_disable_cmds(void); 1647 #else 1648 static inline int register_trigger_hist_cmd(void) { return 0; } 1649 static inline int register_trigger_hist_enable_disable_cmds(void) { return 0; } 1650 #endif 1651 1652 extern int register_trigger_cmds(void); 1653 extern void clear_event_triggers(struct trace_array *tr); 1654 1655 struct event_trigger_data { 1656 unsigned long count; 1657 int ref; 1658 struct event_trigger_ops *ops; 1659 struct event_command *cmd_ops; 1660 struct event_filter __rcu *filter; 1661 char *filter_str; 1662 void *private_data; 1663 bool paused; 1664 bool paused_tmp; 1665 struct list_head list; 1666 char *name; 1667 struct list_head named_list; 1668 struct event_trigger_data *named_data; 1669 }; 1670 1671 /* Avoid typos */ 1672 #define ENABLE_EVENT_STR "enable_event" 1673 #define DISABLE_EVENT_STR "disable_event" 1674 #define ENABLE_HIST_STR "enable_hist" 1675 #define DISABLE_HIST_STR "disable_hist" 1676 1677 struct enable_trigger_data { 1678 struct trace_event_file *file; 1679 bool enable; 1680 bool hist; 1681 }; 1682 1683 extern int event_enable_trigger_print(struct seq_file *m, 1684 struct event_trigger_ops *ops, 1685 struct event_trigger_data *data); 1686 extern void event_enable_trigger_free(struct event_trigger_ops *ops, 1687 struct event_trigger_data *data); 1688 extern int event_enable_trigger_func(struct event_command *cmd_ops, 1689 struct trace_event_file *file, 1690 char *glob, char *cmd, char *param); 1691 extern int event_enable_register_trigger(char *glob, 1692 struct event_trigger_ops *ops, 1693 struct event_trigger_data *data, 1694 struct trace_event_file *file); 1695 extern void event_enable_unregister_trigger(char *glob, 1696 struct event_trigger_ops *ops, 1697 struct event_trigger_data *test, 1698 struct trace_event_file *file); 1699 extern void trigger_data_free(struct event_trigger_data *data); 1700 extern int event_trigger_init(struct event_trigger_ops *ops, 1701 struct event_trigger_data *data); 1702 extern int trace_event_trigger_enable_disable(struct trace_event_file *file, 1703 int trigger_enable); 1704 extern void update_cond_flag(struct trace_event_file *file); 1705 extern int set_trigger_filter(char *filter_str, 1706 struct event_trigger_data *trigger_data, 1707 struct trace_event_file *file); 1708 extern struct event_trigger_data *find_named_trigger(const char *name); 1709 extern bool is_named_trigger(struct event_trigger_data *test); 1710 extern int save_named_trigger(const char *name, 1711 struct event_trigger_data *data); 1712 extern void del_named_trigger(struct event_trigger_data *data); 1713 extern void pause_named_trigger(struct event_trigger_data *data); 1714 extern void unpause_named_trigger(struct event_trigger_data *data); 1715 extern void set_named_trigger_data(struct event_trigger_data *data, 1716 struct event_trigger_data *named_data); 1717 extern struct event_trigger_data * 1718 get_named_trigger_data(struct event_trigger_data *data); 1719 extern int register_event_command(struct event_command *cmd); 1720 extern int unregister_event_command(struct event_command *cmd); 1721 extern int register_trigger_hist_enable_disable_cmds(void); 1722 1723 /** 1724 * struct event_trigger_ops - callbacks for trace event triggers 1725 * 1726 * The methods in this structure provide per-event trigger hooks for 1727 * various trigger operations. 1728 * 1729 * All the methods below, except for @init() and @free(), must be 1730 * implemented. 1731 * 1732 * @func: The trigger 'probe' function called when the triggering 1733 * event occurs. The data passed into this callback is the data 1734 * that was supplied to the event_command @reg() function that 1735 * registered the trigger (see struct event_command) along with 1736 * the trace record, rec. 1737 * 1738 * @init: An optional initialization function called for the trigger 1739 * when the trigger is registered (via the event_command reg() 1740 * function). This can be used to perform per-trigger 1741 * initialization such as incrementing a per-trigger reference 1742 * count, for instance. This is usually implemented by the 1743 * generic utility function @event_trigger_init() (see 1744 * trace_event_triggers.c). 1745 * 1746 * @free: An optional de-initialization function called for the 1747 * trigger when the trigger is unregistered (via the 1748 * event_command @reg() function). This can be used to perform 1749 * per-trigger de-initialization such as decrementing a 1750 * per-trigger reference count and freeing corresponding trigger 1751 * data, for instance. This is usually implemented by the 1752 * generic utility function @event_trigger_free() (see 1753 * trace_event_triggers.c). 1754 * 1755 * @print: The callback function invoked to have the trigger print 1756 * itself. This is usually implemented by a wrapper function 1757 * that calls the generic utility function @event_trigger_print() 1758 * (see trace_event_triggers.c). 1759 */ 1760 struct event_trigger_ops { 1761 void (*func)(struct event_trigger_data *data, 1762 void *rec, 1763 struct ring_buffer_event *rbe); 1764 int (*init)(struct event_trigger_ops *ops, 1765 struct event_trigger_data *data); 1766 void (*free)(struct event_trigger_ops *ops, 1767 struct event_trigger_data *data); 1768 int (*print)(struct seq_file *m, 1769 struct event_trigger_ops *ops, 1770 struct event_trigger_data *data); 1771 }; 1772 1773 /** 1774 * struct event_command - callbacks and data members for event commands 1775 * 1776 * Event commands are invoked by users by writing the command name 1777 * into the 'trigger' file associated with a trace event. The 1778 * parameters associated with a specific invocation of an event 1779 * command are used to create an event trigger instance, which is 1780 * added to the list of trigger instances associated with that trace 1781 * event. When the event is hit, the set of triggers associated with 1782 * that event is invoked. 1783 * 1784 * The data members in this structure provide per-event command data 1785 * for various event commands. 1786 * 1787 * All the data members below, except for @post_trigger, must be set 1788 * for each event command. 1789 * 1790 * @name: The unique name that identifies the event command. This is 1791 * the name used when setting triggers via trigger files. 1792 * 1793 * @trigger_type: A unique id that identifies the event command 1794 * 'type'. This value has two purposes, the first to ensure that 1795 * only one trigger of the same type can be set at a given time 1796 * for a particular event e.g. it doesn't make sense to have both 1797 * a traceon and traceoff trigger attached to a single event at 1798 * the same time, so traceon and traceoff have the same type 1799 * though they have different names. The @trigger_type value is 1800 * also used as a bit value for deferring the actual trigger 1801 * action until after the current event is finished. Some 1802 * commands need to do this if they themselves log to the trace 1803 * buffer (see the @post_trigger() member below). @trigger_type 1804 * values are defined by adding new values to the trigger_type 1805 * enum in include/linux/trace_events.h. 1806 * 1807 * @flags: See the enum event_command_flags below. 1808 * 1809 * All the methods below, except for @set_filter() and @unreg_all(), 1810 * must be implemented. 1811 * 1812 * @func: The callback function responsible for parsing and 1813 * registering the trigger written to the 'trigger' file by the 1814 * user. It allocates the trigger instance and registers it with 1815 * the appropriate trace event. It makes use of the other 1816 * event_command callback functions to orchestrate this, and is 1817 * usually implemented by the generic utility function 1818 * @event_trigger_callback() (see trace_event_triggers.c). 1819 * 1820 * @reg: Adds the trigger to the list of triggers associated with the 1821 * event, and enables the event trigger itself, after 1822 * initializing it (via the event_trigger_ops @init() function). 1823 * This is also where commands can use the @trigger_type value to 1824 * make the decision as to whether or not multiple instances of 1825 * the trigger should be allowed. This is usually implemented by 1826 * the generic utility function @register_trigger() (see 1827 * trace_event_triggers.c). 1828 * 1829 * @unreg: Removes the trigger from the list of triggers associated 1830 * with the event, and disables the event trigger itself, after 1831 * initializing it (via the event_trigger_ops @free() function). 1832 * This is usually implemented by the generic utility function 1833 * @unregister_trigger() (see trace_event_triggers.c). 1834 * 1835 * @unreg_all: An optional function called to remove all the triggers 1836 * from the list of triggers associated with the event. Called 1837 * when a trigger file is opened in truncate mode. 1838 * 1839 * @set_filter: An optional function called to parse and set a filter 1840 * for the trigger. If no @set_filter() method is set for the 1841 * event command, filters set by the user for the command will be 1842 * ignored. This is usually implemented by the generic utility 1843 * function @set_trigger_filter() (see trace_event_triggers.c). 1844 * 1845 * @get_trigger_ops: The callback function invoked to retrieve the 1846 * event_trigger_ops implementation associated with the command. 1847 */ 1848 struct event_command { 1849 struct list_head list; 1850 char *name; 1851 enum event_trigger_type trigger_type; 1852 int flags; 1853 int (*func)(struct event_command *cmd_ops, 1854 struct trace_event_file *file, 1855 char *glob, char *cmd, char *params); 1856 int (*reg)(char *glob, 1857 struct event_trigger_ops *ops, 1858 struct event_trigger_data *data, 1859 struct trace_event_file *file); 1860 void (*unreg)(char *glob, 1861 struct event_trigger_ops *ops, 1862 struct event_trigger_data *data, 1863 struct trace_event_file *file); 1864 void (*unreg_all)(struct trace_event_file *file); 1865 int (*set_filter)(char *filter_str, 1866 struct event_trigger_data *data, 1867 struct trace_event_file *file); 1868 struct event_trigger_ops *(*get_trigger_ops)(char *cmd, char *param); 1869 }; 1870 1871 /** 1872 * enum event_command_flags - flags for struct event_command 1873 * 1874 * @POST_TRIGGER: A flag that says whether or not this command needs 1875 * to have its action delayed until after the current event has 1876 * been closed. Some triggers need to avoid being invoked while 1877 * an event is currently in the process of being logged, since 1878 * the trigger may itself log data into the trace buffer. Thus 1879 * we make sure the current event is committed before invoking 1880 * those triggers. To do that, the trigger invocation is split 1881 * in two - the first part checks the filter using the current 1882 * trace record; if a command has the @post_trigger flag set, it 1883 * sets a bit for itself in the return value, otherwise it 1884 * directly invokes the trigger. Once all commands have been 1885 * either invoked or set their return flag, the current record is 1886 * either committed or discarded. At that point, if any commands 1887 * have deferred their triggers, those commands are finally 1888 * invoked following the close of the current event. In other 1889 * words, if the event_trigger_ops @func() probe implementation 1890 * itself logs to the trace buffer, this flag should be set, 1891 * otherwise it can be left unspecified. 1892 * 1893 * @NEEDS_REC: A flag that says whether or not this command needs 1894 * access to the trace record in order to perform its function, 1895 * regardless of whether or not it has a filter associated with 1896 * it (filters make a trigger require access to the trace record 1897 * but are not always present). 1898 */ 1899 enum event_command_flags { 1900 EVENT_CMD_FL_POST_TRIGGER = 1, 1901 EVENT_CMD_FL_NEEDS_REC = 2, 1902 }; 1903 1904 static inline bool event_command_post_trigger(struct event_command *cmd_ops) 1905 { 1906 return cmd_ops->flags & EVENT_CMD_FL_POST_TRIGGER; 1907 } 1908 1909 static inline bool event_command_needs_rec(struct event_command *cmd_ops) 1910 { 1911 return cmd_ops->flags & EVENT_CMD_FL_NEEDS_REC; 1912 } 1913 1914 extern int trace_event_enable_disable(struct trace_event_file *file, 1915 int enable, int soft_disable); 1916 extern int tracing_alloc_snapshot(void); 1917 extern void tracing_snapshot_cond(struct trace_array *tr, void *cond_data); 1918 extern int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, cond_update_fn_t update); 1919 1920 extern int tracing_snapshot_cond_disable(struct trace_array *tr); 1921 extern void *tracing_cond_snapshot_data(struct trace_array *tr); 1922 1923 extern const char *__start___trace_bprintk_fmt[]; 1924 extern const char *__stop___trace_bprintk_fmt[]; 1925 1926 extern const char *__start___tracepoint_str[]; 1927 extern const char *__stop___tracepoint_str[]; 1928 1929 void trace_printk_control(bool enabled); 1930 void trace_printk_start_comm(void); 1931 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set); 1932 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled); 1933 1934 /* Used from boot time tracer */ 1935 extern int trace_set_options(struct trace_array *tr, char *option); 1936 extern int tracing_set_tracer(struct trace_array *tr, const char *buf); 1937 extern ssize_t tracing_resize_ring_buffer(struct trace_array *tr, 1938 unsigned long size, int cpu_id); 1939 extern int tracing_set_cpumask(struct trace_array *tr, 1940 cpumask_var_t tracing_cpumask_new); 1941 1942 1943 #define MAX_EVENT_NAME_LEN 64 1944 1945 extern int trace_run_command(const char *buf, int (*createfn)(int, char**)); 1946 extern ssize_t trace_parse_run_command(struct file *file, 1947 const char __user *buffer, size_t count, loff_t *ppos, 1948 int (*createfn)(int, char**)); 1949 1950 extern unsigned int err_pos(char *cmd, const char *str); 1951 extern void tracing_log_err(struct trace_array *tr, 1952 const char *loc, const char *cmd, 1953 const char **errs, u8 type, u8 pos); 1954 1955 /* 1956 * Normal trace_printk() and friends allocates special buffers 1957 * to do the manipulation, as well as saves the print formats 1958 * into sections to display. But the trace infrastructure wants 1959 * to use these without the added overhead at the price of being 1960 * a bit slower (used mainly for warnings, where we don't care 1961 * about performance). The internal_trace_puts() is for such 1962 * a purpose. 1963 */ 1964 #define internal_trace_puts(str) __trace_puts(_THIS_IP_, str, strlen(str)) 1965 1966 #undef FTRACE_ENTRY 1967 #define FTRACE_ENTRY(call, struct_name, id, tstruct, print, filter) \ 1968 extern struct trace_event_call \ 1969 __aligned(4) event_##call; 1970 #undef FTRACE_ENTRY_DUP 1971 #define FTRACE_ENTRY_DUP(call, struct_name, id, tstruct, print, filter) \ 1972 FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \ 1973 filter) 1974 #undef FTRACE_ENTRY_PACKED 1975 #define FTRACE_ENTRY_PACKED(call, struct_name, id, tstruct, print, filter) \ 1976 FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \ 1977 filter) 1978 1979 #include "trace_entries.h" 1980 1981 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_FUNCTION_TRACER) 1982 int perf_ftrace_event_register(struct trace_event_call *call, 1983 enum trace_reg type, void *data); 1984 #else 1985 #define perf_ftrace_event_register NULL 1986 #endif 1987 1988 #ifdef CONFIG_FTRACE_SYSCALLS 1989 void init_ftrace_syscalls(void); 1990 const char *get_syscall_name(int syscall); 1991 #else 1992 static inline void init_ftrace_syscalls(void) { } 1993 static inline const char *get_syscall_name(int syscall) 1994 { 1995 return NULL; 1996 } 1997 #endif 1998 1999 #ifdef CONFIG_EVENT_TRACING 2000 void trace_event_init(void); 2001 void trace_event_eval_update(struct trace_eval_map **map, int len); 2002 /* Used from boot time tracer */ 2003 extern int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set); 2004 extern int trigger_process_regex(struct trace_event_file *file, char *buff); 2005 #else 2006 static inline void __init trace_event_init(void) { } 2007 static inline void trace_event_eval_update(struct trace_eval_map **map, int len) { } 2008 #endif 2009 2010 #ifdef CONFIG_TRACER_SNAPSHOT 2011 void tracing_snapshot_instance(struct trace_array *tr); 2012 int tracing_alloc_snapshot_instance(struct trace_array *tr); 2013 #else 2014 static inline void tracing_snapshot_instance(struct trace_array *tr) { } 2015 static inline int tracing_alloc_snapshot_instance(struct trace_array *tr) 2016 { 2017 return 0; 2018 } 2019 #endif 2020 2021 #ifdef CONFIG_PREEMPT_TRACER 2022 void tracer_preempt_on(unsigned long a0, unsigned long a1); 2023 void tracer_preempt_off(unsigned long a0, unsigned long a1); 2024 #else 2025 static inline void tracer_preempt_on(unsigned long a0, unsigned long a1) { } 2026 static inline void tracer_preempt_off(unsigned long a0, unsigned long a1) { } 2027 #endif 2028 #ifdef CONFIG_IRQSOFF_TRACER 2029 void tracer_hardirqs_on(unsigned long a0, unsigned long a1); 2030 void tracer_hardirqs_off(unsigned long a0, unsigned long a1); 2031 #else 2032 static inline void tracer_hardirqs_on(unsigned long a0, unsigned long a1) { } 2033 static inline void tracer_hardirqs_off(unsigned long a0, unsigned long a1) { } 2034 #endif 2035 2036 extern struct trace_iterator *tracepoint_print_iter; 2037 2038 /* 2039 * Reset the state of the trace_iterator so that it can read consumed data. 2040 * Normally, the trace_iterator is used for reading the data when it is not 2041 * consumed, and must retain state. 2042 */ 2043 static __always_inline void trace_iterator_reset(struct trace_iterator *iter) 2044 { 2045 const size_t offset = offsetof(struct trace_iterator, seq); 2046 2047 /* 2048 * Keep gcc from complaining about overwriting more than just one 2049 * member in the structure. 2050 */ 2051 memset((char *)iter + offset, 0, sizeof(struct trace_iterator) - offset); 2052 2053 iter->pos = -1; 2054 } 2055 2056 #endif /* _LINUX_KERNEL_TRACE_H */ 2057