4 * Copyright (C) 2008-2009, Thomas Gleixner <tglx@linutronix.de>
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/workqueue.h>
57 #include <linux/cgroup.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
249 * struct pmu - generic performance monitoring unit
252 struct list_head entry
;
254 struct module
*module
;
256 const struct attribute_group
**attr_groups
;
261 * various common per-pmu feature flags
265 int * __percpu pmu_disable_count
;
266 struct perf_cpu_context
* __percpu pmu_cpu_context
;
267 atomic_t exclusive_cnt
; /* < 0: cpu; > 0: tsk */
269 int hrtimer_interval_ms
;
271 /* number of address filters this PMU can do */
272 unsigned int nr_addr_filters
;
275 * Fully disable/enable this PMU, can be used to protect from the PMI
276 * as well as for lazy/batch writing of the MSRs.
278 void (*pmu_enable
) (struct pmu
*pmu
); /* optional */
279 void (*pmu_disable
) (struct pmu
*pmu
); /* optional */
282 * Try and initialize the event for this PMU.
285 * -ENOENT -- @event is not for this PMU
287 * -ENODEV -- @event is for this PMU but PMU not present
288 * -EBUSY -- @event is for this PMU but PMU temporarily unavailable
289 * -EINVAL -- @event is for this PMU but @event is not valid
290 * -EOPNOTSUPP -- @event is for this PMU, @event is valid, but not supported
291 * -EACCESS -- @event is for this PMU, @event is valid, but no privilidges
293 * 0 -- @event is for this PMU and valid
295 * Other error return values are allowed.
297 int (*event_init
) (struct perf_event
*event
);
300 * Notification that the event was mapped or unmapped. Called
301 * in the context of the mapping task.
303 void (*event_mapped
) (struct perf_event
*event
, struct mm_struct
*mm
); /* optional */
304 void (*event_unmapped
) (struct perf_event
*event
, struct mm_struct
*mm
); /* optional */
307 * Flags for ->add()/->del()/ ->start()/->stop(). There are
308 * matching hw_perf_event::state flags.
310 #define PERF_EF_START 0x01 /* start the counter when adding */
311 #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */
312 #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */
315 * Adds/Removes a counter to/from the PMU, can be done inside a
316 * transaction, see the ->*_txn() methods.
318 * The add/del callbacks will reserve all hardware resources required
319 * to service the event, this includes any counter constraint
322 * Called with IRQs disabled and the PMU disabled on the CPU the event
325 * ->add() called without PERF_EF_START should result in the same state
326 * as ->add() followed by ->stop().
328 * ->del() must always PERF_EF_UPDATE stop an event. If it calls
329 * ->stop() that must deal with already being stopped without
332 int (*add
) (struct perf_event
*event
, int flags
);
333 void (*del
) (struct perf_event
*event
, int flags
);
336 * Starts/Stops a counter present on the PMU.
338 * The PMI handler should stop the counter when perf_event_overflow()
339 * returns !0. ->start() will be used to continue.
341 * Also used to change the sample period.
343 * Called with IRQs disabled and the PMU disabled on the CPU the event
344 * is on -- will be called from NMI context with the PMU generates
347 * ->stop() with PERF_EF_UPDATE will read the counter and update
348 * period/count values like ->read() would.
350 * ->start() with PERF_EF_RELOAD will reprogram the the counter
351 * value, must be preceded by a ->stop() with PERF_EF_UPDATE.
353 void (*start
) (struct perf_event
*event
, int flags
);
354 void (*stop
) (struct perf_event
*event
, int flags
);
357 * Updates the counter value of the event.
359 * For sampling capable PMUs this will also update the software period
360 * hw_perf_event::period_left field.
362 void (*read
) (struct perf_event
*event
);
365 * Group events scheduling is treated as a transaction, add
366 * group events as a whole and perform one schedulability test.
367 * If the test fails, roll back the whole group
369 * Start the transaction, after this ->add() doesn't need to
370 * do schedulability tests.
374 void (*start_txn
) (struct pmu
*pmu
, unsigned int txn_flags
);
376 * If ->start_txn() disabled the ->add() schedulability test
377 * then ->commit_txn() is required to perform one. On success
378 * the transaction is closed. On error the transaction is kept
379 * open until ->cancel_txn() is called.
383 int (*commit_txn
) (struct pmu
*pmu
);
385 * Will cancel the transaction, assumes ->del() is called
386 * for each successful ->add() during the transaction.
390 void (*cancel_txn
) (struct pmu
*pmu
);
393 * Will return the value for perf_event_mmap_page::index for this event,
394 * if no implementation is provided it will default to: event->hw.idx + 1.
396 int (*event_idx
) (struct perf_event
*event
); /*optional */
399 * context-switches callback
401 void (*sched_task
) (struct perf_event_context
*ctx
,
404 * PMU specific data size
406 size_t task_ctx_size
;
410 * Set up pmu-private data structures for an AUX area
412 void *(*setup_aux
) (int cpu
, void **pages
,
413 int nr_pages
, bool overwrite
);
417 * Free pmu-private AUX data structures
419 void (*free_aux
) (void *aux
); /* optional */
422 * Validate address range filters: make sure the HW supports the
423 * requested configuration and number of filters; return 0 if the
424 * supplied filters are valid, -errno otherwise.
426 * Runs in the context of the ioctl()ing process and is not serialized
427 * with the rest of the PMU callbacks.
429 int (*addr_filters_validate
) (struct list_head
*filters
);
433 * Synchronize address range filter configuration:
434 * translate hw-agnostic filters into hardware configuration in
435 * event::hw::addr_filters.
437 * Runs as a part of filter sync sequence that is done in ->start()
438 * callback by calling perf_event_addr_filters_sync().
440 * May (and should) traverse event::addr_filters::list, for which its
441 * caller provides necessary serialization.
443 void (*addr_filters_sync
) (struct perf_event
*event
);
447 * Filter events for PMU-specific reasons.
449 int (*filter_match
) (struct perf_event
*event
); /* optional */
453 * struct perf_addr_filter - address range filter definition
454 * @entry: event's filter list linkage
455 * @inode: object file's inode for file-based filters
456 * @offset: filter range offset
457 * @size: filter range size
458 * @range: 1: range, 0: address
459 * @filter: 1: filter/start, 0: stop
461 * This is a hardware-agnostic filter configuration as specified by the user.
463 struct perf_addr_filter
{
464 struct list_head entry
;
466 unsigned long offset
;
468 unsigned int range
: 1,
473 * struct perf_addr_filters_head - container for address range filters
474 * @list: list of filters for this event
475 * @lock: spinlock that serializes accesses to the @list and event's
476 * (and its children's) filter generations.
477 * @nr_file_filters: number of file-based filters
479 * A child event will use parent's @list (and therefore @lock), so they are
480 * bundled together; see perf_event_addr_filters().
482 struct perf_addr_filters_head
{
483 struct list_head list
;
485 unsigned int nr_file_filters
;
489 * enum perf_event_state - the states of a event
491 enum perf_event_state
{
492 PERF_EVENT_STATE_DEAD
= -4,
493 PERF_EVENT_STATE_EXIT
= -3,
494 PERF_EVENT_STATE_ERROR
= -2,
495 PERF_EVENT_STATE_OFF
= -1,
496 PERF_EVENT_STATE_INACTIVE
= 0,
497 PERF_EVENT_STATE_ACTIVE
= 1,
501 struct perf_sample_data
;
503 typedef void (*perf_overflow_handler_t
)(struct perf_event
*,
504 struct perf_sample_data
*,
505 struct pt_regs
*regs
);
508 * Event capabilities. For event_caps and groups caps.
510 * PERF_EV_CAP_SOFTWARE: Is a software event.
511 * PERF_EV_CAP_READ_ACTIVE_PKG: A CPU event (or cgroup event) that can be read
512 * from any CPU in the package where it is active.
514 #define PERF_EV_CAP_SOFTWARE BIT(0)
515 #define PERF_EV_CAP_READ_ACTIVE_PKG BIT(1)
517 #define SWEVENT_HLIST_BITS 8
518 #define SWEVENT_HLIST_SIZE (1 << SWEVENT_HLIST_BITS)
520 struct swevent_hlist
{
521 struct hlist_head heads
[SWEVENT_HLIST_SIZE
];
522 struct rcu_head rcu_head
;
525 #define PERF_ATTACH_CONTEXT 0x01
526 #define PERF_ATTACH_GROUP 0x02
527 #define PERF_ATTACH_TASK 0x04
528 #define PERF_ATTACH_TASK_DATA 0x08
529 #define PERF_ATTACH_ITRACE 0x10
534 struct pmu_event_list
{
536 struct list_head list
;
540 * struct perf_event - performance event kernel representation:
543 #ifdef CONFIG_PERF_EVENTS
545 * entry onto perf_event_context::event_list;
546 * modifications require ctx->lock
547 * RCU safe iterations.
549 struct list_head event_entry
;
552 * XXX: group_entry and sibling_list should be mutually exclusive;
553 * either you're a sibling on a group, or you're the group leader.
554 * Rework the code to always use the same list element.
556 * Locked for modification by both ctx->mutex and ctx->lock; holding
557 * either sufficies for read.
559 struct list_head group_entry
;
560 struct list_head sibling_list
;
563 * We need storage to track the entries in perf_pmu_migrate_context; we
564 * cannot use the event_entry because of RCU and we want to keep the
565 * group in tact which avoids us using the other two entries.
567 struct list_head migrate_entry
;
569 struct hlist_node hlist_entry
;
570 struct list_head active_entry
;
573 /* Not serialized. Only written during event initialization. */
575 /* The cumulative AND of all event_caps for events in this group. */
578 struct perf_event
*group_leader
;
582 enum perf_event_state state
;
583 unsigned int attach_state
;
585 atomic64_t child_count
;
588 * These are the total time in nanoseconds that the event
589 * has been enabled (i.e. eligible to run, and the task has
590 * been scheduled in, if this is a per-task event)
591 * and running (scheduled onto the CPU), respectively.
593 u64 total_time_enabled
;
594 u64 total_time_running
;
598 * timestamp shadows the actual context timing but it can
599 * be safely used in NMI interrupt context. It reflects the
600 * context time as it was when the event was last scheduled in.
602 * ctx_time already accounts for ctx->timestamp. Therefore to
603 * compute ctx_time for a sample, simply add perf_clock().
607 struct perf_event_attr attr
;
611 struct hw_perf_event hw
;
613 struct perf_event_context
*ctx
;
614 atomic_long_t refcount
;
617 * These accumulate total time (in nanoseconds) that children
618 * events have been enabled and running, respectively.
620 atomic64_t child_total_time_enabled
;
621 atomic64_t child_total_time_running
;
624 * Protect attach/detach and child_list:
626 struct mutex child_mutex
;
627 struct list_head child_list
;
628 struct perf_event
*parent
;
633 struct list_head owner_entry
;
634 struct task_struct
*owner
;
637 struct mutex mmap_mutex
;
640 struct ring_buffer
*rb
;
641 struct list_head rb_entry
;
642 unsigned long rcu_batches
;
646 wait_queue_head_t waitq
;
647 struct fasync_struct
*fasync
;
649 /* delayed work for NMIs and such */
653 struct irq_work pending
;
655 atomic_t event_limit
;
657 /* address range filters */
658 struct perf_addr_filters_head addr_filters
;
659 /* vma address array for file-based filders */
660 unsigned long *addr_filters_offs
;
661 unsigned long addr_filters_gen
;
663 void (*destroy
)(struct perf_event
*);
664 struct rcu_head rcu_head
;
666 struct pid_namespace
*ns
;
670 perf_overflow_handler_t overflow_handler
;
671 void *overflow_handler_context
;
672 #ifdef CONFIG_BPF_SYSCALL
673 perf_overflow_handler_t orig_overflow_handler
;
674 struct bpf_prog
*prog
;
677 #ifdef CONFIG_EVENT_TRACING
678 struct trace_event_call
*tp_event
;
679 struct event_filter
*filter
;
680 #ifdef CONFIG_FUNCTION_TRACER
681 struct ftrace_ops ftrace_ops
;
685 #ifdef CONFIG_CGROUP_PERF
686 struct perf_cgroup
*cgrp
; /* cgroup event is attach to */
689 struct list_head sb_list
;
690 #endif /* CONFIG_PERF_EVENTS */
694 * struct perf_event_context - event context structure
696 * Used as a container for task events and CPU events as well:
698 struct perf_event_context
{
701 * Protect the states of the events in the list,
702 * nr_active, and the list:
706 * Protect the list of events. Locking either mutex or lock
707 * is sufficient to ensure the list doesn't change; to change
708 * the list you need to lock both the mutex and the spinlock.
712 struct list_head active_ctx_list
;
713 struct list_head pinned_groups
;
714 struct list_head flexible_groups
;
715 struct list_head event_list
;
723 struct task_struct
*task
;
726 * Context clock, runs when context enabled.
732 * These fields let us detect when two contexts have both
733 * been cloned (inherited) from a common ancestor.
735 struct perf_event_context
*parent_ctx
;
739 #ifdef CONFIG_CGROUP_PERF
740 int nr_cgroups
; /* cgroup evts */
742 void *task_ctx_data
; /* pmu specific data */
743 struct rcu_head rcu_head
;
747 * Number of contexts where an event can trigger:
748 * task, softirq, hardirq, nmi.
750 #define PERF_NR_CONTEXTS 4
753 * struct perf_event_cpu_context - per cpu event context structure
755 struct perf_cpu_context
{
756 struct perf_event_context ctx
;
757 struct perf_event_context
*task_ctx
;
761 raw_spinlock_t hrtimer_lock
;
762 struct hrtimer hrtimer
;
763 ktime_t hrtimer_interval
;
764 unsigned int hrtimer_active
;
766 #ifdef CONFIG_CGROUP_PERF
767 struct perf_cgroup
*cgrp
;
768 struct list_head cgrp_cpuctx_entry
;
771 struct list_head sched_cb_entry
;
777 struct perf_output_handle
{
778 struct perf_event
*event
;
779 struct ring_buffer
*rb
;
780 unsigned long wakeup
;
790 struct bpf_perf_event_data_kern
{
791 bpf_user_pt_regs_t
*regs
;
792 struct perf_sample_data
*data
;
793 struct perf_event
*event
;
796 #ifdef CONFIG_CGROUP_PERF
799 * perf_cgroup_info keeps track of time_enabled for a cgroup.
800 * This is a per-cpu dynamically allocated data structure.
802 struct perf_cgroup_info
{
808 struct cgroup_subsys_state css
;
809 struct perf_cgroup_info __percpu
*info
;
813 * Must ensure cgroup is pinned (css_get) before calling
814 * this function. In other words, we cannot call this function
815 * if there is no cgroup event for the current CPU context.
817 static inline struct perf_cgroup
*
818 perf_cgroup_from_task(struct task_struct
*task
, struct perf_event_context
*ctx
)
820 return container_of(task_css_check(task
, perf_event_cgrp_id
,
821 ctx
? lockdep_is_held(&ctx
->lock
)
823 struct perf_cgroup
, css
);
825 #endif /* CONFIG_CGROUP_PERF */
827 #ifdef CONFIG_PERF_EVENTS
829 extern void *perf_aux_output_begin(struct perf_output_handle
*handle
,
830 struct perf_event
*event
);
831 extern void perf_aux_output_end(struct perf_output_handle
*handle
,
833 extern int perf_aux_output_skip(struct perf_output_handle
*handle
,
835 extern void *perf_get_aux(struct perf_output_handle
*handle
);
836 extern void perf_aux_output_flag(struct perf_output_handle
*handle
, u64 flags
);
837 extern void perf_event_itrace_started(struct perf_event
*event
);
839 extern int perf_pmu_register(struct pmu
*pmu
, const char *name
, int type
);
840 extern void perf_pmu_unregister(struct pmu
*pmu
);
842 extern int perf_num_counters(void);
843 extern const char *perf_pmu_name(void);
844 extern void __perf_event_task_sched_in(struct task_struct
*prev
,
845 struct task_struct
*task
);
846 extern void __perf_event_task_sched_out(struct task_struct
*prev
,
847 struct task_struct
*next
);
848 extern int perf_event_init_task(struct task_struct
*child
);
849 extern void perf_event_exit_task(struct task_struct
*child
);
850 extern void perf_event_free_task(struct task_struct
*task
);
851 extern void perf_event_delayed_put(struct task_struct
*task
);
852 extern struct file
*perf_event_get(unsigned int fd
);
853 extern const struct perf_event_attr
*perf_event_attrs(struct perf_event
*event
);
854 extern void perf_event_print_debug(void);
855 extern void perf_pmu_disable(struct pmu
*pmu
);
856 extern void perf_pmu_enable(struct pmu
*pmu
);
857 extern void perf_sched_cb_dec(struct pmu
*pmu
);
858 extern void perf_sched_cb_inc(struct pmu
*pmu
);
859 extern int perf_event_task_disable(void);
860 extern int perf_event_task_enable(void);
861 extern int perf_event_refresh(struct perf_event
*event
, int refresh
);
862 extern void perf_event_update_userpage(struct perf_event
*event
);
863 extern int perf_event_release_kernel(struct perf_event
*event
);
864 extern struct perf_event
*
865 perf_event_create_kernel_counter(struct perf_event_attr
*attr
,
867 struct task_struct
*task
,
868 perf_overflow_handler_t callback
,
870 extern void perf_pmu_migrate_context(struct pmu
*pmu
,
871 int src_cpu
, int dst_cpu
);
872 int perf_event_read_local(struct perf_event
*event
, u64
*value
,
873 u64
*enabled
, u64
*running
);
874 extern u64
perf_event_read_value(struct perf_event
*event
,
875 u64
*enabled
, u64
*running
);
878 struct perf_sample_data
{
880 * Fields set by perf_sample_data_init(), group so as to
881 * minimize the cachelines touched.
884 struct perf_raw_record
*raw
;
885 struct perf_branch_stack
*br_stack
;
889 union perf_mem_data_src data_src
;
892 * The other fields, optionally {set,used} by
893 * perf_{prepare,output}_sample().
908 struct perf_callchain_entry
*callchain
;
911 * regs_user may point to task_pt_regs or to regs_user_copy, depending
914 struct perf_regs regs_user
;
915 struct pt_regs regs_user_copy
;
917 struct perf_regs regs_intr
;
921 } ____cacheline_aligned
;
923 /* default value for data source */
924 #define PERF_MEM_NA (PERF_MEM_S(OP, NA) |\
925 PERF_MEM_S(LVL, NA) |\
926 PERF_MEM_S(SNOOP, NA) |\
927 PERF_MEM_S(LOCK, NA) |\
930 static inline void perf_sample_data_init(struct perf_sample_data
*data
,
931 u64 addr
, u64 period
)
933 /* remaining struct members initialized in perf_prepare_sample() */
936 data
->br_stack
= NULL
;
937 data
->period
= period
;
939 data
->data_src
.val
= PERF_MEM_NA
;
943 extern void perf_output_sample(struct perf_output_handle
*handle
,
944 struct perf_event_header
*header
,
945 struct perf_sample_data
*data
,
946 struct perf_event
*event
);
947 extern void perf_prepare_sample(struct perf_event_header
*header
,
948 struct perf_sample_data
*data
,
949 struct perf_event
*event
,
950 struct pt_regs
*regs
);
952 extern int perf_event_overflow(struct perf_event
*event
,
953 struct perf_sample_data
*data
,
954 struct pt_regs
*regs
);
956 extern void perf_event_output_forward(struct perf_event
*event
,
957 struct perf_sample_data
*data
,
958 struct pt_regs
*regs
);
959 extern void perf_event_output_backward(struct perf_event
*event
,
960 struct perf_sample_data
*data
,
961 struct pt_regs
*regs
);
962 extern void perf_event_output(struct perf_event
*event
,
963 struct perf_sample_data
*data
,
964 struct pt_regs
*regs
);
967 is_default_overflow_handler(struct perf_event
*event
)
969 if (likely(event
->overflow_handler
== perf_event_output_forward
))
971 if (unlikely(event
->overflow_handler
== perf_event_output_backward
))
977 perf_event_header__init_id(struct perf_event_header
*header
,
978 struct perf_sample_data
*data
,
979 struct perf_event
*event
);
981 perf_event__output_id_sample(struct perf_event
*event
,
982 struct perf_output_handle
*handle
,
983 struct perf_sample_data
*sample
);
986 perf_log_lost_samples(struct perf_event
*event
, u64 lost
);
988 static inline bool is_sampling_event(struct perf_event
*event
)
990 return event
->attr
.sample_period
!= 0;
994 * Return 1 for a software event, 0 for a hardware event
996 static inline int is_software_event(struct perf_event
*event
)
998 return event
->event_caps
& PERF_EV_CAP_SOFTWARE
;
1001 extern struct static_key perf_swevent_enabled
[PERF_COUNT_SW_MAX
];
1003 extern void ___perf_sw_event(u32
, u64
, struct pt_regs
*, u64
);
1004 extern void __perf_sw_event(u32
, u64
, struct pt_regs
*, u64
);
1006 #ifndef perf_arch_fetch_caller_regs
1007 static inline void perf_arch_fetch_caller_regs(struct pt_regs
*regs
, unsigned long ip
) { }
1011 * Take a snapshot of the regs. Skip ip and frame pointer to
1012 * the nth caller. We only need a few of the regs:
1013 * - ip for PERF_SAMPLE_IP
1014 * - cs for user_mode() tests
1015 * - bp for callchains
1016 * - eflags, for future purposes, just in case
1018 static inline void perf_fetch_caller_regs(struct pt_regs
*regs
)
1020 perf_arch_fetch_caller_regs(regs
, CALLER_ADDR0
);
1023 static __always_inline
void
1024 perf_sw_event(u32 event_id
, u64 nr
, struct pt_regs
*regs
, u64 addr
)
1026 if (static_key_false(&perf_swevent_enabled
[event_id
]))
1027 __perf_sw_event(event_id
, nr
, regs
, addr
);
1030 DECLARE_PER_CPU(struct pt_regs
, __perf_regs
[4]);
1033 * 'Special' version for the scheduler, it hard assumes no recursion,
1034 * which is guaranteed by us not actually scheduling inside other swevents
1035 * because those disable preemption.
1037 static __always_inline
void
1038 perf_sw_event_sched(u32 event_id
, u64 nr
, u64 addr
)
1040 if (static_key_false(&perf_swevent_enabled
[event_id
])) {
1041 struct pt_regs
*regs
= this_cpu_ptr(&__perf_regs
[0]);
1043 perf_fetch_caller_regs(regs
);
1044 ___perf_sw_event(event_id
, nr
, regs
, addr
);
1048 extern struct static_key_false perf_sched_events
;
1050 static __always_inline
bool
1051 perf_sw_migrate_enabled(void)
1053 if (static_key_false(&perf_swevent_enabled
[PERF_COUNT_SW_CPU_MIGRATIONS
]))
1058 static inline void perf_event_task_migrate(struct task_struct
*task
)
1060 if (perf_sw_migrate_enabled())
1061 task
->sched_migrated
= 1;
1064 static inline void perf_event_task_sched_in(struct task_struct
*prev
,
1065 struct task_struct
*task
)
1067 if (static_branch_unlikely(&perf_sched_events
))
1068 __perf_event_task_sched_in(prev
, task
);
1070 if (perf_sw_migrate_enabled() && task
->sched_migrated
) {
1071 struct pt_regs
*regs
= this_cpu_ptr(&__perf_regs
[0]);
1073 perf_fetch_caller_regs(regs
);
1074 ___perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS
, 1, regs
, 0);
1075 task
->sched_migrated
= 0;
1079 static inline void perf_event_task_sched_out(struct task_struct
*prev
,
1080 struct task_struct
*next
)
1082 perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES
, 1, 0);
1084 if (static_branch_unlikely(&perf_sched_events
))
1085 __perf_event_task_sched_out(prev
, next
);
1088 extern void perf_event_mmap(struct vm_area_struct
*vma
);
1089 extern struct perf_guest_info_callbacks
*perf_guest_cbs
;
1090 extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks
*callbacks
);
1091 extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks
*callbacks
);
1093 extern void perf_event_exec(void);
1094 extern void perf_event_comm(struct task_struct
*tsk
, bool exec
);
1095 extern void perf_event_namespaces(struct task_struct
*tsk
);
1096 extern void perf_event_fork(struct task_struct
*tsk
);
1099 DECLARE_PER_CPU(struct perf_callchain_entry
, perf_callchain_entry
);
1101 extern void perf_callchain_user(struct perf_callchain_entry_ctx
*entry
, struct pt_regs
*regs
);
1102 extern void perf_callchain_kernel(struct perf_callchain_entry_ctx
*entry
, struct pt_regs
*regs
);
1103 extern struct perf_callchain_entry
*
1104 get_perf_callchain(struct pt_regs
*regs
, u32 init_nr
, bool kernel
, bool user
,
1105 u32 max_stack
, bool crosstask
, bool add_mark
);
1106 extern int get_callchain_buffers(int max_stack
);
1107 extern void put_callchain_buffers(void);
1109 extern int sysctl_perf_event_max_stack
;
1110 extern int sysctl_perf_event_max_contexts_per_stack
;
1112 static inline int perf_callchain_store_context(struct perf_callchain_entry_ctx
*ctx
, u64 ip
)
1114 if (ctx
->contexts
< sysctl_perf_event_max_contexts_per_stack
) {
1115 struct perf_callchain_entry
*entry
= ctx
->entry
;
1116 entry
->ip
[entry
->nr
++] = ip
;
1120 ctx
->contexts_maxed
= true;
1121 return -1; /* no more room, stop walking the stack */
1125 static inline int perf_callchain_store(struct perf_callchain_entry_ctx
*ctx
, u64 ip
)
1127 if (ctx
->nr
< ctx
->max_stack
&& !ctx
->contexts_maxed
) {
1128 struct perf_callchain_entry
*entry
= ctx
->entry
;
1129 entry
->ip
[entry
->nr
++] = ip
;
1133 return -1; /* no more room, stop walking the stack */
1137 extern int sysctl_perf_event_paranoid
;
1138 extern int sysctl_perf_event_mlock
;
1139 extern int sysctl_perf_event_sample_rate
;
1140 extern int sysctl_perf_cpu_time_max_percent
;
1142 extern void perf_sample_event_took(u64 sample_len_ns
);
1144 extern int perf_proc_update_handler(struct ctl_table
*table
, int write
,
1145 void __user
*buffer
, size_t *lenp
,
1147 extern int perf_cpu_time_max_percent_handler(struct ctl_table
*table
, int write
,
1148 void __user
*buffer
, size_t *lenp
,
1151 int perf_event_max_stack_handler(struct ctl_table
*table
, int write
,
1152 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
);
1154 static inline bool perf_paranoid_tracepoint_raw(void)
1156 return sysctl_perf_event_paranoid
> -1;
1159 static inline bool perf_paranoid_cpu(void)
1161 return sysctl_perf_event_paranoid
> 0;
1164 static inline bool perf_paranoid_kernel(void)
1166 return sysctl_perf_event_paranoid
> 1;
1169 extern void perf_event_init(void);
1170 extern void perf_tp_event(u16 event_type
, u64 count
, void *record
,
1171 int entry_size
, struct pt_regs
*regs
,
1172 struct hlist_head
*head
, int rctx
,
1173 struct task_struct
*task
);
1174 extern void perf_bp_event(struct perf_event
*event
, void *data
);
1176 #ifndef perf_misc_flags
1177 # define perf_misc_flags(regs) \
1178 (user_mode(regs) ? PERF_RECORD_MISC_USER : PERF_RECORD_MISC_KERNEL)
1179 # define perf_instruction_pointer(regs) instruction_pointer(regs)
1181 #ifndef perf_arch_bpf_user_pt_regs
1182 # define perf_arch_bpf_user_pt_regs(regs) regs
1185 static inline bool has_branch_stack(struct perf_event
*event
)
1187 return event
->attr
.sample_type
& PERF_SAMPLE_BRANCH_STACK
;
1190 static inline bool needs_branch_stack(struct perf_event
*event
)
1192 return event
->attr
.branch_sample_type
!= 0;
1195 static inline bool has_aux(struct perf_event
*event
)
1197 return event
->pmu
->setup_aux
;
1200 static inline bool is_write_backward(struct perf_event
*event
)
1202 return !!event
->attr
.write_backward
;
1205 static inline bool has_addr_filter(struct perf_event
*event
)
1207 return event
->pmu
->nr_addr_filters
;
1211 * An inherited event uses parent's filters
1213 static inline struct perf_addr_filters_head
*
1214 perf_event_addr_filters(struct perf_event
*event
)
1216 struct perf_addr_filters_head
*ifh
= &event
->addr_filters
;
1219 ifh
= &event
->parent
->addr_filters
;
1224 extern void perf_event_addr_filters_sync(struct perf_event
*event
);
1226 extern int perf_output_begin(struct perf_output_handle
*handle
,
1227 struct perf_event
*event
, unsigned int size
);
1228 extern int perf_output_begin_forward(struct perf_output_handle
*handle
,
1229 struct perf_event
*event
,
1231 extern int perf_output_begin_backward(struct perf_output_handle
*handle
,
1232 struct perf_event
*event
,
1235 extern void perf_output_end(struct perf_output_handle
*handle
);
1236 extern unsigned int perf_output_copy(struct perf_output_handle
*handle
,
1237 const void *buf
, unsigned int len
);
1238 extern unsigned int perf_output_skip(struct perf_output_handle
*handle
,
1240 extern int perf_swevent_get_recursion_context(void);
1241 extern void perf_swevent_put_recursion_context(int rctx
);
1242 extern u64
perf_swevent_set_period(struct perf_event
*event
);
1243 extern void perf_event_enable(struct perf_event
*event
);
1244 extern void perf_event_disable(struct perf_event
*event
);
1245 extern void perf_event_disable_local(struct perf_event
*event
);
1246 extern void perf_event_disable_inatomic(struct perf_event
*event
);
1247 extern void perf_event_task_tick(void);
1248 extern int perf_event_account_interrupt(struct perf_event
*event
);
1249 #else /* !CONFIG_PERF_EVENTS: */
1250 static inline void *
1251 perf_aux_output_begin(struct perf_output_handle
*handle
,
1252 struct perf_event
*event
) { return NULL
; }
1254 perf_aux_output_end(struct perf_output_handle
*handle
, unsigned long size
)
1257 perf_aux_output_skip(struct perf_output_handle
*handle
,
1258 unsigned long size
) { return -EINVAL
; }
1259 static inline void *
1260 perf_get_aux(struct perf_output_handle
*handle
) { return NULL
; }
1262 perf_event_task_migrate(struct task_struct
*task
) { }
1264 perf_event_task_sched_in(struct task_struct
*prev
,
1265 struct task_struct
*task
) { }
1267 perf_event_task_sched_out(struct task_struct
*prev
,
1268 struct task_struct
*next
) { }
1269 static inline int perf_event_init_task(struct task_struct
*child
) { return 0; }
1270 static inline void perf_event_exit_task(struct task_struct
*child
) { }
1271 static inline void perf_event_free_task(struct task_struct
*task
) { }
1272 static inline void perf_event_delayed_put(struct task_struct
*task
) { }
1273 static inline struct file
*perf_event_get(unsigned int fd
) { return ERR_PTR(-EINVAL
); }
1274 static inline const struct perf_event_attr
*perf_event_attrs(struct perf_event
*event
)
1276 return ERR_PTR(-EINVAL
);
1278 static inline int perf_event_read_local(struct perf_event
*event
, u64
*value
,
1279 u64
*enabled
, u64
*running
)
1283 static inline void perf_event_print_debug(void) { }
1284 static inline int perf_event_task_disable(void) { return -EINVAL
; }
1285 static inline int perf_event_task_enable(void) { return -EINVAL
; }
1286 static inline int perf_event_refresh(struct perf_event
*event
, int refresh
)
1292 perf_sw_event(u32 event_id
, u64 nr
, struct pt_regs
*regs
, u64 addr
) { }
1294 perf_sw_event_sched(u32 event_id
, u64 nr
, u64 addr
) { }
1296 perf_bp_event(struct perf_event
*event
, void *data
) { }
1298 static inline int perf_register_guest_info_callbacks
1299 (struct perf_guest_info_callbacks
*callbacks
) { return 0; }
1300 static inline int perf_unregister_guest_info_callbacks
1301 (struct perf_guest_info_callbacks
*callbacks
) { return 0; }
1303 static inline void perf_event_mmap(struct vm_area_struct
*vma
) { }
1304 static inline void perf_event_exec(void) { }
1305 static inline void perf_event_comm(struct task_struct
*tsk
, bool exec
) { }
1306 static inline void perf_event_namespaces(struct task_struct
*tsk
) { }
1307 static inline void perf_event_fork(struct task_struct
*tsk
) { }
1308 static inline void perf_event_init(void) { }
1309 static inline int perf_swevent_get_recursion_context(void) { return -1; }
1310 static inline void perf_swevent_put_recursion_context(int rctx
) { }
1311 static inline u64
perf_swevent_set_period(struct perf_event
*event
) { return 0; }
1312 static inline void perf_event_enable(struct perf_event
*event
) { }
1313 static inline void perf_event_disable(struct perf_event
*event
) { }
1314 static inline int __perf_event_disable(void *info
) { return -1; }
1315 static inline void perf_event_task_tick(void) { }
1316 static inline int perf_event_release_kernel(struct perf_event
*event
) { return 0; }
1319 #if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
1320 extern void perf_restore_debug_store(void);
1322 static inline void perf_restore_debug_store(void) { }
1325 static __always_inline
bool perf_raw_frag_last(const struct perf_raw_frag
*frag
)
1327 return frag
->pad
< sizeof(u64
);
1330 #define perf_output_put(handle, x) perf_output_copy((handle), &(x), sizeof(x))
1332 struct perf_pmu_events_attr
{
1333 struct device_attribute attr
;
1335 const char *event_str
;
1338 struct perf_pmu_events_ht_attr
{
1339 struct device_attribute attr
;
1341 const char *event_str_ht
;
1342 const char *event_str_noht
;
1345 ssize_t
perf_event_sysfs_show(struct device
*dev
, struct device_attribute
*attr
,
1348 #define PMU_EVENT_ATTR(_name, _var, _id, _show) \
1349 static struct perf_pmu_events_attr _var = { \
1350 .attr = __ATTR(_name, 0444, _show, NULL), \
1354 #define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
1355 static struct perf_pmu_events_attr _var = { \
1356 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
1358 .event_str = _str, \
1361 #define PMU_FORMAT_ATTR(_name, _format) \
1363 _name##_show(struct device *dev, \
1364 struct device_attribute *attr, \
1367 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1368 return sprintf(page, _format "\n"); \
1371 static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1373 /* Performance counter hotplug functions */
1374 #ifdef CONFIG_PERF_EVENTS
1375 int perf_event_init_cpu(unsigned int cpu
);
1376 int perf_event_exit_cpu(unsigned int cpu
);
1378 #define perf_event_init_cpu NULL
1379 #define perf_event_exit_cpu NULL
1382 #endif /* _LINUX_PERF_EVENT_H */