blob: 977ba3b6f6c64cc45aa74dd55d1e8f1e9804d52e [file] [log] [blame]
Steven Rostedt (VMware)179a0cc2018-08-16 11:20:54 -04001// SPDX-License-Identifier: GPL-2.0
Alexei Starovoitov25415172015-03-25 12:49:20 -07002/* Copyright (c) 2011-2015 PLUMgrid, http://plumgrid.com
Alexei Starovoitov0515e592016-09-01 18:37:22 -07003 * Copyright (c) 2016 Facebook
Alexei Starovoitov25415172015-03-25 12:49:20 -07004 */
5#include <linux/kernel.h>
6#include <linux/types.h>
7#include <linux/slab.h>
8#include <linux/bpf.h>
Alexei Starovoitov0515e592016-09-01 18:37:22 -07009#include <linux/bpf_perf_event.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070010#include <linux/filter.h>
11#include <linux/uaccess.h>
Alexei Starovoitov9c959c82015-03-25 12:49:22 -070012#include <linux/ctype.h>
Josef Bacik9802d862017-12-11 11:36:48 -050013#include <linux/kprobes.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070014#include <linux/syscalls.h>
Masami Hiramatsu540adea2018-01-13 02:55:03 +090015#include <linux/error-injection.h>
Josef Bacik9802d862017-12-11 11:36:48 -050016
Nadav Amitc7b6f292019-04-25 17:11:43 -070017#include <asm/tlb.h>
18
Josef Bacik9802d862017-12-11 11:36:48 -050019#include "trace_probe.h"
Alexei Starovoitov25415172015-03-25 12:49:20 -070020#include "trace.h"
21
Stanislav Fomicheve672db02019-05-28 14:14:44 -070022#define bpf_event_rcu_dereference(p) \
23 rcu_dereference_protected(p, lockdep_is_held(&bpf_event_mutex))
24
Matt Mullinsa38d1102018-12-12 16:42:37 -080025#ifdef CONFIG_MODULES
26struct bpf_trace_module {
27 struct module *module;
28 struct list_head list;
29};
30
31static LIST_HEAD(bpf_trace_modules);
32static DEFINE_MUTEX(bpf_module_mutex);
33
34static struct bpf_raw_event_map *bpf_get_raw_tracepoint_module(const char *name)
35{
36 struct bpf_raw_event_map *btp, *ret = NULL;
37 struct bpf_trace_module *btm;
38 unsigned int i;
39
40 mutex_lock(&bpf_module_mutex);
41 list_for_each_entry(btm, &bpf_trace_modules, list) {
42 for (i = 0; i < btm->module->num_bpf_raw_events; ++i) {
43 btp = &btm->module->bpf_raw_events[i];
44 if (!strcmp(btp->tp->name, name)) {
45 if (try_module_get(btm->module))
46 ret = btp;
47 goto out;
48 }
49 }
50 }
51out:
52 mutex_unlock(&bpf_module_mutex);
53 return ret;
54}
55#else
56static struct bpf_raw_event_map *bpf_get_raw_tracepoint_module(const char *name)
57{
58 return NULL;
59}
60#endif /* CONFIG_MODULES */
61
Gianluca Borello035226b2017-10-26 01:47:42 +000062u64 bpf_get_stackid(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Yonghong Songc195651e2018-04-28 22:28:08 -070063u64 bpf_get_stack(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Gianluca Borello035226b2017-10-26 01:47:42 +000064
Alexei Starovoitov25415172015-03-25 12:49:20 -070065/**
66 * trace_call_bpf - invoke BPF program
Yonghong Songe87c6bc2017-10-23 23:53:08 -070067 * @call: tracepoint event
Alexei Starovoitov25415172015-03-25 12:49:20 -070068 * @ctx: opaque context pointer
69 *
70 * kprobe handlers execute BPF programs via this helper.
71 * Can be used from static tracepoints in the future.
72 *
73 * Return: BPF programs always return an integer which is interpreted by
74 * kprobe handler as:
75 * 0 - return from kprobe (event is filtered out)
76 * 1 - store kprobe event into ring buffer
77 * Other values are reserved and currently alias to 1
78 */
Yonghong Songe87c6bc2017-10-23 23:53:08 -070079unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx)
Alexei Starovoitov25415172015-03-25 12:49:20 -070080{
81 unsigned int ret;
82
83 if (in_nmi()) /* not supported yet */
84 return 1;
85
Thomas Gleixnerb0a81b92020-02-24 15:01:37 +010086 cant_sleep();
Alexei Starovoitov25415172015-03-25 12:49:20 -070087
88 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) {
89 /*
90 * since some bpf program is already running on this cpu,
91 * don't call into another bpf program (same or different)
92 * and don't send kprobe event into ring-buffer,
93 * so return zero here
94 */
95 ret = 0;
96 goto out;
97 }
98
Yonghong Songe87c6bc2017-10-23 23:53:08 -070099 /*
100 * Instead of moving rcu_read_lock/rcu_dereference/rcu_read_unlock
101 * to all call sites, we did a bpf_prog_array_valid() there to check
102 * whether call->prog_array is empty or not, which is
103 * a heurisitc to speed up execution.
104 *
105 * If bpf_prog_array_valid() fetched prog_array was
106 * non-NULL, we go into trace_call_bpf() and do the actual
107 * proper rcu_dereference() under RCU lock.
108 * If it turns out that prog_array is NULL then, we bail out.
109 * For the opposite, if the bpf_prog_array_valid() fetched pointer
110 * was NULL, you'll skip the prog_array with the risk of missing
111 * out of events when it was updated in between this and the
112 * rcu_dereference() which is accepted risk.
113 */
114 ret = BPF_PROG_RUN_ARRAY_CHECK(call->prog_array, ctx, BPF_PROG_RUN);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700115
116 out:
117 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700118
119 return ret;
120}
Alexei Starovoitov25415172015-03-25 12:49:20 -0700121
Josef Bacik9802d862017-12-11 11:36:48 -0500122#ifdef CONFIG_BPF_KPROBE_OVERRIDE
123BPF_CALL_2(bpf_override_return, struct pt_regs *, regs, unsigned long, rc)
124{
Josef Bacik9802d862017-12-11 11:36:48 -0500125 regs_set_return_value(regs, rc);
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900126 override_function_with_return(regs);
Josef Bacik9802d862017-12-11 11:36:48 -0500127 return 0;
128}
129
130static const struct bpf_func_proto bpf_override_return_proto = {
131 .func = bpf_override_return,
132 .gpl_only = true,
133 .ret_type = RET_INTEGER,
134 .arg1_type = ARG_PTR_TO_CTX,
135 .arg2_type = ARG_ANYTHING,
136};
137#endif
138
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700139static __always_inline int
140bpf_probe_read_user_common(void *dst, u32 size, const void __user *unsafe_ptr)
141{
142 int ret;
143
144 ret = probe_user_read(dst, unsafe_ptr, size);
145 if (unlikely(ret < 0))
146 memset(dst, 0, size);
147 return ret;
148}
149
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100150BPF_CALL_3(bpf_probe_read_user, void *, dst, u32, size,
151 const void __user *, unsafe_ptr)
Alexei Starovoitov25415172015-03-25 12:49:20 -0700152{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700153 return bpf_probe_read_user_common(dst, size, unsafe_ptr);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700154}
155
John Fastabendf4703782020-05-24 09:50:55 -0700156const struct bpf_func_proto bpf_probe_read_user_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100157 .func = bpf_probe_read_user,
158 .gpl_only = true,
159 .ret_type = RET_INTEGER,
160 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
161 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
162 .arg3_type = ARG_ANYTHING,
163};
164
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700165static __always_inline int
166bpf_probe_read_user_str_common(void *dst, u32 size,
167 const void __user *unsafe_ptr)
168{
169 int ret;
170
171 ret = strncpy_from_user_nofault(dst, unsafe_ptr, size);
172 if (unlikely(ret < 0))
173 memset(dst, 0, size);
174 return ret;
175}
176
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100177BPF_CALL_3(bpf_probe_read_user_str, void *, dst, u32, size,
178 const void __user *, unsafe_ptr)
179{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700180 return bpf_probe_read_user_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100181}
182
John Fastabendf4703782020-05-24 09:50:55 -0700183const struct bpf_func_proto bpf_probe_read_user_str_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100184 .func = bpf_probe_read_user_str,
185 .gpl_only = true,
186 .ret_type = RET_INTEGER,
187 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
188 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
189 .arg3_type = ARG_ANYTHING,
190};
191
192static __always_inline int
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700193bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr)
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100194{
195 int ret = security_locked_down(LOCKDOWN_BPF_READ);
196
197 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700198 goto fail;
Christoph Hellwig98a23602020-06-08 21:34:50 -0700199 ret = probe_kernel_read(dst, unsafe_ptr, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100200 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700201 goto fail;
202 return ret;
203fail:
204 memset(dst, 0, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100205 return ret;
206}
207
208BPF_CALL_3(bpf_probe_read_kernel, void *, dst, u32, size,
209 const void *, unsafe_ptr)
210{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700211 return bpf_probe_read_kernel_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100212}
213
John Fastabendf4703782020-05-24 09:50:55 -0700214const struct bpf_func_proto bpf_probe_read_kernel_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100215 .func = bpf_probe_read_kernel,
216 .gpl_only = true,
217 .ret_type = RET_INTEGER,
218 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
219 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
220 .arg3_type = ARG_ANYTHING,
221};
222
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100223static __always_inline int
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700224bpf_probe_read_kernel_str_common(void *dst, u32 size, const void *unsafe_ptr)
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100225{
226 int ret = security_locked_down(LOCKDOWN_BPF_READ);
227
228 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700229 goto fail;
230
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100231 /*
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700232 * The strncpy_from_kernel_nofault() call will likely not fill the
233 * entire buffer, but that's okay in this circumstance as we're probing
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100234 * arbitrary memory anyway similar to bpf_probe_read_*() and might
235 * as well probe the stack. Thus, memory is explicitly cleared
236 * only in error case, so that improper users ignoring return
237 * code altogether don't copy garbage; otherwise length of string
238 * is returned that can be used for bpf_perf_event_output() et al.
239 */
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700240 ret = strncpy_from_kernel_nofault(dst, unsafe_ptr, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100241 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700242 goto fail;
243
Andrii Nakryiko02553b92020-06-15 22:04:30 -0700244 return ret;
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700245fail:
246 memset(dst, 0, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100247 return ret;
248}
249
250BPF_CALL_3(bpf_probe_read_kernel_str, void *, dst, u32, size,
251 const void *, unsafe_ptr)
252{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700253 return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100254}
255
John Fastabendf4703782020-05-24 09:50:55 -0700256const struct bpf_func_proto bpf_probe_read_kernel_str_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100257 .func = bpf_probe_read_kernel_str,
258 .gpl_only = true,
259 .ret_type = RET_INTEGER,
260 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
261 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
262 .arg3_type = ARG_ANYTHING,
263};
264
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700265#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
266BPF_CALL_3(bpf_probe_read_compat, void *, dst, u32, size,
267 const void *, unsafe_ptr)
268{
269 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
270 return bpf_probe_read_user_common(dst, size,
271 (__force void __user *)unsafe_ptr);
272 }
273 return bpf_probe_read_kernel_common(dst, size, unsafe_ptr);
274}
275
276static const struct bpf_func_proto bpf_probe_read_compat_proto = {
277 .func = bpf_probe_read_compat,
278 .gpl_only = true,
279 .ret_type = RET_INTEGER,
280 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
281 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
282 .arg3_type = ARG_ANYTHING,
283};
284
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100285BPF_CALL_3(bpf_probe_read_compat_str, void *, dst, u32, size,
286 const void *, unsafe_ptr)
287{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700288 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
289 return bpf_probe_read_user_str_common(dst, size,
290 (__force void __user *)unsafe_ptr);
291 }
292 return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100293}
294
295static const struct bpf_func_proto bpf_probe_read_compat_str_proto = {
296 .func = bpf_probe_read_compat_str,
Alexei Starovoitov25415172015-03-25 12:49:20 -0700297 .gpl_only = true,
298 .ret_type = RET_INTEGER,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800299 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
Yonghong Song9c019e22017-11-12 14:49:10 -0800300 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitov25415172015-03-25 12:49:20 -0700301 .arg3_type = ARG_ANYTHING,
302};
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700303#endif /* CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE */
Alexei Starovoitov25415172015-03-25 12:49:20 -0700304
Daniel Borkmanneb1b6682019-11-02 00:17:58 +0100305BPF_CALL_3(bpf_probe_write_user, void __user *, unsafe_ptr, const void *, src,
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200306 u32, size)
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700307{
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700308 /*
309 * Ensure we're in user context which is safe for the helper to
310 * run. This helper has no business in a kthread.
311 *
312 * access_ok() should prevent writing to non-user memory, but in
313 * some situations (nommu, temporary switch, etc) access_ok() does
314 * not provide enough validation, hence the check on KERNEL_DS.
Nadav Amitc7b6f292019-04-25 17:11:43 -0700315 *
316 * nmi_uaccess_okay() ensures the probe is not run in an interim
317 * state, when the task or mm are switched. This is specifically
318 * required to prevent the use of temporary mm.
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700319 */
320
321 if (unlikely(in_interrupt() ||
322 current->flags & (PF_KTHREAD | PF_EXITING)))
323 return -EPERM;
Al Virodb68ce12017-03-20 21:08:07 -0400324 if (unlikely(uaccess_kernel()))
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700325 return -EPERM;
Nadav Amitc7b6f292019-04-25 17:11:43 -0700326 if (unlikely(!nmi_uaccess_okay()))
327 return -EPERM;
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700328
Daniel Borkmanneb1b6682019-11-02 00:17:58 +0100329 return probe_user_write(unsafe_ptr, src, size);
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700330}
331
332static const struct bpf_func_proto bpf_probe_write_user_proto = {
333 .func = bpf_probe_write_user,
334 .gpl_only = true,
335 .ret_type = RET_INTEGER,
336 .arg1_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800337 .arg2_type = ARG_PTR_TO_MEM,
338 .arg3_type = ARG_CONST_SIZE,
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700339};
340
341static const struct bpf_func_proto *bpf_get_probe_write_proto(void)
342{
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700343 if (!capable(CAP_SYS_ADMIN))
344 return NULL;
345
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700346 pr_warn_ratelimited("%s[%d] is installing a program with bpf_probe_write_user helper that may corrupt user memory!",
347 current->comm, task_pid_nr(current));
348
349 return &bpf_probe_write_user_proto;
350}
351
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700352static void bpf_trace_copy_string(char *buf, void *unsafe_ptr, char fmt_ptype,
353 size_t bufsz)
354{
355 void __user *user_ptr = (__force void __user *)unsafe_ptr;
356
357 buf[0] = 0;
358
359 switch (fmt_ptype) {
360 case 's':
361#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
Christoph Hellwigaec6ce52020-06-08 21:34:33 -0700362 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
363 strncpy_from_user_nofault(buf, user_ptr, bufsz);
364 break;
365 }
366 fallthrough;
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700367#endif
368 case 'k':
369 strncpy_from_kernel_nofault(buf, unsafe_ptr, bufsz);
370 break;
371 case 'u':
372 strncpy_from_user_nofault(buf, user_ptr, bufsz);
373 break;
374 }
375}
376
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700377/*
John Fastabend7bda4b42017-07-02 02:13:29 +0200378 * Only limited trace_printk() conversion specifiers allowed:
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200379 * %d %i %u %x %ld %li %lu %lx %lld %lli %llu %llx %p %pks %pus %s
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700380 */
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200381BPF_CALL_5(bpf_trace_printk, char *, fmt, u32, fmt_size, u64, arg1,
382 u64, arg2, u64, arg3)
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700383{
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200384 int i, mod[3] = {}, fmt_cnt = 0;
385 char buf[64], fmt_ptype;
386 void *unsafe_ptr = NULL;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700387 bool str_seen = false;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700388
389 /*
390 * bpf_check()->check_func_arg()->check_stack_boundary()
391 * guarantees that fmt points to bpf program stack,
392 * fmt_size bytes of it were initialized and fmt_size > 0
393 */
394 if (fmt[--fmt_size] != 0)
395 return -EINVAL;
396
397 /* check format string for allowed specifiers */
398 for (i = 0; i < fmt_size; i++) {
399 if ((!isprint(fmt[i]) && !isspace(fmt[i])) || !isascii(fmt[i]))
400 return -EINVAL;
401
402 if (fmt[i] != '%')
403 continue;
404
405 if (fmt_cnt >= 3)
406 return -EINVAL;
407
408 /* fmt[i] != 0 && fmt[last] == 0, so we can access fmt[i + 1] */
409 i++;
410 if (fmt[i] == 'l') {
411 mod[fmt_cnt]++;
412 i++;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200413 } else if (fmt[i] == 'p') {
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700414 mod[fmt_cnt]++;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200415 if ((fmt[i + 1] == 'k' ||
416 fmt[i + 1] == 'u') &&
417 fmt[i + 2] == 's') {
418 fmt_ptype = fmt[i + 1];
419 i += 2;
420 goto fmt_str;
421 }
422
Martynas Pumputis1efb6ee2018-11-23 17:43:26 +0100423 /* disallow any further format extensions */
424 if (fmt[i + 1] != 0 &&
425 !isspace(fmt[i + 1]) &&
426 !ispunct(fmt[i + 1]))
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700427 return -EINVAL;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700428
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200429 goto fmt_next;
430 } else if (fmt[i] == 's') {
431 mod[fmt_cnt]++;
432 fmt_ptype = fmt[i];
433fmt_str:
434 if (str_seen)
435 /* allow only one '%s' per fmt string */
436 return -EINVAL;
437 str_seen = true;
438
439 if (fmt[i + 1] != 0 &&
440 !isspace(fmt[i + 1]) &&
441 !ispunct(fmt[i + 1]))
442 return -EINVAL;
443
444 switch (fmt_cnt) {
445 case 0:
446 unsafe_ptr = (void *)(long)arg1;
447 arg1 = (long)buf;
448 break;
449 case 1:
450 unsafe_ptr = (void *)(long)arg2;
451 arg2 = (long)buf;
452 break;
453 case 2:
454 unsafe_ptr = (void *)(long)arg3;
455 arg3 = (long)buf;
456 break;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700457 }
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200458
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700459 bpf_trace_copy_string(buf, unsafe_ptr, fmt_ptype,
460 sizeof(buf));
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200461 goto fmt_next;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700462 }
463
464 if (fmt[i] == 'l') {
465 mod[fmt_cnt]++;
466 i++;
467 }
468
John Fastabend7bda4b42017-07-02 02:13:29 +0200469 if (fmt[i] != 'i' && fmt[i] != 'd' &&
470 fmt[i] != 'u' && fmt[i] != 'x')
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700471 return -EINVAL;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200472fmt_next:
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700473 fmt_cnt++;
474 }
475
Daniel Borkmann88a5c692017-08-16 01:45:33 +0200476/* Horrid workaround for getting va_list handling working with different
477 * argument type combinations generically for 32 and 64 bit archs.
478 */
479#define __BPF_TP_EMIT() __BPF_ARG3_TP()
480#define __BPF_TP(...) \
Yonghong Songeefa864a2018-01-17 09:19:32 -0800481 __trace_printk(0 /* Fake ip */, \
Daniel Borkmann88a5c692017-08-16 01:45:33 +0200482 fmt, ##__VA_ARGS__)
483
484#define __BPF_ARG1_TP(...) \
485 ((mod[0] == 2 || (mod[0] == 1 && __BITS_PER_LONG == 64)) \
486 ? __BPF_TP(arg1, ##__VA_ARGS__) \
487 : ((mod[0] == 1 || (mod[0] == 0 && __BITS_PER_LONG == 32)) \
488 ? __BPF_TP((long)arg1, ##__VA_ARGS__) \
489 : __BPF_TP((u32)arg1, ##__VA_ARGS__)))
490
491#define __BPF_ARG2_TP(...) \
492 ((mod[1] == 2 || (mod[1] == 1 && __BITS_PER_LONG == 64)) \
493 ? __BPF_ARG1_TP(arg2, ##__VA_ARGS__) \
494 : ((mod[1] == 1 || (mod[1] == 0 && __BITS_PER_LONG == 32)) \
495 ? __BPF_ARG1_TP((long)arg2, ##__VA_ARGS__) \
496 : __BPF_ARG1_TP((u32)arg2, ##__VA_ARGS__)))
497
498#define __BPF_ARG3_TP(...) \
499 ((mod[2] == 2 || (mod[2] == 1 && __BITS_PER_LONG == 64)) \
500 ? __BPF_ARG2_TP(arg3, ##__VA_ARGS__) \
501 : ((mod[2] == 1 || (mod[2] == 0 && __BITS_PER_LONG == 32)) \
502 ? __BPF_ARG2_TP((long)arg3, ##__VA_ARGS__) \
503 : __BPF_ARG2_TP((u32)arg3, ##__VA_ARGS__)))
504
505 return __BPF_TP_EMIT();
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700506}
507
508static const struct bpf_func_proto bpf_trace_printk_proto = {
509 .func = bpf_trace_printk,
510 .gpl_only = true,
511 .ret_type = RET_INTEGER,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800512 .arg1_type = ARG_PTR_TO_MEM,
513 .arg2_type = ARG_CONST_SIZE,
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700514};
515
Alexei Starovoitov0756ea32015-06-12 19:39:13 -0700516const struct bpf_func_proto *bpf_get_trace_printk_proto(void)
517{
518 /*
519 * this program might be calling bpf_trace_printk,
520 * so allocate per-cpu printk buffers
521 */
522 trace_printk_init_buffers();
523
524 return &bpf_trace_printk_proto;
525}
526
Yonghong Song492e6392020-05-09 10:59:14 -0700527#define MAX_SEQ_PRINTF_VARARGS 12
528#define MAX_SEQ_PRINTF_MAX_MEMCPY 6
529#define MAX_SEQ_PRINTF_STR_LEN 128
530
531struct bpf_seq_printf_buf {
532 char buf[MAX_SEQ_PRINTF_MAX_MEMCPY][MAX_SEQ_PRINTF_STR_LEN];
533};
534static DEFINE_PER_CPU(struct bpf_seq_printf_buf, bpf_seq_printf_buf);
535static DEFINE_PER_CPU(int, bpf_seq_printf_buf_used);
536
537BPF_CALL_5(bpf_seq_printf, struct seq_file *, m, char *, fmt, u32, fmt_size,
538 const void *, data, u32, data_len)
539{
540 int err = -EINVAL, fmt_cnt = 0, memcpy_cnt = 0;
541 int i, buf_used, copy_size, num_args;
542 u64 params[MAX_SEQ_PRINTF_VARARGS];
543 struct bpf_seq_printf_buf *bufs;
544 const u64 *args = data;
545
546 buf_used = this_cpu_inc_return(bpf_seq_printf_buf_used);
547 if (WARN_ON_ONCE(buf_used > 1)) {
548 err = -EBUSY;
549 goto out;
550 }
551
552 bufs = this_cpu_ptr(&bpf_seq_printf_buf);
553
554 /*
555 * bpf_check()->check_func_arg()->check_stack_boundary()
556 * guarantees that fmt points to bpf program stack,
557 * fmt_size bytes of it were initialized and fmt_size > 0
558 */
559 if (fmt[--fmt_size] != 0)
560 goto out;
561
562 if (data_len & 7)
563 goto out;
564
565 for (i = 0; i < fmt_size; i++) {
566 if (fmt[i] == '%') {
567 if (fmt[i + 1] == '%')
568 i++;
569 else if (!data || !data_len)
570 goto out;
571 }
572 }
573
574 num_args = data_len / 8;
575
576 /* check format string for allowed specifiers */
577 for (i = 0; i < fmt_size; i++) {
578 /* only printable ascii for now. */
579 if ((!isprint(fmt[i]) && !isspace(fmt[i])) || !isascii(fmt[i])) {
580 err = -EINVAL;
581 goto out;
582 }
583
584 if (fmt[i] != '%')
585 continue;
586
587 if (fmt[i + 1] == '%') {
588 i++;
589 continue;
590 }
591
592 if (fmt_cnt >= MAX_SEQ_PRINTF_VARARGS) {
593 err = -E2BIG;
594 goto out;
595 }
596
597 if (fmt_cnt >= num_args) {
598 err = -EINVAL;
599 goto out;
600 }
601
602 /* fmt[i] != 0 && fmt[last] == 0, so we can access fmt[i + 1] */
603 i++;
604
605 /* skip optional "[0 +-][num]" width formating field */
606 while (fmt[i] == '0' || fmt[i] == '+' || fmt[i] == '-' ||
607 fmt[i] == ' ')
608 i++;
609 if (fmt[i] >= '1' && fmt[i] <= '9') {
610 i++;
611 while (fmt[i] >= '0' && fmt[i] <= '9')
612 i++;
613 }
614
615 if (fmt[i] == 's') {
Andrew Morton19c8d8a2020-06-08 21:34:37 -0700616 void *unsafe_ptr;
617
Yonghong Song492e6392020-05-09 10:59:14 -0700618 /* try our best to copy */
619 if (memcpy_cnt >= MAX_SEQ_PRINTF_MAX_MEMCPY) {
620 err = -E2BIG;
621 goto out;
622 }
623
Andrew Morton19c8d8a2020-06-08 21:34:37 -0700624 unsafe_ptr = (void *)(long)args[fmt_cnt];
625 err = strncpy_from_kernel_nofault(bufs->buf[memcpy_cnt],
626 unsafe_ptr, MAX_SEQ_PRINTF_STR_LEN);
Yonghong Song492e6392020-05-09 10:59:14 -0700627 if (err < 0)
628 bufs->buf[memcpy_cnt][0] = '\0';
629 params[fmt_cnt] = (u64)(long)bufs->buf[memcpy_cnt];
630
631 fmt_cnt++;
632 memcpy_cnt++;
633 continue;
634 }
635
636 if (fmt[i] == 'p') {
637 if (fmt[i + 1] == 0 ||
638 fmt[i + 1] == 'K' ||
639 fmt[i + 1] == 'x') {
640 /* just kernel pointers */
641 params[fmt_cnt] = args[fmt_cnt];
642 fmt_cnt++;
643 continue;
644 }
645
646 /* only support "%pI4", "%pi4", "%pI6" and "%pi6". */
647 if (fmt[i + 1] != 'i' && fmt[i + 1] != 'I') {
648 err = -EINVAL;
649 goto out;
650 }
651 if (fmt[i + 2] != '4' && fmt[i + 2] != '6') {
652 err = -EINVAL;
653 goto out;
654 }
655
656 if (memcpy_cnt >= MAX_SEQ_PRINTF_MAX_MEMCPY) {
657 err = -E2BIG;
658 goto out;
659 }
660
661
662 copy_size = (fmt[i + 2] == '4') ? 4 : 16;
663
664 err = probe_kernel_read(bufs->buf[memcpy_cnt],
665 (void *) (long) args[fmt_cnt],
666 copy_size);
667 if (err < 0)
668 memset(bufs->buf[memcpy_cnt], 0, copy_size);
669 params[fmt_cnt] = (u64)(long)bufs->buf[memcpy_cnt];
670
671 i += 2;
672 fmt_cnt++;
673 memcpy_cnt++;
674 continue;
675 }
676
677 if (fmt[i] == 'l') {
678 i++;
679 if (fmt[i] == 'l')
680 i++;
681 }
682
683 if (fmt[i] != 'i' && fmt[i] != 'd' &&
Yonghong Songc06b0222020-06-23 16:08:07 -0700684 fmt[i] != 'u' && fmt[i] != 'x' &&
685 fmt[i] != 'X') {
Yonghong Song492e6392020-05-09 10:59:14 -0700686 err = -EINVAL;
687 goto out;
688 }
689
690 params[fmt_cnt] = args[fmt_cnt];
691 fmt_cnt++;
692 }
693
694 /* Maximumly we can have MAX_SEQ_PRINTF_VARARGS parameter, just give
695 * all of them to seq_printf().
696 */
697 seq_printf(m, fmt, params[0], params[1], params[2], params[3],
698 params[4], params[5], params[6], params[7], params[8],
699 params[9], params[10], params[11]);
700
701 err = seq_has_overflowed(m) ? -EOVERFLOW : 0;
702out:
703 this_cpu_dec(bpf_seq_printf_buf_used);
704 return err;
705}
706
707static int bpf_seq_printf_btf_ids[5];
708static const struct bpf_func_proto bpf_seq_printf_proto = {
709 .func = bpf_seq_printf,
710 .gpl_only = true,
711 .ret_type = RET_INTEGER,
712 .arg1_type = ARG_PTR_TO_BTF_ID,
713 .arg2_type = ARG_PTR_TO_MEM,
714 .arg3_type = ARG_CONST_SIZE,
715 .arg4_type = ARG_PTR_TO_MEM_OR_NULL,
716 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
717 .btf_id = bpf_seq_printf_btf_ids,
718};
719
720BPF_CALL_3(bpf_seq_write, struct seq_file *, m, const void *, data, u32, len)
721{
722 return seq_write(m, data, len) ? -EOVERFLOW : 0;
723}
724
725static int bpf_seq_write_btf_ids[5];
726static const struct bpf_func_proto bpf_seq_write_proto = {
727 .func = bpf_seq_write,
728 .gpl_only = true,
729 .ret_type = RET_INTEGER,
730 .arg1_type = ARG_PTR_TO_BTF_ID,
731 .arg2_type = ARG_PTR_TO_MEM,
732 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
733 .btf_id = bpf_seq_write_btf_ids,
734};
735
Yonghong Song908432c2017-10-05 09:19:20 -0700736static __always_inline int
737get_map_perf_counter(struct bpf_map *map, u64 flags,
738 u64 *value, u64 *enabled, u64 *running)
Kaixu Xia35578d72015-08-06 07:02:35 +0000739{
Kaixu Xia35578d72015-08-06 07:02:35 +0000740 struct bpf_array *array = container_of(map, struct bpf_array, map);
Daniel Borkmann6816a7f2016-06-28 12:18:25 +0200741 unsigned int cpu = smp_processor_id();
742 u64 index = flags & BPF_F_INDEX_MASK;
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200743 struct bpf_event_entry *ee;
Kaixu Xia35578d72015-08-06 07:02:35 +0000744
Daniel Borkmann6816a7f2016-06-28 12:18:25 +0200745 if (unlikely(flags & ~(BPF_F_INDEX_MASK)))
746 return -EINVAL;
747 if (index == BPF_F_CURRENT_CPU)
748 index = cpu;
Kaixu Xia35578d72015-08-06 07:02:35 +0000749 if (unlikely(index >= array->map.max_entries))
750 return -E2BIG;
751
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200752 ee = READ_ONCE(array->ptrs[index]);
Daniel Borkmann1ca1cc92016-06-28 12:18:23 +0200753 if (!ee)
Kaixu Xia35578d72015-08-06 07:02:35 +0000754 return -ENOENT;
755
Yonghong Song908432c2017-10-05 09:19:20 -0700756 return perf_event_read_local(ee->event, value, enabled, running);
757}
758
759BPF_CALL_2(bpf_perf_event_read, struct bpf_map *, map, u64, flags)
760{
761 u64 value = 0;
762 int err;
763
764 err = get_map_perf_counter(map, flags, &value, NULL, NULL);
Kaixu Xia35578d72015-08-06 07:02:35 +0000765 /*
Alexei Starovoitovf91840a2017-06-02 21:03:52 -0700766 * this api is ugly since we miss [-22..-2] range of valid
767 * counter values, but that's uapi
Kaixu Xia35578d72015-08-06 07:02:35 +0000768 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -0700769 if (err)
770 return err;
771 return value;
Kaixu Xia35578d72015-08-06 07:02:35 +0000772}
773
Alexei Starovoitov62544ce2015-10-22 17:10:14 -0700774static const struct bpf_func_proto bpf_perf_event_read_proto = {
Kaixu Xia35578d72015-08-06 07:02:35 +0000775 .func = bpf_perf_event_read,
Alexei Starovoitov1075ef52015-10-23 14:58:19 -0700776 .gpl_only = true,
Kaixu Xia35578d72015-08-06 07:02:35 +0000777 .ret_type = RET_INTEGER,
778 .arg1_type = ARG_CONST_MAP_PTR,
779 .arg2_type = ARG_ANYTHING,
780};
781
Yonghong Song908432c2017-10-05 09:19:20 -0700782BPF_CALL_4(bpf_perf_event_read_value, struct bpf_map *, map, u64, flags,
783 struct bpf_perf_event_value *, buf, u32, size)
784{
785 int err = -EINVAL;
786
787 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
788 goto clear;
789 err = get_map_perf_counter(map, flags, &buf->counter, &buf->enabled,
790 &buf->running);
791 if (unlikely(err))
792 goto clear;
793 return 0;
794clear:
795 memset(buf, 0, size);
796 return err;
797}
798
799static const struct bpf_func_proto bpf_perf_event_read_value_proto = {
800 .func = bpf_perf_event_read_value,
801 .gpl_only = true,
802 .ret_type = RET_INTEGER,
803 .arg1_type = ARG_CONST_MAP_PTR,
804 .arg2_type = ARG_ANYTHING,
805 .arg3_type = ARG_PTR_TO_UNINIT_MEM,
806 .arg4_type = ARG_CONST_SIZE,
807};
808
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200809static __always_inline u64
810__bpf_perf_event_output(struct pt_regs *regs, struct bpf_map *map,
Daniel Borkmann283ca522017-12-12 02:25:30 +0100811 u64 flags, struct perf_sample_data *sd)
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700812{
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700813 struct bpf_array *array = container_of(map, struct bpf_array, map);
Daniel Borkmannd7931332016-06-28 12:18:24 +0200814 unsigned int cpu = smp_processor_id();
Daniel Borkmann1e337592016-04-18 21:01:23 +0200815 u64 index = flags & BPF_F_INDEX_MASK;
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200816 struct bpf_event_entry *ee;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700817 struct perf_event *event;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700818
Daniel Borkmann1e337592016-04-18 21:01:23 +0200819 if (index == BPF_F_CURRENT_CPU)
Daniel Borkmannd7931332016-06-28 12:18:24 +0200820 index = cpu;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700821 if (unlikely(index >= array->map.max_entries))
822 return -E2BIG;
823
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200824 ee = READ_ONCE(array->ptrs[index]);
Daniel Borkmann1ca1cc92016-06-28 12:18:23 +0200825 if (!ee)
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700826 return -ENOENT;
827
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200828 event = ee->event;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700829 if (unlikely(event->attr.type != PERF_TYPE_SOFTWARE ||
830 event->attr.config != PERF_COUNT_SW_BPF_OUTPUT))
831 return -EINVAL;
832
Daniel Borkmannd7931332016-06-28 12:18:24 +0200833 if (unlikely(event->oncpu != cpu))
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700834 return -EOPNOTSUPP;
835
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -0300836 return perf_event_output(event, sd, regs);
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700837}
838
Matt Mullins9594dc32019-06-11 14:53:04 -0700839/*
840 * Support executing tracepoints in normal, irq, and nmi context that each call
841 * bpf_perf_event_output
842 */
843struct bpf_trace_sample_data {
844 struct perf_sample_data sds[3];
845};
846
847static DEFINE_PER_CPU(struct bpf_trace_sample_data, bpf_trace_sds);
848static DEFINE_PER_CPU(int, bpf_trace_nest_level);
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200849BPF_CALL_5(bpf_perf_event_output, struct pt_regs *, regs, struct bpf_map *, map,
850 u64, flags, void *, data, u64, size)
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200851{
Matt Mullins9594dc32019-06-11 14:53:04 -0700852 struct bpf_trace_sample_data *sds = this_cpu_ptr(&bpf_trace_sds);
853 int nest_level = this_cpu_inc_return(bpf_trace_nest_level);
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200854 struct perf_raw_record raw = {
855 .frag = {
856 .size = size,
857 .data = data,
858 },
859 };
Matt Mullins9594dc32019-06-11 14:53:04 -0700860 struct perf_sample_data *sd;
861 int err;
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200862
Matt Mullins9594dc32019-06-11 14:53:04 -0700863 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(sds->sds))) {
864 err = -EBUSY;
865 goto out;
866 }
867
868 sd = &sds->sds[nest_level - 1];
869
870 if (unlikely(flags & ~(BPF_F_INDEX_MASK))) {
871 err = -EINVAL;
872 goto out;
873 }
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200874
Daniel Borkmann283ca522017-12-12 02:25:30 +0100875 perf_sample_data_init(sd, 0, 0);
876 sd->raw = &raw;
877
Matt Mullins9594dc32019-06-11 14:53:04 -0700878 err = __bpf_perf_event_output(regs, map, flags, sd);
879
880out:
881 this_cpu_dec(bpf_trace_nest_level);
882 return err;
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200883}
884
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700885static const struct bpf_func_proto bpf_perf_event_output_proto = {
886 .func = bpf_perf_event_output,
Alexei Starovoitov1075ef52015-10-23 14:58:19 -0700887 .gpl_only = true,
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700888 .ret_type = RET_INTEGER,
889 .arg1_type = ARG_PTR_TO_CTX,
890 .arg2_type = ARG_CONST_MAP_PTR,
891 .arg3_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800892 .arg4_type = ARG_PTR_TO_MEM,
Gianluca Borelloa60dd352017-11-22 18:32:56 +0000893 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700894};
895
Allan Zhang768fb612019-09-25 16:43:12 -0700896static DEFINE_PER_CPU(int, bpf_event_output_nest_level);
897struct bpf_nested_pt_regs {
898 struct pt_regs regs[3];
899};
900static DEFINE_PER_CPU(struct bpf_nested_pt_regs, bpf_pt_regs);
901static DEFINE_PER_CPU(struct bpf_trace_sample_data, bpf_misc_sds);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200902
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200903u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
904 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy)
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200905{
Allan Zhang768fb612019-09-25 16:43:12 -0700906 int nest_level = this_cpu_inc_return(bpf_event_output_nest_level);
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200907 struct perf_raw_frag frag = {
908 .copy = ctx_copy,
909 .size = ctx_size,
910 .data = ctx,
911 };
912 struct perf_raw_record raw = {
913 .frag = {
Andrew Morton183fc152016-07-18 15:50:58 -0700914 {
915 .next = ctx_size ? &frag : NULL,
916 },
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200917 .size = meta_size,
918 .data = meta,
919 },
920 };
Allan Zhang768fb612019-09-25 16:43:12 -0700921 struct perf_sample_data *sd;
922 struct pt_regs *regs;
923 u64 ret;
924
925 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(bpf_misc_sds.sds))) {
926 ret = -EBUSY;
927 goto out;
928 }
929 sd = this_cpu_ptr(&bpf_misc_sds.sds[nest_level - 1]);
930 regs = this_cpu_ptr(&bpf_pt_regs.regs[nest_level - 1]);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200931
932 perf_fetch_caller_regs(regs);
Daniel Borkmann283ca522017-12-12 02:25:30 +0100933 perf_sample_data_init(sd, 0, 0);
934 sd->raw = &raw;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200935
Allan Zhang768fb612019-09-25 16:43:12 -0700936 ret = __bpf_perf_event_output(regs, map, flags, sd);
937out:
938 this_cpu_dec(bpf_event_output_nest_level);
939 return ret;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200940}
941
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200942BPF_CALL_0(bpf_get_current_task)
Alexei Starovoitov606274c2016-07-06 22:38:36 -0700943{
944 return (long) current;
945}
946
John Fastabendf4703782020-05-24 09:50:55 -0700947const struct bpf_func_proto bpf_get_current_task_proto = {
Alexei Starovoitov606274c2016-07-06 22:38:36 -0700948 .func = bpf_get_current_task,
949 .gpl_only = true,
950 .ret_type = RET_INTEGER,
951};
952
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200953BPF_CALL_2(bpf_current_task_under_cgroup, struct bpf_map *, map, u32, idx)
Sargun Dhillon60d20f92016-08-12 08:56:52 -0700954{
Sargun Dhillon60d20f92016-08-12 08:56:52 -0700955 struct bpf_array *array = container_of(map, struct bpf_array, map);
956 struct cgroup *cgrp;
Sargun Dhillon60d20f92016-08-12 08:56:52 -0700957
Sargun Dhillon60d20f92016-08-12 08:56:52 -0700958 if (unlikely(idx >= array->map.max_entries))
959 return -E2BIG;
960
961 cgrp = READ_ONCE(array->ptrs[idx]);
962 if (unlikely(!cgrp))
963 return -EAGAIN;
964
965 return task_under_cgroup_hierarchy(current, cgrp);
966}
967
968static const struct bpf_func_proto bpf_current_task_under_cgroup_proto = {
969 .func = bpf_current_task_under_cgroup,
970 .gpl_only = false,
971 .ret_type = RET_INTEGER,
972 .arg1_type = ARG_CONST_MAP_PTR,
973 .arg2_type = ARG_ANYTHING,
974};
975
Yonghong Song8b401f92019-05-23 14:47:45 -0700976struct send_signal_irq_work {
977 struct irq_work irq_work;
978 struct task_struct *task;
979 u32 sig;
Yonghong Song84829412020-01-14 19:50:02 -0800980 enum pid_type type;
Yonghong Song8b401f92019-05-23 14:47:45 -0700981};
982
983static DEFINE_PER_CPU(struct send_signal_irq_work, send_signal_work);
984
985static void do_bpf_send_signal(struct irq_work *entry)
986{
987 struct send_signal_irq_work *work;
988
989 work = container_of(entry, struct send_signal_irq_work, irq_work);
Yonghong Song84829412020-01-14 19:50:02 -0800990 group_send_sig_info(work->sig, SEND_SIG_PRIV, work->task, work->type);
Yonghong Song8b401f92019-05-23 14:47:45 -0700991}
992
Yonghong Song84829412020-01-14 19:50:02 -0800993static int bpf_send_signal_common(u32 sig, enum pid_type type)
Yonghong Song8b401f92019-05-23 14:47:45 -0700994{
995 struct send_signal_irq_work *work = NULL;
996
997 /* Similar to bpf_probe_write_user, task needs to be
998 * in a sound condition and kernel memory access be
999 * permitted in order to send signal to the current
1000 * task.
1001 */
1002 if (unlikely(current->flags & (PF_KTHREAD | PF_EXITING)))
1003 return -EPERM;
1004 if (unlikely(uaccess_kernel()))
1005 return -EPERM;
1006 if (unlikely(!nmi_uaccess_okay()))
1007 return -EPERM;
1008
Yonghong Song1bc78962020-03-04 11:11:04 -08001009 if (irqs_disabled()) {
Yonghong Songe1afb7022019-05-25 11:57:53 -07001010 /* Do an early check on signal validity. Otherwise,
1011 * the error is lost in deferred irq_work.
1012 */
1013 if (unlikely(!valid_signal(sig)))
1014 return -EINVAL;
1015
Yonghong Song8b401f92019-05-23 14:47:45 -07001016 work = this_cpu_ptr(&send_signal_work);
Frederic Weisbecker153bedb2019-11-08 17:08:55 +01001017 if (atomic_read(&work->irq_work.flags) & IRQ_WORK_BUSY)
Yonghong Song8b401f92019-05-23 14:47:45 -07001018 return -EBUSY;
1019
1020 /* Add the current task, which is the target of sending signal,
1021 * to the irq_work. The current task may change when queued
1022 * irq works get executed.
1023 */
1024 work->task = current;
1025 work->sig = sig;
Yonghong Song84829412020-01-14 19:50:02 -08001026 work->type = type;
Yonghong Song8b401f92019-05-23 14:47:45 -07001027 irq_work_queue(&work->irq_work);
1028 return 0;
1029 }
1030
Yonghong Song84829412020-01-14 19:50:02 -08001031 return group_send_sig_info(sig, SEND_SIG_PRIV, current, type);
1032}
1033
1034BPF_CALL_1(bpf_send_signal, u32, sig)
1035{
1036 return bpf_send_signal_common(sig, PIDTYPE_TGID);
Yonghong Song8b401f92019-05-23 14:47:45 -07001037}
1038
1039static const struct bpf_func_proto bpf_send_signal_proto = {
1040 .func = bpf_send_signal,
1041 .gpl_only = false,
1042 .ret_type = RET_INTEGER,
1043 .arg1_type = ARG_ANYTHING,
1044};
1045
Yonghong Song84829412020-01-14 19:50:02 -08001046BPF_CALL_1(bpf_send_signal_thread, u32, sig)
1047{
1048 return bpf_send_signal_common(sig, PIDTYPE_PID);
1049}
1050
1051static const struct bpf_func_proto bpf_send_signal_thread_proto = {
1052 .func = bpf_send_signal_thread,
1053 .gpl_only = false,
1054 .ret_type = RET_INTEGER,
1055 .arg1_type = ARG_ANYTHING,
1056};
1057
KP Singhfc611f42020-03-29 01:43:49 +01001058const struct bpf_func_proto *
1059bpf_tracing_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov25415172015-03-25 12:49:20 -07001060{
1061 switch (func_id) {
1062 case BPF_FUNC_map_lookup_elem:
1063 return &bpf_map_lookup_elem_proto;
1064 case BPF_FUNC_map_update_elem:
1065 return &bpf_map_update_elem_proto;
1066 case BPF_FUNC_map_delete_elem:
1067 return &bpf_map_delete_elem_proto;
Alban Crequy02a8c812019-04-14 18:58:46 +02001068 case BPF_FUNC_map_push_elem:
1069 return &bpf_map_push_elem_proto;
1070 case BPF_FUNC_map_pop_elem:
1071 return &bpf_map_pop_elem_proto;
1072 case BPF_FUNC_map_peek_elem:
1073 return &bpf_map_peek_elem_proto;
Alexei Starovoitovd9847d32015-03-25 12:49:21 -07001074 case BPF_FUNC_ktime_get_ns:
1075 return &bpf_ktime_get_ns_proto;
Maciej Żenczykowski71d19212020-04-26 09:15:25 -07001076 case BPF_FUNC_ktime_get_boot_ns:
1077 return &bpf_ktime_get_boot_ns_proto;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001078 case BPF_FUNC_tail_call:
1079 return &bpf_tail_call_proto;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07001080 case BPF_FUNC_get_current_pid_tgid:
1081 return &bpf_get_current_pid_tgid_proto;
Alexei Starovoitov606274c2016-07-06 22:38:36 -07001082 case BPF_FUNC_get_current_task:
1083 return &bpf_get_current_task_proto;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07001084 case BPF_FUNC_get_current_uid_gid:
1085 return &bpf_get_current_uid_gid_proto;
1086 case BPF_FUNC_get_current_comm:
1087 return &bpf_get_current_comm_proto;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -07001088 case BPF_FUNC_trace_printk:
Alexei Starovoitov0756ea32015-06-12 19:39:13 -07001089 return bpf_get_trace_printk_proto();
Alexei Starovoitovab1973d2015-06-12 19:39:14 -07001090 case BPF_FUNC_get_smp_processor_id:
1091 return &bpf_get_smp_processor_id_proto;
Daniel Borkmann2d0e30c2016-10-21 12:46:33 +02001092 case BPF_FUNC_get_numa_node_id:
1093 return &bpf_get_numa_node_id_proto;
Kaixu Xia35578d72015-08-06 07:02:35 +00001094 case BPF_FUNC_perf_event_read:
1095 return &bpf_perf_event_read_proto;
Sargun Dhillon96ae5222016-07-25 05:54:46 -07001096 case BPF_FUNC_probe_write_user:
1097 return bpf_get_probe_write_proto();
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001098 case BPF_FUNC_current_task_under_cgroup:
1099 return &bpf_current_task_under_cgroup_proto;
Alexei Starovoitov8937bd82016-08-11 18:17:18 -07001100 case BPF_FUNC_get_prandom_u32:
1101 return &bpf_get_prandom_u32_proto;
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001102 case BPF_FUNC_probe_read_user:
1103 return &bpf_probe_read_user_proto;
1104 case BPF_FUNC_probe_read_kernel:
1105 return &bpf_probe_read_kernel_proto;
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001106 case BPF_FUNC_probe_read_user_str:
1107 return &bpf_probe_read_user_str_proto;
1108 case BPF_FUNC_probe_read_kernel_str:
1109 return &bpf_probe_read_kernel_str_proto;
Daniel Borkmann0ebeea82020-05-15 12:11:16 +02001110#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1111 case BPF_FUNC_probe_read:
1112 return &bpf_probe_read_compat_proto;
Gianluca Borelloa5e8c072017-01-18 17:55:49 +00001113 case BPF_FUNC_probe_read_str:
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001114 return &bpf_probe_read_compat_str_proto;
Daniel Borkmann0ebeea82020-05-15 12:11:16 +02001115#endif
Yonghong Song34ea38c2018-06-04 08:53:41 -07001116#ifdef CONFIG_CGROUPS
Yonghong Songbf6fa2c82018-06-03 15:59:41 -07001117 case BPF_FUNC_get_current_cgroup_id:
1118 return &bpf_get_current_cgroup_id_proto;
Yonghong Song34ea38c2018-06-04 08:53:41 -07001119#endif
Yonghong Song8b401f92019-05-23 14:47:45 -07001120 case BPF_FUNC_send_signal:
1121 return &bpf_send_signal_proto;
Yonghong Song84829412020-01-14 19:50:02 -08001122 case BPF_FUNC_send_signal_thread:
1123 return &bpf_send_signal_thread_proto;
Song Liub80b0332020-02-14 15:41:46 -08001124 case BPF_FUNC_perf_event_read_value:
1125 return &bpf_perf_event_read_value_proto;
Carlos Neirab4490c52020-03-04 17:41:56 -03001126 case BPF_FUNC_get_ns_current_pid_tgid:
1127 return &bpf_get_ns_current_pid_tgid_proto;
Andrii Nakryiko457f4432020-05-29 00:54:20 -07001128 case BPF_FUNC_ringbuf_output:
1129 return &bpf_ringbuf_output_proto;
1130 case BPF_FUNC_ringbuf_reserve:
1131 return &bpf_ringbuf_reserve_proto;
1132 case BPF_FUNC_ringbuf_submit:
1133 return &bpf_ringbuf_submit_proto;
1134 case BPF_FUNC_ringbuf_discard:
1135 return &bpf_ringbuf_discard_proto;
1136 case BPF_FUNC_ringbuf_query:
1137 return &bpf_ringbuf_query_proto;
Yonghong Song72e2b2b2020-06-23 16:08:08 -07001138 case BPF_FUNC_jiffies64:
1139 return &bpf_jiffies64_proto;
Song Liufa28dcb2020-06-29 23:28:44 -07001140 case BPF_FUNC_get_task_stack:
1141 return &bpf_get_task_stack_proto;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001142 default:
1143 return NULL;
1144 }
1145}
1146
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001147static const struct bpf_func_proto *
1148kprobe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001149{
1150 switch (func_id) {
Alexei Starovoitova43eec32015-10-20 20:02:34 -07001151 case BPF_FUNC_perf_event_output:
1152 return &bpf_perf_event_output_proto;
Alexei Starovoitovd5a3b1f2016-02-17 19:58:58 -08001153 case BPF_FUNC_get_stackid:
1154 return &bpf_get_stackid_proto;
Yonghong Songc195651e2018-04-28 22:28:08 -07001155 case BPF_FUNC_get_stack:
1156 return &bpf_get_stack_proto;
Josef Bacik9802d862017-12-11 11:36:48 -05001157#ifdef CONFIG_BPF_KPROBE_OVERRIDE
1158 case BPF_FUNC_override_return:
1159 return &bpf_override_return_proto;
1160#endif
Alexei Starovoitov25415172015-03-25 12:49:20 -07001161 default:
KP Singhfc611f42020-03-29 01:43:49 +01001162 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07001163 }
1164}
1165
1166/* bpf+kprobe programs can access fields of 'struct pt_regs' */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07001167static bool kprobe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001168 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001169 struct bpf_insn_access_aux *info)
Alexei Starovoitov25415172015-03-25 12:49:20 -07001170{
Alexei Starovoitov25415172015-03-25 12:49:20 -07001171 if (off < 0 || off >= sizeof(struct pt_regs))
1172 return false;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001173 if (type != BPF_READ)
1174 return false;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001175 if (off % size != 0)
1176 return false;
Daniel Borkmann2d071c62017-01-15 01:34:25 +01001177 /*
1178 * Assertion for 32 bit to make sure last 8 byte access
1179 * (BPF_DW) to the last 4 byte member is disallowed.
1180 */
1181 if (off + size > sizeof(struct pt_regs))
1182 return false;
1183
Alexei Starovoitov25415172015-03-25 12:49:20 -07001184 return true;
1185}
1186
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001187const struct bpf_verifier_ops kprobe_verifier_ops = {
Alexei Starovoitov25415172015-03-25 12:49:20 -07001188 .get_func_proto = kprobe_prog_func_proto,
1189 .is_valid_access = kprobe_prog_is_valid_access,
1190};
1191
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001192const struct bpf_prog_ops kprobe_prog_ops = {
1193};
1194
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001195BPF_CALL_5(bpf_perf_event_output_tp, void *, tp_buff, struct bpf_map *, map,
1196 u64, flags, void *, data, u64, size)
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001197{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001198 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
1199
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001200 /*
1201 * r1 points to perf tracepoint buffer where first 8 bytes are hidden
1202 * from bpf program and contain a pointer to 'struct pt_regs'. Fetch it
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001203 * from there and call the same bpf_perf_event_output() helper inline.
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001204 */
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001205 return ____bpf_perf_event_output(regs, map, flags, data, size);
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001206}
1207
1208static const struct bpf_func_proto bpf_perf_event_output_proto_tp = {
1209 .func = bpf_perf_event_output_tp,
1210 .gpl_only = true,
1211 .ret_type = RET_INTEGER,
1212 .arg1_type = ARG_PTR_TO_CTX,
1213 .arg2_type = ARG_CONST_MAP_PTR,
1214 .arg3_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -08001215 .arg4_type = ARG_PTR_TO_MEM,
Gianluca Borelloa60dd352017-11-22 18:32:56 +00001216 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001217};
1218
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001219BPF_CALL_3(bpf_get_stackid_tp, void *, tp_buff, struct bpf_map *, map,
1220 u64, flags)
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001221{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001222 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001223
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001224 /*
1225 * Same comment as in bpf_perf_event_output_tp(), only that this time
1226 * the other helper's function body cannot be inlined due to being
1227 * external, thus we need to call raw helper function.
1228 */
1229 return bpf_get_stackid((unsigned long) regs, (unsigned long) map,
1230 flags, 0, 0);
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001231}
1232
1233static const struct bpf_func_proto bpf_get_stackid_proto_tp = {
1234 .func = bpf_get_stackid_tp,
1235 .gpl_only = true,
1236 .ret_type = RET_INTEGER,
1237 .arg1_type = ARG_PTR_TO_CTX,
1238 .arg2_type = ARG_CONST_MAP_PTR,
1239 .arg3_type = ARG_ANYTHING,
1240};
1241
Yonghong Songc195651e2018-04-28 22:28:08 -07001242BPF_CALL_4(bpf_get_stack_tp, void *, tp_buff, void *, buf, u32, size,
1243 u64, flags)
1244{
1245 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
1246
1247 return bpf_get_stack((unsigned long) regs, (unsigned long) buf,
1248 (unsigned long) size, flags, 0);
1249}
1250
1251static const struct bpf_func_proto bpf_get_stack_proto_tp = {
1252 .func = bpf_get_stack_tp,
1253 .gpl_only = true,
1254 .ret_type = RET_INTEGER,
1255 .arg1_type = ARG_PTR_TO_CTX,
1256 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
1257 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1258 .arg4_type = ARG_ANYTHING,
1259};
1260
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001261static const struct bpf_func_proto *
1262tp_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001263{
1264 switch (func_id) {
1265 case BPF_FUNC_perf_event_output:
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001266 return &bpf_perf_event_output_proto_tp;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001267 case BPF_FUNC_get_stackid:
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001268 return &bpf_get_stackid_proto_tp;
Yonghong Songc195651e2018-04-28 22:28:08 -07001269 case BPF_FUNC_get_stack:
1270 return &bpf_get_stack_proto_tp;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001271 default:
KP Singhfc611f42020-03-29 01:43:49 +01001272 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001273 }
1274}
1275
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07001276static bool tp_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001277 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001278 struct bpf_insn_access_aux *info)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001279{
1280 if (off < sizeof(void *) || off >= PERF_MAX_TRACE_SIZE)
1281 return false;
1282 if (type != BPF_READ)
1283 return false;
1284 if (off % size != 0)
1285 return false;
Daniel Borkmann2d071c62017-01-15 01:34:25 +01001286
1287 BUILD_BUG_ON(PERF_MAX_TRACE_SIZE % sizeof(__u64));
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001288 return true;
1289}
1290
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001291const struct bpf_verifier_ops tracepoint_verifier_ops = {
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001292 .get_func_proto = tp_prog_func_proto,
1293 .is_valid_access = tp_prog_is_valid_access,
1294};
1295
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001296const struct bpf_prog_ops tracepoint_prog_ops = {
1297};
1298
Yonghong Songf005afe2018-03-20 11:19:17 -07001299BPF_CALL_3(bpf_perf_prog_read_value, struct bpf_perf_event_data_kern *, ctx,
1300 struct bpf_perf_event_value *, buf, u32, size)
1301{
1302 int err = -EINVAL;
1303
1304 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
1305 goto clear;
1306 err = perf_event_read_local(ctx->event, &buf->counter, &buf->enabled,
1307 &buf->running);
1308 if (unlikely(err))
1309 goto clear;
1310 return 0;
1311clear:
1312 memset(buf, 0, size);
1313 return err;
1314}
1315
1316static const struct bpf_func_proto bpf_perf_prog_read_value_proto = {
1317 .func = bpf_perf_prog_read_value,
1318 .gpl_only = true,
1319 .ret_type = RET_INTEGER,
1320 .arg1_type = ARG_PTR_TO_CTX,
1321 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
1322 .arg3_type = ARG_CONST_SIZE,
1323};
1324
Daniel Xufff7b642020-02-17 19:04:31 -08001325BPF_CALL_4(bpf_read_branch_records, struct bpf_perf_event_data_kern *, ctx,
1326 void *, buf, u32, size, u64, flags)
1327{
1328#ifndef CONFIG_X86
1329 return -ENOENT;
1330#else
1331 static const u32 br_entry_size = sizeof(struct perf_branch_entry);
1332 struct perf_branch_stack *br_stack = ctx->data->br_stack;
1333 u32 to_copy;
1334
1335 if (unlikely(flags & ~BPF_F_GET_BRANCH_RECORDS_SIZE))
1336 return -EINVAL;
1337
1338 if (unlikely(!br_stack))
1339 return -EINVAL;
1340
1341 if (flags & BPF_F_GET_BRANCH_RECORDS_SIZE)
1342 return br_stack->nr * br_entry_size;
1343
1344 if (!buf || (size % br_entry_size != 0))
1345 return -EINVAL;
1346
1347 to_copy = min_t(u32, br_stack->nr * br_entry_size, size);
1348 memcpy(buf, br_stack->entries, to_copy);
1349
1350 return to_copy;
1351#endif
1352}
1353
1354static const struct bpf_func_proto bpf_read_branch_records_proto = {
1355 .func = bpf_read_branch_records,
1356 .gpl_only = true,
1357 .ret_type = RET_INTEGER,
1358 .arg1_type = ARG_PTR_TO_CTX,
1359 .arg2_type = ARG_PTR_TO_MEM_OR_NULL,
1360 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1361 .arg4_type = ARG_ANYTHING,
1362};
1363
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001364static const struct bpf_func_proto *
1365pe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Yonghong Songf005afe2018-03-20 11:19:17 -07001366{
1367 switch (func_id) {
1368 case BPF_FUNC_perf_event_output:
1369 return &bpf_perf_event_output_proto_tp;
1370 case BPF_FUNC_get_stackid:
1371 return &bpf_get_stackid_proto_tp;
Yonghong Songc195651e2018-04-28 22:28:08 -07001372 case BPF_FUNC_get_stack:
1373 return &bpf_get_stack_proto_tp;
Yonghong Songf005afe2018-03-20 11:19:17 -07001374 case BPF_FUNC_perf_prog_read_value:
1375 return &bpf_perf_prog_read_value_proto;
Daniel Xufff7b642020-02-17 19:04:31 -08001376 case BPF_FUNC_read_branch_records:
1377 return &bpf_read_branch_records_proto;
Yonghong Songf005afe2018-03-20 11:19:17 -07001378 default:
KP Singhfc611f42020-03-29 01:43:49 +01001379 return bpf_tracing_func_proto(func_id, prog);
Yonghong Songf005afe2018-03-20 11:19:17 -07001380 }
1381}
1382
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001383/*
1384 * bpf_raw_tp_regs are separate from bpf_pt_regs used from skb/xdp
1385 * to avoid potential recursive reuse issue when/if tracepoints are added
Matt Mullins9594dc32019-06-11 14:53:04 -07001386 * inside bpf_*_event_output, bpf_get_stackid and/or bpf_get_stack.
1387 *
1388 * Since raw tracepoints run despite bpf_prog_active, support concurrent usage
1389 * in normal, irq, and nmi context.
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001390 */
Matt Mullins9594dc32019-06-11 14:53:04 -07001391struct bpf_raw_tp_regs {
1392 struct pt_regs regs[3];
1393};
1394static DEFINE_PER_CPU(struct bpf_raw_tp_regs, bpf_raw_tp_regs);
1395static DEFINE_PER_CPU(int, bpf_raw_tp_nest_level);
1396static struct pt_regs *get_bpf_raw_tp_regs(void)
1397{
1398 struct bpf_raw_tp_regs *tp_regs = this_cpu_ptr(&bpf_raw_tp_regs);
1399 int nest_level = this_cpu_inc_return(bpf_raw_tp_nest_level);
1400
1401 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(tp_regs->regs))) {
1402 this_cpu_dec(bpf_raw_tp_nest_level);
1403 return ERR_PTR(-EBUSY);
1404 }
1405
1406 return &tp_regs->regs[nest_level - 1];
1407}
1408
1409static void put_bpf_raw_tp_regs(void)
1410{
1411 this_cpu_dec(bpf_raw_tp_nest_level);
1412}
1413
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001414BPF_CALL_5(bpf_perf_event_output_raw_tp, struct bpf_raw_tracepoint_args *, args,
1415 struct bpf_map *, map, u64, flags, void *, data, u64, size)
1416{
Matt Mullins9594dc32019-06-11 14:53:04 -07001417 struct pt_regs *regs = get_bpf_raw_tp_regs();
1418 int ret;
1419
1420 if (IS_ERR(regs))
1421 return PTR_ERR(regs);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001422
1423 perf_fetch_caller_regs(regs);
Matt Mullins9594dc32019-06-11 14:53:04 -07001424 ret = ____bpf_perf_event_output(regs, map, flags, data, size);
1425
1426 put_bpf_raw_tp_regs();
1427 return ret;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001428}
1429
1430static const struct bpf_func_proto bpf_perf_event_output_proto_raw_tp = {
1431 .func = bpf_perf_event_output_raw_tp,
1432 .gpl_only = true,
1433 .ret_type = RET_INTEGER,
1434 .arg1_type = ARG_PTR_TO_CTX,
1435 .arg2_type = ARG_CONST_MAP_PTR,
1436 .arg3_type = ARG_ANYTHING,
1437 .arg4_type = ARG_PTR_TO_MEM,
1438 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
1439};
1440
Alexei Starovoitova7658e12019-10-15 20:25:04 -07001441extern const struct bpf_func_proto bpf_skb_output_proto;
Eelco Chaudrond831ee82020-03-06 08:59:23 +00001442extern const struct bpf_func_proto bpf_xdp_output_proto;
Alexei Starovoitova7658e12019-10-15 20:25:04 -07001443
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001444BPF_CALL_3(bpf_get_stackid_raw_tp, struct bpf_raw_tracepoint_args *, args,
1445 struct bpf_map *, map, u64, flags)
1446{
Matt Mullins9594dc32019-06-11 14:53:04 -07001447 struct pt_regs *regs = get_bpf_raw_tp_regs();
1448 int ret;
1449
1450 if (IS_ERR(regs))
1451 return PTR_ERR(regs);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001452
1453 perf_fetch_caller_regs(regs);
1454 /* similar to bpf_perf_event_output_tp, but pt_regs fetched differently */
Matt Mullins9594dc32019-06-11 14:53:04 -07001455 ret = bpf_get_stackid((unsigned long) regs, (unsigned long) map,
1456 flags, 0, 0);
1457 put_bpf_raw_tp_regs();
1458 return ret;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001459}
1460
1461static const struct bpf_func_proto bpf_get_stackid_proto_raw_tp = {
1462 .func = bpf_get_stackid_raw_tp,
1463 .gpl_only = true,
1464 .ret_type = RET_INTEGER,
1465 .arg1_type = ARG_PTR_TO_CTX,
1466 .arg2_type = ARG_CONST_MAP_PTR,
1467 .arg3_type = ARG_ANYTHING,
1468};
1469
Yonghong Songc195651e2018-04-28 22:28:08 -07001470BPF_CALL_4(bpf_get_stack_raw_tp, struct bpf_raw_tracepoint_args *, args,
1471 void *, buf, u32, size, u64, flags)
1472{
Matt Mullins9594dc32019-06-11 14:53:04 -07001473 struct pt_regs *regs = get_bpf_raw_tp_regs();
1474 int ret;
1475
1476 if (IS_ERR(regs))
1477 return PTR_ERR(regs);
Yonghong Songc195651e2018-04-28 22:28:08 -07001478
1479 perf_fetch_caller_regs(regs);
Matt Mullins9594dc32019-06-11 14:53:04 -07001480 ret = bpf_get_stack((unsigned long) regs, (unsigned long) buf,
1481 (unsigned long) size, flags, 0);
1482 put_bpf_raw_tp_regs();
1483 return ret;
Yonghong Songc195651e2018-04-28 22:28:08 -07001484}
1485
1486static const struct bpf_func_proto bpf_get_stack_proto_raw_tp = {
1487 .func = bpf_get_stack_raw_tp,
1488 .gpl_only = true,
1489 .ret_type = RET_INTEGER,
1490 .arg1_type = ARG_PTR_TO_CTX,
1491 .arg2_type = ARG_PTR_TO_MEM,
1492 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1493 .arg4_type = ARG_ANYTHING,
1494};
1495
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001496static const struct bpf_func_proto *
1497raw_tp_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001498{
1499 switch (func_id) {
1500 case BPF_FUNC_perf_event_output:
1501 return &bpf_perf_event_output_proto_raw_tp;
1502 case BPF_FUNC_get_stackid:
1503 return &bpf_get_stackid_proto_raw_tp;
Yonghong Songc195651e2018-04-28 22:28:08 -07001504 case BPF_FUNC_get_stack:
1505 return &bpf_get_stack_proto_raw_tp;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001506 default:
KP Singhfc611f42020-03-29 01:43:49 +01001507 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001508 }
1509}
1510
Jiri Olsa958a3f22020-05-31 17:42:55 +02001511const struct bpf_func_proto *
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001512tracing_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1513{
1514 switch (func_id) {
1515#ifdef CONFIG_NET
1516 case BPF_FUNC_skb_output:
1517 return &bpf_skb_output_proto;
Eelco Chaudrond831ee82020-03-06 08:59:23 +00001518 case BPF_FUNC_xdp_output:
1519 return &bpf_xdp_output_proto;
Yonghong Songaf7ec132020-06-23 16:08:09 -07001520 case BPF_FUNC_skc_to_tcp6_sock:
1521 return &bpf_skc_to_tcp6_sock_proto;
Yonghong Song478cfbd2020-06-23 16:08:11 -07001522 case BPF_FUNC_skc_to_tcp_sock:
1523 return &bpf_skc_to_tcp_sock_proto;
1524 case BPF_FUNC_skc_to_tcp_timewait_sock:
1525 return &bpf_skc_to_tcp_timewait_sock_proto;
1526 case BPF_FUNC_skc_to_tcp_request_sock:
1527 return &bpf_skc_to_tcp_request_sock_proto;
Yonghong Song0d4fad32020-06-23 16:08:15 -07001528 case BPF_FUNC_skc_to_udp6_sock:
1529 return &bpf_skc_to_udp6_sock_proto;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001530#endif
Yonghong Song492e6392020-05-09 10:59:14 -07001531 case BPF_FUNC_seq_printf:
1532 return prog->expected_attach_type == BPF_TRACE_ITER ?
1533 &bpf_seq_printf_proto :
1534 NULL;
1535 case BPF_FUNC_seq_write:
1536 return prog->expected_attach_type == BPF_TRACE_ITER ?
1537 &bpf_seq_write_proto :
1538 NULL;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001539 default:
1540 return raw_tp_prog_func_proto(func_id, prog);
1541 }
1542}
1543
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001544static bool raw_tp_prog_is_valid_access(int off, int size,
1545 enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001546 const struct bpf_prog *prog,
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001547 struct bpf_insn_access_aux *info)
1548{
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001549 if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001550 return false;
1551 if (type != BPF_READ)
1552 return false;
1553 if (off % size != 0)
1554 return false;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001555 return true;
1556}
1557
1558static bool tracing_prog_is_valid_access(int off, int size,
1559 enum bpf_access_type type,
1560 const struct bpf_prog *prog,
1561 struct bpf_insn_access_aux *info)
1562{
1563 if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS)
1564 return false;
1565 if (type != BPF_READ)
1566 return false;
1567 if (off % size != 0)
1568 return false;
Alexei Starovoitov9e15db62019-10-15 20:25:00 -07001569 return btf_ctx_access(off, size, type, prog, info);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001570}
1571
KP Singh3e7c67d2020-03-05 23:01:27 +01001572int __weak bpf_prog_test_run_tracing(struct bpf_prog *prog,
1573 const union bpf_attr *kattr,
1574 union bpf_attr __user *uattr)
1575{
1576 return -ENOTSUPP;
1577}
1578
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001579const struct bpf_verifier_ops raw_tracepoint_verifier_ops = {
1580 .get_func_proto = raw_tp_prog_func_proto,
1581 .is_valid_access = raw_tp_prog_is_valid_access,
1582};
1583
1584const struct bpf_prog_ops raw_tracepoint_prog_ops = {
1585};
1586
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001587const struct bpf_verifier_ops tracing_verifier_ops = {
1588 .get_func_proto = tracing_prog_func_proto,
1589 .is_valid_access = tracing_prog_is_valid_access,
1590};
1591
1592const struct bpf_prog_ops tracing_prog_ops = {
KP Singhda00d2f2020-03-04 20:18:52 +01001593 .test_run = bpf_prog_test_run_tracing,
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001594};
1595
Matt Mullins9df1c282019-04-26 11:49:47 -07001596static bool raw_tp_writable_prog_is_valid_access(int off, int size,
1597 enum bpf_access_type type,
1598 const struct bpf_prog *prog,
1599 struct bpf_insn_access_aux *info)
1600{
1601 if (off == 0) {
1602 if (size != sizeof(u64) || type != BPF_READ)
1603 return false;
1604 info->reg_type = PTR_TO_TP_BUFFER;
1605 }
1606 return raw_tp_prog_is_valid_access(off, size, type, prog, info);
1607}
1608
1609const struct bpf_verifier_ops raw_tracepoint_writable_verifier_ops = {
1610 .get_func_proto = raw_tp_prog_func_proto,
1611 .is_valid_access = raw_tp_writable_prog_is_valid_access,
1612};
1613
1614const struct bpf_prog_ops raw_tracepoint_writable_prog_ops = {
1615};
1616
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001617static bool pe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001618 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001619 struct bpf_insn_access_aux *info)
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001620{
Teng Qin95da0cd2018-03-06 10:55:01 -08001621 const int size_u64 = sizeof(u64);
Yonghong Song31fd8582017-06-13 15:52:13 -07001622
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001623 if (off < 0 || off >= sizeof(struct bpf_perf_event_data))
1624 return false;
1625 if (type != BPF_READ)
1626 return false;
Daniel Borkmannbc231052018-06-02 23:06:39 +02001627 if (off % size != 0) {
1628 if (sizeof(unsigned long) != 4)
1629 return false;
1630 if (size != 8)
1631 return false;
1632 if (off % size != 4)
1633 return false;
1634 }
Yonghong Song31fd8582017-06-13 15:52:13 -07001635
Daniel Borkmannf96da092017-07-02 02:13:27 +02001636 switch (off) {
1637 case bpf_ctx_range(struct bpf_perf_event_data, sample_period):
Teng Qin95da0cd2018-03-06 10:55:01 -08001638 bpf_ctx_record_field_size(info, size_u64);
1639 if (!bpf_ctx_narrow_access_ok(off, size, size_u64))
1640 return false;
1641 break;
1642 case bpf_ctx_range(struct bpf_perf_event_data, addr):
1643 bpf_ctx_record_field_size(info, size_u64);
1644 if (!bpf_ctx_narrow_access_ok(off, size, size_u64))
Yonghong Song23994632017-06-22 15:07:39 -07001645 return false;
Daniel Borkmannf96da092017-07-02 02:13:27 +02001646 break;
1647 default:
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001648 if (size != sizeof(long))
1649 return false;
1650 }
Daniel Borkmannf96da092017-07-02 02:13:27 +02001651
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001652 return true;
1653}
1654
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001655static u32 pe_prog_convert_ctx_access(enum bpf_access_type type,
1656 const struct bpf_insn *si,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001657 struct bpf_insn *insn_buf,
Daniel Borkmannf96da092017-07-02 02:13:27 +02001658 struct bpf_prog *prog, u32 *target_size)
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001659{
1660 struct bpf_insn *insn = insn_buf;
1661
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001662 switch (si->off) {
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001663 case offsetof(struct bpf_perf_event_data, sample_period):
Daniel Borkmannf035a512016-09-09 02:45:29 +02001664 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001665 data), si->dst_reg, si->src_reg,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001666 offsetof(struct bpf_perf_event_data_kern, data));
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001667 *insn++ = BPF_LDX_MEM(BPF_DW, si->dst_reg, si->dst_reg,
Daniel Borkmannf96da092017-07-02 02:13:27 +02001668 bpf_target_off(struct perf_sample_data, period, 8,
1669 target_size));
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001670 break;
Teng Qin95da0cd2018-03-06 10:55:01 -08001671 case offsetof(struct bpf_perf_event_data, addr):
1672 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
1673 data), si->dst_reg, si->src_reg,
1674 offsetof(struct bpf_perf_event_data_kern, data));
1675 *insn++ = BPF_LDX_MEM(BPF_DW, si->dst_reg, si->dst_reg,
1676 bpf_target_off(struct perf_sample_data, addr, 8,
1677 target_size));
1678 break;
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001679 default:
Daniel Borkmannf035a512016-09-09 02:45:29 +02001680 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001681 regs), si->dst_reg, si->src_reg,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001682 offsetof(struct bpf_perf_event_data_kern, regs));
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001683 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(long), si->dst_reg, si->dst_reg,
1684 si->off);
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001685 break;
1686 }
1687
1688 return insn - insn_buf;
1689}
1690
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001691const struct bpf_verifier_ops perf_event_verifier_ops = {
Yonghong Songf005afe2018-03-20 11:19:17 -07001692 .get_func_proto = pe_prog_func_proto,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001693 .is_valid_access = pe_prog_is_valid_access,
1694 .convert_ctx_access = pe_prog_convert_ctx_access,
1695};
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001696
1697const struct bpf_prog_ops perf_event_prog_ops = {
1698};
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001699
1700static DEFINE_MUTEX(bpf_event_mutex);
1701
Yonghong Songc8c088b2017-11-30 13:47:54 -08001702#define BPF_TRACE_MAX_PROGS 64
1703
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001704int perf_event_attach_bpf_prog(struct perf_event *event,
1705 struct bpf_prog *prog)
1706{
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001707 struct bpf_prog_array *old_array;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001708 struct bpf_prog_array *new_array;
1709 int ret = -EEXIST;
1710
Josef Bacik9802d862017-12-11 11:36:48 -05001711 /*
Masami Hiramatsub4da3342018-01-13 02:54:04 +09001712 * Kprobe override only works if they are on the function entry,
1713 * and only if they are on the opt-in list.
Josef Bacik9802d862017-12-11 11:36:48 -05001714 */
1715 if (prog->kprobe_override &&
Masami Hiramatsub4da3342018-01-13 02:54:04 +09001716 (!trace_kprobe_on_func_entry(event->tp_event) ||
Josef Bacik9802d862017-12-11 11:36:48 -05001717 !trace_kprobe_error_injectable(event->tp_event)))
1718 return -EINVAL;
1719
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001720 mutex_lock(&bpf_event_mutex);
1721
1722 if (event->prog)
Yonghong Song07c41a22017-10-30 13:50:22 -07001723 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001724
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001725 old_array = bpf_event_rcu_dereference(event->tp_event->prog_array);
Yonghong Songc8c088b2017-11-30 13:47:54 -08001726 if (old_array &&
1727 bpf_prog_array_length(old_array) >= BPF_TRACE_MAX_PROGS) {
1728 ret = -E2BIG;
1729 goto unlock;
1730 }
1731
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001732 ret = bpf_prog_array_copy(old_array, NULL, prog, &new_array);
1733 if (ret < 0)
Yonghong Song07c41a22017-10-30 13:50:22 -07001734 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001735
1736 /* set the new array to event->tp_event and set event->prog */
1737 event->prog = prog;
1738 rcu_assign_pointer(event->tp_event->prog_array, new_array);
1739 bpf_prog_array_free(old_array);
1740
Yonghong Song07c41a22017-10-30 13:50:22 -07001741unlock:
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001742 mutex_unlock(&bpf_event_mutex);
1743 return ret;
1744}
1745
1746void perf_event_detach_bpf_prog(struct perf_event *event)
1747{
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001748 struct bpf_prog_array *old_array;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001749 struct bpf_prog_array *new_array;
1750 int ret;
1751
1752 mutex_lock(&bpf_event_mutex);
1753
1754 if (!event->prog)
Yonghong Song07c41a22017-10-30 13:50:22 -07001755 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001756
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001757 old_array = bpf_event_rcu_dereference(event->tp_event->prog_array);
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001758 ret = bpf_prog_array_copy(old_array, event->prog, NULL, &new_array);
Sean Young170a7e32018-05-27 12:24:08 +01001759 if (ret == -ENOENT)
1760 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001761 if (ret < 0) {
1762 bpf_prog_array_delete_safe(old_array, event->prog);
1763 } else {
1764 rcu_assign_pointer(event->tp_event->prog_array, new_array);
1765 bpf_prog_array_free(old_array);
1766 }
1767
1768 bpf_prog_put(event->prog);
1769 event->prog = NULL;
1770
Yonghong Song07c41a22017-10-30 13:50:22 -07001771unlock:
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001772 mutex_unlock(&bpf_event_mutex);
1773}
Yonghong Songf371b302017-12-11 11:39:02 -08001774
Yonghong Songf4e22982017-12-13 10:35:37 -08001775int perf_event_query_prog_array(struct perf_event *event, void __user *info)
Yonghong Songf371b302017-12-11 11:39:02 -08001776{
1777 struct perf_event_query_bpf __user *uquery = info;
1778 struct perf_event_query_bpf query = {};
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001779 struct bpf_prog_array *progs;
Yonghong Song3a38bb92018-04-10 09:37:32 -07001780 u32 *ids, prog_cnt, ids_len;
Yonghong Songf371b302017-12-11 11:39:02 -08001781 int ret;
1782
Alexey Budankov031258d2020-04-02 11:48:54 +03001783 if (!perfmon_capable())
Yonghong Songf371b302017-12-11 11:39:02 -08001784 return -EPERM;
1785 if (event->attr.type != PERF_TYPE_TRACEPOINT)
1786 return -EINVAL;
1787 if (copy_from_user(&query, uquery, sizeof(query)))
1788 return -EFAULT;
Yonghong Song3a38bb92018-04-10 09:37:32 -07001789
1790 ids_len = query.ids_len;
1791 if (ids_len > BPF_TRACE_MAX_PROGS)
Daniel Borkmann9c481b92018-02-14 15:31:00 +01001792 return -E2BIG;
Yonghong Song3a38bb92018-04-10 09:37:32 -07001793 ids = kcalloc(ids_len, sizeof(u32), GFP_USER | __GFP_NOWARN);
1794 if (!ids)
1795 return -ENOMEM;
1796 /*
1797 * The above kcalloc returns ZERO_SIZE_PTR when ids_len = 0, which
1798 * is required when user only wants to check for uquery->prog_cnt.
1799 * There is no need to check for it since the case is handled
1800 * gracefully in bpf_prog_array_copy_info.
1801 */
Yonghong Songf371b302017-12-11 11:39:02 -08001802
1803 mutex_lock(&bpf_event_mutex);
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001804 progs = bpf_event_rcu_dereference(event->tp_event->prog_array);
1805 ret = bpf_prog_array_copy_info(progs, ids, ids_len, &prog_cnt);
Yonghong Songf371b302017-12-11 11:39:02 -08001806 mutex_unlock(&bpf_event_mutex);
1807
Yonghong Song3a38bb92018-04-10 09:37:32 -07001808 if (copy_to_user(&uquery->prog_cnt, &prog_cnt, sizeof(prog_cnt)) ||
1809 copy_to_user(uquery->ids, ids, ids_len * sizeof(u32)))
1810 ret = -EFAULT;
1811
1812 kfree(ids);
Yonghong Songf371b302017-12-11 11:39:02 -08001813 return ret;
1814}
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001815
1816extern struct bpf_raw_event_map __start__bpf_raw_tp[];
1817extern struct bpf_raw_event_map __stop__bpf_raw_tp[];
1818
Matt Mullinsa38d1102018-12-12 16:42:37 -08001819struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001820{
1821 struct bpf_raw_event_map *btp = __start__bpf_raw_tp;
1822
1823 for (; btp < __stop__bpf_raw_tp; btp++) {
1824 if (!strcmp(btp->tp->name, name))
1825 return btp;
1826 }
Matt Mullinsa38d1102018-12-12 16:42:37 -08001827
1828 return bpf_get_raw_tracepoint_module(name);
1829}
1830
1831void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp)
1832{
1833 struct module *mod = __module_address((unsigned long)btp);
1834
1835 if (mod)
1836 module_put(mod);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001837}
1838
1839static __always_inline
1840void __bpf_trace_run(struct bpf_prog *prog, u64 *args)
1841{
Thomas Gleixnerf03efe42020-02-24 15:01:35 +01001842 cant_sleep();
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001843 rcu_read_lock();
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001844 (void) BPF_PROG_RUN(prog, args);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001845 rcu_read_unlock();
1846}
1847
1848#define UNPACK(...) __VA_ARGS__
1849#define REPEAT_1(FN, DL, X, ...) FN(X)
1850#define REPEAT_2(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_1(FN, DL, __VA_ARGS__)
1851#define REPEAT_3(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_2(FN, DL, __VA_ARGS__)
1852#define REPEAT_4(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_3(FN, DL, __VA_ARGS__)
1853#define REPEAT_5(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_4(FN, DL, __VA_ARGS__)
1854#define REPEAT_6(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_5(FN, DL, __VA_ARGS__)
1855#define REPEAT_7(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_6(FN, DL, __VA_ARGS__)
1856#define REPEAT_8(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_7(FN, DL, __VA_ARGS__)
1857#define REPEAT_9(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_8(FN, DL, __VA_ARGS__)
1858#define REPEAT_10(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_9(FN, DL, __VA_ARGS__)
1859#define REPEAT_11(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_10(FN, DL, __VA_ARGS__)
1860#define REPEAT_12(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_11(FN, DL, __VA_ARGS__)
1861#define REPEAT(X, FN, DL, ...) REPEAT_##X(FN, DL, __VA_ARGS__)
1862
1863#define SARG(X) u64 arg##X
1864#define COPY(X) args[X] = arg##X
1865
1866#define __DL_COM (,)
1867#define __DL_SEM (;)
1868
1869#define __SEQ_0_11 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
1870
1871#define BPF_TRACE_DEFN_x(x) \
1872 void bpf_trace_run##x(struct bpf_prog *prog, \
1873 REPEAT(x, SARG, __DL_COM, __SEQ_0_11)) \
1874 { \
1875 u64 args[x]; \
1876 REPEAT(x, COPY, __DL_SEM, __SEQ_0_11); \
1877 __bpf_trace_run(prog, args); \
1878 } \
1879 EXPORT_SYMBOL_GPL(bpf_trace_run##x)
1880BPF_TRACE_DEFN_x(1);
1881BPF_TRACE_DEFN_x(2);
1882BPF_TRACE_DEFN_x(3);
1883BPF_TRACE_DEFN_x(4);
1884BPF_TRACE_DEFN_x(5);
1885BPF_TRACE_DEFN_x(6);
1886BPF_TRACE_DEFN_x(7);
1887BPF_TRACE_DEFN_x(8);
1888BPF_TRACE_DEFN_x(9);
1889BPF_TRACE_DEFN_x(10);
1890BPF_TRACE_DEFN_x(11);
1891BPF_TRACE_DEFN_x(12);
1892
1893static int __bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
1894{
1895 struct tracepoint *tp = btp->tp;
1896
1897 /*
1898 * check that program doesn't access arguments beyond what's
1899 * available in this tracepoint
1900 */
1901 if (prog->aux->max_ctx_offset > btp->num_args * sizeof(u64))
1902 return -EINVAL;
1903
Matt Mullins9df1c282019-04-26 11:49:47 -07001904 if (prog->aux->max_tp_access > btp->writable_size)
1905 return -EINVAL;
1906
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001907 return tracepoint_probe_register(tp, (void *)btp->bpf_func, prog);
1908}
1909
1910int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
1911{
Alexei Starovoitove16ec342019-01-30 18:12:44 -08001912 return __bpf_probe_register(btp, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001913}
1914
1915int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
1916{
Alexei Starovoitove16ec342019-01-30 18:12:44 -08001917 return tracepoint_probe_unregister(btp->tp, (void *)btp->bpf_func, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001918}
Yonghong Song41bdc4b2018-05-24 11:21:09 -07001919
1920int bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id,
1921 u32 *fd_type, const char **buf,
1922 u64 *probe_offset, u64 *probe_addr)
1923{
1924 bool is_tracepoint, is_syscall_tp;
1925 struct bpf_prog *prog;
1926 int flags, err = 0;
1927
1928 prog = event->prog;
1929 if (!prog)
1930 return -ENOENT;
1931
1932 /* not supporting BPF_PROG_TYPE_PERF_EVENT yet */
1933 if (prog->type == BPF_PROG_TYPE_PERF_EVENT)
1934 return -EOPNOTSUPP;
1935
1936 *prog_id = prog->aux->id;
1937 flags = event->tp_event->flags;
1938 is_tracepoint = flags & TRACE_EVENT_FL_TRACEPOINT;
1939 is_syscall_tp = is_syscall_trace_event(event->tp_event);
1940
1941 if (is_tracepoint || is_syscall_tp) {
1942 *buf = is_tracepoint ? event->tp_event->tp->name
1943 : event->tp_event->name;
1944 *fd_type = BPF_FD_TYPE_TRACEPOINT;
1945 *probe_offset = 0x0;
1946 *probe_addr = 0x0;
1947 } else {
1948 /* kprobe/uprobe */
1949 err = -EOPNOTSUPP;
1950#ifdef CONFIG_KPROBE_EVENTS
1951 if (flags & TRACE_EVENT_FL_KPROBE)
1952 err = bpf_get_kprobe_info(event, fd_type, buf,
1953 probe_offset, probe_addr,
1954 event->attr.type == PERF_TYPE_TRACEPOINT);
1955#endif
1956#ifdef CONFIG_UPROBE_EVENTS
1957 if (flags & TRACE_EVENT_FL_UPROBE)
1958 err = bpf_get_uprobe_info(event, fd_type, buf,
1959 probe_offset,
1960 event->attr.type == PERF_TYPE_TRACEPOINT);
1961#endif
1962 }
1963
1964 return err;
1965}
Matt Mullinsa38d1102018-12-12 16:42:37 -08001966
Yonghong Song9db1ff02019-06-25 17:35:03 -07001967static int __init send_signal_irq_work_init(void)
1968{
1969 int cpu;
1970 struct send_signal_irq_work *work;
1971
1972 for_each_possible_cpu(cpu) {
1973 work = per_cpu_ptr(&send_signal_work, cpu);
1974 init_irq_work(&work->irq_work, do_bpf_send_signal);
1975 }
1976 return 0;
1977}
1978
1979subsys_initcall(send_signal_irq_work_init);
1980
Matt Mullinsa38d1102018-12-12 16:42:37 -08001981#ifdef CONFIG_MODULES
Stanislav Fomichev390e99c2019-05-13 12:04:36 -07001982static int bpf_event_notify(struct notifier_block *nb, unsigned long op,
1983 void *module)
Matt Mullinsa38d1102018-12-12 16:42:37 -08001984{
1985 struct bpf_trace_module *btm, *tmp;
1986 struct module *mod = module;
1987
1988 if (mod->num_bpf_raw_events == 0 ||
1989 (op != MODULE_STATE_COMING && op != MODULE_STATE_GOING))
1990 return 0;
1991
1992 mutex_lock(&bpf_module_mutex);
1993
1994 switch (op) {
1995 case MODULE_STATE_COMING:
1996 btm = kzalloc(sizeof(*btm), GFP_KERNEL);
1997 if (btm) {
1998 btm->module = module;
1999 list_add(&btm->list, &bpf_trace_modules);
2000 }
2001 break;
2002 case MODULE_STATE_GOING:
2003 list_for_each_entry_safe(btm, tmp, &bpf_trace_modules, list) {
2004 if (btm->module == module) {
2005 list_del(&btm->list);
2006 kfree(btm);
2007 break;
2008 }
2009 }
2010 break;
2011 }
2012
2013 mutex_unlock(&bpf_module_mutex);
2014
2015 return 0;
2016}
2017
2018static struct notifier_block bpf_module_nb = {
2019 .notifier_call = bpf_event_notify,
2020};
2021
Stanislav Fomichev390e99c2019-05-13 12:04:36 -07002022static int __init bpf_event_init(void)
Matt Mullinsa38d1102018-12-12 16:42:37 -08002023{
2024 register_module_notifier(&bpf_module_nb);
2025 return 0;
2026}
2027
2028fs_initcall(bpf_event_init);
2029#endif /* CONFIG_MODULES */