Merge tag 'drm-misc-next-2019-04-10' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-block.git] / include / linux / perf_event.h
CommitLineData
0793a61d 1/*
57c0c15b 2 * Performance events:
0793a61d 3 *
a308444c 4 * Copyright (C) 2008-2009, Thomas Gleixner <tglx@linutronix.de>
e7e7ee2e
IM
5 * Copyright (C) 2008-2011, Red Hat, Inc., Ingo Molnar
6 * Copyright (C) 2008-2011, Red Hat, Inc., Peter Zijlstra
0793a61d 7 *
57c0c15b 8 * Data type definitions, declarations, prototypes.
0793a61d 9 *
a308444c 10 * Started by: Thomas Gleixner and Ingo Molnar
0793a61d 11 *
57c0c15b 12 * For licencing details see kernel-base/COPYING
0793a61d 13 */
cdd6c482
IM
14#ifndef _LINUX_PERF_EVENT_H
15#define _LINUX_PERF_EVENT_H
0793a61d 16
607ca46e 17#include <uapi/linux/perf_event.h>
c895f6f7 18#include <uapi/linux/bpf_perf_event.h>
0793a61d 19
9f66a381 20/*
f3dfd265 21 * Kernel-internal data types and definitions:
9f66a381
IM
22 */
23
cdd6c482
IM
24#ifdef CONFIG_PERF_EVENTS
25# include <asm/perf_event.h>
7be79236 26# include <asm/local64.h>
f3dfd265
PM
27#endif
28
39447b38 29struct perf_guest_info_callbacks {
e7e7ee2e
IM
30 int (*is_in_guest)(void);
31 int (*is_user_mode)(void);
32 unsigned long (*get_guest_ip)(void);
39447b38
ZY
33};
34
2ff6cfd7
AB
35#ifdef CONFIG_HAVE_HW_BREAKPOINT
36#include <asm/hw_breakpoint.h>
37#endif
38
f3dfd265
PM
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>
d6d020e9 44#include <linux/hrtimer.h>
3c446b3d 45#include <linux/fs.h>
709e50cf 46#include <linux/pid_namespace.h>
906010b2 47#include <linux/workqueue.h>
5331d7b8 48#include <linux/ftrace.h>
85cfabbc 49#include <linux/cpu.h>
e360adbe 50#include <linux/irq_work.h>
c5905afb 51#include <linux/static_key.h>
851cf6e7 52#include <linux/jump_label_ratelimit.h>
60063497 53#include <linux/atomic.h>
641cc938 54#include <linux/sysfs.h>
4018994f 55#include <linux/perf_regs.h>
39bed6cb 56#include <linux/cgroup.h>
8c94abbb 57#include <linux/refcount.h>
fa588151 58#include <asm/local.h>
f3dfd265 59
f9188e02
PZ
60struct perf_callchain_entry {
61 __u64 nr;
c5dfd78e 62 __u64 ip[0]; /* /proc/sys/kernel/perf_event_max_stack */
f9188e02
PZ
63};
64
cfbcf468
ACM
65struct perf_callchain_entry_ctx {
66 struct perf_callchain_entry *entry;
67 u32 max_stack;
3b1fff08 68 u32 nr;
c85b0334
ACM
69 short contexts;
70 bool contexts_maxed;
cfbcf468
ACM
71};
72
7e3f977e 73typedef unsigned long (*perf_copy_f)(void *dst, const void *src,
aa7145c1 74 unsigned long off, unsigned long len);
7e3f977e
DB
75
76struct perf_raw_frag {
77 union {
78 struct perf_raw_frag *next;
79 unsigned long pad;
80 };
81 perf_copy_f copy;
82 void *data;
83 u32 size;
84} __packed;
85
3a43ce68 86struct perf_raw_record {
7e3f977e 87 struct perf_raw_frag frag;
3a43ce68 88 u32 size;
f413cdb8
FW
89};
90
bce38cd5
SE
91/*
92 * branch stack layout:
93 * nr: number of taken branches stored in entries[]
94 *
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
98 * recent branch.
99 */
caff2bef
PZ
100struct perf_branch_stack {
101 __u64 nr;
102 struct perf_branch_entry entries[0];
103};
104
f3dfd265
PM
105struct task_struct;
106
efc9f05d
SE
107/*
108 * extra PMU register associated with an event
109 */
110struct 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[] */
115};
116
0793a61d 117/**
cdd6c482 118 * struct hw_perf_event - performance event hardware details:
0793a61d 119 */
cdd6c482
IM
120struct hw_perf_event {
121#ifdef CONFIG_PERF_EVENTS
d6d020e9
PZ
122 union {
123 struct { /* hardware */
a308444c 124 u64 config;
447a194b 125 u64 last_tag;
a308444c 126 unsigned long config_base;
cdd6c482 127 unsigned long event_base;
c48b6053 128 int event_base_rdpmc;
a308444c 129 int idx;
447a194b 130 int last_cpu;
9fac2cf3 131 int flags;
bce38cd5 132
efc9f05d 133 struct hw_perf_event_extra extra_reg;
bce38cd5 134 struct hw_perf_event_extra branch_reg;
d6d020e9 135 };
721a669b 136 struct { /* software */
a308444c 137 struct hrtimer hrtimer;
d6d020e9 138 };
f22c1bb6 139 struct { /* tracepoint */
f22c1bb6
ON
140 /* for tp_event->class */
141 struct list_head tp_list;
142 };
c7ab62bf
HR
143 struct { /* amd_power */
144 u64 pwr_acc;
145 u64 ptsc;
146 };
24f1e32c 147#ifdef CONFIG_HAVE_HW_BREAKPOINT
45a73372 148 struct { /* breakpoint */
d580ff86
PZ
149 /*
150 * Crufty hack to avoid the chicken and egg
151 * problem hw_breakpoint has with context
152 * creation and event initalization.
153 */
f22c1bb6
ON
154 struct arch_hw_breakpoint info;
155 struct list_head bp_list;
45a73372 156 };
24f1e32c 157#endif
cf25f904
SS
158 struct { /* amd_iommu */
159 u8 iommu_bank;
160 u8 iommu_cntr;
161 u16 padding;
162 u64 conf;
163 u64 conf1;
164 };
d6d020e9 165 };
b0e87875
PZ
166 /*
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().
169 */
50f16a8b 170 struct task_struct *target;
b0e87875 171
375637bc
AS
172 /*
173 * PMU would store hardware filter configuration
174 * here.
175 */
176 void *addr_filters;
177
178 /* Last sync'ed generation of filters */
179 unsigned long addr_filters_gen;
180
b0e87875
PZ
181/*
182 * hw_perf_event::state flags; used to track the PERF_EF_* state.
183 */
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
187
a4eaf7f1 188 int state;
b0e87875
PZ
189
190 /*
191 * The last observed hardware counter value, updated with a
192 * local64_cmpxchg() such that pmu::read() can be called nested.
193 */
e7850595 194 local64_t prev_count;
b0e87875
PZ
195
196 /*
197 * The period to start the next sample with.
198 */
b23f3325 199 u64 sample_period;
b0e87875
PZ
200
201 /*
202 * The period we started this sample with.
203 */
9e350de3 204 u64 last_period;
b0e87875
PZ
205
206 /*
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.
210 */
e7850595 211 local64_t period_left;
b0e87875
PZ
212
213 /*
214 * State for throttling the event, see __perf_event_overflow() and
215 * perf_adjust_freq_unthr_context().
216 */
e050e3f0 217 u64 interrupts_seq;
60db5e09 218 u64 interrupts;
6a24ed6c 219
b0e87875
PZ
220 /*
221 * State for freq target events, see __perf_event_overflow() and
222 * perf_adjust_freq_unthr_context().
223 */
abd50713
PZ
224 u64 freq_time_stamp;
225 u64 freq_count_stamp;
ee06094f 226#endif
0793a61d
TG
227};
228
cdd6c482 229struct perf_event;
621a01ea 230
8d2cacbb
PZ
231/*
232 * Common implementation detail of pmu::{start,commit,cancel}_txn
233 */
fbbe0701 234#define PERF_PMU_TXN_ADD 0x1 /* txn to add/schedule event on PMU */
4a00c16e 235#define PERF_PMU_TXN_READ 0x2 /* txn to read event group from PMU */
fbbe0701 236
53b25335
VW
237/**
238 * pmu::capabilities flags
239 */
240#define PERF_PMU_CAP_NO_INTERRUPT 0x01
34f43927 241#define PERF_PMU_CAP_NO_NMI 0x02
0a4e38e6 242#define PERF_PMU_CAP_AUX_NO_SG 0x04
6a279230 243#define PERF_PMU_CAP_AUX_SW_DOUBLEBUF 0x08
bed5b25a 244#define PERF_PMU_CAP_EXCLUSIVE 0x10
ec0d7729 245#define PERF_PMU_CAP_ITRACE 0x20
5101ef20 246#define PERF_PMU_CAP_HETEROGENEOUS_CPUS 0x40
cc6795ae 247#define PERF_PMU_CAP_NO_EXCLUDE 0x80
53b25335 248
621a01ea 249/**
4aeb0b42 250 * struct pmu - generic performance monitoring unit
621a01ea 251 */
4aeb0b42 252struct pmu {
b0a873eb
PZ
253 struct list_head entry;
254
c464c76e 255 struct module *module;
abe43400 256 struct device *dev;
0c9d42ed 257 const struct attribute_group **attr_groups;
03d8e80b 258 const char *name;
2e80a82a
PZ
259 int type;
260
53b25335
VW
261 /*
262 * various common per-pmu feature flags
263 */
264 int capabilities;
265
43b9e4fe
MO
266 int __percpu *pmu_disable_count;
267 struct perf_cpu_context __percpu *pmu_cpu_context;
bed5b25a 268 atomic_t exclusive_cnt; /* < 0: cpu; > 0: tsk */
8dc85d54 269 int task_ctx_nr;
62b85639 270 int hrtimer_interval_ms;
6bde9b6c 271
375637bc
AS
272 /* number of address filters this PMU can do */
273 unsigned int nr_addr_filters;
274
6bde9b6c 275 /*
a4eaf7f1
PZ
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.
6bde9b6c 278 */
ad5133b7
PZ
279 void (*pmu_enable) (struct pmu *pmu); /* optional */
280 void (*pmu_disable) (struct pmu *pmu); /* optional */
6bde9b6c 281
8d2cacbb 282 /*
a4eaf7f1 283 * Try and initialize the event for this PMU.
b0e87875
PZ
284 *
285 * Returns:
286 * -ENOENT -- @event is not for this PMU
287 *
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
293 *
294 * 0 -- @event is for this PMU and valid
295 *
296 * Other error return values are allowed.
8d2cacbb 297 */
b0a873eb
PZ
298 int (*event_init) (struct perf_event *event);
299
1e0fb9ec
AL
300 /*
301 * Notification that the event was mapped or unmapped. Called
302 * in the context of the mapping task.
303 */
bfe33492
PZ
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 */
1e0fb9ec 306
b0e87875
PZ
307 /*
308 * Flags for ->add()/->del()/ ->start()/->stop(). There are
309 * matching hw_perf_event::state flags.
310 */
a4eaf7f1
PZ
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 */
314
8d2cacbb 315 /*
b0e87875
PZ
316 * Adds/Removes a counter to/from the PMU, can be done inside a
317 * transaction, see the ->*_txn() methods.
318 *
319 * The add/del callbacks will reserve all hardware resources required
320 * to service the event, this includes any counter constraint
321 * scheduling etc.
322 *
323 * Called with IRQs disabled and the PMU disabled on the CPU the event
324 * is on.
325 *
326 * ->add() called without PERF_EF_START should result in the same state
327 * as ->add() followed by ->stop().
328 *
329 * ->del() must always PERF_EF_UPDATE stop an event. If it calls
330 * ->stop() that must deal with already being stopped without
331 * PERF_EF_UPDATE.
a4eaf7f1
PZ
332 */
333 int (*add) (struct perf_event *event, int flags);
334 void (*del) (struct perf_event *event, int flags);
335
336 /*
b0e87875
PZ
337 * Starts/Stops a counter present on the PMU.
338 *
339 * The PMI handler should stop the counter when perf_event_overflow()
340 * returns !0. ->start() will be used to continue.
341 *
342 * Also used to change the sample period.
343 *
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
346 * NMIs.
347 *
348 * ->stop() with PERF_EF_UPDATE will read the counter and update
349 * period/count values like ->read() would.
350 *
351 * ->start() with PERF_EF_RELOAD will reprogram the the counter
352 * value, must be preceded by a ->stop() with PERF_EF_UPDATE.
a4eaf7f1
PZ
353 */
354 void (*start) (struct perf_event *event, int flags);
355 void (*stop) (struct perf_event *event, int flags);
356
357 /*
358 * Updates the counter value of the event.
b0e87875
PZ
359 *
360 * For sampling capable PMUs this will also update the software period
361 * hw_perf_event::period_left field.
a4eaf7f1 362 */
cdd6c482 363 void (*read) (struct perf_event *event);
6bde9b6c
LM
364
365 /*
24cd7f54
PZ
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
a4eaf7f1
PZ
369 *
370 * Start the transaction, after this ->add() doesn't need to
24cd7f54 371 * do schedulability tests.
fbbe0701
SB
372 *
373 * Optional.
8d2cacbb 374 */
fbbe0701 375 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags);
8d2cacbb 376 /*
a4eaf7f1 377 * If ->start_txn() disabled the ->add() schedulability test
8d2cacbb
PZ
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.
fbbe0701
SB
381 *
382 * Optional.
8d2cacbb 383 */
fbbe0701 384 int (*commit_txn) (struct pmu *pmu);
8d2cacbb 385 /*
a4eaf7f1 386 * Will cancel the transaction, assumes ->del() is called
25985edc 387 * for each successful ->add() during the transaction.
fbbe0701
SB
388 *
389 * Optional.
8d2cacbb 390 */
fbbe0701 391 void (*cancel_txn) (struct pmu *pmu);
35edc2a5
PZ
392
393 /*
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.
396 */
397 int (*event_idx) (struct perf_event *event); /*optional */
d010b332 398
ba532500
YZ
399 /*
400 * context-switches callback
401 */
402 void (*sched_task) (struct perf_event_context *ctx,
403 bool sched_in);
4af57ef2
YZ
404 /*
405 * PMU specific data size
406 */
407 size_t task_ctx_size;
ba532500 408
eacd3ecc 409
45bfb2e5
PZ
410 /*
411 * Set up pmu-private data structures for an AUX area
412 */
84001866 413 void *(*setup_aux) (struct perf_event *event, void **pages,
45bfb2e5
PZ
414 int nr_pages, bool overwrite);
415 /* optional */
416
417 /*
418 * Free pmu-private AUX data structures
419 */
420 void (*free_aux) (void *aux); /* optional */
66eb579e 421
375637bc
AS
422 /*
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.
426 *
427 * Runs in the context of the ioctl()ing process and is not serialized
428 * with the rest of the PMU callbacks.
429 */
430 int (*addr_filters_validate) (struct list_head *filters);
431 /* optional */
432
433 /*
434 * Synchronize address range filter configuration:
435 * translate hw-agnostic filters into hardware configuration in
436 * event::hw::addr_filters.
437 *
438 * Runs as a part of filter sync sequence that is done in ->start()
439 * callback by calling perf_event_addr_filters_sync().
440 *
441 * May (and should) traverse event::addr_filters::list, for which its
442 * caller provides necessary serialization.
443 */
444 void (*addr_filters_sync) (struct perf_event *event);
445 /* optional */
446
66eb579e
MR
447 /*
448 * Filter events for PMU-specific reasons.
449 */
450 int (*filter_match) (struct perf_event *event); /* optional */
81ec3f3c
JO
451
452 /*
453 * Check period value for PERF_EVENT_IOC_PERIOD ioctl.
454 */
455 int (*check_period) (struct perf_event *event, u64 value); /* optional */
621a01ea
IM
456};
457
6ed70cf3
AS
458enum perf_addr_filter_action_t {
459 PERF_ADDR_FILTER_ACTION_STOP = 0,
460 PERF_ADDR_FILTER_ACTION_START,
461 PERF_ADDR_FILTER_ACTION_FILTER,
462};
463
375637bc
AS
464/**
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
6ed70cf3
AS
469 * @size: filter range size (size==0 means single address trigger)
470 * @action: filter/start/stop
375637bc
AS
471 *
472 * This is a hardware-agnostic filter configuration as specified by the user.
473 */
474struct perf_addr_filter {
475 struct list_head entry;
9511bce9 476 struct path path;
375637bc
AS
477 unsigned long offset;
478 unsigned long size;
6ed70cf3 479 enum perf_addr_filter_action_t action;
375637bc
AS
480};
481
482/**
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.
6ce77bfd 487 * @nr_file_filters: number of file-based filters
375637bc
AS
488 *
489 * A child event will use parent's @list (and therefore @lock), so they are
490 * bundled together; see perf_event_addr_filters().
491 */
492struct perf_addr_filters_head {
493 struct list_head list;
494 raw_spinlock_t lock;
6ce77bfd 495 unsigned int nr_file_filters;
375637bc
AS
496};
497
c60f83b8
AS
498struct perf_addr_filter_range {
499 unsigned long start;
500 unsigned long size;
501};
502
6a930700 503/**
788faab7 504 * enum perf_event_state - the states of an event:
6a930700 505 */
8ca2bd41 506enum perf_event_state {
a69b0ca4 507 PERF_EVENT_STATE_DEAD = -4,
179033b3 508 PERF_EVENT_STATE_EXIT = -3,
57c0c15b 509 PERF_EVENT_STATE_ERROR = -2,
cdd6c482
IM
510 PERF_EVENT_STATE_OFF = -1,
511 PERF_EVENT_STATE_INACTIVE = 0,
57c0c15b 512 PERF_EVENT_STATE_ACTIVE = 1,
6a930700
IM
513};
514
9b51f66d 515struct file;
453f19ee
PZ
516struct perf_sample_data;
517
a8b0ca17 518typedef void (*perf_overflow_handler_t)(struct perf_event *,
b326e956
FW
519 struct perf_sample_data *,
520 struct pt_regs *regs);
521
4ff6a8de
DCC
522/*
523 * Event capabilities. For event_caps and groups caps.
524 *
525 * PERF_EV_CAP_SOFTWARE: Is a software event.
d6a2f903
DCC
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.
4ff6a8de
DCC
528 */
529#define PERF_EV_CAP_SOFTWARE BIT(0)
d6a2f903 530#define PERF_EV_CAP_READ_ACTIVE_PKG BIT(1)
d6f962b5 531
e7e7ee2e
IM
532#define SWEVENT_HLIST_BITS 8
533#define SWEVENT_HLIST_SIZE (1 << SWEVENT_HLIST_BITS)
76e1d904
FW
534
535struct swevent_hlist {
e7e7ee2e
IM
536 struct hlist_head heads[SWEVENT_HLIST_SIZE];
537 struct rcu_head rcu_head;
76e1d904
FW
538};
539
8a49542c
PZ
540#define PERF_ATTACH_CONTEXT 0x01
541#define PERF_ATTACH_GROUP 0x02
d580ff86 542#define PERF_ATTACH_TASK 0x04
4af57ef2 543#define PERF_ATTACH_TASK_DATA 0x08
8d4e6c4c 544#define PERF_ATTACH_ITRACE 0x10
8a49542c 545
877c6856 546struct perf_cgroup;
76369139
FW
547struct ring_buffer;
548
f2fb6bef
KL
549struct pmu_event_list {
550 raw_spinlock_t lock;
551 struct list_head list;
552};
553
edb39592
PZ
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)
557
0793a61d 558/**
cdd6c482 559 * struct perf_event - performance event kernel representation:
0793a61d 560 */
cdd6c482
IM
561struct perf_event {
562#ifdef CONFIG_PERF_EVENTS
9886167d
PZ
563 /*
564 * entry onto perf_event_context::event_list;
565 * modifications require ctx->lock
566 * RCU safe iterations.
567 */
592903cd 568 struct list_head event_entry;
9886167d
PZ
569
570 /*
9886167d
PZ
571 * Locked for modification by both ctx->mutex and ctx->lock; holding
572 * either sufficies for read.
573 */
04289bb9 574 struct list_head sibling_list;
6668128a 575 struct list_head active_list;
8e1a2031
AB
576 /*
577 * Node on the pinned or flexible tree located at the event context;
578 */
579 struct rb_node group_node;
580 u64 group_index;
9886167d
PZ
581 /*
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.
585 */
586 struct list_head migrate_entry;
587
f3ae75de
SE
588 struct hlist_node hlist_entry;
589 struct list_head active_entry;
0127c3ea 590 int nr_siblings;
4ff6a8de
DCC
591
592 /* Not serialized. Only written during event initialization. */
593 int event_caps;
594 /* The cumulative AND of all event_caps for events in this group. */
595 int group_caps;
596
cdd6c482 597 struct perf_event *group_leader;
a4eaf7f1 598 struct pmu *pmu;
54d751d4 599 void *pmu_private;
04289bb9 600
8ca2bd41 601 enum perf_event_state state;
8a49542c 602 unsigned int attach_state;
e7850595 603 local64_t count;
a6e6dea6 604 atomic64_t child_count;
ee06094f 605
53cfbf59 606 /*
cdd6c482 607 * These are the total time in nanoseconds that the event
53cfbf59 608 * has been enabled (i.e. eligible to run, and the task has
cdd6c482 609 * been scheduled in, if this is a per-task event)
53cfbf59 610 * and running (scheduled onto the CPU), respectively.
53cfbf59
PM
611 */
612 u64 total_time_enabled;
613 u64 total_time_running;
0d3d73aa 614 u64 tstamp;
53cfbf59 615
eed01528
SE
616 /*
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.
620 *
621 * ctx_time already accounts for ctx->timestamp. Therefore to
622 * compute ctx_time for a sample, simply add perf_clock().
623 */
624 u64 shadow_ctx_time;
625
24f1e32c 626 struct perf_event_attr attr;
c320c7b7 627 u16 header_size;
6844c09d 628 u16 id_header_size;
c320c7b7 629 u16 read_size;
cdd6c482 630 struct hw_perf_event hw;
0793a61d 631
cdd6c482 632 struct perf_event_context *ctx;
a6fa941d 633 atomic_long_t refcount;
0793a61d 634
53cfbf59
PM
635 /*
636 * These accumulate total time (in nanoseconds) that children
cdd6c482 637 * events have been enabled and running, respectively.
53cfbf59
PM
638 */
639 atomic64_t child_total_time_enabled;
640 atomic64_t child_total_time_running;
641
0793a61d 642 /*
d859e29f 643 * Protect attach/detach and child_list:
0793a61d 644 */
fccc714b
PZ
645 struct mutex child_mutex;
646 struct list_head child_list;
cdd6c482 647 struct perf_event *parent;
0793a61d
TG
648
649 int oncpu;
650 int cpu;
651
082ff5a2
PZ
652 struct list_head owner_entry;
653 struct task_struct *owner;
654
7b732a75
PZ
655 /* mmap bits */
656 struct mutex mmap_mutex;
657 atomic_t mmap_count;
26cb63ad 658
76369139 659 struct ring_buffer *rb;
10c6db11 660 struct list_head rb_entry;
b69cf536
PZ
661 unsigned long rcu_batches;
662 int rcu_pending;
37d81828 663
7b732a75 664 /* poll related */
0793a61d 665 wait_queue_head_t waitq;
3c446b3d 666 struct fasync_struct *fasync;
79f14641
PZ
667
668 /* delayed work for NMIs and such */
669 int pending_wakeup;
4c9e2542 670 int pending_kill;
79f14641 671 int pending_disable;
e360adbe 672 struct irq_work pending;
592903cd 673
79f14641
PZ
674 atomic_t event_limit;
675
375637bc
AS
676 /* address range filters */
677 struct perf_addr_filters_head addr_filters;
678 /* vma address array for file-based filders */
c60f83b8 679 struct perf_addr_filter_range *addr_filter_ranges;
375637bc
AS
680 unsigned long addr_filters_gen;
681
cdd6c482 682 void (*destroy)(struct perf_event *);
592903cd 683 struct rcu_head rcu_head;
709e50cf
PZ
684
685 struct pid_namespace *ns;
8e5799b1 686 u64 id;
6fb2915d 687
34f43927 688 u64 (*clock)(void);
b326e956 689 perf_overflow_handler_t overflow_handler;
4dc0da86 690 void *overflow_handler_context;
aa6a5f3c
AS
691#ifdef CONFIG_BPF_SYSCALL
692 perf_overflow_handler_t orig_overflow_handler;
693 struct bpf_prog *prog;
694#endif
453f19ee 695
07b139c8 696#ifdef CONFIG_EVENT_TRACING
2425bcb9 697 struct trace_event_call *tp_event;
6fb2915d 698 struct event_filter *filter;
ced39002
JO
699#ifdef CONFIG_FUNCTION_TRACER
700 struct ftrace_ops ftrace_ops;
701#endif
ee06094f 702#endif
6fb2915d 703
e5d1367f
SE
704#ifdef CONFIG_CGROUP_PERF
705 struct perf_cgroup *cgrp; /* cgroup event is attach to */
e5d1367f
SE
706#endif
707
f2fb6bef 708 struct list_head sb_list;
6fb2915d 709#endif /* CONFIG_PERF_EVENTS */
0793a61d
TG
710};
711
8e1a2031
AB
712
713struct perf_event_groups {
714 struct rb_root tree;
715 u64 index;
716};
717
0793a61d 718/**
cdd6c482 719 * struct perf_event_context - event context structure
0793a61d 720 *
cdd6c482 721 * Used as a container for task events and CPU events as well:
0793a61d 722 */
cdd6c482 723struct perf_event_context {
108b02cf 724 struct pmu *pmu;
0793a61d 725 /*
cdd6c482 726 * Protect the states of the events in the list,
d859e29f 727 * nr_active, and the list:
0793a61d 728 */
e625cce1 729 raw_spinlock_t lock;
d859e29f 730 /*
cdd6c482 731 * Protect the list of events. Locking either mutex or lock
d859e29f
PM
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.
734 */
a308444c 735 struct mutex mutex;
04289bb9 736
2fde4f94 737 struct list_head active_ctx_list;
8e1a2031
AB
738 struct perf_event_groups pinned_groups;
739 struct perf_event_groups flexible_groups;
a308444c 740 struct list_head event_list;
6668128a
PZ
741
742 struct list_head pinned_active;
743 struct list_head flexible_active;
744
cdd6c482 745 int nr_events;
a308444c
IM
746 int nr_active;
747 int is_active;
bfbd3381 748 int nr_stat;
0f5a2601 749 int nr_freq;
dddd3379 750 int rotate_disable;
8c94abbb 751 refcount_t refcount;
a308444c 752 struct task_struct *task;
53cfbf59
PM
753
754 /*
4af4998b 755 * Context clock, runs when context enabled.
53cfbf59 756 */
a308444c
IM
757 u64 time;
758 u64 timestamp;
564c2b21
PM
759
760 /*
761 * These fields let us detect when two contexts have both
762 * been cloned (inherited) from a common ancestor.
763 */
cdd6c482 764 struct perf_event_context *parent_ctx;
a308444c
IM
765 u64 parent_gen;
766 u64 generation;
767 int pin_count;
db4a8356 768#ifdef CONFIG_CGROUP_PERF
d010b332 769 int nr_cgroups; /* cgroup evts */
db4a8356 770#endif
4af57ef2 771 void *task_ctx_data; /* pmu specific data */
28009ce4 772 struct rcu_head rcu_head;
0793a61d
TG
773};
774
7ae07ea3
FW
775/*
776 * Number of contexts where an event can trigger:
e7e7ee2e 777 * task, softirq, hardirq, nmi.
7ae07ea3
FW
778 */
779#define PERF_NR_CONTEXTS 4
780
0793a61d 781/**
cdd6c482 782 * struct perf_event_cpu_context - per cpu event context structure
0793a61d
TG
783 */
784struct perf_cpu_context {
cdd6c482
IM
785 struct perf_event_context ctx;
786 struct perf_event_context *task_ctx;
0793a61d 787 int active_oncpu;
3b6f9e5c 788 int exclusive;
4cfafd30
PZ
789
790 raw_spinlock_t hrtimer_lock;
9e630205
SE
791 struct hrtimer hrtimer;
792 ktime_t hrtimer_interval;
4cfafd30
PZ
793 unsigned int hrtimer_active;
794
db4a8356 795#ifdef CONFIG_CGROUP_PERF
e5d1367f 796 struct perf_cgroup *cgrp;
058fe1c0 797 struct list_head cgrp_cpuctx_entry;
db4a8356 798#endif
e48c1788
PZ
799
800 struct list_head sched_cb_entry;
801 int sched_cb_usage;
a63fbed7
TG
802
803 int online;
0793a61d
TG
804};
805
5622f295 806struct perf_output_handle {
57c0c15b 807 struct perf_event *event;
76369139 808 struct ring_buffer *rb;
6d1acfd5 809 unsigned long wakeup;
5d967a8b 810 unsigned long size;
f4c0b0aa 811 u64 aux_flags;
fdc26706
AS
812 union {
813 void *addr;
814 unsigned long head;
815 };
5d967a8b 816 int page;
5622f295
MM
817};
818
0515e599 819struct bpf_perf_event_data_kern {
c895f6f7 820 bpf_user_pt_regs_t *regs;
0515e599 821 struct perf_sample_data *data;
7d9285e8 822 struct perf_event *event;
0515e599
AS
823};
824
39bed6cb
MF
825#ifdef CONFIG_CGROUP_PERF
826
827/*
828 * perf_cgroup_info keeps track of time_enabled for a cgroup.
829 * This is a per-cpu dynamically allocated data structure.
830 */
831struct perf_cgroup_info {
832 u64 time;
833 u64 timestamp;
834};
835
836struct perf_cgroup {
837 struct cgroup_subsys_state css;
838 struct perf_cgroup_info __percpu *info;
839};
840
841/*
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.
845 */
846static inline struct perf_cgroup *
614e4c4e 847perf_cgroup_from_task(struct task_struct *task, struct perf_event_context *ctx)
39bed6cb 848{
614e4c4e
SE
849 return container_of(task_css_check(task, perf_event_cgrp_id,
850 ctx ? lockdep_is_held(&ctx->lock)
851 : true),
39bed6cb
MF
852 struct perf_cgroup, css);
853}
854#endif /* CONFIG_CGROUP_PERF */
855
cdd6c482 856#ifdef CONFIG_PERF_EVENTS
829b42dd 857
fdc26706
AS
858extern void *perf_aux_output_begin(struct perf_output_handle *handle,
859 struct perf_event *event);
860extern void perf_aux_output_end(struct perf_output_handle *handle,
f4c0b0aa 861 unsigned long size);
fdc26706
AS
862extern int perf_aux_output_skip(struct perf_output_handle *handle,
863 unsigned long size);
864extern void *perf_get_aux(struct perf_output_handle *handle);
f4c0b0aa 865extern void perf_aux_output_flag(struct perf_output_handle *handle, u64 flags);
8d4e6c4c 866extern void perf_event_itrace_started(struct perf_event *event);
fdc26706 867
03d8e80b 868extern int perf_pmu_register(struct pmu *pmu, const char *name, int type);
b0a873eb 869extern void perf_pmu_unregister(struct pmu *pmu);
621a01ea 870
3bf101ba 871extern int perf_num_counters(void);
84c79910 872extern const char *perf_pmu_name(void);
ab0cce56
JO
873extern void __perf_event_task_sched_in(struct task_struct *prev,
874 struct task_struct *task);
875extern void __perf_event_task_sched_out(struct task_struct *prev,
876 struct task_struct *next);
cdd6c482
IM
877extern int perf_event_init_task(struct task_struct *child);
878extern void perf_event_exit_task(struct task_struct *child);
879extern void perf_event_free_task(struct task_struct *task);
4e231c79 880extern void perf_event_delayed_put(struct task_struct *task);
e03e7ee3 881extern struct file *perf_event_get(unsigned int fd);
f8d959a5 882extern const struct perf_event *perf_get_event(struct file *file);
ffe8690c 883extern const struct perf_event_attr *perf_event_attrs(struct perf_event *event);
cdd6c482 884extern void perf_event_print_debug(void);
33696fc0
PZ
885extern void perf_pmu_disable(struct pmu *pmu);
886extern void perf_pmu_enable(struct pmu *pmu);
ba532500
YZ
887extern void perf_sched_cb_dec(struct pmu *pmu);
888extern void perf_sched_cb_inc(struct pmu *pmu);
cdd6c482
IM
889extern int perf_event_task_disable(void);
890extern int perf_event_task_enable(void);
26ca5c11 891extern int perf_event_refresh(struct perf_event *event, int refresh);
cdd6c482 892extern void perf_event_update_userpage(struct perf_event *event);
fb0459d7
AV
893extern int perf_event_release_kernel(struct perf_event *event);
894extern struct perf_event *
895perf_event_create_kernel_counter(struct perf_event_attr *attr,
896 int cpu,
38a81da2 897 struct task_struct *task,
4dc0da86
AK
898 perf_overflow_handler_t callback,
899 void *context);
0cda4c02
YZ
900extern void perf_pmu_migrate_context(struct pmu *pmu,
901 int src_cpu, int dst_cpu);
7d9285e8
YS
902int perf_event_read_local(struct perf_event *event, u64 *value,
903 u64 *enabled, u64 *running);
59ed446f
PZ
904extern u64 perf_event_read_value(struct perf_event *event,
905 u64 *enabled, u64 *running);
5c92d124 906
d010b332 907
df1a132b 908struct perf_sample_data {
2565711f
PZ
909 /*
910 * Fields set by perf_sample_data_init(), group so as to
911 * minimize the cachelines touched.
912 */
913 u64 addr;
914 struct perf_raw_record *raw;
915 struct perf_branch_stack *br_stack;
916 u64 period;
917 u64 weight;
918 u64 txn;
919 union perf_mem_data_src data_src;
5622f295 920
2565711f
PZ
921 /*
922 * The other fields, optionally {set,used} by
923 * perf_{prepare,output}_sample().
924 */
925 u64 type;
5622f295
MM
926 u64 ip;
927 struct {
928 u32 pid;
929 u32 tid;
930 } tid_entry;
931 u64 time;
5622f295
MM
932 u64 id;
933 u64 stream_id;
934 struct {
935 u32 cpu;
936 u32 reserved;
937 } cpu_entry;
5622f295 938 struct perf_callchain_entry *callchain;
88a7c26a
AL
939
940 /*
941 * regs_user may point to task_pt_regs or to regs_user_copy, depending
942 * on arch details.
943 */
60e2364e 944 struct perf_regs regs_user;
88a7c26a
AL
945 struct pt_regs regs_user_copy;
946
60e2364e 947 struct perf_regs regs_intr;
c5ebcedb 948 u64 stack_user_size;
fc7ce9c7
KL
949
950 u64 phys_addr;
2565711f 951} ____cacheline_aligned;
df1a132b 952
770eee1f
SE
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) |\
958 PERF_MEM_S(TLB, NA))
959
fd0d000b
RR
960static inline void perf_sample_data_init(struct perf_sample_data *data,
961 u64 addr, u64 period)
dc1d628a 962{
fd0d000b 963 /* remaining struct members initialized in perf_prepare_sample() */
dc1d628a
PZ
964 data->addr = addr;
965 data->raw = NULL;
bce38cd5 966 data->br_stack = NULL;
4018994f 967 data->period = period;
c3feedf2 968 data->weight = 0;
770eee1f 969 data->data_src.val = PERF_MEM_NA;
fdfbbd07 970 data->txn = 0;
dc1d628a
PZ
971}
972
5622f295
MM
973extern void perf_output_sample(struct perf_output_handle *handle,
974 struct perf_event_header *header,
975 struct perf_sample_data *data,
cdd6c482 976 struct perf_event *event);
5622f295
MM
977extern void perf_prepare_sample(struct perf_event_header *header,
978 struct perf_sample_data *data,
cdd6c482 979 struct perf_event *event,
5622f295
MM
980 struct pt_regs *regs);
981
a8b0ca17 982extern int perf_event_overflow(struct perf_event *event,
5622f295
MM
983 struct perf_sample_data *data,
984 struct pt_regs *regs);
df1a132b 985
9ecda41a
WN
986extern void perf_event_output_forward(struct perf_event *event,
987 struct perf_sample_data *data,
988 struct pt_regs *regs);
989extern void perf_event_output_backward(struct perf_event *event,
990 struct perf_sample_data *data,
991 struct pt_regs *regs);
56201969
ACM
992extern int perf_event_output(struct perf_event *event,
993 struct perf_sample_data *data,
994 struct pt_regs *regs);
21509084 995
1879445d
WN
996static inline bool
997is_default_overflow_handler(struct perf_event *event)
998{
9ecda41a
WN
999 if (likely(event->overflow_handler == perf_event_output_forward))
1000 return true;
1001 if (unlikely(event->overflow_handler == perf_event_output_backward))
1002 return true;
1003 return false;
1879445d
WN
1004}
1005
21509084
YZ
1006extern void
1007perf_event_header__init_id(struct perf_event_header *header,
1008 struct perf_sample_data *data,
1009 struct perf_event *event);
1010extern void
1011perf_event__output_id_sample(struct perf_event *event,
1012 struct perf_output_handle *handle,
1013 struct perf_sample_data *sample);
1014
f38b0dbb
KL
1015extern void
1016perf_log_lost_samples(struct perf_event *event, u64 lost);
1017
486efe9f
AM
1018static inline bool event_has_any_exclude_flag(struct perf_event *event)
1019{
1020 struct perf_event_attr *attr = &event->attr;
1021
1022 return attr->exclude_idle || attr->exclude_user ||
1023 attr->exclude_kernel || attr->exclude_hv ||
1024 attr->exclude_guest || attr->exclude_host;
1025}
1026
6c7e550f
FBH
1027static inline bool is_sampling_event(struct perf_event *event)
1028{
1029 return event->attr.sample_period != 0;
1030}
1031
3b6f9e5c 1032/*
cdd6c482 1033 * Return 1 for a software event, 0 for a hardware event
3b6f9e5c 1034 */
cdd6c482 1035static inline int is_software_event(struct perf_event *event)
3b6f9e5c 1036{
4ff6a8de 1037 return event->event_caps & PERF_EV_CAP_SOFTWARE;
3b6f9e5c
PM
1038}
1039
a1150c20
SL
1040/*
1041 * Return 1 for event in sw context, 0 for event in hw context
1042 */
1043static inline int in_software_context(struct perf_event *event)
1044{
1045 return event->ctx->pmu->task_ctx_nr == perf_sw_context;
1046}
1047
c5905afb 1048extern struct static_key perf_swevent_enabled[PERF_COUNT_SW_MAX];
f29ac756 1049
86038c5e 1050extern void ___perf_sw_event(u32, u64, struct pt_regs *, u64);
a8b0ca17 1051extern void __perf_sw_event(u32, u64, struct pt_regs *, u64);
f29ac756 1052
b0f82b81 1053#ifndef perf_arch_fetch_caller_regs
e7e7ee2e 1054static inline void perf_arch_fetch_caller_regs(struct pt_regs *regs, unsigned long ip) { }
b0f82b81 1055#endif
5331d7b8
FW
1056
1057/*
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
1064 */
b0f82b81 1065static inline void perf_fetch_caller_regs(struct pt_regs *regs)
5331d7b8 1066{
b0f82b81 1067 perf_arch_fetch_caller_regs(regs, CALLER_ADDR0);
5331d7b8
FW
1068}
1069
7e54a5a0 1070static __always_inline void
a8b0ca17 1071perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr)
e49a5bd3 1072{
86038c5e
PZI
1073 if (static_key_false(&perf_swevent_enabled[event_id]))
1074 __perf_sw_event(event_id, nr, regs, addr);
1075}
1076
1077DECLARE_PER_CPU(struct pt_regs, __perf_regs[4]);
7e54a5a0 1078
86038c5e
PZI
1079/*
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.
1083 */
1084static __always_inline void
1085perf_sw_event_sched(u32 event_id, u64 nr, u64 addr)
1086{
c5905afb 1087 if (static_key_false(&perf_swevent_enabled[event_id])) {
86038c5e
PZI
1088 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1089
1090 perf_fetch_caller_regs(regs);
1091 ___perf_sw_event(event_id, nr, regs, addr);
e49a5bd3
FW
1092 }
1093}
1094
9107c89e 1095extern struct static_key_false perf_sched_events;
ee6dcfa4 1096
ff303e66
PZ
1097static __always_inline bool
1098perf_sw_migrate_enabled(void)
1099{
1100 if (static_key_false(&perf_swevent_enabled[PERF_COUNT_SW_CPU_MIGRATIONS]))
1101 return true;
1102 return false;
1103}
1104
1105static inline void perf_event_task_migrate(struct task_struct *task)
1106{
1107 if (perf_sw_migrate_enabled())
1108 task->sched_migrated = 1;
1109}
1110
ab0cce56 1111static inline void perf_event_task_sched_in(struct task_struct *prev,
a8d757ef 1112 struct task_struct *task)
ab0cce56 1113{
9107c89e 1114 if (static_branch_unlikely(&perf_sched_events))
ab0cce56 1115 __perf_event_task_sched_in(prev, task);
ff303e66
PZ
1116
1117 if (perf_sw_migrate_enabled() && task->sched_migrated) {
1118 struct pt_regs *regs = this_cpu_ptr(&__perf_regs[0]);
1119
1120 perf_fetch_caller_regs(regs);
1121 ___perf_sw_event(PERF_COUNT_SW_CPU_MIGRATIONS, 1, regs, 0);
1122 task->sched_migrated = 0;
1123 }
ab0cce56
JO
1124}
1125
1126static inline void perf_event_task_sched_out(struct task_struct *prev,
1127 struct task_struct *next)
ee6dcfa4 1128{
86038c5e 1129 perf_sw_event_sched(PERF_COUNT_SW_CONTEXT_SWITCHES, 1, 0);
ee6dcfa4 1130
9107c89e 1131 if (static_branch_unlikely(&perf_sched_events))
ab0cce56 1132 __perf_event_task_sched_out(prev, next);
ee6dcfa4
PZ
1133}
1134
3af9e859 1135extern void perf_event_mmap(struct vm_area_struct *vma);
76193a94
SL
1136
1137extern void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len,
1138 bool unregister, const char *sym);
6ee52e2a
SL
1139extern void perf_event_bpf_event(struct bpf_prog *prog,
1140 enum perf_bpf_event_type type,
1141 u16 flags);
76193a94 1142
39447b38 1143extern struct perf_guest_info_callbacks *perf_guest_cbs;
dcf46b94
ZY
1144extern int perf_register_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
1145extern int perf_unregister_guest_info_callbacks(struct perf_guest_info_callbacks *callbacks);
39447b38 1146
e041e328 1147extern void perf_event_exec(void);
82b89778 1148extern void perf_event_comm(struct task_struct *tsk, bool exec);
e4222673 1149extern void perf_event_namespaces(struct task_struct *tsk);
cdd6c482 1150extern void perf_event_fork(struct task_struct *tsk);
8d1b2d93 1151
56962b44
FW
1152/* Callchains */
1153DECLARE_PER_CPU(struct perf_callchain_entry, perf_callchain_entry);
1154
cfbcf468
ACM
1155extern void perf_callchain_user(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs);
1156extern void perf_callchain_kernel(struct perf_callchain_entry_ctx *entry, struct pt_regs *regs);
568b329a
AS
1157extern struct perf_callchain_entry *
1158get_perf_callchain(struct pt_regs *regs, u32 init_nr, bool kernel, bool user,
cfbcf468 1159 u32 max_stack, bool crosstask, bool add_mark);
6cbc304f 1160extern struct perf_callchain_entry *perf_callchain(struct perf_event *event, struct pt_regs *regs);
97c79a38 1161extern int get_callchain_buffers(int max_stack);
568b329a 1162extern void put_callchain_buffers(void);
394ee076 1163
c5dfd78e 1164extern int sysctl_perf_event_max_stack;
c85b0334 1165extern int sysctl_perf_event_max_contexts_per_stack;
c5dfd78e 1166
c85b0334
ACM
1167static inline int perf_callchain_store_context(struct perf_callchain_entry_ctx *ctx, u64 ip)
1168{
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;
1172 ++ctx->contexts;
1173 return 0;
1174 } else {
1175 ctx->contexts_maxed = true;
1176 return -1; /* no more room, stop walking the stack */
1177 }
1178}
3e4de4ec 1179
cfbcf468 1180static inline int perf_callchain_store(struct perf_callchain_entry_ctx *ctx, u64 ip)
70791ce9 1181{
c85b0334 1182 if (ctx->nr < ctx->max_stack && !ctx->contexts_maxed) {
3b1fff08 1183 struct perf_callchain_entry *entry = ctx->entry;
70791ce9 1184 entry->ip[entry->nr++] = ip;
3b1fff08 1185 ++ctx->nr;
568b329a
AS
1186 return 0;
1187 } else {
1188 return -1; /* no more room, stop walking the stack */
1189 }
70791ce9 1190}
394ee076 1191
cdd6c482
IM
1192extern int sysctl_perf_event_paranoid;
1193extern int sysctl_perf_event_mlock;
1194extern int sysctl_perf_event_sample_rate;
14c63f17
DH
1195extern int sysctl_perf_cpu_time_max_percent;
1196
1197extern void perf_sample_event_took(u64 sample_len_ns);
1ccd1549 1198
163ec435
PZ
1199extern int perf_proc_update_handler(struct ctl_table *table, int write,
1200 void __user *buffer, size_t *lenp,
1201 loff_t *ppos);
14c63f17
DH
1202extern int perf_cpu_time_max_percent_handler(struct ctl_table *table, int write,
1203 void __user *buffer, size_t *lenp,
1204 loff_t *ppos);
1205
c5dfd78e
ACM
1206int perf_event_max_stack_handler(struct ctl_table *table, int write,
1207 void __user *buffer, size_t *lenp, loff_t *ppos);
163ec435 1208
320ebf09
PZ
1209static inline bool perf_paranoid_tracepoint_raw(void)
1210{
1211 return sysctl_perf_event_paranoid > -1;
1212}
1213
1214static inline bool perf_paranoid_cpu(void)
1215{
1216 return sysctl_perf_event_paranoid > 0;
1217}
1218
1219static inline bool perf_paranoid_kernel(void)
1220{
1221 return sysctl_perf_event_paranoid > 1;
1222}
1223
cdd6c482 1224extern void perf_event_init(void);
1e1dcd93 1225extern void perf_tp_event(u16 event_type, u64 count, void *record,
1c024eca 1226 int entry_size, struct pt_regs *regs,
e6dab5ff 1227 struct hlist_head *head, int rctx,
8fd0fbbe 1228 struct task_struct *task);
24f1e32c 1229extern void perf_bp_event(struct perf_event *event, void *data);
0d905bca 1230
9d23a90a 1231#ifndef perf_misc_flags
e7e7ee2e
IM
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)
9d23a90a 1235#endif
c895f6f7
HB
1236#ifndef perf_arch_bpf_user_pt_regs
1237# define perf_arch_bpf_user_pt_regs(regs) regs
1238#endif
9d23a90a 1239
bce38cd5
SE
1240static inline bool has_branch_stack(struct perf_event *event)
1241{
1242 return event->attr.sample_type & PERF_SAMPLE_BRANCH_STACK;
a46a2300
YZ
1243}
1244
1245static inline bool needs_branch_stack(struct perf_event *event)
1246{
1247 return event->attr.branch_sample_type != 0;
bce38cd5
SE
1248}
1249
45bfb2e5
PZ
1250static inline bool has_aux(struct perf_event *event)
1251{
1252 return event->pmu->setup_aux;
1253}
1254
9ecda41a
WN
1255static inline bool is_write_backward(struct perf_event *event)
1256{
1257 return !!event->attr.write_backward;
1258}
1259
375637bc
AS
1260static inline bool has_addr_filter(struct perf_event *event)
1261{
1262 return event->pmu->nr_addr_filters;
1263}
1264
1265/*
1266 * An inherited event uses parent's filters
1267 */
1268static inline struct perf_addr_filters_head *
1269perf_event_addr_filters(struct perf_event *event)
1270{
1271 struct perf_addr_filters_head *ifh = &event->addr_filters;
1272
1273 if (event->parent)
1274 ifh = &event->parent->addr_filters;
1275
1276 return ifh;
1277}
1278
1279extern void perf_event_addr_filters_sync(struct perf_event *event);
1280
5622f295 1281extern int perf_output_begin(struct perf_output_handle *handle,
a7ac67ea 1282 struct perf_event *event, unsigned int size);
9ecda41a
WN
1283extern int perf_output_begin_forward(struct perf_output_handle *handle,
1284 struct perf_event *event,
1285 unsigned int size);
1286extern int perf_output_begin_backward(struct perf_output_handle *handle,
1287 struct perf_event *event,
1288 unsigned int size);
1289
5622f295 1290extern void perf_output_end(struct perf_output_handle *handle);
91d7753a 1291extern unsigned int perf_output_copy(struct perf_output_handle *handle,
5622f295 1292 const void *buf, unsigned int len);
5685e0ff
JO
1293extern unsigned int perf_output_skip(struct perf_output_handle *handle,
1294 unsigned int len);
4ed7c92d
PZ
1295extern int perf_swevent_get_recursion_context(void);
1296extern void perf_swevent_put_recursion_context(int rctx);
ab573844 1297extern u64 perf_swevent_set_period(struct perf_event *event);
44234adc
FW
1298extern void perf_event_enable(struct perf_event *event);
1299extern void perf_event_disable(struct perf_event *event);
fae3fde6 1300extern void perf_event_disable_local(struct perf_event *event);
5aab90ce 1301extern void perf_event_disable_inatomic(struct perf_event *event);
e9d2b064 1302extern void perf_event_task_tick(void);
475113d9 1303extern int perf_event_account_interrupt(struct perf_event *event);
e041e328 1304#else /* !CONFIG_PERF_EVENTS: */
fdc26706
AS
1305static inline void *
1306perf_aux_output_begin(struct perf_output_handle *handle,
1307 struct perf_event *event) { return NULL; }
1308static inline void
f4c0b0aa
WD
1309perf_aux_output_end(struct perf_output_handle *handle, unsigned long size)
1310 { }
fdc26706
AS
1311static inline int
1312perf_aux_output_skip(struct perf_output_handle *handle,
1313 unsigned long size) { return -EINVAL; }
1314static inline void *
1315perf_get_aux(struct perf_output_handle *handle) { return NULL; }
0793a61d 1316static inline void
ff303e66
PZ
1317perf_event_task_migrate(struct task_struct *task) { }
1318static inline void
ab0cce56
JO
1319perf_event_task_sched_in(struct task_struct *prev,
1320 struct task_struct *task) { }
1321static inline void
1322perf_event_task_sched_out(struct task_struct *prev,
1323 struct task_struct *next) { }
cdd6c482
IM
1324static inline int perf_event_init_task(struct task_struct *child) { return 0; }
1325static inline void perf_event_exit_task(struct task_struct *child) { }
1326static inline void perf_event_free_task(struct task_struct *task) { }
4e231c79 1327static inline void perf_event_delayed_put(struct task_struct *task) { }
e03e7ee3 1328static inline struct file *perf_event_get(unsigned int fd) { return ERR_PTR(-EINVAL); }
f8d959a5
YS
1329static inline const struct perf_event *perf_get_event(struct file *file)
1330{
1331 return ERR_PTR(-EINVAL);
1332}
ffe8690c
KX
1333static inline const struct perf_event_attr *perf_event_attrs(struct perf_event *event)
1334{
1335 return ERR_PTR(-EINVAL);
1336}
7d9285e8
YS
1337static inline int perf_event_read_local(struct perf_event *event, u64 *value,
1338 u64 *enabled, u64 *running)
f91840a3
AS
1339{
1340 return -EINVAL;
1341}
57c0c15b 1342static inline void perf_event_print_debug(void) { }
57c0c15b
IM
1343static inline int perf_event_task_disable(void) { return -EINVAL; }
1344static inline int perf_event_task_enable(void) { return -EINVAL; }
26ca5c11
AK
1345static inline int perf_event_refresh(struct perf_event *event, int refresh)
1346{
1347 return -EINVAL;
1348}
15dbf27c 1349
925d519a 1350static inline void
a8b0ca17 1351perf_sw_event(u32 event_id, u64 nr, struct pt_regs *regs, u64 addr) { }
24f1e32c 1352static inline void
86038c5e
PZI
1353perf_sw_event_sched(u32 event_id, u64 nr, u64 addr) { }
1354static inline void
184f412c 1355perf_bp_event(struct perf_event *event, void *data) { }
0a4a9391 1356
39447b38 1357static inline int perf_register_guest_info_callbacks
e7e7ee2e 1358(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 1359static inline int perf_unregister_guest_info_callbacks
e7e7ee2e 1360(struct perf_guest_info_callbacks *callbacks) { return 0; }
39447b38 1361
57c0c15b 1362static inline void perf_event_mmap(struct vm_area_struct *vma) { }
76193a94
SL
1363
1364typedef int (perf_ksymbol_get_name_f)(char *name, int name_len, void *data);
1365static inline void perf_event_ksymbol(u16 ksym_type, u64 addr, u32 len,
1366 bool unregister, const char *sym) { }
6ee52e2a
SL
1367static inline void perf_event_bpf_event(struct bpf_prog *prog,
1368 enum perf_bpf_event_type type,
1369 u16 flags) { }
e041e328 1370static inline void perf_event_exec(void) { }
82b89778 1371static inline void perf_event_comm(struct task_struct *tsk, bool exec) { }
e4222673 1372static inline void perf_event_namespaces(struct task_struct *tsk) { }
cdd6c482
IM
1373static inline void perf_event_fork(struct task_struct *tsk) { }
1374static inline void perf_event_init(void) { }
184f412c 1375static inline int perf_swevent_get_recursion_context(void) { return -1; }
4ed7c92d 1376static inline void perf_swevent_put_recursion_context(int rctx) { }
ab573844 1377static inline u64 perf_swevent_set_period(struct perf_event *event) { return 0; }
44234adc
FW
1378static inline void perf_event_enable(struct perf_event *event) { }
1379static inline void perf_event_disable(struct perf_event *event) { }
500ad2d8 1380static inline int __perf_event_disable(void *info) { return -1; }
e9d2b064 1381static inline void perf_event_task_tick(void) { }
ffe8690c 1382static inline int perf_event_release_kernel(struct perf_event *event) { return 0; }
0793a61d
TG
1383#endif
1384
6c4d3bc9
DR
1385#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
1386extern void perf_restore_debug_store(void);
1387#else
1d9d8639 1388static inline void perf_restore_debug_store(void) { }
0793a61d
TG
1389#endif
1390
7e3f977e
DB
1391static __always_inline bool perf_raw_frag_last(const struct perf_raw_frag *frag)
1392{
1393 return frag->pad < sizeof(u64);
1394}
1395
e7e7ee2e 1396#define perf_output_put(handle, x) perf_output_copy((handle), &(x), sizeof(x))
5622f295 1397
2663960c
SB
1398struct perf_pmu_events_attr {
1399 struct device_attribute attr;
1400 u64 id;
3a54aaa0 1401 const char *event_str;
2663960c
SB
1402};
1403
fc07e9f9
AK
1404struct perf_pmu_events_ht_attr {
1405 struct device_attribute attr;
1406 u64 id;
1407 const char *event_str_ht;
1408 const char *event_str_noht;
1409};
1410
fd979c01
CS
1411ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr,
1412 char *page);
1413
2663960c
SB
1414#define PMU_EVENT_ATTR(_name, _var, _id, _show) \
1415static struct perf_pmu_events_attr _var = { \
1416 .attr = __ATTR(_name, 0444, _show, NULL), \
1417 .id = _id, \
1418};
1419
f0405b81
CS
1420#define PMU_EVENT_ATTR_STRING(_name, _var, _str) \
1421static struct perf_pmu_events_attr _var = { \
1422 .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \
1423 .id = 0, \
1424 .event_str = _str, \
1425};
1426
641cc938
JO
1427#define PMU_FORMAT_ATTR(_name, _format) \
1428static ssize_t \
1429_name##_show(struct device *dev, \
1430 struct device_attribute *attr, \
1431 char *page) \
1432{ \
1433 BUILD_BUG_ON(sizeof(_format) >= PAGE_SIZE); \
1434 return sprintf(page, _format "\n"); \
1435} \
1436 \
1437static struct device_attribute format_attr_##_name = __ATTR_RO(_name)
1438
00e16c3d
TG
1439/* Performance counter hotplug functions */
1440#ifdef CONFIG_PERF_EVENTS
1441int perf_event_init_cpu(unsigned int cpu);
1442int perf_event_exit_cpu(unsigned int cpu);
1443#else
1444#define perf_event_init_cpu NULL
1445#define perf_event_exit_cpu NULL
1446#endif
1447
cdd6c482 1448#endif /* _LINUX_PERF_EVENT_H */