blob: 80b12aa5e10d06627e223166558e4e814c695077 [file] [log] [blame]
Björn Töpel2353ecc2019-02-05 13:41:22 +01001// SPDX-License-Identifier: GPL-2.0
2/* BPF JIT compiler for RV64G
3 *
4 * Copyright(c) 2019 Björn Töpel <bjorn.topel@gmail.com>
5 *
6 */
7
8#include <linux/bpf.h>
9#include <linux/filter.h>
10#include <asm/cacheflush.h>
11
12enum {
13 RV_REG_ZERO = 0, /* The constant value 0 */
14 RV_REG_RA = 1, /* Return address */
15 RV_REG_SP = 2, /* Stack pointer */
16 RV_REG_GP = 3, /* Global pointer */
17 RV_REG_TP = 4, /* Thread pointer */
18 RV_REG_T0 = 5, /* Temporaries */
19 RV_REG_T1 = 6,
20 RV_REG_T2 = 7,
21 RV_REG_FP = 8,
22 RV_REG_S1 = 9, /* Saved registers */
23 RV_REG_A0 = 10, /* Function argument/return values */
24 RV_REG_A1 = 11, /* Function arguments */
25 RV_REG_A2 = 12,
26 RV_REG_A3 = 13,
27 RV_REG_A4 = 14,
28 RV_REG_A5 = 15,
29 RV_REG_A6 = 16,
30 RV_REG_A7 = 17,
31 RV_REG_S2 = 18, /* Saved registers */
32 RV_REG_S3 = 19,
33 RV_REG_S4 = 20,
34 RV_REG_S5 = 21,
35 RV_REG_S6 = 22,
36 RV_REG_S7 = 23,
37 RV_REG_S8 = 24,
38 RV_REG_S9 = 25,
39 RV_REG_S10 = 26,
40 RV_REG_S11 = 27,
41 RV_REG_T3 = 28, /* Temporaries */
42 RV_REG_T4 = 29,
43 RV_REG_T5 = 30,
44 RV_REG_T6 = 31,
45};
46
47#define RV_REG_TCC RV_REG_A6
48#define RV_REG_TCC_SAVED RV_REG_S6 /* Store A6 in S6 if program do calls */
49
50static const int regmap[] = {
51 [BPF_REG_0] = RV_REG_A5,
52 [BPF_REG_1] = RV_REG_A0,
53 [BPF_REG_2] = RV_REG_A1,
54 [BPF_REG_3] = RV_REG_A2,
55 [BPF_REG_4] = RV_REG_A3,
56 [BPF_REG_5] = RV_REG_A4,
57 [BPF_REG_6] = RV_REG_S1,
58 [BPF_REG_7] = RV_REG_S2,
59 [BPF_REG_8] = RV_REG_S3,
60 [BPF_REG_9] = RV_REG_S4,
61 [BPF_REG_FP] = RV_REG_S5,
62 [BPF_REG_AX] = RV_REG_T0,
63};
64
65enum {
66 RV_CTX_F_SEEN_TAIL_CALL = 0,
67 RV_CTX_F_SEEN_CALL = RV_REG_RA,
68 RV_CTX_F_SEEN_S1 = RV_REG_S1,
69 RV_CTX_F_SEEN_S2 = RV_REG_S2,
70 RV_CTX_F_SEEN_S3 = RV_REG_S3,
71 RV_CTX_F_SEEN_S4 = RV_REG_S4,
72 RV_CTX_F_SEEN_S5 = RV_REG_S5,
73 RV_CTX_F_SEEN_S6 = RV_REG_S6,
74};
75
76struct rv_jit_context {
77 struct bpf_prog *prog;
78 u32 *insns; /* RV insns */
79 int ninsns;
80 int epilogue_offset;
81 int *offset; /* BPF to RV */
82 unsigned long flags;
83 int stack_size;
84};
85
86struct rv_jit_data {
87 struct bpf_binary_header *header;
88 u8 *image;
89 struct rv_jit_context ctx;
90};
91
92static u8 bpf_to_rv_reg(int bpf_reg, struct rv_jit_context *ctx)
93{
94 u8 reg = regmap[bpf_reg];
95
96 switch (reg) {
97 case RV_CTX_F_SEEN_S1:
98 case RV_CTX_F_SEEN_S2:
99 case RV_CTX_F_SEEN_S3:
100 case RV_CTX_F_SEEN_S4:
101 case RV_CTX_F_SEEN_S5:
102 case RV_CTX_F_SEEN_S6:
103 __set_bit(reg, &ctx->flags);
104 }
105 return reg;
106};
107
108static bool seen_reg(int reg, struct rv_jit_context *ctx)
109{
110 switch (reg) {
111 case RV_CTX_F_SEEN_CALL:
112 case RV_CTX_F_SEEN_S1:
113 case RV_CTX_F_SEEN_S2:
114 case RV_CTX_F_SEEN_S3:
115 case RV_CTX_F_SEEN_S4:
116 case RV_CTX_F_SEEN_S5:
117 case RV_CTX_F_SEEN_S6:
118 return test_bit(reg, &ctx->flags);
119 }
120 return false;
121}
122
123static void mark_call(struct rv_jit_context *ctx)
124{
125 __set_bit(RV_CTX_F_SEEN_CALL, &ctx->flags);
126}
127
128static bool seen_call(struct rv_jit_context *ctx)
129{
130 return test_bit(RV_CTX_F_SEEN_CALL, &ctx->flags);
131}
132
133static void mark_tail_call(struct rv_jit_context *ctx)
134{
135 __set_bit(RV_CTX_F_SEEN_TAIL_CALL, &ctx->flags);
136}
137
138static bool seen_tail_call(struct rv_jit_context *ctx)
139{
140 return test_bit(RV_CTX_F_SEEN_TAIL_CALL, &ctx->flags);
141}
142
143static u8 rv_tail_call_reg(struct rv_jit_context *ctx)
144{
145 mark_tail_call(ctx);
146
147 if (seen_call(ctx)) {
148 __set_bit(RV_CTX_F_SEEN_S6, &ctx->flags);
149 return RV_REG_S6;
150 }
151 return RV_REG_A6;
152}
153
154static void emit(const u32 insn, struct rv_jit_context *ctx)
155{
156 if (ctx->insns)
157 ctx->insns[ctx->ninsns] = insn;
158
159 ctx->ninsns++;
160}
161
162static u32 rv_r_insn(u8 funct7, u8 rs2, u8 rs1, u8 funct3, u8 rd, u8 opcode)
163{
164 return (funct7 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
165 (rd << 7) | opcode;
166}
167
168static u32 rv_i_insn(u16 imm11_0, u8 rs1, u8 funct3, u8 rd, u8 opcode)
169{
170 return (imm11_0 << 20) | (rs1 << 15) | (funct3 << 12) | (rd << 7) |
171 opcode;
172}
173
174static u32 rv_s_insn(u16 imm11_0, u8 rs2, u8 rs1, u8 funct3, u8 opcode)
175{
176 u8 imm11_5 = imm11_0 >> 5, imm4_0 = imm11_0 & 0x1f;
177
178 return (imm11_5 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
179 (imm4_0 << 7) | opcode;
180}
181
182static u32 rv_sb_insn(u16 imm12_1, u8 rs2, u8 rs1, u8 funct3, u8 opcode)
183{
184 u8 imm12 = ((imm12_1 & 0x800) >> 5) | ((imm12_1 & 0x3f0) >> 4);
185 u8 imm4_1 = ((imm12_1 & 0xf) << 1) | ((imm12_1 & 0x400) >> 10);
186
187 return (imm12 << 25) | (rs2 << 20) | (rs1 << 15) | (funct3 << 12) |
188 (imm4_1 << 7) | opcode;
189}
190
191static u32 rv_u_insn(u32 imm31_12, u8 rd, u8 opcode)
192{
193 return (imm31_12 << 12) | (rd << 7) | opcode;
194}
195
196static u32 rv_uj_insn(u32 imm20_1, u8 rd, u8 opcode)
197{
198 u32 imm;
199
200 imm = (imm20_1 & 0x80000) | ((imm20_1 & 0x3ff) << 9) |
201 ((imm20_1 & 0x400) >> 2) | ((imm20_1 & 0x7f800) >> 11);
202
203 return (imm << 12) | (rd << 7) | opcode;
204}
205
206static u32 rv_amo_insn(u8 funct5, u8 aq, u8 rl, u8 rs2, u8 rs1,
207 u8 funct3, u8 rd, u8 opcode)
208{
209 u8 funct7 = (funct5 << 2) | (aq << 1) | rl;
210
211 return rv_r_insn(funct7, rs2, rs1, funct3, rd, opcode);
212}
213
214static u32 rv_addiw(u8 rd, u8 rs1, u16 imm11_0)
215{
216 return rv_i_insn(imm11_0, rs1, 0, rd, 0x1b);
217}
218
219static u32 rv_addi(u8 rd, u8 rs1, u16 imm11_0)
220{
221 return rv_i_insn(imm11_0, rs1, 0, rd, 0x13);
222}
223
224static u32 rv_addw(u8 rd, u8 rs1, u8 rs2)
225{
226 return rv_r_insn(0, rs2, rs1, 0, rd, 0x3b);
227}
228
229static u32 rv_add(u8 rd, u8 rs1, u8 rs2)
230{
231 return rv_r_insn(0, rs2, rs1, 0, rd, 0x33);
232}
233
234static u32 rv_subw(u8 rd, u8 rs1, u8 rs2)
235{
236 return rv_r_insn(0x20, rs2, rs1, 0, rd, 0x3b);
237}
238
239static u32 rv_sub(u8 rd, u8 rs1, u8 rs2)
240{
241 return rv_r_insn(0x20, rs2, rs1, 0, rd, 0x33);
242}
243
244static u32 rv_and(u8 rd, u8 rs1, u8 rs2)
245{
246 return rv_r_insn(0, rs2, rs1, 7, rd, 0x33);
247}
248
249static u32 rv_or(u8 rd, u8 rs1, u8 rs2)
250{
251 return rv_r_insn(0, rs2, rs1, 6, rd, 0x33);
252}
253
254static u32 rv_xor(u8 rd, u8 rs1, u8 rs2)
255{
256 return rv_r_insn(0, rs2, rs1, 4, rd, 0x33);
257}
258
259static u32 rv_mulw(u8 rd, u8 rs1, u8 rs2)
260{
261 return rv_r_insn(1, rs2, rs1, 0, rd, 0x3b);
262}
263
264static u32 rv_mul(u8 rd, u8 rs1, u8 rs2)
265{
266 return rv_r_insn(1, rs2, rs1, 0, rd, 0x33);
267}
268
269static u32 rv_divuw(u8 rd, u8 rs1, u8 rs2)
270{
271 return rv_r_insn(1, rs2, rs1, 5, rd, 0x3b);
272}
273
274static u32 rv_divu(u8 rd, u8 rs1, u8 rs2)
275{
276 return rv_r_insn(1, rs2, rs1, 5, rd, 0x33);
277}
278
279static u32 rv_remuw(u8 rd, u8 rs1, u8 rs2)
280{
281 return rv_r_insn(1, rs2, rs1, 7, rd, 0x3b);
282}
283
284static u32 rv_remu(u8 rd, u8 rs1, u8 rs2)
285{
286 return rv_r_insn(1, rs2, rs1, 7, rd, 0x33);
287}
288
289static u32 rv_sllw(u8 rd, u8 rs1, u8 rs2)
290{
291 return rv_r_insn(0, rs2, rs1, 1, rd, 0x3b);
292}
293
294static u32 rv_sll(u8 rd, u8 rs1, u8 rs2)
295{
296 return rv_r_insn(0, rs2, rs1, 1, rd, 0x33);
297}
298
299static u32 rv_srlw(u8 rd, u8 rs1, u8 rs2)
300{
301 return rv_r_insn(0, rs2, rs1, 5, rd, 0x3b);
302}
303
304static u32 rv_srl(u8 rd, u8 rs1, u8 rs2)
305{
306 return rv_r_insn(0, rs2, rs1, 5, rd, 0x33);
307}
308
309static u32 rv_sraw(u8 rd, u8 rs1, u8 rs2)
310{
311 return rv_r_insn(0x20, rs2, rs1, 5, rd, 0x3b);
312}
313
314static u32 rv_sra(u8 rd, u8 rs1, u8 rs2)
315{
316 return rv_r_insn(0x20, rs2, rs1, 5, rd, 0x33);
317}
318
319static u32 rv_lui(u8 rd, u32 imm31_12)
320{
321 return rv_u_insn(imm31_12, rd, 0x37);
322}
323
324static u32 rv_slli(u8 rd, u8 rs1, u16 imm11_0)
325{
326 return rv_i_insn(imm11_0, rs1, 1, rd, 0x13);
327}
328
329static u32 rv_andi(u8 rd, u8 rs1, u16 imm11_0)
330{
331 return rv_i_insn(imm11_0, rs1, 7, rd, 0x13);
332}
333
334static u32 rv_ori(u8 rd, u8 rs1, u16 imm11_0)
335{
336 return rv_i_insn(imm11_0, rs1, 6, rd, 0x13);
337}
338
339static u32 rv_xori(u8 rd, u8 rs1, u16 imm11_0)
340{
341 return rv_i_insn(imm11_0, rs1, 4, rd, 0x13);
342}
343
344static u32 rv_slliw(u8 rd, u8 rs1, u16 imm11_0)
345{
346 return rv_i_insn(imm11_0, rs1, 1, rd, 0x1b);
347}
348
349static u32 rv_srliw(u8 rd, u8 rs1, u16 imm11_0)
350{
351 return rv_i_insn(imm11_0, rs1, 5, rd, 0x1b);
352}
353
354static u32 rv_srli(u8 rd, u8 rs1, u16 imm11_0)
355{
356 return rv_i_insn(imm11_0, rs1, 5, rd, 0x13);
357}
358
359static u32 rv_sraiw(u8 rd, u8 rs1, u16 imm11_0)
360{
361 return rv_i_insn(0x400 | imm11_0, rs1, 5, rd, 0x1b);
362}
363
364static u32 rv_srai(u8 rd, u8 rs1, u16 imm11_0)
365{
366 return rv_i_insn(0x400 | imm11_0, rs1, 5, rd, 0x13);
367}
368
369static u32 rv_jal(u8 rd, u32 imm20_1)
370{
371 return rv_uj_insn(imm20_1, rd, 0x6f);
372}
373
374static u32 rv_jalr(u8 rd, u8 rs1, u16 imm11_0)
375{
376 return rv_i_insn(imm11_0, rs1, 0, rd, 0x67);
377}
378
379static u32 rv_beq(u8 rs1, u8 rs2, u16 imm12_1)
380{
381 return rv_sb_insn(imm12_1, rs2, rs1, 0, 0x63);
382}
383
384static u32 rv_bltu(u8 rs1, u8 rs2, u16 imm12_1)
385{
386 return rv_sb_insn(imm12_1, rs2, rs1, 6, 0x63);
387}
388
389static u32 rv_bgeu(u8 rs1, u8 rs2, u16 imm12_1)
390{
391 return rv_sb_insn(imm12_1, rs2, rs1, 7, 0x63);
392}
393
394static u32 rv_bne(u8 rs1, u8 rs2, u16 imm12_1)
395{
396 return rv_sb_insn(imm12_1, rs2, rs1, 1, 0x63);
397}
398
399static u32 rv_blt(u8 rs1, u8 rs2, u16 imm12_1)
400{
401 return rv_sb_insn(imm12_1, rs2, rs1, 4, 0x63);
402}
403
404static u32 rv_bge(u8 rs1, u8 rs2, u16 imm12_1)
405{
406 return rv_sb_insn(imm12_1, rs2, rs1, 5, 0x63);
407}
408
409static u32 rv_sb(u8 rs1, u16 imm11_0, u8 rs2)
410{
411 return rv_s_insn(imm11_0, rs2, rs1, 0, 0x23);
412}
413
414static u32 rv_sh(u8 rs1, u16 imm11_0, u8 rs2)
415{
416 return rv_s_insn(imm11_0, rs2, rs1, 1, 0x23);
417}
418
419static u32 rv_sw(u8 rs1, u16 imm11_0, u8 rs2)
420{
421 return rv_s_insn(imm11_0, rs2, rs1, 2, 0x23);
422}
423
424static u32 rv_sd(u8 rs1, u16 imm11_0, u8 rs2)
425{
426 return rv_s_insn(imm11_0, rs2, rs1, 3, 0x23);
427}
428
429static u32 rv_lbu(u8 rd, u16 imm11_0, u8 rs1)
430{
431 return rv_i_insn(imm11_0, rs1, 4, rd, 0x03);
432}
433
434static u32 rv_lhu(u8 rd, u16 imm11_0, u8 rs1)
435{
436 return rv_i_insn(imm11_0, rs1, 5, rd, 0x03);
437}
438
439static u32 rv_lwu(u8 rd, u16 imm11_0, u8 rs1)
440{
441 return rv_i_insn(imm11_0, rs1, 6, rd, 0x03);
442}
443
444static u32 rv_ld(u8 rd, u16 imm11_0, u8 rs1)
445{
446 return rv_i_insn(imm11_0, rs1, 3, rd, 0x03);
447}
448
449static u32 rv_amoadd_w(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
450{
451 return rv_amo_insn(0, aq, rl, rs2, rs1, 2, rd, 0x2f);
452}
453
454static u32 rv_amoadd_d(u8 rd, u8 rs2, u8 rs1, u8 aq, u8 rl)
455{
456 return rv_amo_insn(0, aq, rl, rs2, rs1, 3, rd, 0x2f);
457}
458
459static bool is_12b_int(s64 val)
460{
461 return -(1 << 11) <= val && val < (1 << 11);
462}
463
464static bool is_13b_int(s64 val)
465{
466 return -(1 << 12) <= val && val < (1 << 12);
467}
468
469static bool is_21b_int(s64 val)
470{
471 return -(1L << 20) <= val && val < (1L << 20);
472}
473
474static bool is_32b_int(s64 val)
475{
476 return -(1L << 31) <= val && val < (1L << 31);
477}
478
479static int is_12b_check(int off, int insn)
480{
481 if (!is_12b_int(off)) {
482 pr_err("bpf-jit: insn=%d offset=%d not supported yet!\n",
483 insn, (int)off);
484 return -1;
485 }
486 return 0;
487}
488
489static int is_13b_check(int off, int insn)
490{
491 if (!is_13b_int(off)) {
492 pr_err("bpf-jit: insn=%d offset=%d not supported yet!\n",
493 insn, (int)off);
494 return -1;
495 }
496 return 0;
497}
498
499static int is_21b_check(int off, int insn)
500{
501 if (!is_21b_int(off)) {
502 pr_err("bpf-jit: insn=%d offset=%d not supported yet!\n",
503 insn, (int)off);
504 return -1;
505 }
506 return 0;
507}
508
509static void emit_imm(u8 rd, s64 val, struct rv_jit_context *ctx)
510{
511 /* Note that the immediate from the add is sign-extended,
512 * which means that we need to compensate this by adding 2^12,
513 * when the 12th bit is set. A simpler way of doing this, and
514 * getting rid of the check, is to just add 2**11 before the
515 * shift. The "Loading a 32-Bit constant" example from the
516 * "Computer Organization and Design, RISC-V edition" book by
517 * Patterson/Hennessy highlights this fact.
518 *
519 * This also means that we need to process LSB to MSB.
520 */
521 s64 upper = (val + (1 << 11)) >> 12, lower = val & 0xfff;
522 int shift;
523
524 if (is_32b_int(val)) {
525 if (upper)
526 emit(rv_lui(rd, upper), ctx);
527
528 if (!upper) {
529 emit(rv_addi(rd, RV_REG_ZERO, lower), ctx);
530 return;
531 }
532
533 emit(rv_addiw(rd, rd, lower), ctx);
534 return;
535 }
536
537 shift = __ffs(upper);
538 upper >>= shift;
539 shift += 12;
540
541 emit_imm(rd, upper, ctx);
542
543 emit(rv_slli(rd, rd, shift), ctx);
544 if (lower)
545 emit(rv_addi(rd, rd, lower), ctx);
546}
547
548static int rv_offset(int bpf_to, int bpf_from, struct rv_jit_context *ctx)
549{
550 int from = ctx->offset[bpf_from] - 1, to = ctx->offset[bpf_to];
551
552 return (to - from) << 2;
553}
554
555static int epilogue_offset(struct rv_jit_context *ctx)
556{
557 int to = ctx->epilogue_offset, from = ctx->ninsns;
558
559 return (to - from) << 2;
560}
561
562static void __build_epilogue(u8 reg, struct rv_jit_context *ctx)
563{
564 int stack_adjust = ctx->stack_size, store_offset = stack_adjust - 8;
565
566 if (seen_reg(RV_REG_RA, ctx)) {
567 emit(rv_ld(RV_REG_RA, store_offset, RV_REG_SP), ctx);
568 store_offset -= 8;
569 }
570 emit(rv_ld(RV_REG_FP, store_offset, RV_REG_SP), ctx);
571 store_offset -= 8;
572 if (seen_reg(RV_REG_S1, ctx)) {
573 emit(rv_ld(RV_REG_S1, store_offset, RV_REG_SP), ctx);
574 store_offset -= 8;
575 }
576 if (seen_reg(RV_REG_S2, ctx)) {
577 emit(rv_ld(RV_REG_S2, store_offset, RV_REG_SP), ctx);
578 store_offset -= 8;
579 }
580 if (seen_reg(RV_REG_S3, ctx)) {
581 emit(rv_ld(RV_REG_S3, store_offset, RV_REG_SP), ctx);
582 store_offset -= 8;
583 }
584 if (seen_reg(RV_REG_S4, ctx)) {
585 emit(rv_ld(RV_REG_S4, store_offset, RV_REG_SP), ctx);
586 store_offset -= 8;
587 }
588 if (seen_reg(RV_REG_S5, ctx)) {
589 emit(rv_ld(RV_REG_S5, store_offset, RV_REG_SP), ctx);
590 store_offset -= 8;
591 }
592 if (seen_reg(RV_REG_S6, ctx)) {
593 emit(rv_ld(RV_REG_S6, store_offset, RV_REG_SP), ctx);
594 store_offset -= 8;
595 }
596
597 emit(rv_addi(RV_REG_SP, RV_REG_SP, stack_adjust), ctx);
598 /* Set return value. */
599 emit(rv_addi(RV_REG_A0, RV_REG_A5, 0), ctx);
600 emit(rv_jalr(RV_REG_ZERO, reg, 0), ctx);
601}
602
603static void emit_zext_32(u8 reg, struct rv_jit_context *ctx)
604{
605 emit(rv_slli(reg, reg, 32), ctx);
606 emit(rv_srli(reg, reg, 32), ctx);
607}
608
609static int emit_bpf_tail_call(int insn, struct rv_jit_context *ctx)
610{
611 int tc_ninsn, off, start_insn = ctx->ninsns;
612 u8 tcc = rv_tail_call_reg(ctx);
613
614 /* a0: &ctx
615 * a1: &array
616 * a2: index
617 *
618 * if (index >= array->map.max_entries)
619 * goto out;
620 */
621 tc_ninsn = insn ? ctx->offset[insn] - ctx->offset[insn - 1] :
622 ctx->offset[0];
623 emit_zext_32(RV_REG_A2, ctx);
624
625 off = offsetof(struct bpf_array, map.max_entries);
626 if (is_12b_check(off, insn))
627 return -1;
628 emit(rv_lwu(RV_REG_T1, off, RV_REG_A1), ctx);
629 off = (tc_ninsn - (ctx->ninsns - start_insn)) << 2;
630 if (is_13b_check(off, insn))
631 return -1;
632 emit(rv_bgeu(RV_REG_A2, RV_REG_T1, off >> 1), ctx);
633
634 /* if (--TCC < 0)
635 * goto out;
636 */
637 emit(rv_addi(RV_REG_T1, tcc, -1), ctx);
638 off = (tc_ninsn - (ctx->ninsns - start_insn)) << 2;
639 if (is_13b_check(off, insn))
640 return -1;
641 emit(rv_blt(RV_REG_T1, RV_REG_ZERO, off >> 1), ctx);
642
643 /* prog = array->ptrs[index];
644 * if (!prog)
645 * goto out;
646 */
647 emit(rv_slli(RV_REG_T2, RV_REG_A2, 3), ctx);
648 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_A1), ctx);
649 off = offsetof(struct bpf_array, ptrs);
650 if (is_12b_check(off, insn))
651 return -1;
652 emit(rv_ld(RV_REG_T2, off, RV_REG_T2), ctx);
653 off = (tc_ninsn - (ctx->ninsns - start_insn)) << 2;
654 if (is_13b_check(off, insn))
655 return -1;
656 emit(rv_beq(RV_REG_T2, RV_REG_ZERO, off >> 1), ctx);
657
658 /* goto *(prog->bpf_func + 4); */
659 off = offsetof(struct bpf_prog, bpf_func);
660 if (is_12b_check(off, insn))
661 return -1;
662 emit(rv_ld(RV_REG_T3, off, RV_REG_T2), ctx);
663 emit(rv_addi(RV_REG_T3, RV_REG_T3, 4), ctx);
664 emit(rv_addi(RV_REG_TCC, RV_REG_T1, 0), ctx);
665 __build_epilogue(RV_REG_T3, ctx);
666 return 0;
667}
668
669static void init_regs(u8 *rd, u8 *rs, const struct bpf_insn *insn,
670 struct rv_jit_context *ctx)
671{
672 u8 code = insn->code;
673
674 switch (code) {
675 case BPF_JMP | BPF_JA:
676 case BPF_JMP | BPF_CALL:
677 case BPF_JMP | BPF_EXIT:
678 case BPF_JMP | BPF_TAIL_CALL:
679 break;
680 default:
681 *rd = bpf_to_rv_reg(insn->dst_reg, ctx);
682 }
683
684 if (code & (BPF_ALU | BPF_X) || code & (BPF_ALU64 | BPF_X) ||
685 code & (BPF_JMP | BPF_X) || code & (BPF_JMP32 | BPF_X) ||
686 code & BPF_LDX || code & BPF_STX)
687 *rs = bpf_to_rv_reg(insn->src_reg, ctx);
688}
689
690static int rv_offset_check(int *rvoff, s16 off, int insn,
691 struct rv_jit_context *ctx)
692{
693 *rvoff = rv_offset(insn + off, insn, ctx);
694 return is_13b_check(*rvoff, insn);
695}
696
697static void emit_zext_32_rd_rs(u8 *rd, u8 *rs, struct rv_jit_context *ctx)
698{
699 emit(rv_addi(RV_REG_T2, *rd, 0), ctx);
700 emit_zext_32(RV_REG_T2, ctx);
701 emit(rv_addi(RV_REG_T1, *rs, 0), ctx);
702 emit_zext_32(RV_REG_T1, ctx);
703 *rd = RV_REG_T2;
704 *rs = RV_REG_T1;
705}
706
707static void emit_sext_32_rd_rs(u8 *rd, u8 *rs, struct rv_jit_context *ctx)
708{
709 emit(rv_addiw(RV_REG_T2, *rd, 0), ctx);
710 emit(rv_addiw(RV_REG_T1, *rs, 0), ctx);
711 *rd = RV_REG_T2;
712 *rs = RV_REG_T1;
713}
714
715static void emit_zext_32_rd_t1(u8 *rd, struct rv_jit_context *ctx)
716{
717 emit(rv_addi(RV_REG_T2, *rd, 0), ctx);
718 emit_zext_32(RV_REG_T2, ctx);
719 emit_zext_32(RV_REG_T1, ctx);
720 *rd = RV_REG_T2;
721}
722
723static void emit_sext_32_rd(u8 *rd, struct rv_jit_context *ctx)
724{
725 emit(rv_addiw(RV_REG_T2, *rd, 0), ctx);
726 *rd = RV_REG_T2;
727}
728
729static int emit_insn(const struct bpf_insn *insn, struct rv_jit_context *ctx,
730 bool extra_pass)
731{
732 bool is64 = BPF_CLASS(insn->code) == BPF_ALU64 ||
733 BPF_CLASS(insn->code) == BPF_JMP;
734 int rvoff, i = insn - ctx->prog->insnsi;
735 u8 rd = -1, rs = -1, code = insn->code;
736 s16 off = insn->off;
737 s32 imm = insn->imm;
738
739 init_regs(&rd, &rs, insn, ctx);
740
741 switch (code) {
742 /* dst = src */
743 case BPF_ALU | BPF_MOV | BPF_X:
744 case BPF_ALU64 | BPF_MOV | BPF_X:
745 emit(is64 ? rv_addi(rd, rs, 0) : rv_addiw(rd, rs, 0), ctx);
746 if (!is64)
747 emit_zext_32(rd, ctx);
748 break;
749
750 /* dst = dst OP src */
751 case BPF_ALU | BPF_ADD | BPF_X:
752 case BPF_ALU64 | BPF_ADD | BPF_X:
753 emit(is64 ? rv_add(rd, rd, rs) : rv_addw(rd, rd, rs), ctx);
754 break;
755 case BPF_ALU | BPF_SUB | BPF_X:
756 case BPF_ALU64 | BPF_SUB | BPF_X:
757 emit(is64 ? rv_sub(rd, rd, rs) : rv_subw(rd, rd, rs), ctx);
758 break;
759 case BPF_ALU | BPF_AND | BPF_X:
760 case BPF_ALU64 | BPF_AND | BPF_X:
761 emit(rv_and(rd, rd, rs), ctx);
762 break;
763 case BPF_ALU | BPF_OR | BPF_X:
764 case BPF_ALU64 | BPF_OR | BPF_X:
765 emit(rv_or(rd, rd, rs), ctx);
766 break;
767 case BPF_ALU | BPF_XOR | BPF_X:
768 case BPF_ALU64 | BPF_XOR | BPF_X:
769 emit(rv_xor(rd, rd, rs), ctx);
770 break;
771 case BPF_ALU | BPF_MUL | BPF_X:
772 case BPF_ALU64 | BPF_MUL | BPF_X:
773 emit(is64 ? rv_mul(rd, rd, rs) : rv_mulw(rd, rd, rs), ctx);
774 if (!is64)
775 emit_zext_32(rd, ctx);
776 break;
777 case BPF_ALU | BPF_DIV | BPF_X:
778 case BPF_ALU64 | BPF_DIV | BPF_X:
779 emit(is64 ? rv_divu(rd, rd, rs) : rv_divuw(rd, rd, rs), ctx);
780 if (!is64)
781 emit_zext_32(rd, ctx);
782 break;
783 case BPF_ALU | BPF_MOD | BPF_X:
784 case BPF_ALU64 | BPF_MOD | BPF_X:
785 emit(is64 ? rv_remu(rd, rd, rs) : rv_remuw(rd, rd, rs), ctx);
786 if (!is64)
787 emit_zext_32(rd, ctx);
788 break;
789 case BPF_ALU | BPF_LSH | BPF_X:
790 case BPF_ALU64 | BPF_LSH | BPF_X:
791 emit(is64 ? rv_sll(rd, rd, rs) : rv_sllw(rd, rd, rs), ctx);
792 break;
793 case BPF_ALU | BPF_RSH | BPF_X:
794 case BPF_ALU64 | BPF_RSH | BPF_X:
795 emit(is64 ? rv_srl(rd, rd, rs) : rv_srlw(rd, rd, rs), ctx);
796 break;
797 case BPF_ALU | BPF_ARSH | BPF_X:
798 case BPF_ALU64 | BPF_ARSH | BPF_X:
799 emit(is64 ? rv_sra(rd, rd, rs) : rv_sraw(rd, rd, rs), ctx);
800 break;
801
802 /* dst = -dst */
803 case BPF_ALU | BPF_NEG:
804 case BPF_ALU64 | BPF_NEG:
805 emit(is64 ? rv_sub(rd, RV_REG_ZERO, rd) :
806 rv_subw(rd, RV_REG_ZERO, rd), ctx);
807 break;
808
809 /* dst = BSWAP##imm(dst) */
810 case BPF_ALU | BPF_END | BPF_FROM_LE:
811 {
812 int shift = 64 - imm;
813
814 emit(rv_slli(rd, rd, shift), ctx);
815 emit(rv_srli(rd, rd, shift), ctx);
816 break;
817 }
818 case BPF_ALU | BPF_END | BPF_FROM_BE:
819 emit(rv_addi(RV_REG_T2, RV_REG_ZERO, 0), ctx);
820
821 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
822 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
823 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
824 emit(rv_srli(rd, rd, 8), ctx);
825 if (imm == 16)
826 goto out_be;
827
828 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
829 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
830 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
831 emit(rv_srli(rd, rd, 8), ctx);
832
833 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
834 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
835 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
836 emit(rv_srli(rd, rd, 8), ctx);
837 if (imm == 32)
838 goto out_be;
839
840 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
841 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
842 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
843 emit(rv_srli(rd, rd, 8), ctx);
844
845 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
846 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
847 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
848 emit(rv_srli(rd, rd, 8), ctx);
849
850 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
851 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
852 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
853 emit(rv_srli(rd, rd, 8), ctx);
854
855 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
856 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
857 emit(rv_slli(RV_REG_T2, RV_REG_T2, 8), ctx);
858 emit(rv_srli(rd, rd, 8), ctx);
859out_be:
860 emit(rv_andi(RV_REG_T1, rd, 0xff), ctx);
861 emit(rv_add(RV_REG_T2, RV_REG_T2, RV_REG_T1), ctx);
862
863 emit(rv_addi(rd, RV_REG_T2, 0), ctx);
864 break;
865
866 /* dst = imm */
867 case BPF_ALU | BPF_MOV | BPF_K:
868 case BPF_ALU64 | BPF_MOV | BPF_K:
869 emit_imm(rd, imm, ctx);
870 if (!is64)
871 emit_zext_32(rd, ctx);
872 break;
873
874 /* dst = dst OP imm */
875 case BPF_ALU | BPF_ADD | BPF_K:
876 case BPF_ALU64 | BPF_ADD | BPF_K:
877 if (is_12b_int(imm)) {
878 emit(is64 ? rv_addi(rd, rd, imm) :
879 rv_addiw(rd, rd, imm), ctx);
880 } else {
881 emit_imm(RV_REG_T1, imm, ctx);
882 emit(is64 ? rv_add(rd, rd, RV_REG_T1) :
883 rv_addw(rd, rd, RV_REG_T1), ctx);
884 }
885 if (!is64)
886 emit_zext_32(rd, ctx);
887 break;
888 case BPF_ALU | BPF_SUB | BPF_K:
889 case BPF_ALU64 | BPF_SUB | BPF_K:
890 if (is_12b_int(-imm)) {
891 emit(is64 ? rv_addi(rd, rd, -imm) :
892 rv_addiw(rd, rd, -imm), ctx);
893 } else {
894 emit_imm(RV_REG_T1, imm, ctx);
895 emit(is64 ? rv_sub(rd, rd, RV_REG_T1) :
896 rv_subw(rd, rd, RV_REG_T1), ctx);
897 }
898 if (!is64)
899 emit_zext_32(rd, ctx);
900 break;
901 case BPF_ALU | BPF_AND | BPF_K:
902 case BPF_ALU64 | BPF_AND | BPF_K:
903 if (is_12b_int(imm)) {
904 emit(rv_andi(rd, rd, imm), ctx);
905 } else {
906 emit_imm(RV_REG_T1, imm, ctx);
907 emit(rv_and(rd, rd, RV_REG_T1), ctx);
908 }
909 if (!is64)
910 emit_zext_32(rd, ctx);
911 break;
912 case BPF_ALU | BPF_OR | BPF_K:
913 case BPF_ALU64 | BPF_OR | BPF_K:
914 if (is_12b_int(imm)) {
915 emit(rv_ori(rd, rd, imm), ctx);
916 } else {
917 emit_imm(RV_REG_T1, imm, ctx);
918 emit(rv_or(rd, rd, RV_REG_T1), ctx);
919 }
920 if (!is64)
921 emit_zext_32(rd, ctx);
922 break;
923 case BPF_ALU | BPF_XOR | BPF_K:
924 case BPF_ALU64 | BPF_XOR | BPF_K:
925 if (is_12b_int(imm)) {
926 emit(rv_xori(rd, rd, imm), ctx);
927 } else {
928 emit_imm(RV_REG_T1, imm, ctx);
929 emit(rv_xor(rd, rd, RV_REG_T1), ctx);
930 }
931 if (!is64)
932 emit_zext_32(rd, ctx);
933 break;
934 case BPF_ALU | BPF_MUL | BPF_K:
935 case BPF_ALU64 | BPF_MUL | BPF_K:
936 emit_imm(RV_REG_T1, imm, ctx);
937 emit(is64 ? rv_mul(rd, rd, RV_REG_T1) :
938 rv_mulw(rd, rd, RV_REG_T1), ctx);
939 if (!is64)
940 emit_zext_32(rd, ctx);
941 break;
942 case BPF_ALU | BPF_DIV | BPF_K:
943 case BPF_ALU64 | BPF_DIV | BPF_K:
944 emit_imm(RV_REG_T1, imm, ctx);
945 emit(is64 ? rv_divu(rd, rd, RV_REG_T1) :
946 rv_divuw(rd, rd, RV_REG_T1), ctx);
947 if (!is64)
948 emit_zext_32(rd, ctx);
949 break;
950 case BPF_ALU | BPF_MOD | BPF_K:
951 case BPF_ALU64 | BPF_MOD | BPF_K:
952 emit_imm(RV_REG_T1, imm, ctx);
953 emit(is64 ? rv_remu(rd, rd, RV_REG_T1) :
954 rv_remuw(rd, rd, RV_REG_T1), ctx);
955 if (!is64)
956 emit_zext_32(rd, ctx);
957 break;
958 case BPF_ALU | BPF_LSH | BPF_K:
959 case BPF_ALU64 | BPF_LSH | BPF_K:
960 emit(is64 ? rv_slli(rd, rd, imm) : rv_slliw(rd, rd, imm), ctx);
961 break;
962 case BPF_ALU | BPF_RSH | BPF_K:
963 case BPF_ALU64 | BPF_RSH | BPF_K:
964 emit(is64 ? rv_srli(rd, rd, imm) : rv_srliw(rd, rd, imm), ctx);
965 break;
966 case BPF_ALU | BPF_ARSH | BPF_K:
967 case BPF_ALU64 | BPF_ARSH | BPF_K:
968 emit(is64 ? rv_srai(rd, rd, imm) : rv_sraiw(rd, rd, imm), ctx);
969 break;
970
971 /* JUMP off */
972 case BPF_JMP | BPF_JA:
973 rvoff = rv_offset(i + off, i, ctx);
974 if (!is_21b_int(rvoff)) {
975 pr_err("bpf-jit: insn=%d offset=%d not supported yet!\n",
976 i, rvoff);
977 return -1;
978 }
979
980 emit(rv_jal(RV_REG_ZERO, rvoff >> 1), ctx);
981 break;
982
983 /* IF (dst COND src) JUMP off */
984 case BPF_JMP | BPF_JEQ | BPF_X:
985 case BPF_JMP32 | BPF_JEQ | BPF_X:
986 if (rv_offset_check(&rvoff, off, i, ctx))
987 return -1;
988 if (!is64)
989 emit_zext_32_rd_rs(&rd, &rs, ctx);
990 emit(rv_beq(rd, rs, rvoff >> 1), ctx);
991 break;
992 case BPF_JMP | BPF_JGT | BPF_X:
993 case BPF_JMP32 | BPF_JGT | BPF_X:
994 if (rv_offset_check(&rvoff, off, i, ctx))
995 return -1;
996 if (!is64)
997 emit_zext_32_rd_rs(&rd, &rs, ctx);
998 emit(rv_bltu(rs, rd, rvoff >> 1), ctx);
999 break;
1000 case BPF_JMP | BPF_JLT | BPF_X:
1001 case BPF_JMP32 | BPF_JLT | BPF_X:
1002 if (rv_offset_check(&rvoff, off, i, ctx))
1003 return -1;
1004 if (!is64)
1005 emit_zext_32_rd_rs(&rd, &rs, ctx);
1006 emit(rv_bltu(rd, rs, rvoff >> 1), ctx);
1007 break;
1008 case BPF_JMP | BPF_JGE | BPF_X:
1009 case BPF_JMP32 | BPF_JGE | BPF_X:
1010 if (rv_offset_check(&rvoff, off, i, ctx))
1011 return -1;
1012 if (!is64)
1013 emit_zext_32_rd_rs(&rd, &rs, ctx);
1014 emit(rv_bgeu(rd, rs, rvoff >> 1), ctx);
1015 break;
1016 case BPF_JMP | BPF_JLE | BPF_X:
1017 case BPF_JMP32 | BPF_JLE | BPF_X:
1018 if (rv_offset_check(&rvoff, off, i, ctx))
1019 return -1;
1020 if (!is64)
1021 emit_zext_32_rd_rs(&rd, &rs, ctx);
1022 emit(rv_bgeu(rs, rd, rvoff >> 1), ctx);
1023 break;
1024 case BPF_JMP | BPF_JNE | BPF_X:
1025 case BPF_JMP32 | BPF_JNE | BPF_X:
1026 if (rv_offset_check(&rvoff, off, i, ctx))
1027 return -1;
1028 if (!is64)
1029 emit_zext_32_rd_rs(&rd, &rs, ctx);
1030 emit(rv_bne(rd, rs, rvoff >> 1), ctx);
1031 break;
1032 case BPF_JMP | BPF_JSGT | BPF_X:
1033 case BPF_JMP32 | BPF_JSGT | BPF_X:
1034 if (rv_offset_check(&rvoff, off, i, ctx))
1035 return -1;
1036 if (!is64)
1037 emit_sext_32_rd_rs(&rd, &rs, ctx);
1038 emit(rv_blt(rs, rd, rvoff >> 1), ctx);
1039 break;
1040 case BPF_JMP | BPF_JSLT | BPF_X:
1041 case BPF_JMP32 | BPF_JSLT | BPF_X:
1042 if (rv_offset_check(&rvoff, off, i, ctx))
1043 return -1;
1044 if (!is64)
1045 emit_sext_32_rd_rs(&rd, &rs, ctx);
1046 emit(rv_blt(rd, rs, rvoff >> 1), ctx);
1047 break;
1048 case BPF_JMP | BPF_JSGE | BPF_X:
1049 case BPF_JMP32 | BPF_JSGE | BPF_X:
1050 if (rv_offset_check(&rvoff, off, i, ctx))
1051 return -1;
1052 if (!is64)
1053 emit_sext_32_rd_rs(&rd, &rs, ctx);
1054 emit(rv_bge(rd, rs, rvoff >> 1), ctx);
1055 break;
1056 case BPF_JMP | BPF_JSLE | BPF_X:
1057 case BPF_JMP32 | BPF_JSLE | BPF_X:
1058 if (rv_offset_check(&rvoff, off, i, ctx))
1059 return -1;
1060 if (!is64)
1061 emit_sext_32_rd_rs(&rd, &rs, ctx);
1062 emit(rv_bge(rs, rd, rvoff >> 1), ctx);
1063 break;
1064 case BPF_JMP | BPF_JSET | BPF_X:
1065 case BPF_JMP32 | BPF_JSET | BPF_X:
1066 if (rv_offset_check(&rvoff, off, i, ctx))
1067 return -1;
1068 if (!is64)
1069 emit_zext_32_rd_rs(&rd, &rs, ctx);
1070 emit(rv_and(RV_REG_T1, rd, rs), ctx);
1071 emit(rv_bne(RV_REG_T1, RV_REG_ZERO, rvoff >> 1), ctx);
1072 break;
1073
1074 /* IF (dst COND imm) JUMP off */
1075 case BPF_JMP | BPF_JEQ | BPF_K:
1076 case BPF_JMP32 | BPF_JEQ | BPF_K:
1077 if (rv_offset_check(&rvoff, off, i, ctx))
1078 return -1;
1079 emit_imm(RV_REG_T1, imm, ctx);
1080 if (!is64)
1081 emit_zext_32_rd_t1(&rd, ctx);
1082 emit(rv_beq(rd, RV_REG_T1, rvoff >> 1), ctx);
1083 break;
1084 case BPF_JMP | BPF_JGT | BPF_K:
1085 case BPF_JMP32 | BPF_JGT | BPF_K:
1086 if (rv_offset_check(&rvoff, off, i, ctx))
1087 return -1;
1088 emit_imm(RV_REG_T1, imm, ctx);
1089 if (!is64)
1090 emit_zext_32_rd_t1(&rd, ctx);
1091 emit(rv_bltu(RV_REG_T1, rd, rvoff >> 1), ctx);
1092 break;
1093 case BPF_JMP | BPF_JLT | BPF_K:
1094 case BPF_JMP32 | BPF_JLT | BPF_K:
1095 if (rv_offset_check(&rvoff, off, i, ctx))
1096 return -1;
1097 emit_imm(RV_REG_T1, imm, ctx);
1098 if (!is64)
1099 emit_zext_32_rd_t1(&rd, ctx);
1100 emit(rv_bltu(rd, RV_REG_T1, rvoff >> 1), ctx);
1101 break;
1102 case BPF_JMP | BPF_JGE | BPF_K:
1103 case BPF_JMP32 | BPF_JGE | BPF_K:
1104 if (rv_offset_check(&rvoff, off, i, ctx))
1105 return -1;
1106 emit_imm(RV_REG_T1, imm, ctx);
1107 if (!is64)
1108 emit_zext_32_rd_t1(&rd, ctx);
1109 emit(rv_bgeu(rd, RV_REG_T1, rvoff >> 1), ctx);
1110 break;
1111 case BPF_JMP | BPF_JLE | BPF_K:
1112 case BPF_JMP32 | BPF_JLE | BPF_K:
1113 if (rv_offset_check(&rvoff, off, i, ctx))
1114 return -1;
1115 emit_imm(RV_REG_T1, imm, ctx);
1116 if (!is64)
1117 emit_zext_32_rd_t1(&rd, ctx);
1118 emit(rv_bgeu(RV_REG_T1, rd, rvoff >> 1), ctx);
1119 break;
1120 case BPF_JMP | BPF_JNE | BPF_K:
1121 case BPF_JMP32 | BPF_JNE | BPF_K:
1122 if (rv_offset_check(&rvoff, off, i, ctx))
1123 return -1;
1124 emit_imm(RV_REG_T1, imm, ctx);
1125 if (!is64)
1126 emit_zext_32_rd_t1(&rd, ctx);
1127 emit(rv_bne(rd, RV_REG_T1, rvoff >> 1), ctx);
1128 break;
1129 case BPF_JMP | BPF_JSGT | BPF_K:
1130 case BPF_JMP32 | BPF_JSGT | BPF_K:
1131 if (rv_offset_check(&rvoff, off, i, ctx))
1132 return -1;
1133 emit_imm(RV_REG_T1, imm, ctx);
1134 if (!is64)
1135 emit_sext_32_rd(&rd, ctx);
1136 emit(rv_blt(RV_REG_T1, rd, rvoff >> 1), ctx);
1137 break;
1138 case BPF_JMP | BPF_JSLT | BPF_K:
1139 case BPF_JMP32 | BPF_JSLT | BPF_K:
1140 if (rv_offset_check(&rvoff, off, i, ctx))
1141 return -1;
1142 emit_imm(RV_REG_T1, imm, ctx);
1143 if (!is64)
1144 emit_sext_32_rd(&rd, ctx);
1145 emit(rv_blt(rd, RV_REG_T1, rvoff >> 1), ctx);
1146 break;
1147 case BPF_JMP | BPF_JSGE | BPF_K:
1148 case BPF_JMP32 | BPF_JSGE | BPF_K:
1149 if (rv_offset_check(&rvoff, off, i, ctx))
1150 return -1;
1151 emit_imm(RV_REG_T1, imm, ctx);
1152 if (!is64)
1153 emit_sext_32_rd(&rd, ctx);
1154 emit(rv_bge(rd, RV_REG_T1, rvoff >> 1), ctx);
1155 break;
1156 case BPF_JMP | BPF_JSLE | BPF_K:
1157 case BPF_JMP32 | BPF_JSLE | BPF_K:
1158 if (rv_offset_check(&rvoff, off, i, ctx))
1159 return -1;
1160 emit_imm(RV_REG_T1, imm, ctx);
1161 if (!is64)
1162 emit_sext_32_rd(&rd, ctx);
1163 emit(rv_bge(RV_REG_T1, rd, rvoff >> 1), ctx);
1164 break;
1165 case BPF_JMP | BPF_JSET | BPF_K:
1166 case BPF_JMP32 | BPF_JSET | BPF_K:
1167 if (rv_offset_check(&rvoff, off, i, ctx))
1168 return -1;
1169 emit_imm(RV_REG_T1, imm, ctx);
1170 if (!is64)
1171 emit_zext_32_rd_t1(&rd, ctx);
1172 emit(rv_and(RV_REG_T1, rd, RV_REG_T1), ctx);
1173 emit(rv_bne(RV_REG_T1, RV_REG_ZERO, rvoff >> 1), ctx);
1174 break;
1175
1176 /* function call */
1177 case BPF_JMP | BPF_CALL:
1178 {
1179 bool fixed;
1180 int i, ret;
1181 u64 addr;
1182
1183 mark_call(ctx);
1184 ret = bpf_jit_get_func_addr(ctx->prog, insn, extra_pass, &addr,
1185 &fixed);
1186 if (ret < 0)
1187 return ret;
1188 if (fixed) {
1189 emit_imm(RV_REG_T1, addr, ctx);
1190 } else {
1191 i = ctx->ninsns;
1192 emit_imm(RV_REG_T1, addr, ctx);
1193 for (i = ctx->ninsns - i; i < 8; i++) {
1194 /* nop */
1195 emit(rv_addi(RV_REG_ZERO, RV_REG_ZERO, 0),
1196 ctx);
1197 }
1198 }
1199 emit(rv_jalr(RV_REG_RA, RV_REG_T1, 0), ctx);
1200 rd = bpf_to_rv_reg(BPF_REG_0, ctx);
1201 emit(rv_addi(rd, RV_REG_A0, 0), ctx);
1202 break;
1203 }
1204 /* tail call */
1205 case BPF_JMP | BPF_TAIL_CALL:
1206 if (emit_bpf_tail_call(i, ctx))
1207 return -1;
1208 break;
1209
1210 /* function return */
1211 case BPF_JMP | BPF_EXIT:
1212 if (i == ctx->prog->len - 1)
1213 break;
1214
1215 rvoff = epilogue_offset(ctx);
1216 if (is_21b_check(rvoff, i))
1217 return -1;
1218 emit(rv_jal(RV_REG_ZERO, rvoff >> 1), ctx);
1219 break;
1220
1221 /* dst = imm64 */
1222 case BPF_LD | BPF_IMM | BPF_DW:
1223 {
1224 struct bpf_insn insn1 = insn[1];
1225 u64 imm64;
1226
1227 imm64 = (u64)insn1.imm << 32 | (u32)imm;
1228 emit_imm(rd, imm64, ctx);
1229 return 1;
1230 }
1231
1232 /* LDX: dst = *(size *)(src + off) */
1233 case BPF_LDX | BPF_MEM | BPF_B:
1234 if (is_12b_int(off)) {
1235 emit(rv_lbu(rd, off, rs), ctx);
1236 break;
1237 }
1238
1239 emit_imm(RV_REG_T1, off, ctx);
1240 emit(rv_add(RV_REG_T1, RV_REG_T1, rs), ctx);
1241 emit(rv_lbu(rd, 0, RV_REG_T1), ctx);
1242 break;
1243 case BPF_LDX | BPF_MEM | BPF_H:
1244 if (is_12b_int(off)) {
1245 emit(rv_lhu(rd, off, rs), ctx);
1246 break;
1247 }
1248
1249 emit_imm(RV_REG_T1, off, ctx);
1250 emit(rv_add(RV_REG_T1, RV_REG_T1, rs), ctx);
1251 emit(rv_lhu(rd, 0, RV_REG_T1), ctx);
1252 break;
1253 case BPF_LDX | BPF_MEM | BPF_W:
1254 if (is_12b_int(off)) {
1255 emit(rv_lwu(rd, off, rs), ctx);
1256 break;
1257 }
1258
1259 emit_imm(RV_REG_T1, off, ctx);
1260 emit(rv_add(RV_REG_T1, RV_REG_T1, rs), ctx);
1261 emit(rv_lwu(rd, 0, RV_REG_T1), ctx);
1262 break;
1263 case BPF_LDX | BPF_MEM | BPF_DW:
1264 if (is_12b_int(off)) {
1265 emit(rv_ld(rd, off, rs), ctx);
1266 break;
1267 }
1268
1269 emit_imm(RV_REG_T1, off, ctx);
1270 emit(rv_add(RV_REG_T1, RV_REG_T1, rs), ctx);
1271 emit(rv_ld(rd, 0, RV_REG_T1), ctx);
1272 break;
1273
1274 /* ST: *(size *)(dst + off) = imm */
1275 case BPF_ST | BPF_MEM | BPF_B:
1276 emit_imm(RV_REG_T1, imm, ctx);
1277 if (is_12b_int(off)) {
1278 emit(rv_sb(rd, off, RV_REG_T1), ctx);
1279 break;
1280 }
1281
1282 emit_imm(RV_REG_T2, off, ctx);
1283 emit(rv_add(RV_REG_T2, RV_REG_T2, rd), ctx);
1284 emit(rv_sb(RV_REG_T2, 0, RV_REG_T1), ctx);
1285 break;
1286
1287 case BPF_ST | BPF_MEM | BPF_H:
1288 emit_imm(RV_REG_T1, imm, ctx);
1289 if (is_12b_int(off)) {
1290 emit(rv_sh(rd, off, RV_REG_T1), ctx);
1291 break;
1292 }
1293
1294 emit_imm(RV_REG_T2, off, ctx);
1295 emit(rv_add(RV_REG_T2, RV_REG_T2, rd), ctx);
1296 emit(rv_sh(RV_REG_T2, 0, RV_REG_T1), ctx);
1297 break;
1298 case BPF_ST | BPF_MEM | BPF_W:
1299 emit_imm(RV_REG_T1, imm, ctx);
1300 if (is_12b_int(off)) {
1301 emit(rv_sw(rd, off, RV_REG_T1), ctx);
1302 break;
1303 }
1304
1305 emit_imm(RV_REG_T2, off, ctx);
1306 emit(rv_add(RV_REG_T2, RV_REG_T2, rd), ctx);
1307 emit(rv_sw(RV_REG_T2, 0, RV_REG_T1), ctx);
1308 break;
1309 case BPF_ST | BPF_MEM | BPF_DW:
1310 emit_imm(RV_REG_T1, imm, ctx);
1311 if (is_12b_int(off)) {
1312 emit(rv_sd(rd, off, RV_REG_T1), ctx);
1313 break;
1314 }
1315
1316 emit_imm(RV_REG_T2, off, ctx);
1317 emit(rv_add(RV_REG_T2, RV_REG_T2, rd), ctx);
1318 emit(rv_sd(RV_REG_T2, 0, RV_REG_T1), ctx);
1319 break;
1320
1321 /* STX: *(size *)(dst + off) = src */
1322 case BPF_STX | BPF_MEM | BPF_B:
1323 if (is_12b_int(off)) {
1324 emit(rv_sb(rd, off, rs), ctx);
1325 break;
1326 }
1327
1328 emit_imm(RV_REG_T1, off, ctx);
1329 emit(rv_add(RV_REG_T1, RV_REG_T1, rd), ctx);
1330 emit(rv_sb(RV_REG_T1, 0, rs), ctx);
1331 break;
1332 case BPF_STX | BPF_MEM | BPF_H:
1333 if (is_12b_int(off)) {
1334 emit(rv_sh(rd, off, rs), ctx);
1335 break;
1336 }
1337
1338 emit_imm(RV_REG_T1, off, ctx);
1339 emit(rv_add(RV_REG_T1, RV_REG_T1, rd), ctx);
1340 emit(rv_sh(RV_REG_T1, 0, rs), ctx);
1341 break;
1342 case BPF_STX | BPF_MEM | BPF_W:
1343 if (is_12b_int(off)) {
1344 emit(rv_sw(rd, off, rs), ctx);
1345 break;
1346 }
1347
1348 emit_imm(RV_REG_T1, off, ctx);
1349 emit(rv_add(RV_REG_T1, RV_REG_T1, rd), ctx);
1350 emit(rv_sw(RV_REG_T1, 0, rs), ctx);
1351 break;
1352 case BPF_STX | BPF_MEM | BPF_DW:
1353 if (is_12b_int(off)) {
1354 emit(rv_sd(rd, off, rs), ctx);
1355 break;
1356 }
1357
1358 emit_imm(RV_REG_T1, off, ctx);
1359 emit(rv_add(RV_REG_T1, RV_REG_T1, rd), ctx);
1360 emit(rv_sd(RV_REG_T1, 0, rs), ctx);
1361 break;
1362 /* STX XADD: lock *(u32 *)(dst + off) += src */
1363 case BPF_STX | BPF_XADD | BPF_W:
1364 /* STX XADD: lock *(u64 *)(dst + off) += src */
1365 case BPF_STX | BPF_XADD | BPF_DW:
1366 if (off) {
1367 if (is_12b_int(off)) {
1368 emit(rv_addi(RV_REG_T1, rd, off), ctx);
1369 } else {
1370 emit_imm(RV_REG_T1, off, ctx);
1371 emit(rv_add(RV_REG_T1, RV_REG_T1, rd), ctx);
1372 }
1373
1374 rd = RV_REG_T1;
1375 }
1376
1377 emit(BPF_SIZE(code) == BPF_W ?
1378 rv_amoadd_w(RV_REG_ZERO, rs, rd, 0, 0) :
1379 rv_amoadd_d(RV_REG_ZERO, rs, rd, 0, 0), ctx);
1380 break;
1381 default:
1382 pr_err("bpf-jit: unknown opcode %02x\n", code);
1383 return -EINVAL;
1384 }
1385
1386 return 0;
1387}
1388
1389static void build_prologue(struct rv_jit_context *ctx)
1390{
1391 int stack_adjust = 0, store_offset, bpf_stack_adjust;
1392
1393 if (seen_reg(RV_REG_RA, ctx))
1394 stack_adjust += 8;
1395 stack_adjust += 8; /* RV_REG_FP */
1396 if (seen_reg(RV_REG_S1, ctx))
1397 stack_adjust += 8;
1398 if (seen_reg(RV_REG_S2, ctx))
1399 stack_adjust += 8;
1400 if (seen_reg(RV_REG_S3, ctx))
1401 stack_adjust += 8;
1402 if (seen_reg(RV_REG_S4, ctx))
1403 stack_adjust += 8;
1404 if (seen_reg(RV_REG_S5, ctx))
1405 stack_adjust += 8;
1406 if (seen_reg(RV_REG_S6, ctx))
1407 stack_adjust += 8;
1408
1409 stack_adjust = round_up(stack_adjust, 16);
1410 bpf_stack_adjust = round_up(ctx->prog->aux->stack_depth, 16);
1411 stack_adjust += bpf_stack_adjust;
1412
1413 store_offset = stack_adjust - 8;
1414
1415 /* First instruction is always setting the tail-call-counter
1416 * (TCC) register. This instruction is skipped for tail calls.
1417 */
1418 emit(rv_addi(RV_REG_TCC, RV_REG_ZERO, MAX_TAIL_CALL_CNT), ctx);
1419
1420 emit(rv_addi(RV_REG_SP, RV_REG_SP, -stack_adjust), ctx);
1421
1422 if (seen_reg(RV_REG_RA, ctx)) {
1423 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_RA), ctx);
1424 store_offset -= 8;
1425 }
1426 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_FP), ctx);
1427 store_offset -= 8;
1428 if (seen_reg(RV_REG_S1, ctx)) {
1429 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S1), ctx);
1430 store_offset -= 8;
1431 }
1432 if (seen_reg(RV_REG_S2, ctx)) {
1433 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S2), ctx);
1434 store_offset -= 8;
1435 }
1436 if (seen_reg(RV_REG_S3, ctx)) {
1437 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S3), ctx);
1438 store_offset -= 8;
1439 }
1440 if (seen_reg(RV_REG_S4, ctx)) {
1441 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S4), ctx);
1442 store_offset -= 8;
1443 }
1444 if (seen_reg(RV_REG_S5, ctx)) {
1445 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S5), ctx);
1446 store_offset -= 8;
1447 }
1448 if (seen_reg(RV_REG_S6, ctx)) {
1449 emit(rv_sd(RV_REG_SP, store_offset, RV_REG_S6), ctx);
1450 store_offset -= 8;
1451 }
1452
1453 emit(rv_addi(RV_REG_FP, RV_REG_SP, stack_adjust), ctx);
1454
1455 if (bpf_stack_adjust)
1456 emit(rv_addi(RV_REG_S5, RV_REG_SP, bpf_stack_adjust), ctx);
1457
1458 /* Program contains calls and tail calls, so RV_REG_TCC need
1459 * to be saved across calls.
1460 */
1461 if (seen_tail_call(ctx) && seen_call(ctx))
1462 emit(rv_addi(RV_REG_TCC_SAVED, RV_REG_TCC, 0), ctx);
1463
1464 ctx->stack_size = stack_adjust;
1465}
1466
1467static void build_epilogue(struct rv_jit_context *ctx)
1468{
1469 __build_epilogue(RV_REG_RA, ctx);
1470}
1471
1472static int build_body(struct rv_jit_context *ctx, bool extra_pass)
1473{
1474 const struct bpf_prog *prog = ctx->prog;
1475 int i;
1476
1477 for (i = 0; i < prog->len; i++) {
1478 const struct bpf_insn *insn = &prog->insnsi[i];
1479 int ret;
1480
1481 ret = emit_insn(insn, ctx, extra_pass);
1482 if (ret > 0) {
1483 i++;
1484 if (ctx->insns == NULL)
1485 ctx->offset[i] = ctx->ninsns;
1486 continue;
1487 }
1488 if (ctx->insns == NULL)
1489 ctx->offset[i] = ctx->ninsns;
1490 if (ret)
1491 return ret;
1492 }
1493 return 0;
1494}
1495
1496static void bpf_fill_ill_insns(void *area, unsigned int size)
1497{
1498 memset(area, 0, size);
1499}
1500
1501static void bpf_flush_icache(void *start, void *end)
1502{
1503 flush_icache_range((unsigned long)start, (unsigned long)end);
1504}
1505
1506struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
1507{
1508 bool tmp_blinded = false, extra_pass = false;
1509 struct bpf_prog *tmp, *orig_prog = prog;
1510 struct rv_jit_data *jit_data;
1511 struct rv_jit_context *ctx;
1512 unsigned int image_size;
1513
1514 if (!prog->jit_requested)
1515 return orig_prog;
1516
1517 tmp = bpf_jit_blind_constants(prog);
1518 if (IS_ERR(tmp))
1519 return orig_prog;
1520 if (tmp != prog) {
1521 tmp_blinded = true;
1522 prog = tmp;
1523 }
1524
1525 jit_data = prog->aux->jit_data;
1526 if (!jit_data) {
1527 jit_data = kzalloc(sizeof(*jit_data), GFP_KERNEL);
1528 if (!jit_data) {
1529 prog = orig_prog;
1530 goto out;
1531 }
1532 prog->aux->jit_data = jit_data;
1533 }
1534
1535 ctx = &jit_data->ctx;
1536
1537 if (ctx->offset) {
1538 extra_pass = true;
1539 image_size = sizeof(u32) * ctx->ninsns;
1540 goto skip_init_ctx;
1541 }
1542
1543 ctx->prog = prog;
1544 ctx->offset = kcalloc(prog->len, sizeof(int), GFP_KERNEL);
1545 if (!ctx->offset) {
1546 prog = orig_prog;
1547 goto out_offset;
1548 }
1549
1550 /* First pass generates the ctx->offset, but does not emit an image. */
1551 if (build_body(ctx, extra_pass)) {
1552 prog = orig_prog;
1553 goto out_offset;
1554 }
1555 build_prologue(ctx);
1556 ctx->epilogue_offset = ctx->ninsns;
1557 build_epilogue(ctx);
1558
1559 /* Allocate image, now that we know the size. */
1560 image_size = sizeof(u32) * ctx->ninsns;
1561 jit_data->header = bpf_jit_binary_alloc(image_size, &jit_data->image,
1562 sizeof(u32),
1563 bpf_fill_ill_insns);
1564 if (!jit_data->header) {
1565 prog = orig_prog;
1566 goto out_offset;
1567 }
1568
1569 /* Second, real pass, that acutally emits the image. */
1570 ctx->insns = (u32 *)jit_data->image;
1571skip_init_ctx:
1572 ctx->ninsns = 0;
1573
1574 build_prologue(ctx);
1575 if (build_body(ctx, extra_pass)) {
1576 bpf_jit_binary_free(jit_data->header);
1577 prog = orig_prog;
1578 goto out_offset;
1579 }
1580 build_epilogue(ctx);
1581
1582 if (bpf_jit_enable > 1)
1583 bpf_jit_dump(prog->len, image_size, 2, ctx->insns);
1584
1585 prog->bpf_func = (void *)ctx->insns;
1586 prog->jited = 1;
1587 prog->jited_len = image_size;
1588
1589 bpf_flush_icache(jit_data->header, ctx->insns + ctx->ninsns);
1590
1591 if (!prog->is_func || extra_pass) {
1592out_offset:
1593 kfree(ctx->offset);
1594 kfree(jit_data);
1595 prog->aux->jit_data = NULL;
1596 }
1597out:
1598 if (tmp_blinded)
1599 bpf_jit_prog_release_other(prog, prog == orig_prog ?
1600 tmp : orig_prog);
1601 return prog;
1602}