1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _KERNEL_EVENTS_INTERNAL_H
3 #define _KERNEL_EVENTS_INTERNAL_H
5 #include <linux/hardirq.h>
6 #include <linux/uaccess.h>
7 #include <linux/refcount.h>
11 #define RING_BUFFER_WRITABLE 0x01
15 struct rcu_head rcu_head;
16 #ifdef CONFIG_PERF_USE_VMALLOC
17 struct work_struct work;
18 int page_order; /* allocation order */
20 int nr_pages; /* nr of data pages */
21 int overwrite; /* can overwrite itself */
22 int paused; /* can write into ring buffer */
24 atomic_t poll; /* POLL_ for wakeups */
26 local_t head; /* write position */
27 unsigned int nest; /* nested writers */
28 local_t events; /* event limit */
29 local_t wakeup; /* wakeup stamp */
30 local_t lost; /* nr records lost */
32 long watermark; /* wakeup watermark */
35 spinlock_t event_lock;
36 struct list_head event_list;
39 unsigned long mmap_locked;
40 struct user_struct *mmap_user;
44 unsigned int aux_nest;
45 long aux_wakeup; /* last aux_watermark boundary crossed by aux_head */
46 unsigned long aux_pgoff;
49 atomic_t aux_mmap_count;
50 unsigned long aux_mmap_locked;
51 void (*free_aux)(void *);
52 refcount_t aux_refcount;
57 struct perf_event_mmap_page *user_page;
61 extern void rb_free(struct perf_buffer *rb);
63 static inline void rb_free_rcu(struct rcu_head *rcu_head)
65 struct perf_buffer *rb;
67 rb = container_of(rcu_head, struct perf_buffer, rcu_head);
71 static inline void rb_toggle_paused(struct perf_buffer *rb, bool pause)
73 if (!pause && rb->nr_pages)
79 extern struct perf_buffer *
80 rb_alloc(int nr_pages, long watermark, int cpu, int flags);
81 extern void perf_event_wakeup(struct perf_event *event);
82 extern int rb_alloc_aux(struct perf_buffer *rb, struct perf_event *event,
83 pgoff_t pgoff, int nr_pages, long watermark, int flags);
84 extern void rb_free_aux(struct perf_buffer *rb);
85 extern struct perf_buffer *ring_buffer_get(struct perf_event *event);
86 extern void ring_buffer_put(struct perf_buffer *rb);
88 static inline bool rb_has_aux(struct perf_buffer *rb)
90 return !!rb->aux_nr_pages;
93 void perf_event_aux_event(struct perf_event *event, unsigned long head,
94 unsigned long size, u64 flags);
97 perf_mmap_to_page(struct perf_buffer *rb, unsigned long pgoff);
99 #ifdef CONFIG_PERF_USE_VMALLOC
101 * Back perf_mmap() with vmalloc memory.
103 * Required for architectures that have d-cache aliasing issues.
106 static inline int page_order(struct perf_buffer *rb)
108 return rb->page_order;
113 static inline int page_order(struct perf_buffer *rb)
119 static inline unsigned long perf_data_size(struct perf_buffer *rb)
121 return rb->nr_pages << (PAGE_SHIFT + page_order(rb));
124 static inline unsigned long perf_aux_size(struct perf_buffer *rb)
126 return rb->aux_nr_pages << PAGE_SHIFT;
129 #define __DEFINE_OUTPUT_COPY_BODY(advance_buf, memcpy_func, ...) \
131 unsigned long size, written; \
134 size = min(handle->size, len); \
135 written = memcpy_func(__VA_ARGS__); \
136 written = size - written; \
139 handle->addr += written; \
142 handle->size -= written; \
143 if (!handle->size) { \
144 struct perf_buffer *rb = handle->rb; \
147 handle->page &= rb->nr_pages - 1; \
148 handle->addr = rb->data_pages[handle->page]; \
149 handle->size = PAGE_SIZE << page_order(rb); \
151 } while (len && written == size); \
156 #define DEFINE_OUTPUT_COPY(func_name, memcpy_func) \
157 static inline unsigned long \
158 func_name(struct perf_output_handle *handle, \
159 const void *buf, unsigned long len) \
160 __DEFINE_OUTPUT_COPY_BODY(true, memcpy_func, handle->addr, buf, size)
162 static inline unsigned long
163 __output_custom(struct perf_output_handle *handle, perf_copy_f copy_func,
164 const void *buf, unsigned long len)
166 unsigned long orig_len = len;
167 __DEFINE_OUTPUT_COPY_BODY(false, copy_func, handle->addr, buf,
168 orig_len - len, size)
171 static inline unsigned long
172 memcpy_common(void *dst, const void *src, unsigned long n)
178 DEFINE_OUTPUT_COPY(__output_copy, memcpy_common)
180 static inline unsigned long
181 memcpy_skip(void *dst, const void *src, unsigned long n)
186 DEFINE_OUTPUT_COPY(__output_skip, memcpy_skip)
188 #ifndef arch_perf_out_copy_user
189 #define arch_perf_out_copy_user arch_perf_out_copy_user
191 static inline unsigned long
192 arch_perf_out_copy_user(void *dst, const void *src, unsigned long n)
197 ret = __copy_from_user_inatomic(dst, src, n);
204 DEFINE_OUTPUT_COPY(__output_copy_user, arch_perf_out_copy_user)
206 static inline int get_recursion_context(int *recursion)
210 if (unlikely(in_nmi()))
214 else if (in_softirq())
228 static inline void put_recursion_context(int *recursion, int rctx)
234 #ifdef CONFIG_HAVE_PERF_USER_STACK_DUMP
235 static inline bool arch_perf_have_user_stack_dump(void)
240 #define perf_user_stack_pointer(regs) user_stack_pointer(regs)
242 static inline bool arch_perf_have_user_stack_dump(void)
247 #define perf_user_stack_pointer(regs) 0
248 #endif /* CONFIG_HAVE_PERF_USER_STACK_DUMP */
250 #endif /* _KERNEL_EVENTS_INTERNAL_H */