]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/trace/bpf_trace.c
Merge remote-tracking branches 'asoc/topic/cs35l32', 'asoc/topic/cs35l34', 'asoc...
[mirror_ubuntu-jammy-kernel.git] / kernel / trace / bpf_trace.c
CommitLineData
2541517c 1/* Copyright (c) 2011-2015 PLUMgrid, http://plumgrid.com
0515e599 2 * Copyright (c) 2016 Facebook
2541517c
AS
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of version 2 of the GNU General Public
6 * License as published by the Free Software Foundation.
7 */
8#include <linux/kernel.h>
9#include <linux/types.h>
10#include <linux/slab.h>
11#include <linux/bpf.h>
0515e599 12#include <linux/bpf_perf_event.h>
2541517c
AS
13#include <linux/filter.h>
14#include <linux/uaccess.h>
9c959c86 15#include <linux/ctype.h>
2541517c
AS
16#include "trace.h"
17
035226b9
GB
18u64 bpf_get_stackid(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
19
2541517c
AS
20/**
21 * trace_call_bpf - invoke BPF program
e87c6bc3 22 * @call: tracepoint event
2541517c
AS
23 * @ctx: opaque context pointer
24 *
25 * kprobe handlers execute BPF programs via this helper.
26 * Can be used from static tracepoints in the future.
27 *
28 * Return: BPF programs always return an integer which is interpreted by
29 * kprobe handler as:
30 * 0 - return from kprobe (event is filtered out)
31 * 1 - store kprobe event into ring buffer
32 * Other values are reserved and currently alias to 1
33 */
e87c6bc3 34unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx)
2541517c
AS
35{
36 unsigned int ret;
37
38 if (in_nmi()) /* not supported yet */
39 return 1;
40
41 preempt_disable();
42
43 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) {
44 /*
45 * since some bpf program is already running on this cpu,
46 * don't call into another bpf program (same or different)
47 * and don't send kprobe event into ring-buffer,
48 * so return zero here
49 */
50 ret = 0;
51 goto out;
52 }
53
e87c6bc3
YS
54 /*
55 * Instead of moving rcu_read_lock/rcu_dereference/rcu_read_unlock
56 * to all call sites, we did a bpf_prog_array_valid() there to check
57 * whether call->prog_array is empty or not, which is
58 * a heurisitc to speed up execution.
59 *
60 * If bpf_prog_array_valid() fetched prog_array was
61 * non-NULL, we go into trace_call_bpf() and do the actual
62 * proper rcu_dereference() under RCU lock.
63 * If it turns out that prog_array is NULL then, we bail out.
64 * For the opposite, if the bpf_prog_array_valid() fetched pointer
65 * was NULL, you'll skip the prog_array with the risk of missing
66 * out of events when it was updated in between this and the
67 * rcu_dereference() which is accepted risk.
68 */
69 ret = BPF_PROG_RUN_ARRAY_CHECK(call->prog_array, ctx, BPF_PROG_RUN);
2541517c
AS
70
71 out:
72 __this_cpu_dec(bpf_prog_active);
73 preempt_enable();
74
75 return ret;
76}
77EXPORT_SYMBOL_GPL(trace_call_bpf);
78
f3694e00 79BPF_CALL_3(bpf_probe_read, void *, dst, u32, size, const void *, unsafe_ptr)
2541517c 80{
eb33f2cc 81 int ret;
2541517c 82
074f528e
DB
83 ret = probe_kernel_read(dst, unsafe_ptr, size);
84 if (unlikely(ret < 0))
85 memset(dst, 0, size);
86
87 return ret;
2541517c
AS
88}
89
90static const struct bpf_func_proto bpf_probe_read_proto = {
91 .func = bpf_probe_read,
92 .gpl_only = true,
93 .ret_type = RET_INTEGER,
39f19ebb 94 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
9c019e2b 95 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
2541517c
AS
96 .arg3_type = ARG_ANYTHING,
97};
98
f3694e00
DB
99BPF_CALL_3(bpf_probe_write_user, void *, unsafe_ptr, const void *, src,
100 u32, size)
96ae5227 101{
96ae5227
SD
102 /*
103 * Ensure we're in user context which is safe for the helper to
104 * run. This helper has no business in a kthread.
105 *
106 * access_ok() should prevent writing to non-user memory, but in
107 * some situations (nommu, temporary switch, etc) access_ok() does
108 * not provide enough validation, hence the check on KERNEL_DS.
109 */
110
111 if (unlikely(in_interrupt() ||
112 current->flags & (PF_KTHREAD | PF_EXITING)))
113 return -EPERM;
db68ce10 114 if (unlikely(uaccess_kernel()))
96ae5227
SD
115 return -EPERM;
116 if (!access_ok(VERIFY_WRITE, unsafe_ptr, size))
117 return -EPERM;
118
119 return probe_kernel_write(unsafe_ptr, src, size);
120}
121
122static const struct bpf_func_proto bpf_probe_write_user_proto = {
123 .func = bpf_probe_write_user,
124 .gpl_only = true,
125 .ret_type = RET_INTEGER,
126 .arg1_type = ARG_ANYTHING,
39f19ebb
AS
127 .arg2_type = ARG_PTR_TO_MEM,
128 .arg3_type = ARG_CONST_SIZE,
96ae5227
SD
129};
130
131static const struct bpf_func_proto *bpf_get_probe_write_proto(void)
132{
133 pr_warn_ratelimited("%s[%d] is installing a program with bpf_probe_write_user helper that may corrupt user memory!",
134 current->comm, task_pid_nr(current));
135
136 return &bpf_probe_write_user_proto;
137}
138
9c959c86 139/*
7bda4b40
JF
140 * Only limited trace_printk() conversion specifiers allowed:
141 * %d %i %u %x %ld %li %lu %lx %lld %lli %llu %llx %p %s
9c959c86 142 */
f3694e00
DB
143BPF_CALL_5(bpf_trace_printk, char *, fmt, u32, fmt_size, u64, arg1,
144 u64, arg2, u64, arg3)
9c959c86 145{
8d3b7dce 146 bool str_seen = false;
9c959c86
AS
147 int mod[3] = {};
148 int fmt_cnt = 0;
8d3b7dce
AS
149 u64 unsafe_addr;
150 char buf[64];
9c959c86
AS
151 int i;
152
153 /*
154 * bpf_check()->check_func_arg()->check_stack_boundary()
155 * guarantees that fmt points to bpf program stack,
156 * fmt_size bytes of it were initialized and fmt_size > 0
157 */
158 if (fmt[--fmt_size] != 0)
159 return -EINVAL;
160
161 /* check format string for allowed specifiers */
162 for (i = 0; i < fmt_size; i++) {
163 if ((!isprint(fmt[i]) && !isspace(fmt[i])) || !isascii(fmt[i]))
164 return -EINVAL;
165
166 if (fmt[i] != '%')
167 continue;
168
169 if (fmt_cnt >= 3)
170 return -EINVAL;
171
172 /* fmt[i] != 0 && fmt[last] == 0, so we can access fmt[i + 1] */
173 i++;
174 if (fmt[i] == 'l') {
175 mod[fmt_cnt]++;
176 i++;
8d3b7dce 177 } else if (fmt[i] == 'p' || fmt[i] == 's') {
9c959c86
AS
178 mod[fmt_cnt]++;
179 i++;
180 if (!isspace(fmt[i]) && !ispunct(fmt[i]) && fmt[i] != 0)
181 return -EINVAL;
182 fmt_cnt++;
8d3b7dce
AS
183 if (fmt[i - 1] == 's') {
184 if (str_seen)
185 /* allow only one '%s' per fmt string */
186 return -EINVAL;
187 str_seen = true;
188
189 switch (fmt_cnt) {
190 case 1:
f3694e00
DB
191 unsafe_addr = arg1;
192 arg1 = (long) buf;
8d3b7dce
AS
193 break;
194 case 2:
f3694e00
DB
195 unsafe_addr = arg2;
196 arg2 = (long) buf;
8d3b7dce
AS
197 break;
198 case 3:
f3694e00
DB
199 unsafe_addr = arg3;
200 arg3 = (long) buf;
8d3b7dce
AS
201 break;
202 }
203 buf[0] = 0;
204 strncpy_from_unsafe(buf,
205 (void *) (long) unsafe_addr,
206 sizeof(buf));
207 }
9c959c86
AS
208 continue;
209 }
210
211 if (fmt[i] == 'l') {
212 mod[fmt_cnt]++;
213 i++;
214 }
215
7bda4b40
JF
216 if (fmt[i] != 'i' && fmt[i] != 'd' &&
217 fmt[i] != 'u' && fmt[i] != 'x')
9c959c86
AS
218 return -EINVAL;
219 fmt_cnt++;
220 }
221
88a5c690
DB
222/* Horrid workaround for getting va_list handling working with different
223 * argument type combinations generically for 32 and 64 bit archs.
224 */
225#define __BPF_TP_EMIT() __BPF_ARG3_TP()
226#define __BPF_TP(...) \
227 __trace_printk(1 /* Fake ip will not be printed. */, \
228 fmt, ##__VA_ARGS__)
229
230#define __BPF_ARG1_TP(...) \
231 ((mod[0] == 2 || (mod[0] == 1 && __BITS_PER_LONG == 64)) \
232 ? __BPF_TP(arg1, ##__VA_ARGS__) \
233 : ((mod[0] == 1 || (mod[0] == 0 && __BITS_PER_LONG == 32)) \
234 ? __BPF_TP((long)arg1, ##__VA_ARGS__) \
235 : __BPF_TP((u32)arg1, ##__VA_ARGS__)))
236
237#define __BPF_ARG2_TP(...) \
238 ((mod[1] == 2 || (mod[1] == 1 && __BITS_PER_LONG == 64)) \
239 ? __BPF_ARG1_TP(arg2, ##__VA_ARGS__) \
240 : ((mod[1] == 1 || (mod[1] == 0 && __BITS_PER_LONG == 32)) \
241 ? __BPF_ARG1_TP((long)arg2, ##__VA_ARGS__) \
242 : __BPF_ARG1_TP((u32)arg2, ##__VA_ARGS__)))
243
244#define __BPF_ARG3_TP(...) \
245 ((mod[2] == 2 || (mod[2] == 1 && __BITS_PER_LONG == 64)) \
246 ? __BPF_ARG2_TP(arg3, ##__VA_ARGS__) \
247 : ((mod[2] == 1 || (mod[2] == 0 && __BITS_PER_LONG == 32)) \
248 ? __BPF_ARG2_TP((long)arg3, ##__VA_ARGS__) \
249 : __BPF_ARG2_TP((u32)arg3, ##__VA_ARGS__)))
250
251 return __BPF_TP_EMIT();
9c959c86
AS
252}
253
254static const struct bpf_func_proto bpf_trace_printk_proto = {
255 .func = bpf_trace_printk,
256 .gpl_only = true,
257 .ret_type = RET_INTEGER,
39f19ebb
AS
258 .arg1_type = ARG_PTR_TO_MEM,
259 .arg2_type = ARG_CONST_SIZE,
9c959c86
AS
260};
261
0756ea3e
AS
262const struct bpf_func_proto *bpf_get_trace_printk_proto(void)
263{
264 /*
265 * this program might be calling bpf_trace_printk,
266 * so allocate per-cpu printk buffers
267 */
268 trace_printk_init_buffers();
269
270 return &bpf_trace_printk_proto;
271}
272
908432ca
YS
273static __always_inline int
274get_map_perf_counter(struct bpf_map *map, u64 flags,
275 u64 *value, u64 *enabled, u64 *running)
35578d79 276{
35578d79 277 struct bpf_array *array = container_of(map, struct bpf_array, map);
6816a7ff
DB
278 unsigned int cpu = smp_processor_id();
279 u64 index = flags & BPF_F_INDEX_MASK;
3b1efb19 280 struct bpf_event_entry *ee;
35578d79 281
6816a7ff
DB
282 if (unlikely(flags & ~(BPF_F_INDEX_MASK)))
283 return -EINVAL;
284 if (index == BPF_F_CURRENT_CPU)
285 index = cpu;
35578d79
KX
286 if (unlikely(index >= array->map.max_entries))
287 return -E2BIG;
288
3b1efb19 289 ee = READ_ONCE(array->ptrs[index]);
1ca1cc98 290 if (!ee)
35578d79
KX
291 return -ENOENT;
292
908432ca
YS
293 return perf_event_read_local(ee->event, value, enabled, running);
294}
295
296BPF_CALL_2(bpf_perf_event_read, struct bpf_map *, map, u64, flags)
297{
298 u64 value = 0;
299 int err;
300
301 err = get_map_perf_counter(map, flags, &value, NULL, NULL);
35578d79 302 /*
f91840a3
AS
303 * this api is ugly since we miss [-22..-2] range of valid
304 * counter values, but that's uapi
35578d79 305 */
f91840a3
AS
306 if (err)
307 return err;
308 return value;
35578d79
KX
309}
310
62544ce8 311static const struct bpf_func_proto bpf_perf_event_read_proto = {
35578d79 312 .func = bpf_perf_event_read,
1075ef59 313 .gpl_only = true,
35578d79
KX
314 .ret_type = RET_INTEGER,
315 .arg1_type = ARG_CONST_MAP_PTR,
316 .arg2_type = ARG_ANYTHING,
317};
318
908432ca
YS
319BPF_CALL_4(bpf_perf_event_read_value, struct bpf_map *, map, u64, flags,
320 struct bpf_perf_event_value *, buf, u32, size)
321{
322 int err = -EINVAL;
323
324 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
325 goto clear;
326 err = get_map_perf_counter(map, flags, &buf->counter, &buf->enabled,
327 &buf->running);
328 if (unlikely(err))
329 goto clear;
330 return 0;
331clear:
332 memset(buf, 0, size);
333 return err;
334}
335
336static const struct bpf_func_proto bpf_perf_event_read_value_proto = {
337 .func = bpf_perf_event_read_value,
338 .gpl_only = true,
339 .ret_type = RET_INTEGER,
340 .arg1_type = ARG_CONST_MAP_PTR,
341 .arg2_type = ARG_ANYTHING,
342 .arg3_type = ARG_PTR_TO_UNINIT_MEM,
343 .arg4_type = ARG_CONST_SIZE,
344};
345
283ca526 346static DEFINE_PER_CPU(struct perf_sample_data, bpf_trace_sd);
20b9d7ac 347
8e7a3920
DB
348static __always_inline u64
349__bpf_perf_event_output(struct pt_regs *regs, struct bpf_map *map,
283ca526 350 u64 flags, struct perf_sample_data *sd)
a43eec30 351{
a43eec30 352 struct bpf_array *array = container_of(map, struct bpf_array, map);
d7931330 353 unsigned int cpu = smp_processor_id();
1e33759c 354 u64 index = flags & BPF_F_INDEX_MASK;
3b1efb19 355 struct bpf_event_entry *ee;
a43eec30 356 struct perf_event *event;
a43eec30 357
1e33759c 358 if (index == BPF_F_CURRENT_CPU)
d7931330 359 index = cpu;
a43eec30
AS
360 if (unlikely(index >= array->map.max_entries))
361 return -E2BIG;
362
3b1efb19 363 ee = READ_ONCE(array->ptrs[index]);
1ca1cc98 364 if (!ee)
a43eec30
AS
365 return -ENOENT;
366
3b1efb19 367 event = ee->event;
a43eec30
AS
368 if (unlikely(event->attr.type != PERF_TYPE_SOFTWARE ||
369 event->attr.config != PERF_COUNT_SW_BPF_OUTPUT))
370 return -EINVAL;
371
d7931330 372 if (unlikely(event->oncpu != cpu))
a43eec30
AS
373 return -EOPNOTSUPP;
374
20b9d7ac 375 perf_event_output(event, sd, regs);
a43eec30
AS
376 return 0;
377}
378
f3694e00
DB
379BPF_CALL_5(bpf_perf_event_output, struct pt_regs *, regs, struct bpf_map *, map,
380 u64, flags, void *, data, u64, size)
8e7a3920 381{
283ca526 382 struct perf_sample_data *sd = this_cpu_ptr(&bpf_trace_sd);
8e7a3920
DB
383 struct perf_raw_record raw = {
384 .frag = {
385 .size = size,
386 .data = data,
387 },
388 };
389
390 if (unlikely(flags & ~(BPF_F_INDEX_MASK)))
391 return -EINVAL;
392
283ca526
DB
393 perf_sample_data_init(sd, 0, 0);
394 sd->raw = &raw;
395
396 return __bpf_perf_event_output(regs, map, flags, sd);
8e7a3920
DB
397}
398
a43eec30
AS
399static const struct bpf_func_proto bpf_perf_event_output_proto = {
400 .func = bpf_perf_event_output,
1075ef59 401 .gpl_only = true,
a43eec30
AS
402 .ret_type = RET_INTEGER,
403 .arg1_type = ARG_PTR_TO_CTX,
404 .arg2_type = ARG_CONST_MAP_PTR,
405 .arg3_type = ARG_ANYTHING,
39f19ebb 406 .arg4_type = ARG_PTR_TO_MEM,
a60dd35d 407 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
a43eec30
AS
408};
409
bd570ff9 410static DEFINE_PER_CPU(struct pt_regs, bpf_pt_regs);
283ca526 411static DEFINE_PER_CPU(struct perf_sample_data, bpf_misc_sd);
bd570ff9 412
555c8a86
DB
413u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
414 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy)
bd570ff9 415{
283ca526 416 struct perf_sample_data *sd = this_cpu_ptr(&bpf_misc_sd);
bd570ff9 417 struct pt_regs *regs = this_cpu_ptr(&bpf_pt_regs);
555c8a86
DB
418 struct perf_raw_frag frag = {
419 .copy = ctx_copy,
420 .size = ctx_size,
421 .data = ctx,
422 };
423 struct perf_raw_record raw = {
424 .frag = {
183fc153
AM
425 {
426 .next = ctx_size ? &frag : NULL,
427 },
555c8a86
DB
428 .size = meta_size,
429 .data = meta,
430 },
431 };
bd570ff9
DB
432
433 perf_fetch_caller_regs(regs);
283ca526
DB
434 perf_sample_data_init(sd, 0, 0);
435 sd->raw = &raw;
bd570ff9 436
283ca526 437 return __bpf_perf_event_output(regs, map, flags, sd);
bd570ff9
DB
438}
439
f3694e00 440BPF_CALL_0(bpf_get_current_task)
606274c5
AS
441{
442 return (long) current;
443}
444
445static const struct bpf_func_proto bpf_get_current_task_proto = {
446 .func = bpf_get_current_task,
447 .gpl_only = true,
448 .ret_type = RET_INTEGER,
449};
450
f3694e00 451BPF_CALL_2(bpf_current_task_under_cgroup, struct bpf_map *, map, u32, idx)
60d20f91 452{
60d20f91
SD
453 struct bpf_array *array = container_of(map, struct bpf_array, map);
454 struct cgroup *cgrp;
60d20f91
SD
455
456 if (unlikely(in_interrupt()))
457 return -EINVAL;
60d20f91
SD
458 if (unlikely(idx >= array->map.max_entries))
459 return -E2BIG;
460
461 cgrp = READ_ONCE(array->ptrs[idx]);
462 if (unlikely(!cgrp))
463 return -EAGAIN;
464
465 return task_under_cgroup_hierarchy(current, cgrp);
466}
467
468static const struct bpf_func_proto bpf_current_task_under_cgroup_proto = {
469 .func = bpf_current_task_under_cgroup,
470 .gpl_only = false,
471 .ret_type = RET_INTEGER,
472 .arg1_type = ARG_CONST_MAP_PTR,
473 .arg2_type = ARG_ANYTHING,
474};
475
a5e8c070
GB
476BPF_CALL_3(bpf_probe_read_str, void *, dst, u32, size,
477 const void *, unsafe_ptr)
478{
479 int ret;
480
481 /*
482 * The strncpy_from_unsafe() call will likely not fill the entire
483 * buffer, but that's okay in this circumstance as we're probing
484 * arbitrary memory anyway similar to bpf_probe_read() and might
485 * as well probe the stack. Thus, memory is explicitly cleared
486 * only in error case, so that improper users ignoring return
487 * code altogether don't copy garbage; otherwise length of string
488 * is returned that can be used for bpf_perf_event_output() et al.
489 */
490 ret = strncpy_from_unsafe(dst, unsafe_ptr, size);
491 if (unlikely(ret < 0))
492 memset(dst, 0, size);
493
494 return ret;
495}
496
497static const struct bpf_func_proto bpf_probe_read_str_proto = {
498 .func = bpf_probe_read_str,
499 .gpl_only = true,
500 .ret_type = RET_INTEGER,
501 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
5c4e1201 502 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
a5e8c070
GB
503 .arg3_type = ARG_ANYTHING,
504};
505
9fd82b61 506static const struct bpf_func_proto *tracing_func_proto(enum bpf_func_id func_id)
2541517c
AS
507{
508 switch (func_id) {
509 case BPF_FUNC_map_lookup_elem:
510 return &bpf_map_lookup_elem_proto;
511 case BPF_FUNC_map_update_elem:
512 return &bpf_map_update_elem_proto;
513 case BPF_FUNC_map_delete_elem:
514 return &bpf_map_delete_elem_proto;
515 case BPF_FUNC_probe_read:
516 return &bpf_probe_read_proto;
d9847d31
AS
517 case BPF_FUNC_ktime_get_ns:
518 return &bpf_ktime_get_ns_proto;
04fd61ab
AS
519 case BPF_FUNC_tail_call:
520 return &bpf_tail_call_proto;
ffeedafb
AS
521 case BPF_FUNC_get_current_pid_tgid:
522 return &bpf_get_current_pid_tgid_proto;
606274c5
AS
523 case BPF_FUNC_get_current_task:
524 return &bpf_get_current_task_proto;
ffeedafb
AS
525 case BPF_FUNC_get_current_uid_gid:
526 return &bpf_get_current_uid_gid_proto;
527 case BPF_FUNC_get_current_comm:
528 return &bpf_get_current_comm_proto;
9c959c86 529 case BPF_FUNC_trace_printk:
0756ea3e 530 return bpf_get_trace_printk_proto();
ab1973d3
AS
531 case BPF_FUNC_get_smp_processor_id:
532 return &bpf_get_smp_processor_id_proto;
2d0e30c3
DB
533 case BPF_FUNC_get_numa_node_id:
534 return &bpf_get_numa_node_id_proto;
35578d79
KX
535 case BPF_FUNC_perf_event_read:
536 return &bpf_perf_event_read_proto;
96ae5227
SD
537 case BPF_FUNC_probe_write_user:
538 return bpf_get_probe_write_proto();
60d20f91
SD
539 case BPF_FUNC_current_task_under_cgroup:
540 return &bpf_current_task_under_cgroup_proto;
8937bd80
AS
541 case BPF_FUNC_get_prandom_u32:
542 return &bpf_get_prandom_u32_proto;
a5e8c070
GB
543 case BPF_FUNC_probe_read_str:
544 return &bpf_probe_read_str_proto;
9fd82b61
AS
545 default:
546 return NULL;
547 }
548}
549
550static const struct bpf_func_proto *kprobe_prog_func_proto(enum bpf_func_id func_id)
551{
552 switch (func_id) {
a43eec30
AS
553 case BPF_FUNC_perf_event_output:
554 return &bpf_perf_event_output_proto;
d5a3b1f6
AS
555 case BPF_FUNC_get_stackid:
556 return &bpf_get_stackid_proto;
908432ca
YS
557 case BPF_FUNC_perf_event_read_value:
558 return &bpf_perf_event_read_value_proto;
2541517c 559 default:
9fd82b61 560 return tracing_func_proto(func_id);
2541517c
AS
561 }
562}
563
564/* bpf+kprobe programs can access fields of 'struct pt_regs' */
19de99f7 565static bool kprobe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
23994631 566 struct bpf_insn_access_aux *info)
2541517c 567{
2541517c
AS
568 if (off < 0 || off >= sizeof(struct pt_regs))
569 return false;
2541517c
AS
570 if (type != BPF_READ)
571 return false;
2541517c
AS
572 if (off % size != 0)
573 return false;
2d071c64
DB
574 /*
575 * Assertion for 32 bit to make sure last 8 byte access
576 * (BPF_DW) to the last 4 byte member is disallowed.
577 */
578 if (off + size > sizeof(struct pt_regs))
579 return false;
580
2541517c
AS
581 return true;
582}
583
7de16e3a 584const struct bpf_verifier_ops kprobe_verifier_ops = {
2541517c
AS
585 .get_func_proto = kprobe_prog_func_proto,
586 .is_valid_access = kprobe_prog_is_valid_access,
587};
588
7de16e3a
JK
589const struct bpf_prog_ops kprobe_prog_ops = {
590};
591
f3694e00
DB
592BPF_CALL_5(bpf_perf_event_output_tp, void *, tp_buff, struct bpf_map *, map,
593 u64, flags, void *, data, u64, size)
9940d67c 594{
f3694e00
DB
595 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
596
9940d67c
AS
597 /*
598 * r1 points to perf tracepoint buffer where first 8 bytes are hidden
599 * from bpf program and contain a pointer to 'struct pt_regs'. Fetch it
f3694e00 600 * from there and call the same bpf_perf_event_output() helper inline.
9940d67c 601 */
f3694e00 602 return ____bpf_perf_event_output(regs, map, flags, data, size);
9940d67c
AS
603}
604
605static const struct bpf_func_proto bpf_perf_event_output_proto_tp = {
606 .func = bpf_perf_event_output_tp,
607 .gpl_only = true,
608 .ret_type = RET_INTEGER,
609 .arg1_type = ARG_PTR_TO_CTX,
610 .arg2_type = ARG_CONST_MAP_PTR,
611 .arg3_type = ARG_ANYTHING,
39f19ebb 612 .arg4_type = ARG_PTR_TO_MEM,
a60dd35d 613 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
9940d67c
AS
614};
615
f3694e00
DB
616BPF_CALL_3(bpf_get_stackid_tp, void *, tp_buff, struct bpf_map *, map,
617 u64, flags)
9940d67c 618{
f3694e00 619 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
9940d67c 620
f3694e00
DB
621 /*
622 * Same comment as in bpf_perf_event_output_tp(), only that this time
623 * the other helper's function body cannot be inlined due to being
624 * external, thus we need to call raw helper function.
625 */
626 return bpf_get_stackid((unsigned long) regs, (unsigned long) map,
627 flags, 0, 0);
9940d67c
AS
628}
629
630static const struct bpf_func_proto bpf_get_stackid_proto_tp = {
631 .func = bpf_get_stackid_tp,
632 .gpl_only = true,
633 .ret_type = RET_INTEGER,
634 .arg1_type = ARG_PTR_TO_CTX,
635 .arg2_type = ARG_CONST_MAP_PTR,
636 .arg3_type = ARG_ANYTHING,
637};
638
4bebdc7a
YS
639BPF_CALL_3(bpf_perf_prog_read_value_tp, struct bpf_perf_event_data_kern *, ctx,
640 struct bpf_perf_event_value *, buf, u32, size)
641{
642 int err = -EINVAL;
643
644 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
645 goto clear;
646 err = perf_event_read_local(ctx->event, &buf->counter, &buf->enabled,
647 &buf->running);
648 if (unlikely(err))
649 goto clear;
650 return 0;
651clear:
652 memset(buf, 0, size);
653 return err;
654}
655
656static const struct bpf_func_proto bpf_perf_prog_read_value_proto_tp = {
657 .func = bpf_perf_prog_read_value_tp,
658 .gpl_only = true,
659 .ret_type = RET_INTEGER,
660 .arg1_type = ARG_PTR_TO_CTX,
661 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
662 .arg3_type = ARG_CONST_SIZE,
663};
664
9fd82b61
AS
665static const struct bpf_func_proto *tp_prog_func_proto(enum bpf_func_id func_id)
666{
667 switch (func_id) {
668 case BPF_FUNC_perf_event_output:
9940d67c 669 return &bpf_perf_event_output_proto_tp;
9fd82b61 670 case BPF_FUNC_get_stackid:
9940d67c 671 return &bpf_get_stackid_proto_tp;
4bebdc7a
YS
672 case BPF_FUNC_perf_prog_read_value:
673 return &bpf_perf_prog_read_value_proto_tp;
9fd82b61
AS
674 default:
675 return tracing_func_proto(func_id);
676 }
677}
678
19de99f7 679static bool tp_prog_is_valid_access(int off, int size, enum bpf_access_type type,
23994631 680 struct bpf_insn_access_aux *info)
9fd82b61
AS
681{
682 if (off < sizeof(void *) || off >= PERF_MAX_TRACE_SIZE)
683 return false;
684 if (type != BPF_READ)
685 return false;
686 if (off % size != 0)
687 return false;
2d071c64
DB
688
689 BUILD_BUG_ON(PERF_MAX_TRACE_SIZE % sizeof(__u64));
9fd82b61
AS
690 return true;
691}
692
7de16e3a 693const struct bpf_verifier_ops tracepoint_verifier_ops = {
9fd82b61
AS
694 .get_func_proto = tp_prog_func_proto,
695 .is_valid_access = tp_prog_is_valid_access,
696};
697
7de16e3a
JK
698const struct bpf_prog_ops tracepoint_prog_ops = {
699};
700
0515e599 701static bool pe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
23994631 702 struct bpf_insn_access_aux *info)
0515e599 703{
f96da094
DB
704 const int size_sp = FIELD_SIZEOF(struct bpf_perf_event_data,
705 sample_period);
31fd8581 706
0515e599
AS
707 if (off < 0 || off >= sizeof(struct bpf_perf_event_data))
708 return false;
709 if (type != BPF_READ)
710 return false;
711 if (off % size != 0)
712 return false;
31fd8581 713
f96da094
DB
714 switch (off) {
715 case bpf_ctx_range(struct bpf_perf_event_data, sample_period):
716 bpf_ctx_record_field_size(info, size_sp);
717 if (!bpf_ctx_narrow_access_ok(off, size, size_sp))
23994631 718 return false;
f96da094
DB
719 break;
720 default:
0515e599
AS
721 if (size != sizeof(long))
722 return false;
723 }
f96da094 724
0515e599
AS
725 return true;
726}
727
6b8cc1d1
DB
728static u32 pe_prog_convert_ctx_access(enum bpf_access_type type,
729 const struct bpf_insn *si,
0515e599 730 struct bpf_insn *insn_buf,
f96da094 731 struct bpf_prog *prog, u32 *target_size)
0515e599
AS
732{
733 struct bpf_insn *insn = insn_buf;
734
6b8cc1d1 735 switch (si->off) {
0515e599 736 case offsetof(struct bpf_perf_event_data, sample_period):
f035a515 737 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
6b8cc1d1 738 data), si->dst_reg, si->src_reg,
0515e599 739 offsetof(struct bpf_perf_event_data_kern, data));
6b8cc1d1 740 *insn++ = BPF_LDX_MEM(BPF_DW, si->dst_reg, si->dst_reg,
f96da094
DB
741 bpf_target_off(struct perf_sample_data, period, 8,
742 target_size));
0515e599
AS
743 break;
744 default:
f035a515 745 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
6b8cc1d1 746 regs), si->dst_reg, si->src_reg,
0515e599 747 offsetof(struct bpf_perf_event_data_kern, regs));
6b8cc1d1
DB
748 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(long), si->dst_reg, si->dst_reg,
749 si->off);
0515e599
AS
750 break;
751 }
752
753 return insn - insn_buf;
754}
755
7de16e3a 756const struct bpf_verifier_ops perf_event_verifier_ops = {
0515e599
AS
757 .get_func_proto = tp_prog_func_proto,
758 .is_valid_access = pe_prog_is_valid_access,
759 .convert_ctx_access = pe_prog_convert_ctx_access,
760};
7de16e3a
JK
761
762const struct bpf_prog_ops perf_event_prog_ops = {
763};
e87c6bc3
YS
764
765static DEFINE_MUTEX(bpf_event_mutex);
766
c8c088ba
YS
767#define BPF_TRACE_MAX_PROGS 64
768
e87c6bc3
YS
769int perf_event_attach_bpf_prog(struct perf_event *event,
770 struct bpf_prog *prog)
771{
772 struct bpf_prog_array __rcu *old_array;
773 struct bpf_prog_array *new_array;
774 int ret = -EEXIST;
775
776 mutex_lock(&bpf_event_mutex);
777
778 if (event->prog)
07c41a29 779 goto unlock;
e87c6bc3 780
07c41a29 781 old_array = event->tp_event->prog_array;
c8c088ba
YS
782 if (old_array &&
783 bpf_prog_array_length(old_array) >= BPF_TRACE_MAX_PROGS) {
784 ret = -E2BIG;
785 goto unlock;
786 }
787
e87c6bc3
YS
788 ret = bpf_prog_array_copy(old_array, NULL, prog, &new_array);
789 if (ret < 0)
07c41a29 790 goto unlock;
e87c6bc3
YS
791
792 /* set the new array to event->tp_event and set event->prog */
793 event->prog = prog;
794 rcu_assign_pointer(event->tp_event->prog_array, new_array);
795 bpf_prog_array_free(old_array);
796
07c41a29 797unlock:
e87c6bc3
YS
798 mutex_unlock(&bpf_event_mutex);
799 return ret;
800}
801
802void perf_event_detach_bpf_prog(struct perf_event *event)
803{
804 struct bpf_prog_array __rcu *old_array;
805 struct bpf_prog_array *new_array;
806 int ret;
807
808 mutex_lock(&bpf_event_mutex);
809
810 if (!event->prog)
07c41a29 811 goto unlock;
e87c6bc3 812
07c41a29 813 old_array = event->tp_event->prog_array;
e87c6bc3
YS
814 ret = bpf_prog_array_copy(old_array, event->prog, NULL, &new_array);
815 if (ret < 0) {
816 bpf_prog_array_delete_safe(old_array, event->prog);
817 } else {
818 rcu_assign_pointer(event->tp_event->prog_array, new_array);
819 bpf_prog_array_free(old_array);
820 }
821
822 bpf_prog_put(event->prog);
823 event->prog = NULL;
824
07c41a29 825unlock:
e87c6bc3
YS
826 mutex_unlock(&bpf_event_mutex);
827}