blob: 0d23755c2747bd117ed45e69eefe27b3adffe267 [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>
Alan Maguirec4d0bfb2020-09-28 12:31:05 +010010#include <linux/btf.h>
Alexei Starovoitov25415172015-03-25 12:49:20 -070011#include <linux/filter.h>
12#include <linux/uaccess.h>
Alexei Starovoitov9c959c82015-03-25 12:49:22 -070013#include <linux/ctype.h>
Josef Bacik9802d862017-12-11 11:36:48 -050014#include <linux/kprobes.h>
Alan Maguireac5a72e2020-07-13 12:52:33 +010015#include <linux/spinlock.h>
Yonghong Song41bdc4b2018-05-24 11:21:09 -070016#include <linux/syscalls.h>
Masami Hiramatsu540adea2018-01-13 02:55:03 +090017#include <linux/error-injection.h>
Jiri Olsac9a0f3b2020-07-11 23:53:24 +020018#include <linux/btf_ids.h>
KP Singh6f100642020-11-13 00:59:30 +000019#include <linux/bpf_lsm.h>
20
Martin KaFai Lau8e4597c2020-11-12 13:13:13 -080021#include <net/bpf_sk_storage.h>
Josef Bacik9802d862017-12-11 11:36:48 -050022
Alan Maguirec4d0bfb2020-09-28 12:31:05 +010023#include <uapi/linux/bpf.h>
24#include <uapi/linux/btf.h>
25
Nadav Amitc7b6f292019-04-25 17:11:43 -070026#include <asm/tlb.h>
27
Josef Bacik9802d862017-12-11 11:36:48 -050028#include "trace_probe.h"
Alexei Starovoitov25415172015-03-25 12:49:20 -070029#include "trace.h"
30
Alan Maguireac5a72e2020-07-13 12:52:33 +010031#define CREATE_TRACE_POINTS
32#include "bpf_trace.h"
33
Stanislav Fomicheve672db02019-05-28 14:14:44 -070034#define bpf_event_rcu_dereference(p) \
35 rcu_dereference_protected(p, lockdep_is_held(&bpf_event_mutex))
36
Matt Mullinsa38d1102018-12-12 16:42:37 -080037#ifdef CONFIG_MODULES
38struct bpf_trace_module {
39 struct module *module;
40 struct list_head list;
41};
42
43static LIST_HEAD(bpf_trace_modules);
44static DEFINE_MUTEX(bpf_module_mutex);
45
46static struct bpf_raw_event_map *bpf_get_raw_tracepoint_module(const char *name)
47{
48 struct bpf_raw_event_map *btp, *ret = NULL;
49 struct bpf_trace_module *btm;
50 unsigned int i;
51
52 mutex_lock(&bpf_module_mutex);
53 list_for_each_entry(btm, &bpf_trace_modules, list) {
54 for (i = 0; i < btm->module->num_bpf_raw_events; ++i) {
55 btp = &btm->module->bpf_raw_events[i];
56 if (!strcmp(btp->tp->name, name)) {
57 if (try_module_get(btm->module))
58 ret = btp;
59 goto out;
60 }
61 }
62 }
63out:
64 mutex_unlock(&bpf_module_mutex);
65 return ret;
66}
67#else
68static struct bpf_raw_event_map *bpf_get_raw_tracepoint_module(const char *name)
69{
70 return NULL;
71}
72#endif /* CONFIG_MODULES */
73
Gianluca Borello035226b2017-10-26 01:47:42 +000074u64 bpf_get_stackid(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Yonghong Songc195651e2018-04-28 22:28:08 -070075u64 bpf_get_stack(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
Gianluca Borello035226b2017-10-26 01:47:42 +000076
Alan Maguireeb411372020-09-28 12:31:09 +010077static int bpf_btf_printf_prepare(struct btf_ptr *ptr, u32 btf_ptr_size,
78 u64 flags, const struct btf **btf,
79 s32 *btf_id);
80
Alexei Starovoitov25415172015-03-25 12:49:20 -070081/**
82 * trace_call_bpf - invoke BPF program
Yonghong Songe87c6bc2017-10-23 23:53:08 -070083 * @call: tracepoint event
Alexei Starovoitov25415172015-03-25 12:49:20 -070084 * @ctx: opaque context pointer
85 *
86 * kprobe handlers execute BPF programs via this helper.
87 * Can be used from static tracepoints in the future.
88 *
89 * Return: BPF programs always return an integer which is interpreted by
90 * kprobe handler as:
91 * 0 - return from kprobe (event is filtered out)
92 * 1 - store kprobe event into ring buffer
93 * Other values are reserved and currently alias to 1
94 */
Yonghong Songe87c6bc2017-10-23 23:53:08 -070095unsigned int trace_call_bpf(struct trace_event_call *call, void *ctx)
Alexei Starovoitov25415172015-03-25 12:49:20 -070096{
97 unsigned int ret;
98
Thomas Gleixnerb0a81b92020-02-24 15:01:37 +010099 cant_sleep();
Alexei Starovoitov25415172015-03-25 12:49:20 -0700100
101 if (unlikely(__this_cpu_inc_return(bpf_prog_active) != 1)) {
102 /*
103 * since some bpf program is already running on this cpu,
104 * don't call into another bpf program (same or different)
105 * and don't send kprobe event into ring-buffer,
106 * so return zero here
107 */
108 ret = 0;
109 goto out;
110 }
111
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700112 /*
113 * Instead of moving rcu_read_lock/rcu_dereference/rcu_read_unlock
114 * to all call sites, we did a bpf_prog_array_valid() there to check
115 * whether call->prog_array is empty or not, which is
Qiujun Huang2b5894c2020-10-29 23:05:54 +0800116 * a heuristic to speed up execution.
Yonghong Songe87c6bc2017-10-23 23:53:08 -0700117 *
118 * If bpf_prog_array_valid() fetched prog_array was
119 * non-NULL, we go into trace_call_bpf() and do the actual
120 * proper rcu_dereference() under RCU lock.
121 * If it turns out that prog_array is NULL then, we bail out.
122 * For the opposite, if the bpf_prog_array_valid() fetched pointer
123 * was NULL, you'll skip the prog_array with the risk of missing
124 * out of events when it was updated in between this and the
125 * rcu_dereference() which is accepted risk.
126 */
127 ret = BPF_PROG_RUN_ARRAY_CHECK(call->prog_array, ctx, BPF_PROG_RUN);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700128
129 out:
130 __this_cpu_dec(bpf_prog_active);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700131
132 return ret;
133}
Alexei Starovoitov25415172015-03-25 12:49:20 -0700134
Josef Bacik9802d862017-12-11 11:36:48 -0500135#ifdef CONFIG_BPF_KPROBE_OVERRIDE
136BPF_CALL_2(bpf_override_return, struct pt_regs *, regs, unsigned long, rc)
137{
Josef Bacik9802d862017-12-11 11:36:48 -0500138 regs_set_return_value(regs, rc);
Masami Hiramatsu540adea2018-01-13 02:55:03 +0900139 override_function_with_return(regs);
Josef Bacik9802d862017-12-11 11:36:48 -0500140 return 0;
141}
142
143static const struct bpf_func_proto bpf_override_return_proto = {
144 .func = bpf_override_return,
145 .gpl_only = true,
146 .ret_type = RET_INTEGER,
147 .arg1_type = ARG_PTR_TO_CTX,
148 .arg2_type = ARG_ANYTHING,
149};
150#endif
151
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700152static __always_inline int
153bpf_probe_read_user_common(void *dst, u32 size, const void __user *unsafe_ptr)
154{
155 int ret;
156
Christoph Hellwigc0ee37e2020-06-17 09:37:54 +0200157 ret = copy_from_user_nofault(dst, unsafe_ptr, size);
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700158 if (unlikely(ret < 0))
159 memset(dst, 0, size);
160 return ret;
161}
162
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100163BPF_CALL_3(bpf_probe_read_user, void *, dst, u32, size,
164 const void __user *, unsafe_ptr)
Alexei Starovoitov25415172015-03-25 12:49:20 -0700165{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700166 return bpf_probe_read_user_common(dst, size, unsafe_ptr);
Alexei Starovoitov25415172015-03-25 12:49:20 -0700167}
168
John Fastabendf4703782020-05-24 09:50:55 -0700169const struct bpf_func_proto bpf_probe_read_user_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100170 .func = bpf_probe_read_user,
171 .gpl_only = true,
172 .ret_type = RET_INTEGER,
173 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
174 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
175 .arg3_type = ARG_ANYTHING,
176};
177
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700178static __always_inline int
179bpf_probe_read_user_str_common(void *dst, u32 size,
180 const void __user *unsafe_ptr)
181{
182 int ret;
183
Daniel Xu6fa6d282020-11-17 12:05:45 -0800184 /*
185 * NB: We rely on strncpy_from_user() not copying junk past the NUL
186 * terminator into `dst`.
187 *
188 * strncpy_from_user() does long-sized strides in the fast path. If the
189 * strncpy does not mask out the bytes after the NUL in `unsafe_ptr`,
190 * then there could be junk after the NUL in `dst`. If user takes `dst`
191 * and keys a hash map with it, then semantically identical strings can
192 * occupy multiple entries in the map.
193 */
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700194 ret = strncpy_from_user_nofault(dst, unsafe_ptr, size);
195 if (unlikely(ret < 0))
196 memset(dst, 0, size);
197 return ret;
198}
199
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100200BPF_CALL_3(bpf_probe_read_user_str, void *, dst, u32, size,
201 const void __user *, unsafe_ptr)
202{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700203 return bpf_probe_read_user_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100204}
205
John Fastabendf4703782020-05-24 09:50:55 -0700206const struct bpf_func_proto bpf_probe_read_user_str_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100207 .func = bpf_probe_read_user_str,
208 .gpl_only = true,
209 .ret_type = RET_INTEGER,
210 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
211 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
212 .arg3_type = ARG_ANYTHING,
213};
214
215static __always_inline int
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700216bpf_probe_read_kernel_common(void *dst, u32 size, const void *unsafe_ptr)
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100217{
218 int ret = security_locked_down(LOCKDOWN_BPF_READ);
219
220 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700221 goto fail;
Christoph Hellwigfe557312020-06-17 09:37:53 +0200222 ret = copy_from_kernel_nofault(dst, unsafe_ptr, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100223 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700224 goto fail;
225 return ret;
226fail:
227 memset(dst, 0, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100228 return ret;
229}
230
231BPF_CALL_3(bpf_probe_read_kernel, void *, dst, u32, size,
232 const void *, unsafe_ptr)
233{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700234 return bpf_probe_read_kernel_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100235}
236
John Fastabendf4703782020-05-24 09:50:55 -0700237const struct bpf_func_proto bpf_probe_read_kernel_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100238 .func = bpf_probe_read_kernel,
239 .gpl_only = true,
240 .ret_type = RET_INTEGER,
241 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
242 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
243 .arg3_type = ARG_ANYTHING,
244};
245
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100246static __always_inline int
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700247bpf_probe_read_kernel_str_common(void *dst, u32 size, const void *unsafe_ptr)
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100248{
249 int ret = security_locked_down(LOCKDOWN_BPF_READ);
250
251 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700252 goto fail;
253
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100254 /*
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700255 * The strncpy_from_kernel_nofault() call will likely not fill the
256 * entire buffer, but that's okay in this circumstance as we're probing
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100257 * arbitrary memory anyway similar to bpf_probe_read_*() and might
258 * as well probe the stack. Thus, memory is explicitly cleared
259 * only in error case, so that improper users ignoring return
260 * code altogether don't copy garbage; otherwise length of string
261 * is returned that can be used for bpf_perf_event_output() et al.
262 */
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700263 ret = strncpy_from_kernel_nofault(dst, unsafe_ptr, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100264 if (unlikely(ret < 0))
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700265 goto fail;
266
Andrii Nakryiko02553b92020-06-15 22:04:30 -0700267 return ret;
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700268fail:
269 memset(dst, 0, size);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100270 return ret;
271}
272
273BPF_CALL_3(bpf_probe_read_kernel_str, void *, dst, u32, size,
274 const void *, unsafe_ptr)
275{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700276 return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100277}
278
John Fastabendf4703782020-05-24 09:50:55 -0700279const struct bpf_func_proto bpf_probe_read_kernel_str_proto = {
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100280 .func = bpf_probe_read_kernel_str,
281 .gpl_only = true,
282 .ret_type = RET_INTEGER,
283 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
284 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
285 .arg3_type = ARG_ANYTHING,
286};
287
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700288#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
289BPF_CALL_3(bpf_probe_read_compat, void *, dst, u32, size,
290 const void *, unsafe_ptr)
291{
292 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
293 return bpf_probe_read_user_common(dst, size,
294 (__force void __user *)unsafe_ptr);
295 }
296 return bpf_probe_read_kernel_common(dst, size, unsafe_ptr);
297}
298
299static const struct bpf_func_proto bpf_probe_read_compat_proto = {
300 .func = bpf_probe_read_compat,
301 .gpl_only = true,
302 .ret_type = RET_INTEGER,
303 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
304 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
305 .arg3_type = ARG_ANYTHING,
306};
307
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100308BPF_CALL_3(bpf_probe_read_compat_str, void *, dst, u32, size,
309 const void *, unsafe_ptr)
310{
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700311 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
312 return bpf_probe_read_user_str_common(dst, size,
313 (__force void __user *)unsafe_ptr);
314 }
315 return bpf_probe_read_kernel_str_common(dst, size, unsafe_ptr);
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +0100316}
317
318static const struct bpf_func_proto bpf_probe_read_compat_str_proto = {
319 .func = bpf_probe_read_compat_str,
Alexei Starovoitov25415172015-03-25 12:49:20 -0700320 .gpl_only = true,
321 .ret_type = RET_INTEGER,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800322 .arg1_type = ARG_PTR_TO_UNINIT_MEM,
Yonghong Song9c019e22017-11-12 14:49:10 -0800323 .arg2_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitov25415172015-03-25 12:49:20 -0700324 .arg3_type = ARG_ANYTHING,
325};
Christoph Hellwig8d92db52020-06-08 21:34:40 -0700326#endif /* CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE */
Alexei Starovoitov25415172015-03-25 12:49:20 -0700327
Daniel Borkmanneb1b6682019-11-02 00:17:58 +0100328BPF_CALL_3(bpf_probe_write_user, void __user *, unsafe_ptr, const void *, src,
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200329 u32, size)
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700330{
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700331 /*
332 * Ensure we're in user context which is safe for the helper to
333 * run. This helper has no business in a kthread.
334 *
335 * access_ok() should prevent writing to non-user memory, but in
336 * some situations (nommu, temporary switch, etc) access_ok() does
337 * not provide enough validation, hence the check on KERNEL_DS.
Nadav Amitc7b6f292019-04-25 17:11:43 -0700338 *
339 * nmi_uaccess_okay() ensures the probe is not run in an interim
340 * state, when the task or mm are switched. This is specifically
341 * required to prevent the use of temporary mm.
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700342 */
343
344 if (unlikely(in_interrupt() ||
345 current->flags & (PF_KTHREAD | PF_EXITING)))
346 return -EPERM;
Al Virodb68ce12017-03-20 21:08:07 -0400347 if (unlikely(uaccess_kernel()))
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700348 return -EPERM;
Nadav Amitc7b6f292019-04-25 17:11:43 -0700349 if (unlikely(!nmi_uaccess_okay()))
350 return -EPERM;
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700351
Christoph Hellwigc0ee37e2020-06-17 09:37:54 +0200352 return copy_to_user_nofault(unsafe_ptr, src, size);
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700353}
354
355static const struct bpf_func_proto bpf_probe_write_user_proto = {
356 .func = bpf_probe_write_user,
357 .gpl_only = true,
358 .ret_type = RET_INTEGER,
359 .arg1_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800360 .arg2_type = ARG_PTR_TO_MEM,
361 .arg3_type = ARG_CONST_SIZE,
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700362};
363
364static const struct bpf_func_proto *bpf_get_probe_write_proto(void)
365{
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700366 if (!capable(CAP_SYS_ADMIN))
367 return NULL;
368
Sargun Dhillon96ae5222016-07-25 05:54:46 -0700369 pr_warn_ratelimited("%s[%d] is installing a program with bpf_probe_write_user helper that may corrupt user memory!",
370 current->comm, task_pid_nr(current));
371
372 return &bpf_probe_write_user_proto;
373}
374
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700375static void bpf_trace_copy_string(char *buf, void *unsafe_ptr, char fmt_ptype,
376 size_t bufsz)
377{
378 void __user *user_ptr = (__force void __user *)unsafe_ptr;
379
380 buf[0] = 0;
381
382 switch (fmt_ptype) {
383 case 's':
384#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
Christoph Hellwigaec6ce52020-06-08 21:34:33 -0700385 if ((unsigned long)unsafe_ptr < TASK_SIZE) {
386 strncpy_from_user_nofault(buf, user_ptr, bufsz);
387 break;
388 }
389 fallthrough;
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700390#endif
391 case 'k':
392 strncpy_from_kernel_nofault(buf, unsafe_ptr, bufsz);
393 break;
394 case 'u':
395 strncpy_from_user_nofault(buf, user_ptr, bufsz);
396 break;
397 }
398}
399
Alan Maguireac5a72e2020-07-13 12:52:33 +0100400static DEFINE_RAW_SPINLOCK(trace_printk_lock);
401
402#define BPF_TRACE_PRINTK_SIZE 1024
403
Stanislav Fomichev0d360d62020-08-06 11:26:12 -0700404static __printf(1, 0) int bpf_do_trace_printk(const char *fmt, ...)
Alan Maguireac5a72e2020-07-13 12:52:33 +0100405{
406 static char buf[BPF_TRACE_PRINTK_SIZE];
407 unsigned long flags;
408 va_list ap;
409 int ret;
410
411 raw_spin_lock_irqsave(&trace_printk_lock, flags);
412 va_start(ap, fmt);
413 ret = vsnprintf(buf, sizeof(buf), fmt, ap);
414 va_end(ap);
415 /* vsnprintf() will not append null for zero-length strings */
416 if (ret == 0)
417 buf[0] = '\0';
418 trace_bpf_trace_printk(buf);
419 raw_spin_unlock_irqrestore(&trace_printk_lock, flags);
420
421 return ret;
422}
423
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700424/*
John Fastabend7bda4b42017-07-02 02:13:29 +0200425 * Only limited trace_printk() conversion specifiers allowed:
Song Liu2df6bb542020-06-29 23:28:45 -0700426 * %d %i %u %x %ld %li %lu %lx %lld %lli %llu %llx %p %pB %pks %pus %s
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700427 */
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200428BPF_CALL_5(bpf_trace_printk, char *, fmt, u32, fmt_size, u64, arg1,
429 u64, arg2, u64, arg3)
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700430{
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200431 int i, mod[3] = {}, fmt_cnt = 0;
432 char buf[64], fmt_ptype;
433 void *unsafe_ptr = NULL;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700434 bool str_seen = false;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700435
436 /*
437 * bpf_check()->check_func_arg()->check_stack_boundary()
438 * guarantees that fmt points to bpf program stack,
439 * fmt_size bytes of it were initialized and fmt_size > 0
440 */
441 if (fmt[--fmt_size] != 0)
442 return -EINVAL;
443
444 /* check format string for allowed specifiers */
445 for (i = 0; i < fmt_size; i++) {
446 if ((!isprint(fmt[i]) && !isspace(fmt[i])) || !isascii(fmt[i]))
447 return -EINVAL;
448
449 if (fmt[i] != '%')
450 continue;
451
452 if (fmt_cnt >= 3)
453 return -EINVAL;
454
455 /* fmt[i] != 0 && fmt[last] == 0, so we can access fmt[i + 1] */
456 i++;
457 if (fmt[i] == 'l') {
458 mod[fmt_cnt]++;
459 i++;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200460 } else if (fmt[i] == 'p') {
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700461 mod[fmt_cnt]++;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200462 if ((fmt[i + 1] == 'k' ||
463 fmt[i + 1] == 'u') &&
464 fmt[i + 2] == 's') {
465 fmt_ptype = fmt[i + 1];
466 i += 2;
467 goto fmt_str;
468 }
469
Song Liu2df6bb542020-06-29 23:28:45 -0700470 if (fmt[i + 1] == 'B') {
471 i++;
472 goto fmt_next;
473 }
474
Martynas Pumputis1efb6ee2018-11-23 17:43:26 +0100475 /* disallow any further format extensions */
476 if (fmt[i + 1] != 0 &&
477 !isspace(fmt[i + 1]) &&
478 !ispunct(fmt[i + 1]))
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700479 return -EINVAL;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700480
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200481 goto fmt_next;
482 } else if (fmt[i] == 's') {
483 mod[fmt_cnt]++;
484 fmt_ptype = fmt[i];
485fmt_str:
486 if (str_seen)
487 /* allow only one '%s' per fmt string */
488 return -EINVAL;
489 str_seen = true;
490
491 if (fmt[i + 1] != 0 &&
492 !isspace(fmt[i + 1]) &&
493 !ispunct(fmt[i + 1]))
494 return -EINVAL;
495
496 switch (fmt_cnt) {
497 case 0:
498 unsafe_ptr = (void *)(long)arg1;
499 arg1 = (long)buf;
500 break;
501 case 1:
502 unsafe_ptr = (void *)(long)arg2;
503 arg2 = (long)buf;
504 break;
505 case 2:
506 unsafe_ptr = (void *)(long)arg3;
507 arg3 = (long)buf;
508 break;
Alexei Starovoitov8d3b7dc2015-08-28 15:56:23 -0700509 }
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200510
Christoph Hellwigd7b29772020-06-08 21:34:30 -0700511 bpf_trace_copy_string(buf, unsafe_ptr, fmt_ptype,
512 sizeof(buf));
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200513 goto fmt_next;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700514 }
515
516 if (fmt[i] == 'l') {
517 mod[fmt_cnt]++;
518 i++;
519 }
520
John Fastabend7bda4b42017-07-02 02:13:29 +0200521 if (fmt[i] != 'i' && fmt[i] != 'd' &&
522 fmt[i] != 'u' && fmt[i] != 'x')
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700523 return -EINVAL;
Daniel Borkmannb2a52122020-05-15 12:11:18 +0200524fmt_next:
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700525 fmt_cnt++;
526 }
527
Daniel Borkmann88a5c692017-08-16 01:45:33 +0200528/* Horrid workaround for getting va_list handling working with different
529 * argument type combinations generically for 32 and 64 bit archs.
530 */
531#define __BPF_TP_EMIT() __BPF_ARG3_TP()
532#define __BPF_TP(...) \
Alan Maguireac5a72e2020-07-13 12:52:33 +0100533 bpf_do_trace_printk(fmt, ##__VA_ARGS__)
Daniel Borkmann88a5c692017-08-16 01:45:33 +0200534
535#define __BPF_ARG1_TP(...) \
536 ((mod[0] == 2 || (mod[0] == 1 && __BITS_PER_LONG == 64)) \
537 ? __BPF_TP(arg1, ##__VA_ARGS__) \
538 : ((mod[0] == 1 || (mod[0] == 0 && __BITS_PER_LONG == 32)) \
539 ? __BPF_TP((long)arg1, ##__VA_ARGS__) \
540 : __BPF_TP((u32)arg1, ##__VA_ARGS__)))
541
542#define __BPF_ARG2_TP(...) \
543 ((mod[1] == 2 || (mod[1] == 1 && __BITS_PER_LONG == 64)) \
544 ? __BPF_ARG1_TP(arg2, ##__VA_ARGS__) \
545 : ((mod[1] == 1 || (mod[1] == 0 && __BITS_PER_LONG == 32)) \
546 ? __BPF_ARG1_TP((long)arg2, ##__VA_ARGS__) \
547 : __BPF_ARG1_TP((u32)arg2, ##__VA_ARGS__)))
548
549#define __BPF_ARG3_TP(...) \
550 ((mod[2] == 2 || (mod[2] == 1 && __BITS_PER_LONG == 64)) \
551 ? __BPF_ARG2_TP(arg3, ##__VA_ARGS__) \
552 : ((mod[2] == 1 || (mod[2] == 0 && __BITS_PER_LONG == 32)) \
553 ? __BPF_ARG2_TP((long)arg3, ##__VA_ARGS__) \
554 : __BPF_ARG2_TP((u32)arg3, ##__VA_ARGS__)))
555
556 return __BPF_TP_EMIT();
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700557}
558
559static const struct bpf_func_proto bpf_trace_printk_proto = {
560 .func = bpf_trace_printk,
561 .gpl_only = true,
562 .ret_type = RET_INTEGER,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800563 .arg1_type = ARG_PTR_TO_MEM,
564 .arg2_type = ARG_CONST_SIZE,
Alexei Starovoitov9c959c82015-03-25 12:49:22 -0700565};
566
Alexei Starovoitov0756ea32015-06-12 19:39:13 -0700567const struct bpf_func_proto *bpf_get_trace_printk_proto(void)
568{
569 /*
Alan Maguireac5a72e2020-07-13 12:52:33 +0100570 * This program might be calling bpf_trace_printk,
571 * so enable the associated bpf_trace/bpf_trace_printk event.
572 * Repeat this each time as it is possible a user has
573 * disabled bpf_trace_printk events. By loading a program
574 * calling bpf_trace_printk() however the user has expressed
575 * the intent to see such events.
Alexei Starovoitov0756ea32015-06-12 19:39:13 -0700576 */
Alan Maguireac5a72e2020-07-13 12:52:33 +0100577 if (trace_set_clr_event("bpf_trace", "bpf_trace_printk", 1))
578 pr_warn_ratelimited("could not enable bpf_trace_printk events");
Alexei Starovoitov0756ea32015-06-12 19:39:13 -0700579
580 return &bpf_trace_printk_proto;
581}
582
Yonghong Song492e6392020-05-09 10:59:14 -0700583#define MAX_SEQ_PRINTF_VARARGS 12
584#define MAX_SEQ_PRINTF_MAX_MEMCPY 6
585#define MAX_SEQ_PRINTF_STR_LEN 128
586
587struct bpf_seq_printf_buf {
588 char buf[MAX_SEQ_PRINTF_MAX_MEMCPY][MAX_SEQ_PRINTF_STR_LEN];
589};
590static DEFINE_PER_CPU(struct bpf_seq_printf_buf, bpf_seq_printf_buf);
591static DEFINE_PER_CPU(int, bpf_seq_printf_buf_used);
592
593BPF_CALL_5(bpf_seq_printf, struct seq_file *, m, char *, fmt, u32, fmt_size,
594 const void *, data, u32, data_len)
595{
596 int err = -EINVAL, fmt_cnt = 0, memcpy_cnt = 0;
597 int i, buf_used, copy_size, num_args;
598 u64 params[MAX_SEQ_PRINTF_VARARGS];
599 struct bpf_seq_printf_buf *bufs;
600 const u64 *args = data;
601
602 buf_used = this_cpu_inc_return(bpf_seq_printf_buf_used);
603 if (WARN_ON_ONCE(buf_used > 1)) {
604 err = -EBUSY;
605 goto out;
606 }
607
608 bufs = this_cpu_ptr(&bpf_seq_printf_buf);
609
610 /*
611 * bpf_check()->check_func_arg()->check_stack_boundary()
612 * guarantees that fmt points to bpf program stack,
613 * fmt_size bytes of it were initialized and fmt_size > 0
614 */
615 if (fmt[--fmt_size] != 0)
616 goto out;
617
618 if (data_len & 7)
619 goto out;
620
621 for (i = 0; i < fmt_size; i++) {
622 if (fmt[i] == '%') {
623 if (fmt[i + 1] == '%')
624 i++;
625 else if (!data || !data_len)
626 goto out;
627 }
628 }
629
630 num_args = data_len / 8;
631
632 /* check format string for allowed specifiers */
633 for (i = 0; i < fmt_size; i++) {
634 /* only printable ascii for now. */
635 if ((!isprint(fmt[i]) && !isspace(fmt[i])) || !isascii(fmt[i])) {
636 err = -EINVAL;
637 goto out;
638 }
639
640 if (fmt[i] != '%')
641 continue;
642
643 if (fmt[i + 1] == '%') {
644 i++;
645 continue;
646 }
647
648 if (fmt_cnt >= MAX_SEQ_PRINTF_VARARGS) {
649 err = -E2BIG;
650 goto out;
651 }
652
653 if (fmt_cnt >= num_args) {
654 err = -EINVAL;
655 goto out;
656 }
657
658 /* fmt[i] != 0 && fmt[last] == 0, so we can access fmt[i + 1] */
659 i++;
660
661 /* skip optional "[0 +-][num]" width formating field */
662 while (fmt[i] == '0' || fmt[i] == '+' || fmt[i] == '-' ||
663 fmt[i] == ' ')
664 i++;
665 if (fmt[i] >= '1' && fmt[i] <= '9') {
666 i++;
667 while (fmt[i] >= '0' && fmt[i] <= '9')
668 i++;
669 }
670
671 if (fmt[i] == 's') {
Andrew Morton19c8d8a2020-06-08 21:34:37 -0700672 void *unsafe_ptr;
673
Yonghong Song492e6392020-05-09 10:59:14 -0700674 /* try our best to copy */
675 if (memcpy_cnt >= MAX_SEQ_PRINTF_MAX_MEMCPY) {
676 err = -E2BIG;
677 goto out;
678 }
679
Andrew Morton19c8d8a2020-06-08 21:34:37 -0700680 unsafe_ptr = (void *)(long)args[fmt_cnt];
681 err = strncpy_from_kernel_nofault(bufs->buf[memcpy_cnt],
682 unsafe_ptr, MAX_SEQ_PRINTF_STR_LEN);
Yonghong Song492e6392020-05-09 10:59:14 -0700683 if (err < 0)
684 bufs->buf[memcpy_cnt][0] = '\0';
685 params[fmt_cnt] = (u64)(long)bufs->buf[memcpy_cnt];
686
687 fmt_cnt++;
688 memcpy_cnt++;
689 continue;
690 }
691
692 if (fmt[i] == 'p') {
693 if (fmt[i + 1] == 0 ||
694 fmt[i + 1] == 'K' ||
Song Liu2df6bb542020-06-29 23:28:45 -0700695 fmt[i + 1] == 'x' ||
696 fmt[i + 1] == 'B') {
Yonghong Song492e6392020-05-09 10:59:14 -0700697 /* just kernel pointers */
698 params[fmt_cnt] = args[fmt_cnt];
699 fmt_cnt++;
700 continue;
701 }
702
703 /* only support "%pI4", "%pi4", "%pI6" and "%pi6". */
704 if (fmt[i + 1] != 'i' && fmt[i + 1] != 'I') {
705 err = -EINVAL;
706 goto out;
707 }
708 if (fmt[i + 2] != '4' && fmt[i + 2] != '6') {
709 err = -EINVAL;
710 goto out;
711 }
712
713 if (memcpy_cnt >= MAX_SEQ_PRINTF_MAX_MEMCPY) {
714 err = -E2BIG;
715 goto out;
716 }
717
718
719 copy_size = (fmt[i + 2] == '4') ? 4 : 16;
720
Christoph Hellwigfe557312020-06-17 09:37:53 +0200721 err = copy_from_kernel_nofault(bufs->buf[memcpy_cnt],
Yonghong Song492e6392020-05-09 10:59:14 -0700722 (void *) (long) args[fmt_cnt],
723 copy_size);
724 if (err < 0)
725 memset(bufs->buf[memcpy_cnt], 0, copy_size);
726 params[fmt_cnt] = (u64)(long)bufs->buf[memcpy_cnt];
727
728 i += 2;
729 fmt_cnt++;
730 memcpy_cnt++;
731 continue;
732 }
733
734 if (fmt[i] == 'l') {
735 i++;
736 if (fmt[i] == 'l')
737 i++;
738 }
739
740 if (fmt[i] != 'i' && fmt[i] != 'd' &&
Yonghong Songc06b0222020-06-23 16:08:07 -0700741 fmt[i] != 'u' && fmt[i] != 'x' &&
742 fmt[i] != 'X') {
Yonghong Song492e6392020-05-09 10:59:14 -0700743 err = -EINVAL;
744 goto out;
745 }
746
747 params[fmt_cnt] = args[fmt_cnt];
748 fmt_cnt++;
749 }
750
751 /* Maximumly we can have MAX_SEQ_PRINTF_VARARGS parameter, just give
752 * all of them to seq_printf().
753 */
754 seq_printf(m, fmt, params[0], params[1], params[2], params[3],
755 params[4], params[5], params[6], params[7], params[8],
756 params[9], params[10], params[11]);
757
758 err = seq_has_overflowed(m) ? -EOVERFLOW : 0;
759out:
760 this_cpu_dec(bpf_seq_printf_buf_used);
761 return err;
762}
763
Lorenz Bauer9436ef62020-09-21 13:12:20 +0100764BTF_ID_LIST_SINGLE(btf_seq_file_ids, struct, seq_file)
Jiri Olsac9a0f3b2020-07-11 23:53:24 +0200765
Yonghong Song492e6392020-05-09 10:59:14 -0700766static const struct bpf_func_proto bpf_seq_printf_proto = {
767 .func = bpf_seq_printf,
768 .gpl_only = true,
769 .ret_type = RET_INTEGER,
770 .arg1_type = ARG_PTR_TO_BTF_ID,
Lorenz Bauer9436ef62020-09-21 13:12:20 +0100771 .arg1_btf_id = &btf_seq_file_ids[0],
Yonghong Song492e6392020-05-09 10:59:14 -0700772 .arg2_type = ARG_PTR_TO_MEM,
773 .arg3_type = ARG_CONST_SIZE,
774 .arg4_type = ARG_PTR_TO_MEM_OR_NULL,
775 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
Yonghong Song492e6392020-05-09 10:59:14 -0700776};
777
778BPF_CALL_3(bpf_seq_write, struct seq_file *, m, const void *, data, u32, len)
779{
780 return seq_write(m, data, len) ? -EOVERFLOW : 0;
781}
782
Yonghong Song492e6392020-05-09 10:59:14 -0700783static const struct bpf_func_proto bpf_seq_write_proto = {
784 .func = bpf_seq_write,
785 .gpl_only = true,
786 .ret_type = RET_INTEGER,
787 .arg1_type = ARG_PTR_TO_BTF_ID,
Lorenz Bauer9436ef62020-09-21 13:12:20 +0100788 .arg1_btf_id = &btf_seq_file_ids[0],
Yonghong Song492e6392020-05-09 10:59:14 -0700789 .arg2_type = ARG_PTR_TO_MEM,
790 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
Yonghong Song492e6392020-05-09 10:59:14 -0700791};
792
Alan Maguireeb411372020-09-28 12:31:09 +0100793BPF_CALL_4(bpf_seq_printf_btf, struct seq_file *, m, struct btf_ptr *, ptr,
794 u32, btf_ptr_size, u64, flags)
795{
796 const struct btf *btf;
797 s32 btf_id;
798 int ret;
799
800 ret = bpf_btf_printf_prepare(ptr, btf_ptr_size, flags, &btf, &btf_id);
801 if (ret)
802 return ret;
803
804 return btf_type_seq_show_flags(btf, btf_id, ptr->ptr, m, flags);
805}
806
807static const struct bpf_func_proto bpf_seq_printf_btf_proto = {
808 .func = bpf_seq_printf_btf,
809 .gpl_only = true,
810 .ret_type = RET_INTEGER,
811 .arg1_type = ARG_PTR_TO_BTF_ID,
812 .arg1_btf_id = &btf_seq_file_ids[0],
813 .arg2_type = ARG_PTR_TO_MEM,
814 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
815 .arg4_type = ARG_ANYTHING,
Alexei Starovoitovd9847d32015-03-25 12:49:21 -0700816};
817
Yonghong Song908432c2017-10-05 09:19:20 -0700818static __always_inline int
819get_map_perf_counter(struct bpf_map *map, u64 flags,
820 u64 *value, u64 *enabled, u64 *running)
Kaixu Xia35578d72015-08-06 07:02:35 +0000821{
Kaixu Xia35578d72015-08-06 07:02:35 +0000822 struct bpf_array *array = container_of(map, struct bpf_array, map);
Daniel Borkmann6816a7f2016-06-28 12:18:25 +0200823 unsigned int cpu = smp_processor_id();
824 u64 index = flags & BPF_F_INDEX_MASK;
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200825 struct bpf_event_entry *ee;
Kaixu Xia35578d72015-08-06 07:02:35 +0000826
Daniel Borkmann6816a7f2016-06-28 12:18:25 +0200827 if (unlikely(flags & ~(BPF_F_INDEX_MASK)))
828 return -EINVAL;
829 if (index == BPF_F_CURRENT_CPU)
830 index = cpu;
Kaixu Xia35578d72015-08-06 07:02:35 +0000831 if (unlikely(index >= array->map.max_entries))
832 return -E2BIG;
833
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200834 ee = READ_ONCE(array->ptrs[index]);
Daniel Borkmann1ca1cc92016-06-28 12:18:23 +0200835 if (!ee)
Kaixu Xia35578d72015-08-06 07:02:35 +0000836 return -ENOENT;
837
Yonghong Song908432c2017-10-05 09:19:20 -0700838 return perf_event_read_local(ee->event, value, enabled, running);
839}
840
841BPF_CALL_2(bpf_perf_event_read, struct bpf_map *, map, u64, flags)
842{
843 u64 value = 0;
844 int err;
845
846 err = get_map_perf_counter(map, flags, &value, NULL, NULL);
Kaixu Xia35578d72015-08-06 07:02:35 +0000847 /*
Alexei Starovoitovf91840a2017-06-02 21:03:52 -0700848 * this api is ugly since we miss [-22..-2] range of valid
849 * counter values, but that's uapi
Kaixu Xia35578d72015-08-06 07:02:35 +0000850 */
Alexei Starovoitovf91840a2017-06-02 21:03:52 -0700851 if (err)
852 return err;
853 return value;
Kaixu Xia35578d72015-08-06 07:02:35 +0000854}
855
Alexei Starovoitov62544ce2015-10-22 17:10:14 -0700856static const struct bpf_func_proto bpf_perf_event_read_proto = {
Kaixu Xia35578d72015-08-06 07:02:35 +0000857 .func = bpf_perf_event_read,
Alexei Starovoitov1075ef52015-10-23 14:58:19 -0700858 .gpl_only = true,
Kaixu Xia35578d72015-08-06 07:02:35 +0000859 .ret_type = RET_INTEGER,
860 .arg1_type = ARG_CONST_MAP_PTR,
861 .arg2_type = ARG_ANYTHING,
862};
863
Yonghong Song908432c2017-10-05 09:19:20 -0700864BPF_CALL_4(bpf_perf_event_read_value, struct bpf_map *, map, u64, flags,
865 struct bpf_perf_event_value *, buf, u32, size)
866{
867 int err = -EINVAL;
868
869 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
870 goto clear;
871 err = get_map_perf_counter(map, flags, &buf->counter, &buf->enabled,
872 &buf->running);
873 if (unlikely(err))
874 goto clear;
875 return 0;
876clear:
877 memset(buf, 0, size);
878 return err;
879}
880
881static const struct bpf_func_proto bpf_perf_event_read_value_proto = {
882 .func = bpf_perf_event_read_value,
883 .gpl_only = true,
884 .ret_type = RET_INTEGER,
885 .arg1_type = ARG_CONST_MAP_PTR,
886 .arg2_type = ARG_ANYTHING,
887 .arg3_type = ARG_PTR_TO_UNINIT_MEM,
888 .arg4_type = ARG_CONST_SIZE,
889};
890
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200891static __always_inline u64
892__bpf_perf_event_output(struct pt_regs *regs, struct bpf_map *map,
Daniel Borkmann283ca522017-12-12 02:25:30 +0100893 u64 flags, struct perf_sample_data *sd)
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700894{
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700895 struct bpf_array *array = container_of(map, struct bpf_array, map);
Daniel Borkmannd7931332016-06-28 12:18:24 +0200896 unsigned int cpu = smp_processor_id();
Daniel Borkmann1e337592016-04-18 21:01:23 +0200897 u64 index = flags & BPF_F_INDEX_MASK;
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200898 struct bpf_event_entry *ee;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700899 struct perf_event *event;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700900
Daniel Borkmann1e337592016-04-18 21:01:23 +0200901 if (index == BPF_F_CURRENT_CPU)
Daniel Borkmannd7931332016-06-28 12:18:24 +0200902 index = cpu;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700903 if (unlikely(index >= array->map.max_entries))
904 return -E2BIG;
905
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200906 ee = READ_ONCE(array->ptrs[index]);
Daniel Borkmann1ca1cc92016-06-28 12:18:23 +0200907 if (!ee)
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700908 return -ENOENT;
909
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200910 event = ee->event;
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700911 if (unlikely(event->attr.type != PERF_TYPE_SOFTWARE ||
912 event->attr.config != PERF_COUNT_SW_BPF_OUTPUT))
913 return -EINVAL;
914
Daniel Borkmannd7931332016-06-28 12:18:24 +0200915 if (unlikely(event->oncpu != cpu))
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700916 return -EOPNOTSUPP;
917
Arnaldo Carvalho de Melo56201962019-01-11 13:20:20 -0300918 return perf_event_output(event, sd, regs);
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700919}
920
Matt Mullins9594dc32019-06-11 14:53:04 -0700921/*
922 * Support executing tracepoints in normal, irq, and nmi context that each call
923 * bpf_perf_event_output
924 */
925struct bpf_trace_sample_data {
926 struct perf_sample_data sds[3];
927};
928
929static DEFINE_PER_CPU(struct bpf_trace_sample_data, bpf_trace_sds);
930static DEFINE_PER_CPU(int, bpf_trace_nest_level);
Daniel Borkmannf3694e02016-09-09 02:45:31 +0200931BPF_CALL_5(bpf_perf_event_output, struct pt_regs *, regs, struct bpf_map *, map,
932 u64, flags, void *, data, u64, size)
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200933{
Matt Mullins9594dc32019-06-11 14:53:04 -0700934 struct bpf_trace_sample_data *sds = this_cpu_ptr(&bpf_trace_sds);
935 int nest_level = this_cpu_inc_return(bpf_trace_nest_level);
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200936 struct perf_raw_record raw = {
937 .frag = {
938 .size = size,
939 .data = data,
940 },
941 };
Matt Mullins9594dc32019-06-11 14:53:04 -0700942 struct perf_sample_data *sd;
943 int err;
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200944
Matt Mullins9594dc32019-06-11 14:53:04 -0700945 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(sds->sds))) {
946 err = -EBUSY;
947 goto out;
948 }
949
950 sd = &sds->sds[nest_level - 1];
951
952 if (unlikely(flags & ~(BPF_F_INDEX_MASK))) {
953 err = -EINVAL;
954 goto out;
955 }
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200956
Daniel Borkmann283ca522017-12-12 02:25:30 +0100957 perf_sample_data_init(sd, 0, 0);
958 sd->raw = &raw;
959
Matt Mullins9594dc32019-06-11 14:53:04 -0700960 err = __bpf_perf_event_output(regs, map, flags, sd);
961
962out:
963 this_cpu_dec(bpf_trace_nest_level);
964 return err;
Daniel Borkmann8e7a3922016-07-14 18:08:04 +0200965}
966
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700967static const struct bpf_func_proto bpf_perf_event_output_proto = {
968 .func = bpf_perf_event_output,
Alexei Starovoitov1075ef52015-10-23 14:58:19 -0700969 .gpl_only = true,
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700970 .ret_type = RET_INTEGER,
971 .arg1_type = ARG_PTR_TO_CTX,
972 .arg2_type = ARG_CONST_MAP_PTR,
973 .arg3_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800974 .arg4_type = ARG_PTR_TO_MEM,
Gianluca Borelloa60dd352017-11-22 18:32:56 +0000975 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitova43eec32015-10-20 20:02:34 -0700976};
977
Allan Zhang768fb612019-09-25 16:43:12 -0700978static DEFINE_PER_CPU(int, bpf_event_output_nest_level);
979struct bpf_nested_pt_regs {
980 struct pt_regs regs[3];
981};
982static DEFINE_PER_CPU(struct bpf_nested_pt_regs, bpf_pt_regs);
983static DEFINE_PER_CPU(struct bpf_trace_sample_data, bpf_misc_sds);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200984
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200985u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
986 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy)
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200987{
Allan Zhang768fb612019-09-25 16:43:12 -0700988 int nest_level = this_cpu_inc_return(bpf_event_output_nest_level);
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200989 struct perf_raw_frag frag = {
990 .copy = ctx_copy,
991 .size = ctx_size,
992 .data = ctx,
993 };
994 struct perf_raw_record raw = {
995 .frag = {
Andrew Morton183fc152016-07-18 15:50:58 -0700996 {
997 .next = ctx_size ? &frag : NULL,
998 },
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200999 .size = meta_size,
1000 .data = meta,
1001 },
1002 };
Allan Zhang768fb612019-09-25 16:43:12 -07001003 struct perf_sample_data *sd;
1004 struct pt_regs *regs;
1005 u64 ret;
1006
1007 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(bpf_misc_sds.sds))) {
1008 ret = -EBUSY;
1009 goto out;
1010 }
1011 sd = this_cpu_ptr(&bpf_misc_sds.sds[nest_level - 1]);
1012 regs = this_cpu_ptr(&bpf_pt_regs.regs[nest_level - 1]);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02001013
1014 perf_fetch_caller_regs(regs);
Daniel Borkmann283ca522017-12-12 02:25:30 +01001015 perf_sample_data_init(sd, 0, 0);
1016 sd->raw = &raw;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02001017
Allan Zhang768fb612019-09-25 16:43:12 -07001018 ret = __bpf_perf_event_output(regs, map, flags, sd);
1019out:
1020 this_cpu_dec(bpf_event_output_nest_level);
1021 return ret;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02001022}
1023
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001024BPF_CALL_0(bpf_get_current_task)
Alexei Starovoitov606274c2016-07-06 22:38:36 -07001025{
1026 return (long) current;
1027}
1028
John Fastabendf4703782020-05-24 09:50:55 -07001029const struct bpf_func_proto bpf_get_current_task_proto = {
Alexei Starovoitov606274c2016-07-06 22:38:36 -07001030 .func = bpf_get_current_task,
1031 .gpl_only = true,
1032 .ret_type = RET_INTEGER,
1033};
1034
KP Singh3ca10322020-11-06 10:37:43 +00001035BPF_CALL_0(bpf_get_current_task_btf)
1036{
1037 return (unsigned long) current;
1038}
1039
1040BTF_ID_LIST_SINGLE(bpf_get_current_btf_ids, struct, task_struct)
1041
1042static const struct bpf_func_proto bpf_get_current_task_btf_proto = {
1043 .func = bpf_get_current_task_btf,
1044 .gpl_only = true,
1045 .ret_type = RET_PTR_TO_BTF_ID,
1046 .ret_btf_id = &bpf_get_current_btf_ids[0],
1047};
1048
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001049BPF_CALL_2(bpf_current_task_under_cgroup, struct bpf_map *, map, u32, idx)
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001050{
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001051 struct bpf_array *array = container_of(map, struct bpf_array, map);
1052 struct cgroup *cgrp;
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001053
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001054 if (unlikely(idx >= array->map.max_entries))
1055 return -E2BIG;
1056
1057 cgrp = READ_ONCE(array->ptrs[idx]);
1058 if (unlikely(!cgrp))
1059 return -EAGAIN;
1060
1061 return task_under_cgroup_hierarchy(current, cgrp);
1062}
1063
1064static const struct bpf_func_proto bpf_current_task_under_cgroup_proto = {
1065 .func = bpf_current_task_under_cgroup,
1066 .gpl_only = false,
1067 .ret_type = RET_INTEGER,
1068 .arg1_type = ARG_CONST_MAP_PTR,
1069 .arg2_type = ARG_ANYTHING,
1070};
1071
Yonghong Song8b401f92019-05-23 14:47:45 -07001072struct send_signal_irq_work {
1073 struct irq_work irq_work;
1074 struct task_struct *task;
1075 u32 sig;
Yonghong Song84829412020-01-14 19:50:02 -08001076 enum pid_type type;
Yonghong Song8b401f92019-05-23 14:47:45 -07001077};
1078
1079static DEFINE_PER_CPU(struct send_signal_irq_work, send_signal_work);
1080
1081static void do_bpf_send_signal(struct irq_work *entry)
1082{
1083 struct send_signal_irq_work *work;
1084
1085 work = container_of(entry, struct send_signal_irq_work, irq_work);
Yonghong Song84829412020-01-14 19:50:02 -08001086 group_send_sig_info(work->sig, SEND_SIG_PRIV, work->task, work->type);
Yonghong Song8b401f92019-05-23 14:47:45 -07001087}
1088
Yonghong Song84829412020-01-14 19:50:02 -08001089static int bpf_send_signal_common(u32 sig, enum pid_type type)
Yonghong Song8b401f92019-05-23 14:47:45 -07001090{
1091 struct send_signal_irq_work *work = NULL;
1092
1093 /* Similar to bpf_probe_write_user, task needs to be
1094 * in a sound condition and kernel memory access be
1095 * permitted in order to send signal to the current
1096 * task.
1097 */
1098 if (unlikely(current->flags & (PF_KTHREAD | PF_EXITING)))
1099 return -EPERM;
1100 if (unlikely(uaccess_kernel()))
1101 return -EPERM;
1102 if (unlikely(!nmi_uaccess_okay()))
1103 return -EPERM;
1104
Yonghong Song1bc78962020-03-04 11:11:04 -08001105 if (irqs_disabled()) {
Yonghong Songe1afb7022019-05-25 11:57:53 -07001106 /* Do an early check on signal validity. Otherwise,
1107 * the error is lost in deferred irq_work.
1108 */
1109 if (unlikely(!valid_signal(sig)))
1110 return -EINVAL;
1111
Yonghong Song8b401f92019-05-23 14:47:45 -07001112 work = this_cpu_ptr(&send_signal_work);
Peter Zijlstra7a9f50a2020-06-15 11:51:29 +02001113 if (irq_work_is_busy(&work->irq_work))
Yonghong Song8b401f92019-05-23 14:47:45 -07001114 return -EBUSY;
1115
1116 /* Add the current task, which is the target of sending signal,
1117 * to the irq_work. The current task may change when queued
1118 * irq works get executed.
1119 */
1120 work->task = current;
1121 work->sig = sig;
Yonghong Song84829412020-01-14 19:50:02 -08001122 work->type = type;
Yonghong Song8b401f92019-05-23 14:47:45 -07001123 irq_work_queue(&work->irq_work);
1124 return 0;
1125 }
1126
Yonghong Song84829412020-01-14 19:50:02 -08001127 return group_send_sig_info(sig, SEND_SIG_PRIV, current, type);
1128}
1129
1130BPF_CALL_1(bpf_send_signal, u32, sig)
1131{
1132 return bpf_send_signal_common(sig, PIDTYPE_TGID);
Yonghong Song8b401f92019-05-23 14:47:45 -07001133}
1134
1135static const struct bpf_func_proto bpf_send_signal_proto = {
1136 .func = bpf_send_signal,
1137 .gpl_only = false,
1138 .ret_type = RET_INTEGER,
1139 .arg1_type = ARG_ANYTHING,
1140};
1141
Yonghong Song84829412020-01-14 19:50:02 -08001142BPF_CALL_1(bpf_send_signal_thread, u32, sig)
1143{
1144 return bpf_send_signal_common(sig, PIDTYPE_PID);
1145}
1146
1147static const struct bpf_func_proto bpf_send_signal_thread_proto = {
1148 .func = bpf_send_signal_thread,
1149 .gpl_only = false,
1150 .ret_type = RET_INTEGER,
1151 .arg1_type = ARG_ANYTHING,
1152};
1153
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001154BPF_CALL_3(bpf_d_path, struct path *, path, char *, buf, u32, sz)
1155{
1156 long len;
1157 char *p;
1158
1159 if (!sz)
1160 return 0;
1161
1162 p = d_path(path, buf, sz);
1163 if (IS_ERR(p)) {
1164 len = PTR_ERR(p);
1165 } else {
1166 len = buf + sz - p;
1167 memmove(buf, p, len);
1168 }
1169
1170 return len;
1171}
1172
1173BTF_SET_START(btf_allowlist_d_path)
Jiri Olsaa8a71792020-09-18 13:23:38 +02001174#ifdef CONFIG_SECURITY
1175BTF_ID(func, security_file_permission)
1176BTF_ID(func, security_inode_getattr)
1177BTF_ID(func, security_file_open)
1178#endif
1179#ifdef CONFIG_SECURITY_PATH
1180BTF_ID(func, security_path_truncate)
1181#endif
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001182BTF_ID(func, vfs_truncate)
1183BTF_ID(func, vfs_fallocate)
1184BTF_ID(func, dentry_open)
1185BTF_ID(func, vfs_getattr)
1186BTF_ID(func, filp_close)
1187BTF_SET_END(btf_allowlist_d_path)
1188
1189static bool bpf_d_path_allowed(const struct bpf_prog *prog)
1190{
Song Liu3d06f342021-02-12 10:31:06 -08001191 if (prog->type == BPF_PROG_TYPE_TRACING &&
1192 prog->expected_attach_type == BPF_TRACE_ITER)
1193 return true;
1194
KP Singh6f100642020-11-13 00:59:30 +00001195 if (prog->type == BPF_PROG_TYPE_LSM)
1196 return bpf_lsm_is_sleepable_hook(prog->aux->attach_btf_id);
1197
1198 return btf_id_set_contains(&btf_allowlist_d_path,
1199 prog->aux->attach_btf_id);
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001200}
1201
Lorenz Bauer9436ef62020-09-21 13:12:20 +01001202BTF_ID_LIST_SINGLE(bpf_d_path_btf_ids, struct, path)
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001203
1204static const struct bpf_func_proto bpf_d_path_proto = {
1205 .func = bpf_d_path,
1206 .gpl_only = false,
1207 .ret_type = RET_INTEGER,
1208 .arg1_type = ARG_PTR_TO_BTF_ID,
Lorenz Bauer9436ef62020-09-21 13:12:20 +01001209 .arg1_btf_id = &bpf_d_path_btf_ids[0],
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001210 .arg2_type = ARG_PTR_TO_MEM,
1211 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001212 .allowed = bpf_d_path_allowed,
1213};
1214
Alan Maguirec4d0bfb2020-09-28 12:31:05 +01001215#define BTF_F_ALL (BTF_F_COMPACT | BTF_F_NONAME | \
1216 BTF_F_PTR_RAW | BTF_F_ZERO)
1217
1218static int bpf_btf_printf_prepare(struct btf_ptr *ptr, u32 btf_ptr_size,
1219 u64 flags, const struct btf **btf,
1220 s32 *btf_id)
1221{
1222 const struct btf_type *t;
1223
1224 if (unlikely(flags & ~(BTF_F_ALL)))
1225 return -EINVAL;
1226
1227 if (btf_ptr_size != sizeof(struct btf_ptr))
1228 return -EINVAL;
1229
1230 *btf = bpf_get_btf_vmlinux();
1231
1232 if (IS_ERR_OR_NULL(*btf))
Wang Qingabbaa432020-11-07 15:45:44 +08001233 return IS_ERR(*btf) ? PTR_ERR(*btf) : -EINVAL;
Alan Maguirec4d0bfb2020-09-28 12:31:05 +01001234
1235 if (ptr->type_id > 0)
1236 *btf_id = ptr->type_id;
1237 else
1238 return -EINVAL;
1239
1240 if (*btf_id > 0)
1241 t = btf_type_by_id(*btf, *btf_id);
1242 if (*btf_id <= 0 || !t)
1243 return -ENOENT;
1244
1245 return 0;
1246}
1247
1248BPF_CALL_5(bpf_snprintf_btf, char *, str, u32, str_size, struct btf_ptr *, ptr,
1249 u32, btf_ptr_size, u64, flags)
1250{
1251 const struct btf *btf;
1252 s32 btf_id;
1253 int ret;
1254
1255 ret = bpf_btf_printf_prepare(ptr, btf_ptr_size, flags, &btf, &btf_id);
1256 if (ret)
1257 return ret;
1258
1259 return btf_type_snprintf_show(btf, btf_id, ptr->ptr, str, str_size,
1260 flags);
1261}
1262
1263const struct bpf_func_proto bpf_snprintf_btf_proto = {
1264 .func = bpf_snprintf_btf,
1265 .gpl_only = false,
1266 .ret_type = RET_INTEGER,
1267 .arg1_type = ARG_PTR_TO_MEM,
1268 .arg2_type = ARG_CONST_SIZE,
1269 .arg3_type = ARG_PTR_TO_MEM,
1270 .arg4_type = ARG_CONST_SIZE,
1271 .arg5_type = ARG_ANYTHING,
1272};
1273
KP Singhfc611f42020-03-29 01:43:49 +01001274const struct bpf_func_proto *
1275bpf_tracing_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov25415172015-03-25 12:49:20 -07001276{
1277 switch (func_id) {
1278 case BPF_FUNC_map_lookup_elem:
1279 return &bpf_map_lookup_elem_proto;
1280 case BPF_FUNC_map_update_elem:
1281 return &bpf_map_update_elem_proto;
1282 case BPF_FUNC_map_delete_elem:
1283 return &bpf_map_delete_elem_proto;
Alban Crequy02a8c812019-04-14 18:58:46 +02001284 case BPF_FUNC_map_push_elem:
1285 return &bpf_map_push_elem_proto;
1286 case BPF_FUNC_map_pop_elem:
1287 return &bpf_map_pop_elem_proto;
1288 case BPF_FUNC_map_peek_elem:
1289 return &bpf_map_peek_elem_proto;
Alexei Starovoitovd9847d32015-03-25 12:49:21 -07001290 case BPF_FUNC_ktime_get_ns:
1291 return &bpf_ktime_get_ns_proto;
Maciej Żenczykowski71d19212020-04-26 09:15:25 -07001292 case BPF_FUNC_ktime_get_boot_ns:
1293 return &bpf_ktime_get_boot_ns_proto;
Dmitrii Banshchikovd0551262020-11-17 18:45:49 +00001294 case BPF_FUNC_ktime_get_coarse_ns:
1295 return &bpf_ktime_get_coarse_ns_proto;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001296 case BPF_FUNC_tail_call:
1297 return &bpf_tail_call_proto;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07001298 case BPF_FUNC_get_current_pid_tgid:
1299 return &bpf_get_current_pid_tgid_proto;
Alexei Starovoitov606274c2016-07-06 22:38:36 -07001300 case BPF_FUNC_get_current_task:
1301 return &bpf_get_current_task_proto;
KP Singh3ca10322020-11-06 10:37:43 +00001302 case BPF_FUNC_get_current_task_btf:
1303 return &bpf_get_current_task_btf_proto;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07001304 case BPF_FUNC_get_current_uid_gid:
1305 return &bpf_get_current_uid_gid_proto;
1306 case BPF_FUNC_get_current_comm:
1307 return &bpf_get_current_comm_proto;
Alexei Starovoitov9c959c82015-03-25 12:49:22 -07001308 case BPF_FUNC_trace_printk:
Alexei Starovoitov0756ea32015-06-12 19:39:13 -07001309 return bpf_get_trace_printk_proto();
Alexei Starovoitovab1973d2015-06-12 19:39:14 -07001310 case BPF_FUNC_get_smp_processor_id:
1311 return &bpf_get_smp_processor_id_proto;
Daniel Borkmann2d0e30c2016-10-21 12:46:33 +02001312 case BPF_FUNC_get_numa_node_id:
1313 return &bpf_get_numa_node_id_proto;
Kaixu Xia35578d72015-08-06 07:02:35 +00001314 case BPF_FUNC_perf_event_read:
1315 return &bpf_perf_event_read_proto;
Sargun Dhillon96ae5222016-07-25 05:54:46 -07001316 case BPF_FUNC_probe_write_user:
1317 return bpf_get_probe_write_proto();
Sargun Dhillon60d20f92016-08-12 08:56:52 -07001318 case BPF_FUNC_current_task_under_cgroup:
1319 return &bpf_current_task_under_cgroup_proto;
Alexei Starovoitov8937bd82016-08-11 18:17:18 -07001320 case BPF_FUNC_get_prandom_u32:
1321 return &bpf_get_prandom_u32_proto;
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001322 case BPF_FUNC_probe_read_user:
1323 return &bpf_probe_read_user_proto;
1324 case BPF_FUNC_probe_read_kernel:
1325 return &bpf_probe_read_kernel_proto;
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001326 case BPF_FUNC_probe_read_user_str:
1327 return &bpf_probe_read_user_str_proto;
1328 case BPF_FUNC_probe_read_kernel_str:
1329 return &bpf_probe_read_kernel_str_proto;
Daniel Borkmann0ebeea82020-05-15 12:11:16 +02001330#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1331 case BPF_FUNC_probe_read:
1332 return &bpf_probe_read_compat_proto;
Gianluca Borelloa5e8c072017-01-18 17:55:49 +00001333 case BPF_FUNC_probe_read_str:
Daniel Borkmann6ae08ae2019-11-02 00:17:59 +01001334 return &bpf_probe_read_compat_str_proto;
Daniel Borkmann0ebeea82020-05-15 12:11:16 +02001335#endif
Yonghong Song34ea38c2018-06-04 08:53:41 -07001336#ifdef CONFIG_CGROUPS
Yonghong Songbf6fa2c82018-06-03 15:59:41 -07001337 case BPF_FUNC_get_current_cgroup_id:
1338 return &bpf_get_current_cgroup_id_proto;
Yonghong Song34ea38c2018-06-04 08:53:41 -07001339#endif
Yonghong Song8b401f92019-05-23 14:47:45 -07001340 case BPF_FUNC_send_signal:
1341 return &bpf_send_signal_proto;
Yonghong Song84829412020-01-14 19:50:02 -08001342 case BPF_FUNC_send_signal_thread:
1343 return &bpf_send_signal_thread_proto;
Song Liub80b0332020-02-14 15:41:46 -08001344 case BPF_FUNC_perf_event_read_value:
1345 return &bpf_perf_event_read_value_proto;
Carlos Neirab4490c52020-03-04 17:41:56 -03001346 case BPF_FUNC_get_ns_current_pid_tgid:
1347 return &bpf_get_ns_current_pid_tgid_proto;
Andrii Nakryiko457f4432020-05-29 00:54:20 -07001348 case BPF_FUNC_ringbuf_output:
1349 return &bpf_ringbuf_output_proto;
1350 case BPF_FUNC_ringbuf_reserve:
1351 return &bpf_ringbuf_reserve_proto;
1352 case BPF_FUNC_ringbuf_submit:
1353 return &bpf_ringbuf_submit_proto;
1354 case BPF_FUNC_ringbuf_discard:
1355 return &bpf_ringbuf_discard_proto;
1356 case BPF_FUNC_ringbuf_query:
1357 return &bpf_ringbuf_query_proto;
Yonghong Song72e2b2b2020-06-23 16:08:08 -07001358 case BPF_FUNC_jiffies64:
1359 return &bpf_jiffies64_proto;
Song Liufa28dcb2020-06-29 23:28:44 -07001360 case BPF_FUNC_get_task_stack:
1361 return &bpf_get_task_stack_proto;
Alexei Starovoitov07be4c42020-08-27 15:01:12 -07001362 case BPF_FUNC_copy_from_user:
1363 return prog->aux->sleepable ? &bpf_copy_from_user_proto : NULL;
Alan Maguirec4d0bfb2020-09-28 12:31:05 +01001364 case BPF_FUNC_snprintf_btf:
1365 return &bpf_snprintf_btf_proto;
Andrii Nakryikob7906b72020-12-11 22:36:25 +01001366 case BPF_FUNC_per_cpu_ptr:
Hao Luoeaa6bcb2020-09-29 16:50:47 -07001367 return &bpf_per_cpu_ptr_proto;
Andrii Nakryikob7906b72020-12-11 22:36:25 +01001368 case BPF_FUNC_this_cpu_ptr:
Hao Luo63d9b802020-09-29 16:50:48 -07001369 return &bpf_this_cpu_ptr_proto;
Song Liua10787e2021-02-25 15:43:14 -08001370 case BPF_FUNC_task_storage_get:
1371 return &bpf_task_storage_get_proto;
1372 case BPF_FUNC_task_storage_delete:
1373 return &bpf_task_storage_delete_proto;
Yonghong Song69c087b2021-02-26 12:49:25 -08001374 case BPF_FUNC_for_each_map_elem:
1375 return &bpf_for_each_map_elem_proto;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001376 default:
1377 return NULL;
1378 }
1379}
1380
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001381static const struct bpf_func_proto *
1382kprobe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001383{
1384 switch (func_id) {
Alexei Starovoitova43eec32015-10-20 20:02:34 -07001385 case BPF_FUNC_perf_event_output:
1386 return &bpf_perf_event_output_proto;
Alexei Starovoitovd5a3b1f2016-02-17 19:58:58 -08001387 case BPF_FUNC_get_stackid:
1388 return &bpf_get_stackid_proto;
Yonghong Songc195651e2018-04-28 22:28:08 -07001389 case BPF_FUNC_get_stack:
1390 return &bpf_get_stack_proto;
Josef Bacik9802d862017-12-11 11:36:48 -05001391#ifdef CONFIG_BPF_KPROBE_OVERRIDE
1392 case BPF_FUNC_override_return:
1393 return &bpf_override_return_proto;
1394#endif
Alexei Starovoitov25415172015-03-25 12:49:20 -07001395 default:
KP Singhfc611f42020-03-29 01:43:49 +01001396 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitov25415172015-03-25 12:49:20 -07001397 }
1398}
1399
1400/* bpf+kprobe programs can access fields of 'struct pt_regs' */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07001401static bool kprobe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001402 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001403 struct bpf_insn_access_aux *info)
Alexei Starovoitov25415172015-03-25 12:49:20 -07001404{
Alexei Starovoitov25415172015-03-25 12:49:20 -07001405 if (off < 0 || off >= sizeof(struct pt_regs))
1406 return false;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001407 if (type != BPF_READ)
1408 return false;
Alexei Starovoitov25415172015-03-25 12:49:20 -07001409 if (off % size != 0)
1410 return false;
Daniel Borkmann2d071c62017-01-15 01:34:25 +01001411 /*
1412 * Assertion for 32 bit to make sure last 8 byte access
1413 * (BPF_DW) to the last 4 byte member is disallowed.
1414 */
1415 if (off + size > sizeof(struct pt_regs))
1416 return false;
1417
Alexei Starovoitov25415172015-03-25 12:49:20 -07001418 return true;
1419}
1420
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001421const struct bpf_verifier_ops kprobe_verifier_ops = {
Alexei Starovoitov25415172015-03-25 12:49:20 -07001422 .get_func_proto = kprobe_prog_func_proto,
1423 .is_valid_access = kprobe_prog_is_valid_access,
1424};
1425
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001426const struct bpf_prog_ops kprobe_prog_ops = {
1427};
1428
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001429BPF_CALL_5(bpf_perf_event_output_tp, void *, tp_buff, struct bpf_map *, map,
1430 u64, flags, void *, data, u64, size)
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001431{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001432 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
1433
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001434 /*
1435 * r1 points to perf tracepoint buffer where first 8 bytes are hidden
1436 * from bpf program and contain a pointer to 'struct pt_regs'. Fetch it
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001437 * from there and call the same bpf_perf_event_output() helper inline.
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001438 */
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001439 return ____bpf_perf_event_output(regs, map, flags, data, size);
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001440}
1441
1442static const struct bpf_func_proto bpf_perf_event_output_proto_tp = {
1443 .func = bpf_perf_event_output_tp,
1444 .gpl_only = true,
1445 .ret_type = RET_INTEGER,
1446 .arg1_type = ARG_PTR_TO_CTX,
1447 .arg2_type = ARG_CONST_MAP_PTR,
1448 .arg3_type = ARG_ANYTHING,
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -08001449 .arg4_type = ARG_PTR_TO_MEM,
Gianluca Borelloa60dd352017-11-22 18:32:56 +00001450 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001451};
1452
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001453BPF_CALL_3(bpf_get_stackid_tp, void *, tp_buff, struct bpf_map *, map,
1454 u64, flags)
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001455{
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001456 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001457
Daniel Borkmannf3694e02016-09-09 02:45:31 +02001458 /*
1459 * Same comment as in bpf_perf_event_output_tp(), only that this time
1460 * the other helper's function body cannot be inlined due to being
1461 * external, thus we need to call raw helper function.
1462 */
1463 return bpf_get_stackid((unsigned long) regs, (unsigned long) map,
1464 flags, 0, 0);
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001465}
1466
1467static const struct bpf_func_proto bpf_get_stackid_proto_tp = {
1468 .func = bpf_get_stackid_tp,
1469 .gpl_only = true,
1470 .ret_type = RET_INTEGER,
1471 .arg1_type = ARG_PTR_TO_CTX,
1472 .arg2_type = ARG_CONST_MAP_PTR,
1473 .arg3_type = ARG_ANYTHING,
1474};
1475
Yonghong Songc195651e2018-04-28 22:28:08 -07001476BPF_CALL_4(bpf_get_stack_tp, void *, tp_buff, void *, buf, u32, size,
1477 u64, flags)
1478{
1479 struct pt_regs *regs = *(struct pt_regs **)tp_buff;
1480
1481 return bpf_get_stack((unsigned long) regs, (unsigned long) buf,
1482 (unsigned long) size, flags, 0);
1483}
1484
1485static const struct bpf_func_proto bpf_get_stack_proto_tp = {
1486 .func = bpf_get_stack_tp,
1487 .gpl_only = true,
1488 .ret_type = RET_INTEGER,
1489 .arg1_type = ARG_PTR_TO_CTX,
1490 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
1491 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1492 .arg4_type = ARG_ANYTHING,
1493};
1494
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001495static const struct bpf_func_proto *
1496tp_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001497{
1498 switch (func_id) {
1499 case BPF_FUNC_perf_event_output:
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001500 return &bpf_perf_event_output_proto_tp;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001501 case BPF_FUNC_get_stackid:
Alexei Starovoitov9940d672016-04-06 18:43:27 -07001502 return &bpf_get_stackid_proto_tp;
Yonghong Songc195651e2018-04-28 22:28:08 -07001503 case BPF_FUNC_get_stack:
1504 return &bpf_get_stack_proto_tp;
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001505 default:
KP Singhfc611f42020-03-29 01:43:49 +01001506 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001507 }
1508}
1509
Alexei Starovoitov19de99f2016-06-15 18:25:38 -07001510static bool tp_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001511 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001512 struct bpf_insn_access_aux *info)
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001513{
1514 if (off < sizeof(void *) || off >= PERF_MAX_TRACE_SIZE)
1515 return false;
1516 if (type != BPF_READ)
1517 return false;
1518 if (off % size != 0)
1519 return false;
Daniel Borkmann2d071c62017-01-15 01:34:25 +01001520
1521 BUILD_BUG_ON(PERF_MAX_TRACE_SIZE % sizeof(__u64));
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001522 return true;
1523}
1524
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001525const struct bpf_verifier_ops tracepoint_verifier_ops = {
Alexei Starovoitov9fd82b612016-04-06 18:43:26 -07001526 .get_func_proto = tp_prog_func_proto,
1527 .is_valid_access = tp_prog_is_valid_access,
1528};
1529
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001530const struct bpf_prog_ops tracepoint_prog_ops = {
1531};
1532
Yonghong Songf005afe2018-03-20 11:19:17 -07001533BPF_CALL_3(bpf_perf_prog_read_value, struct bpf_perf_event_data_kern *, ctx,
1534 struct bpf_perf_event_value *, buf, u32, size)
1535{
1536 int err = -EINVAL;
1537
1538 if (unlikely(size != sizeof(struct bpf_perf_event_value)))
1539 goto clear;
1540 err = perf_event_read_local(ctx->event, &buf->counter, &buf->enabled,
1541 &buf->running);
1542 if (unlikely(err))
1543 goto clear;
1544 return 0;
1545clear:
1546 memset(buf, 0, size);
1547 return err;
1548}
1549
1550static const struct bpf_func_proto bpf_perf_prog_read_value_proto = {
1551 .func = bpf_perf_prog_read_value,
1552 .gpl_only = true,
1553 .ret_type = RET_INTEGER,
1554 .arg1_type = ARG_PTR_TO_CTX,
1555 .arg2_type = ARG_PTR_TO_UNINIT_MEM,
1556 .arg3_type = ARG_CONST_SIZE,
1557};
1558
Daniel Xufff7b642020-02-17 19:04:31 -08001559BPF_CALL_4(bpf_read_branch_records, struct bpf_perf_event_data_kern *, ctx,
1560 void *, buf, u32, size, u64, flags)
1561{
1562#ifndef CONFIG_X86
1563 return -ENOENT;
1564#else
1565 static const u32 br_entry_size = sizeof(struct perf_branch_entry);
1566 struct perf_branch_stack *br_stack = ctx->data->br_stack;
1567 u32 to_copy;
1568
1569 if (unlikely(flags & ~BPF_F_GET_BRANCH_RECORDS_SIZE))
1570 return -EINVAL;
1571
1572 if (unlikely(!br_stack))
1573 return -EINVAL;
1574
1575 if (flags & BPF_F_GET_BRANCH_RECORDS_SIZE)
1576 return br_stack->nr * br_entry_size;
1577
1578 if (!buf || (size % br_entry_size != 0))
1579 return -EINVAL;
1580
1581 to_copy = min_t(u32, br_stack->nr * br_entry_size, size);
1582 memcpy(buf, br_stack->entries, to_copy);
1583
1584 return to_copy;
1585#endif
1586}
1587
1588static const struct bpf_func_proto bpf_read_branch_records_proto = {
1589 .func = bpf_read_branch_records,
1590 .gpl_only = true,
1591 .ret_type = RET_INTEGER,
1592 .arg1_type = ARG_PTR_TO_CTX,
1593 .arg2_type = ARG_PTR_TO_MEM_OR_NULL,
1594 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1595 .arg4_type = ARG_ANYTHING,
1596};
1597
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001598static const struct bpf_func_proto *
1599pe_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Yonghong Songf005afe2018-03-20 11:19:17 -07001600{
1601 switch (func_id) {
1602 case BPF_FUNC_perf_event_output:
1603 return &bpf_perf_event_output_proto_tp;
1604 case BPF_FUNC_get_stackid:
Song Liu7b04d6d2020-07-23 11:06:44 -07001605 return &bpf_get_stackid_proto_pe;
Yonghong Songc195651e2018-04-28 22:28:08 -07001606 case BPF_FUNC_get_stack:
Song Liu7b04d6d2020-07-23 11:06:44 -07001607 return &bpf_get_stack_proto_pe;
Yonghong Songf005afe2018-03-20 11:19:17 -07001608 case BPF_FUNC_perf_prog_read_value:
1609 return &bpf_perf_prog_read_value_proto;
Daniel Xufff7b642020-02-17 19:04:31 -08001610 case BPF_FUNC_read_branch_records:
1611 return &bpf_read_branch_records_proto;
Yonghong Songf005afe2018-03-20 11:19:17 -07001612 default:
KP Singhfc611f42020-03-29 01:43:49 +01001613 return bpf_tracing_func_proto(func_id, prog);
Yonghong Songf005afe2018-03-20 11:19:17 -07001614 }
1615}
1616
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001617/*
1618 * bpf_raw_tp_regs are separate from bpf_pt_regs used from skb/xdp
1619 * to avoid potential recursive reuse issue when/if tracepoints are added
Matt Mullins9594dc32019-06-11 14:53:04 -07001620 * inside bpf_*_event_output, bpf_get_stackid and/or bpf_get_stack.
1621 *
1622 * Since raw tracepoints run despite bpf_prog_active, support concurrent usage
1623 * in normal, irq, and nmi context.
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001624 */
Matt Mullins9594dc32019-06-11 14:53:04 -07001625struct bpf_raw_tp_regs {
1626 struct pt_regs regs[3];
1627};
1628static DEFINE_PER_CPU(struct bpf_raw_tp_regs, bpf_raw_tp_regs);
1629static DEFINE_PER_CPU(int, bpf_raw_tp_nest_level);
1630static struct pt_regs *get_bpf_raw_tp_regs(void)
1631{
1632 struct bpf_raw_tp_regs *tp_regs = this_cpu_ptr(&bpf_raw_tp_regs);
1633 int nest_level = this_cpu_inc_return(bpf_raw_tp_nest_level);
1634
1635 if (WARN_ON_ONCE(nest_level > ARRAY_SIZE(tp_regs->regs))) {
1636 this_cpu_dec(bpf_raw_tp_nest_level);
1637 return ERR_PTR(-EBUSY);
1638 }
1639
1640 return &tp_regs->regs[nest_level - 1];
1641}
1642
1643static void put_bpf_raw_tp_regs(void)
1644{
1645 this_cpu_dec(bpf_raw_tp_nest_level);
1646}
1647
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001648BPF_CALL_5(bpf_perf_event_output_raw_tp, struct bpf_raw_tracepoint_args *, args,
1649 struct bpf_map *, map, u64, flags, void *, data, u64, size)
1650{
Matt Mullins9594dc32019-06-11 14:53:04 -07001651 struct pt_regs *regs = get_bpf_raw_tp_regs();
1652 int ret;
1653
1654 if (IS_ERR(regs))
1655 return PTR_ERR(regs);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001656
1657 perf_fetch_caller_regs(regs);
Matt Mullins9594dc32019-06-11 14:53:04 -07001658 ret = ____bpf_perf_event_output(regs, map, flags, data, size);
1659
1660 put_bpf_raw_tp_regs();
1661 return ret;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001662}
1663
1664static const struct bpf_func_proto bpf_perf_event_output_proto_raw_tp = {
1665 .func = bpf_perf_event_output_raw_tp,
1666 .gpl_only = true,
1667 .ret_type = RET_INTEGER,
1668 .arg1_type = ARG_PTR_TO_CTX,
1669 .arg2_type = ARG_CONST_MAP_PTR,
1670 .arg3_type = ARG_ANYTHING,
1671 .arg4_type = ARG_PTR_TO_MEM,
1672 .arg5_type = ARG_CONST_SIZE_OR_ZERO,
1673};
1674
Alexei Starovoitova7658e12019-10-15 20:25:04 -07001675extern const struct bpf_func_proto bpf_skb_output_proto;
Eelco Chaudrond831ee82020-03-06 08:59:23 +00001676extern const struct bpf_func_proto bpf_xdp_output_proto;
Alexei Starovoitova7658e12019-10-15 20:25:04 -07001677
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001678BPF_CALL_3(bpf_get_stackid_raw_tp, struct bpf_raw_tracepoint_args *, args,
1679 struct bpf_map *, map, u64, flags)
1680{
Matt Mullins9594dc32019-06-11 14:53:04 -07001681 struct pt_regs *regs = get_bpf_raw_tp_regs();
1682 int ret;
1683
1684 if (IS_ERR(regs))
1685 return PTR_ERR(regs);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001686
1687 perf_fetch_caller_regs(regs);
1688 /* similar to bpf_perf_event_output_tp, but pt_regs fetched differently */
Matt Mullins9594dc32019-06-11 14:53:04 -07001689 ret = bpf_get_stackid((unsigned long) regs, (unsigned long) map,
1690 flags, 0, 0);
1691 put_bpf_raw_tp_regs();
1692 return ret;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001693}
1694
1695static const struct bpf_func_proto bpf_get_stackid_proto_raw_tp = {
1696 .func = bpf_get_stackid_raw_tp,
1697 .gpl_only = true,
1698 .ret_type = RET_INTEGER,
1699 .arg1_type = ARG_PTR_TO_CTX,
1700 .arg2_type = ARG_CONST_MAP_PTR,
1701 .arg3_type = ARG_ANYTHING,
1702};
1703
Yonghong Songc195651e2018-04-28 22:28:08 -07001704BPF_CALL_4(bpf_get_stack_raw_tp, struct bpf_raw_tracepoint_args *, args,
1705 void *, buf, u32, size, u64, flags)
1706{
Matt Mullins9594dc32019-06-11 14:53:04 -07001707 struct pt_regs *regs = get_bpf_raw_tp_regs();
1708 int ret;
1709
1710 if (IS_ERR(regs))
1711 return PTR_ERR(regs);
Yonghong Songc195651e2018-04-28 22:28:08 -07001712
1713 perf_fetch_caller_regs(regs);
Matt Mullins9594dc32019-06-11 14:53:04 -07001714 ret = bpf_get_stack((unsigned long) regs, (unsigned long) buf,
1715 (unsigned long) size, flags, 0);
1716 put_bpf_raw_tp_regs();
1717 return ret;
Yonghong Songc195651e2018-04-28 22:28:08 -07001718}
1719
1720static const struct bpf_func_proto bpf_get_stack_proto_raw_tp = {
1721 .func = bpf_get_stack_raw_tp,
1722 .gpl_only = true,
1723 .ret_type = RET_INTEGER,
1724 .arg1_type = ARG_PTR_TO_CTX,
1725 .arg2_type = ARG_PTR_TO_MEM,
1726 .arg3_type = ARG_CONST_SIZE_OR_ZERO,
1727 .arg4_type = ARG_ANYTHING,
1728};
1729
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001730static const struct bpf_func_proto *
1731raw_tp_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001732{
1733 switch (func_id) {
1734 case BPF_FUNC_perf_event_output:
1735 return &bpf_perf_event_output_proto_raw_tp;
1736 case BPF_FUNC_get_stackid:
1737 return &bpf_get_stackid_proto_raw_tp;
Yonghong Songc195651e2018-04-28 22:28:08 -07001738 case BPF_FUNC_get_stack:
1739 return &bpf_get_stack_proto_raw_tp;
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001740 default:
KP Singhfc611f42020-03-29 01:43:49 +01001741 return bpf_tracing_func_proto(func_id, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001742 }
1743}
1744
Jiri Olsa958a3f22020-05-31 17:42:55 +02001745const struct bpf_func_proto *
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001746tracing_prog_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
1747{
1748 switch (func_id) {
1749#ifdef CONFIG_NET
1750 case BPF_FUNC_skb_output:
1751 return &bpf_skb_output_proto;
Eelco Chaudrond831ee82020-03-06 08:59:23 +00001752 case BPF_FUNC_xdp_output:
1753 return &bpf_xdp_output_proto;
Yonghong Songaf7ec132020-06-23 16:08:09 -07001754 case BPF_FUNC_skc_to_tcp6_sock:
1755 return &bpf_skc_to_tcp6_sock_proto;
Yonghong Song478cfbd2020-06-23 16:08:11 -07001756 case BPF_FUNC_skc_to_tcp_sock:
1757 return &bpf_skc_to_tcp_sock_proto;
1758 case BPF_FUNC_skc_to_tcp_timewait_sock:
1759 return &bpf_skc_to_tcp_timewait_sock_proto;
1760 case BPF_FUNC_skc_to_tcp_request_sock:
1761 return &bpf_skc_to_tcp_request_sock_proto;
Yonghong Song0d4fad32020-06-23 16:08:15 -07001762 case BPF_FUNC_skc_to_udp6_sock:
1763 return &bpf_skc_to_udp6_sock_proto;
Martin KaFai Lau8e4597c2020-11-12 13:13:13 -08001764 case BPF_FUNC_sk_storage_get:
1765 return &bpf_sk_storage_get_tracing_proto;
1766 case BPF_FUNC_sk_storage_delete:
1767 return &bpf_sk_storage_delete_tracing_proto;
Florent Revestb60da492020-12-08 18:36:23 +01001768 case BPF_FUNC_sock_from_file:
1769 return &bpf_sock_from_file_proto;
Florent Revestc5dbb892021-02-10 12:14:03 +01001770 case BPF_FUNC_get_socket_cookie:
1771 return &bpf_get_socket_ptr_cookie_proto;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001772#endif
Yonghong Song492e6392020-05-09 10:59:14 -07001773 case BPF_FUNC_seq_printf:
1774 return prog->expected_attach_type == BPF_TRACE_ITER ?
1775 &bpf_seq_printf_proto :
1776 NULL;
1777 case BPF_FUNC_seq_write:
1778 return prog->expected_attach_type == BPF_TRACE_ITER ?
1779 &bpf_seq_write_proto :
1780 NULL;
Alan Maguireeb411372020-09-28 12:31:09 +01001781 case BPF_FUNC_seq_printf_btf:
1782 return prog->expected_attach_type == BPF_TRACE_ITER ?
1783 &bpf_seq_printf_btf_proto :
1784 NULL;
Jiri Olsa6e22ab92020-08-25 21:21:20 +02001785 case BPF_FUNC_d_path:
1786 return &bpf_d_path_proto;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001787 default:
1788 return raw_tp_prog_func_proto(func_id, prog);
1789 }
1790}
1791
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001792static bool raw_tp_prog_is_valid_access(int off, int size,
1793 enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001794 const struct bpf_prog *prog,
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001795 struct bpf_insn_access_aux *info)
1796{
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001797 if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001798 return false;
1799 if (type != BPF_READ)
1800 return false;
1801 if (off % size != 0)
1802 return false;
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001803 return true;
1804}
1805
1806static bool tracing_prog_is_valid_access(int off, int size,
1807 enum bpf_access_type type,
1808 const struct bpf_prog *prog,
1809 struct bpf_insn_access_aux *info)
1810{
1811 if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS)
1812 return false;
1813 if (type != BPF_READ)
1814 return false;
1815 if (off % size != 0)
1816 return false;
Alexei Starovoitov9e15db62019-10-15 20:25:00 -07001817 return btf_ctx_access(off, size, type, prog, info);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001818}
1819
KP Singh3e7c67d2020-03-05 23:01:27 +01001820int __weak bpf_prog_test_run_tracing(struct bpf_prog *prog,
1821 const union bpf_attr *kattr,
1822 union bpf_attr __user *uattr)
1823{
1824 return -ENOTSUPP;
1825}
1826
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001827const struct bpf_verifier_ops raw_tracepoint_verifier_ops = {
1828 .get_func_proto = raw_tp_prog_func_proto,
1829 .is_valid_access = raw_tp_prog_is_valid_access,
1830};
1831
1832const struct bpf_prog_ops raw_tracepoint_prog_ops = {
Yonghong Songebfb4d42020-10-06 23:29:33 -07001833#ifdef CONFIG_NET
Song Liu1b4d60e2020-09-25 13:54:29 -07001834 .test_run = bpf_prog_test_run_raw_tp,
Yonghong Songebfb4d42020-10-06 23:29:33 -07001835#endif
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07001836};
1837
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001838const struct bpf_verifier_ops tracing_verifier_ops = {
1839 .get_func_proto = tracing_prog_func_proto,
1840 .is_valid_access = tracing_prog_is_valid_access,
1841};
1842
1843const struct bpf_prog_ops tracing_prog_ops = {
KP Singhda00d2f2020-03-04 20:18:52 +01001844 .test_run = bpf_prog_test_run_tracing,
Alexei Starovoitovf1b95092019-10-30 15:32:11 -07001845};
1846
Matt Mullins9df1c282019-04-26 11:49:47 -07001847static bool raw_tp_writable_prog_is_valid_access(int off, int size,
1848 enum bpf_access_type type,
1849 const struct bpf_prog *prog,
1850 struct bpf_insn_access_aux *info)
1851{
1852 if (off == 0) {
1853 if (size != sizeof(u64) || type != BPF_READ)
1854 return false;
1855 info->reg_type = PTR_TO_TP_BUFFER;
1856 }
1857 return raw_tp_prog_is_valid_access(off, size, type, prog, info);
1858}
1859
1860const struct bpf_verifier_ops raw_tracepoint_writable_verifier_ops = {
1861 .get_func_proto = raw_tp_prog_func_proto,
1862 .is_valid_access = raw_tp_writable_prog_is_valid_access,
1863};
1864
1865const struct bpf_prog_ops raw_tracepoint_writable_prog_ops = {
1866};
1867
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001868static bool pe_prog_is_valid_access(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -07001869 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -07001870 struct bpf_insn_access_aux *info)
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001871{
Teng Qin95da0cd2018-03-06 10:55:01 -08001872 const int size_u64 = sizeof(u64);
Yonghong Song31fd8582017-06-13 15:52:13 -07001873
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001874 if (off < 0 || off >= sizeof(struct bpf_perf_event_data))
1875 return false;
1876 if (type != BPF_READ)
1877 return false;
Daniel Borkmannbc231052018-06-02 23:06:39 +02001878 if (off % size != 0) {
1879 if (sizeof(unsigned long) != 4)
1880 return false;
1881 if (size != 8)
1882 return false;
1883 if (off % size != 4)
1884 return false;
1885 }
Yonghong Song31fd8582017-06-13 15:52:13 -07001886
Daniel Borkmannf96da092017-07-02 02:13:27 +02001887 switch (off) {
1888 case bpf_ctx_range(struct bpf_perf_event_data, sample_period):
Teng Qin95da0cd2018-03-06 10:55:01 -08001889 bpf_ctx_record_field_size(info, size_u64);
1890 if (!bpf_ctx_narrow_access_ok(off, size, size_u64))
1891 return false;
1892 break;
1893 case bpf_ctx_range(struct bpf_perf_event_data, addr):
1894 bpf_ctx_record_field_size(info, size_u64);
1895 if (!bpf_ctx_narrow_access_ok(off, size, size_u64))
Yonghong Song23994632017-06-22 15:07:39 -07001896 return false;
Daniel Borkmannf96da092017-07-02 02:13:27 +02001897 break;
1898 default:
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001899 if (size != sizeof(long))
1900 return false;
1901 }
Daniel Borkmannf96da092017-07-02 02:13:27 +02001902
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001903 return true;
1904}
1905
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001906static u32 pe_prog_convert_ctx_access(enum bpf_access_type type,
1907 const struct bpf_insn *si,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001908 struct bpf_insn *insn_buf,
Daniel Borkmannf96da092017-07-02 02:13:27 +02001909 struct bpf_prog *prog, u32 *target_size)
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001910{
1911 struct bpf_insn *insn = insn_buf;
1912
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001913 switch (si->off) {
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001914 case offsetof(struct bpf_perf_event_data, sample_period):
Daniel Borkmannf035a512016-09-09 02:45:29 +02001915 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001916 data), si->dst_reg, si->src_reg,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001917 offsetof(struct bpf_perf_event_data_kern, data));
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001918 *insn++ = BPF_LDX_MEM(BPF_DW, si->dst_reg, si->dst_reg,
Daniel Borkmannf96da092017-07-02 02:13:27 +02001919 bpf_target_off(struct perf_sample_data, period, 8,
1920 target_size));
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001921 break;
Teng Qin95da0cd2018-03-06 10:55:01 -08001922 case offsetof(struct bpf_perf_event_data, addr):
1923 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
1924 data), si->dst_reg, si->src_reg,
1925 offsetof(struct bpf_perf_event_data_kern, data));
1926 *insn++ = BPF_LDX_MEM(BPF_DW, si->dst_reg, si->dst_reg,
1927 bpf_target_off(struct perf_sample_data, addr, 8,
1928 target_size));
1929 break;
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001930 default:
Daniel Borkmannf035a512016-09-09 02:45:29 +02001931 *insn++ = BPF_LDX_MEM(BPF_FIELD_SIZEOF(struct bpf_perf_event_data_kern,
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001932 regs), si->dst_reg, si->src_reg,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001933 offsetof(struct bpf_perf_event_data_kern, regs));
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +01001934 *insn++ = BPF_LDX_MEM(BPF_SIZEOF(long), si->dst_reg, si->dst_reg,
1935 si->off);
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001936 break;
1937 }
1938
1939 return insn - insn_buf;
1940}
1941
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001942const struct bpf_verifier_ops perf_event_verifier_ops = {
Yonghong Songf005afe2018-03-20 11:19:17 -07001943 .get_func_proto = pe_prog_func_proto,
Alexei Starovoitov0515e592016-09-01 18:37:22 -07001944 .is_valid_access = pe_prog_is_valid_access,
1945 .convert_ctx_access = pe_prog_convert_ctx_access,
1946};
Jakub Kicinski7de16e32017-10-16 16:40:53 -07001947
1948const struct bpf_prog_ops perf_event_prog_ops = {
1949};
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001950
1951static DEFINE_MUTEX(bpf_event_mutex);
1952
Yonghong Songc8c088b2017-11-30 13:47:54 -08001953#define BPF_TRACE_MAX_PROGS 64
1954
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001955int perf_event_attach_bpf_prog(struct perf_event *event,
1956 struct bpf_prog *prog)
1957{
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001958 struct bpf_prog_array *old_array;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001959 struct bpf_prog_array *new_array;
1960 int ret = -EEXIST;
1961
Josef Bacik9802d862017-12-11 11:36:48 -05001962 /*
Masami Hiramatsub4da3342018-01-13 02:54:04 +09001963 * Kprobe override only works if they are on the function entry,
1964 * and only if they are on the opt-in list.
Josef Bacik9802d862017-12-11 11:36:48 -05001965 */
1966 if (prog->kprobe_override &&
Masami Hiramatsub4da3342018-01-13 02:54:04 +09001967 (!trace_kprobe_on_func_entry(event->tp_event) ||
Josef Bacik9802d862017-12-11 11:36:48 -05001968 !trace_kprobe_error_injectable(event->tp_event)))
1969 return -EINVAL;
1970
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001971 mutex_lock(&bpf_event_mutex);
1972
1973 if (event->prog)
Yonghong Song07c41a22017-10-30 13:50:22 -07001974 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001975
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001976 old_array = bpf_event_rcu_dereference(event->tp_event->prog_array);
Yonghong Songc8c088b2017-11-30 13:47:54 -08001977 if (old_array &&
1978 bpf_prog_array_length(old_array) >= BPF_TRACE_MAX_PROGS) {
1979 ret = -E2BIG;
1980 goto unlock;
1981 }
1982
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001983 ret = bpf_prog_array_copy(old_array, NULL, prog, &new_array);
1984 if (ret < 0)
Yonghong Song07c41a22017-10-30 13:50:22 -07001985 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001986
1987 /* set the new array to event->tp_event and set event->prog */
1988 event->prog = prog;
1989 rcu_assign_pointer(event->tp_event->prog_array, new_array);
1990 bpf_prog_array_free(old_array);
1991
Yonghong Song07c41a22017-10-30 13:50:22 -07001992unlock:
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001993 mutex_unlock(&bpf_event_mutex);
1994 return ret;
1995}
1996
1997void perf_event_detach_bpf_prog(struct perf_event *event)
1998{
Stanislav Fomicheve672db02019-05-28 14:14:44 -07001999 struct bpf_prog_array *old_array;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002000 struct bpf_prog_array *new_array;
2001 int ret;
2002
2003 mutex_lock(&bpf_event_mutex);
2004
2005 if (!event->prog)
Yonghong Song07c41a22017-10-30 13:50:22 -07002006 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002007
Stanislav Fomicheve672db02019-05-28 14:14:44 -07002008 old_array = bpf_event_rcu_dereference(event->tp_event->prog_array);
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002009 ret = bpf_prog_array_copy(old_array, event->prog, NULL, &new_array);
Sean Young170a7e32018-05-27 12:24:08 +01002010 if (ret == -ENOENT)
2011 goto unlock;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002012 if (ret < 0) {
2013 bpf_prog_array_delete_safe(old_array, event->prog);
2014 } else {
2015 rcu_assign_pointer(event->tp_event->prog_array, new_array);
2016 bpf_prog_array_free(old_array);
2017 }
2018
2019 bpf_prog_put(event->prog);
2020 event->prog = NULL;
2021
Yonghong Song07c41a22017-10-30 13:50:22 -07002022unlock:
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002023 mutex_unlock(&bpf_event_mutex);
2024}
Yonghong Songf371b302017-12-11 11:39:02 -08002025
Yonghong Songf4e22982017-12-13 10:35:37 -08002026int perf_event_query_prog_array(struct perf_event *event, void __user *info)
Yonghong Songf371b302017-12-11 11:39:02 -08002027{
2028 struct perf_event_query_bpf __user *uquery = info;
2029 struct perf_event_query_bpf query = {};
Stanislav Fomicheve672db02019-05-28 14:14:44 -07002030 struct bpf_prog_array *progs;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002031 u32 *ids, prog_cnt, ids_len;
Yonghong Songf371b302017-12-11 11:39:02 -08002032 int ret;
2033
Alexey Budankov031258d2020-04-02 11:48:54 +03002034 if (!perfmon_capable())
Yonghong Songf371b302017-12-11 11:39:02 -08002035 return -EPERM;
2036 if (event->attr.type != PERF_TYPE_TRACEPOINT)
2037 return -EINVAL;
2038 if (copy_from_user(&query, uquery, sizeof(query)))
2039 return -EFAULT;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002040
2041 ids_len = query.ids_len;
2042 if (ids_len > BPF_TRACE_MAX_PROGS)
Daniel Borkmann9c481b92018-02-14 15:31:00 +01002043 return -E2BIG;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002044 ids = kcalloc(ids_len, sizeof(u32), GFP_USER | __GFP_NOWARN);
2045 if (!ids)
2046 return -ENOMEM;
2047 /*
2048 * The above kcalloc returns ZERO_SIZE_PTR when ids_len = 0, which
2049 * is required when user only wants to check for uquery->prog_cnt.
2050 * There is no need to check for it since the case is handled
2051 * gracefully in bpf_prog_array_copy_info.
2052 */
Yonghong Songf371b302017-12-11 11:39:02 -08002053
2054 mutex_lock(&bpf_event_mutex);
Stanislav Fomicheve672db02019-05-28 14:14:44 -07002055 progs = bpf_event_rcu_dereference(event->tp_event->prog_array);
2056 ret = bpf_prog_array_copy_info(progs, ids, ids_len, &prog_cnt);
Yonghong Songf371b302017-12-11 11:39:02 -08002057 mutex_unlock(&bpf_event_mutex);
2058
Yonghong Song3a38bb92018-04-10 09:37:32 -07002059 if (copy_to_user(&uquery->prog_cnt, &prog_cnt, sizeof(prog_cnt)) ||
2060 copy_to_user(uquery->ids, ids, ids_len * sizeof(u32)))
2061 ret = -EFAULT;
2062
2063 kfree(ids);
Yonghong Songf371b302017-12-11 11:39:02 -08002064 return ret;
2065}
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002066
2067extern struct bpf_raw_event_map __start__bpf_raw_tp[];
2068extern struct bpf_raw_event_map __stop__bpf_raw_tp[];
2069
Matt Mullinsa38d1102018-12-12 16:42:37 -08002070struct bpf_raw_event_map *bpf_get_raw_tracepoint(const char *name)
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002071{
2072 struct bpf_raw_event_map *btp = __start__bpf_raw_tp;
2073
2074 for (; btp < __stop__bpf_raw_tp; btp++) {
2075 if (!strcmp(btp->tp->name, name))
2076 return btp;
2077 }
Matt Mullinsa38d1102018-12-12 16:42:37 -08002078
2079 return bpf_get_raw_tracepoint_module(name);
2080}
2081
2082void bpf_put_raw_tracepoint(struct bpf_raw_event_map *btp)
2083{
Andrii Nakryiko12cc1262020-12-03 12:46:21 -08002084 struct module *mod;
Matt Mullinsa38d1102018-12-12 16:42:37 -08002085
Andrii Nakryiko12cc1262020-12-03 12:46:21 -08002086 preempt_disable();
2087 mod = __module_address((unsigned long)btp);
2088 module_put(mod);
2089 preempt_enable();
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002090}
2091
2092static __always_inline
2093void __bpf_trace_run(struct bpf_prog *prog, u64 *args)
2094{
Thomas Gleixnerf03efe42020-02-24 15:01:35 +01002095 cant_sleep();
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002096 rcu_read_lock();
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002097 (void) BPF_PROG_RUN(prog, args);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002098 rcu_read_unlock();
2099}
2100
2101#define UNPACK(...) __VA_ARGS__
2102#define REPEAT_1(FN, DL, X, ...) FN(X)
2103#define REPEAT_2(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_1(FN, DL, __VA_ARGS__)
2104#define REPEAT_3(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_2(FN, DL, __VA_ARGS__)
2105#define REPEAT_4(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_3(FN, DL, __VA_ARGS__)
2106#define REPEAT_5(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_4(FN, DL, __VA_ARGS__)
2107#define REPEAT_6(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_5(FN, DL, __VA_ARGS__)
2108#define REPEAT_7(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_6(FN, DL, __VA_ARGS__)
2109#define REPEAT_8(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_7(FN, DL, __VA_ARGS__)
2110#define REPEAT_9(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_8(FN, DL, __VA_ARGS__)
2111#define REPEAT_10(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_9(FN, DL, __VA_ARGS__)
2112#define REPEAT_11(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_10(FN, DL, __VA_ARGS__)
2113#define REPEAT_12(FN, DL, X, ...) FN(X) UNPACK DL REPEAT_11(FN, DL, __VA_ARGS__)
2114#define REPEAT(X, FN, DL, ...) REPEAT_##X(FN, DL, __VA_ARGS__)
2115
2116#define SARG(X) u64 arg##X
2117#define COPY(X) args[X] = arg##X
2118
2119#define __DL_COM (,)
2120#define __DL_SEM (;)
2121
2122#define __SEQ_0_11 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
2123
2124#define BPF_TRACE_DEFN_x(x) \
2125 void bpf_trace_run##x(struct bpf_prog *prog, \
2126 REPEAT(x, SARG, __DL_COM, __SEQ_0_11)) \
2127 { \
2128 u64 args[x]; \
2129 REPEAT(x, COPY, __DL_SEM, __SEQ_0_11); \
2130 __bpf_trace_run(prog, args); \
2131 } \
2132 EXPORT_SYMBOL_GPL(bpf_trace_run##x)
2133BPF_TRACE_DEFN_x(1);
2134BPF_TRACE_DEFN_x(2);
2135BPF_TRACE_DEFN_x(3);
2136BPF_TRACE_DEFN_x(4);
2137BPF_TRACE_DEFN_x(5);
2138BPF_TRACE_DEFN_x(6);
2139BPF_TRACE_DEFN_x(7);
2140BPF_TRACE_DEFN_x(8);
2141BPF_TRACE_DEFN_x(9);
2142BPF_TRACE_DEFN_x(10);
2143BPF_TRACE_DEFN_x(11);
2144BPF_TRACE_DEFN_x(12);
2145
2146static int __bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
2147{
2148 struct tracepoint *tp = btp->tp;
2149
2150 /*
2151 * check that program doesn't access arguments beyond what's
2152 * available in this tracepoint
2153 */
2154 if (prog->aux->max_ctx_offset > btp->num_args * sizeof(u64))
2155 return -EINVAL;
2156
Matt Mullins9df1c282019-04-26 11:49:47 -07002157 if (prog->aux->max_tp_access > btp->writable_size)
2158 return -EINVAL;
2159
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002160 return tracepoint_probe_register(tp, (void *)btp->bpf_func, prog);
2161}
2162
2163int bpf_probe_register(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
2164{
Alexei Starovoitove16ec342019-01-30 18:12:44 -08002165 return __bpf_probe_register(btp, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002166}
2167
2168int bpf_probe_unregister(struct bpf_raw_event_map *btp, struct bpf_prog *prog)
2169{
Alexei Starovoitove16ec342019-01-30 18:12:44 -08002170 return tracepoint_probe_unregister(btp->tp, (void *)btp->bpf_func, prog);
Alexei Starovoitovc4f66992018-03-28 12:05:37 -07002171}
Yonghong Song41bdc4b2018-05-24 11:21:09 -07002172
2173int bpf_get_perf_event_info(const struct perf_event *event, u32 *prog_id,
2174 u32 *fd_type, const char **buf,
2175 u64 *probe_offset, u64 *probe_addr)
2176{
2177 bool is_tracepoint, is_syscall_tp;
2178 struct bpf_prog *prog;
2179 int flags, err = 0;
2180
2181 prog = event->prog;
2182 if (!prog)
2183 return -ENOENT;
2184
2185 /* not supporting BPF_PROG_TYPE_PERF_EVENT yet */
2186 if (prog->type == BPF_PROG_TYPE_PERF_EVENT)
2187 return -EOPNOTSUPP;
2188
2189 *prog_id = prog->aux->id;
2190 flags = event->tp_event->flags;
2191 is_tracepoint = flags & TRACE_EVENT_FL_TRACEPOINT;
2192 is_syscall_tp = is_syscall_trace_event(event->tp_event);
2193
2194 if (is_tracepoint || is_syscall_tp) {
2195 *buf = is_tracepoint ? event->tp_event->tp->name
2196 : event->tp_event->name;
2197 *fd_type = BPF_FD_TYPE_TRACEPOINT;
2198 *probe_offset = 0x0;
2199 *probe_addr = 0x0;
2200 } else {
2201 /* kprobe/uprobe */
2202 err = -EOPNOTSUPP;
2203#ifdef CONFIG_KPROBE_EVENTS
2204 if (flags & TRACE_EVENT_FL_KPROBE)
2205 err = bpf_get_kprobe_info(event, fd_type, buf,
2206 probe_offset, probe_addr,
2207 event->attr.type == PERF_TYPE_TRACEPOINT);
2208#endif
2209#ifdef CONFIG_UPROBE_EVENTS
2210 if (flags & TRACE_EVENT_FL_UPROBE)
2211 err = bpf_get_uprobe_info(event, fd_type, buf,
2212 probe_offset,
2213 event->attr.type == PERF_TYPE_TRACEPOINT);
2214#endif
2215 }
2216
2217 return err;
2218}
Matt Mullinsa38d1102018-12-12 16:42:37 -08002219
Yonghong Song9db1ff02019-06-25 17:35:03 -07002220static int __init send_signal_irq_work_init(void)
2221{
2222 int cpu;
2223 struct send_signal_irq_work *work;
2224
2225 for_each_possible_cpu(cpu) {
2226 work = per_cpu_ptr(&send_signal_work, cpu);
2227 init_irq_work(&work->irq_work, do_bpf_send_signal);
2228 }
2229 return 0;
2230}
2231
2232subsys_initcall(send_signal_irq_work_init);
2233
Matt Mullinsa38d1102018-12-12 16:42:37 -08002234#ifdef CONFIG_MODULES
Stanislav Fomichev390e99c2019-05-13 12:04:36 -07002235static int bpf_event_notify(struct notifier_block *nb, unsigned long op,
2236 void *module)
Matt Mullinsa38d1102018-12-12 16:42:37 -08002237{
2238 struct bpf_trace_module *btm, *tmp;
2239 struct module *mod = module;
Peter Zijlstra0340a6b2020-08-18 15:57:37 +02002240 int ret = 0;
Matt Mullinsa38d1102018-12-12 16:42:37 -08002241
2242 if (mod->num_bpf_raw_events == 0 ||
2243 (op != MODULE_STATE_COMING && op != MODULE_STATE_GOING))
Peter Zijlstra0340a6b2020-08-18 15:57:37 +02002244 goto out;
Matt Mullinsa38d1102018-12-12 16:42:37 -08002245
2246 mutex_lock(&bpf_module_mutex);
2247
2248 switch (op) {
2249 case MODULE_STATE_COMING:
2250 btm = kzalloc(sizeof(*btm), GFP_KERNEL);
2251 if (btm) {
2252 btm->module = module;
2253 list_add(&btm->list, &bpf_trace_modules);
Peter Zijlstra0340a6b2020-08-18 15:57:37 +02002254 } else {
2255 ret = -ENOMEM;
Matt Mullinsa38d1102018-12-12 16:42:37 -08002256 }
2257 break;
2258 case MODULE_STATE_GOING:
2259 list_for_each_entry_safe(btm, tmp, &bpf_trace_modules, list) {
2260 if (btm->module == module) {
2261 list_del(&btm->list);
2262 kfree(btm);
2263 break;
2264 }
2265 }
2266 break;
2267 }
2268
2269 mutex_unlock(&bpf_module_mutex);
2270
Peter Zijlstra0340a6b2020-08-18 15:57:37 +02002271out:
2272 return notifier_from_errno(ret);
Matt Mullinsa38d1102018-12-12 16:42:37 -08002273}
2274
2275static struct notifier_block bpf_module_nb = {
2276 .notifier_call = bpf_event_notify,
2277};
2278
Stanislav Fomichev390e99c2019-05-13 12:04:36 -07002279static int __init bpf_event_init(void)
Matt Mullinsa38d1102018-12-12 16:42:37 -08002280{
2281 register_module_notifier(&bpf_module_nb);
2282 return 0;
2283}
2284
2285fs_initcall(bpf_event_init);
2286#endif /* CONFIG_MODULES */