tracing: Annotate ftrace_graph_notrace_hash pointer with __rcu
[linux-2.6-microblaze.git] / kernel / trace / trace.h
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         hash = rcu_dereference_protected(ftrace_graph_hash, !preemptible());
979
980         if (ftrace_hash_empty(hash)) {
981                 ret = 1;
982                 goto out;
983         }
984
985         if (ftrace_lookup_ip(hash, addr)) {
986
987                 /*
988                  * This needs to be cleared on the return functions
989                  * when the depth is zero.
990                  */
991                 trace_recursion_set(TRACE_GRAPH_BIT);
992                 trace_recursion_set_depth(trace->depth);
993
994                 /*
995                  * If no irqs are to be traced, but a set_graph_function
996                  * is set, and called by an interrupt handler, we still
997                  * want to trace it.
998                  */
999                 if (in_irq())
1000                         trace_recursion_set(TRACE_IRQ_BIT);
1001                 else
1002                         trace_recursion_clear(TRACE_IRQ_BIT);
1003                 ret = 1;
1004         }
1005
1006 out:
1007         preempt_enable_notrace();
1008         return ret;
1009 }
1010
1011 static inline void ftrace_graph_addr_finish(struct ftrace_graph_ret *trace)
1012 {
1013         if (trace_recursion_test(TRACE_GRAPH_BIT) &&
1014             trace->depth == trace_recursion_depth())
1015                 trace_recursion_clear(TRACE_GRAPH_BIT);
1016 }
1017
1018 static inline int ftrace_graph_notrace_addr(unsigned long addr)
1019 {
1020         int ret = 0;
1021         struct ftrace_hash *notrace_hash;
1022
1023         preempt_disable_notrace();
1024
1025         notrace_hash = rcu_dereference_protected(ftrace_graph_notrace_hash,
1026                                                  !preemptible());
1027
1028         if (ftrace_lookup_ip(notrace_hash, addr))
1029                 ret = 1;
1030
1031         preempt_enable_notrace();
1032         return ret;
1033 }
1034 #else
1035 static inline int ftrace_graph_addr(struct ftrace_graph_ent *trace)
1036 {
1037         return 1;
1038 }
1039
1040 static inline int ftrace_graph_notrace_addr(unsigned long addr)
1041 {
1042         return 0;
1043 }
1044 static inline void ftrace_graph_addr_finish(struct ftrace_graph_ret *trace)
1045 { }
1046 #endif /* CONFIG_DYNAMIC_FTRACE */
1047
1048 extern unsigned int fgraph_max_depth;
1049
1050 static inline bool ftrace_graph_ignore_func(struct ftrace_graph_ent *trace)
1051 {
1052         /* trace it when it is-nested-in or is a function enabled. */
1053         return !(trace_recursion_test(TRACE_GRAPH_BIT) ||
1054                  ftrace_graph_addr(trace)) ||
1055                 (trace->depth < 0) ||
1056                 (fgraph_max_depth && trace->depth >= fgraph_max_depth);
1057 }
1058
1059 #else /* CONFIG_FUNCTION_GRAPH_TRACER */
1060 static inline enum print_line_t
1061 print_graph_function_flags(struct trace_iterator *iter, u32 flags)
1062 {
1063         return TRACE_TYPE_UNHANDLED;
1064 }
1065 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1066
1067 extern struct list_head ftrace_pids;
1068
1069 #ifdef CONFIG_FUNCTION_TRACER
1070 struct ftrace_func_command {
1071         struct list_head        list;
1072         char                    *name;
1073         int                     (*func)(struct trace_array *tr,
1074                                         struct ftrace_hash *hash,
1075                                         char *func, char *cmd,
1076                                         char *params, int enable);
1077 };
1078 extern bool ftrace_filter_param __initdata;
1079 static inline int ftrace_trace_task(struct trace_array *tr)
1080 {
1081         return !this_cpu_read(tr->array_buffer.data->ftrace_ignore_pid);
1082 }
1083 extern int ftrace_is_dead(void);
1084 int ftrace_create_function_files(struct trace_array *tr,
1085                                  struct dentry *parent);
1086 void ftrace_destroy_function_files(struct trace_array *tr);
1087 void ftrace_init_global_array_ops(struct trace_array *tr);
1088 void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func);
1089 void ftrace_reset_array_ops(struct trace_array *tr);
1090 void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d_tracer);
1091 void ftrace_init_tracefs_toplevel(struct trace_array *tr,
1092                                   struct dentry *d_tracer);
1093 void ftrace_clear_pids(struct trace_array *tr);
1094 int init_function_trace(void);
1095 void ftrace_pid_follow_fork(struct trace_array *tr, bool enable);
1096 #else
1097 static inline int ftrace_trace_task(struct trace_array *tr)
1098 {
1099         return 1;
1100 }
1101 static inline int ftrace_is_dead(void) { return 0; }
1102 static inline int
1103 ftrace_create_function_files(struct trace_array *tr,
1104                              struct dentry *parent)
1105 {
1106         return 0;
1107 }
1108 static inline void ftrace_destroy_function_files(struct trace_array *tr) { }
1109 static inline __init void
1110 ftrace_init_global_array_ops(struct trace_array *tr) { }
1111 static inline void ftrace_reset_array_ops(struct trace_array *tr) { }
1112 static inline void ftrace_init_tracefs(struct trace_array *tr, struct dentry *d) { }
1113 static inline void ftrace_init_tracefs_toplevel(struct trace_array *tr, struct dentry *d) { }
1114 static inline void ftrace_clear_pids(struct trace_array *tr) { }
1115 static inline int init_function_trace(void) { return 0; }
1116 static inline void ftrace_pid_follow_fork(struct trace_array *tr, bool enable) { }
1117 /* ftace_func_t type is not defined, use macro instead of static inline */
1118 #define ftrace_init_array_ops(tr, func) do { } while (0)
1119 #endif /* CONFIG_FUNCTION_TRACER */
1120
1121 #if defined(CONFIG_FUNCTION_TRACER) && defined(CONFIG_DYNAMIC_FTRACE)
1122
1123 struct ftrace_probe_ops {
1124         void                    (*func)(unsigned long ip,
1125                                         unsigned long parent_ip,
1126                                         struct trace_array *tr,
1127                                         struct ftrace_probe_ops *ops,
1128                                         void *data);
1129         int                     (*init)(struct ftrace_probe_ops *ops,
1130                                         struct trace_array *tr,
1131                                         unsigned long ip, void *init_data,
1132                                         void **data);
1133         void                    (*free)(struct ftrace_probe_ops *ops,
1134                                         struct trace_array *tr,
1135                                         unsigned long ip, void *data);
1136         int                     (*print)(struct seq_file *m,
1137                                          unsigned long ip,
1138                                          struct ftrace_probe_ops *ops,
1139                                          void *data);
1140 };
1141
1142 struct ftrace_func_mapper;
1143 typedef int (*ftrace_mapper_func)(void *data);
1144
1145 struct ftrace_func_mapper *allocate_ftrace_func_mapper(void);
1146 void **ftrace_func_mapper_find_ip(struct ftrace_func_mapper *mapper,
1147                                            unsigned long ip);
1148 int ftrace_func_mapper_add_ip(struct ftrace_func_mapper *mapper,
1149                                unsigned long ip, void *data);
1150 void *ftrace_func_mapper_remove_ip(struct ftrace_func_mapper *mapper,
1151                                    unsigned long ip);
1152 void free_ftrace_func_mapper(struct ftrace_func_mapper *mapper,
1153                              ftrace_mapper_func free_func);
1154
1155 extern int
1156 register_ftrace_function_probe(char *glob, struct trace_array *tr,
1157                                struct ftrace_probe_ops *ops, void *data);
1158 extern int
1159 unregister_ftrace_function_probe_func(char *glob, struct trace_array *tr,
1160                                       struct ftrace_probe_ops *ops);
1161 extern void clear_ftrace_function_probes(struct trace_array *tr);
1162
1163 int register_ftrace_command(struct ftrace_func_command *cmd);
1164 int unregister_ftrace_command(struct ftrace_func_command *cmd);
1165
1166 void ftrace_create_filter_files(struct ftrace_ops *ops,
1167                                 struct dentry *parent);
1168 void ftrace_destroy_filter_files(struct ftrace_ops *ops);
1169
1170 extern int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
1171                              int len, int reset);
1172 extern int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
1173                               int len, int reset);
1174 #else
1175 struct ftrace_func_command;
1176
1177 static inline __init int register_ftrace_command(struct ftrace_func_command *cmd)
1178 {
1179         return -EINVAL;
1180 }
1181 static inline __init int unregister_ftrace_command(char *cmd_name)
1182 {
1183         return -EINVAL;
1184 }
1185 static inline void clear_ftrace_function_probes(struct trace_array *tr)
1186 {
1187 }
1188
1189 /*
1190  * The ops parameter passed in is usually undefined.
1191  * This must be a macro.
1192  */
1193 #define ftrace_create_filter_files(ops, parent) do { } while (0)
1194 #define ftrace_destroy_filter_files(ops) do { } while (0)
1195 #endif /* CONFIG_FUNCTION_TRACER && CONFIG_DYNAMIC_FTRACE */
1196
1197 bool ftrace_event_is_function(struct trace_event_call *call);
1198
1199 /*
1200  * struct trace_parser - servers for reading the user input separated by spaces
1201  * @cont: set if the input is not complete - no final space char was found
1202  * @buffer: holds the parsed user input
1203  * @idx: user input length
1204  * @size: buffer size
1205  */
1206 struct trace_parser {
1207         bool            cont;
1208         char            *buffer;
1209         unsigned        idx;
1210         unsigned        size;
1211 };
1212
1213 static inline bool trace_parser_loaded(struct trace_parser *parser)
1214 {
1215         return (parser->idx != 0);
1216 }
1217
1218 static inline bool trace_parser_cont(struct trace_parser *parser)
1219 {
1220         return parser->cont;
1221 }
1222
1223 static inline void trace_parser_clear(struct trace_parser *parser)
1224 {
1225         parser->cont = false;
1226         parser->idx = 0;
1227 }
1228
1229 extern int trace_parser_get_init(struct trace_parser *parser, int size);
1230 extern void trace_parser_put(struct trace_parser *parser);
1231 extern int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
1232         size_t cnt, loff_t *ppos);
1233
1234 /*
1235  * Only create function graph options if function graph is configured.
1236  */
1237 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1238 # define FGRAPH_FLAGS                                           \
1239                 C(DISPLAY_GRAPH,        "display-graph"),
1240 #else
1241 # define FGRAPH_FLAGS
1242 #endif
1243
1244 #ifdef CONFIG_BRANCH_TRACER
1245 # define BRANCH_FLAGS                                   \
1246                 C(BRANCH,               "branch"),
1247 #else
1248 # define BRANCH_FLAGS
1249 #endif
1250
1251 #ifdef CONFIG_FUNCTION_TRACER
1252 # define FUNCTION_FLAGS                                         \
1253                 C(FUNCTION,             "function-trace"),      \
1254                 C(FUNC_FORK,            "function-fork"),
1255 # define FUNCTION_DEFAULT_FLAGS         TRACE_ITER_FUNCTION
1256 #else
1257 # define FUNCTION_FLAGS
1258 # define FUNCTION_DEFAULT_FLAGS         0UL
1259 # define TRACE_ITER_FUNC_FORK           0UL
1260 #endif
1261
1262 #ifdef CONFIG_STACKTRACE
1263 # define STACK_FLAGS                            \
1264                 C(STACKTRACE,           "stacktrace"),
1265 #else
1266 # define STACK_FLAGS
1267 #endif
1268
1269 /*
1270  * trace_iterator_flags is an enumeration that defines bit
1271  * positions into trace_flags that controls the output.
1272  *
1273  * NOTE: These bits must match the trace_options array in
1274  *       trace.c (this macro guarantees it).
1275  */
1276 #define TRACE_FLAGS                                             \
1277                 C(PRINT_PARENT,         "print-parent"),        \
1278                 C(SYM_OFFSET,           "sym-offset"),          \
1279                 C(SYM_ADDR,             "sym-addr"),            \
1280                 C(VERBOSE,              "verbose"),             \
1281                 C(RAW,                  "raw"),                 \
1282                 C(HEX,                  "hex"),                 \
1283                 C(BIN,                  "bin"),                 \
1284                 C(BLOCK,                "block"),               \
1285                 C(PRINTK,               "trace_printk"),        \
1286                 C(ANNOTATE,             "annotate"),            \
1287                 C(USERSTACKTRACE,       "userstacktrace"),      \
1288                 C(SYM_USEROBJ,          "sym-userobj"),         \
1289                 C(PRINTK_MSGONLY,       "printk-msg-only"),     \
1290                 C(CONTEXT_INFO,         "context-info"),   /* Print pid/cpu/time */ \
1291                 C(LATENCY_FMT,          "latency-format"),      \
1292                 C(RECORD_CMD,           "record-cmd"),          \
1293                 C(RECORD_TGID,          "record-tgid"),         \
1294                 C(OVERWRITE,            "overwrite"),           \
1295                 C(STOP_ON_FREE,         "disable_on_free"),     \
1296                 C(IRQ_INFO,             "irq-info"),            \
1297                 C(MARKERS,              "markers"),             \
1298                 C(EVENT_FORK,           "event-fork"),          \
1299                 FUNCTION_FLAGS                                  \
1300                 FGRAPH_FLAGS                                    \
1301                 STACK_FLAGS                                     \
1302                 BRANCH_FLAGS
1303
1304 /*
1305  * By defining C, we can make TRACE_FLAGS a list of bit names
1306  * that will define the bits for the flag masks.
1307  */
1308 #undef C
1309 #define C(a, b) TRACE_ITER_##a##_BIT
1310
1311 enum trace_iterator_bits {
1312         TRACE_FLAGS
1313         /* Make sure we don't go more than we have bits for */
1314         TRACE_ITER_LAST_BIT
1315 };
1316
1317 /*
1318  * By redefining C, we can make TRACE_FLAGS a list of masks that
1319  * use the bits as defined above.
1320  */
1321 #undef C
1322 #define C(a, b) TRACE_ITER_##a = (1 << TRACE_ITER_##a##_BIT)
1323
1324 enum trace_iterator_flags { TRACE_FLAGS };
1325
1326 /*
1327  * TRACE_ITER_SYM_MASK masks the options in trace_flags that
1328  * control the output of kernel symbols.
1329  */
1330 #define TRACE_ITER_SYM_MASK \
1331         (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
1332
1333 extern struct tracer nop_trace;
1334
1335 #ifdef CONFIG_BRANCH_TRACER
1336 extern int enable_branch_tracing(struct trace_array *tr);
1337 extern void disable_branch_tracing(void);
1338 static inline int trace_branch_enable(struct trace_array *tr)
1339 {
1340         if (tr->trace_flags & TRACE_ITER_BRANCH)
1341                 return enable_branch_tracing(tr);
1342         return 0;
1343 }
1344 static inline void trace_branch_disable(void)
1345 {
1346         /* due to races, always disable */
1347         disable_branch_tracing();
1348 }
1349 #else
1350 static inline int trace_branch_enable(struct trace_array *tr)
1351 {
1352         return 0;
1353 }
1354 static inline void trace_branch_disable(void)
1355 {
1356 }
1357 #endif /* CONFIG_BRANCH_TRACER */
1358
1359 /* set ring buffers to default size if not already done so */
1360 int tracing_update_buffers(void);
1361
1362 struct ftrace_event_field {
1363         struct list_head        link;
1364         const char              *name;
1365         const char              *type;
1366         int                     filter_type;
1367         int                     offset;
1368         int                     size;
1369         int                     is_signed;
1370 };
1371
1372 struct prog_entry;
1373
1374 struct event_filter {
1375         struct prog_entry __rcu *prog;
1376         char                    *filter_string;
1377 };
1378
1379 struct event_subsystem {
1380         struct list_head        list;
1381         const char              *name;
1382         struct event_filter     *filter;
1383         int                     ref_count;
1384 };
1385
1386 struct trace_subsystem_dir {
1387         struct list_head                list;
1388         struct event_subsystem          *subsystem;
1389         struct trace_array              *tr;
1390         struct dentry                   *entry;
1391         int                             ref_count;
1392         int                             nr_events;
1393 };
1394
1395 extern int call_filter_check_discard(struct trace_event_call *call, void *rec,
1396                                      struct trace_buffer *buffer,
1397                                      struct ring_buffer_event *event);
1398
1399 void trace_buffer_unlock_commit_regs(struct trace_array *tr,
1400                                      struct trace_buffer *buffer,
1401                                      struct ring_buffer_event *event,
1402                                      unsigned long flags, int pc,
1403                                      struct pt_regs *regs);
1404
1405 static inline void trace_buffer_unlock_commit(struct trace_array *tr,
1406                                               struct trace_buffer *buffer,
1407                                               struct ring_buffer_event *event,
1408                                               unsigned long flags, int pc)
1409 {
1410         trace_buffer_unlock_commit_regs(tr, buffer, event, flags, pc, NULL);
1411 }
1412
1413 DECLARE_PER_CPU(struct ring_buffer_event *, trace_buffered_event);
1414 DECLARE_PER_CPU(int, trace_buffered_event_cnt);
1415 void trace_buffered_event_disable(void);
1416 void trace_buffered_event_enable(void);
1417
1418 static inline void
1419 __trace_event_discard_commit(struct trace_buffer *buffer,
1420                              struct ring_buffer_event *event)
1421 {
1422         if (this_cpu_read(trace_buffered_event) == event) {
1423                 /* Simply release the temp buffer */
1424                 this_cpu_dec(trace_buffered_event_cnt);
1425                 return;
1426         }
1427         ring_buffer_discard_commit(buffer, event);
1428 }
1429
1430 /*
1431  * Helper function for event_trigger_unlock_commit{_regs}().
1432  * If there are event triggers attached to this event that requires
1433  * filtering against its fields, then they wil be called as the
1434  * entry already holds the field information of the current event.
1435  *
1436  * It also checks if the event should be discarded or not.
1437  * It is to be discarded if the event is soft disabled and the
1438  * event was only recorded to process triggers, or if the event
1439  * filter is active and this event did not match the filters.
1440  *
1441  * Returns true if the event is discarded, false otherwise.
1442  */
1443 static inline bool
1444 __event_trigger_test_discard(struct trace_event_file *file,
1445                              struct trace_buffer *buffer,
1446                              struct ring_buffer_event *event,
1447                              void *entry,
1448                              enum event_trigger_type *tt)
1449 {
1450         unsigned long eflags = file->flags;
1451
1452         if (eflags & EVENT_FILE_FL_TRIGGER_COND)
1453                 *tt = event_triggers_call(file, entry, event);
1454
1455         if (test_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT, &file->flags) ||
1456             (unlikely(file->flags & EVENT_FILE_FL_FILTERED) &&
1457              !filter_match_preds(file->filter, entry))) {
1458                 __trace_event_discard_commit(buffer, event);
1459                 return true;
1460         }
1461
1462         return false;
1463 }
1464
1465 /**
1466  * event_trigger_unlock_commit - handle triggers and finish event commit
1467  * @file: The file pointer assoctiated to the event
1468  * @buffer: The ring buffer that the event is being written to
1469  * @event: The event meta data in the ring buffer
1470  * @entry: The event itself
1471  * @irq_flags: The state of the interrupts at the start of the event
1472  * @pc: The state of the preempt count at the start of the event.
1473  *
1474  * This is a helper function to handle triggers that require data
1475  * from the event itself. It also tests the event against filters and
1476  * if the event is soft disabled and should be discarded.
1477  */
1478 static inline void
1479 event_trigger_unlock_commit(struct trace_event_file *file,
1480                             struct trace_buffer *buffer,
1481                             struct ring_buffer_event *event,
1482                             void *entry, unsigned long irq_flags, int pc)
1483 {
1484         enum event_trigger_type tt = ETT_NONE;
1485
1486         if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
1487                 trace_buffer_unlock_commit(file->tr, buffer, event, irq_flags, pc);
1488
1489         if (tt)
1490                 event_triggers_post_call(file, tt);
1491 }
1492
1493 /**
1494  * event_trigger_unlock_commit_regs - handle triggers and finish event commit
1495  * @file: The file pointer assoctiated to the event
1496  * @buffer: The ring buffer that the event is being written to
1497  * @event: The event meta data in the ring buffer
1498  * @entry: The event itself
1499  * @irq_flags: The state of the interrupts at the start of the event
1500  * @pc: The state of the preempt count at the start of the event.
1501  *
1502  * This is a helper function to handle triggers that require data
1503  * from the event itself. It also tests the event against filters and
1504  * if the event is soft disabled and should be discarded.
1505  *
1506  * Same as event_trigger_unlock_commit() but calls
1507  * trace_buffer_unlock_commit_regs() instead of trace_buffer_unlock_commit().
1508  */
1509 static inline void
1510 event_trigger_unlock_commit_regs(struct trace_event_file *file,
1511                                  struct trace_buffer *buffer,
1512                                  struct ring_buffer_event *event,
1513                                  void *entry, unsigned long irq_flags, int pc,
1514                                  struct pt_regs *regs)
1515 {
1516         enum event_trigger_type tt = ETT_NONE;
1517
1518         if (!__event_trigger_test_discard(file, buffer, event, entry, &tt))
1519                 trace_buffer_unlock_commit_regs(file->tr, buffer, event,
1520                                                 irq_flags, pc, regs);
1521
1522         if (tt)
1523                 event_triggers_post_call(file, tt);
1524 }
1525
1526 #define FILTER_PRED_INVALID     ((unsigned short)-1)
1527 #define FILTER_PRED_IS_RIGHT    (1 << 15)
1528 #define FILTER_PRED_FOLD        (1 << 15)
1529
1530 /*
1531  * The max preds is the size of unsigned short with
1532  * two flags at the MSBs. One bit is used for both the IS_RIGHT
1533  * and FOLD flags. The other is reserved.
1534  *
1535  * 2^14 preds is way more than enough.
1536  */
1537 #define MAX_FILTER_PRED         16384
1538
1539 struct filter_pred;
1540 struct regex;
1541
1542 typedef int (*filter_pred_fn_t) (struct filter_pred *pred, void *event);
1543
1544 typedef int (*regex_match_func)(char *str, struct regex *r, int len);
1545
1546 enum regex_type {
1547         MATCH_FULL = 0,
1548         MATCH_FRONT_ONLY,
1549         MATCH_MIDDLE_ONLY,
1550         MATCH_END_ONLY,
1551         MATCH_GLOB,
1552         MATCH_INDEX,
1553 };
1554
1555 struct regex {
1556         char                    pattern[MAX_FILTER_STR_VAL];
1557         int                     len;
1558         int                     field_len;
1559         regex_match_func        match;
1560 };
1561
1562 struct filter_pred {
1563         filter_pred_fn_t        fn;
1564         u64                     val;
1565         struct regex            regex;
1566         unsigned short          *ops;
1567         struct ftrace_event_field *field;
1568         int                     offset;
1569         int                     not;
1570         int                     op;
1571 };
1572
1573 static inline bool is_string_field(struct ftrace_event_field *field)
1574 {
1575         return field->filter_type == FILTER_DYN_STRING ||
1576                field->filter_type == FILTER_STATIC_STRING ||
1577                field->filter_type == FILTER_PTR_STRING ||
1578                field->filter_type == FILTER_COMM;
1579 }
1580
1581 static inline bool is_function_field(struct ftrace_event_field *field)
1582 {
1583         return field->filter_type == FILTER_TRACE_FN;
1584 }
1585
1586 extern enum regex_type
1587 filter_parse_regex(char *buff, int len, char **search, int *not);
1588 extern void print_event_filter(struct trace_event_file *file,
1589                                struct trace_seq *s);
1590 extern int apply_event_filter(struct trace_event_file *file,
1591                               char *filter_string);
1592 extern int apply_subsystem_event_filter(struct trace_subsystem_dir *dir,
1593                                         char *filter_string);
1594 extern void print_subsystem_event_filter(struct event_subsystem *system,
1595                                          struct trace_seq *s);
1596 extern int filter_assign_type(const char *type);
1597 extern int create_event_filter(struct trace_array *tr,
1598                                struct trace_event_call *call,
1599                                char *filter_str, bool set_str,
1600                                struct event_filter **filterp);
1601 extern void free_event_filter(struct event_filter *filter);
1602
1603 struct ftrace_event_field *
1604 trace_find_event_field(struct trace_event_call *call, char *name);
1605
1606 extern void trace_event_enable_cmd_record(bool enable);
1607 extern void trace_event_enable_tgid_record(bool enable);
1608
1609 extern int event_trace_init(void);
1610 extern int event_trace_add_tracer(struct dentry *parent, struct trace_array *tr);
1611 extern int event_trace_del_tracer(struct trace_array *tr);
1612
1613 extern struct trace_event_file *__find_event_file(struct trace_array *tr,
1614                                                   const char *system,
1615                                                   const char *event);
1616 extern struct trace_event_file *find_event_file(struct trace_array *tr,
1617                                                 const char *system,
1618                                                 const char *event);
1619
1620 static inline void *event_file_data(struct file *filp)
1621 {
1622         return READ_ONCE(file_inode(filp)->i_private);
1623 }
1624
1625 extern struct mutex event_mutex;
1626 extern struct list_head ftrace_events;
1627
1628 extern const struct file_operations event_trigger_fops;
1629 extern const struct file_operations event_hist_fops;
1630 extern const struct file_operations event_inject_fops;
1631
1632 #ifdef CONFIG_HIST_TRIGGERS
1633 extern int register_trigger_hist_cmd(void);
1634 extern int register_trigger_hist_enable_disable_cmds(void);
1635 #else
1636 static inline int register_trigger_hist_cmd(void) { return 0; }
1637 static inline int register_trigger_hist_enable_disable_cmds(void) { return 0; }
1638 #endif
1639
1640 extern int register_trigger_cmds(void);
1641 extern void clear_event_triggers(struct trace_array *tr);
1642
1643 struct event_trigger_data {
1644         unsigned long                   count;
1645         int                             ref;
1646         struct event_trigger_ops        *ops;
1647         struct event_command            *cmd_ops;
1648         struct event_filter __rcu       *filter;
1649         char                            *filter_str;
1650         void                            *private_data;
1651         bool                            paused;
1652         bool                            paused_tmp;
1653         struct list_head                list;
1654         char                            *name;
1655         struct list_head                named_list;
1656         struct event_trigger_data       *named_data;
1657 };
1658
1659 /* Avoid typos */
1660 #define ENABLE_EVENT_STR        "enable_event"
1661 #define DISABLE_EVENT_STR       "disable_event"
1662 #define ENABLE_HIST_STR         "enable_hist"
1663 #define DISABLE_HIST_STR        "disable_hist"
1664
1665 struct enable_trigger_data {
1666         struct trace_event_file         *file;
1667         bool                            enable;
1668         bool                            hist;
1669 };
1670
1671 extern int event_enable_trigger_print(struct seq_file *m,
1672                                       struct event_trigger_ops *ops,
1673                                       struct event_trigger_data *data);
1674 extern void event_enable_trigger_free(struct event_trigger_ops *ops,
1675                                       struct event_trigger_data *data);
1676 extern int event_enable_trigger_func(struct event_command *cmd_ops,
1677                                      struct trace_event_file *file,
1678                                      char *glob, char *cmd, char *param);
1679 extern int event_enable_register_trigger(char *glob,
1680                                          struct event_trigger_ops *ops,
1681                                          struct event_trigger_data *data,
1682                                          struct trace_event_file *file);
1683 extern void event_enable_unregister_trigger(char *glob,
1684                                             struct event_trigger_ops *ops,
1685                                             struct event_trigger_data *test,
1686                                             struct trace_event_file *file);
1687 extern void trigger_data_free(struct event_trigger_data *data);
1688 extern int event_trigger_init(struct event_trigger_ops *ops,
1689                               struct event_trigger_data *data);
1690 extern int trace_event_trigger_enable_disable(struct trace_event_file *file,
1691                                               int trigger_enable);
1692 extern void update_cond_flag(struct trace_event_file *file);
1693 extern int set_trigger_filter(char *filter_str,
1694                               struct event_trigger_data *trigger_data,
1695                               struct trace_event_file *file);
1696 extern struct event_trigger_data *find_named_trigger(const char *name);
1697 extern bool is_named_trigger(struct event_trigger_data *test);
1698 extern int save_named_trigger(const char *name,
1699                               struct event_trigger_data *data);
1700 extern void del_named_trigger(struct event_trigger_data *data);
1701 extern void pause_named_trigger(struct event_trigger_data *data);
1702 extern void unpause_named_trigger(struct event_trigger_data *data);
1703 extern void set_named_trigger_data(struct event_trigger_data *data,
1704                                    struct event_trigger_data *named_data);
1705 extern struct event_trigger_data *
1706 get_named_trigger_data(struct event_trigger_data *data);
1707 extern int register_event_command(struct event_command *cmd);
1708 extern int unregister_event_command(struct event_command *cmd);
1709 extern int register_trigger_hist_enable_disable_cmds(void);
1710
1711 /**
1712  * struct event_trigger_ops - callbacks for trace event triggers
1713  *
1714  * The methods in this structure provide per-event trigger hooks for
1715  * various trigger operations.
1716  *
1717  * All the methods below, except for @init() and @free(), must be
1718  * implemented.
1719  *
1720  * @func: The trigger 'probe' function called when the triggering
1721  *      event occurs.  The data passed into this callback is the data
1722  *      that was supplied to the event_command @reg() function that
1723  *      registered the trigger (see struct event_command) along with
1724  *      the trace record, rec.
1725  *
1726  * @init: An optional initialization function called for the trigger
1727  *      when the trigger is registered (via the event_command reg()
1728  *      function).  This can be used to perform per-trigger
1729  *      initialization such as incrementing a per-trigger reference
1730  *      count, for instance.  This is usually implemented by the
1731  *      generic utility function @event_trigger_init() (see
1732  *      trace_event_triggers.c).
1733  *
1734  * @free: An optional de-initialization function called for the
1735  *      trigger when the trigger is unregistered (via the
1736  *      event_command @reg() function).  This can be used to perform
1737  *      per-trigger de-initialization such as decrementing a
1738  *      per-trigger reference count and freeing corresponding trigger
1739  *      data, for instance.  This is usually implemented by the
1740  *      generic utility function @event_trigger_free() (see
1741  *      trace_event_triggers.c).
1742  *
1743  * @print: The callback function invoked to have the trigger print
1744  *      itself.  This is usually implemented by a wrapper function
1745  *      that calls the generic utility function @event_trigger_print()
1746  *      (see trace_event_triggers.c).
1747  */
1748 struct event_trigger_ops {
1749         void                    (*func)(struct event_trigger_data *data,
1750                                         void *rec,
1751                                         struct ring_buffer_event *rbe);
1752         int                     (*init)(struct event_trigger_ops *ops,
1753                                         struct event_trigger_data *data);
1754         void                    (*free)(struct event_trigger_ops *ops,
1755                                         struct event_trigger_data *data);
1756         int                     (*print)(struct seq_file *m,
1757                                          struct event_trigger_ops *ops,
1758                                          struct event_trigger_data *data);
1759 };
1760
1761 /**
1762  * struct event_command - callbacks and data members for event commands
1763  *
1764  * Event commands are invoked by users by writing the command name
1765  * into the 'trigger' file associated with a trace event.  The
1766  * parameters associated with a specific invocation of an event
1767  * command are used to create an event trigger instance, which is
1768  * added to the list of trigger instances associated with that trace
1769  * event.  When the event is hit, the set of triggers associated with
1770  * that event is invoked.
1771  *
1772  * The data members in this structure provide per-event command data
1773  * for various event commands.
1774  *
1775  * All the data members below, except for @post_trigger, must be set
1776  * for each event command.
1777  *
1778  * @name: The unique name that identifies the event command.  This is
1779  *      the name used when setting triggers via trigger files.
1780  *
1781  * @trigger_type: A unique id that identifies the event command
1782  *      'type'.  This value has two purposes, the first to ensure that
1783  *      only one trigger of the same type can be set at a given time
1784  *      for a particular event e.g. it doesn't make sense to have both
1785  *      a traceon and traceoff trigger attached to a single event at
1786  *      the same time, so traceon and traceoff have the same type
1787  *      though they have different names.  The @trigger_type value is
1788  *      also used as a bit value for deferring the actual trigger
1789  *      action until after the current event is finished.  Some
1790  *      commands need to do this if they themselves log to the trace
1791  *      buffer (see the @post_trigger() member below).  @trigger_type
1792  *      values are defined by adding new values to the trigger_type
1793  *      enum in include/linux/trace_events.h.
1794  *
1795  * @flags: See the enum event_command_flags below.
1796  *
1797  * All the methods below, except for @set_filter() and @unreg_all(),
1798  * must be implemented.
1799  *
1800  * @func: The callback function responsible for parsing and
1801  *      registering the trigger written to the 'trigger' file by the
1802  *      user.  It allocates the trigger instance and registers it with
1803  *      the appropriate trace event.  It makes use of the other
1804  *      event_command callback functions to orchestrate this, and is
1805  *      usually implemented by the generic utility function
1806  *      @event_trigger_callback() (see trace_event_triggers.c).
1807  *
1808  * @reg: Adds the trigger to the list of triggers associated with the
1809  *      event, and enables the event trigger itself, after
1810  *      initializing it (via the event_trigger_ops @init() function).
1811  *      This is also where commands can use the @trigger_type value to
1812  *      make the decision as to whether or not multiple instances of
1813  *      the trigger should be allowed.  This is usually implemented by
1814  *      the generic utility function @register_trigger() (see
1815  *      trace_event_triggers.c).
1816  *
1817  * @unreg: Removes the trigger from the list of triggers associated
1818  *      with the event, and disables the event trigger itself, after
1819  *      initializing it (via the event_trigger_ops @free() function).
1820  *      This is usually implemented by the generic utility function
1821  *      @unregister_trigger() (see trace_event_triggers.c).
1822  *
1823  * @unreg_all: An optional function called to remove all the triggers
1824  *      from the list of triggers associated with the event.  Called
1825  *      when a trigger file is opened in truncate mode.
1826  *
1827  * @set_filter: An optional function called to parse and set a filter
1828  *      for the trigger.  If no @set_filter() method is set for the
1829  *      event command, filters set by the user for the command will be
1830  *      ignored.  This is usually implemented by the generic utility
1831  *      function @set_trigger_filter() (see trace_event_triggers.c).
1832  *
1833  * @get_trigger_ops: The callback function invoked to retrieve the
1834  *      event_trigger_ops implementation associated with the command.
1835  */
1836 struct event_command {
1837         struct list_head        list;
1838         char                    *name;
1839         enum event_trigger_type trigger_type;
1840         int                     flags;
1841         int                     (*func)(struct event_command *cmd_ops,
1842                                         struct trace_event_file *file,
1843                                         char *glob, char *cmd, char *params);
1844         int                     (*reg)(char *glob,
1845                                        struct event_trigger_ops *ops,
1846                                        struct event_trigger_data *data,
1847                                        struct trace_event_file *file);
1848         void                    (*unreg)(char *glob,
1849                                          struct event_trigger_ops *ops,
1850                                          struct event_trigger_data *data,
1851                                          struct trace_event_file *file);
1852         void                    (*unreg_all)(struct trace_event_file *file);
1853         int                     (*set_filter)(char *filter_str,
1854                                               struct event_trigger_data *data,
1855                                               struct trace_event_file *file);
1856         struct event_trigger_ops *(*get_trigger_ops)(char *cmd, char *param);
1857 };
1858
1859 /**
1860  * enum event_command_flags - flags for struct event_command
1861  *
1862  * @POST_TRIGGER: A flag that says whether or not this command needs
1863  *      to have its action delayed until after the current event has
1864  *      been closed.  Some triggers need to avoid being invoked while
1865  *      an event is currently in the process of being logged, since
1866  *      the trigger may itself log data into the trace buffer.  Thus
1867  *      we make sure the current event is committed before invoking
1868  *      those triggers.  To do that, the trigger invocation is split
1869  *      in two - the first part checks the filter using the current
1870  *      trace record; if a command has the @post_trigger flag set, it
1871  *      sets a bit for itself in the return value, otherwise it
1872  *      directly invokes the trigger.  Once all commands have been
1873  *      either invoked or set their return flag, the current record is
1874  *      either committed or discarded.  At that point, if any commands
1875  *      have deferred their triggers, those commands are finally
1876  *      invoked following the close of the current event.  In other
1877  *      words, if the event_trigger_ops @func() probe implementation
1878  *      itself logs to the trace buffer, this flag should be set,
1879  *      otherwise it can be left unspecified.
1880  *
1881  * @NEEDS_REC: A flag that says whether or not this command needs
1882  *      access to the trace record in order to perform its function,
1883  *      regardless of whether or not it has a filter associated with
1884  *      it (filters make a trigger require access to the trace record
1885  *      but are not always present).
1886  */
1887 enum event_command_flags {
1888         EVENT_CMD_FL_POST_TRIGGER       = 1,
1889         EVENT_CMD_FL_NEEDS_REC          = 2,
1890 };
1891
1892 static inline bool event_command_post_trigger(struct event_command *cmd_ops)
1893 {
1894         return cmd_ops->flags & EVENT_CMD_FL_POST_TRIGGER;
1895 }
1896
1897 static inline bool event_command_needs_rec(struct event_command *cmd_ops)
1898 {
1899         return cmd_ops->flags & EVENT_CMD_FL_NEEDS_REC;
1900 }
1901
1902 extern int trace_event_enable_disable(struct trace_event_file *file,
1903                                       int enable, int soft_disable);
1904 extern int tracing_alloc_snapshot(void);
1905 extern void tracing_snapshot_cond(struct trace_array *tr, void *cond_data);
1906 extern int tracing_snapshot_cond_enable(struct trace_array *tr, void *cond_data, cond_update_fn_t update);
1907
1908 extern int tracing_snapshot_cond_disable(struct trace_array *tr);
1909 extern void *tracing_cond_snapshot_data(struct trace_array *tr);
1910
1911 extern const char *__start___trace_bprintk_fmt[];
1912 extern const char *__stop___trace_bprintk_fmt[];
1913
1914 extern const char *__start___tracepoint_str[];
1915 extern const char *__stop___tracepoint_str[];
1916
1917 void trace_printk_control(bool enabled);
1918 void trace_printk_start_comm(void);
1919 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set);
1920 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled);
1921
1922 /* Used from boot time tracer */
1923 extern int trace_set_options(struct trace_array *tr, char *option);
1924 extern int tracing_set_tracer(struct trace_array *tr, const char *buf);
1925 extern ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
1926                                           unsigned long size, int cpu_id);
1927 extern int tracing_set_cpumask(struct trace_array *tr,
1928                                 cpumask_var_t tracing_cpumask_new);
1929
1930
1931 #define MAX_EVENT_NAME_LEN      64
1932
1933 extern int trace_run_command(const char *buf, int (*createfn)(int, char**));
1934 extern ssize_t trace_parse_run_command(struct file *file,
1935                 const char __user *buffer, size_t count, loff_t *ppos,
1936                 int (*createfn)(int, char**));
1937
1938 extern unsigned int err_pos(char *cmd, const char *str);
1939 extern void tracing_log_err(struct trace_array *tr,
1940                             const char *loc, const char *cmd,
1941                             const char **errs, u8 type, u8 pos);
1942
1943 /*
1944  * Normal trace_printk() and friends allocates special buffers
1945  * to do the manipulation, as well as saves the print formats
1946  * into sections to display. But the trace infrastructure wants
1947  * to use these without the added overhead at the price of being
1948  * a bit slower (used mainly for warnings, where we don't care
1949  * about performance). The internal_trace_puts() is for such
1950  * a purpose.
1951  */
1952 #define internal_trace_puts(str) __trace_puts(_THIS_IP_, str, strlen(str))
1953
1954 #undef FTRACE_ENTRY
1955 #define FTRACE_ENTRY(call, struct_name, id, tstruct, print, filter)     \
1956         extern struct trace_event_call                                  \
1957         __aligned(4) event_##call;
1958 #undef FTRACE_ENTRY_DUP
1959 #define FTRACE_ENTRY_DUP(call, struct_name, id, tstruct, print, filter) \
1960         FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \
1961                      filter)
1962 #undef FTRACE_ENTRY_PACKED
1963 #define FTRACE_ENTRY_PACKED(call, struct_name, id, tstruct, print, filter) \
1964         FTRACE_ENTRY(call, struct_name, id, PARAMS(tstruct), PARAMS(print), \
1965                      filter)
1966
1967 #include "trace_entries.h"
1968
1969 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_FUNCTION_TRACER)
1970 int perf_ftrace_event_register(struct trace_event_call *call,
1971                                enum trace_reg type, void *data);
1972 #else
1973 #define perf_ftrace_event_register NULL
1974 #endif
1975
1976 #ifdef CONFIG_FTRACE_SYSCALLS
1977 void init_ftrace_syscalls(void);
1978 const char *get_syscall_name(int syscall);
1979 #else
1980 static inline void init_ftrace_syscalls(void) { }
1981 static inline const char *get_syscall_name(int syscall)
1982 {
1983         return NULL;
1984 }
1985 #endif
1986
1987 #ifdef CONFIG_EVENT_TRACING
1988 void trace_event_init(void);
1989 void trace_event_eval_update(struct trace_eval_map **map, int len);
1990 /* Used from boot time tracer */
1991 extern int ftrace_set_clr_event(struct trace_array *tr, char *buf, int set);
1992 extern int trigger_process_regex(struct trace_event_file *file, char *buff);
1993 #else
1994 static inline void __init trace_event_init(void) { }
1995 static inline void trace_event_eval_update(struct trace_eval_map **map, int len) { }
1996 #endif
1997
1998 #ifdef CONFIG_TRACER_SNAPSHOT
1999 void tracing_snapshot_instance(struct trace_array *tr);
2000 int tracing_alloc_snapshot_instance(struct trace_array *tr);
2001 #else
2002 static inline void tracing_snapshot_instance(struct trace_array *tr) { }
2003 static inline int tracing_alloc_snapshot_instance(struct trace_array *tr)
2004 {
2005         return 0;
2006 }
2007 #endif
2008
2009 #ifdef CONFIG_PREEMPT_TRACER
2010 void tracer_preempt_on(unsigned long a0, unsigned long a1);
2011 void tracer_preempt_off(unsigned long a0, unsigned long a1);
2012 #else
2013 static inline void tracer_preempt_on(unsigned long a0, unsigned long a1) { }
2014 static inline void tracer_preempt_off(unsigned long a0, unsigned long a1) { }
2015 #endif
2016 #ifdef CONFIG_IRQSOFF_TRACER
2017 void tracer_hardirqs_on(unsigned long a0, unsigned long a1);
2018 void tracer_hardirqs_off(unsigned long a0, unsigned long a1);
2019 #else
2020 static inline void tracer_hardirqs_on(unsigned long a0, unsigned long a1) { }
2021 static inline void tracer_hardirqs_off(unsigned long a0, unsigned long a1) { }
2022 #endif
2023
2024 extern struct trace_iterator *tracepoint_print_iter;
2025
2026 /*
2027  * Reset the state of the trace_iterator so that it can read consumed data.
2028  * Normally, the trace_iterator is used for reading the data when it is not
2029  * consumed, and must retain state.
2030  */
2031 static __always_inline void trace_iterator_reset(struct trace_iterator *iter)
2032 {
2033         const size_t offset = offsetof(struct trace_iterator, seq);
2034
2035         /*
2036          * Keep gcc from complaining about overwriting more than just one
2037          * member in the structure.
2038          */
2039         memset((char *)iter + offset, 0, sizeof(struct trace_iterator) - offset);
2040
2041         iter->pos = -1;
2042 }
2043
2044 #endif /* _LINUX_KERNEL_TRACE_H */