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;
43 struct mutex aux_mutex;
45 unsigned int aux_nest;
46 long aux_wakeup; /* last aux_watermark boundary crossed by aux_head */
47 unsigned long aux_pgoff;
50 atomic_t aux_mmap_count;
51 unsigned long aux_mmap_locked;
52 void (*free_aux)(void *);
53 refcount_t aux_refcount;
55 int aux_in_pause_resume;
59 struct perf_event_mmap_page *user_page;
63 extern void rb_free(struct perf_buffer *rb);
65 static inline void rb_free_rcu(struct rcu_head *rcu_head)
67 struct perf_buffer *rb;
69 rb = container_of(rcu_head, struct perf_buffer, rcu_head);
73 static inline void rb_toggle_paused(struct perf_buffer *rb, bool pause)
75 if (!pause && rb->nr_pages)
81 extern struct perf_buffer *
82 rb_alloc(int nr_pages, long watermark, int cpu, int flags);
83 extern void perf_event_wakeup(struct perf_event *event);
84 extern int rb_alloc_aux(struct perf_buffer *rb, struct perf_event *event,
85 pgoff_t pgoff, int nr_pages, long watermark, int flags);
86 extern void rb_free_aux(struct perf_buffer *rb);
87 extern struct perf_buffer *ring_buffer_get(struct perf_event *event);
88 extern void ring_buffer_put(struct perf_buffer *rb);
90 static inline bool rb_has_aux(struct perf_buffer *rb)
92 return !!rb->aux_nr_pages;
95 void perf_event_aux_event(struct perf_event *event, unsigned long head,
96 unsigned long size, u64 flags);
99 perf_mmap_to_page(struct perf_buffer *rb, unsigned long pgoff);
101 #ifdef CONFIG_PERF_USE_VMALLOC
103 * Back perf_mmap() with vmalloc memory.
105 * Required for architectures that have d-cache aliasing issues.
108 static inline int page_order(struct perf_buffer *rb)
110 return rb->page_order;
115 static inline int page_order(struct perf_buffer *rb)
121 static inline int data_page_nr(struct perf_buffer *rb)
123 return rb->nr_pages << page_order(rb);
126 static inline unsigned long perf_data_size(struct perf_buffer *rb)
128 return rb->nr_pages << (PAGE_SHIFT + page_order(rb));
131 static inline unsigned long perf_aux_size(struct perf_buffer *rb)
133 return (unsigned long)rb->aux_nr_pages << PAGE_SHIFT;
136 #define __DEFINE_OUTPUT_COPY_BODY(advance_buf, memcpy_func, ...) \
138 unsigned long size, written; \
141 size = min(handle->size, len); \
142 written = memcpy_func(__VA_ARGS__); \
143 written = size - written; \
146 handle->addr += written; \
149 handle->size -= written; \
150 if (!handle->size) { \
151 struct perf_buffer *rb = handle->rb; \
154 handle->page &= rb->nr_pages - 1; \
155 handle->addr = rb->data_pages[handle->page]; \
156 handle->size = PAGE_SIZE << page_order(rb); \
158 } while (len && written == size); \
163 #define DEFINE_OUTPUT_COPY(func_name, memcpy_func) \
164 static inline unsigned long \
165 func_name(struct perf_output_handle *handle, \
166 const void *buf, unsigned long len) \
167 __DEFINE_OUTPUT_COPY_BODY(true, memcpy_func, handle->addr, buf, size)
169 static inline unsigned long
170 __output_custom(struct perf_output_handle *handle, perf_copy_f copy_func,
171 const void *buf, unsigned long len)
173 unsigned long orig_len = len;
174 __DEFINE_OUTPUT_COPY_BODY(false, copy_func, handle->addr, buf,
175 orig_len - len, size)
178 static inline unsigned long
179 memcpy_common(void *dst, const void *src, unsigned long n)
185 DEFINE_OUTPUT_COPY(__output_copy, memcpy_common)
187 static inline unsigned long
188 memcpy_skip(void *dst, const void *src, unsigned long n)
193 DEFINE_OUTPUT_COPY(__output_skip, memcpy_skip)
195 #ifndef arch_perf_out_copy_user
196 #define arch_perf_out_copy_user arch_perf_out_copy_user
198 static inline unsigned long
199 arch_perf_out_copy_user(void *dst, const void *src, unsigned long n)
204 ret = __copy_from_user_inatomic(dst, src, n);
211 DEFINE_OUTPUT_COPY(__output_copy_user, arch_perf_out_copy_user)
213 static inline int get_recursion_context(u8 *recursion)
215 unsigned char rctx = interrupt_context_level();
226 static inline void put_recursion_context(u8 *recursion, unsigned char rctx)
232 #ifdef CONFIG_HAVE_PERF_USER_STACK_DUMP
233 static inline bool arch_perf_have_user_stack_dump(void)
238 #define perf_user_stack_pointer(regs) user_stack_pointer(regs)
240 static inline bool arch_perf_have_user_stack_dump(void)
245 #define perf_user_stack_pointer(regs) 0
246 #endif /* CONFIG_HAVE_PERF_USER_STACK_DUMP */
248 #endif /* _KERNEL_EVENTS_INTERNAL_H */