blob: de3e5bc6781fec61848fd623d37497fca3d8e4d2 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07002/*
3 * Linux Socket Filter - Kernel level socket filtering
4 *
5 * Based on the design of the Berkeley Packet Filter. The new
6 * internal format has been designed by PLUMgrid:
7 *
8 * Copyright (c) 2011 - 2014 PLUMgrid, http://plumgrid.com
9 *
10 * Authors:
11 *
12 * Jay Schulist <jschlst@samba.org>
13 * Alexei Starovoitov <ast@plumgrid.com>
14 * Daniel Borkmann <dborkman@redhat.com>
15 *
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070016 * Andi Kleen - Fix a few bad bugs and races.
Alexei Starovoitov4df95ff2014-07-30 20:34:14 -070017 * Kris Katterjohn - Added many additional checks in bpf_check_classic()
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070018 */
Daniel Borkmann738cbe72014-09-08 08:04:47 +020019
Yonghong Song838e9692018-11-19 15:29:11 -080020#include <uapi/linux/btf.h>
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070021#include <linux/filter.h>
22#include <linux/skbuff.h>
Daniel Borkmann60a3b222014-09-02 22:53:44 +020023#include <linux/vmalloc.h>
Daniel Borkmann738cbe72014-09-08 08:04:47 +020024#include <linux/random.h>
25#include <linux/moduleloader.h>
Alexei Starovoitov09756af2014-09-26 00:17:00 -070026#include <linux/bpf.h>
Yonghong Song838e9692018-11-19 15:29:11 -080027#include <linux/btf.h>
Julien Thierry00089c02020-09-04 16:30:25 +010028#include <linux/objtool.h>
Daniel Borkmann74451e662017-02-16 22:24:50 +010029#include <linux/rbtree_latch.h>
30#include <linux/kallsyms.h>
31#include <linux/rcupdate.h>
Yonghong Songc195651e2018-04-28 22:28:08 -070032#include <linux/perf_event.h>
Alexei Starovoitov3dec5412019-10-15 20:25:03 -070033#include <linux/extable.h>
Ilya Leoshkevichb7b3fc82019-11-15 13:37:22 +010034#include <linux/log2.h>
Kumar Kartikeya Dwivedi23576722021-10-02 06:47:49 +053035#include <linux/bpf_verifier.h>
Daniel Borkmannf5e81d12021-07-13 08:18:31 +000036
37#include <asm/barrier.h>
Daniel Borkmann3324b582015-05-29 23:23:07 +020038#include <asm/unaligned.h>
39
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070040/* Registers */
41#define BPF_R0 regs[BPF_REG_0]
42#define BPF_R1 regs[BPF_REG_1]
43#define BPF_R2 regs[BPF_REG_2]
44#define BPF_R3 regs[BPF_REG_3]
45#define BPF_R4 regs[BPF_REG_4]
46#define BPF_R5 regs[BPF_REG_5]
47#define BPF_R6 regs[BPF_REG_6]
48#define BPF_R7 regs[BPF_REG_7]
49#define BPF_R8 regs[BPF_REG_8]
50#define BPF_R9 regs[BPF_REG_9]
51#define BPF_R10 regs[BPF_REG_10]
52
53/* Named registers */
54#define DST regs[insn->dst_reg]
55#define SRC regs[insn->src_reg]
56#define FP regs[BPF_REG_FP]
Daniel Borkmann144cd912019-01-03 00:58:28 +010057#define AX regs[BPF_REG_AX]
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070058#define ARG1 regs[BPF_REG_ARG1]
59#define CTX regs[BPF_REG_CTX]
60#define IMM insn->imm
61
62/* No hurry in this branch
63 *
64 * Exported for the bpf jit load helper.
65 */
66void *bpf_internal_load_pointer_neg_helper(const struct sk_buff *skb, int k, unsigned int size)
67{
68 u8 *ptr = NULL;
69
70 if (k >= SKF_NET_OFF)
71 ptr = skb_network_header(skb) + k - SKF_NET_OFF;
72 else if (k >= SKF_LL_OFF)
73 ptr = skb_mac_header(skb) + k - SKF_LL_OFF;
Daniel Borkmann3324b582015-05-29 23:23:07 +020074
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -070075 if (ptr >= skb->head && ptr + size <= skb_tail_pointer(skb))
76 return ptr;
77
78 return NULL;
79}
80
Alexei Starovoitov492ecee2019-02-25 14:28:39 -080081struct bpf_prog *bpf_prog_alloc_no_stats(unsigned int size, gfp_t gfp_extra_flags)
Daniel Borkmann60a3b222014-09-02 22:53:44 +020082{
Roman Gushchinddf85032020-12-01 13:58:31 -080083 gfp_t gfp_flags = GFP_KERNEL_ACCOUNT | __GFP_ZERO | gfp_extra_flags;
Alexei Starovoitov09756af2014-09-26 00:17:00 -070084 struct bpf_prog_aux *aux;
Daniel Borkmann60a3b222014-09-02 22:53:44 +020085 struct bpf_prog *fp;
86
87 size = round_up(size, PAGE_SIZE);
Christoph Hellwig88dca4c2020-06-01 21:51:40 -070088 fp = __vmalloc(size, gfp_flags);
Daniel Borkmann60a3b222014-09-02 22:53:44 +020089 if (fp == NULL)
90 return NULL;
91
Roman Gushchinddf85032020-12-01 13:58:31 -080092 aux = kzalloc(sizeof(*aux), GFP_KERNEL_ACCOUNT | gfp_extra_flags);
Alexei Starovoitov09756af2014-09-26 00:17:00 -070093 if (aux == NULL) {
Daniel Borkmann60a3b222014-09-02 22:53:44 +020094 vfree(fp);
95 return NULL;
96 }
Alexei Starovoitovca06f552021-02-09 19:36:29 -080097 fp->active = alloc_percpu_gfp(int, GFP_KERNEL_ACCOUNT | gfp_extra_flags);
98 if (!fp->active) {
99 vfree(fp);
100 kfree(aux);
101 return NULL;
102 }
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200103
104 fp->pages = size / PAGE_SIZE;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700105 fp->aux = aux;
Daniel Borkmanne9d8afa2015-10-29 14:58:08 +0100106 fp->aux->prog = fp;
Alexei Starovoitov60b58afc2017-12-14 17:55:14 -0800107 fp->jit_requested = ebpf_jit_enabled();
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200108
Jiri Olsaecb60d12020-03-12 20:56:00 +0100109 INIT_LIST_HEAD_RCU(&fp->aux->ksym.lnode);
YiFei Zhu984fe942020-09-15 16:45:39 -0700110 mutex_init(&fp->aux->used_maps_mutex);
Toke Høiland-Jørgensen3aac1ea2020-09-29 14:45:50 +0200111 mutex_init(&fp->aux->dst_mutex);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100112
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200113 return fp;
114}
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800115
116struct bpf_prog *bpf_prog_alloc(unsigned int size, gfp_t gfp_extra_flags)
117{
Roman Gushchinddf85032020-12-01 13:58:31 -0800118 gfp_t gfp_flags = GFP_KERNEL_ACCOUNT | __GFP_ZERO | gfp_extra_flags;
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800119 struct bpf_prog *prog;
Eric Dumazet4b911302019-03-01 14:33:11 -0800120 int cpu;
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800121
122 prog = bpf_prog_alloc_no_stats(size, gfp_extra_flags);
123 if (!prog)
124 return NULL;
125
Alexei Starovoitov700d4792021-02-09 19:36:26 -0800126 prog->stats = alloc_percpu_gfp(struct bpf_prog_stats, gfp_flags);
127 if (!prog->stats) {
Alexei Starovoitovca06f552021-02-09 19:36:29 -0800128 free_percpu(prog->active);
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800129 kfree(prog->aux);
130 vfree(prog);
131 return NULL;
132 }
133
Eric Dumazet4b911302019-03-01 14:33:11 -0800134 for_each_possible_cpu(cpu) {
135 struct bpf_prog_stats *pstats;
136
Alexei Starovoitov700d4792021-02-09 19:36:26 -0800137 pstats = per_cpu_ptr(prog->stats, cpu);
Eric Dumazet4b911302019-03-01 14:33:11 -0800138 u64_stats_init(&pstats->syncp);
139 }
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800140 return prog;
141}
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200142EXPORT_SYMBOL_GPL(bpf_prog_alloc);
143
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800144int bpf_prog_alloc_jited_linfo(struct bpf_prog *prog)
145{
146 if (!prog->aux->nr_linfo || !prog->jit_requested)
147 return 0;
148
Martin KaFai Laue16301f2021-03-24 18:51:30 -0700149 prog->aux->jited_linfo = kvcalloc(prog->aux->nr_linfo,
150 sizeof(*prog->aux->jited_linfo),
151 GFP_KERNEL_ACCOUNT | __GFP_NOWARN);
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800152 if (!prog->aux->jited_linfo)
153 return -ENOMEM;
154
155 return 0;
156}
157
Martin KaFai Laue16301f2021-03-24 18:51:30 -0700158void bpf_prog_jit_attempt_done(struct bpf_prog *prog)
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800159{
Martin KaFai Laue16301f2021-03-24 18:51:30 -0700160 if (prog->aux->jited_linfo &&
161 (!prog->jited || !prog->aux->jited_linfo[0])) {
162 kvfree(prog->aux->jited_linfo);
163 prog->aux->jited_linfo = NULL;
164 }
Martin KaFai Laue6ac2452021-03-24 18:51:42 -0700165
166 kfree(prog->aux->kfunc_tab);
167 prog->aux->kfunc_tab = NULL;
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800168}
169
170/* The jit engine is responsible to provide an array
171 * for insn_off to the jited_off mapping (insn_to_jit_off).
172 *
173 * The idx to this array is the insn_off. Hence, the insn_off
174 * here is relative to the prog itself instead of the main prog.
175 * This array has one entry for each xlated bpf insn.
176 *
177 * jited_off is the byte off to the last byte of the jited insn.
178 *
179 * Hence, with
180 * insn_start:
181 * The first bpf insn off of the prog. The insn off
182 * here is relative to the main prog.
183 * e.g. if prog is a subprog, insn_start > 0
184 * linfo_idx:
185 * The prog's idx to prog->aux->linfo and jited_linfo
186 *
187 * jited_linfo[linfo_idx] = prog->bpf_func
188 *
189 * For i > linfo_idx,
190 *
191 * jited_linfo[i] = prog->bpf_func +
192 * insn_to_jit_off[linfo[i].insn_off - insn_start - 1]
193 */
194void bpf_prog_fill_jited_linfo(struct bpf_prog *prog,
195 const u32 *insn_to_jit_off)
196{
197 u32 linfo_idx, insn_start, insn_end, nr_linfo, i;
198 const struct bpf_line_info *linfo;
199 void **jited_linfo;
200
201 if (!prog->aux->jited_linfo)
202 /* Userspace did not provide linfo */
203 return;
204
205 linfo_idx = prog->aux->linfo_idx;
206 linfo = &prog->aux->linfo[linfo_idx];
207 insn_start = linfo[0].insn_off;
208 insn_end = insn_start + prog->len;
209
210 jited_linfo = &prog->aux->jited_linfo[linfo_idx];
211 jited_linfo[0] = prog->bpf_func;
212
213 nr_linfo = prog->aux->nr_linfo - linfo_idx;
214
215 for (i = 1; i < nr_linfo && linfo[i].insn_off < insn_end; i++)
216 /* The verifier ensures that linfo[i].insn_off is
217 * strictly increasing
218 */
219 jited_linfo[i] = prog->bpf_func +
220 insn_to_jit_off[linfo[i].insn_off - insn_start - 1];
221}
222
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200223struct bpf_prog *bpf_prog_realloc(struct bpf_prog *fp_old, unsigned int size,
224 gfp_t gfp_extra_flags)
225{
Roman Gushchinddf85032020-12-01 13:58:31 -0800226 gfp_t gfp_flags = GFP_KERNEL_ACCOUNT | __GFP_ZERO | gfp_extra_flags;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200227 struct bpf_prog *fp;
Roman Gushchin3ac1f012020-12-01 13:58:59 -0800228 u32 pages;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200229
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200230 size = round_up(size, PAGE_SIZE);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100231 pages = size / PAGE_SIZE;
232 if (pages <= fp_old->pages)
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200233 return fp_old;
234
Christoph Hellwig88dca4c2020-06-01 21:51:40 -0700235 fp = __vmalloc(size, gfp_flags);
Roman Gushchin3ac1f012020-12-01 13:58:59 -0800236 if (fp) {
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200237 memcpy(fp, fp_old, fp_old->pages * PAGE_SIZE);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100238 fp->pages = pages;
Daniel Borkmanne9d8afa2015-10-29 14:58:08 +0100239 fp->aux->prog = fp;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200240
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700241 /* We keep fp->aux from fp_old around in the new
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200242 * reallocated structure.
243 */
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700244 fp_old->aux = NULL;
Alexei Starovoitov1336c662021-02-11 19:35:00 -0800245 fp_old->stats = NULL;
246 fp_old->active = NULL;
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200247 __bpf_prog_free(fp_old);
248 }
249
250 return fp;
251}
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200252
253void __bpf_prog_free(struct bpf_prog *fp)
254{
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800255 if (fp->aux) {
YiFei Zhu984fe942020-09-15 16:45:39 -0700256 mutex_destroy(&fp->aux->used_maps_mutex);
Toke Høiland-Jørgensen3aac1ea2020-09-29 14:45:50 +0200257 mutex_destroy(&fp->aux->dst_mutex);
Daniel Borkmanna66886f2019-11-22 21:07:57 +0100258 kfree(fp->aux->poke_tab);
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800259 kfree(fp->aux);
260 }
Alexei Starovoitov700d4792021-02-09 19:36:26 -0800261 free_percpu(fp->stats);
Alexei Starovoitovca06f552021-02-09 19:36:29 -0800262 free_percpu(fp->active);
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200263 vfree(fp);
264}
Daniel Borkmann60a3b222014-09-02 22:53:44 +0200265
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100266int bpf_prog_calc_tag(struct bpf_prog *fp)
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100267{
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700268 const u32 bits_offset = SHA1_BLOCK_SIZE - sizeof(__be64);
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100269 u32 raw_size = bpf_prog_tag_scratch_size(fp);
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700270 u32 digest[SHA1_DIGEST_WORDS];
271 u32 ws[SHA1_WORKSPACE_WORDS];
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100272 u32 i, bsize, psize, blocks;
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100273 struct bpf_insn *dst;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100274 bool was_ld_map;
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100275 u8 *raw, *todo;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100276 __be32 *result;
277 __be64 *bits;
278
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100279 raw = vmalloc(raw_size);
280 if (!raw)
281 return -ENOMEM;
282
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700283 sha1_init(digest);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100284 memset(ws, 0, sizeof(ws));
285
286 /* We need to take out the map fd for the digest calculation
287 * since they are unstable from user space side.
288 */
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100289 dst = (void *)raw;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100290 for (i = 0, was_ld_map = false; i < fp->len; i++) {
291 dst[i] = fp->insnsi[i];
292 if (!was_ld_map &&
293 dst[i].code == (BPF_LD | BPF_IMM | BPF_DW) &&
Daniel Borkmannd8eca5b2019-04-09 23:20:03 +0200294 (dst[i].src_reg == BPF_PSEUDO_MAP_FD ||
295 dst[i].src_reg == BPF_PSEUDO_MAP_VALUE)) {
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100296 was_ld_map = true;
297 dst[i].imm = 0;
298 } else if (was_ld_map &&
299 dst[i].code == 0 &&
300 dst[i].dst_reg == 0 &&
301 dst[i].src_reg == 0 &&
302 dst[i].off == 0) {
303 was_ld_map = false;
304 dst[i].imm = 0;
305 } else {
306 was_ld_map = false;
307 }
308 }
309
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100310 psize = bpf_prog_insn_size(fp);
311 memset(&raw[psize], 0, raw_size - psize);
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100312 raw[psize++] = 0x80;
313
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700314 bsize = round_up(psize, SHA1_BLOCK_SIZE);
315 blocks = bsize / SHA1_BLOCK_SIZE;
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100316 todo = raw;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100317 if (bsize - psize >= sizeof(__be64)) {
318 bits = (__be64 *)(todo + bsize - sizeof(__be64));
319 } else {
320 bits = (__be64 *)(todo + bsize + bits_offset);
321 blocks++;
322 }
323 *bits = cpu_to_be64((psize - 1) << 3);
324
325 while (blocks--) {
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700326 sha1_transform(digest, todo, ws);
327 todo += SHA1_BLOCK_SIZE;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100328 }
329
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100330 result = (__force __be32 *)digest;
Eric Biggers6b0b0fa2020-05-02 11:24:25 -0700331 for (i = 0; i < SHA1_DIGEST_WORDS; i++)
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100332 result[i] = cpu_to_be32(digest[i]);
333 memcpy(fp->tag, result, sizeof(fp->tag));
Daniel Borkmannaafe6ae2016-12-18 01:52:57 +0100334
335 vfree(raw);
336 return 0;
Daniel Borkmann7bd509e2016-12-04 23:19:41 +0100337}
338
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800339static int bpf_adj_delta_to_imm(struct bpf_insn *insn, u32 pos, s32 end_old,
Daniel Borkmannaf959b12019-05-11 03:03:09 +0200340 s32 end_new, s32 curr, const bool probe_pass)
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200341{
Daniel Borkmann050fad72018-05-17 01:44:11 +0200342 const s64 imm_min = S32_MIN, imm_max = S32_MAX;
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800343 s32 delta = end_new - end_old;
Daniel Borkmann050fad72018-05-17 01:44:11 +0200344 s64 imm = insn->imm;
345
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800346 if (curr < pos && curr + imm + 1 >= end_old)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200347 imm += delta;
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800348 else if (curr >= end_new && curr + imm + 1 < end_new)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200349 imm -= delta;
350 if (imm < imm_min || imm > imm_max)
351 return -ERANGE;
352 if (!probe_pass)
353 insn->imm = imm;
354 return 0;
355}
356
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800357static int bpf_adj_delta_to_off(struct bpf_insn *insn, u32 pos, s32 end_old,
Daniel Borkmannaf959b12019-05-11 03:03:09 +0200358 s32 end_new, s32 curr, const bool probe_pass)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200359{
360 const s32 off_min = S16_MIN, off_max = S16_MAX;
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800361 s32 delta = end_new - end_old;
Daniel Borkmann050fad72018-05-17 01:44:11 +0200362 s32 off = insn->off;
363
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800364 if (curr < pos && curr + off + 1 >= end_old)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200365 off += delta;
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800366 else if (curr >= end_new && curr + off + 1 < end_new)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200367 off -= delta;
368 if (off < off_min || off > off_max)
369 return -ERANGE;
370 if (!probe_pass)
371 insn->off = off;
372 return 0;
373}
374
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800375static int bpf_adj_branches(struct bpf_prog *prog, u32 pos, s32 end_old,
376 s32 end_new, const bool probe_pass)
Daniel Borkmann050fad72018-05-17 01:44:11 +0200377{
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800378 u32 i, insn_cnt = prog->len + (probe_pass ? end_new - end_old : 0);
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200379 struct bpf_insn *insn = prog->insnsi;
Daniel Borkmann050fad72018-05-17 01:44:11 +0200380 int ret = 0;
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200381
382 for (i = 0; i < insn_cnt; i++, insn++) {
Daniel Borkmann050fad72018-05-17 01:44:11 +0200383 u8 code;
384
385 /* In the probing pass we still operate on the original,
386 * unpatched image in order to check overflows before we
387 * do any other adjustments. Therefore skip the patchlet.
388 */
389 if (probe_pass && i == pos) {
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800390 i = end_new;
391 insn = prog->insnsi + end_old;
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -0800392 }
Martin KaFai Lau3990ed42021-11-05 18:40:14 -0700393 if (bpf_pseudo_func(insn)) {
394 ret = bpf_adj_delta_to_imm(insn, pos, end_old,
395 end_new, i, probe_pass);
396 if (ret)
397 return ret;
398 continue;
399 }
Daniel Borkmann050fad72018-05-17 01:44:11 +0200400 code = insn->code;
Jiong Wang092ed092019-01-26 12:26:01 -0500401 if ((BPF_CLASS(code) != BPF_JMP &&
402 BPF_CLASS(code) != BPF_JMP32) ||
Daniel Borkmann050fad72018-05-17 01:44:11 +0200403 BPF_OP(code) == BPF_EXIT)
404 continue;
405 /* Adjust offset of jmps if we cross patch boundaries. */
406 if (BPF_OP(code) == BPF_CALL) {
407 if (insn->src_reg != BPF_PSEUDO_CALL)
408 continue;
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800409 ret = bpf_adj_delta_to_imm(insn, pos, end_old,
410 end_new, i, probe_pass);
Daniel Borkmann050fad72018-05-17 01:44:11 +0200411 } else {
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800412 ret = bpf_adj_delta_to_off(insn, pos, end_old,
413 end_new, i, probe_pass);
Daniel Borkmann050fad72018-05-17 01:44:11 +0200414 }
415 if (ret)
416 break;
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200417 }
Daniel Borkmann050fad72018-05-17 01:44:11 +0200418
419 return ret;
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200420}
421
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800422static void bpf_adj_linfo(struct bpf_prog *prog, u32 off, u32 delta)
423{
424 struct bpf_line_info *linfo;
425 u32 i, nr_linfo;
426
427 nr_linfo = prog->aux->nr_linfo;
428 if (!nr_linfo || !delta)
429 return;
430
431 linfo = prog->aux->linfo;
432
433 for (i = 0; i < nr_linfo; i++)
434 if (off < linfo[i].insn_off)
435 break;
436
437 /* Push all off < linfo[i].insn_off by delta */
438 for (; i < nr_linfo; i++)
439 linfo[i].insn_off += delta;
440}
441
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200442struct bpf_prog *bpf_patch_insn_single(struct bpf_prog *prog, u32 off,
443 const struct bpf_insn *patch, u32 len)
444{
445 u32 insn_adj_cnt, insn_rest, insn_delta = len - 1;
Daniel Borkmann050fad72018-05-17 01:44:11 +0200446 const u32 cnt_max = S16_MAX;
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200447 struct bpf_prog *prog_adj;
Alexei Starovoitov4f733792019-04-01 21:27:44 -0700448 int err;
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200449
450 /* Since our patchlet doesn't expand the image, we're done. */
451 if (insn_delta == 0) {
452 memcpy(prog->insnsi + off, patch, sizeof(*patch));
453 return prog;
454 }
455
456 insn_adj_cnt = prog->len + insn_delta;
457
Daniel Borkmann050fad72018-05-17 01:44:11 +0200458 /* Reject anything that would potentially let the insn->off
459 * target overflow when we have excessive program expansions.
460 * We need to probe here before we do any reallocation where
461 * we afterwards may not fail anymore.
462 */
463 if (insn_adj_cnt > cnt_max &&
Alexei Starovoitov4f733792019-04-01 21:27:44 -0700464 (err = bpf_adj_branches(prog, off, off + 1, off + len, true)))
465 return ERR_PTR(err);
Daniel Borkmann050fad72018-05-17 01:44:11 +0200466
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200467 /* Several new instructions need to be inserted. Make room
468 * for them. Likely, there's no need for a new allocation as
469 * last page could have large enough tailroom.
470 */
471 prog_adj = bpf_prog_realloc(prog, bpf_prog_size(insn_adj_cnt),
472 GFP_USER);
473 if (!prog_adj)
Alexei Starovoitov4f733792019-04-01 21:27:44 -0700474 return ERR_PTR(-ENOMEM);
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200475
476 prog_adj->len = insn_adj_cnt;
477
478 /* Patching happens in 3 steps:
479 *
480 * 1) Move over tail of insnsi from next instruction onwards,
481 * so we can patch the single target insn with one or more
482 * new ones (patching is always from 1 to n insns, n > 0).
483 * 2) Inject new instructions at the target location.
484 * 3) Adjust branch offsets if necessary.
485 */
486 insn_rest = insn_adj_cnt - off - len;
487
488 memmove(prog_adj->insnsi + off + len, prog_adj->insnsi + off + 1,
489 sizeof(*patch) * insn_rest);
490 memcpy(prog_adj->insnsi + off, patch, sizeof(*patch) * len);
491
Daniel Borkmann050fad72018-05-17 01:44:11 +0200492 /* We are guaranteed to not fail at this point, otherwise
493 * the ship has sailed to reverse to the original state. An
494 * overflow cannot happen at this point.
495 */
Jakub Kicinski2cbd95a2019-01-22 22:45:18 -0800496 BUG_ON(bpf_adj_branches(prog_adj, off, off + 1, off + len, false));
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200497
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800498 bpf_adj_linfo(prog_adj, off, insn_delta);
499
Daniel Borkmannc237ee52016-05-13 19:08:30 +0200500 return prog_adj;
501}
502
Jakub Kicinski52875a02019-01-22 22:45:20 -0800503int bpf_remove_insns(struct bpf_prog *prog, u32 off, u32 cnt)
504{
505 /* Branch offsets can't overflow when program is shrinking, no need
506 * to call bpf_adj_branches(..., true) here
507 */
508 memmove(prog->insnsi + off, prog->insnsi + off + cnt,
509 sizeof(struct bpf_insn) * (prog->len - off - cnt));
510 prog->len -= cnt;
511
512 return WARN_ON_ONCE(bpf_adj_branches(prog, off, off + cnt, off, false));
513}
514
Daniel Borkmanncd7455f2019-10-22 15:57:23 +0200515static void bpf_prog_kallsyms_del_subprogs(struct bpf_prog *fp)
Daniel Borkmann7d1982b2018-06-15 02:30:47 +0200516{
517 int i;
518
519 for (i = 0; i < fp->aux->func_cnt; i++)
520 bpf_prog_kallsyms_del(fp->aux->func[i]);
521}
522
523void bpf_prog_kallsyms_del_all(struct bpf_prog *fp)
524{
525 bpf_prog_kallsyms_del_subprogs(fp);
526 bpf_prog_kallsyms_del(fp);
527}
528
Daniel Borkmannb954d832014-09-10 15:01:02 +0200529#ifdef CONFIG_BPF_JIT
Daniel Borkmannfa9dd592018-01-20 01:24:33 +0100530/* All BPF JIT sysctl knobs here. */
Daniel Borkmann81c22042019-12-09 16:08:03 +0100531int bpf_jit_enable __read_mostly = IS_BUILTIN(CONFIG_BPF_JIT_DEFAULT_ON);
532int bpf_jit_kallsyms __read_mostly = IS_BUILTIN(CONFIG_BPF_JIT_DEFAULT_ON);
Daniel Borkmannfa9dd592018-01-20 01:24:33 +0100533int bpf_jit_harden __read_mostly;
Daniel Borkmannfdadd042018-12-11 12:14:12 +0100534long bpf_jit_limit __read_mostly;
Lorenz Bauerfadb7ff2021-10-14 15:25:53 +0100535long bpf_jit_limit_max __read_mostly;
Daniel Borkmannfa9dd592018-01-20 01:24:33 +0100536
Jiri Olsa535911c2020-03-12 20:55:58 +0100537static void
538bpf_prog_ksym_set_addr(struct bpf_prog *prog)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100539{
540 const struct bpf_binary_header *hdr = bpf_jit_binary_hdr(prog);
541 unsigned long addr = (unsigned long)hdr;
542
543 WARN_ON_ONCE(!bpf_prog_ebpf_jited(prog));
544
Jiri Olsa535911c2020-03-12 20:55:58 +0100545 prog->aux->ksym.start = (unsigned long) prog->bpf_func;
546 prog->aux->ksym.end = addr + hdr->pages * PAGE_SIZE;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100547}
548
Jiri Olsabfea9a82020-03-12 20:55:59 +0100549static void
550bpf_prog_ksym_set_name(struct bpf_prog *prog)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100551{
Jiri Olsabfea9a82020-03-12 20:55:59 +0100552 char *sym = prog->aux->ksym.name;
Martin KaFai Lau368211f2017-10-05 21:52:13 -0700553 const char *end = sym + KSYM_NAME_LEN;
Yonghong Song838e9692018-11-19 15:29:11 -0800554 const struct btf_type *type;
555 const char *func_name;
Martin KaFai Lau368211f2017-10-05 21:52:13 -0700556
Daniel Borkmann74451e662017-02-16 22:24:50 +0100557 BUILD_BUG_ON(sizeof("bpf_prog_") +
Martin KaFai Lau368211f2017-10-05 21:52:13 -0700558 sizeof(prog->tag) * 2 +
559 /* name has been null terminated.
560 * We should need +1 for the '_' preceding
561 * the name. However, the null character
562 * is double counted between the name and the
563 * sizeof("bpf_prog_") above, so we omit
564 * the +1 here.
565 */
566 sizeof(prog->aux->name) > KSYM_NAME_LEN);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100567
568 sym += snprintf(sym, KSYM_NAME_LEN, "bpf_prog_");
569 sym = bin2hex(sym, prog->tag, sizeof(prog->tag));
Yonghong Song838e9692018-11-19 15:29:11 -0800570
571 /* prog->aux->name will be ignored if full btf name is available */
Martin KaFai Lau73372242018-12-05 17:35:43 -0800572 if (prog->aux->func_info_cnt) {
Yonghong Songba64e7d2018-11-24 23:20:44 -0800573 type = btf_type_by_id(prog->aux->btf,
574 prog->aux->func_info[prog->aux->func_idx].type_id);
Yonghong Song838e9692018-11-19 15:29:11 -0800575 func_name = btf_name_by_offset(prog->aux->btf, type->name_off);
576 snprintf(sym, (size_t)(end - sym), "_%s", func_name);
577 return;
578 }
579
Martin KaFai Lau368211f2017-10-05 21:52:13 -0700580 if (prog->aux->name[0])
581 snprintf(sym, (size_t)(end - sym), "_%s", prog->aux->name);
582 else
583 *sym = 0;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100584}
585
Jiri Olsaca4424c2020-03-12 20:56:01 +0100586static unsigned long bpf_get_ksym_start(struct latch_tree_node *n)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100587{
Jiri Olsaca4424c2020-03-12 20:56:01 +0100588 return container_of(n, struct bpf_ksym, tnode)->start;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100589}
590
591static __always_inline bool bpf_tree_less(struct latch_tree_node *a,
592 struct latch_tree_node *b)
593{
Jiri Olsaca4424c2020-03-12 20:56:01 +0100594 return bpf_get_ksym_start(a) < bpf_get_ksym_start(b);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100595}
596
597static __always_inline int bpf_tree_comp(void *key, struct latch_tree_node *n)
598{
599 unsigned long val = (unsigned long)key;
Jiri Olsaca4424c2020-03-12 20:56:01 +0100600 const struct bpf_ksym *ksym;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100601
Jiri Olsaca4424c2020-03-12 20:56:01 +0100602 ksym = container_of(n, struct bpf_ksym, tnode);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100603
Jiri Olsaca4424c2020-03-12 20:56:01 +0100604 if (val < ksym->start)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100605 return -1;
Jiri Olsaca4424c2020-03-12 20:56:01 +0100606 if (val >= ksym->end)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100607 return 1;
608
609 return 0;
610}
611
612static const struct latch_tree_ops bpf_tree_ops = {
613 .less = bpf_tree_less,
614 .comp = bpf_tree_comp,
615};
616
617static DEFINE_SPINLOCK(bpf_lock);
618static LIST_HEAD(bpf_kallsyms);
619static struct latch_tree_root bpf_tree __cacheline_aligned;
620
Jiri Olsadba122f2020-03-12 20:56:04 +0100621void bpf_ksym_add(struct bpf_ksym *ksym)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100622{
Jiri Olsadba122f2020-03-12 20:56:04 +0100623 spin_lock_bh(&bpf_lock);
624 WARN_ON_ONCE(!list_empty(&ksym->lnode));
625 list_add_tail_rcu(&ksym->lnode, &bpf_kallsyms);
626 latch_tree_insert(&ksym->tnode, &bpf_tree, &bpf_tree_ops);
627 spin_unlock_bh(&bpf_lock);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100628}
629
Jiri Olsadba122f2020-03-12 20:56:04 +0100630static void __bpf_ksym_del(struct bpf_ksym *ksym)
Daniel Borkmann74451e662017-02-16 22:24:50 +0100631{
Jiri Olsadba122f2020-03-12 20:56:04 +0100632 if (list_empty(&ksym->lnode))
Daniel Borkmann74451e662017-02-16 22:24:50 +0100633 return;
634
Jiri Olsadba122f2020-03-12 20:56:04 +0100635 latch_tree_erase(&ksym->tnode, &bpf_tree, &bpf_tree_ops);
636 list_del_rcu(&ksym->lnode);
637}
638
639void bpf_ksym_del(struct bpf_ksym *ksym)
640{
641 spin_lock_bh(&bpf_lock);
642 __bpf_ksym_del(ksym);
643 spin_unlock_bh(&bpf_lock);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100644}
645
646static bool bpf_prog_kallsyms_candidate(const struct bpf_prog *fp)
647{
648 return fp->jited && !bpf_prog_was_classic(fp);
649}
650
651static bool bpf_prog_kallsyms_verify_off(const struct bpf_prog *fp)
652{
Jiri Olsaecb60d12020-03-12 20:56:00 +0100653 return list_empty(&fp->aux->ksym.lnode) ||
654 fp->aux->ksym.lnode.prev == LIST_POISON2;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100655}
656
657void bpf_prog_kallsyms_add(struct bpf_prog *fp)
658{
Daniel Borkmann74451e662017-02-16 22:24:50 +0100659 if (!bpf_prog_kallsyms_candidate(fp) ||
Alexei Starovoitov2c78ee82020-05-13 16:03:54 -0700660 !bpf_capable())
Daniel Borkmann74451e662017-02-16 22:24:50 +0100661 return;
662
Jiri Olsa535911c2020-03-12 20:55:58 +0100663 bpf_prog_ksym_set_addr(fp);
Jiri Olsabfea9a82020-03-12 20:55:59 +0100664 bpf_prog_ksym_set_name(fp);
Jiri Olsacbd76f82020-03-12 20:56:03 +0100665 fp->aux->ksym.prog = true;
Jiri Olsa535911c2020-03-12 20:55:58 +0100666
Jiri Olsadba122f2020-03-12 20:56:04 +0100667 bpf_ksym_add(&fp->aux->ksym);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100668}
669
670void bpf_prog_kallsyms_del(struct bpf_prog *fp)
671{
Daniel Borkmann74451e662017-02-16 22:24:50 +0100672 if (!bpf_prog_kallsyms_candidate(fp))
673 return;
674
Jiri Olsadba122f2020-03-12 20:56:04 +0100675 bpf_ksym_del(&fp->aux->ksym);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100676}
677
Jiri Olsaeda0c922020-03-12 20:56:02 +0100678static struct bpf_ksym *bpf_ksym_find(unsigned long addr)
679{
680 struct latch_tree_node *n;
681
682 n = latch_tree_find((void *)addr, &bpf_tree, &bpf_tree_ops);
683 return n ? container_of(n, struct bpf_ksym, tnode) : NULL;
684}
685
Daniel Borkmann74451e662017-02-16 22:24:50 +0100686const char *__bpf_address_lookup(unsigned long addr, unsigned long *size,
687 unsigned long *off, char *sym)
688{
Jiri Olsaeda0c922020-03-12 20:56:02 +0100689 struct bpf_ksym *ksym;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100690 char *ret = NULL;
691
692 rcu_read_lock();
Jiri Olsaeda0c922020-03-12 20:56:02 +0100693 ksym = bpf_ksym_find(addr);
694 if (ksym) {
695 unsigned long symbol_start = ksym->start;
696 unsigned long symbol_end = ksym->end;
Jiri Olsa535911c2020-03-12 20:55:58 +0100697
Jiri Olsaeda0c922020-03-12 20:56:02 +0100698 strncpy(sym, ksym->name, KSYM_NAME_LEN);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100699
700 ret = sym;
701 if (size)
702 *size = symbol_end - symbol_start;
703 if (off)
704 *off = addr - symbol_start;
705 }
706 rcu_read_unlock();
707
708 return ret;
709}
710
711bool is_bpf_text_address(unsigned long addr)
712{
713 bool ret;
714
715 rcu_read_lock();
Jiri Olsaeda0c922020-03-12 20:56:02 +0100716 ret = bpf_ksym_find(addr) != NULL;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100717 rcu_read_unlock();
718
719 return ret;
720}
721
Jiri Olsacbd76f82020-03-12 20:56:03 +0100722static struct bpf_prog *bpf_prog_ksym_find(unsigned long addr)
723{
724 struct bpf_ksym *ksym = bpf_ksym_find(addr);
725
726 return ksym && ksym->prog ?
727 container_of(ksym, struct bpf_prog_aux, ksym)->prog :
728 NULL;
729}
730
Alexei Starovoitov3dec5412019-10-15 20:25:03 -0700731const struct exception_table_entry *search_bpf_extables(unsigned long addr)
732{
733 const struct exception_table_entry *e = NULL;
734 struct bpf_prog *prog;
735
736 rcu_read_lock();
Jiri Olsacbd76f82020-03-12 20:56:03 +0100737 prog = bpf_prog_ksym_find(addr);
Alexei Starovoitov3dec5412019-10-15 20:25:03 -0700738 if (!prog)
739 goto out;
740 if (!prog->aux->num_exentries)
741 goto out;
742
743 e = search_extable(prog->aux->extable, prog->aux->num_exentries, addr);
744out:
745 rcu_read_unlock();
746 return e;
747}
748
Daniel Borkmann74451e662017-02-16 22:24:50 +0100749int bpf_get_kallsym(unsigned int symnum, unsigned long *value, char *type,
750 char *sym)
751{
Jiri Olsaecb60d12020-03-12 20:56:00 +0100752 struct bpf_ksym *ksym;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100753 unsigned int it = 0;
754 int ret = -ERANGE;
755
756 if (!bpf_jit_kallsyms_enabled())
757 return ret;
758
759 rcu_read_lock();
Jiri Olsaecb60d12020-03-12 20:56:00 +0100760 list_for_each_entry_rcu(ksym, &bpf_kallsyms, lnode) {
Daniel Borkmann74451e662017-02-16 22:24:50 +0100761 if (it++ != symnum)
762 continue;
763
Jiri Olsaecb60d12020-03-12 20:56:00 +0100764 strncpy(sym, ksym->name, KSYM_NAME_LEN);
Daniel Borkmann74451e662017-02-16 22:24:50 +0100765
Jiri Olsaecb60d12020-03-12 20:56:00 +0100766 *value = ksym->start;
Daniel Borkmann74451e662017-02-16 22:24:50 +0100767 *type = BPF_SYM_ELF_TYPE;
768
769 ret = 0;
770 break;
771 }
772 rcu_read_unlock();
773
774 return ret;
775}
776
Daniel Borkmanna66886f2019-11-22 21:07:57 +0100777int bpf_jit_add_poke_descriptor(struct bpf_prog *prog,
778 struct bpf_jit_poke_descriptor *poke)
779{
780 struct bpf_jit_poke_descriptor *tab = prog->aux->poke_tab;
781 static const u32 poke_tab_max = 1024;
782 u32 slot = prog->aux->size_poke_tab;
783 u32 size = slot + 1;
784
785 if (size > poke_tab_max)
786 return -ENOSPC;
Maciej Fijalkowskicf71b172020-09-16 23:10:06 +0200787 if (poke->tailcall_target || poke->tailcall_target_stable ||
Maciej Fijalkowskiebf7d1f2020-09-16 23:10:08 +0200788 poke->tailcall_bypass || poke->adj_off || poke->bypass_addr)
Daniel Borkmanna66886f2019-11-22 21:07:57 +0100789 return -EINVAL;
790
791 switch (poke->reason) {
792 case BPF_POKE_REASON_TAIL_CALL:
793 if (!poke->tail_call.map)
794 return -EINVAL;
795 break;
796 default:
797 return -EINVAL;
798 }
799
800 tab = krealloc(tab, size * sizeof(*poke), GFP_KERNEL);
801 if (!tab)
802 return -ENOMEM;
803
804 memcpy(&tab[slot], poke, sizeof(*poke));
805 prog->aux->size_poke_tab = size;
806 prog->aux->poke_tab = tab;
807
808 return slot;
809}
810
Daniel Borkmannede95a632018-10-23 01:11:04 +0200811static atomic_long_t bpf_jit_current;
812
Daniel Borkmannfdadd042018-12-11 12:14:12 +0100813/* Can be overridden by an arch's JIT compiler if it has a custom,
814 * dedicated BPF backend memory area, or if neither of the two
815 * below apply.
816 */
817u64 __weak bpf_jit_alloc_exec_limit(void)
818{
Daniel Borkmannede95a632018-10-23 01:11:04 +0200819#if defined(MODULES_VADDR)
Daniel Borkmannfdadd042018-12-11 12:14:12 +0100820 return MODULES_END - MODULES_VADDR;
821#else
822 return VMALLOC_END - VMALLOC_START;
823#endif
824}
825
Daniel Borkmannede95a632018-10-23 01:11:04 +0200826static int __init bpf_jit_charge_init(void)
827{
828 /* Only used as heuristic here to derive limit. */
Lorenz Bauerfadb7ff2021-10-14 15:25:53 +0100829 bpf_jit_limit_max = bpf_jit_alloc_exec_limit();
830 bpf_jit_limit = min_t(u64, round_up(bpf_jit_limit_max >> 2,
Daniel Borkmannfdadd042018-12-11 12:14:12 +0100831 PAGE_SIZE), LONG_MAX);
Daniel Borkmannede95a632018-10-23 01:11:04 +0200832 return 0;
833}
834pure_initcall(bpf_jit_charge_init);
Daniel Borkmannede95a632018-10-23 01:11:04 +0200835
Alexei Starovoitove21aa342021-03-16 14:00:07 -0700836int bpf_jit_charge_modmem(u32 pages)
Daniel Borkmannede95a632018-10-23 01:11:04 +0200837{
838 if (atomic_long_add_return(pages, &bpf_jit_current) >
839 (bpf_jit_limit >> PAGE_SHIFT)) {
Lorenz Bauer8a98ae12021-09-22 12:11:52 +0100840 if (!bpf_capable()) {
Daniel Borkmannede95a632018-10-23 01:11:04 +0200841 atomic_long_sub(pages, &bpf_jit_current);
842 return -EPERM;
843 }
844 }
845
846 return 0;
847}
848
Alexei Starovoitove21aa342021-03-16 14:00:07 -0700849void bpf_jit_uncharge_modmem(u32 pages)
Daniel Borkmannede95a632018-10-23 01:11:04 +0200850{
851 atomic_long_sub(pages, &bpf_jit_current);
852}
853
Ard Biesheuveldc002bb2018-11-23 23:18:03 +0100854void *__weak bpf_jit_alloc_exec(unsigned long size)
855{
856 return module_alloc(size);
857}
858
859void __weak bpf_jit_free_exec(void *addr)
860{
861 module_memfree(addr);
862}
863
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200864struct bpf_binary_header *
865bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
866 unsigned int alignment,
867 bpf_jit_fill_hole_t bpf_fill_ill_insns)
868{
869 struct bpf_binary_header *hdr;
Daniel Borkmannede95a632018-10-23 01:11:04 +0200870 u32 size, hole, start, pages;
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200871
Ilya Leoshkevichb7b3fc82019-11-15 13:37:22 +0100872 WARN_ON_ONCE(!is_power_of_2(alignment) ||
873 alignment > BPF_IMAGE_ALIGNMENT);
874
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200875 /* Most of BPF filters are really small, but if some of them
876 * fill a page, allow at least 128 extra bytes to insert a
877 * random section of illegal instructions.
878 */
879 size = round_up(proglen + sizeof(*hdr) + 128, PAGE_SIZE);
Daniel Borkmannede95a632018-10-23 01:11:04 +0200880 pages = size / PAGE_SIZE;
881
882 if (bpf_jit_charge_modmem(pages))
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200883 return NULL;
Ard Biesheuveldc002bb2018-11-23 23:18:03 +0100884 hdr = bpf_jit_alloc_exec(size);
Daniel Borkmannede95a632018-10-23 01:11:04 +0200885 if (!hdr) {
886 bpf_jit_uncharge_modmem(pages);
887 return NULL;
888 }
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200889
890 /* Fill space with illegal/arch-dep instructions. */
891 bpf_fill_ill_insns(hdr, size);
892
Daniel Borkmannede95a632018-10-23 01:11:04 +0200893 hdr->pages = pages;
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200894 hole = min_t(unsigned int, size - (proglen + sizeof(*hdr)),
895 PAGE_SIZE - sizeof(*hdr));
Daniel Borkmannb7552e1b2016-05-18 14:14:28 +0200896 start = (get_random_int() % hole) & ~(alignment - 1);
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200897
898 /* Leave a random number of instructions before BPF code. */
899 *image_ptr = &hdr->image[start];
900
901 return hdr;
902}
903
904void bpf_jit_binary_free(struct bpf_binary_header *hdr)
905{
Daniel Borkmannede95a632018-10-23 01:11:04 +0200906 u32 pages = hdr->pages;
907
Ard Biesheuveldc002bb2018-11-23 23:18:03 +0100908 bpf_jit_free_exec(hdr);
Daniel Borkmannede95a632018-10-23 01:11:04 +0200909 bpf_jit_uncharge_modmem(pages);
Daniel Borkmann738cbe72014-09-08 08:04:47 +0200910}
Daniel Borkmann4f3446b2016-05-13 19:08:32 +0200911
Daniel Borkmann74451e662017-02-16 22:24:50 +0100912/* This symbol is only overridden by archs that have different
913 * requirements than the usual eBPF JITs, f.e. when they only
914 * implement cBPF JIT, do not set images read-only, etc.
915 */
916void __weak bpf_jit_free(struct bpf_prog *fp)
917{
918 if (fp->jited) {
919 struct bpf_binary_header *hdr = bpf_jit_binary_hdr(fp);
920
Daniel Borkmann74451e662017-02-16 22:24:50 +0100921 bpf_jit_binary_free(hdr);
922
923 WARN_ON_ONCE(!bpf_prog_kallsyms_verify_off(fp));
924 }
925
926 bpf_prog_unlock_free(fp);
927}
928
Daniel Borkmanne2c95a62018-11-26 14:05:38 +0100929int bpf_jit_get_func_addr(const struct bpf_prog *prog,
930 const struct bpf_insn *insn, bool extra_pass,
931 u64 *func_addr, bool *func_addr_fixed)
932{
933 s16 off = insn->off;
934 s32 imm = insn->imm;
935 u8 *addr;
936
937 *func_addr_fixed = insn->src_reg != BPF_PSEUDO_CALL;
938 if (!*func_addr_fixed) {
939 /* Place-holder address till the last pass has collected
940 * all addresses for JITed subprograms in which case we
941 * can pick them up from prog->aux.
942 */
943 if (!extra_pass)
944 addr = NULL;
945 else if (prog->aux->func &&
946 off >= 0 && off < prog->aux->func_cnt)
947 addr = (u8 *)prog->aux->func[off]->bpf_func;
948 else
949 return -EINVAL;
950 } else {
951 /* Address of a BPF helper call. Since part of the core
952 * kernel, it's always at a fixed location. __bpf_call_base
953 * and the helper with imm relative to it are both in core
954 * kernel.
955 */
956 addr = (u8 *)__bpf_call_base + imm;
957 }
958
959 *func_addr = (unsigned long)addr;
960 return 0;
961}
962
Daniel Borkmann4f3446b2016-05-13 19:08:32 +0200963static int bpf_jit_blind_insn(const struct bpf_insn *from,
964 const struct bpf_insn *aux,
Naveen N. Raoede7c462019-08-22 00:53:58 +0530965 struct bpf_insn *to_buff,
966 bool emit_zext)
Daniel Borkmann4f3446b2016-05-13 19:08:32 +0200967{
968 struct bpf_insn *to = to_buff;
Daniel Borkmannb7552e1b2016-05-18 14:14:28 +0200969 u32 imm_rnd = get_random_int();
Daniel Borkmann4f3446b2016-05-13 19:08:32 +0200970 s16 off;
971
972 BUILD_BUG_ON(BPF_REG_AX + 1 != MAX_BPF_JIT_REG);
973 BUILD_BUG_ON(MAX_BPF_REG + 1 != MAX_BPF_JIT_REG);
974
Daniel Borkmann9b73bfd2019-01-03 00:58:29 +0100975 /* Constraints on AX register:
976 *
977 * AX register is inaccessible from user space. It is mapped in
978 * all JITs, and used here for constant blinding rewrites. It is
979 * typically "stateless" meaning its contents are only valid within
980 * the executed instruction, but not across several instructions.
981 * There are a few exceptions however which are further detailed
982 * below.
983 *
984 * Constant blinding is only used by JITs, not in the interpreter.
985 * The interpreter uses AX in some occasions as a local temporary
986 * register e.g. in DIV or MOD instructions.
987 *
988 * In restricted circumstances, the verifier can also use the AX
989 * register for rewrites as long as they do not interfere with
990 * the above cases!
991 */
992 if (from->dst_reg == BPF_REG_AX || from->src_reg == BPF_REG_AX)
993 goto out;
994
Daniel Borkmann4f3446b2016-05-13 19:08:32 +0200995 if (from->imm == 0 &&
996 (from->code == (BPF_ALU | BPF_MOV | BPF_K) ||
997 from->code == (BPF_ALU64 | BPF_MOV | BPF_K))) {
998 *to++ = BPF_ALU64_REG(BPF_XOR, from->dst_reg, from->dst_reg);
999 goto out;
1000 }
1001
1002 switch (from->code) {
1003 case BPF_ALU | BPF_ADD | BPF_K:
1004 case BPF_ALU | BPF_SUB | BPF_K:
1005 case BPF_ALU | BPF_AND | BPF_K:
1006 case BPF_ALU | BPF_OR | BPF_K:
1007 case BPF_ALU | BPF_XOR | BPF_K:
1008 case BPF_ALU | BPF_MUL | BPF_K:
1009 case BPF_ALU | BPF_MOV | BPF_K:
1010 case BPF_ALU | BPF_DIV | BPF_K:
1011 case BPF_ALU | BPF_MOD | BPF_K:
1012 *to++ = BPF_ALU32_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ from->imm);
1013 *to++ = BPF_ALU32_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1014 *to++ = BPF_ALU32_REG(from->code, from->dst_reg, BPF_REG_AX);
1015 break;
1016
1017 case BPF_ALU64 | BPF_ADD | BPF_K:
1018 case BPF_ALU64 | BPF_SUB | BPF_K:
1019 case BPF_ALU64 | BPF_AND | BPF_K:
1020 case BPF_ALU64 | BPF_OR | BPF_K:
1021 case BPF_ALU64 | BPF_XOR | BPF_K:
1022 case BPF_ALU64 | BPF_MUL | BPF_K:
1023 case BPF_ALU64 | BPF_MOV | BPF_K:
1024 case BPF_ALU64 | BPF_DIV | BPF_K:
1025 case BPF_ALU64 | BPF_MOD | BPF_K:
1026 *to++ = BPF_ALU64_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ from->imm);
1027 *to++ = BPF_ALU64_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1028 *to++ = BPF_ALU64_REG(from->code, from->dst_reg, BPF_REG_AX);
1029 break;
1030
1031 case BPF_JMP | BPF_JEQ | BPF_K:
1032 case BPF_JMP | BPF_JNE | BPF_K:
1033 case BPF_JMP | BPF_JGT | BPF_K:
Daniel Borkmann92b31a92017-08-10 01:39:55 +02001034 case BPF_JMP | BPF_JLT | BPF_K:
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001035 case BPF_JMP | BPF_JGE | BPF_K:
Daniel Borkmann92b31a92017-08-10 01:39:55 +02001036 case BPF_JMP | BPF_JLE | BPF_K:
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001037 case BPF_JMP | BPF_JSGT | BPF_K:
Daniel Borkmann92b31a92017-08-10 01:39:55 +02001038 case BPF_JMP | BPF_JSLT | BPF_K:
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001039 case BPF_JMP | BPF_JSGE | BPF_K:
Daniel Borkmann92b31a92017-08-10 01:39:55 +02001040 case BPF_JMP | BPF_JSLE | BPF_K:
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001041 case BPF_JMP | BPF_JSET | BPF_K:
1042 /* Accommodate for extra offset in case of a backjump. */
1043 off = from->off;
1044 if (off < 0)
1045 off -= 2;
1046 *to++ = BPF_ALU64_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ from->imm);
1047 *to++ = BPF_ALU64_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1048 *to++ = BPF_JMP_REG(from->code, from->dst_reg, BPF_REG_AX, off);
1049 break;
1050
Jiong Wanga7b76c82019-01-26 12:26:05 -05001051 case BPF_JMP32 | BPF_JEQ | BPF_K:
1052 case BPF_JMP32 | BPF_JNE | BPF_K:
1053 case BPF_JMP32 | BPF_JGT | BPF_K:
1054 case BPF_JMP32 | BPF_JLT | BPF_K:
1055 case BPF_JMP32 | BPF_JGE | BPF_K:
1056 case BPF_JMP32 | BPF_JLE | BPF_K:
1057 case BPF_JMP32 | BPF_JSGT | BPF_K:
1058 case BPF_JMP32 | BPF_JSLT | BPF_K:
1059 case BPF_JMP32 | BPF_JSGE | BPF_K:
1060 case BPF_JMP32 | BPF_JSLE | BPF_K:
1061 case BPF_JMP32 | BPF_JSET | BPF_K:
1062 /* Accommodate for extra offset in case of a backjump. */
1063 off = from->off;
1064 if (off < 0)
1065 off -= 2;
1066 *to++ = BPF_ALU32_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ from->imm);
1067 *to++ = BPF_ALU32_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1068 *to++ = BPF_JMP32_REG(from->code, from->dst_reg, BPF_REG_AX,
1069 off);
1070 break;
1071
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001072 case BPF_LD | BPF_IMM | BPF_DW:
1073 *to++ = BPF_ALU64_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ aux[1].imm);
1074 *to++ = BPF_ALU64_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1075 *to++ = BPF_ALU64_IMM(BPF_LSH, BPF_REG_AX, 32);
1076 *to++ = BPF_ALU64_REG(BPF_MOV, aux[0].dst_reg, BPF_REG_AX);
1077 break;
1078 case 0: /* Part 2 of BPF_LD | BPF_IMM | BPF_DW. */
1079 *to++ = BPF_ALU32_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ aux[0].imm);
1080 *to++ = BPF_ALU32_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
Naveen N. Raoede7c462019-08-22 00:53:58 +05301081 if (emit_zext)
1082 *to++ = BPF_ZEXT_REG(BPF_REG_AX);
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001083 *to++ = BPF_ALU64_REG(BPF_OR, aux[0].dst_reg, BPF_REG_AX);
1084 break;
1085
1086 case BPF_ST | BPF_MEM | BPF_DW:
1087 case BPF_ST | BPF_MEM | BPF_W:
1088 case BPF_ST | BPF_MEM | BPF_H:
1089 case BPF_ST | BPF_MEM | BPF_B:
1090 *to++ = BPF_ALU64_IMM(BPF_MOV, BPF_REG_AX, imm_rnd ^ from->imm);
1091 *to++ = BPF_ALU64_IMM(BPF_XOR, BPF_REG_AX, imm_rnd);
1092 *to++ = BPF_STX_MEM(from->code, from->dst_reg, BPF_REG_AX, from->off);
1093 break;
1094 }
1095out:
1096 return to - to_buff;
1097}
1098
1099static struct bpf_prog *bpf_prog_clone_create(struct bpf_prog *fp_other,
1100 gfp_t gfp_extra_flags)
1101{
Michal Hocko19809c22017-05-08 15:57:44 -07001102 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | gfp_extra_flags;
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001103 struct bpf_prog *fp;
1104
Christoph Hellwig88dca4c2020-06-01 21:51:40 -07001105 fp = __vmalloc(fp_other->pages * PAGE_SIZE, gfp_flags);
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001106 if (fp != NULL) {
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001107 /* aux->prog still points to the fp_other one, so
1108 * when promoting the clone to the real program,
1109 * this still needs to be adapted.
1110 */
1111 memcpy(fp, fp_other, fp_other->pages * PAGE_SIZE);
1112 }
1113
1114 return fp;
1115}
1116
1117static void bpf_prog_clone_free(struct bpf_prog *fp)
1118{
1119 /* aux was stolen by the other clone, so we cannot free
1120 * it from this path! It will be freed eventually by the
1121 * other program on release.
1122 *
1123 * At this point, we don't need a deferred release since
1124 * clone is guaranteed to not be locked.
1125 */
1126 fp->aux = NULL;
Cong Wang53f523f2021-02-17 16:16:47 -08001127 fp->stats = NULL;
1128 fp->active = NULL;
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001129 __bpf_prog_free(fp);
1130}
1131
1132void bpf_jit_prog_release_other(struct bpf_prog *fp, struct bpf_prog *fp_other)
1133{
1134 /* We have to repoint aux->prog to self, as we don't
1135 * know whether fp here is the clone or the original.
1136 */
1137 fp->aux->prog = fp;
1138 bpf_prog_clone_free(fp_other);
1139}
1140
1141struct bpf_prog *bpf_jit_blind_constants(struct bpf_prog *prog)
1142{
1143 struct bpf_insn insn_buff[16], aux[2];
1144 struct bpf_prog *clone, *tmp;
1145 int insn_delta, insn_cnt;
1146 struct bpf_insn *insn;
1147 int i, rewritten;
1148
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001149 if (!bpf_jit_blinding_enabled(prog) || prog->blinded)
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001150 return prog;
1151
1152 clone = bpf_prog_clone_create(prog, GFP_USER);
1153 if (!clone)
1154 return ERR_PTR(-ENOMEM);
1155
1156 insn_cnt = clone->len;
1157 insn = clone->insnsi;
1158
1159 for (i = 0; i < insn_cnt; i++, insn++) {
1160 /* We temporarily need to hold the original ld64 insn
1161 * so that we can still access the first part in the
1162 * second blinding run.
1163 */
1164 if (insn[0].code == (BPF_LD | BPF_IMM | BPF_DW) &&
1165 insn[1].code == 0)
1166 memcpy(aux, insn, sizeof(aux));
1167
Naveen N. Raoede7c462019-08-22 00:53:58 +05301168 rewritten = bpf_jit_blind_insn(insn, aux, insn_buff,
1169 clone->aux->verifier_zext);
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001170 if (!rewritten)
1171 continue;
1172
1173 tmp = bpf_patch_insn_single(clone, i, insn_buff, rewritten);
Alexei Starovoitov4f733792019-04-01 21:27:44 -07001174 if (IS_ERR(tmp)) {
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001175 /* Patching may have repointed aux->prog during
1176 * realloc from the original one, so we need to
1177 * fix it up here on error.
1178 */
1179 bpf_jit_prog_release_other(prog, clone);
Alexei Starovoitov4f733792019-04-01 21:27:44 -07001180 return tmp;
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001181 }
1182
1183 clone = tmp;
1184 insn_delta = rewritten - 1;
1185
1186 /* Walk new program and skip insns we just inserted. */
1187 insn = clone->insnsi + i + insn_delta;
1188 insn_cnt += insn_delta;
1189 i += insn_delta;
1190 }
1191
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08001192 clone->blinded = 1;
Daniel Borkmann4f3446b2016-05-13 19:08:32 +02001193 return clone;
1194}
Daniel Borkmannb954d832014-09-10 15:01:02 +02001195#endif /* CONFIG_BPF_JIT */
Daniel Borkmann738cbe72014-09-08 08:04:47 +02001196
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001197/* Base function for offset calculation. Needs to go into .text section,
1198 * therefore keeping it non-static as well; will also be used by JITs
Daniel Borkmann7105e822017-12-20 13:42:57 +01001199 * anyway later on, so do not let the compiler omit it. This also needs
1200 * to go into kallsyms for correlation from e.g. bpftool, so naming
1201 * must not change.
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001202 */
1203noinline u64 __bpf_call_base(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5)
1204{
1205 return 0;
1206}
Alexei Starovoitov4d9c5c52015-07-20 20:34:19 -07001207EXPORT_SYMBOL_GPL(__bpf_call_base);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001208
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001209/* All UAPI available opcodes. */
1210#define BPF_INSN_MAP(INSN_2, INSN_3) \
1211 /* 32 bit ALU operations. */ \
1212 /* Register based. */ \
Jiong Wang2dc6b102018-12-05 13:52:34 -05001213 INSN_3(ALU, ADD, X), \
1214 INSN_3(ALU, SUB, X), \
1215 INSN_3(ALU, AND, X), \
1216 INSN_3(ALU, OR, X), \
1217 INSN_3(ALU, LSH, X), \
1218 INSN_3(ALU, RSH, X), \
1219 INSN_3(ALU, XOR, X), \
1220 INSN_3(ALU, MUL, X), \
1221 INSN_3(ALU, MOV, X), \
1222 INSN_3(ALU, ARSH, X), \
1223 INSN_3(ALU, DIV, X), \
1224 INSN_3(ALU, MOD, X), \
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001225 INSN_2(ALU, NEG), \
1226 INSN_3(ALU, END, TO_BE), \
1227 INSN_3(ALU, END, TO_LE), \
1228 /* Immediate based. */ \
Jiong Wang2dc6b102018-12-05 13:52:34 -05001229 INSN_3(ALU, ADD, K), \
1230 INSN_3(ALU, SUB, K), \
1231 INSN_3(ALU, AND, K), \
1232 INSN_3(ALU, OR, K), \
1233 INSN_3(ALU, LSH, K), \
1234 INSN_3(ALU, RSH, K), \
1235 INSN_3(ALU, XOR, K), \
1236 INSN_3(ALU, MUL, K), \
1237 INSN_3(ALU, MOV, K), \
1238 INSN_3(ALU, ARSH, K), \
1239 INSN_3(ALU, DIV, K), \
1240 INSN_3(ALU, MOD, K), \
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001241 /* 64 bit ALU operations. */ \
1242 /* Register based. */ \
1243 INSN_3(ALU64, ADD, X), \
1244 INSN_3(ALU64, SUB, X), \
1245 INSN_3(ALU64, AND, X), \
1246 INSN_3(ALU64, OR, X), \
1247 INSN_3(ALU64, LSH, X), \
1248 INSN_3(ALU64, RSH, X), \
1249 INSN_3(ALU64, XOR, X), \
1250 INSN_3(ALU64, MUL, X), \
1251 INSN_3(ALU64, MOV, X), \
1252 INSN_3(ALU64, ARSH, X), \
1253 INSN_3(ALU64, DIV, X), \
1254 INSN_3(ALU64, MOD, X), \
1255 INSN_2(ALU64, NEG), \
1256 /* Immediate based. */ \
1257 INSN_3(ALU64, ADD, K), \
1258 INSN_3(ALU64, SUB, K), \
1259 INSN_3(ALU64, AND, K), \
1260 INSN_3(ALU64, OR, K), \
1261 INSN_3(ALU64, LSH, K), \
1262 INSN_3(ALU64, RSH, K), \
1263 INSN_3(ALU64, XOR, K), \
1264 INSN_3(ALU64, MUL, K), \
1265 INSN_3(ALU64, MOV, K), \
1266 INSN_3(ALU64, ARSH, K), \
1267 INSN_3(ALU64, DIV, K), \
1268 INSN_3(ALU64, MOD, K), \
1269 /* Call instruction. */ \
1270 INSN_2(JMP, CALL), \
1271 /* Exit instruction. */ \
1272 INSN_2(JMP, EXIT), \
Jiong Wang503a8862019-01-26 12:26:04 -05001273 /* 32-bit Jump instructions. */ \
1274 /* Register based. */ \
1275 INSN_3(JMP32, JEQ, X), \
1276 INSN_3(JMP32, JNE, X), \
1277 INSN_3(JMP32, JGT, X), \
1278 INSN_3(JMP32, JLT, X), \
1279 INSN_3(JMP32, JGE, X), \
1280 INSN_3(JMP32, JLE, X), \
1281 INSN_3(JMP32, JSGT, X), \
1282 INSN_3(JMP32, JSLT, X), \
1283 INSN_3(JMP32, JSGE, X), \
1284 INSN_3(JMP32, JSLE, X), \
1285 INSN_3(JMP32, JSET, X), \
1286 /* Immediate based. */ \
1287 INSN_3(JMP32, JEQ, K), \
1288 INSN_3(JMP32, JNE, K), \
1289 INSN_3(JMP32, JGT, K), \
1290 INSN_3(JMP32, JLT, K), \
1291 INSN_3(JMP32, JGE, K), \
1292 INSN_3(JMP32, JLE, K), \
1293 INSN_3(JMP32, JSGT, K), \
1294 INSN_3(JMP32, JSLT, K), \
1295 INSN_3(JMP32, JSGE, K), \
1296 INSN_3(JMP32, JSLE, K), \
1297 INSN_3(JMP32, JSET, K), \
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001298 /* Jump instructions. */ \
1299 /* Register based. */ \
1300 INSN_3(JMP, JEQ, X), \
1301 INSN_3(JMP, JNE, X), \
1302 INSN_3(JMP, JGT, X), \
1303 INSN_3(JMP, JLT, X), \
1304 INSN_3(JMP, JGE, X), \
1305 INSN_3(JMP, JLE, X), \
1306 INSN_3(JMP, JSGT, X), \
1307 INSN_3(JMP, JSLT, X), \
1308 INSN_3(JMP, JSGE, X), \
1309 INSN_3(JMP, JSLE, X), \
1310 INSN_3(JMP, JSET, X), \
1311 /* Immediate based. */ \
1312 INSN_3(JMP, JEQ, K), \
1313 INSN_3(JMP, JNE, K), \
1314 INSN_3(JMP, JGT, K), \
1315 INSN_3(JMP, JLT, K), \
1316 INSN_3(JMP, JGE, K), \
1317 INSN_3(JMP, JLE, K), \
1318 INSN_3(JMP, JSGT, K), \
1319 INSN_3(JMP, JSLT, K), \
1320 INSN_3(JMP, JSGE, K), \
1321 INSN_3(JMP, JSLE, K), \
1322 INSN_3(JMP, JSET, K), \
1323 INSN_2(JMP, JA), \
1324 /* Store instructions. */ \
1325 /* Register based. */ \
1326 INSN_3(STX, MEM, B), \
1327 INSN_3(STX, MEM, H), \
1328 INSN_3(STX, MEM, W), \
1329 INSN_3(STX, MEM, DW), \
Brendan Jackman91c960b2021-01-14 18:17:44 +00001330 INSN_3(STX, ATOMIC, W), \
1331 INSN_3(STX, ATOMIC, DW), \
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001332 /* Immediate based. */ \
1333 INSN_3(ST, MEM, B), \
1334 INSN_3(ST, MEM, H), \
1335 INSN_3(ST, MEM, W), \
1336 INSN_3(ST, MEM, DW), \
1337 /* Load instructions. */ \
1338 /* Register based. */ \
1339 INSN_3(LDX, MEM, B), \
1340 INSN_3(LDX, MEM, H), \
1341 INSN_3(LDX, MEM, W), \
1342 INSN_3(LDX, MEM, DW), \
1343 /* Immediate based. */ \
Daniel Borkmanne0cea7c2018-05-04 01:08:14 +02001344 INSN_3(LD, IMM, DW)
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001345
1346bool bpf_opcode_in_insntable(u8 code)
1347{
1348#define BPF_INSN_2_TBL(x, y) [BPF_##x | BPF_##y] = true
1349#define BPF_INSN_3_TBL(x, y, z) [BPF_##x | BPF_##y | BPF_##z] = true
1350 static const bool public_insntable[256] = {
1351 [0 ... 255] = false,
1352 /* Now overwrite non-defaults ... */
1353 BPF_INSN_MAP(BPF_INSN_2_TBL, BPF_INSN_3_TBL),
Daniel Borkmanne0cea7c2018-05-04 01:08:14 +02001354 /* UAPI exposed, but rewritten opcodes. cBPF carry-over. */
1355 [BPF_LD | BPF_ABS | BPF_B] = true,
1356 [BPF_LD | BPF_ABS | BPF_H] = true,
1357 [BPF_LD | BPF_ABS | BPF_W] = true,
1358 [BPF_LD | BPF_IND | BPF_B] = true,
1359 [BPF_LD | BPF_IND | BPF_H] = true,
1360 [BPF_LD | BPF_IND | BPF_W] = true,
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001361 };
1362#undef BPF_INSN_3_TBL
1363#undef BPF_INSN_2_TBL
1364 return public_insntable[code];
1365}
1366
Alexei Starovoitov290af862018-01-09 10:04:29 -08001367#ifndef CONFIG_BPF_JIT_ALWAYS_ON
Daniel Borkmann6e07a632019-11-02 00:18:00 +01001368u64 __weak bpf_probe_read_kernel(void *dst, u32 size, const void *unsafe_ptr)
Alexei Starovoitov2a027592019-10-15 20:25:02 -07001369{
1370 memset(dst, 0, size);
1371 return -EFAULT;
1372}
Daniel Borkmann6e07a632019-11-02 00:18:00 +01001373
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001374/**
Randy Dunlap019d0452021-08-09 14:52:29 -07001375 * ___bpf_prog_run - run eBPF program on a given context
Valdis Kletnieksde1da682019-01-28 23:04:46 -05001376 * @regs: is the array of MAX_BPF_EXT_REG eBPF pseudo-registers
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001377 * @insn: is the array of eBPF instructions
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001378 *
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001379 * Decode and execute eBPF instructions.
Randy Dunlap019d0452021-08-09 14:52:29 -07001380 *
1381 * Return: whatever value is in %BPF_R0 at program exit
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001382 */
He Fengqing2ec98982021-03-31 07:51:35 +00001383static u64 ___bpf_prog_run(u64 *regs, const struct bpf_insn *insn)
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001384{
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001385#define BPF_INSN_2_LBL(x, y) [BPF_##x | BPF_##y] = &&x##_##y
1386#define BPF_INSN_3_LBL(x, y, z) [BPF_##x | BPF_##y | BPF_##z] = &&x##_##y##_##z
Josh Poimboeufe55a7322019-06-27 20:50:47 -05001387 static const void * const jumptable[256] __annotate_jump_table = {
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001388 [0 ... 255] = &&default_label,
1389 /* Now overwrite non-defaults ... */
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001390 BPF_INSN_MAP(BPF_INSN_2_LBL, BPF_INSN_3_LBL),
1391 /* Non-UAPI available opcodes. */
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001392 [BPF_JMP | BPF_CALL_ARGS] = &&JMP_CALL_ARGS,
Alexei Starovoitov71189fa2017-05-30 13:31:27 -07001393 [BPF_JMP | BPF_TAIL_CALL] = &&JMP_TAIL_CALL,
Daniel Borkmannf5e81d12021-07-13 08:18:31 +00001394 [BPF_ST | BPF_NOSPEC] = &&ST_NOSPEC,
Alexei Starovoitov2a027592019-10-15 20:25:02 -07001395 [BPF_LDX | BPF_PROBE_MEM | BPF_B] = &&LDX_PROBE_MEM_B,
1396 [BPF_LDX | BPF_PROBE_MEM | BPF_H] = &&LDX_PROBE_MEM_H,
1397 [BPF_LDX | BPF_PROBE_MEM | BPF_W] = &&LDX_PROBE_MEM_W,
1398 [BPF_LDX | BPF_PROBE_MEM | BPF_DW] = &&LDX_PROBE_MEM_DW,
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001399 };
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001400#undef BPF_INSN_3_LBL
1401#undef BPF_INSN_2_LBL
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001402 u32 tail_call_cnt = 0;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001403
1404#define CONT ({ insn++; goto select_insn; })
1405#define CONT_JMP ({ insn++; goto select_insn; })
1406
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001407select_insn:
1408 goto *jumptable[insn->code];
1409
Daniel Borkmann28131e92021-06-16 11:25:11 +02001410 /* Explicitly mask the register-based shift amounts with 63 or 31
1411 * to avoid undefined behavior. Normally this won't affect the
1412 * generated code, for example, in case of native 64 bit archs such
1413 * as x86-64 or arm64, the compiler is optimizing the AND away for
1414 * the interpreter. In case of JITs, each of the JIT backends compiles
1415 * the BPF shift operations to machine instructions which produce
1416 * implementation-defined results in such a case; the resulting
1417 * contents of the register may be arbitrary, but program behaviour
1418 * as a whole remains defined. In other words, in case of JIT backends,
1419 * the AND must /not/ be added to the emitted LSH/RSH/ARSH translation.
1420 */
1421 /* ALU (shifts) */
1422#define SHT(OPCODE, OP) \
1423 ALU64_##OPCODE##_X: \
1424 DST = DST OP (SRC & 63); \
1425 CONT; \
1426 ALU_##OPCODE##_X: \
1427 DST = (u32) DST OP ((u32) SRC & 31); \
1428 CONT; \
1429 ALU64_##OPCODE##_K: \
1430 DST = DST OP IMM; \
1431 CONT; \
1432 ALU_##OPCODE##_K: \
1433 DST = (u32) DST OP (u32) IMM; \
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001434 CONT;
Daniel Borkmann28131e92021-06-16 11:25:11 +02001435 /* ALU (rest) */
1436#define ALU(OPCODE, OP) \
1437 ALU64_##OPCODE##_X: \
1438 DST = DST OP SRC; \
1439 CONT; \
1440 ALU_##OPCODE##_X: \
1441 DST = (u32) DST OP (u32) SRC; \
1442 CONT; \
1443 ALU64_##OPCODE##_K: \
1444 DST = DST OP IMM; \
1445 CONT; \
1446 ALU_##OPCODE##_K: \
1447 DST = (u32) DST OP (u32) IMM; \
1448 CONT;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001449 ALU(ADD, +)
1450 ALU(SUB, -)
1451 ALU(AND, &)
1452 ALU(OR, |)
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001453 ALU(XOR, ^)
1454 ALU(MUL, *)
Daniel Borkmann28131e92021-06-16 11:25:11 +02001455 SHT(LSH, <<)
1456 SHT(RSH, >>)
1457#undef SHT
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001458#undef ALU
1459 ALU_NEG:
1460 DST = (u32) -DST;
1461 CONT;
1462 ALU64_NEG:
1463 DST = -DST;
1464 CONT;
1465 ALU_MOV_X:
1466 DST = (u32) SRC;
1467 CONT;
1468 ALU_MOV_K:
1469 DST = (u32) IMM;
1470 CONT;
1471 ALU64_MOV_X:
1472 DST = SRC;
1473 CONT;
1474 ALU64_MOV_K:
1475 DST = IMM;
1476 CONT;
Alexei Starovoitov02ab6952014-09-04 22:17:17 -07001477 LD_IMM_DW:
1478 DST = (u64) (u32) insn[0].imm | ((u64) (u32) insn[1].imm) << 32;
1479 insn++;
1480 CONT;
Jiong Wang2dc6b102018-12-05 13:52:34 -05001481 ALU_ARSH_X:
Daniel Borkmann28131e92021-06-16 11:25:11 +02001482 DST = (u64) (u32) (((s32) DST) >> (SRC & 31));
Jiong Wang2dc6b102018-12-05 13:52:34 -05001483 CONT;
1484 ALU_ARSH_K:
Jiong Wang75672dd2019-06-25 17:41:50 +01001485 DST = (u64) (u32) (((s32) DST) >> IMM);
Jiong Wang2dc6b102018-12-05 13:52:34 -05001486 CONT;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001487 ALU64_ARSH_X:
Daniel Borkmann28131e92021-06-16 11:25:11 +02001488 (*(s64 *) &DST) >>= (SRC & 63);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001489 CONT;
1490 ALU64_ARSH_K:
1491 (*(s64 *) &DST) >>= IMM;
1492 CONT;
1493 ALU64_MOD_X:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001494 div64_u64_rem(DST, SRC, &AX);
1495 DST = AX;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001496 CONT;
1497 ALU_MOD_X:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001498 AX = (u32) DST;
1499 DST = do_div(AX, (u32) SRC);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001500 CONT;
1501 ALU64_MOD_K:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001502 div64_u64_rem(DST, IMM, &AX);
1503 DST = AX;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001504 CONT;
1505 ALU_MOD_K:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001506 AX = (u32) DST;
1507 DST = do_div(AX, (u32) IMM);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001508 CONT;
1509 ALU64_DIV_X:
Alexei Starovoitov876a7ae2015-04-27 14:40:37 -07001510 DST = div64_u64(DST, SRC);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001511 CONT;
1512 ALU_DIV_X:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001513 AX = (u32) DST;
1514 do_div(AX, (u32) SRC);
1515 DST = (u32) AX;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001516 CONT;
1517 ALU64_DIV_K:
Alexei Starovoitov876a7ae2015-04-27 14:40:37 -07001518 DST = div64_u64(DST, IMM);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001519 CONT;
1520 ALU_DIV_K:
Daniel Borkmann144cd912019-01-03 00:58:28 +01001521 AX = (u32) DST;
1522 do_div(AX, (u32) IMM);
1523 DST = (u32) AX;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001524 CONT;
1525 ALU_END_TO_BE:
1526 switch (IMM) {
1527 case 16:
1528 DST = (__force u16) cpu_to_be16(DST);
1529 break;
1530 case 32:
1531 DST = (__force u32) cpu_to_be32(DST);
1532 break;
1533 case 64:
1534 DST = (__force u64) cpu_to_be64(DST);
1535 break;
1536 }
1537 CONT;
1538 ALU_END_TO_LE:
1539 switch (IMM) {
1540 case 16:
1541 DST = (__force u16) cpu_to_le16(DST);
1542 break;
1543 case 32:
1544 DST = (__force u32) cpu_to_le32(DST);
1545 break;
1546 case 64:
1547 DST = (__force u64) cpu_to_le64(DST);
1548 break;
1549 }
1550 CONT;
1551
1552 /* CALL */
1553 JMP_CALL:
1554 /* Function call scratches BPF_R1-BPF_R5 registers,
1555 * preserves BPF_R6-BPF_R9, and stores return value
1556 * into BPF_R0.
1557 */
1558 BPF_R0 = (__bpf_call_base + insn->imm)(BPF_R1, BPF_R2, BPF_R3,
1559 BPF_R4, BPF_R5);
1560 CONT;
1561
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001562 JMP_CALL_ARGS:
1563 BPF_R0 = (__bpf_call_base_args + insn->imm)(BPF_R1, BPF_R2,
1564 BPF_R3, BPF_R4,
1565 BPF_R5,
1566 insn + insn->off + 1);
1567 CONT;
1568
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001569 JMP_TAIL_CALL: {
1570 struct bpf_map *map = (struct bpf_map *) (unsigned long) BPF_R2;
1571 struct bpf_array *array = container_of(map, struct bpf_array, map);
1572 struct bpf_prog *prog;
Alexei Starovoitov90caccd2017-10-03 15:37:20 -07001573 u32 index = BPF_R3;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001574
1575 if (unlikely(index >= array->map.max_entries))
1576 goto out;
Tiezhu Yangebf7f6f2021-11-05 09:30:00 +08001577
1578 if (unlikely(tail_call_cnt >= MAX_TAIL_CALL_CNT))
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001579 goto out;
1580
1581 tail_call_cnt++;
1582
Wang Nan2a36f0b2015-08-06 07:02:33 +00001583 prog = READ_ONCE(array->ptrs[index]);
Daniel Borkmann1ca1cc92016-06-28 12:18:23 +02001584 if (!prog)
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001585 goto out;
1586
Daniel Borkmannc4675f92015-07-13 20:49:32 +02001587 /* ARG1 at this point is guaranteed to point to CTX from
1588 * the verifier side due to the fact that the tail call is
Chris Packham0142ddd2020-05-26 11:00:24 +12001589 * handled like a helper, that is, bpf_tail_call_proto,
Daniel Borkmannc4675f92015-07-13 20:49:32 +02001590 * where arg1_type is ARG_PTR_TO_CTX.
1591 */
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001592 insn = prog->insnsi;
1593 goto select_insn;
1594out:
1595 CONT;
1596 }
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001597 JMP_JA:
1598 insn += insn->off;
1599 CONT;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001600 JMP_EXIT:
1601 return BPF_R0;
Jiong Wang503a8862019-01-26 12:26:04 -05001602 /* JMP */
1603#define COND_JMP(SIGN, OPCODE, CMP_OP) \
1604 JMP_##OPCODE##_X: \
1605 if ((SIGN##64) DST CMP_OP (SIGN##64) SRC) { \
1606 insn += insn->off; \
1607 CONT_JMP; \
1608 } \
1609 CONT; \
1610 JMP32_##OPCODE##_X: \
1611 if ((SIGN##32) DST CMP_OP (SIGN##32) SRC) { \
1612 insn += insn->off; \
1613 CONT_JMP; \
1614 } \
1615 CONT; \
1616 JMP_##OPCODE##_K: \
1617 if ((SIGN##64) DST CMP_OP (SIGN##64) IMM) { \
1618 insn += insn->off; \
1619 CONT_JMP; \
1620 } \
1621 CONT; \
1622 JMP32_##OPCODE##_K: \
1623 if ((SIGN##32) DST CMP_OP (SIGN##32) IMM) { \
1624 insn += insn->off; \
1625 CONT_JMP; \
1626 } \
1627 CONT;
1628 COND_JMP(u, JEQ, ==)
1629 COND_JMP(u, JNE, !=)
1630 COND_JMP(u, JGT, >)
1631 COND_JMP(u, JLT, <)
1632 COND_JMP(u, JGE, >=)
1633 COND_JMP(u, JLE, <=)
1634 COND_JMP(u, JSET, &)
1635 COND_JMP(s, JSGT, >)
1636 COND_JMP(s, JSLT, <)
1637 COND_JMP(s, JSGE, >=)
1638 COND_JMP(s, JSLE, <=)
1639#undef COND_JMP
Daniel Borkmannf5e81d12021-07-13 08:18:31 +00001640 /* ST, STX and LDX*/
1641 ST_NOSPEC:
1642 /* Speculation barrier for mitigating Speculative Store Bypass.
1643 * In case of arm64, we rely on the firmware mitigation as
1644 * controlled via the ssbd kernel parameter. Whenever the
1645 * mitigation is enabled, it works for all of the kernel code
1646 * with no need to provide any additional instructions here.
1647 * In case of x86, we use 'lfence' insn for mitigation. We
1648 * reuse preexisting logic from Spectre v1 mitigation that
1649 * happens to produce the required code on x86 for v4 as well.
1650 */
1651#ifdef CONFIG_X86
1652 barrier_nospec();
1653#endif
1654 CONT;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001655#define LDST(SIZEOP, SIZE) \
1656 STX_MEM_##SIZEOP: \
1657 *(SIZE *)(unsigned long) (DST + insn->off) = SRC; \
1658 CONT; \
1659 ST_MEM_##SIZEOP: \
1660 *(SIZE *)(unsigned long) (DST + insn->off) = IMM; \
1661 CONT; \
1662 LDX_MEM_##SIZEOP: \
1663 DST = *(SIZE *)(unsigned long) (SRC + insn->off); \
1664 CONT;
1665
1666 LDST(B, u8)
1667 LDST(H, u16)
1668 LDST(W, u32)
1669 LDST(DW, u64)
1670#undef LDST
Daniel Borkmann6e07a632019-11-02 00:18:00 +01001671#define LDX_PROBE(SIZEOP, SIZE) \
1672 LDX_PROBE_MEM_##SIZEOP: \
Martin KaFai Lau85d31dd2019-11-06 17:46:40 -08001673 bpf_probe_read_kernel(&DST, SIZE, (const void *)(long) (SRC + insn->off)); \
Alexei Starovoitov2a027592019-10-15 20:25:02 -07001674 CONT;
1675 LDX_PROBE(B, 1)
1676 LDX_PROBE(H, 2)
1677 LDX_PROBE(W, 4)
1678 LDX_PROBE(DW, 8)
1679#undef LDX_PROBE
1680
Brendan Jackman46291062021-01-14 18:17:48 +00001681#define ATOMIC_ALU_OP(BOP, KOP) \
1682 case BOP: \
1683 if (BPF_SIZE(insn->code) == BPF_W) \
1684 atomic_##KOP((u32) SRC, (atomic_t *)(unsigned long) \
1685 (DST + insn->off)); \
1686 else \
1687 atomic64_##KOP((u64) SRC, (atomic64_t *)(unsigned long) \
1688 (DST + insn->off)); \
1689 break; \
1690 case BOP | BPF_FETCH: \
1691 if (BPF_SIZE(insn->code) == BPF_W) \
1692 SRC = (u32) atomic_fetch_##KOP( \
1693 (u32) SRC, \
1694 (atomic_t *)(unsigned long) (DST + insn->off)); \
1695 else \
1696 SRC = (u64) atomic64_fetch_##KOP( \
1697 (u64) SRC, \
1698 (atomic64_t *)(unsigned long) (DST + insn->off)); \
Brendan Jackman5ca419f2021-01-14 18:17:46 +00001699 break;
Brendan Jackman5ca419f2021-01-14 18:17:46 +00001700
Brendan Jackman91c960b2021-01-14 18:17:44 +00001701 STX_ATOMIC_DW:
Brendan Jackman46291062021-01-14 18:17:48 +00001702 STX_ATOMIC_W:
Brendan Jackman91c960b2021-01-14 18:17:44 +00001703 switch (IMM) {
Brendan Jackman46291062021-01-14 18:17:48 +00001704 ATOMIC_ALU_OP(BPF_ADD, add)
Brendan Jackman981f94c2021-01-14 18:17:49 +00001705 ATOMIC_ALU_OP(BPF_AND, and)
1706 ATOMIC_ALU_OP(BPF_OR, or)
1707 ATOMIC_ALU_OP(BPF_XOR, xor)
Brendan Jackman46291062021-01-14 18:17:48 +00001708#undef ATOMIC_ALU_OP
1709
Brendan Jackman5ffa2552021-01-14 18:17:47 +00001710 case BPF_XCHG:
Brendan Jackman46291062021-01-14 18:17:48 +00001711 if (BPF_SIZE(insn->code) == BPF_W)
1712 SRC = (u32) atomic_xchg(
1713 (atomic_t *)(unsigned long) (DST + insn->off),
1714 (u32) SRC);
1715 else
1716 SRC = (u64) atomic64_xchg(
1717 (atomic64_t *)(unsigned long) (DST + insn->off),
1718 (u64) SRC);
Brendan Jackman5ffa2552021-01-14 18:17:47 +00001719 break;
1720 case BPF_CMPXCHG:
Brendan Jackman46291062021-01-14 18:17:48 +00001721 if (BPF_SIZE(insn->code) == BPF_W)
1722 BPF_R0 = (u32) atomic_cmpxchg(
1723 (atomic_t *)(unsigned long) (DST + insn->off),
1724 (u32) BPF_R0, (u32) SRC);
1725 else
1726 BPF_R0 = (u64) atomic64_cmpxchg(
1727 (atomic64_t *)(unsigned long) (DST + insn->off),
1728 (u64) BPF_R0, (u64) SRC);
Brendan Jackman5ffa2552021-01-14 18:17:47 +00001729 break;
Brendan Jackman46291062021-01-14 18:17:48 +00001730
Brendan Jackman91c960b2021-01-14 18:17:44 +00001731 default:
1732 goto default_label;
1733 }
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001734 CONT;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001735
1736 default_label:
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001737 /* If we ever reach this, we have a bug somewhere. Die hard here
1738 * instead of just returning 0; we could be somewhere in a subprog,
1739 * so execution could continue otherwise which we do /not/ want.
1740 *
1741 * Note, verifier whitelists all opcodes in bpf_opcode_in_insntable().
1742 */
Brendan Jackman91c960b2021-01-14 18:17:44 +00001743 pr_warn("BPF interpreter: unknown opcode %02x (imm: 0x%x)\n",
1744 insn->code, insn->imm);
Daniel Borkmann5e581da2018-01-26 23:33:38 +01001745 BUG_ON(1);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001746 return 0;
1747}
Alexei Starovoitovf696b8f2017-05-30 13:31:28 -07001748
Alexei Starovoitovb870aa92017-05-30 13:31:33 -07001749#define PROG_NAME(stack_size) __bpf_prog_run##stack_size
1750#define DEFINE_BPF_PROG_RUN(stack_size) \
1751static unsigned int PROG_NAME(stack_size)(const void *ctx, const struct bpf_insn *insn) \
1752{ \
1753 u64 stack[stack_size / sizeof(u64)]; \
Daniel Borkmann144cd912019-01-03 00:58:28 +01001754 u64 regs[MAX_BPF_EXT_REG]; \
Alexei Starovoitovb870aa92017-05-30 13:31:33 -07001755\
1756 FP = (u64) (unsigned long) &stack[ARRAY_SIZE(stack)]; \
1757 ARG1 = (u64) (unsigned long) ctx; \
He Fengqing2ec98982021-03-31 07:51:35 +00001758 return ___bpf_prog_run(regs, insn); \
Alexei Starovoitovf696b8f2017-05-30 13:31:28 -07001759}
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001760
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001761#define PROG_NAME_ARGS(stack_size) __bpf_prog_run_args##stack_size
1762#define DEFINE_BPF_PROG_RUN_ARGS(stack_size) \
1763static u64 PROG_NAME_ARGS(stack_size)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5, \
1764 const struct bpf_insn *insn) \
1765{ \
1766 u64 stack[stack_size / sizeof(u64)]; \
Daniel Borkmann144cd912019-01-03 00:58:28 +01001767 u64 regs[MAX_BPF_EXT_REG]; \
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001768\
1769 FP = (u64) (unsigned long) &stack[ARRAY_SIZE(stack)]; \
1770 BPF_R1 = r1; \
1771 BPF_R2 = r2; \
1772 BPF_R3 = r3; \
1773 BPF_R4 = r4; \
1774 BPF_R5 = r5; \
He Fengqing2ec98982021-03-31 07:51:35 +00001775 return ___bpf_prog_run(regs, insn); \
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001776}
1777
Alexei Starovoitovb870aa92017-05-30 13:31:33 -07001778#define EVAL1(FN, X) FN(X)
1779#define EVAL2(FN, X, Y...) FN(X) EVAL1(FN, Y)
1780#define EVAL3(FN, X, Y...) FN(X) EVAL2(FN, Y)
1781#define EVAL4(FN, X, Y...) FN(X) EVAL3(FN, Y)
1782#define EVAL5(FN, X, Y...) FN(X) EVAL4(FN, Y)
1783#define EVAL6(FN, X, Y...) FN(X) EVAL5(FN, Y)
1784
1785EVAL6(DEFINE_BPF_PROG_RUN, 32, 64, 96, 128, 160, 192);
1786EVAL6(DEFINE_BPF_PROG_RUN, 224, 256, 288, 320, 352, 384);
1787EVAL4(DEFINE_BPF_PROG_RUN, 416, 448, 480, 512);
1788
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001789EVAL6(DEFINE_BPF_PROG_RUN_ARGS, 32, 64, 96, 128, 160, 192);
1790EVAL6(DEFINE_BPF_PROG_RUN_ARGS, 224, 256, 288, 320, 352, 384);
1791EVAL4(DEFINE_BPF_PROG_RUN_ARGS, 416, 448, 480, 512);
1792
Alexei Starovoitovb870aa92017-05-30 13:31:33 -07001793#define PROG_NAME_LIST(stack_size) PROG_NAME(stack_size),
1794
1795static unsigned int (*interpreters[])(const void *ctx,
1796 const struct bpf_insn *insn) = {
1797EVAL6(PROG_NAME_LIST, 32, 64, 96, 128, 160, 192)
1798EVAL6(PROG_NAME_LIST, 224, 256, 288, 320, 352, 384)
1799EVAL4(PROG_NAME_LIST, 416, 448, 480, 512)
1800};
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -08001801#undef PROG_NAME_LIST
1802#define PROG_NAME_LIST(stack_size) PROG_NAME_ARGS(stack_size),
1803static u64 (*interpreters_args[])(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5,
1804 const struct bpf_insn *insn) = {
1805EVAL6(PROG_NAME_LIST, 32, 64, 96, 128, 160, 192)
1806EVAL6(PROG_NAME_LIST, 224, 256, 288, 320, 352, 384)
1807EVAL4(PROG_NAME_LIST, 416, 448, 480, 512)
1808};
1809#undef PROG_NAME_LIST
1810
1811void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth)
1812{
1813 stack_depth = max_t(u32, stack_depth, 1);
1814 insn->off = (s16) insn->imm;
1815 insn->imm = interpreters_args[(round_up(stack_depth, 32) / 32) - 1] -
1816 __bpf_call_base_args;
1817 insn->code = BPF_JMP | BPF_CALL_ARGS;
1818}
Alexei Starovoitovb870aa92017-05-30 13:31:33 -07001819
Alexei Starovoitov290af862018-01-09 10:04:29 -08001820#else
Daniel Borkmannfa9dd592018-01-20 01:24:33 +01001821static unsigned int __bpf_prog_ret0_warn(const void *ctx,
1822 const struct bpf_insn *insn)
Alexei Starovoitov290af862018-01-09 10:04:29 -08001823{
Daniel Borkmannfa9dd592018-01-20 01:24:33 +01001824 /* If this handler ever gets executed, then BPF_JIT_ALWAYS_ON
1825 * is not working properly, so warn about it!
1826 */
1827 WARN_ON_ONCE(1);
Alexei Starovoitov290af862018-01-09 10:04:29 -08001828 return 0;
1829}
1830#endif
1831
Daniel Borkmann3324b582015-05-29 23:23:07 +02001832bool bpf_prog_array_compatible(struct bpf_array *array,
1833 const struct bpf_prog *fp)
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001834{
Toke Høiland-Jørgensen54713c82021-10-26 13:00:19 +02001835 bool ret;
1836
Josef Bacik9802d862017-12-11 11:36:48 -05001837 if (fp->kprobe_override)
1838 return false;
1839
Toke Høiland-Jørgensen54713c82021-10-26 13:00:19 +02001840 spin_lock(&array->aux->owner.lock);
1841
1842 if (!array->aux->owner.type) {
Daniel Borkmann3324b582015-05-29 23:23:07 +02001843 /* There's no owner yet where we could check for
1844 * compatibility.
1845 */
Toke Høiland-Jørgensen54713c82021-10-26 13:00:19 +02001846 array->aux->owner.type = fp->type;
1847 array->aux->owner.jited = fp->jited;
1848 ret = true;
1849 } else {
1850 ret = array->aux->owner.type == fp->type &&
1851 array->aux->owner.jited == fp->jited;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001852 }
Toke Høiland-Jørgensen54713c82021-10-26 13:00:19 +02001853 spin_unlock(&array->aux->owner.lock);
1854 return ret;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001855}
1856
Daniel Borkmann3324b582015-05-29 23:23:07 +02001857static int bpf_check_tail_call(const struct bpf_prog *fp)
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001858{
1859 struct bpf_prog_aux *aux = fp->aux;
YiFei Zhu984fe942020-09-15 16:45:39 -07001860 int i, ret = 0;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001861
YiFei Zhu984fe942020-09-15 16:45:39 -07001862 mutex_lock(&aux->used_maps_mutex);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001863 for (i = 0; i < aux->used_map_cnt; i++) {
Daniel Borkmann3324b582015-05-29 23:23:07 +02001864 struct bpf_map *map = aux->used_maps[i];
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001865 struct bpf_array *array;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001866
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001867 if (map->map_type != BPF_MAP_TYPE_PROG_ARRAY)
1868 continue;
Daniel Borkmann3324b582015-05-29 23:23:07 +02001869
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001870 array = container_of(map, struct bpf_array, map);
YiFei Zhu984fe942020-09-15 16:45:39 -07001871 if (!bpf_prog_array_compatible(array, fp)) {
1872 ret = -EINVAL;
1873 goto out;
1874 }
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001875 }
1876
YiFei Zhu984fe942020-09-15 16:45:39 -07001877out:
1878 mutex_unlock(&aux->used_maps_mutex);
1879 return ret;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001880}
1881
Daniel Borkmann9facc332018-06-15 02:30:48 +02001882static void bpf_prog_select_func(struct bpf_prog *fp)
1883{
1884#ifndef CONFIG_BPF_JIT_ALWAYS_ON
1885 u32 stack_depth = max_t(u32, fp->aux->stack_depth, 1);
1886
1887 fp->bpf_func = interpreters[(round_up(stack_depth, 32) / 32) - 1];
1888#else
1889 fp->bpf_func = __bpf_prog_ret0_warn;
1890#endif
1891}
1892
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001893/**
Daniel Borkmann3324b582015-05-29 23:23:07 +02001894 * bpf_prog_select_runtime - select exec runtime for BPF program
Christoph Hellwig06edc592021-11-19 17:32:13 +01001895 * @fp: bpf_prog populated with BPF program
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001896 * @err: pointer to error variable
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001897 *
Daniel Borkmann3324b582015-05-29 23:23:07 +02001898 * Try to JIT eBPF program, if JIT is not available, use interpreter.
Andrii Nakryikofb7dd8b2021-08-15 00:05:54 -07001899 * The BPF program will be executed via bpf_prog_run() function.
Randy Dunlap019d0452021-08-09 14:52:29 -07001900 *
1901 * Return: the &fp argument along with &err set to 0 for success or
1902 * a negative errno code on failure
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001903 */
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001904struct bpf_prog *bpf_prog_select_runtime(struct bpf_prog *fp, int *err)
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001905{
Daniel Borkmann9facc332018-06-15 02:30:48 +02001906 /* In case of BPF to BPF calls, verifier did all the prep
1907 * work with regards to JITing, etc.
1908 */
Martin KaFai Laue6ac2452021-03-24 18:51:42 -07001909 bool jit_needed = false;
1910
Daniel Borkmann9facc332018-06-15 02:30:48 +02001911 if (fp->bpf_func)
1912 goto finalize;
Martin KaFai Lau8007e402017-06-28 10:41:24 -07001913
Martin KaFai Laue6ac2452021-03-24 18:51:42 -07001914 if (IS_ENABLED(CONFIG_BPF_JIT_ALWAYS_ON) ||
1915 bpf_prog_has_kfunc_call(fp))
1916 jit_needed = true;
1917
Daniel Borkmann9facc332018-06-15 02:30:48 +02001918 bpf_prog_select_func(fp);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001919
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001920 /* eBPF JITs can rewrite the program in case constant
1921 * blinding is active. However, in case of error during
1922 * blinding, bpf_int_jit_compile() must always return a
1923 * valid program, which in this case would simply not
1924 * be JITed, but falls back to the interpreter.
1925 */
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001926 if (!bpf_prog_is_dev_bound(fp->aux)) {
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001927 *err = bpf_prog_alloc_jited_linfo(fp);
1928 if (*err)
1929 return fp;
1930
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001931 fp = bpf_int_jit_compile(fp);
Martin KaFai Laue16301f2021-03-24 18:51:30 -07001932 bpf_prog_jit_attempt_done(fp);
Martin KaFai Laue6ac2452021-03-24 18:51:42 -07001933 if (!fp->jited && jit_needed) {
Alexei Starovoitov290af862018-01-09 10:04:29 -08001934 *err = -ENOTSUPP;
1935 return fp;
Martin KaFai Lauc454a462018-12-07 16:42:25 -08001936 }
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07001937 } else {
1938 *err = bpf_prog_offload_compile(fp);
1939 if (*err)
1940 return fp;
1941 }
Daniel Borkmann9facc332018-06-15 02:30:48 +02001942
1943finalize:
Daniel Borkmann60a3b222014-09-02 22:53:44 +02001944 bpf_prog_lock_ro(fp);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001945
Daniel Borkmann3324b582015-05-29 23:23:07 +02001946 /* The tail call compatibility check can only be done at
1947 * this late stage as we need to determine, if we deal
1948 * with JITed or non JITed program concatenations and not
1949 * all eBPF JITs might immediately support all features.
1950 */
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02001951 *err = bpf_check_tail_call(fp);
1952
1953 return fp;
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001954}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07001955EXPORT_SYMBOL_GPL(bpf_prog_select_runtime);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07001956
Yonghong Songe87c6bc2017-10-23 23:53:08 -07001957static unsigned int __bpf_prog_ret1(const void *ctx,
1958 const struct bpf_insn *insn)
1959{
1960 return 1;
1961}
1962
1963static struct bpf_prog_dummy {
1964 struct bpf_prog prog;
1965} dummy_bpf_prog = {
1966 .prog = {
1967 .bpf_func = __bpf_prog_ret1,
1968 },
1969};
1970
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001971/* to avoid allocating empty bpf_prog_array for cgroups that
1972 * don't have bpf program attached use one global 'empty_prog_array'
1973 * It will not be modified the caller of bpf_prog_array_alloc()
1974 * (since caller requested prog_cnt == 0)
1975 * that pointer should be 'freed' by bpf_prog_array_free()
1976 */
1977static struct {
1978 struct bpf_prog_array hdr;
1979 struct bpf_prog *null_prog;
1980} empty_prog_array = {
1981 .null_prog = NULL,
1982};
1983
Roman Gushchind29ab6e2018-07-13 12:41:10 -07001984struct bpf_prog_array *bpf_prog_array_alloc(u32 prog_cnt, gfp_t flags)
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001985{
1986 if (prog_cnt)
1987 return kzalloc(sizeof(struct bpf_prog_array) +
Roman Gushchin394e40a2018-08-02 14:27:21 -07001988 sizeof(struct bpf_prog_array_item) *
1989 (prog_cnt + 1),
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001990 flags);
1991
1992 return &empty_prog_array.hdr;
1993}
1994
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07001995void bpf_prog_array_free(struct bpf_prog_array *progs)
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001996{
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07001997 if (!progs || progs == &empty_prog_array.hdr)
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -07001998 return;
1999 kfree_rcu(progs, rcu);
2000}
2001
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002002int bpf_prog_array_length(struct bpf_prog_array *array)
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002003{
Roman Gushchin394e40a2018-08-02 14:27:21 -07002004 struct bpf_prog_array_item *item;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002005 u32 cnt = 0;
2006
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002007 for (item = array->items; item->prog; item++)
Roman Gushchin394e40a2018-08-02 14:27:21 -07002008 if (item->prog != &dummy_bpf_prog.prog)
Yonghong Songc8c088b2017-11-30 13:47:54 -08002009 cnt++;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002010 return cnt;
2011}
2012
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07002013bool bpf_prog_array_is_empty(struct bpf_prog_array *array)
2014{
2015 struct bpf_prog_array_item *item;
2016
2017 for (item = array->items; item->prog; item++)
2018 if (item->prog != &dummy_bpf_prog.prog)
2019 return false;
2020 return true;
2021}
Roman Gushchin394e40a2018-08-02 14:27:21 -07002022
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002023static bool bpf_prog_array_copy_core(struct bpf_prog_array *array,
Yonghong Song3a38bb92018-04-10 09:37:32 -07002024 u32 *prog_ids,
2025 u32 request_cnt)
2026{
Roman Gushchin394e40a2018-08-02 14:27:21 -07002027 struct bpf_prog_array_item *item;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002028 int i = 0;
2029
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002030 for (item = array->items; item->prog; item++) {
Roman Gushchin394e40a2018-08-02 14:27:21 -07002031 if (item->prog == &dummy_bpf_prog.prog)
Yonghong Song3a38bb92018-04-10 09:37:32 -07002032 continue;
Roman Gushchin394e40a2018-08-02 14:27:21 -07002033 prog_ids[i] = item->prog->aux->id;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002034 if (++i == request_cnt) {
Roman Gushchin394e40a2018-08-02 14:27:21 -07002035 item++;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002036 break;
2037 }
2038 }
2039
Roman Gushchin394e40a2018-08-02 14:27:21 -07002040 return !!(item->prog);
Yonghong Song3a38bb92018-04-10 09:37:32 -07002041}
2042
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002043int bpf_prog_array_copy_to_user(struct bpf_prog_array *array,
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002044 __u32 __user *prog_ids, u32 cnt)
2045{
Alexei Starovoitov09112872018-02-02 15:14:05 -08002046 unsigned long err = 0;
Alexei Starovoitov09112872018-02-02 15:14:05 -08002047 bool nospc;
Yonghong Song3a38bb92018-04-10 09:37:32 -07002048 u32 *ids;
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002049
Alexei Starovoitov09112872018-02-02 15:14:05 -08002050 /* users of this function are doing:
2051 * cnt = bpf_prog_array_length();
2052 * if (cnt > 0)
2053 * bpf_prog_array_copy_to_user(..., cnt);
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002054 * so below kcalloc doesn't need extra cnt > 0 check.
Alexei Starovoitov09112872018-02-02 15:14:05 -08002055 */
Daniel Borkmann9c481b92018-02-14 15:31:00 +01002056 ids = kcalloc(cnt, sizeof(u32), GFP_USER | __GFP_NOWARN);
Alexei Starovoitov09112872018-02-02 15:14:05 -08002057 if (!ids)
2058 return -ENOMEM;
Roman Gushchin394e40a2018-08-02 14:27:21 -07002059 nospc = bpf_prog_array_copy_core(array, ids, cnt);
Alexei Starovoitov09112872018-02-02 15:14:05 -08002060 err = copy_to_user(prog_ids, ids, cnt * sizeof(u32));
2061 kfree(ids);
2062 if (err)
2063 return -EFAULT;
2064 if (nospc)
Alexei Starovoitov468e2f62017-10-02 22:50:22 -07002065 return -ENOSPC;
2066 return 0;
2067}
2068
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002069void bpf_prog_array_delete_safe(struct bpf_prog_array *array,
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002070 struct bpf_prog *old_prog)
2071{
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002072 struct bpf_prog_array_item *item;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002073
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002074 for (item = array->items; item->prog; item++)
Roman Gushchin394e40a2018-08-02 14:27:21 -07002075 if (item->prog == old_prog) {
2076 WRITE_ONCE(item->prog, &dummy_bpf_prog.prog);
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002077 break;
2078 }
2079}
2080
Jakub Sitnickice3aa9c2020-07-17 12:35:22 +02002081/**
2082 * bpf_prog_array_delete_safe_at() - Replaces the program at the given
2083 * index into the program array with
2084 * a dummy no-op program.
2085 * @array: a bpf_prog_array
2086 * @index: the index of the program to replace
2087 *
2088 * Skips over dummy programs, by not counting them, when calculating
Randy Dunlapb8c1a302020-08-06 20:31:41 -07002089 * the position of the program to replace.
Jakub Sitnickice3aa9c2020-07-17 12:35:22 +02002090 *
2091 * Return:
2092 * * 0 - Success
2093 * * -EINVAL - Invalid index value. Must be a non-negative integer.
2094 * * -ENOENT - Index out of range
2095 */
2096int bpf_prog_array_delete_safe_at(struct bpf_prog_array *array, int index)
2097{
2098 return bpf_prog_array_update_at(array, index, &dummy_bpf_prog.prog);
2099}
2100
2101/**
2102 * bpf_prog_array_update_at() - Updates the program at the given index
2103 * into the program array.
2104 * @array: a bpf_prog_array
2105 * @index: the index of the program to update
2106 * @prog: the program to insert into the array
2107 *
2108 * Skips over dummy programs, by not counting them, when calculating
2109 * the position of the program to update.
2110 *
2111 * Return:
2112 * * 0 - Success
2113 * * -EINVAL - Invalid index value. Must be a non-negative integer.
2114 * * -ENOENT - Index out of range
2115 */
2116int bpf_prog_array_update_at(struct bpf_prog_array *array, int index,
2117 struct bpf_prog *prog)
2118{
2119 struct bpf_prog_array_item *item;
2120
2121 if (unlikely(index < 0))
2122 return -EINVAL;
2123
2124 for (item = array->items; item->prog; item++) {
2125 if (item->prog == &dummy_bpf_prog.prog)
2126 continue;
2127 if (!index) {
2128 WRITE_ONCE(item->prog, prog);
2129 return 0;
2130 }
2131 index--;
2132 }
2133 return -ENOENT;
2134}
2135
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002136int bpf_prog_array_copy(struct bpf_prog_array *old_array,
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002137 struct bpf_prog *exclude_prog,
2138 struct bpf_prog *include_prog,
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07002139 u64 bpf_cookie,
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002140 struct bpf_prog_array **new_array)
2141{
2142 int new_prog_cnt, carry_prog_cnt = 0;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07002143 struct bpf_prog_array_item *existing, *new;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002144 struct bpf_prog_array *array;
Sean Young170a7e32018-05-27 12:24:08 +01002145 bool found_exclude = false;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002146
2147 /* Figure out how many existing progs we need to carry over to
2148 * the new array.
2149 */
2150 if (old_array) {
Roman Gushchin394e40a2018-08-02 14:27:21 -07002151 existing = old_array->items;
2152 for (; existing->prog; existing++) {
2153 if (existing->prog == exclude_prog) {
Sean Young170a7e32018-05-27 12:24:08 +01002154 found_exclude = true;
2155 continue;
2156 }
Roman Gushchin394e40a2018-08-02 14:27:21 -07002157 if (existing->prog != &dummy_bpf_prog.prog)
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002158 carry_prog_cnt++;
Roman Gushchin394e40a2018-08-02 14:27:21 -07002159 if (existing->prog == include_prog)
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002160 return -EEXIST;
2161 }
2162 }
2163
Sean Young170a7e32018-05-27 12:24:08 +01002164 if (exclude_prog && !found_exclude)
2165 return -ENOENT;
2166
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002167 /* How many progs (not NULL) will be in the new array? */
2168 new_prog_cnt = carry_prog_cnt;
2169 if (include_prog)
2170 new_prog_cnt += 1;
2171
2172 /* Do we have any prog (not NULL) in the new array? */
2173 if (!new_prog_cnt) {
2174 *new_array = NULL;
2175 return 0;
2176 }
2177
2178 /* +1 as the end of prog_array is marked with NULL */
2179 array = bpf_prog_array_alloc(new_prog_cnt + 1, GFP_KERNEL);
2180 if (!array)
2181 return -ENOMEM;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07002182 new = array->items;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002183
2184 /* Fill in the new prog array */
2185 if (carry_prog_cnt) {
Roman Gushchin394e40a2018-08-02 14:27:21 -07002186 existing = old_array->items;
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07002187 for (; existing->prog; existing++) {
2188 if (existing->prog == exclude_prog ||
2189 existing->prog == &dummy_bpf_prog.prog)
2190 continue;
2191
2192 new->prog = existing->prog;
2193 new->bpf_cookie = existing->bpf_cookie;
2194 new++;
2195 }
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002196 }
Andrii Nakryiko82e6b1e2021-08-15 00:05:58 -07002197 if (include_prog) {
2198 new->prog = include_prog;
2199 new->bpf_cookie = bpf_cookie;
2200 new++;
2201 }
2202 new->prog = NULL;
Yonghong Songe87c6bc2017-10-23 23:53:08 -07002203 *new_array = array;
2204 return 0;
2205}
2206
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -07002207int bpf_prog_array_copy_info(struct bpf_prog_array *array,
Yonghong Song3a38bb92018-04-10 09:37:32 -07002208 u32 *prog_ids, u32 request_cnt,
2209 u32 *prog_cnt)
Yonghong Songf371b302017-12-11 11:39:02 -08002210{
2211 u32 cnt = 0;
2212
2213 if (array)
2214 cnt = bpf_prog_array_length(array);
2215
Yonghong Song3a38bb92018-04-10 09:37:32 -07002216 *prog_cnt = cnt;
Yonghong Songf371b302017-12-11 11:39:02 -08002217
2218 /* return early if user requested only program count or nothing to copy */
2219 if (!request_cnt || !cnt)
2220 return 0;
2221
Yonghong Song3a38bb92018-04-10 09:37:32 -07002222 /* this function is called under trace/bpf_trace.c: bpf_event_mutex */
Roman Gushchin394e40a2018-08-02 14:27:21 -07002223 return bpf_prog_array_copy_core(array, prog_ids, request_cnt) ? -ENOSPC
Yonghong Song3a38bb92018-04-10 09:37:32 -07002224 : 0;
Yonghong Songf371b302017-12-11 11:39:02 -08002225}
2226
Daniel Borkmanna2ea0742019-12-16 17:49:00 +01002227void __bpf_free_used_maps(struct bpf_prog_aux *aux,
2228 struct bpf_map **used_maps, u32 len)
Daniel Borkmann6332be02019-11-22 21:07:55 +01002229{
Daniel Borkmannda765a22019-11-22 21:07:58 +01002230 struct bpf_map *map;
Daniel Borkmanna2ea0742019-12-16 17:49:00 +01002231 u32 i;
Daniel Borkmann6332be02019-11-22 21:07:55 +01002232
Daniel Borkmanna2ea0742019-12-16 17:49:00 +01002233 for (i = 0; i < len; i++) {
2234 map = used_maps[i];
Daniel Borkmannda765a22019-11-22 21:07:58 +01002235 if (map->ops->map_poke_untrack)
2236 map->ops->map_poke_untrack(map, aux);
2237 bpf_map_put(map);
2238 }
Daniel Borkmanna2ea0742019-12-16 17:49:00 +01002239}
2240
2241static void bpf_free_used_maps(struct bpf_prog_aux *aux)
2242{
2243 __bpf_free_used_maps(aux, aux->used_maps, aux->used_map_cnt);
Daniel Borkmann6332be02019-11-22 21:07:55 +01002244 kfree(aux->used_maps);
2245}
2246
Andrii Nakryiko541c3ba2021-01-11 23:55:18 -08002247void __bpf_free_used_btfs(struct bpf_prog_aux *aux,
2248 struct btf_mod_pair *used_btfs, u32 len)
2249{
2250#ifdef CONFIG_BPF_SYSCALL
2251 struct btf_mod_pair *btf_mod;
2252 u32 i;
2253
2254 for (i = 0; i < len; i++) {
2255 btf_mod = &used_btfs[i];
2256 if (btf_mod->module)
2257 module_put(btf_mod->module);
2258 btf_put(btf_mod->btf);
2259 }
2260#endif
2261}
2262
2263static void bpf_free_used_btfs(struct bpf_prog_aux *aux)
2264{
2265 __bpf_free_used_btfs(aux, aux->used_btfs, aux->used_btf_cnt);
2266 kfree(aux->used_btfs);
2267}
2268
Daniel Borkmann60a3b222014-09-02 22:53:44 +02002269static void bpf_prog_free_deferred(struct work_struct *work)
2270{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002271 struct bpf_prog_aux *aux;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08002272 int i;
Daniel Borkmann60a3b222014-09-02 22:53:44 +02002273
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002274 aux = container_of(work, struct bpf_prog_aux, work);
Kumar Kartikeya Dwivedi23576722021-10-02 06:47:49 +05302275#ifdef CONFIG_BPF_SYSCALL
2276 bpf_free_kfunc_btf_tab(aux->kfunc_btf_tab);
2277#endif
Daniel Borkmann6332be02019-11-22 21:07:55 +01002278 bpf_free_used_maps(aux);
Andrii Nakryiko541c3ba2021-01-11 23:55:18 -08002279 bpf_free_used_btfs(aux);
Jakub Kicinskiab3f0062017-11-03 13:56:17 -07002280 if (bpf_prog_is_dev_bound(aux))
2281 bpf_prog_offload_destroy(aux->prog);
Yonghong Songc195651e2018-04-28 22:28:08 -07002282#ifdef CONFIG_PERF_EVENTS
2283 if (aux->prog->has_callchain_buf)
2284 put_callchain_buffers();
2285#endif
Toke Høiland-Jørgensen3aac1ea2020-09-29 14:45:50 +02002286 if (aux->dst_trampoline)
2287 bpf_trampoline_put(aux->dst_trampoline);
John Fastabendf263a812021-07-07 15:38:47 -07002288 for (i = 0; i < aux->func_cnt; i++) {
2289 /* We can just unlink the subprog poke descriptor table as
2290 * it was originally linked to the main program and is also
2291 * released along with it.
2292 */
2293 aux->func[i]->aux->poke_tab = NULL;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08002294 bpf_jit_free(aux->func[i]);
John Fastabendf263a812021-07-07 15:38:47 -07002295 }
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -08002296 if (aux->func_cnt) {
2297 kfree(aux->func);
2298 bpf_prog_unlock_free(aux->prog);
2299 } else {
2300 bpf_jit_free(aux->prog);
2301 }
Daniel Borkmann60a3b222014-09-02 22:53:44 +02002302}
2303
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07002304void bpf_prog_free(struct bpf_prog *fp)
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07002305{
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002306 struct bpf_prog_aux *aux = fp->aux;
Daniel Borkmann60a3b222014-09-02 22:53:44 +02002307
Toke Høiland-Jørgensen3aac1ea2020-09-29 14:45:50 +02002308 if (aux->dst_prog)
2309 bpf_prog_put(aux->dst_prog);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002310 INIT_WORK(&aux->work, bpf_prog_free_deferred);
Alexei Starovoitov09756af2014-09-26 00:17:00 -07002311 schedule_work(&aux->work);
Alexei Starovoitovf5bffec2014-07-22 23:01:58 -07002312}
Alexei Starovoitov7ae457c2014-07-30 20:34:16 -07002313EXPORT_SYMBOL_GPL(bpf_prog_free);
Alexei Starovoitovf89b7752014-10-23 18:41:08 -07002314
Daniel Borkmann3ad00402015-10-08 01:20:39 +02002315/* RNG for unpriviledged user space with separated state from prandom_u32(). */
2316static DEFINE_PER_CPU(struct rnd_state, bpf_user_rnd_state);
2317
2318void bpf_user_rnd_init_once(void)
2319{
2320 prandom_init_once(&bpf_user_rnd_state);
2321}
2322
Daniel Borkmannf3694e02016-09-09 02:45:31 +02002323BPF_CALL_0(bpf_user_rnd_u32)
Daniel Borkmann3ad00402015-10-08 01:20:39 +02002324{
2325 /* Should someone ever have the rather unwise idea to use some
2326 * of the registers passed into this function, then note that
2327 * this function is called from native eBPF and classic-to-eBPF
2328 * transformations. Register assignments from both sides are
2329 * different, f.e. classic always sets fn(ctx, A, X) here.
2330 */
2331 struct rnd_state *state;
2332 u32 res;
2333
2334 state = &get_cpu_var(bpf_user_rnd_state);
2335 res = prandom_u32_state(state);
Shaohua Lib761fe22016-09-27 08:42:41 -07002336 put_cpu_var(bpf_user_rnd_state);
Daniel Borkmann3ad00402015-10-08 01:20:39 +02002337
2338 return res;
2339}
2340
Stanislav Fomichev68908962020-04-24 16:59:41 -07002341BPF_CALL_0(bpf_get_raw_cpu_id)
2342{
2343 return raw_smp_processor_id();
2344}
2345
Daniel Borkmann3ba67da2015-03-05 23:27:51 +01002346/* Weak definitions of helper functions in case we don't have bpf syscall. */
2347const struct bpf_func_proto bpf_map_lookup_elem_proto __weak;
2348const struct bpf_func_proto bpf_map_update_elem_proto __weak;
2349const struct bpf_func_proto bpf_map_delete_elem_proto __weak;
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +02002350const struct bpf_func_proto bpf_map_push_elem_proto __weak;
2351const struct bpf_func_proto bpf_map_pop_elem_proto __weak;
2352const struct bpf_func_proto bpf_map_peek_elem_proto __weak;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -08002353const struct bpf_func_proto bpf_spin_lock_proto __weak;
2354const struct bpf_func_proto bpf_spin_unlock_proto __weak;
Martin KaFai Lau5576b992020-01-22 15:36:46 -08002355const struct bpf_func_proto bpf_jiffies64_proto __weak;
Daniel Borkmann3ba67da2015-03-05 23:27:51 +01002356
Daniel Borkmann03e69b52015-03-14 02:27:16 +01002357const struct bpf_func_proto bpf_get_prandom_u32_proto __weak;
Daniel Borkmannc04167c2015-03-14 02:27:17 +01002358const struct bpf_func_proto bpf_get_smp_processor_id_proto __weak;
Daniel Borkmann2d0e30c2016-10-21 12:46:33 +02002359const struct bpf_func_proto bpf_get_numa_node_id_proto __weak;
Daniel Borkmann17ca8cb2015-05-29 23:23:06 +02002360const struct bpf_func_proto bpf_ktime_get_ns_proto __weak;
Maciej Żenczykowski71d19212020-04-26 09:15:25 -07002361const struct bpf_func_proto bpf_ktime_get_boot_ns_proto __weak;
Dmitrii Banshchikovd0551262020-11-17 18:45:49 +00002362const struct bpf_func_proto bpf_ktime_get_coarse_ns_proto __weak;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002363
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07002364const struct bpf_func_proto bpf_get_current_pid_tgid_proto __weak;
2365const struct bpf_func_proto bpf_get_current_uid_gid_proto __weak;
2366const struct bpf_func_proto bpf_get_current_comm_proto __weak;
Yonghong Songbf6fa2c82018-06-03 15:59:41 -07002367const struct bpf_func_proto bpf_get_current_cgroup_id_proto __weak;
Daniel Borkmann0f09abd2020-03-27 16:58:54 +01002368const struct bpf_func_proto bpf_get_current_ancestor_cgroup_id_proto __weak;
Roman Gushchincd339432018-08-02 14:27:24 -07002369const struct bpf_func_proto bpf_get_local_storage_proto __weak;
Carlos Neirab4490c52020-03-04 17:41:56 -03002370const struct bpf_func_proto bpf_get_ns_current_pid_tgid_proto __weak;
Alan Maguirec4d0bfb2020-09-28 12:31:05 +01002371const struct bpf_func_proto bpf_snprintf_btf_proto __weak;
Alan Maguireeb411372020-09-28 12:31:09 +01002372const struct bpf_func_proto bpf_seq_printf_btf_proto __weak;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002373
Alexei Starovoitov0756ea32015-06-12 19:39:13 -07002374const struct bpf_func_proto * __weak bpf_get_trace_printk_proto(void)
2375{
2376 return NULL;
2377}
Daniel Borkmann03e69b52015-03-14 02:27:16 +01002378
Dave Marchevsky10aceb62021-09-17 11:29:05 -07002379const struct bpf_func_proto * __weak bpf_get_trace_vprintk_proto(void)
2380{
2381 return NULL;
2382}
2383
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002384u64 __weak
2385bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
2386 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy)
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002387{
Daniel Borkmann555c8a82016-07-14 18:08:05 +02002388 return -ENOTSUPP;
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002389}
Jakub Kicinski6cb5fb32018-05-03 18:37:10 -07002390EXPORT_SYMBOL_GPL(bpf_event_output);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +02002391
Daniel Borkmann3324b582015-05-29 23:23:07 +02002392/* Always built-in helper functions. */
2393const struct bpf_func_proto bpf_tail_call_proto = {
2394 .func = NULL,
2395 .gpl_only = false,
2396 .ret_type = RET_VOID,
2397 .arg1_type = ARG_PTR_TO_CTX,
2398 .arg2_type = ARG_CONST_MAP_PTR,
2399 .arg3_type = ARG_ANYTHING,
2400};
2401
Daniel Borkmann93831912017-02-16 22:24:49 +01002402/* Stub for JITs that only support cBPF. eBPF programs are interpreted.
2403 * It is encouraged to implement bpf_int_jit_compile() instead, so that
2404 * eBPF and implicitly also cBPF can get JITed!
2405 */
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02002406struct bpf_prog * __weak bpf_int_jit_compile(struct bpf_prog *prog)
Daniel Borkmann3324b582015-05-29 23:23:07 +02002407{
Daniel Borkmannd1c55ab2016-05-13 19:08:31 +02002408 return prog;
Daniel Borkmann3324b582015-05-29 23:23:07 +02002409}
2410
Daniel Borkmann93831912017-02-16 22:24:49 +01002411/* Stub for JITs that support eBPF. All cBPF code gets transformed into
2412 * eBPF by the kernel and is later compiled by bpf_int_jit_compile().
2413 */
2414void __weak bpf_jit_compile(struct bpf_prog *prog)
2415{
2416}
2417
Martin KaFai Lau17bedab2016-12-07 15:53:11 -08002418bool __weak bpf_helper_changes_pkt_data(void *func)
Alexei Starovoitov969bf052016-05-05 19:49:10 -07002419{
2420 return false;
2421}
2422
Jiong Wanga4b1d3c2019-05-24 23:25:15 +01002423/* Return TRUE if the JIT backend wants verifier to enable sub-register usage
2424 * analysis code and wants explicit zero extension inserted by verifier.
2425 * Otherwise, return FALSE.
Brendan Jackman39491862021-03-04 18:56:46 -08002426 *
2427 * The verifier inserts an explicit zero extension after BPF_CMPXCHGs even if
2428 * you don't override this. JITs that don't want these extra insns can detect
2429 * them using insn_is_zext.
Jiong Wanga4b1d3c2019-05-24 23:25:15 +01002430 */
2431bool __weak bpf_jit_needs_zext(void)
2432{
2433 return false;
2434}
2435
Martin KaFai Laue6ac2452021-03-24 18:51:42 -07002436bool __weak bpf_jit_supports_kfunc_call(void)
2437{
2438 return false;
2439}
2440
Alexei Starovoitovf89b7752014-10-23 18:41:08 -07002441/* To execute LD_ABS/LD_IND instructions __bpf_prog_run() may call
2442 * skb_copy_bits(), so provide a weak definition of it for NET-less config.
2443 */
2444int __weak skb_copy_bits(const struct sk_buff *skb, int offset, void *to,
2445 int len)
2446{
2447 return -EFAULT;
2448}
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01002449
Alexei Starovoitov5964b202019-11-14 10:57:03 -08002450int __weak bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
2451 void *addr1, void *addr2)
2452{
2453 return -ENOTSUPP;
2454}
2455
Alexei Starovoitov492ecee2019-02-25 14:28:39 -08002456DEFINE_STATIC_KEY_FALSE(bpf_stats_enabled_key);
2457EXPORT_SYMBOL(bpf_stats_enabled_key);
Alexei Starovoitov492ecee2019-02-25 14:28:39 -08002458
Daniel Borkmanna67edbf2017-01-25 02:28:18 +01002459/* All definitions of tracepoints related to BPF. */
2460#define CREATE_TRACE_POINTS
2461#include <linux/bpf_trace.h>
2462
2463EXPORT_TRACEPOINT_SYMBOL_GPL(xdp_exception);
Toshiaki Makitae7d47982019-06-13 18:39:58 +09002464EXPORT_TRACEPOINT_SYMBOL_GPL(xdp_bulk_tx);