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