5 * Copyright (C) 2008-2011, Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011, Red Hat, Inc., Peter Zijlstra
8 * Data type definitions, declarations, prototypes.
10 * Started by: Thomas Gleixner and Ingo Molnar
12 * For licencing details see kernel-base/COPYING
14 #ifndef _LINUX_PERF_EVENT_H
15 #define _LINUX_PERF_EVENT_H
17 #include <uapi/linux/perf_event.h>
18 #include <uapi/linux/bpf_perf_event.h>
21 * Kernel-internal data types and definitions:
24 #ifdef CONFIG_PERF_EVENTS
25 # include <asm/perf_event.h>
26 # include <asm/local64.h>
29 struct perf_guest_info_callbacks {
30 int (*is_in_guest)(void);
31 int (*is_user_mode)(void);
32 unsigned long (*get_guest_ip)(void);
35 #ifdef CONFIG_HAVE_HW_BREAKPOINT
36 #include <asm/hw_breakpoint.h>
39 #include <linux/list.h>
40 #include <linux/mutex.h>
41 #include <linux/rculist.h>
42 #include <linux/rcupdate.h>
43 #include <linux/spinlock.h>
44 #include <linux/hrtimer.h>
46 #include <linux/pid_namespace.h>
47 #include <linux/workqueue.h>
48 #include <linux/ftrace.h>
49 #include <linux/cpu.h>
50 #include <linux/irq_work.h>
51 #include <linux/static_key.h>
52 #include <linux/jump_label_ratelimit.h>
53 #include <linux/atomic.h>
54 #include <linux/sysfs.h>
55 #include <linux/perf_regs.h>
56 #include <linux/cgroup.h>
57 #include <linux/refcount.h>
58 #include <asm/local.h>
60 struct perf_callchain_entry {
62 __u64 ip[0]; /* /proc/sys/kernel/perf_event_max_stack */
65 struct perf_callchain_entry_ctx {
66 struct perf_callchain_entry *entry;
73 typedef unsigned long (*perf_copy_f)(void *dst, const void *src,
74 unsigned long off, unsigned long len);
76 struct perf_raw_frag {
78 struct perf_raw_frag *next;
86 struct perf_raw_record {
87 struct perf_raw_frag frag;
92 * branch stack layout:
93 * nr: number of taken branches stored in entries[]
95 * Note that nr can vary from sample to sample
96 * branches (to, from) are stored from most recent
97 * to least recent, i.e., entries[0] contains the most
100 struct perf_branch_stack {
102 struct perf_branch_entry entries[0];
108 * extra PMU register associated with an event
110 struct hw_perf_event_extra {
111 u64 config; /* register value */
112 unsigned int reg; /* register address or index */
113 int alloc; /* extra register already allocated */
114 int idx; /* index in shared_regs->regs[] */
118 * struct hw_perf_event - performance event hardware details:
120 struct hw_perf_event {
121 #ifdef CONFIG_PERF_EVENTS
123 struct { /* hardware */
126 unsigned long config_base;
127 unsigned long event_base;
128 int event_base_rdpmc;
133 struct hw_perf_event_extra extra_reg;
134 struct hw_perf_event_extra branch_reg;
136 struct { /* software */
137 struct hrtimer hrtimer;
139 struct { /* tracepoint */
140 /* for tp_event->class */
141 struct list_head tp_list;
143 struct { /* amd_power */
147 #ifdef CONFIG_HAVE_HW_BREAKPOINT
148 struct { /* breakpoint */
150 * Crufty hack to avoid the chicken and egg
151 * problem hw_breakpoint has with context
152 * creation and event initalization.
154 struct arch_hw_breakpoint info;
155 struct list_head bp_list;
158 struct { /* amd_iommu */
167 * If the event is a per task event, this will point to the task in
168 * question. See the comment in perf_event_alloc().
170 struct task_struct *target;
173 * PMU would store hardware filter configuration
178 /* Last sync'ed generation of filters */
179 unsigned long addr_filters_gen;
182 * hw_perf_event::state flags; used to track the PERF_EF_* state.
184 #define PERF_HES_STOPPED 0x01 /* the counter is stopped */
185 #define PERF_HES_UPTODATE 0x02 /* event->count up-to-date */
186 #define PERF_HES_ARCH 0x04
191 * The last observed hardware counter value, updated with a
192 * local64_cmpxchg() such that pmu::read() can be called nested.
194 local64_t prev_count;
197 * The period to start the next sample with.
202 * The period we started this sample with.
207 * However much is left of the current period; note that this is
208 * a full 64bit value and allows for generation of periods longer
209 * than hardware might allow.
211 local64_t period_left;
214 * State for throttling the event, see __perf_event_overflow() and
215 * perf_adjust_freq_unthr_context().
221 * State for freq target events, see __perf_event_overflow() and
222 * perf_adjust_freq_unthr_context().
225 u64 freq_count_stamp;
232 * Common implementation detail of pmu::{start,commit,cancel}_txn
234 #define PERF_PMU_TXN_ADD 0x1 /* txn to add/schedule event on PMU */
235 #define PERF_PMU_TXN_READ 0x2 /* txn to read event group from PMU */
238 * pmu::capabilities flags
240 #define PERF_PMU_CAP_NO_INTERRUPT 0x01
241 #define PERF_PMU_CAP_NO_NMI 0x02
242 #define PERF_PMU_CAP_AUX_NO_SG 0x04
243 #define PERF_PMU_CAP_AUX_SW_DOUBLEBUF 0x08
244 #define PERF_PMU_CAP_EXCLUSIVE 0x10
245 #define PERF_PMU_CAP_ITRACE 0x20
246 #define PERF_PMU_CAP_HETEROGENEOUS_CPUS 0x40
247 #define PERF_PMU_CAP_NO_EXCLUDE 0x80
250 * struct pmu - generic performance monitoring unit
253 struct list_head entry;
255 struct module *module;
257 const struct attribute_group **attr_groups;
262 * various common per-pmu feature flags
266 int __percpu *pmu_disable_count;
267 struct perf_cpu_context __percpu *pmu_cpu_context;
268 atomic_t exclusive_cnt; /* < 0: cpu; > 0: tsk */
270 int hrtimer_interval_ms;
272 /* number of address filters this PMU can do */
273 unsigned int nr_addr_filters;
276 * Fully disable/enable this PMU, can be used to protect from the PMI
277 * as well as for lazy/batch writing of the MSRs.
279 void (*pmu_enable) (struct pmu *pmu); /* optional */
280 void (*pmu_disable) (struct pmu *pmu); /* optional */
283 * Try and initialize the event for this PMU.
286 * -ENOENT -- @event is not for this PMU
288 * -ENODEV -- @event is for this PMU but PMU not present
289 * -EBUSY -- @event is for this PMU but PMU temporarily unavailable
290 * -EINVAL -- @event is for this PMU but @event is not valid
291 * -EOPNOTSUPP -- @event is for this PMU, @event is valid, but not supported
292 * -EACCESS -- @event is for this PMU, @event is valid, but no privilidges
294 * 0 -- @event is for this PMU and valid
296 * Other error return values are allowed.
298 int (*event_init) (struct perf_event *event);
301 * Notification that the event was mapped or unmapped. Called
302 * in the context of the mapping task.
304 void (*event_mapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
305 void (*event_unmapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
308 * Flags for ->add()/->del()/ ->start()/->stop(). There are
309 * matching hw_perf_event::state flags.
311 #define PERF_EF_START 0x01 /* start the counter when adding */
312 #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */
313 #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */
316 * Adds/Removes a counter to/from the PMU, can be done inside a
317 * transaction, see the ->*_txn() methods.
319 * The add/del callbacks will reserve all hardware resources required
320 * to service the event, this includes any counter constraint
323 * Called with IRQs disabled and the PMU disabled on the CPU the event
326 * ->add() called without PERF_EF_START should result in the same state
327 * as ->add() followed by ->stop().
329 * ->del() must always PERF_EF_UPDATE stop an event. If it calls
330 * ->stop() that must deal with already being stopped without
333 int (*add) (struct perf_event *event, int flags);
334 void (*del) (struct perf_event *event, int flags);
337 * Starts/Stops a counter present on the PMU.
339 * The PMI handler should stop the counter when perf_event_overflow()
340 * returns !0. ->start() will be used to continue.
342 * Also used to change the sample period.
344 * Called with IRQs disabled and the PMU disabled on the CPU the event
345 * is on -- will be called from NMI context with the PMU generates
348 * ->stop() with PERF_EF_UPDATE will read the counter and update
349 * period/count values like ->read() would.
351 * ->start() with PERF_EF_RELOAD will reprogram the the counter
352 * value, must be preceded by a ->stop() with PERF_EF_UPDATE.
354 void (*start) (struct perf_event *event, int flags);
355 void (*stop) (struct perf_event *event, int flags);
358 * Updates the counter value of the event.
360 * For sampling capable PMUs this will also update the software period
361 * hw_perf_event::period_left field.
363 void (*read) (struct perf_event *event);
366 * Group events scheduling is treated as a transaction, add
367 * group events as a whole and perform one schedulability test.
368 * If the test fails, roll back the whole group
370 * Start the transaction, after this ->add() doesn't need to
371 * do schedulability tests.
375 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags);
377 * If ->start_txn() disabled the ->add() schedulability test
378 * then ->commit_txn() is required to perform one. On success
379 * the transaction is closed. On error the transaction is kept
380 * open until ->cancel_txn() is called.
384 int (*commit_txn) (struct pmu *pmu);
386 * Will cancel the transaction, assumes ->del() is called
387 * for each successful ->add() during the transaction.
391 void (*cancel_txn) (struct pmu *pmu);
394 * Will return the value for perf_event_mmap_page::index for this event,
395 * if no implementation is provided it will default to: event->hw.idx + 1.
397 int (*event_idx) (struct perf_event *event); /*optional */
400 * context-switches callback
402 void (*sched_task) (struct perf_event_context *ctx,
405 * PMU specific data size
407 size_t task_ctx_size;
411 * Set up pmu-private data structures for an AUX area
413 void *(*setup_aux) (struct perf_event *event, void **pages,
414 int nr_pages, bool overwrite);
418 * Free pmu-private AUX data structures
420 void (*free_aux) (void *aux); /* optional */
423 * Validate address range filters: make sure the HW supports the
424 * requested configuration and number of filters; return 0 if the
425 * supplied filters are valid, -errno otherwise.
427 * Runs in the context of the ioctl()ing process and is not serialized
428 * with the rest of the PMU callbacks.
430 int (*addr_filters_validate) (struct list_head *filters);
434 * Synchronize address range filter configuration:
435 * translate hw-agnostic filters into hardware configuration in
436 * event::hw::addr_filters.
438 * Runs as a part of filter sync sequence that is done in ->start()
439 * callback by calling perf_event_addr_filters_sync().
441 * May (and should) traverse event::addr_filters::list, for which its
442 * caller provides necessary serialization.
444 void (*addr_filters_sync) (struct perf_event *event);
448 * Filter events for PMU-specific reasons.
450 int (*filter_match) (struct perf_event *event); /* optional */
453 * Check period value for PERF_EVENT_IOC_PERIOD ioctl.
455 int (*check_period) (struct perf_event *event, u64 value); /* optional */
458 enum perf_addr_filter_action_t {
459 PERF_ADDR_FILTER_ACTION_STOP = 0,
460 PERF_ADDR_FILTER_ACTION_START,
461 PERF_ADDR_FILTER_ACTION_FILTER,
465 * struct perf_addr_filter - address range filter definition
466 * @entry: event's filter list linkage
467 * @inode: object file's inode for file-based filters
468 * @offset: filter range offset
469 * @size: filter range size (size==0 means single address trigger)
470 * @action: filter/start/stop
472 * This is a hardware-agnostic filter configuration as specified by the user.
474 struct perf_addr_filter {
475 struct list_head entry;
477 unsigned long offset;
479 enum perf_addr_filter_action_t action;
483 * struct perf_addr_filters_head - container for address range filters
484 * @list: list of filters for this event
485 * @lock: spinlock that serializes accesses to the @list and event's
486 * (and its children's) filter generations.
487 * @nr_file_filters: number of file-based filters
489 * A child event will use parent's @list (and therefore @lock), so they are
490 * bundled together; see perf_event_addr_filters().
492 struct perf_addr_filters_head {
493 struct list_head list;
495 unsigned int nr_file_filters;
498 struct perf_addr_filter_range {
504 * enum perf_event_state - the states of an event:
506 enum perf_event_state {
507 PERF_EVENT_STATE_DEAD = -4,
508 PERF_EVENT_STATE_EXIT = -3,
509 PERF_EVENT_STATE_ERROR = -2,
510 PERF_EVENT_STATE_OFF = -1,
511 PERF_EVENT_STATE_INACTIVE = 0,
512 PERF_EVENT_STATE_ACTIVE = 1,
516 struct perf_sample_data;
518 typedef void (*perf_overflow_handler_t)(struct perf_event *,
519 struct perf_sample_data *,
520 struct pt_regs *regs);
523 * Event capabilities. For event_caps and groups caps.
525 * PERF_EV_CAP_SOFTWARE: Is a software event.
526 * PERF_EV_CAP_READ_ACTIVE_PKG: A CPU event (or cgroup event) that can be read
527 * from any CPU in the package where it is active.
529 #define PERF_EV_CAP_SOFTWARE BIT(0)
530 #define PERF_EV_CAP_READ_ACTIVE_PKG BIT(1)
532 #define SWEVENT_HLIST_BITS 8
533 #define SWEVENT_HLIST_SIZE (1 << SWEVENT_HLIST_BITS)
535 struct swevent_hlist {
536 struct hlist_head heads[SWEVENT_HLIST_SIZE];
537 struct rcu_head rcu_head;
540 #define PERF_ATTACH_CONTEXT 0x01
541 #define PERF_ATTACH_GROUP 0x02
542 #define PERF_ATTACH_TASK 0x04
543 #define PERF_ATTACH_TASK_DATA 0x08
544 #define PERF_ATTACH_ITRACE 0x10
549 struct pmu_event_list {
551 struct list_head list;
554 #define for_each_sibling_event(sibling, event) \
555 if ((event)->group_leader == (event)) \
556 list_for_each_entry((sibling), &(event)->sibling_list, sibling_list)
559 * struct perf_event - performance event kernel representation:
562 #ifdef CONFIG_PERF_EVENTS
564 * entry onto perf_event_context::event_list;
565 * modifications require ctx->lock
566 * RCU safe iterations.
568 struct list_head event_entry;
571 * Locked for modification by both ctx->mutex and ctx->lock; holding
572 * either sufficies for read.
574 struct list_head sibling_list;
575 struct list_head active_list;
577 * Node on the pinned or flexible tree located at the event context;
579 struct rb_node group_node;
582 * We need storage to track the entries in perf_pmu_migrate_context; we
583 * cannot use the event_entry because of RCU and we want to keep the
584 * group in tact which avoids us using the other two entries.
586 struct list_head migrate_entry;
588 struct hlist_node hlist_entry;
589 struct list_head active_entry;
592 /* Not serialized. Only written during event initialization. */
594 /* The cumulative AND of all event_caps for events in this group. */
597 struct perf_event *group_leader;
601 enum perf_event_state state;
602 unsigned int attach_state;
604 atomic64_t child_count;
607 * These are the total time in nanoseconds that the event
608 * has been enabled (i.e. eligible to run, and the task has
609 * been scheduled in, if this is a per-task event)
610 * and running (scheduled onto the CPU), respectively.
612 u64 total_time_enabled;
613 u64 total_time_running;
617 * timestamp shadows the actual context timing but it can
618 * be safely used in NMI interrupt context. It reflects the
619 * context time as it was when the event was last scheduled in.
621 * ctx_time already accounts for ctx->timestamp. Therefore to
622 * compute ctx_time for a sample, simply add perf_clock().
626 struct perf_event_attr attr;
630 struct hw_perf_event hw;
632 struct perf_event_context *ctx;
633 atomic_long_t refcount;
636 * These accumulate total time (in nanoseconds) that children
637 * events have been enabled and running, respectively.
639 atomic64_t child_total_time_enabled;
640 atomic64_t child_total_time_running;
643 * Protect attach/detach and child_list:
645 struct mutex child_mutex;
646 struct list_head child_list;
647 struct perf_event *parent;
652 struct list_head owner_entry;
653 struct task_struct *owner;
656 struct mutex mmap_mutex;
659 struct ring_buffer *rb;
660 struct list_head rb_entry;
661 unsigned long rcu_batches;
665 wait_queue_head_t waitq;
666 struct fasync_struct *fasync;
668 /* delayed work for NMIs and such */
672 struct irq_work pending;
674 atomic_t event_limit;
676 /* address range filters */
677 struct perf_addr_filters_head addr_filters;
678 /* vma address array for file-based filders */
679 struct perf_addr_filter_range *addr_filter_ranges;
680 unsigned long addr_filters_gen;
682 void (*destroy)(struct perf_event *);
683 struct rcu_head rcu_head;
685 struct pid_namespace *ns;
689 perf_overflow_handler_t overflow_handler;
690 void *overflow_handler_context;
691 #ifdef CONFIG_BPF_SYSCALL
692 perf_overflow_handler_t orig_overflow_handler;
693 struct bpf_prog *prog;
696 #ifdef CONFIG_EVENT_TRACING
697 struct trace_event_call *tp_event;
698 struct event_filter *filter;
699 #ifdef CONFIG_FUNCTION_TRACER
700 struct ftrace_ops ftrace_ops;
704 #ifdef CONFIG_CGROUP_PERF
705 struct perf_cgroup *cgrp; /* cgroup event is attach to */
708 struct list_head sb_list;
709 #endif /* CONFIG_PERF_EVENTS */
713 struct perf_event_groups {
719 * struct perf_event_context - event context structure
721 * Used as a container for task events and CPU events as well:
723 struct perf_event_context {
726 * Protect the states of the events in the list,
727 * nr_active, and the list:
731 * Protect the list of events. Locking either mutex or lock
732 * is sufficient to ensure the list doesn't change; to change
733 * the list you need to lock both the mutex and the spinlock.
737 struct list_head active_ctx_list;
738 struct perf_event_groups pinned_groups;
739 struct perf_event_groups flexible_groups;
740 struct list_head event_list;
742 struct list_head pinned_active;
743 struct list_head flexible_active;
752 struct task_struct *task;
755 * Context clock, runs when context enabled.
761 * These fields let us detect when two contexts have both
762 * been cloned (inherited) from a common ancestor.
764 struct perf_event_context *parent_ctx;
768 #ifdef CONFIG_CGROUP_PERF
769 int nr_cgroups; /* cgroup evts */
771 void *task_ctx_data; /* pmu specific data */
772 struct rcu_head rcu_head;
776 * Number of contexts where an event can trigger:
777 * task, softirq, hardirq, nmi.
779 #define PERF_NR_CONTEXTS 4
782 * struct perf_event_cpu_context - per cpu event context structure
784 struct perf_cpu_context {
785 struct perf_event_context ctx;
786 struct perf_event_context *task_ctx;
790 raw_spinlock_t hrtimer_lock;
791 struct hrtimer hrtimer;
792 ktime_t hrtimer_interval;
793 unsigned int hrtimer_active;
795 #ifdef CONFIG_CGROUP_PERF
796 struct perf_cgroup *cgrp;
797 struct list_head cgrp_cpuctx_entry;
800 struct list_head sched_cb_entry;
806 struct perf_output_handle {
807 struct perf_event *event;
808 struct ring_buffer *rb;
809 unsigned long wakeup;
819 struct bpf_perf_event_data_kern {
820 bpf_user_pt_regs_t *regs;
821 struct perf_sample_data *data;
822 struct perf_event *event;
825 #ifdef CONFIG_CGROUP_PERF
828 * perf_cgroup_info keeps track of time_enabled for a cgroup.
829 * This is a per-cpu dynamically allocated data structure.
831 struct perf_cgroup_info {
837 struct cgroup_subsys_state css;
838 struct perf_cgroup_info __percpu *info;
842 * Must ensure cgroup is pinned (css_get) before calling
843 * this function. In other words, we cannot call this function
844 * if there is no cgroup event for the current CPU context.
846 static inline struct perf_cgroup *
847 perf_cgroup_from_task(struct task_struct *task, struct perf_event_context *ctx)
849 return container_of(task_css_check(task, perf_event_cgrp_id,
850 ctx ? lockdep_is_held(&ctx->lock)
852 struct perf_cgroup, css);
854 #endif /* CONFIG_CGROUP_PERF */
856 #ifdef CONFIG_PERF_EVENTS
858 extern void *perf_aux_output_begin(struct perf_output_handle *handle,
859 struct perf_event *event);
860 extern void perf_aux_output_end(struct perf_output_handle *handle,
862 extern int perf_aux_output_skip(struct perf_output_handle *handle,
864 extern void *perf_get_aux(struct perf_output_handle *handle);
865 extern void perf_aux_output_flag(struct perf_output_handle *handle, u64 flags);
866 extern void perf_event_itrace_started(struct perf_event *event);
868 extern int perf_pmu_register(struct pmu *pmu, const char *name, int type);
869 extern void perf_pmu_unregister(struct pmu *pmu);
871 extern int perf_num_counters(void);
872 extern const char *perf_pmu_name(void);
873 extern void __perf_event_task_sched_in(struct task_struct *prev,
874 struct task_struct *task);
875 extern void __perf_event_task_sched_out(struct task_struct *prev,
876 struct task_struct *next);
877 extern int perf_event_init_task(struct task_struct *child);
878 extern void perf_event_exit_task(struct task_struct *child);
879 extern void perf_event_free_task(struct task_struct *task);
880 extern void perf_event_delayed_put(struct task_struct *task);
881 extern struct file *perf_event_get(unsigned int fd);
882 extern const struct perf_event *perf_get_event(struct file *file);
883 extern const struct perf_event_attr *perf_event_attrs(struct perf_event *event);
884 extern void perf_event_print_debug(void);
885 extern void perf_pmu_disable(struct pmu *pmu);
886 extern void perf_pmu_enable(struct pmu *pmu);
887 extern void perf_sched_cb_dec(struct pmu *pmu);
888 extern void perf_sched_cb_inc(struct pmu *pmu);
889 extern int perf_event_task_disable(void);
890 extern int perf_event_task_enable(void);
891 extern int perf_event_refresh(struct perf_event *event, int refresh);
892 extern void perf_event_update_userpage(struct perf_event *event);
893 extern int perf_event_release_kernel(struct perf_event *event);
894 extern struct perf_event *
895 perf_event_create_kernel_counter(struct perf_event_attr *attr,
897 struct task_struct *task,
898 perf_overflow_handler_t callback,
900 extern void perf_pmu_migrate_context(struct pmu *pmu,
901 int src_cpu, int dst_cpu);
902 int perf_event_read_local(struct perf_event *event, u64 *value,
903 u64 *enabled, u64 *running);
904 extern u64 perf_event_read_value(struct perf_event *event,
905 u64 *enabled, u64 *running);
908 struct perf_sample_data {
910 * Fields set by perf_sample_data_init(), group so as to
911 * minimize the cachelines touched.
914 struct perf_raw_record *raw;
915 struct perf_branch_stack *br_stack;
919 union perf_mem_data_src data_src;
922 * The other fields, optionally {set,used} by
923 * perf_{prepare,output}_sample().
938 struct perf_callchain_entry *callchain;
941 * regs_user may point to task_pt_regs or to regs_user_copy, depending
944 struct perf_regs regs_user;
945 struct pt_regs regs_user_copy;
947 struct perf_regs regs_intr;
951 } ____cacheline_aligned;
953 /* default value for data source */
954 #define PERF_MEM_NA (PERF_MEM_S(OP, NA) |\
955 PERF_MEM_S(LVL, NA) |\
956 PERF_MEM_S(SNOOP, NA) |\
957 PERF_MEM_S(LOCK, NA) |\
960 static inline void perf_sample_data_init(struct perf_sample_data *data,
961 u64 addr, u64 period)
963 /* remaining struct members initialized in perf_prepare_sample() */
966 data->br_stack = NULL;
967 data->period = period;
969 data->data_src.val = PERF_MEM_NA;
973 extern void perf_output_sample(struct perf_output_handle *handle,
974 struct perf_event_header *header,
975 struct perf_sample_data *data,
976 struct perf_event *event);
977 extern void perf_prepare_sample(struct perf_event_header *header,
978 struct perf_sample_data *data,
979 struct perf_event *event,
980 struct pt_regs *regs);
982 extern int perf_event_overflow(struct perf_event *event,
983 struct perf_sample_data *data,
984 struct pt_regs *regs);
986 extern void perf_event_output_forward(struct perf_event *event,
987 struct perf_sample_data *data,
988 struct pt_regs *regs);
989 extern void perf_event_output_backward(struct perf_event *event,
990 struct perf_sample_data *data,
991 struct pt_regs *regs);
992 extern int perf_event_output(struct perf_event *event,
993 struct perf_sample_data *data,
994 struct pt_regs *regs);
997 is_default_overflow_handler(struct perf_event *event)
999 if (likely(event->overflow_handler == perf_event_output_forward))
1001 if (unlikely(event->overflow_handler == perf_event_output_backward))
1007 perf_event_header__init_id(struct perf_event_header *header,
1008 struct perf_sample_data *data,
1009 struct perf_event *event);
1011 perf_event__output_id_sample(struct perf_event *event,
1012 struct perf_output_handle *handle,
1013 struct perf_sample_data *sample);
1016 perf_log_lost_samples(struct perf_event *event, u64 lost);
1018 static inline bool event_has_any_exclude_flag(struct perf_event *event)
1020 struct perf_event_attr *attr = &event->attr;
1022 return attr->exclude_idle || attr->exclude_user ||
1023 attr->exclude_kernel || attr->exclude_hv ||
1024 attr->exclude_guest || attr->exclude_host;
1027 static inline bool is_sampling_event(struct perf_event *event)
1029 return event->attr.sample_period != 0;
1033 * Return 1 for a software event, 0 for a hardware event
1035 static inline int is_software_event(struct perf_event *event)
1037 return event->event_caps & PERF_EV_CAP_SOFTWARE;
1041 * Return 1 for event in sw context, 0 for event in hw context
1043 static inline int in_software_context(struct perf_event *event)
1045 return event->ctx->pmu->task_ctx_nr == perf_sw_context;
1048 extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
1050 extern void ___perf_sw_event(u32, u64, struct pt_regs *, u64);
1051 extern void __perf_sw_event(u32, u64, struct pt_regs *, u64);
1053 #ifndef perf_arch_fetch_caller_regs
1054 static inline void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { }
1058 * Take a snapshot of the regs. Skip ip and frame pointer to
1059 * the nth caller. We only need a few of the regs:
1060 * - ip for PERF_SAMPLE_IP
1061 * - cs for user_mode() tests
1062 * - bp for callchains
1063 * - eflags, for future purposes, just in case
1065 static inline void perf_fetch_caller_regs(struct pt_regs *regs)
1067 perf_arch_fetch_caller_regs(regs, CALLER_ADDR0);
1070 static __always_inline void
1071 perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
1073 if (static_key_false(&perf_swevent_enabled[event_id]))
1074 __perf_sw_event(event_id, nr, regs, addr);
1077 DECLARE_PER_CPU(struct pt_regs, __perf_regs[4]);
1080 * 'Special' version for the scheduler, it hard assumes no recursion,
1081 * which is guaranteed by us not actually scheduling inside other swevents
1082 * because those disable preemption.
1084 static __always_inline void
1085 perf_sw_event_sched(u32 event_id, u64 nr, u64 addr)
1087 if (static_key_false(&perf_swevent_enabled[event_id])) {
1088 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1090 perf_fetch_caller_regs(regs);
1091 ___perf_sw_event(event_id, nr, regs, addr);
1095 extern struct static_key_false perf_sched_events;
1097 static __always_inline bool
1098 perf_sw_migrate_enabled(void)
1100 if (static_key_false(&perf_swevent_enabled[PERF_COUNT_SW_CPU_MIGRATIONS]))
1105 static inline void perf_event_task_migrate(struct task_struct *task)
1107 if (perf_sw_migrate_enabled())
1108 task->sched_migrated = 1;
1111 static inline void perf_event_task_sched_in(struct task_struct *prev,
1112 struct task_struct *task)
1114 if (static_branch_unlikely(&perf_sched_events))
1115 __perf_event_task_sched_in(prev, task);
1117 if (perf_sw_migrate_enabled() && task->sched_migrated) {
1118 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1120 perf_fetch_caller_regs(regs);
1121 ___perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, regs, 0);
1122 task->sched_migrated = 0;
1126 static inline void perf_event_task_sched_out(struct task_struct *prev,
1127 struct task_struct *next)
1129 perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 0);
1131 if (static_branch_unlikely(&perf_sched_events))
1132 __perf_event_task_sched_out(prev, next);
1135 extern void perf_event_mmap(struct vm_area_struct *vma);
1137 extern void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len,
1138 bool unregister, const char *sym);
1139 extern void perf_event_bpf_event(struct bpf_prog *prog,
1140 enum perf_bpf_event_type type,
1143 extern struct perf_guest_info_callbacks *perf_guest_cbs;
1144 extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
1145 extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
1147 extern void perf_event_exec(void);
1148 extern void perf_event_comm(struct task_struct *tsk, bool exec);
1149 extern void perf_event_namespaces(struct task_struct *tsk);
1150 extern void perf_event_fork(struct task_struct *tsk);
1153 DECLARE_PER_CPU(struct perf_callchain_entry, perf_callchain_entry);
1155 extern void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs);
1156 extern void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs);
1157 extern struct perf_callchain_entry *
1158 get_perf_callchain(struct pt_regs *regs, u32 init_nr, bool kernel, bool user,
1159 u32 max_stack, bool crosstask, bool add_mark);
1160 extern struct perf_callchain_entry *perf_callchain(struct perf_event *event, struct pt_regs *regs);
1161 extern int get_callchain_buffers(int max_stack);
1162 extern void put_callchain_buffers(void);
1164 extern int sysctl_perf_event_max_stack;
1165 extern int sysctl_perf_event_max_contexts_per_stack;
1167 static inline int perf_callchain_store_context(struct perf_callchain_entry_ctx *ctx, u64 ip)
1169 if (ctx->contexts < sysctl_perf_event_max_contexts_per_stack) {
1170 struct perf_callchain_entry *entry = ctx->entry;
1171 entry->ip[entry->nr++] = ip;
1175 ctx->contexts_maxed = true;
1176 return -1; /* no more room, stop walking the stack */
1180 static inline int perf_callchain_store(struct perf_callchain_entry_ctx *ctx, u64 ip)
1182 if (ctx->nr < ctx->max_stack && !ctx->contexts_maxed) {
1183 struct perf_callchain_entry *entry = ctx->entry;
1184 entry->ip[entry->nr++] = ip;
1188 return -1; /* no more room, stop walking the stack */
1192 extern int sysctl_perf_event_paranoid;
1193 extern int sysctl_perf_event_mlock;
1194 extern int sysctl_perf_event_sample_rate;
1195 extern int sysctl_perf_cpu_time_max_percent;
1197 extern void perf_sample_event_took(u64 sample_len_ns);
1199 extern int perf_proc_update_handler(struct ctl_table *table, int write,
1200 void __user *buffer, size_t *lenp,
1202 extern int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
1203 void __user *buffer, size_t *lenp,
1206 int perf_event_max_stack_handler(struct ctl_table *table, int write,
1207 void __user *buffer, size_t *lenp, loff_t *ppos);
1209 static inline bool perf_paranoid_tracepoint_raw(void)
1211 return sysctl_perf_event_paranoid > -1;
1214 static inline bool perf_paranoid_cpu(void)
1216 return sysctl_perf_event_paranoid > 0;
1219 static inline bool perf_paranoid_kernel(void)
1221 return sysctl_perf_event_paranoid > 1;
1224 extern void perf_event_init(void);
1225 extern void perf_tp_event(u16 event_type, u64 count, void *record,
1226 int entry_size, struct pt_regs *regs,
1227 struct hlist_head *head, int rctx,
1228 struct task_struct *task);
1229 extern void perf_bp_event(struct perf_event *event, void *data);
1231 #ifndef perf_misc_flags
1232 # define perf_misc_flags(regs) \
1233 (user_mode(regs) ? PERF_RECORD_MISC_USER : PERF_RECORD_MISC_KERNEL)
1234 # define perf_instruction_pointer(regs) instruction_pointer(regs)
1236 #ifndef perf_arch_bpf_user_pt_regs
1237 # define perf_arch_bpf_user_pt_regs(regs) regs
1240 static inline bool has_branch_stack(struct perf_event *event)
1242 return event->attr.sample_type & PERF_SAMPLE_BRANCH_STACK;
1245 static inline bool needs_branch_stack(struct perf_event *event)
1247 return event->attr.branch_sample_type != 0;
1250 static inline bool has_aux(struct perf_event *event)
1252 return event->pmu->setup_aux;
1255 static inline bool is_write_backward(struct perf_event *event)
1257 return !!event->attr.write_backward;
1260 static inline bool has_addr_filter(struct perf_event *event)
1262 return event->pmu->nr_addr_filters;
1266 * An inherited event uses parent's filters
1268 static inline struct perf_addr_filters_head *
1269 perf_event_addr_filters(struct perf_event *event)
1271 struct perf_addr_filters_head *ifh = &event->addr_filters;
1274 ifh = &event->parent->addr_filters;
1279 extern void perf_event_addr_filters_sync(struct perf_event *event);
1281 extern int perf_output_begin(struct perf_output_handle *handle,
1282 struct perf_event *event, unsigned int size);
1283 extern int perf_output_begin_forward(struct perf_output_handle *handle,
1284 struct perf_event *event,
1286 extern int perf_output_begin_backward(struct perf_output_handle *handle,
1287 struct perf_event *event,
1290 extern void perf_output_end(struct perf_output_handle *handle);
1291 extern unsigned int perf_output_copy(struct perf_output_handle *handle,
1292 const void *buf, unsigned int len);
1293 extern unsigned int perf_output_skip(struct perf_output_handle *handle,
1295 extern int perf_swevent_get_recursion_context(void);
1296 extern void perf_swevent_put_recursion_context(int rctx);
1297 extern u64 perf_swevent_set_period(struct perf_event *event);
1298 extern void perf_event_enable(struct perf_event *event);
1299 extern void perf_event_disable(struct perf_event *event);
1300 extern void perf_event_disable_local(struct perf_event *event);
1301 extern void perf_event_disable_inatomic(struct perf_event *event);
1302 extern void perf_event_task_tick(void);
1303 extern int perf_event_account_interrupt(struct perf_event *event);
1304 #else /* !CONFIG_PERF_EVENTS: */
1305 static inline void *
1306 perf_aux_output_begin(struct perf_output_handle *handle,
1307 struct perf_event *event) { return NULL; }
1309 perf_aux_output_end(struct perf_output_handle *handle, unsigned long size)
1312 perf_aux_output_skip(struct perf_output_handle *handle,
1313 unsigned long size) { return -EINVAL; }
1314 static inline void *
1315 perf_get_aux(struct perf_output_handle *handle) { return NULL; }
1317 perf_event_task_migrate(struct task_struct *task) { }
1319 perf_event_task_sched_in(struct task_struct *prev,
1320 struct task_struct *task) { }
1322 perf_event_task_sched_out(struct task_struct *prev,
1323 struct task_struct *next) { }
1324 static inline int perf_event_init_task(struct task_struct *child) { return 0; }
1325 static inline void perf_event_exit_task(struct task_struct *child) { }
1326 static inline void perf_event_free_task(struct task_struct *task) { }
1327 static inline void perf_event_delayed_put(struct task_struct *task) { }
1328 static inline struct file *perf_event_get(unsigned int fd) { return ERR_PTR(-EINVAL); }
1329 static inline const struct perf_event *perf_get_event(struct file *file)
1331 return ERR_PTR(-EINVAL);
1333 static inline const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
1335 return ERR_PTR(-EINVAL);
1337 static inline int perf_event_read_local(struct perf_event *event, u64 *value,
1338 u64 *enabled, u64 *running)
1342 static inline void perf_event_print_debug(void) { }
1343 static inline int perf_event_task_disable(void) { return -EINVAL; }
1344 static inline int perf_event_task_enable(void) { return -EINVAL; }
1345 static inline int perf_event_refresh(struct perf_event *event, int refresh)
1351 perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { }
1353 perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) { }
1355 perf_bp_event(struct perf_event *event, void *data) { }
1357 static inline int perf_register_guest_info_callbacks
1358 (struct perf_guest_info_callbacks *callbacks) { return 0; }
1359 static inline int perf_unregister_guest_info_callbacks
1360 (struct perf_guest_info_callbacks *callbacks) { return 0; }
1362 static inline void perf_event_mmap(struct vm_area_struct *vma) { }
1364 typedef int (perf_ksymbol_get_name_f)(char *name, int name_len, void *data);
1365 static inline void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len,
1366 bool unregister, const char *sym) { }
1367 static inline void perf_event_bpf_event(struct bpf_prog *prog,
1368 enum perf_bpf_event_type type,
1370 static inline void perf_event_exec(void) { }
1371 static inline void perf_event_comm(struct task_struct *tsk, bool exec) { }
1372 static inline void perf_event_namespaces(struct task_struct *tsk) { }
1373 static inline void perf_event_fork(struct task_struct *tsk) { }
1374 static inline void perf_event_init(void) { }
1375 static inline int perf_swevent_get_recursion_context(void) { return -1; }
1376 static inline void perf_swevent_put_recursion_context(int rctx) { }
1377 static inline u64 perf_swevent_set_period(struct perf_event *event) { return 0; }
1378 static inline void perf_event_enable(struct perf_event *event) { }
1379 static inline void perf_event_disable(struct perf_event *event) { }
1380 static inline int __perf_event_disable(void *info) { return -1; }
1381 static inline void perf_event_task_tick(void) { }
1382 static inline int perf_event_release_kernel(struct perf_event *event) { return 0; }
1385 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
1386 extern void perf_restore_debug_store(void);
1388 static inline void perf_restore_debug_store(void) { }
1391 static __always_inline bool perf_raw_frag_last(const struct perf_raw_frag *frag)
1393 return frag->pad < sizeof(u64);
1396 #define perf_output_put(handle, x) perf_output_copy((handle), &(x), sizeof(x))
1398 struct perf_pmu_events_attr {
1399 struct device_attribute attr;
1401 const char *event_str;
1404 struct perf_pmu_events_ht_attr {
1405 struct device_attribute attr;
1407 const char *event_str_ht;
1408 const char *event_str_noht;
1411 ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
1414 #define PMU_EVENT_ATTR(_name, _var, _id, _show) \
1415 static struct perf_pmu_events_attr _var = { \
1416 .attr = __ATTR(_name, 0444, _show, NULL), \
1420 #define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
1421 static struct perf_pmu_events_attr _var = { \
1422 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
1424 .event_str = _str, \
1427 #define PMU_FORMAT_ATTR(_name, _format) \
1429 _name##_show(struct device *dev, \
1430 struct device_attribute *attr, \
1433 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1434 return sprintf(page, _format "\n"); \
1437 static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1439 /* Performance counter hotplug functions */
1440 #ifdef CONFIG_PERF_EVENTS
1441 int perf_event_init_cpu(unsigned int cpu);
1442 int perf_event_exit_cpu(unsigned int cpu);
1444 #define perf_event_init_cpu NULL
1445 #define perf_event_exit_cpu NULL
1448 #endif /* _LINUX_PERF_EVENT_H */