1ddecdfceSMircea Gherzan /* 239c13c20SShubham Bansal * Just-In-Time compiler for eBPF filters on 32bit ARM 3ddecdfceSMircea Gherzan * 439c13c20SShubham Bansal * Copyright (c) 2017 Shubham Bansal <illusionist.neo@gmail.com> 5ddecdfceSMircea Gherzan * Copyright (c) 2011 Mircea Gherzan <mgherzan@gmail.com> 6ddecdfceSMircea Gherzan * 7ddecdfceSMircea Gherzan * This program is free software; you can redistribute it and/or modify it 8ddecdfceSMircea Gherzan * under the terms of the GNU General Public License as published by the 9ddecdfceSMircea Gherzan * Free Software Foundation; version 2 of the License. 10ddecdfceSMircea Gherzan */ 11ddecdfceSMircea Gherzan 1239c13c20SShubham Bansal #include <linux/bpf.h> 13ddecdfceSMircea Gherzan #include <linux/bitops.h> 14ddecdfceSMircea Gherzan #include <linux/compiler.h> 15ddecdfceSMircea Gherzan #include <linux/errno.h> 16ddecdfceSMircea Gherzan #include <linux/filter.h> 17ddecdfceSMircea Gherzan #include <linux/netdevice.h> 18ddecdfceSMircea Gherzan #include <linux/string.h> 19ddecdfceSMircea Gherzan #include <linux/slab.h> 20bf0098f2SDaniel Borkmann #include <linux/if_vlan.h> 21e8b56d55SDaniel Borkmann 22ddecdfceSMircea Gherzan #include <asm/cacheflush.h> 23ddecdfceSMircea Gherzan #include <asm/hwcap.h> 243460743eSBen Dooks #include <asm/opcodes.h> 25ddecdfceSMircea Gherzan 26ddecdfceSMircea Gherzan #include "bpf_jit_32.h" 27ddecdfceSMircea Gherzan 2839c13c20SShubham Bansal int bpf_jit_enable __read_mostly; 2939c13c20SShubham Bansal 3070ec3a6cSRussell King /* 31*0005e55aSRussell King * eBPF prog stack layout: 3270ec3a6cSRussell King * 3370ec3a6cSRussell King * high 34*0005e55aSRussell King * original ARM_SP => +-----+ 35*0005e55aSRussell King * | | callee saved registers 36*0005e55aSRussell King * +-----+ <= (BPF_FP + SCRATCH_SIZE) 3770ec3a6cSRussell King * | ... | eBPF JIT scratch space 38*0005e55aSRussell King * eBPF fp register => +-----+ 39*0005e55aSRussell King * (BPF_FP) | ... | eBPF prog stack 4070ec3a6cSRussell King * +-----+ 4170ec3a6cSRussell King * |RSVD | JIT scratchpad 42*0005e55aSRussell King * current ARM_SP => +-----+ <= (BPF_FP - STACK_SIZE + SCRATCH_SIZE) 4370ec3a6cSRussell King * | | 4470ec3a6cSRussell King * | ... | Function call stack 4570ec3a6cSRussell King * | | 4670ec3a6cSRussell King * +-----+ 4770ec3a6cSRussell King * low 48*0005e55aSRussell King * 49*0005e55aSRussell King * The callee saved registers depends on whether frame pointers are enabled. 50*0005e55aSRussell King * With frame pointers (to be compliant with the ABI): 51*0005e55aSRussell King * 52*0005e55aSRussell King * high 53*0005e55aSRussell King * original ARM_SP => +------------------+ \ 54*0005e55aSRussell King * | pc | | 55*0005e55aSRussell King * current ARM_FP => +------------------+ } callee saved registers 56*0005e55aSRussell King * |r4-r8,r10,fp,ip,lr| | 57*0005e55aSRussell King * +------------------+ / 58*0005e55aSRussell King * low 59*0005e55aSRussell King * 60*0005e55aSRussell King * Without frame pointers: 61*0005e55aSRussell King * 62*0005e55aSRussell King * high 63*0005e55aSRussell King * original ARM_SP => +------------------+ 64*0005e55aSRussell King * | lr | (optional) 65*0005e55aSRussell King * | r4-r8,r10 | callee saved registers 66*0005e55aSRussell King * +------------------+ 67*0005e55aSRussell King * low 6870ec3a6cSRussell King */ 6970ec3a6cSRussell King 7039c13c20SShubham Bansal #define STACK_OFFSET(k) (k) 7139c13c20SShubham Bansal #define TMP_REG_1 (MAX_BPF_JIT_REG + 0) /* TEMP Register 1 */ 7239c13c20SShubham Bansal #define TMP_REG_2 (MAX_BPF_JIT_REG + 1) /* TEMP Register 2 */ 7339c13c20SShubham Bansal #define TCALL_CNT (MAX_BPF_JIT_REG + 2) /* Tail Call Count */ 7439c13c20SShubham Bansal 7539c13c20SShubham Bansal /* Flags used for JIT optimization */ 7639c13c20SShubham Bansal #define SEEN_CALL (1 << 0) 7739c13c20SShubham Bansal 7839c13c20SShubham Bansal #define FLAG_IMM_OVERFLOW (1 << 0) 7939c13c20SShubham Bansal 80ddecdfceSMircea Gherzan /* 8139c13c20SShubham Bansal * Map eBPF registers to ARM 32bit registers or stack scratch space. 82ddecdfceSMircea Gherzan * 8339c13c20SShubham Bansal * 1. First argument is passed using the arm 32bit registers and rest of the 8439c13c20SShubham Bansal * arguments are passed on stack scratch space. 8539c13c20SShubham Bansal * 2. First callee-saved arugument is mapped to arm 32 bit registers and rest 8639c13c20SShubham Bansal * arguments are mapped to scratch space on stack. 8739c13c20SShubham Bansal * 3. We need two 64 bit temp registers to do complex operations on eBPF 8839c13c20SShubham Bansal * registers. 8939c13c20SShubham Bansal * 9039c13c20SShubham Bansal * As the eBPF registers are all 64 bit registers and arm has only 32 bit 9139c13c20SShubham Bansal * registers, we have to map each eBPF registers with two arm 32 bit regs or 9239c13c20SShubham Bansal * scratch memory space and we have to build eBPF 64 bit register from those. 9339c13c20SShubham Bansal * 9439c13c20SShubham Bansal */ 9539c13c20SShubham Bansal static const u8 bpf2a32[][2] = { 9639c13c20SShubham Bansal /* return value from in-kernel function, and exit value from eBPF */ 9739c13c20SShubham Bansal [BPF_REG_0] = {ARM_R1, ARM_R0}, 9839c13c20SShubham Bansal /* arguments from eBPF program to in-kernel function */ 9939c13c20SShubham Bansal [BPF_REG_1] = {ARM_R3, ARM_R2}, 10039c13c20SShubham Bansal /* Stored on stack scratch space */ 10139c13c20SShubham Bansal [BPF_REG_2] = {STACK_OFFSET(0), STACK_OFFSET(4)}, 10239c13c20SShubham Bansal [BPF_REG_3] = {STACK_OFFSET(8), STACK_OFFSET(12)}, 10339c13c20SShubham Bansal [BPF_REG_4] = {STACK_OFFSET(16), STACK_OFFSET(20)}, 10439c13c20SShubham Bansal [BPF_REG_5] = {STACK_OFFSET(24), STACK_OFFSET(28)}, 10539c13c20SShubham Bansal /* callee saved registers that in-kernel function will preserve */ 10639c13c20SShubham Bansal [BPF_REG_6] = {ARM_R5, ARM_R4}, 10739c13c20SShubham Bansal /* Stored on stack scratch space */ 10839c13c20SShubham Bansal [BPF_REG_7] = {STACK_OFFSET(32), STACK_OFFSET(36)}, 10939c13c20SShubham Bansal [BPF_REG_8] = {STACK_OFFSET(40), STACK_OFFSET(44)}, 11039c13c20SShubham Bansal [BPF_REG_9] = {STACK_OFFSET(48), STACK_OFFSET(52)}, 11139c13c20SShubham Bansal /* Read only Frame Pointer to access Stack */ 11239c13c20SShubham Bansal [BPF_REG_FP] = {STACK_OFFSET(56), STACK_OFFSET(60)}, 11339c13c20SShubham Bansal /* Temporary Register for internal BPF JIT, can be used 11439c13c20SShubham Bansal * for constant blindings and others. 11539c13c20SShubham Bansal */ 11639c13c20SShubham Bansal [TMP_REG_1] = {ARM_R7, ARM_R6}, 11739c13c20SShubham Bansal [TMP_REG_2] = {ARM_R10, ARM_R8}, 11839c13c20SShubham Bansal /* Tail call count. Stored on stack scratch space. */ 11939c13c20SShubham Bansal [TCALL_CNT] = {STACK_OFFSET(64), STACK_OFFSET(68)}, 12039c13c20SShubham Bansal /* temporary register for blinding constants. 12139c13c20SShubham Bansal * Stored on stack scratch space. 12239c13c20SShubham Bansal */ 12339c13c20SShubham Bansal [BPF_REG_AX] = {STACK_OFFSET(72), STACK_OFFSET(76)}, 12439c13c20SShubham Bansal }; 12539c13c20SShubham Bansal 12639c13c20SShubham Bansal #define dst_lo dst[1] 12739c13c20SShubham Bansal #define dst_hi dst[0] 12839c13c20SShubham Bansal #define src_lo src[1] 12939c13c20SShubham Bansal #define src_hi src[0] 13039c13c20SShubham Bansal 13139c13c20SShubham Bansal /* 13239c13c20SShubham Bansal * JIT Context: 13339c13c20SShubham Bansal * 13439c13c20SShubham Bansal * prog : bpf_prog 13539c13c20SShubham Bansal * idx : index of current last JITed instruction. 13639c13c20SShubham Bansal * prologue_bytes : bytes used in prologue. 13739c13c20SShubham Bansal * epilogue_offset : offset of epilogue starting. 13839c13c20SShubham Bansal * seen : bit mask used for JIT optimization. 13939c13c20SShubham Bansal * offsets : array of eBPF instruction offsets in 14039c13c20SShubham Bansal * JITed code. 14139c13c20SShubham Bansal * target : final JITed code. 14239c13c20SShubham Bansal * epilogue_bytes : no of bytes used in epilogue. 14339c13c20SShubham Bansal * imm_count : no of immediate counts used for global 14439c13c20SShubham Bansal * variables. 14539c13c20SShubham Bansal * imms : array of global variable addresses. 146ddecdfceSMircea Gherzan */ 147ddecdfceSMircea Gherzan 148ddecdfceSMircea Gherzan struct jit_ctx { 14939c13c20SShubham Bansal const struct bpf_prog *prog; 15039c13c20SShubham Bansal unsigned int idx; 15139c13c20SShubham Bansal unsigned int prologue_bytes; 15239c13c20SShubham Bansal unsigned int epilogue_offset; 153ddecdfceSMircea Gherzan u32 seen; 154ddecdfceSMircea Gherzan u32 flags; 155ddecdfceSMircea Gherzan u32 *offsets; 156ddecdfceSMircea Gherzan u32 *target; 15739c13c20SShubham Bansal u32 stack_size; 158ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 7 159ddecdfceSMircea Gherzan u16 epilogue_bytes; 160ddecdfceSMircea Gherzan u16 imm_count; 161ddecdfceSMircea Gherzan u32 *imms; 162ddecdfceSMircea Gherzan #endif 163ddecdfceSMircea Gherzan }; 164ddecdfceSMircea Gherzan 165ddecdfceSMircea Gherzan /* 1664560cdffSNicolas Schichan * Wrappers which handle both OABI and EABI and assures Thumb2 interworking 167ddecdfceSMircea Gherzan * (where the assembly routines like __aeabi_uidiv could cause problems). 168ddecdfceSMircea Gherzan */ 16939c13c20SShubham Bansal static u32 jit_udiv32(u32 dividend, u32 divisor) 170ddecdfceSMircea Gherzan { 171ddecdfceSMircea Gherzan return dividend / divisor; 172ddecdfceSMircea Gherzan } 173ddecdfceSMircea Gherzan 17439c13c20SShubham Bansal static u32 jit_mod32(u32 dividend, u32 divisor) 1754560cdffSNicolas Schichan { 1764560cdffSNicolas Schichan return dividend % divisor; 1774560cdffSNicolas Schichan } 1784560cdffSNicolas Schichan 179ddecdfceSMircea Gherzan static inline void _emit(int cond, u32 inst, struct jit_ctx *ctx) 180ddecdfceSMircea Gherzan { 1813460743eSBen Dooks inst |= (cond << 28); 1823460743eSBen Dooks inst = __opcode_to_mem_arm(inst); 1833460743eSBen Dooks 184ddecdfceSMircea Gherzan if (ctx->target != NULL) 1853460743eSBen Dooks ctx->target[ctx->idx] = inst; 186ddecdfceSMircea Gherzan 187ddecdfceSMircea Gherzan ctx->idx++; 188ddecdfceSMircea Gherzan } 189ddecdfceSMircea Gherzan 190ddecdfceSMircea Gherzan /* 191ddecdfceSMircea Gherzan * Emit an instruction that will be executed unconditionally. 192ddecdfceSMircea Gherzan */ 193ddecdfceSMircea Gherzan static inline void emit(u32 inst, struct jit_ctx *ctx) 194ddecdfceSMircea Gherzan { 195ddecdfceSMircea Gherzan _emit(ARM_COND_AL, inst, ctx); 196ddecdfceSMircea Gherzan } 197ddecdfceSMircea Gherzan 19839c13c20SShubham Bansal /* 19939c13c20SShubham Bansal * Checks if immediate value can be converted to imm12(12 bits) value. 20039c13c20SShubham Bansal */ 20139c13c20SShubham Bansal static int16_t imm8m(u32 x) 202ddecdfceSMircea Gherzan { 20339c13c20SShubham Bansal u32 rot; 204ddecdfceSMircea Gherzan 20539c13c20SShubham Bansal for (rot = 0; rot < 16; rot++) 20639c13c20SShubham Bansal if ((x & ~ror32(0xff, 2 * rot)) == 0) 20739c13c20SShubham Bansal return rol32(x, 2 * rot) | (rot << 8); 20839c13c20SShubham Bansal return -1; 209ddecdfceSMircea Gherzan } 210ddecdfceSMircea Gherzan 21139c13c20SShubham Bansal /* 21239c13c20SShubham Bansal * Initializes the JIT space with undefined instructions. 21339c13c20SShubham Bansal */ 21455309dd3SDaniel Borkmann static void jit_fill_hole(void *area, unsigned int size) 21555309dd3SDaniel Borkmann { 216e8b56d55SDaniel Borkmann u32 *ptr; 21755309dd3SDaniel Borkmann /* We are guaranteed to have aligned memory. */ 21855309dd3SDaniel Borkmann for (ptr = area; size >= sizeof(u32); size -= sizeof(u32)) 219e8b56d55SDaniel Borkmann *ptr++ = __opcode_to_mem_arm(ARM_INST_UDF); 22055309dd3SDaniel Borkmann } 22155309dd3SDaniel Borkmann 222d1220efdSRussell King #if defined(CONFIG_AEABI) && (__LINUX_ARM_ARCH__ >= 5) 223d1220efdSRussell King /* EABI requires the stack to be aligned to 64-bit boundaries */ 224d1220efdSRussell King #define STACK_ALIGNMENT 8 225d1220efdSRussell King #else 226d1220efdSRussell King /* Stack must be aligned to 32-bit boundaries */ 227d1220efdSRussell King #define STACK_ALIGNMENT 4 228d1220efdSRussell King #endif 229ddecdfceSMircea Gherzan 23039c13c20SShubham Bansal /* Stack space for BPF_REG_2, BPF_REG_3, BPF_REG_4, 23139c13c20SShubham Bansal * BPF_REG_5, BPF_REG_7, BPF_REG_8, BPF_REG_9, 23239c13c20SShubham Bansal * BPF_REG_FP and Tail call counts. 23339c13c20SShubham Bansal */ 23439c13c20SShubham Bansal #define SCRATCH_SIZE 80 235ddecdfceSMircea Gherzan 23639c13c20SShubham Bansal /* total stack size used in JITed code */ 23739c13c20SShubham Bansal #define _STACK_SIZE \ 23839c13c20SShubham Bansal (ctx->prog->aux->stack_depth + \ 23939c13c20SShubham Bansal + SCRATCH_SIZE + \ 24039c13c20SShubham Bansal + 4 /* extra for skb_copy_bits buffer */) 241ddecdfceSMircea Gherzan 242d1220efdSRussell King #define STACK_SIZE ALIGN(_STACK_SIZE, STACK_ALIGNMENT) 243ddecdfceSMircea Gherzan 24439c13c20SShubham Bansal /* Get the offset of eBPF REGISTERs stored on scratch space. */ 24539c13c20SShubham Bansal #define STACK_VAR(off) (STACK_SIZE-off-4) 246ddecdfceSMircea Gherzan 24739c13c20SShubham Bansal /* Offset of skb_copy_bits buffer */ 24839c13c20SShubham Bansal #define SKB_BUFFER STACK_VAR(SCRATCH_SIZE) 249ddecdfceSMircea Gherzan 250ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 7 251ddecdfceSMircea Gherzan 252ddecdfceSMircea Gherzan static u16 imm_offset(u32 k, struct jit_ctx *ctx) 253ddecdfceSMircea Gherzan { 25439c13c20SShubham Bansal unsigned int i = 0, offset; 255ddecdfceSMircea Gherzan u16 imm; 256ddecdfceSMircea Gherzan 257ddecdfceSMircea Gherzan /* on the "fake" run we just count them (duplicates included) */ 258ddecdfceSMircea Gherzan if (ctx->target == NULL) { 259ddecdfceSMircea Gherzan ctx->imm_count++; 260ddecdfceSMircea Gherzan return 0; 261ddecdfceSMircea Gherzan } 262ddecdfceSMircea Gherzan 263ddecdfceSMircea Gherzan while ((i < ctx->imm_count) && ctx->imms[i]) { 264ddecdfceSMircea Gherzan if (ctx->imms[i] == k) 265ddecdfceSMircea Gherzan break; 266ddecdfceSMircea Gherzan i++; 267ddecdfceSMircea Gherzan } 268ddecdfceSMircea Gherzan 269ddecdfceSMircea Gherzan if (ctx->imms[i] == 0) 270ddecdfceSMircea Gherzan ctx->imms[i] = k; 271ddecdfceSMircea Gherzan 272ddecdfceSMircea Gherzan /* constants go just after the epilogue */ 27339c13c20SShubham Bansal offset = ctx->offsets[ctx->prog->len - 1] * 4; 274ddecdfceSMircea Gherzan offset += ctx->prologue_bytes; 275ddecdfceSMircea Gherzan offset += ctx->epilogue_bytes; 276ddecdfceSMircea Gherzan offset += i * 4; 277ddecdfceSMircea Gherzan 278ddecdfceSMircea Gherzan ctx->target[offset / 4] = k; 279ddecdfceSMircea Gherzan 280ddecdfceSMircea Gherzan /* PC in ARM mode == address of the instruction + 8 */ 281ddecdfceSMircea Gherzan imm = offset - (8 + ctx->idx * 4); 282ddecdfceSMircea Gherzan 2830b59d880SNicolas Schichan if (imm & ~0xfff) { 2840b59d880SNicolas Schichan /* 2850b59d880SNicolas Schichan * literal pool is too far, signal it into flags. we 2860b59d880SNicolas Schichan * can only detect it on the second pass unfortunately. 2870b59d880SNicolas Schichan */ 2880b59d880SNicolas Schichan ctx->flags |= FLAG_IMM_OVERFLOW; 2890b59d880SNicolas Schichan return 0; 2900b59d880SNicolas Schichan } 2910b59d880SNicolas Schichan 292ddecdfceSMircea Gherzan return imm; 293ddecdfceSMircea Gherzan } 294ddecdfceSMircea Gherzan 295ddecdfceSMircea Gherzan #endif /* __LINUX_ARM_ARCH__ */ 296ddecdfceSMircea Gherzan 29739c13c20SShubham Bansal static inline int bpf2a32_offset(int bpf_to, int bpf_from, 29839c13c20SShubham Bansal const struct jit_ctx *ctx) { 29939c13c20SShubham Bansal int to, from; 30039c13c20SShubham Bansal 30139c13c20SShubham Bansal if (ctx->target == NULL) 30239c13c20SShubham Bansal return 0; 30339c13c20SShubham Bansal to = ctx->offsets[bpf_to]; 30439c13c20SShubham Bansal from = ctx->offsets[bpf_from]; 30539c13c20SShubham Bansal 30639c13c20SShubham Bansal return to - from - 1; 30739c13c20SShubham Bansal } 30839c13c20SShubham Bansal 309ddecdfceSMircea Gherzan /* 310ddecdfceSMircea Gherzan * Move an immediate that's not an imm8m to a core register. 311ddecdfceSMircea Gherzan */ 31239c13c20SShubham Bansal static inline void emit_mov_i_no8m(const u8 rd, u32 val, struct jit_ctx *ctx) 313ddecdfceSMircea Gherzan { 314ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 7 315ddecdfceSMircea Gherzan emit(ARM_LDR_I(rd, ARM_PC, imm_offset(val, ctx)), ctx); 316ddecdfceSMircea Gherzan #else 317ddecdfceSMircea Gherzan emit(ARM_MOVW(rd, val & 0xffff), ctx); 318ddecdfceSMircea Gherzan if (val > 0xffff) 319ddecdfceSMircea Gherzan emit(ARM_MOVT(rd, val >> 16), ctx); 320ddecdfceSMircea Gherzan #endif 321ddecdfceSMircea Gherzan } 322ddecdfceSMircea Gherzan 32339c13c20SShubham Bansal static inline void emit_mov_i(const u8 rd, u32 val, struct jit_ctx *ctx) 324ddecdfceSMircea Gherzan { 325ddecdfceSMircea Gherzan int imm12 = imm8m(val); 326ddecdfceSMircea Gherzan 327ddecdfceSMircea Gherzan if (imm12 >= 0) 328ddecdfceSMircea Gherzan emit(ARM_MOV_I(rd, imm12), ctx); 329ddecdfceSMircea Gherzan else 330ddecdfceSMircea Gherzan emit_mov_i_no8m(rd, val, ctx); 331ddecdfceSMircea Gherzan } 332ddecdfceSMircea Gherzan 333e9062481SRussell King static void emit_bx_r(u8 tgt_reg, struct jit_ctx *ctx) 334e9062481SRussell King { 335e9062481SRussell King if (elf_hwcap & HWCAP_THUMB) 336e9062481SRussell King emit(ARM_BX(tgt_reg), ctx); 337e9062481SRussell King else 338e9062481SRussell King emit(ARM_MOV_R(ARM_PC, tgt_reg), ctx); 339e9062481SRussell King } 340e9062481SRussell King 341ddecdfceSMircea Gherzan static inline void emit_blx_r(u8 tgt_reg, struct jit_ctx *ctx) 342ddecdfceSMircea Gherzan { 34339c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 344ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 5 345ddecdfceSMircea Gherzan emit(ARM_MOV_R(ARM_LR, ARM_PC), ctx); 346e9062481SRussell King emit_bx_r(tgt_reg, ctx); 347ddecdfceSMircea Gherzan #else 348ddecdfceSMircea Gherzan emit(ARM_BLX_R(tgt_reg), ctx); 349ddecdfceSMircea Gherzan #endif 350ddecdfceSMircea Gherzan } 351ddecdfceSMircea Gherzan 35239c13c20SShubham Bansal static inline int epilogue_offset(const struct jit_ctx *ctx) 353ddecdfceSMircea Gherzan { 35439c13c20SShubham Bansal int to, from; 35539c13c20SShubham Bansal /* No need for 1st dummy run */ 35639c13c20SShubham Bansal if (ctx->target == NULL) 35739c13c20SShubham Bansal return 0; 35839c13c20SShubham Bansal to = ctx->epilogue_offset; 35939c13c20SShubham Bansal from = ctx->idx; 36039c13c20SShubham Bansal 36139c13c20SShubham Bansal return to - from - 2; 36239c13c20SShubham Bansal } 36339c13c20SShubham Bansal 36439c13c20SShubham Bansal static inline void emit_udivmod(u8 rd, u8 rm, u8 rn, struct jit_ctx *ctx, u8 op) 36539c13c20SShubham Bansal { 36639c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 36739c13c20SShubham Bansal s32 jmp_offset; 36839c13c20SShubham Bansal 36939c13c20SShubham Bansal /* checks if divisor is zero or not. If it is, then 37039c13c20SShubham Bansal * exit directly. 37139c13c20SShubham Bansal */ 37239c13c20SShubham Bansal emit(ARM_CMP_I(rn, 0), ctx); 37339c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_MOV_I(ARM_R0, 0), ctx); 37439c13c20SShubham Bansal jmp_offset = epilogue_offset(ctx); 37539c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_B(jmp_offset), ctx); 376ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ == 7 377ddecdfceSMircea Gherzan if (elf_hwcap & HWCAP_IDIVA) { 37839c13c20SShubham Bansal if (op == BPF_DIV) 379ddecdfceSMircea Gherzan emit(ARM_UDIV(rd, rm, rn), ctx); 3804560cdffSNicolas Schichan else { 38139c13c20SShubham Bansal emit(ARM_UDIV(ARM_IP, rm, rn), ctx); 38239c13c20SShubham Bansal emit(ARM_MLS(rd, rn, ARM_IP, rm), ctx); 3834560cdffSNicolas Schichan } 384ddecdfceSMircea Gherzan return; 385ddecdfceSMircea Gherzan } 386ddecdfceSMircea Gherzan #endif 38719fc99d0SNicolas Schichan 38819fc99d0SNicolas Schichan /* 38939c13c20SShubham Bansal * For BPF_ALU | BPF_DIV | BPF_K instructions 39039c13c20SShubham Bansal * As ARM_R1 and ARM_R0 contains 1st argument of bpf 39139c13c20SShubham Bansal * function, we need to save it on caller side to save 39239c13c20SShubham Bansal * it from getting destroyed within callee. 39339c13c20SShubham Bansal * After the return from the callee, we restore ARM_R0 39439c13c20SShubham Bansal * ARM_R1. 39519fc99d0SNicolas Schichan */ 39639c13c20SShubham Bansal if (rn != ARM_R1) { 39739c13c20SShubham Bansal emit(ARM_MOV_R(tmp[0], ARM_R1), ctx); 398ddecdfceSMircea Gherzan emit(ARM_MOV_R(ARM_R1, rn), ctx); 39939c13c20SShubham Bansal } 40039c13c20SShubham Bansal if (rm != ARM_R0) { 40139c13c20SShubham Bansal emit(ARM_MOV_R(tmp[1], ARM_R0), ctx); 40219fc99d0SNicolas Schichan emit(ARM_MOV_R(ARM_R0, rm), ctx); 40339c13c20SShubham Bansal } 404ddecdfceSMircea Gherzan 40539c13c20SShubham Bansal /* Call appropriate function */ 406ddecdfceSMircea Gherzan ctx->seen |= SEEN_CALL; 40739c13c20SShubham Bansal emit_mov_i(ARM_IP, op == BPF_DIV ? 40839c13c20SShubham Bansal (u32)jit_udiv32 : (u32)jit_mod32, ctx); 40939c13c20SShubham Bansal emit_blx_r(ARM_IP, ctx); 410ddecdfceSMircea Gherzan 41139c13c20SShubham Bansal /* Save return value */ 412ddecdfceSMircea Gherzan if (rd != ARM_R0) 413ddecdfceSMircea Gherzan emit(ARM_MOV_R(rd, ARM_R0), ctx); 41439c13c20SShubham Bansal 41539c13c20SShubham Bansal /* Restore ARM_R0 and ARM_R1 */ 41639c13c20SShubham Bansal if (rn != ARM_R1) 41739c13c20SShubham Bansal emit(ARM_MOV_R(ARM_R1, tmp[0]), ctx); 41839c13c20SShubham Bansal if (rm != ARM_R0) 41939c13c20SShubham Bansal emit(ARM_MOV_R(ARM_R0, tmp[1]), ctx); 420ddecdfceSMircea Gherzan } 421ddecdfceSMircea Gherzan 42239c13c20SShubham Bansal /* Checks whether BPF register is on scratch stack space or not. */ 42339c13c20SShubham Bansal static inline bool is_on_stack(u8 bpf_reg) 424ddecdfceSMircea Gherzan { 42539c13c20SShubham Bansal static u8 stack_regs[] = {BPF_REG_AX, BPF_REG_3, BPF_REG_4, BPF_REG_5, 42639c13c20SShubham Bansal BPF_REG_7, BPF_REG_8, BPF_REG_9, TCALL_CNT, 42739c13c20SShubham Bansal BPF_REG_2, BPF_REG_FP}; 42839c13c20SShubham Bansal int i, reg_len = sizeof(stack_regs); 429ddecdfceSMircea Gherzan 43039c13c20SShubham Bansal for (i = 0 ; i < reg_len ; i++) { 43139c13c20SShubham Bansal if (bpf_reg == stack_regs[i]) 43239c13c20SShubham Bansal return true; 43339c13c20SShubham Bansal } 43439c13c20SShubham Bansal return false; 435ddecdfceSMircea Gherzan } 436ddecdfceSMircea Gherzan 43739c13c20SShubham Bansal static inline void emit_a32_mov_i(const u8 dst, const u32 val, 43839c13c20SShubham Bansal bool dstk, struct jit_ctx *ctx) 439ddecdfceSMircea Gherzan { 44039c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 441ddecdfceSMircea Gherzan 44239c13c20SShubham Bansal if (dstk) { 44339c13c20SShubham Bansal emit_mov_i(tmp[1], val, ctx); 44439c13c20SShubham Bansal emit(ARM_STR_I(tmp[1], ARM_SP, STACK_VAR(dst)), ctx); 44539c13c20SShubham Bansal } else { 44639c13c20SShubham Bansal emit_mov_i(dst, val, ctx); 44739c13c20SShubham Bansal } 44839c13c20SShubham Bansal } 44934805931SDaniel Borkmann 45039c13c20SShubham Bansal /* Sign extended move */ 45139c13c20SShubham Bansal static inline void emit_a32_mov_i64(const bool is64, const u8 dst[], 45239c13c20SShubham Bansal const u32 val, bool dstk, 45339c13c20SShubham Bansal struct jit_ctx *ctx) { 45439c13c20SShubham Bansal u32 hi = 0; 455ddecdfceSMircea Gherzan 45639c13c20SShubham Bansal if (is64 && (val & (1<<31))) 45739c13c20SShubham Bansal hi = (u32)~0; 45839c13c20SShubham Bansal emit_a32_mov_i(dst_lo, val, dstk, ctx); 45939c13c20SShubham Bansal emit_a32_mov_i(dst_hi, hi, dstk, ctx); 46039c13c20SShubham Bansal } 46139c13c20SShubham Bansal 46239c13c20SShubham Bansal static inline void emit_a32_add_r(const u8 dst, const u8 src, 46339c13c20SShubham Bansal const bool is64, const bool hi, 46439c13c20SShubham Bansal struct jit_ctx *ctx) { 46539c13c20SShubham Bansal /* 64 bit : 46639c13c20SShubham Bansal * adds dst_lo, dst_lo, src_lo 46739c13c20SShubham Bansal * adc dst_hi, dst_hi, src_hi 46839c13c20SShubham Bansal * 32 bit : 46939c13c20SShubham Bansal * add dst_lo, dst_lo, src_lo 47039c13c20SShubham Bansal */ 47139c13c20SShubham Bansal if (!hi && is64) 47239c13c20SShubham Bansal emit(ARM_ADDS_R(dst, dst, src), ctx); 47339c13c20SShubham Bansal else if (hi && is64) 47439c13c20SShubham Bansal emit(ARM_ADC_R(dst, dst, src), ctx); 47539c13c20SShubham Bansal else 47639c13c20SShubham Bansal emit(ARM_ADD_R(dst, dst, src), ctx); 47739c13c20SShubham Bansal } 47839c13c20SShubham Bansal 47939c13c20SShubham Bansal static inline void emit_a32_sub_r(const u8 dst, const u8 src, 48039c13c20SShubham Bansal const bool is64, const bool hi, 48139c13c20SShubham Bansal struct jit_ctx *ctx) { 48239c13c20SShubham Bansal /* 64 bit : 48339c13c20SShubham Bansal * subs dst_lo, dst_lo, src_lo 48439c13c20SShubham Bansal * sbc dst_hi, dst_hi, src_hi 48539c13c20SShubham Bansal * 32 bit : 48639c13c20SShubham Bansal * sub dst_lo, dst_lo, src_lo 48739c13c20SShubham Bansal */ 48839c13c20SShubham Bansal if (!hi && is64) 48939c13c20SShubham Bansal emit(ARM_SUBS_R(dst, dst, src), ctx); 49039c13c20SShubham Bansal else if (hi && is64) 49139c13c20SShubham Bansal emit(ARM_SBC_R(dst, dst, src), ctx); 49239c13c20SShubham Bansal else 49339c13c20SShubham Bansal emit(ARM_SUB_R(dst, dst, src), ctx); 49439c13c20SShubham Bansal } 49539c13c20SShubham Bansal 49639c13c20SShubham Bansal static inline void emit_alu_r(const u8 dst, const u8 src, const bool is64, 49739c13c20SShubham Bansal const bool hi, const u8 op, struct jit_ctx *ctx){ 49839c13c20SShubham Bansal switch (BPF_OP(op)) { 49939c13c20SShubham Bansal /* dst = dst + src */ 50039c13c20SShubham Bansal case BPF_ADD: 50139c13c20SShubham Bansal emit_a32_add_r(dst, src, is64, hi, ctx); 50239c13c20SShubham Bansal break; 50339c13c20SShubham Bansal /* dst = dst - src */ 50439c13c20SShubham Bansal case BPF_SUB: 50539c13c20SShubham Bansal emit_a32_sub_r(dst, src, is64, hi, ctx); 50639c13c20SShubham Bansal break; 50739c13c20SShubham Bansal /* dst = dst | src */ 50839c13c20SShubham Bansal case BPF_OR: 50939c13c20SShubham Bansal emit(ARM_ORR_R(dst, dst, src), ctx); 51039c13c20SShubham Bansal break; 51139c13c20SShubham Bansal /* dst = dst & src */ 51239c13c20SShubham Bansal case BPF_AND: 51339c13c20SShubham Bansal emit(ARM_AND_R(dst, dst, src), ctx); 51439c13c20SShubham Bansal break; 51539c13c20SShubham Bansal /* dst = dst ^ src */ 51639c13c20SShubham Bansal case BPF_XOR: 51739c13c20SShubham Bansal emit(ARM_EOR_R(dst, dst, src), ctx); 51839c13c20SShubham Bansal break; 51939c13c20SShubham Bansal /* dst = dst * src */ 52039c13c20SShubham Bansal case BPF_MUL: 52139c13c20SShubham Bansal emit(ARM_MUL(dst, dst, src), ctx); 52239c13c20SShubham Bansal break; 52339c13c20SShubham Bansal /* dst = dst << src */ 52439c13c20SShubham Bansal case BPF_LSH: 52539c13c20SShubham Bansal emit(ARM_LSL_R(dst, dst, src), ctx); 52639c13c20SShubham Bansal break; 52739c13c20SShubham Bansal /* dst = dst >> src */ 52839c13c20SShubham Bansal case BPF_RSH: 52939c13c20SShubham Bansal emit(ARM_LSR_R(dst, dst, src), ctx); 53039c13c20SShubham Bansal break; 53139c13c20SShubham Bansal /* dst = dst >> src (signed)*/ 53239c13c20SShubham Bansal case BPF_ARSH: 53339c13c20SShubham Bansal emit(ARM_MOV_SR(dst, dst, SRTYPE_ASR, src), ctx); 53439c13c20SShubham Bansal break; 53539c13c20SShubham Bansal } 53639c13c20SShubham Bansal } 53739c13c20SShubham Bansal 53839c13c20SShubham Bansal /* ALU operation (32 bit) 53939c13c20SShubham Bansal * dst = dst (op) src 54039c13c20SShubham Bansal */ 54139c13c20SShubham Bansal static inline void emit_a32_alu_r(const u8 dst, const u8 src, 54239c13c20SShubham Bansal bool dstk, bool sstk, 54339c13c20SShubham Bansal struct jit_ctx *ctx, const bool is64, 54439c13c20SShubham Bansal const bool hi, const u8 op) { 54539c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 54639c13c20SShubham Bansal u8 rn = sstk ? tmp[1] : src; 54739c13c20SShubham Bansal 54839c13c20SShubham Bansal if (sstk) 54939c13c20SShubham Bansal emit(ARM_LDR_I(rn, ARM_SP, STACK_VAR(src)), ctx); 55039c13c20SShubham Bansal 55139c13c20SShubham Bansal /* ALU operation */ 55239c13c20SShubham Bansal if (dstk) { 55339c13c20SShubham Bansal emit(ARM_LDR_I(tmp[0], ARM_SP, STACK_VAR(dst)), ctx); 55439c13c20SShubham Bansal emit_alu_r(tmp[0], rn, is64, hi, op, ctx); 55539c13c20SShubham Bansal emit(ARM_STR_I(tmp[0], ARM_SP, STACK_VAR(dst)), ctx); 55639c13c20SShubham Bansal } else { 55739c13c20SShubham Bansal emit_alu_r(dst, rn, is64, hi, op, ctx); 55839c13c20SShubham Bansal } 55939c13c20SShubham Bansal } 56039c13c20SShubham Bansal 56139c13c20SShubham Bansal /* ALU operation (64 bit) */ 56239c13c20SShubham Bansal static inline void emit_a32_alu_r64(const bool is64, const u8 dst[], 56339c13c20SShubham Bansal const u8 src[], bool dstk, 56439c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx, 56539c13c20SShubham Bansal const u8 op) { 56639c13c20SShubham Bansal emit_a32_alu_r(dst_lo, src_lo, dstk, sstk, ctx, is64, false, op); 56739c13c20SShubham Bansal if (is64) 56839c13c20SShubham Bansal emit_a32_alu_r(dst_hi, src_hi, dstk, sstk, ctx, is64, true, op); 56939c13c20SShubham Bansal else 57039c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 57139c13c20SShubham Bansal } 57239c13c20SShubham Bansal 57339c13c20SShubham Bansal /* dst = imm (4 bytes)*/ 57439c13c20SShubham Bansal static inline void emit_a32_mov_r(const u8 dst, const u8 src, 57539c13c20SShubham Bansal bool dstk, bool sstk, 57639c13c20SShubham Bansal struct jit_ctx *ctx) { 57739c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 57839c13c20SShubham Bansal u8 rt = sstk ? tmp[0] : src; 57939c13c20SShubham Bansal 58039c13c20SShubham Bansal if (sstk) 58139c13c20SShubham Bansal emit(ARM_LDR_I(tmp[0], ARM_SP, STACK_VAR(src)), ctx); 58239c13c20SShubham Bansal if (dstk) 58339c13c20SShubham Bansal emit(ARM_STR_I(rt, ARM_SP, STACK_VAR(dst)), ctx); 58439c13c20SShubham Bansal else 58539c13c20SShubham Bansal emit(ARM_MOV_R(dst, rt), ctx); 58639c13c20SShubham Bansal } 58739c13c20SShubham Bansal 58839c13c20SShubham Bansal /* dst = src */ 58939c13c20SShubham Bansal static inline void emit_a32_mov_r64(const bool is64, const u8 dst[], 59039c13c20SShubham Bansal const u8 src[], bool dstk, 59139c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx) { 59239c13c20SShubham Bansal emit_a32_mov_r(dst_lo, src_lo, dstk, sstk, ctx); 59339c13c20SShubham Bansal if (is64) { 59439c13c20SShubham Bansal /* complete 8 byte move */ 59539c13c20SShubham Bansal emit_a32_mov_r(dst_hi, src_hi, dstk, sstk, ctx); 59639c13c20SShubham Bansal } else { 59739c13c20SShubham Bansal /* Zero out high 4 bytes */ 59839c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 59939c13c20SShubham Bansal } 60039c13c20SShubham Bansal } 60139c13c20SShubham Bansal 60239c13c20SShubham Bansal /* Shift operations */ 60339c13c20SShubham Bansal static inline void emit_a32_alu_i(const u8 dst, const u32 val, bool dstk, 60439c13c20SShubham Bansal struct jit_ctx *ctx, const u8 op) { 60539c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 60639c13c20SShubham Bansal u8 rd = dstk ? tmp[0] : dst; 60739c13c20SShubham Bansal 60839c13c20SShubham Bansal if (dstk) 60939c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst)), ctx); 61039c13c20SShubham Bansal 61139c13c20SShubham Bansal /* Do shift operation */ 61239c13c20SShubham Bansal switch (op) { 61339c13c20SShubham Bansal case BPF_LSH: 61439c13c20SShubham Bansal emit(ARM_LSL_I(rd, rd, val), ctx); 61539c13c20SShubham Bansal break; 61639c13c20SShubham Bansal case BPF_RSH: 61739c13c20SShubham Bansal emit(ARM_LSR_I(rd, rd, val), ctx); 61839c13c20SShubham Bansal break; 61939c13c20SShubham Bansal case BPF_NEG: 62039c13c20SShubham Bansal emit(ARM_RSB_I(rd, rd, val), ctx); 62139c13c20SShubham Bansal break; 62239c13c20SShubham Bansal } 62339c13c20SShubham Bansal 62439c13c20SShubham Bansal if (dstk) 62539c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst)), ctx); 62639c13c20SShubham Bansal } 62739c13c20SShubham Bansal 62839c13c20SShubham Bansal /* dst = ~dst (64 bit) */ 62939c13c20SShubham Bansal static inline void emit_a32_neg64(const u8 dst[], bool dstk, 63039c13c20SShubham Bansal struct jit_ctx *ctx){ 63139c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 63239c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst[1]; 63339c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst[0]; 63439c13c20SShubham Bansal 63539c13c20SShubham Bansal /* Setup Operand */ 63639c13c20SShubham Bansal if (dstk) { 63739c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 63839c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 63939c13c20SShubham Bansal } 64039c13c20SShubham Bansal 64139c13c20SShubham Bansal /* Do Negate Operation */ 64239c13c20SShubham Bansal emit(ARM_RSBS_I(rd, rd, 0), ctx); 64339c13c20SShubham Bansal emit(ARM_RSC_I(rm, rm, 0), ctx); 64439c13c20SShubham Bansal 64539c13c20SShubham Bansal if (dstk) { 64639c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 64739c13c20SShubham Bansal emit(ARM_STR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 64839c13c20SShubham Bansal } 64939c13c20SShubham Bansal } 65039c13c20SShubham Bansal 65139c13c20SShubham Bansal /* dst = dst << src */ 65239c13c20SShubham Bansal static inline void emit_a32_lsh_r64(const u8 dst[], const u8 src[], bool dstk, 65339c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx) { 65439c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 65539c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 65639c13c20SShubham Bansal 65739c13c20SShubham Bansal /* Setup Operands */ 65839c13c20SShubham Bansal u8 rt = sstk ? tmp2[1] : src_lo; 65939c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 66039c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 66139c13c20SShubham Bansal 66239c13c20SShubham Bansal if (sstk) 66339c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(src_lo)), ctx); 66439c13c20SShubham Bansal if (dstk) { 66539c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 66639c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 66739c13c20SShubham Bansal } 66839c13c20SShubham Bansal 66939c13c20SShubham Bansal /* Do LSH operation */ 67039c13c20SShubham Bansal emit(ARM_SUB_I(ARM_IP, rt, 32), ctx); 67139c13c20SShubham Bansal emit(ARM_RSB_I(tmp2[0], rt, 32), ctx); 67239c13c20SShubham Bansal /* As we are using ARM_LR */ 67339c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 67439c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_LR, rm, SRTYPE_ASL, rt), ctx); 67539c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_LR, ARM_LR, rd, SRTYPE_ASL, ARM_IP), ctx); 67639c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_IP, ARM_LR, rd, SRTYPE_LSR, tmp2[0]), ctx); 67739c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_LR, rd, SRTYPE_ASL, rt), ctx); 67839c13c20SShubham Bansal 67939c13c20SShubham Bansal if (dstk) { 68039c13c20SShubham Bansal emit(ARM_STR_I(ARM_LR, ARM_SP, STACK_VAR(dst_lo)), ctx); 68139c13c20SShubham Bansal emit(ARM_STR_I(ARM_IP, ARM_SP, STACK_VAR(dst_hi)), ctx); 68239c13c20SShubham Bansal } else { 68339c13c20SShubham Bansal emit(ARM_MOV_R(rd, ARM_LR), ctx); 68439c13c20SShubham Bansal emit(ARM_MOV_R(rm, ARM_IP), ctx); 68539c13c20SShubham Bansal } 68639c13c20SShubham Bansal } 68739c13c20SShubham Bansal 68839c13c20SShubham Bansal /* dst = dst >> src (signed)*/ 68939c13c20SShubham Bansal static inline void emit_a32_arsh_r64(const u8 dst[], const u8 src[], bool dstk, 69039c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx) { 69139c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 69239c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 69339c13c20SShubham Bansal /* Setup Operands */ 69439c13c20SShubham Bansal u8 rt = sstk ? tmp2[1] : src_lo; 69539c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 69639c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 69739c13c20SShubham Bansal 69839c13c20SShubham Bansal if (sstk) 69939c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(src_lo)), ctx); 70039c13c20SShubham Bansal if (dstk) { 70139c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 70239c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 70339c13c20SShubham Bansal } 70439c13c20SShubham Bansal 70539c13c20SShubham Bansal /* Do the ARSH operation */ 70639c13c20SShubham Bansal emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); 70739c13c20SShubham Bansal emit(ARM_SUBS_I(tmp2[0], rt, 32), ctx); 70839c13c20SShubham Bansal /* As we are using ARM_LR */ 70939c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 71039c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_LR, rd, SRTYPE_LSR, rt), ctx); 71139c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_LR, ARM_LR, rm, SRTYPE_ASL, ARM_IP), ctx); 71239c13c20SShubham Bansal _emit(ARM_COND_MI, ARM_B(0), ctx); 71339c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_LR, ARM_LR, rm, SRTYPE_ASR, tmp2[0]), ctx); 71439c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_IP, rm, SRTYPE_ASR, rt), ctx); 71539c13c20SShubham Bansal if (dstk) { 71639c13c20SShubham Bansal emit(ARM_STR_I(ARM_LR, ARM_SP, STACK_VAR(dst_lo)), ctx); 71739c13c20SShubham Bansal emit(ARM_STR_I(ARM_IP, ARM_SP, STACK_VAR(dst_hi)), ctx); 71839c13c20SShubham Bansal } else { 71939c13c20SShubham Bansal emit(ARM_MOV_R(rd, ARM_LR), ctx); 72039c13c20SShubham Bansal emit(ARM_MOV_R(rm, ARM_IP), ctx); 72139c13c20SShubham Bansal } 72239c13c20SShubham Bansal } 72339c13c20SShubham Bansal 72439c13c20SShubham Bansal /* dst = dst >> src */ 72539c13c20SShubham Bansal static inline void emit_a32_lsr_r64(const u8 dst[], const u8 src[], bool dstk, 72639c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx) { 72739c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 72839c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 72939c13c20SShubham Bansal /* Setup Operands */ 73039c13c20SShubham Bansal u8 rt = sstk ? tmp2[1] : src_lo; 73139c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 73239c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 73339c13c20SShubham Bansal 73439c13c20SShubham Bansal if (sstk) 73539c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(src_lo)), ctx); 73639c13c20SShubham Bansal if (dstk) { 73739c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 73839c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 73939c13c20SShubham Bansal } 74039c13c20SShubham Bansal 74139c13c20SShubham Bansal /* Do LSH operation */ 74239c13c20SShubham Bansal emit(ARM_RSB_I(ARM_IP, rt, 32), ctx); 74339c13c20SShubham Bansal emit(ARM_SUBS_I(tmp2[0], rt, 32), ctx); 74439c13c20SShubham Bansal /* As we are using ARM_LR */ 74539c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 74639c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_LR, rd, SRTYPE_LSR, rt), ctx); 74739c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_LR, ARM_LR, rm, SRTYPE_ASL, ARM_IP), ctx); 74839c13c20SShubham Bansal emit(ARM_ORR_SR(ARM_LR, ARM_LR, rm, SRTYPE_LSR, tmp2[0]), ctx); 74939c13c20SShubham Bansal emit(ARM_MOV_SR(ARM_IP, rm, SRTYPE_LSR, rt), ctx); 75039c13c20SShubham Bansal if (dstk) { 75139c13c20SShubham Bansal emit(ARM_STR_I(ARM_LR, ARM_SP, STACK_VAR(dst_lo)), ctx); 75239c13c20SShubham Bansal emit(ARM_STR_I(ARM_IP, ARM_SP, STACK_VAR(dst_hi)), ctx); 75339c13c20SShubham Bansal } else { 75439c13c20SShubham Bansal emit(ARM_MOV_R(rd, ARM_LR), ctx); 75539c13c20SShubham Bansal emit(ARM_MOV_R(rm, ARM_IP), ctx); 75639c13c20SShubham Bansal } 75739c13c20SShubham Bansal } 75839c13c20SShubham Bansal 75939c13c20SShubham Bansal /* dst = dst << val */ 76039c13c20SShubham Bansal static inline void emit_a32_lsh_i64(const u8 dst[], bool dstk, 76139c13c20SShubham Bansal const u32 val, struct jit_ctx *ctx){ 76239c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 76339c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 76439c13c20SShubham Bansal /* Setup operands */ 76539c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 76639c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 76739c13c20SShubham Bansal 76839c13c20SShubham Bansal if (dstk) { 76939c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 77039c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 77139c13c20SShubham Bansal } 77239c13c20SShubham Bansal 77339c13c20SShubham Bansal /* Do LSH operation */ 77439c13c20SShubham Bansal if (val < 32) { 77539c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[0], rm, SRTYPE_ASL, val), ctx); 77639c13c20SShubham Bansal emit(ARM_ORR_SI(rm, tmp2[0], rd, SRTYPE_LSR, 32 - val), ctx); 77739c13c20SShubham Bansal emit(ARM_MOV_SI(rd, rd, SRTYPE_ASL, val), ctx); 77839c13c20SShubham Bansal } else { 77939c13c20SShubham Bansal if (val == 32) 78039c13c20SShubham Bansal emit(ARM_MOV_R(rm, rd), ctx); 78139c13c20SShubham Bansal else 78239c13c20SShubham Bansal emit(ARM_MOV_SI(rm, rd, SRTYPE_ASL, val - 32), ctx); 78339c13c20SShubham Bansal emit(ARM_EOR_R(rd, rd, rd), ctx); 78439c13c20SShubham Bansal } 78539c13c20SShubham Bansal 78639c13c20SShubham Bansal if (dstk) { 78739c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 78839c13c20SShubham Bansal emit(ARM_STR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 78939c13c20SShubham Bansal } 79039c13c20SShubham Bansal } 79139c13c20SShubham Bansal 79239c13c20SShubham Bansal /* dst = dst >> val */ 79339c13c20SShubham Bansal static inline void emit_a32_lsr_i64(const u8 dst[], bool dstk, 79439c13c20SShubham Bansal const u32 val, struct jit_ctx *ctx) { 79539c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 79639c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 79739c13c20SShubham Bansal /* Setup operands */ 79839c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 79939c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 80039c13c20SShubham Bansal 80139c13c20SShubham Bansal if (dstk) { 80239c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 80339c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 80439c13c20SShubham Bansal } 80539c13c20SShubham Bansal 80639c13c20SShubham Bansal /* Do LSR operation */ 80739c13c20SShubham Bansal if (val < 32) { 80839c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[1], rd, SRTYPE_LSR, val), ctx); 80939c13c20SShubham Bansal emit(ARM_ORR_SI(rd, tmp2[1], rm, SRTYPE_ASL, 32 - val), ctx); 81039c13c20SShubham Bansal emit(ARM_MOV_SI(rm, rm, SRTYPE_LSR, val), ctx); 81139c13c20SShubham Bansal } else if (val == 32) { 81239c13c20SShubham Bansal emit(ARM_MOV_R(rd, rm), ctx); 81339c13c20SShubham Bansal emit(ARM_MOV_I(rm, 0), ctx); 81439c13c20SShubham Bansal } else { 81539c13c20SShubham Bansal emit(ARM_MOV_SI(rd, rm, SRTYPE_LSR, val - 32), ctx); 81639c13c20SShubham Bansal emit(ARM_MOV_I(rm, 0), ctx); 81739c13c20SShubham Bansal } 81839c13c20SShubham Bansal 81939c13c20SShubham Bansal if (dstk) { 82039c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 82139c13c20SShubham Bansal emit(ARM_STR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 82239c13c20SShubham Bansal } 82339c13c20SShubham Bansal } 82439c13c20SShubham Bansal 82539c13c20SShubham Bansal /* dst = dst >> val (signed) */ 82639c13c20SShubham Bansal static inline void emit_a32_arsh_i64(const u8 dst[], bool dstk, 82739c13c20SShubham Bansal const u32 val, struct jit_ctx *ctx){ 82839c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 82939c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 83039c13c20SShubham Bansal /* Setup operands */ 83139c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 83239c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 83339c13c20SShubham Bansal 83439c13c20SShubham Bansal if (dstk) { 83539c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 83639c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 83739c13c20SShubham Bansal } 83839c13c20SShubham Bansal 83939c13c20SShubham Bansal /* Do ARSH operation */ 84039c13c20SShubham Bansal if (val < 32) { 84139c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[1], rd, SRTYPE_LSR, val), ctx); 84239c13c20SShubham Bansal emit(ARM_ORR_SI(rd, tmp2[1], rm, SRTYPE_ASL, 32 - val), ctx); 84339c13c20SShubham Bansal emit(ARM_MOV_SI(rm, rm, SRTYPE_ASR, val), ctx); 84439c13c20SShubham Bansal } else if (val == 32) { 84539c13c20SShubham Bansal emit(ARM_MOV_R(rd, rm), ctx); 84639c13c20SShubham Bansal emit(ARM_MOV_SI(rm, rm, SRTYPE_ASR, 31), ctx); 84739c13c20SShubham Bansal } else { 84839c13c20SShubham Bansal emit(ARM_MOV_SI(rd, rm, SRTYPE_ASR, val - 32), ctx); 84939c13c20SShubham Bansal emit(ARM_MOV_SI(rm, rm, SRTYPE_ASR, 31), ctx); 85039c13c20SShubham Bansal } 85139c13c20SShubham Bansal 85239c13c20SShubham Bansal if (dstk) { 85339c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 85439c13c20SShubham Bansal emit(ARM_STR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 85539c13c20SShubham Bansal } 85639c13c20SShubham Bansal } 85739c13c20SShubham Bansal 85839c13c20SShubham Bansal static inline void emit_a32_mul_r64(const u8 dst[], const u8 src[], bool dstk, 85939c13c20SShubham Bansal bool sstk, struct jit_ctx *ctx) { 86039c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 86139c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 86239c13c20SShubham Bansal /* Setup operands for multiplication */ 86339c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst_lo; 86439c13c20SShubham Bansal u8 rm = dstk ? tmp[0] : dst_hi; 86539c13c20SShubham Bansal u8 rt = sstk ? tmp2[1] : src_lo; 86639c13c20SShubham Bansal u8 rn = sstk ? tmp2[0] : src_hi; 86739c13c20SShubham Bansal 86839c13c20SShubham Bansal if (dstk) { 86939c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 87039c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 87139c13c20SShubham Bansal } 87239c13c20SShubham Bansal if (sstk) { 87339c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(src_lo)), ctx); 87439c13c20SShubham Bansal emit(ARM_LDR_I(rn, ARM_SP, STACK_VAR(src_hi)), ctx); 87539c13c20SShubham Bansal } 87639c13c20SShubham Bansal 87739c13c20SShubham Bansal /* Do Multiplication */ 87839c13c20SShubham Bansal emit(ARM_MUL(ARM_IP, rd, rn), ctx); 87939c13c20SShubham Bansal emit(ARM_MUL(ARM_LR, rm, rt), ctx); 88039c13c20SShubham Bansal /* As we are using ARM_LR */ 88139c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 88239c13c20SShubham Bansal emit(ARM_ADD_R(ARM_LR, ARM_IP, ARM_LR), ctx); 88339c13c20SShubham Bansal 88439c13c20SShubham Bansal emit(ARM_UMULL(ARM_IP, rm, rd, rt), ctx); 88539c13c20SShubham Bansal emit(ARM_ADD_R(rm, ARM_LR, rm), ctx); 88639c13c20SShubham Bansal if (dstk) { 88739c13c20SShubham Bansal emit(ARM_STR_I(ARM_IP, ARM_SP, STACK_VAR(dst_lo)), ctx); 88839c13c20SShubham Bansal emit(ARM_STR_I(rm, ARM_SP, STACK_VAR(dst_hi)), ctx); 88939c13c20SShubham Bansal } else { 89039c13c20SShubham Bansal emit(ARM_MOV_R(rd, ARM_IP), ctx); 89139c13c20SShubham Bansal } 89239c13c20SShubham Bansal } 89339c13c20SShubham Bansal 89439c13c20SShubham Bansal /* *(size *)(dst + off) = src */ 89539c13c20SShubham Bansal static inline void emit_str_r(const u8 dst, const u8 src, bool dstk, 89639c13c20SShubham Bansal const s32 off, struct jit_ctx *ctx, const u8 sz){ 89739c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 89839c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst; 89939c13c20SShubham Bansal 90039c13c20SShubham Bansal if (dstk) 90139c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst)), ctx); 90239c13c20SShubham Bansal if (off) { 90339c13c20SShubham Bansal emit_a32_mov_i(tmp[0], off, false, ctx); 90439c13c20SShubham Bansal emit(ARM_ADD_R(tmp[0], rd, tmp[0]), ctx); 90539c13c20SShubham Bansal rd = tmp[0]; 90639c13c20SShubham Bansal } 90739c13c20SShubham Bansal switch (sz) { 90839c13c20SShubham Bansal case BPF_W: 90939c13c20SShubham Bansal /* Store a Word */ 91039c13c20SShubham Bansal emit(ARM_STR_I(src, rd, 0), ctx); 91139c13c20SShubham Bansal break; 91239c13c20SShubham Bansal case BPF_H: 91339c13c20SShubham Bansal /* Store a HalfWord */ 91439c13c20SShubham Bansal emit(ARM_STRH_I(src, rd, 0), ctx); 91539c13c20SShubham Bansal break; 91639c13c20SShubham Bansal case BPF_B: 91739c13c20SShubham Bansal /* Store a Byte */ 91839c13c20SShubham Bansal emit(ARM_STRB_I(src, rd, 0), ctx); 91939c13c20SShubham Bansal break; 92039c13c20SShubham Bansal } 92139c13c20SShubham Bansal } 92239c13c20SShubham Bansal 92339c13c20SShubham Bansal /* dst = *(size*)(src + off) */ 92439c13c20SShubham Bansal static inline void emit_ldx_r(const u8 dst, const u8 src, bool dstk, 92539c13c20SShubham Bansal const s32 off, struct jit_ctx *ctx, const u8 sz){ 92639c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 92739c13c20SShubham Bansal u8 rd = dstk ? tmp[1] : dst; 92839c13c20SShubham Bansal u8 rm = src; 92939c13c20SShubham Bansal 93039c13c20SShubham Bansal if (off) { 93139c13c20SShubham Bansal emit_a32_mov_i(tmp[0], off, false, ctx); 93239c13c20SShubham Bansal emit(ARM_ADD_R(tmp[0], tmp[0], src), ctx); 93339c13c20SShubham Bansal rm = tmp[0]; 93439c13c20SShubham Bansal } 93539c13c20SShubham Bansal switch (sz) { 93639c13c20SShubham Bansal case BPF_W: 93739c13c20SShubham Bansal /* Load a Word */ 93839c13c20SShubham Bansal emit(ARM_LDR_I(rd, rm, 0), ctx); 93939c13c20SShubham Bansal break; 94039c13c20SShubham Bansal case BPF_H: 94139c13c20SShubham Bansal /* Load a HalfWord */ 94239c13c20SShubham Bansal emit(ARM_LDRH_I(rd, rm, 0), ctx); 94339c13c20SShubham Bansal break; 94439c13c20SShubham Bansal case BPF_B: 94539c13c20SShubham Bansal /* Load a Byte */ 94639c13c20SShubham Bansal emit(ARM_LDRB_I(rd, rm, 0), ctx); 94739c13c20SShubham Bansal break; 94839c13c20SShubham Bansal } 94939c13c20SShubham Bansal if (dstk) 95039c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst)), ctx); 95139c13c20SShubham Bansal } 95239c13c20SShubham Bansal 95339c13c20SShubham Bansal /* Arithmatic Operation */ 95439c13c20SShubham Bansal static inline void emit_ar_r(const u8 rd, const u8 rt, const u8 rm, 95539c13c20SShubham Bansal const u8 rn, struct jit_ctx *ctx, u8 op) { 95639c13c20SShubham Bansal switch (op) { 95739c13c20SShubham Bansal case BPF_JSET: 95839c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 95939c13c20SShubham Bansal emit(ARM_AND_R(ARM_IP, rt, rn), ctx); 96039c13c20SShubham Bansal emit(ARM_AND_R(ARM_LR, rd, rm), ctx); 96139c13c20SShubham Bansal emit(ARM_ORRS_R(ARM_IP, ARM_LR, ARM_IP), ctx); 96239c13c20SShubham Bansal break; 96339c13c20SShubham Bansal case BPF_JEQ: 96439c13c20SShubham Bansal case BPF_JNE: 96539c13c20SShubham Bansal case BPF_JGT: 96639c13c20SShubham Bansal case BPF_JGE: 96739c13c20SShubham Bansal case BPF_JLE: 96839c13c20SShubham Bansal case BPF_JLT: 96939c13c20SShubham Bansal emit(ARM_CMP_R(rd, rm), ctx); 97039c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_CMP_R(rt, rn), ctx); 97139c13c20SShubham Bansal break; 97239c13c20SShubham Bansal case BPF_JSLE: 97339c13c20SShubham Bansal case BPF_JSGT: 97439c13c20SShubham Bansal emit(ARM_CMP_R(rn, rt), ctx); 97539c13c20SShubham Bansal emit(ARM_SBCS_R(ARM_IP, rm, rd), ctx); 97639c13c20SShubham Bansal break; 97739c13c20SShubham Bansal case BPF_JSLT: 97839c13c20SShubham Bansal case BPF_JSGE: 97939c13c20SShubham Bansal emit(ARM_CMP_R(rt, rn), ctx); 98039c13c20SShubham Bansal emit(ARM_SBCS_R(ARM_IP, rd, rm), ctx); 98139c13c20SShubham Bansal break; 98239c13c20SShubham Bansal } 98339c13c20SShubham Bansal } 98439c13c20SShubham Bansal 98539c13c20SShubham Bansal static int out_offset = -1; /* initialized on the first pass of build_body() */ 98639c13c20SShubham Bansal static int emit_bpf_tail_call(struct jit_ctx *ctx) 98739c13c20SShubham Bansal { 98839c13c20SShubham Bansal 98939c13c20SShubham Bansal /* bpf_tail_call(void *prog_ctx, struct bpf_array *array, u64 index) */ 99039c13c20SShubham Bansal const u8 *r2 = bpf2a32[BPF_REG_2]; 99139c13c20SShubham Bansal const u8 *r3 = bpf2a32[BPF_REG_3]; 99239c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 99339c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 99439c13c20SShubham Bansal const u8 *tcc = bpf2a32[TCALL_CNT]; 99539c13c20SShubham Bansal const int idx0 = ctx->idx; 99639c13c20SShubham Bansal #define cur_offset (ctx->idx - idx0) 997f4483f2cSRussell King #define jmp_offset (out_offset - (cur_offset) - 2) 99839c13c20SShubham Bansal u32 off, lo, hi; 99939c13c20SShubham Bansal 100039c13c20SShubham Bansal /* if (index >= array->map.max_entries) 100139c13c20SShubham Bansal * goto out; 100239c13c20SShubham Bansal */ 100339c13c20SShubham Bansal off = offsetof(struct bpf_array, map.max_entries); 100439c13c20SShubham Bansal /* array->map.max_entries */ 100539c13c20SShubham Bansal emit_a32_mov_i(tmp[1], off, false, ctx); 100639c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[1], ARM_SP, STACK_VAR(r2[1])), ctx); 100739c13c20SShubham Bansal emit(ARM_LDR_R(tmp[1], tmp2[1], tmp[1]), ctx); 100839c13c20SShubham Bansal /* index (64 bit) */ 100939c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[1], ARM_SP, STACK_VAR(r3[1])), ctx); 101039c13c20SShubham Bansal /* index >= array->map.max_entries */ 101139c13c20SShubham Bansal emit(ARM_CMP_R(tmp2[1], tmp[1]), ctx); 101239c13c20SShubham Bansal _emit(ARM_COND_CS, ARM_B(jmp_offset), ctx); 101339c13c20SShubham Bansal 101439c13c20SShubham Bansal /* if (tail_call_cnt > MAX_TAIL_CALL_CNT) 101539c13c20SShubham Bansal * goto out; 101639c13c20SShubham Bansal * tail_call_cnt++; 101739c13c20SShubham Bansal */ 101839c13c20SShubham Bansal lo = (u32)MAX_TAIL_CALL_CNT; 101939c13c20SShubham Bansal hi = (u32)((u64)MAX_TAIL_CALL_CNT >> 32); 102039c13c20SShubham Bansal emit(ARM_LDR_I(tmp[1], ARM_SP, STACK_VAR(tcc[1])), ctx); 102139c13c20SShubham Bansal emit(ARM_LDR_I(tmp[0], ARM_SP, STACK_VAR(tcc[0])), ctx); 102239c13c20SShubham Bansal emit(ARM_CMP_I(tmp[0], hi), ctx); 102339c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_CMP_I(tmp[1], lo), ctx); 102439c13c20SShubham Bansal _emit(ARM_COND_HI, ARM_B(jmp_offset), ctx); 102539c13c20SShubham Bansal emit(ARM_ADDS_I(tmp[1], tmp[1], 1), ctx); 102639c13c20SShubham Bansal emit(ARM_ADC_I(tmp[0], tmp[0], 0), ctx); 102739c13c20SShubham Bansal emit(ARM_STR_I(tmp[1], ARM_SP, STACK_VAR(tcc[1])), ctx); 102839c13c20SShubham Bansal emit(ARM_STR_I(tmp[0], ARM_SP, STACK_VAR(tcc[0])), ctx); 102939c13c20SShubham Bansal 103039c13c20SShubham Bansal /* prog = array->ptrs[index] 103139c13c20SShubham Bansal * if (prog == NULL) 103239c13c20SShubham Bansal * goto out; 103339c13c20SShubham Bansal */ 103439c13c20SShubham Bansal off = offsetof(struct bpf_array, ptrs); 103539c13c20SShubham Bansal emit_a32_mov_i(tmp[1], off, false, ctx); 103639c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[1], ARM_SP, STACK_VAR(r2[1])), ctx); 103739c13c20SShubham Bansal emit(ARM_ADD_R(tmp[1], tmp2[1], tmp[1]), ctx); 103839c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[1], ARM_SP, STACK_VAR(r3[1])), ctx); 103939c13c20SShubham Bansal emit(ARM_MOV_SI(tmp[0], tmp2[1], SRTYPE_ASL, 2), ctx); 104039c13c20SShubham Bansal emit(ARM_LDR_R(tmp[1], tmp[1], tmp[0]), ctx); 104139c13c20SShubham Bansal emit(ARM_CMP_I(tmp[1], 0), ctx); 104239c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_B(jmp_offset), ctx); 104339c13c20SShubham Bansal 104439c13c20SShubham Bansal /* goto *(prog->bpf_func + prologue_size); */ 104539c13c20SShubham Bansal off = offsetof(struct bpf_prog, bpf_func); 104639c13c20SShubham Bansal emit_a32_mov_i(tmp2[1], off, false, ctx); 104739c13c20SShubham Bansal emit(ARM_LDR_R(tmp[1], tmp[1], tmp2[1]), ctx); 104839c13c20SShubham Bansal emit(ARM_ADD_I(tmp[1], tmp[1], ctx->prologue_bytes), ctx); 1049e9062481SRussell King emit_bx_r(tmp[1], ctx); 105039c13c20SShubham Bansal 105139c13c20SShubham Bansal /* out: */ 105239c13c20SShubham Bansal if (out_offset == -1) 105339c13c20SShubham Bansal out_offset = cur_offset; 105439c13c20SShubham Bansal if (cur_offset != out_offset) { 105539c13c20SShubham Bansal pr_err_once("tail_call out_offset = %d, expected %d!\n", 105639c13c20SShubham Bansal cur_offset, out_offset); 105739c13c20SShubham Bansal return -1; 105839c13c20SShubham Bansal } 105939c13c20SShubham Bansal return 0; 106039c13c20SShubham Bansal #undef cur_offset 106139c13c20SShubham Bansal #undef jmp_offset 106239c13c20SShubham Bansal } 106339c13c20SShubham Bansal 106439c13c20SShubham Bansal /* 0xabcd => 0xcdab */ 106539c13c20SShubham Bansal static inline void emit_rev16(const u8 rd, const u8 rn, struct jit_ctx *ctx) 106639c13c20SShubham Bansal { 106739c13c20SShubham Bansal #if __LINUX_ARM_ARCH__ < 6 106839c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 106939c13c20SShubham Bansal 107039c13c20SShubham Bansal emit(ARM_AND_I(tmp2[1], rn, 0xff), ctx); 107139c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[0], rn, SRTYPE_LSR, 8), ctx); 107239c13c20SShubham Bansal emit(ARM_AND_I(tmp2[0], tmp2[0], 0xff), ctx); 107339c13c20SShubham Bansal emit(ARM_ORR_SI(rd, tmp2[0], tmp2[1], SRTYPE_LSL, 8), ctx); 107439c13c20SShubham Bansal #else /* ARMv6+ */ 107539c13c20SShubham Bansal emit(ARM_REV16(rd, rn), ctx); 107639c13c20SShubham Bansal #endif 107739c13c20SShubham Bansal } 107839c13c20SShubham Bansal 107939c13c20SShubham Bansal /* 0xabcdefgh => 0xghefcdab */ 108039c13c20SShubham Bansal static inline void emit_rev32(const u8 rd, const u8 rn, struct jit_ctx *ctx) 108139c13c20SShubham Bansal { 108239c13c20SShubham Bansal #if __LINUX_ARM_ARCH__ < 6 108339c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 108439c13c20SShubham Bansal 108539c13c20SShubham Bansal emit(ARM_AND_I(tmp2[1], rn, 0xff), ctx); 108639c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[0], rn, SRTYPE_LSR, 24), ctx); 108739c13c20SShubham Bansal emit(ARM_ORR_SI(ARM_IP, tmp2[0], tmp2[1], SRTYPE_LSL, 24), ctx); 108839c13c20SShubham Bansal 108939c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[1], rn, SRTYPE_LSR, 8), ctx); 109039c13c20SShubham Bansal emit(ARM_AND_I(tmp2[1], tmp2[1], 0xff), ctx); 109139c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[0], rn, SRTYPE_LSR, 16), ctx); 109239c13c20SShubham Bansal emit(ARM_AND_I(tmp2[0], tmp2[0], 0xff), ctx); 109339c13c20SShubham Bansal emit(ARM_MOV_SI(tmp2[0], tmp2[0], SRTYPE_LSL, 8), ctx); 109439c13c20SShubham Bansal emit(ARM_ORR_SI(tmp2[0], tmp2[0], tmp2[1], SRTYPE_LSL, 16), ctx); 109539c13c20SShubham Bansal emit(ARM_ORR_R(rd, ARM_IP, tmp2[0]), ctx); 109639c13c20SShubham Bansal 109739c13c20SShubham Bansal #else /* ARMv6+ */ 109839c13c20SShubham Bansal emit(ARM_REV(rd, rn), ctx); 109939c13c20SShubham Bansal #endif 110039c13c20SShubham Bansal } 110139c13c20SShubham Bansal 110239c13c20SShubham Bansal // push the scratch stack register on top of the stack 110339c13c20SShubham Bansal static inline void emit_push_r64(const u8 src[], const u8 shift, 110439c13c20SShubham Bansal struct jit_ctx *ctx) 110539c13c20SShubham Bansal { 110639c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 110739c13c20SShubham Bansal u16 reg_set = 0; 110839c13c20SShubham Bansal 110939c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[1], ARM_SP, STACK_VAR(src[1]+shift)), ctx); 111039c13c20SShubham Bansal emit(ARM_LDR_I(tmp2[0], ARM_SP, STACK_VAR(src[0]+shift)), ctx); 111139c13c20SShubham Bansal 111239c13c20SShubham Bansal reg_set = (1 << tmp2[1]) | (1 << tmp2[0]); 111339c13c20SShubham Bansal emit(ARM_PUSH(reg_set), ctx); 111439c13c20SShubham Bansal } 111539c13c20SShubham Bansal 111639c13c20SShubham Bansal static void build_prologue(struct jit_ctx *ctx) 111739c13c20SShubham Bansal { 111839c13c20SShubham Bansal const u8 r0 = bpf2a32[BPF_REG_0][1]; 111939c13c20SShubham Bansal const u8 r2 = bpf2a32[BPF_REG_1][1]; 112039c13c20SShubham Bansal const u8 r3 = bpf2a32[BPF_REG_1][0]; 112139c13c20SShubham Bansal const u8 r4 = bpf2a32[BPF_REG_6][1]; 112239c13c20SShubham Bansal const u8 r5 = bpf2a32[BPF_REG_6][0]; 112339c13c20SShubham Bansal const u8 r6 = bpf2a32[TMP_REG_1][1]; 112439c13c20SShubham Bansal const u8 r7 = bpf2a32[TMP_REG_1][0]; 112539c13c20SShubham Bansal const u8 r8 = bpf2a32[TMP_REG_2][1]; 112639c13c20SShubham Bansal const u8 r10 = bpf2a32[TMP_REG_2][0]; 112739c13c20SShubham Bansal const u8 fplo = bpf2a32[BPF_REG_FP][1]; 112839c13c20SShubham Bansal const u8 fphi = bpf2a32[BPF_REG_FP][0]; 112939c13c20SShubham Bansal const u8 sp = ARM_SP; 113039c13c20SShubham Bansal const u8 *tcc = bpf2a32[TCALL_CNT]; 113139c13c20SShubham Bansal 113239c13c20SShubham Bansal u16 reg_set = 0; 113339c13c20SShubham Bansal 113439c13c20SShubham Bansal /* Save callee saved registers. */ 113539c13c20SShubham Bansal reg_set |= (1<<r4) | (1<<r5) | (1<<r6) | (1<<r7) | (1<<r8) | (1<<r10); 113639c13c20SShubham Bansal #ifdef CONFIG_FRAME_POINTER 113739c13c20SShubham Bansal reg_set |= (1<<ARM_FP) | (1<<ARM_IP) | (1<<ARM_LR) | (1<<ARM_PC); 113839c13c20SShubham Bansal emit(ARM_MOV_R(ARM_IP, sp), ctx); 113939c13c20SShubham Bansal emit(ARM_PUSH(reg_set), ctx); 114039c13c20SShubham Bansal emit(ARM_SUB_I(ARM_FP, ARM_IP, 4), ctx); 114139c13c20SShubham Bansal #else 114239c13c20SShubham Bansal /* Check if call instruction exists in BPF body */ 114339c13c20SShubham Bansal if (ctx->seen & SEEN_CALL) 114439c13c20SShubham Bansal reg_set |= (1<<ARM_LR); 114539c13c20SShubham Bansal emit(ARM_PUSH(reg_set), ctx); 114639c13c20SShubham Bansal #endif 114739c13c20SShubham Bansal /* Save frame pointer for later */ 114839c13c20SShubham Bansal emit(ARM_SUB_I(ARM_IP, sp, SCRATCH_SIZE), ctx); 114939c13c20SShubham Bansal 115039c13c20SShubham Bansal ctx->stack_size = imm8m(STACK_SIZE); 115139c13c20SShubham Bansal 115239c13c20SShubham Bansal /* Set up function call stack */ 115339c13c20SShubham Bansal emit(ARM_SUB_I(ARM_SP, ARM_SP, ctx->stack_size), ctx); 115439c13c20SShubham Bansal 115539c13c20SShubham Bansal /* Set up BPF prog stack base register */ 115639c13c20SShubham Bansal emit_a32_mov_r(fplo, ARM_IP, true, false, ctx); 115739c13c20SShubham Bansal emit_a32_mov_i(fphi, 0, true, ctx); 115839c13c20SShubham Bansal 115939c13c20SShubham Bansal /* mov r4, 0 */ 116039c13c20SShubham Bansal emit(ARM_MOV_I(r4, 0), ctx); 116139c13c20SShubham Bansal 116239c13c20SShubham Bansal /* Move BPF_CTX to BPF_R1 */ 116339c13c20SShubham Bansal emit(ARM_MOV_R(r3, r4), ctx); 116439c13c20SShubham Bansal emit(ARM_MOV_R(r2, r0), ctx); 116539c13c20SShubham Bansal /* Initialize Tail Count */ 116639c13c20SShubham Bansal emit(ARM_STR_I(r4, ARM_SP, STACK_VAR(tcc[0])), ctx); 116739c13c20SShubham Bansal emit(ARM_STR_I(r4, ARM_SP, STACK_VAR(tcc[1])), ctx); 116839c13c20SShubham Bansal /* end of prologue */ 116939c13c20SShubham Bansal } 117039c13c20SShubham Bansal 117139c13c20SShubham Bansal static void build_epilogue(struct jit_ctx *ctx) 117239c13c20SShubham Bansal { 117339c13c20SShubham Bansal const u8 r4 = bpf2a32[BPF_REG_6][1]; 117439c13c20SShubham Bansal const u8 r5 = bpf2a32[BPF_REG_6][0]; 117539c13c20SShubham Bansal const u8 r6 = bpf2a32[TMP_REG_1][1]; 117639c13c20SShubham Bansal const u8 r7 = bpf2a32[TMP_REG_1][0]; 117739c13c20SShubham Bansal const u8 r8 = bpf2a32[TMP_REG_2][1]; 117839c13c20SShubham Bansal const u8 r10 = bpf2a32[TMP_REG_2][0]; 117939c13c20SShubham Bansal u16 reg_set = 0; 118039c13c20SShubham Bansal 118139c13c20SShubham Bansal /* unwind function call stack */ 118239c13c20SShubham Bansal emit(ARM_ADD_I(ARM_SP, ARM_SP, ctx->stack_size), ctx); 118339c13c20SShubham Bansal 118439c13c20SShubham Bansal /* restore callee saved registers. */ 118539c13c20SShubham Bansal reg_set |= (1<<r4) | (1<<r5) | (1<<r6) | (1<<r7) | (1<<r8) | (1<<r10); 118639c13c20SShubham Bansal #ifdef CONFIG_FRAME_POINTER 118739c13c20SShubham Bansal /* the first instruction of the prologue was: mov ip, sp */ 118839c13c20SShubham Bansal reg_set |= (1<<ARM_FP) | (1<<ARM_SP) | (1<<ARM_PC); 118939c13c20SShubham Bansal emit(ARM_LDM(ARM_SP, reg_set), ctx); 119039c13c20SShubham Bansal #else 119139c13c20SShubham Bansal if (ctx->seen & SEEN_CALL) 119239c13c20SShubham Bansal reg_set |= (1<<ARM_PC); 119339c13c20SShubham Bansal /* Restore callee saved registers. */ 119439c13c20SShubham Bansal emit(ARM_POP(reg_set), ctx); 119539c13c20SShubham Bansal /* Return back to the callee function */ 119639c13c20SShubham Bansal if (!(ctx->seen & SEEN_CALL)) 1197e9062481SRussell King emit_bx_r(ARM_LR, ctx); 119839c13c20SShubham Bansal #endif 119939c13c20SShubham Bansal } 120039c13c20SShubham Bansal 120139c13c20SShubham Bansal /* 120239c13c20SShubham Bansal * Convert an eBPF instruction to native instruction, i.e 120339c13c20SShubham Bansal * JITs an eBPF instruction. 120439c13c20SShubham Bansal * Returns : 120539c13c20SShubham Bansal * 0 - Successfully JITed an 8-byte eBPF instruction 120639c13c20SShubham Bansal * >0 - Successfully JITed a 16-byte eBPF instruction 120739c13c20SShubham Bansal * <0 - Failed to JIT. 120839c13c20SShubham Bansal */ 120939c13c20SShubham Bansal static int build_insn(const struct bpf_insn *insn, struct jit_ctx *ctx) 121039c13c20SShubham Bansal { 121139c13c20SShubham Bansal const u8 code = insn->code; 121239c13c20SShubham Bansal const u8 *dst = bpf2a32[insn->dst_reg]; 121339c13c20SShubham Bansal const u8 *src = bpf2a32[insn->src_reg]; 121439c13c20SShubham Bansal const u8 *tmp = bpf2a32[TMP_REG_1]; 121539c13c20SShubham Bansal const u8 *tmp2 = bpf2a32[TMP_REG_2]; 121639c13c20SShubham Bansal const s16 off = insn->off; 121739c13c20SShubham Bansal const s32 imm = insn->imm; 121839c13c20SShubham Bansal const int i = insn - ctx->prog->insnsi; 121939c13c20SShubham Bansal const bool is64 = BPF_CLASS(code) == BPF_ALU64; 122039c13c20SShubham Bansal const bool dstk = is_on_stack(insn->dst_reg); 122139c13c20SShubham Bansal const bool sstk = is_on_stack(insn->src_reg); 122239c13c20SShubham Bansal u8 rd, rt, rm, rn; 122339c13c20SShubham Bansal s32 jmp_offset; 122439c13c20SShubham Bansal 122539c13c20SShubham Bansal #define check_imm(bits, imm) do { \ 122639c13c20SShubham Bansal if ((((imm) > 0) && ((imm) >> (bits))) || \ 122739c13c20SShubham Bansal (((imm) < 0) && (~(imm) >> (bits)))) { \ 122839c13c20SShubham Bansal pr_info("[%2d] imm=%d(0x%x) out of range\n", \ 122939c13c20SShubham Bansal i, imm, imm); \ 123039c13c20SShubham Bansal return -EINVAL; \ 123139c13c20SShubham Bansal } \ 123239c13c20SShubham Bansal } while (0) 123339c13c20SShubham Bansal #define check_imm24(imm) check_imm(24, imm) 1234ddecdfceSMircea Gherzan 123534805931SDaniel Borkmann switch (code) { 123639c13c20SShubham Bansal /* ALU operations */ 1237ddecdfceSMircea Gherzan 123839c13c20SShubham Bansal /* dst = src */ 123939c13c20SShubham Bansal case BPF_ALU | BPF_MOV | BPF_K: 124039c13c20SShubham Bansal case BPF_ALU | BPF_MOV | BPF_X: 124139c13c20SShubham Bansal case BPF_ALU64 | BPF_MOV | BPF_K: 124239c13c20SShubham Bansal case BPF_ALU64 | BPF_MOV | BPF_X: 124339c13c20SShubham Bansal switch (BPF_SRC(code)) { 124439c13c20SShubham Bansal case BPF_X: 124539c13c20SShubham Bansal emit_a32_mov_r64(is64, dst, src, dstk, sstk, ctx); 124639c13c20SShubham Bansal break; 124739c13c20SShubham Bansal case BPF_K: 124839c13c20SShubham Bansal /* Sign-extend immediate value to destination reg */ 124939c13c20SShubham Bansal emit_a32_mov_i64(is64, dst, imm, dstk, ctx); 125039c13c20SShubham Bansal break; 1251ddecdfceSMircea Gherzan } 1252ddecdfceSMircea Gherzan break; 125339c13c20SShubham Bansal /* dst = dst + src/imm */ 125439c13c20SShubham Bansal /* dst = dst - src/imm */ 125539c13c20SShubham Bansal /* dst = dst | src/imm */ 125639c13c20SShubham Bansal /* dst = dst & src/imm */ 125739c13c20SShubham Bansal /* dst = dst ^ src/imm */ 125839c13c20SShubham Bansal /* dst = dst * src/imm */ 125939c13c20SShubham Bansal /* dst = dst << src */ 126039c13c20SShubham Bansal /* dst = dst >> src */ 126134805931SDaniel Borkmann case BPF_ALU | BPF_ADD | BPF_K: 126234805931SDaniel Borkmann case BPF_ALU | BPF_ADD | BPF_X: 126334805931SDaniel Borkmann case BPF_ALU | BPF_SUB | BPF_K: 126434805931SDaniel Borkmann case BPF_ALU | BPF_SUB | BPF_X: 126534805931SDaniel Borkmann case BPF_ALU | BPF_OR | BPF_K: 126634805931SDaniel Borkmann case BPF_ALU | BPF_OR | BPF_X: 126734805931SDaniel Borkmann case BPF_ALU | BPF_AND | BPF_K: 126834805931SDaniel Borkmann case BPF_ALU | BPF_AND | BPF_X: 126939c13c20SShubham Bansal case BPF_ALU | BPF_XOR | BPF_K: 127039c13c20SShubham Bansal case BPF_ALU | BPF_XOR | BPF_X: 127139c13c20SShubham Bansal case BPF_ALU | BPF_MUL | BPF_K: 127239c13c20SShubham Bansal case BPF_ALU | BPF_MUL | BPF_X: 127334805931SDaniel Borkmann case BPF_ALU | BPF_LSH | BPF_X: 127434805931SDaniel Borkmann case BPF_ALU | BPF_RSH | BPF_X: 127539c13c20SShubham Bansal case BPF_ALU | BPF_ARSH | BPF_K: 127639c13c20SShubham Bansal case BPF_ALU | BPF_ARSH | BPF_X: 127739c13c20SShubham Bansal case BPF_ALU64 | BPF_ADD | BPF_K: 127839c13c20SShubham Bansal case BPF_ALU64 | BPF_ADD | BPF_X: 127939c13c20SShubham Bansal case BPF_ALU64 | BPF_SUB | BPF_K: 128039c13c20SShubham Bansal case BPF_ALU64 | BPF_SUB | BPF_X: 128139c13c20SShubham Bansal case BPF_ALU64 | BPF_OR | BPF_K: 128239c13c20SShubham Bansal case BPF_ALU64 | BPF_OR | BPF_X: 128339c13c20SShubham Bansal case BPF_ALU64 | BPF_AND | BPF_K: 128439c13c20SShubham Bansal case BPF_ALU64 | BPF_AND | BPF_X: 128539c13c20SShubham Bansal case BPF_ALU64 | BPF_XOR | BPF_K: 128639c13c20SShubham Bansal case BPF_ALU64 | BPF_XOR | BPF_X: 128739c13c20SShubham Bansal switch (BPF_SRC(code)) { 128839c13c20SShubham Bansal case BPF_X: 128939c13c20SShubham Bansal emit_a32_alu_r64(is64, dst, src, dstk, sstk, 129039c13c20SShubham Bansal ctx, BPF_OP(code)); 1291ddecdfceSMircea Gherzan break; 129239c13c20SShubham Bansal case BPF_K: 129339c13c20SShubham Bansal /* Move immediate value to the temporary register 129439c13c20SShubham Bansal * and then do the ALU operation on the temporary 129539c13c20SShubham Bansal * register as this will sign-extend the immediate 129639c13c20SShubham Bansal * value into temporary reg and then it would be 129739c13c20SShubham Bansal * safe to do the operation on it. 129839c13c20SShubham Bansal */ 129939c13c20SShubham Bansal emit_a32_mov_i64(is64, tmp2, imm, false, ctx); 130039c13c20SShubham Bansal emit_a32_alu_r64(is64, dst, tmp2, dstk, false, 130139c13c20SShubham Bansal ctx, BPF_OP(code)); 130239c13c20SShubham Bansal break; 130339c13c20SShubham Bansal } 130439c13c20SShubham Bansal break; 130539c13c20SShubham Bansal /* dst = dst / src(imm) */ 130639c13c20SShubham Bansal /* dst = dst % src(imm) */ 130739c13c20SShubham Bansal case BPF_ALU | BPF_DIV | BPF_K: 130839c13c20SShubham Bansal case BPF_ALU | BPF_DIV | BPF_X: 130939c13c20SShubham Bansal case BPF_ALU | BPF_MOD | BPF_K: 131039c13c20SShubham Bansal case BPF_ALU | BPF_MOD | BPF_X: 131139c13c20SShubham Bansal rt = src_lo; 131239c13c20SShubham Bansal rd = dstk ? tmp2[1] : dst_lo; 131339c13c20SShubham Bansal if (dstk) 131439c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 131539c13c20SShubham Bansal switch (BPF_SRC(code)) { 131639c13c20SShubham Bansal case BPF_X: 131739c13c20SShubham Bansal rt = sstk ? tmp2[0] : rt; 131839c13c20SShubham Bansal if (sstk) 131939c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(src_lo)), 132039c13c20SShubham Bansal ctx); 132139c13c20SShubham Bansal break; 132239c13c20SShubham Bansal case BPF_K: 132339c13c20SShubham Bansal rt = tmp2[0]; 132439c13c20SShubham Bansal emit_a32_mov_i(rt, imm, false, ctx); 132539c13c20SShubham Bansal break; 132639c13c20SShubham Bansal } 132739c13c20SShubham Bansal emit_udivmod(rd, rd, rt, ctx, BPF_OP(code)); 132839c13c20SShubham Bansal if (dstk) 132939c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_lo)), ctx); 133039c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 133139c13c20SShubham Bansal break; 133239c13c20SShubham Bansal case BPF_ALU64 | BPF_DIV | BPF_K: 133339c13c20SShubham Bansal case BPF_ALU64 | BPF_DIV | BPF_X: 133439c13c20SShubham Bansal case BPF_ALU64 | BPF_MOD | BPF_K: 133539c13c20SShubham Bansal case BPF_ALU64 | BPF_MOD | BPF_X: 133639c13c20SShubham Bansal goto notyet; 133739c13c20SShubham Bansal /* dst = dst >> imm */ 133839c13c20SShubham Bansal /* dst = dst << imm */ 133939c13c20SShubham Bansal case BPF_ALU | BPF_RSH | BPF_K: 134039c13c20SShubham Bansal case BPF_ALU | BPF_LSH | BPF_K: 134139c13c20SShubham Bansal if (unlikely(imm > 31)) 134239c13c20SShubham Bansal return -EINVAL; 134339c13c20SShubham Bansal if (imm) 134439c13c20SShubham Bansal emit_a32_alu_i(dst_lo, imm, dstk, ctx, BPF_OP(code)); 134539c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 134639c13c20SShubham Bansal break; 134739c13c20SShubham Bansal /* dst = dst << imm */ 134839c13c20SShubham Bansal case BPF_ALU64 | BPF_LSH | BPF_K: 134939c13c20SShubham Bansal if (unlikely(imm > 63)) 135039c13c20SShubham Bansal return -EINVAL; 135139c13c20SShubham Bansal emit_a32_lsh_i64(dst, dstk, imm, ctx); 135239c13c20SShubham Bansal break; 135339c13c20SShubham Bansal /* dst = dst >> imm */ 135439c13c20SShubham Bansal case BPF_ALU64 | BPF_RSH | BPF_K: 135539c13c20SShubham Bansal if (unlikely(imm > 63)) 135639c13c20SShubham Bansal return -EINVAL; 135739c13c20SShubham Bansal emit_a32_lsr_i64(dst, dstk, imm, ctx); 135839c13c20SShubham Bansal break; 135939c13c20SShubham Bansal /* dst = dst << src */ 136039c13c20SShubham Bansal case BPF_ALU64 | BPF_LSH | BPF_X: 136139c13c20SShubham Bansal emit_a32_lsh_r64(dst, src, dstk, sstk, ctx); 136239c13c20SShubham Bansal break; 136339c13c20SShubham Bansal /* dst = dst >> src */ 136439c13c20SShubham Bansal case BPF_ALU64 | BPF_RSH | BPF_X: 136539c13c20SShubham Bansal emit_a32_lsr_r64(dst, src, dstk, sstk, ctx); 136639c13c20SShubham Bansal break; 136739c13c20SShubham Bansal /* dst = dst >> src (signed) */ 136839c13c20SShubham Bansal case BPF_ALU64 | BPF_ARSH | BPF_X: 136939c13c20SShubham Bansal emit_a32_arsh_r64(dst, src, dstk, sstk, ctx); 137039c13c20SShubham Bansal break; 137139c13c20SShubham Bansal /* dst = dst >> imm (signed) */ 137239c13c20SShubham Bansal case BPF_ALU64 | BPF_ARSH | BPF_K: 137339c13c20SShubham Bansal if (unlikely(imm > 63)) 137439c13c20SShubham Bansal return -EINVAL; 137539c13c20SShubham Bansal emit_a32_arsh_i64(dst, dstk, imm, ctx); 137639c13c20SShubham Bansal break; 137739c13c20SShubham Bansal /* dst = ~dst */ 137834805931SDaniel Borkmann case BPF_ALU | BPF_NEG: 137939c13c20SShubham Bansal emit_a32_alu_i(dst_lo, 0, dstk, ctx, BPF_OP(code)); 138039c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 1381ddecdfceSMircea Gherzan break; 138239c13c20SShubham Bansal /* dst = ~dst (64 bit) */ 138339c13c20SShubham Bansal case BPF_ALU64 | BPF_NEG: 138439c13c20SShubham Bansal emit_a32_neg64(dst, dstk, ctx); 1385ddecdfceSMircea Gherzan break; 138639c13c20SShubham Bansal /* dst = dst * src/imm */ 138739c13c20SShubham Bansal case BPF_ALU64 | BPF_MUL | BPF_X: 138839c13c20SShubham Bansal case BPF_ALU64 | BPF_MUL | BPF_K: 138939c13c20SShubham Bansal switch (BPF_SRC(code)) { 139039c13c20SShubham Bansal case BPF_X: 139139c13c20SShubham Bansal emit_a32_mul_r64(dst, src, dstk, sstk, ctx); 1392ddecdfceSMircea Gherzan break; 139339c13c20SShubham Bansal case BPF_K: 139439c13c20SShubham Bansal /* Move immediate value to the temporary register 139539c13c20SShubham Bansal * and then do the multiplication on it as this 139639c13c20SShubham Bansal * will sign-extend the immediate value into temp 139739c13c20SShubham Bansal * reg then it would be safe to do the operation 139839c13c20SShubham Bansal * on it. 13995bf705b4SNicolas Schichan */ 140039c13c20SShubham Bansal emit_a32_mov_i64(is64, tmp2, imm, false, ctx); 140139c13c20SShubham Bansal emit_a32_mul_r64(dst, tmp2, dstk, false, ctx); 140239c13c20SShubham Bansal break; 14035bf705b4SNicolas Schichan } 1404ddecdfceSMircea Gherzan break; 140539c13c20SShubham Bansal /* dst = htole(dst) */ 140639c13c20SShubham Bansal /* dst = htobe(dst) */ 140739c13c20SShubham Bansal case BPF_ALU | BPF_END | BPF_FROM_LE: 140839c13c20SShubham Bansal case BPF_ALU | BPF_END | BPF_FROM_BE: 140939c13c20SShubham Bansal rd = dstk ? tmp[0] : dst_hi; 141039c13c20SShubham Bansal rt = dstk ? tmp[1] : dst_lo; 141139c13c20SShubham Bansal if (dstk) { 141239c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(dst_lo)), ctx); 141339c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_hi)), ctx); 1414c18fe54bSNicolas Schichan } 141539c13c20SShubham Bansal if (BPF_SRC(code) == BPF_FROM_LE) 141639c13c20SShubham Bansal goto emit_bswap_uxt; 141739c13c20SShubham Bansal switch (imm) { 141839c13c20SShubham Bansal case 16: 141939c13c20SShubham Bansal emit_rev16(rt, rt, ctx); 142039c13c20SShubham Bansal goto emit_bswap_uxt; 142139c13c20SShubham Bansal case 32: 142239c13c20SShubham Bansal emit_rev32(rt, rt, ctx); 142339c13c20SShubham Bansal goto emit_bswap_uxt; 142439c13c20SShubham Bansal case 64: 142539c13c20SShubham Bansal /* Because of the usage of ARM_LR */ 142639c13c20SShubham Bansal ctx->seen |= SEEN_CALL; 142739c13c20SShubham Bansal emit_rev32(ARM_LR, rt, ctx); 142839c13c20SShubham Bansal emit_rev32(rt, rd, ctx); 142939c13c20SShubham Bansal emit(ARM_MOV_R(rd, ARM_LR), ctx); 1430bf0098f2SDaniel Borkmann break; 143139c13c20SShubham Bansal } 143239c13c20SShubham Bansal goto exit; 143339c13c20SShubham Bansal emit_bswap_uxt: 143439c13c20SShubham Bansal switch (imm) { 143539c13c20SShubham Bansal case 16: 143639c13c20SShubham Bansal /* zero-extend 16 bits into 64 bits */ 143739c13c20SShubham Bansal #if __LINUX_ARM_ARCH__ < 6 143839c13c20SShubham Bansal emit_a32_mov_i(tmp2[1], 0xffff, false, ctx); 143939c13c20SShubham Bansal emit(ARM_AND_R(rt, rt, tmp2[1]), ctx); 144039c13c20SShubham Bansal #else /* ARMv6+ */ 144139c13c20SShubham Bansal emit(ARM_UXTH(rt, rt), ctx); 14421447f93fSNicolas Schichan #endif 144339c13c20SShubham Bansal emit(ARM_EOR_R(rd, rd, rd), ctx); 14441447f93fSNicolas Schichan break; 144539c13c20SShubham Bansal case 32: 144639c13c20SShubham Bansal /* zero-extend 32 bits into 64 bits */ 144739c13c20SShubham Bansal emit(ARM_EOR_R(rd, rd, rd), ctx); 1448ddecdfceSMircea Gherzan break; 144939c13c20SShubham Bansal case 64: 145039c13c20SShubham Bansal /* nop */ 145139c13c20SShubham Bansal break; 145239c13c20SShubham Bansal } 145339c13c20SShubham Bansal exit: 145439c13c20SShubham Bansal if (dstk) { 145539c13c20SShubham Bansal emit(ARM_STR_I(rt, ARM_SP, STACK_VAR(dst_lo)), ctx); 145639c13c20SShubham Bansal emit(ARM_STR_I(rd, ARM_SP, STACK_VAR(dst_hi)), ctx); 145739c13c20SShubham Bansal } 145839c13c20SShubham Bansal break; 145939c13c20SShubham Bansal /* dst = imm64 */ 146039c13c20SShubham Bansal case BPF_LD | BPF_IMM | BPF_DW: 146139c13c20SShubham Bansal { 146239c13c20SShubham Bansal const struct bpf_insn insn1 = insn[1]; 146339c13c20SShubham Bansal u32 hi, lo = imm; 1464303249abSNicolas Schichan 146539c13c20SShubham Bansal hi = insn1.imm; 146639c13c20SShubham Bansal emit_a32_mov_i(dst_lo, lo, dstk, ctx); 146739c13c20SShubham Bansal emit_a32_mov_i(dst_hi, hi, dstk, ctx); 146839c13c20SShubham Bansal 146939c13c20SShubham Bansal return 1; 147039c13c20SShubham Bansal } 147139c13c20SShubham Bansal /* LDX: dst = *(size *)(src + off) */ 147239c13c20SShubham Bansal case BPF_LDX | BPF_MEM | BPF_W: 147339c13c20SShubham Bansal case BPF_LDX | BPF_MEM | BPF_H: 147439c13c20SShubham Bansal case BPF_LDX | BPF_MEM | BPF_B: 147539c13c20SShubham Bansal case BPF_LDX | BPF_MEM | BPF_DW: 147639c13c20SShubham Bansal rn = sstk ? tmp2[1] : src_lo; 147739c13c20SShubham Bansal if (sstk) 147839c13c20SShubham Bansal emit(ARM_LDR_I(rn, ARM_SP, STACK_VAR(src_lo)), ctx); 147939c13c20SShubham Bansal switch (BPF_SIZE(code)) { 148039c13c20SShubham Bansal case BPF_W: 148139c13c20SShubham Bansal /* Load a Word */ 148239c13c20SShubham Bansal case BPF_H: 148339c13c20SShubham Bansal /* Load a Half-Word */ 148439c13c20SShubham Bansal case BPF_B: 148539c13c20SShubham Bansal /* Load a Byte */ 148639c13c20SShubham Bansal emit_ldx_r(dst_lo, rn, dstk, off, ctx, BPF_SIZE(code)); 148739c13c20SShubham Bansal emit_a32_mov_i(dst_hi, 0, dstk, ctx); 1488303249abSNicolas Schichan break; 148939c13c20SShubham Bansal case BPF_DW: 149039c13c20SShubham Bansal /* Load a double word */ 149139c13c20SShubham Bansal emit_ldx_r(dst_lo, rn, dstk, off, ctx, BPF_W); 149239c13c20SShubham Bansal emit_ldx_r(dst_hi, rn, dstk, off+4, ctx, BPF_W); 149339c13c20SShubham Bansal break; 149439c13c20SShubham Bansal } 149539c13c20SShubham Bansal break; 149639c13c20SShubham Bansal /* R0 = ntohx(*(size *)(((struct sk_buff *)R6)->data + imm)) */ 149739c13c20SShubham Bansal case BPF_LD | BPF_ABS | BPF_W: 149839c13c20SShubham Bansal case BPF_LD | BPF_ABS | BPF_H: 149939c13c20SShubham Bansal case BPF_LD | BPF_ABS | BPF_B: 150039c13c20SShubham Bansal /* R0 = ntohx(*(size *)(((struct sk_buff *)R6)->data + src + imm)) */ 150139c13c20SShubham Bansal case BPF_LD | BPF_IND | BPF_W: 150239c13c20SShubham Bansal case BPF_LD | BPF_IND | BPF_H: 150339c13c20SShubham Bansal case BPF_LD | BPF_IND | BPF_B: 150439c13c20SShubham Bansal { 150539c13c20SShubham Bansal const u8 r4 = bpf2a32[BPF_REG_6][1]; /* r4 = ptr to sk_buff */ 150639c13c20SShubham Bansal const u8 r0 = bpf2a32[BPF_REG_0][1]; /*r0: struct sk_buff *skb*/ 150739c13c20SShubham Bansal /* rtn value */ 150839c13c20SShubham Bansal const u8 r1 = bpf2a32[BPF_REG_0][0]; /* r1: int k */ 150939c13c20SShubham Bansal const u8 r2 = bpf2a32[BPF_REG_1][1]; /* r2: unsigned int size */ 151039c13c20SShubham Bansal const u8 r3 = bpf2a32[BPF_REG_1][0]; /* r3: void *buffer */ 151139c13c20SShubham Bansal const u8 r6 = bpf2a32[TMP_REG_1][1]; /* r6: void *(*func)(..) */ 151239c13c20SShubham Bansal int size; 151339c13c20SShubham Bansal 151439c13c20SShubham Bansal /* Setting up first argument */ 151539c13c20SShubham Bansal emit(ARM_MOV_R(r0, r4), ctx); 151639c13c20SShubham Bansal 151739c13c20SShubham Bansal /* Setting up second argument */ 151839c13c20SShubham Bansal emit_a32_mov_i(r1, imm, false, ctx); 151939c13c20SShubham Bansal if (BPF_MODE(code) == BPF_IND) 152039c13c20SShubham Bansal emit_a32_alu_r(r1, src_lo, false, sstk, ctx, 152139c13c20SShubham Bansal false, false, BPF_ADD); 152239c13c20SShubham Bansal 152339c13c20SShubham Bansal /* Setting up third argument */ 152439c13c20SShubham Bansal switch (BPF_SIZE(code)) { 152539c13c20SShubham Bansal case BPF_W: 152639c13c20SShubham Bansal size = 4; 152739c13c20SShubham Bansal break; 152839c13c20SShubham Bansal case BPF_H: 152939c13c20SShubham Bansal size = 2; 153039c13c20SShubham Bansal break; 153139c13c20SShubham Bansal case BPF_B: 153239c13c20SShubham Bansal size = 1; 153324e737c1SNicolas Schichan break; 1534ddecdfceSMircea Gherzan default: 153539c13c20SShubham Bansal return -EINVAL; 153639c13c20SShubham Bansal } 153739c13c20SShubham Bansal emit_a32_mov_i(r2, size, false, ctx); 153839c13c20SShubham Bansal 153939c13c20SShubham Bansal /* Setting up fourth argument */ 154039c13c20SShubham Bansal emit(ARM_ADD_I(r3, ARM_SP, imm8m(SKB_BUFFER)), ctx); 154139c13c20SShubham Bansal 154239c13c20SShubham Bansal /* Setting up function pointer to call */ 154339c13c20SShubham Bansal emit_a32_mov_i(r6, (unsigned int)bpf_load_pointer, false, ctx); 154439c13c20SShubham Bansal emit_blx_r(r6, ctx); 154539c13c20SShubham Bansal 154639c13c20SShubham Bansal emit(ARM_EOR_R(r1, r1, r1), ctx); 154739c13c20SShubham Bansal /* Check if return address is NULL or not. 154839c13c20SShubham Bansal * if NULL then jump to epilogue 154939c13c20SShubham Bansal * else continue to load the value from retn address 155039c13c20SShubham Bansal */ 155139c13c20SShubham Bansal emit(ARM_CMP_I(r0, 0), ctx); 155239c13c20SShubham Bansal jmp_offset = epilogue_offset(ctx); 155339c13c20SShubham Bansal check_imm24(jmp_offset); 155439c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_B(jmp_offset), ctx); 155539c13c20SShubham Bansal 155639c13c20SShubham Bansal /* Load value from the address */ 155739c13c20SShubham Bansal switch (BPF_SIZE(code)) { 155839c13c20SShubham Bansal case BPF_W: 155939c13c20SShubham Bansal emit(ARM_LDR_I(r0, r0, 0), ctx); 156039c13c20SShubham Bansal emit_rev32(r0, r0, ctx); 156139c13c20SShubham Bansal break; 156239c13c20SShubham Bansal case BPF_H: 156339c13c20SShubham Bansal emit(ARM_LDRH_I(r0, r0, 0), ctx); 156439c13c20SShubham Bansal emit_rev16(r0, r0, ctx); 156539c13c20SShubham Bansal break; 156639c13c20SShubham Bansal case BPF_B: 156739c13c20SShubham Bansal emit(ARM_LDRB_I(r0, r0, 0), ctx); 156839c13c20SShubham Bansal /* No need to reverse */ 156939c13c20SShubham Bansal break; 157039c13c20SShubham Bansal } 157139c13c20SShubham Bansal break; 157239c13c20SShubham Bansal } 157339c13c20SShubham Bansal /* ST: *(size *)(dst + off) = imm */ 157439c13c20SShubham Bansal case BPF_ST | BPF_MEM | BPF_W: 157539c13c20SShubham Bansal case BPF_ST | BPF_MEM | BPF_H: 157639c13c20SShubham Bansal case BPF_ST | BPF_MEM | BPF_B: 157739c13c20SShubham Bansal case BPF_ST | BPF_MEM | BPF_DW: 157839c13c20SShubham Bansal switch (BPF_SIZE(code)) { 157939c13c20SShubham Bansal case BPF_DW: 158039c13c20SShubham Bansal /* Sign-extend immediate value into temp reg */ 158139c13c20SShubham Bansal emit_a32_mov_i64(true, tmp2, imm, false, ctx); 158239c13c20SShubham Bansal emit_str_r(dst_lo, tmp2[1], dstk, off, ctx, BPF_W); 158339c13c20SShubham Bansal emit_str_r(dst_lo, tmp2[0], dstk, off+4, ctx, BPF_W); 158439c13c20SShubham Bansal break; 158539c13c20SShubham Bansal case BPF_W: 158639c13c20SShubham Bansal case BPF_H: 158739c13c20SShubham Bansal case BPF_B: 158839c13c20SShubham Bansal emit_a32_mov_i(tmp2[1], imm, false, ctx); 158939c13c20SShubham Bansal emit_str_r(dst_lo, tmp2[1], dstk, off, ctx, 159039c13c20SShubham Bansal BPF_SIZE(code)); 159139c13c20SShubham Bansal break; 159239c13c20SShubham Bansal } 159339c13c20SShubham Bansal break; 159439c13c20SShubham Bansal /* STX XADD: lock *(u32 *)(dst + off) += src */ 159539c13c20SShubham Bansal case BPF_STX | BPF_XADD | BPF_W: 159639c13c20SShubham Bansal /* STX XADD: lock *(u64 *)(dst + off) += src */ 159739c13c20SShubham Bansal case BPF_STX | BPF_XADD | BPF_DW: 159839c13c20SShubham Bansal goto notyet; 159939c13c20SShubham Bansal /* STX: *(size *)(dst + off) = src */ 160039c13c20SShubham Bansal case BPF_STX | BPF_MEM | BPF_W: 160139c13c20SShubham Bansal case BPF_STX | BPF_MEM | BPF_H: 160239c13c20SShubham Bansal case BPF_STX | BPF_MEM | BPF_B: 160339c13c20SShubham Bansal case BPF_STX | BPF_MEM | BPF_DW: 160439c13c20SShubham Bansal { 160539c13c20SShubham Bansal u8 sz = BPF_SIZE(code); 160639c13c20SShubham Bansal 160739c13c20SShubham Bansal rn = sstk ? tmp2[1] : src_lo; 160839c13c20SShubham Bansal rm = sstk ? tmp2[0] : src_hi; 160939c13c20SShubham Bansal if (sstk) { 161039c13c20SShubham Bansal emit(ARM_LDR_I(rn, ARM_SP, STACK_VAR(src_lo)), ctx); 161139c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(src_hi)), ctx); 161239c13c20SShubham Bansal } 161339c13c20SShubham Bansal 161439c13c20SShubham Bansal /* Store the value */ 161539c13c20SShubham Bansal if (BPF_SIZE(code) == BPF_DW) { 161639c13c20SShubham Bansal emit_str_r(dst_lo, rn, dstk, off, ctx, BPF_W); 161739c13c20SShubham Bansal emit_str_r(dst_lo, rm, dstk, off+4, ctx, BPF_W); 161839c13c20SShubham Bansal } else { 161939c13c20SShubham Bansal emit_str_r(dst_lo, rn, dstk, off, ctx, sz); 162039c13c20SShubham Bansal } 162139c13c20SShubham Bansal break; 162239c13c20SShubham Bansal } 162339c13c20SShubham Bansal /* PC += off if dst == src */ 162439c13c20SShubham Bansal /* PC += off if dst > src */ 162539c13c20SShubham Bansal /* PC += off if dst >= src */ 162639c13c20SShubham Bansal /* PC += off if dst < src */ 162739c13c20SShubham Bansal /* PC += off if dst <= src */ 162839c13c20SShubham Bansal /* PC += off if dst != src */ 162939c13c20SShubham Bansal /* PC += off if dst > src (signed) */ 163039c13c20SShubham Bansal /* PC += off if dst >= src (signed) */ 163139c13c20SShubham Bansal /* PC += off if dst < src (signed) */ 163239c13c20SShubham Bansal /* PC += off if dst <= src (signed) */ 163339c13c20SShubham Bansal /* PC += off if dst & src */ 163439c13c20SShubham Bansal case BPF_JMP | BPF_JEQ | BPF_X: 163539c13c20SShubham Bansal case BPF_JMP | BPF_JGT | BPF_X: 163639c13c20SShubham Bansal case BPF_JMP | BPF_JGE | BPF_X: 163739c13c20SShubham Bansal case BPF_JMP | BPF_JNE | BPF_X: 163839c13c20SShubham Bansal case BPF_JMP | BPF_JSGT | BPF_X: 163939c13c20SShubham Bansal case BPF_JMP | BPF_JSGE | BPF_X: 164039c13c20SShubham Bansal case BPF_JMP | BPF_JSET | BPF_X: 164139c13c20SShubham Bansal case BPF_JMP | BPF_JLE | BPF_X: 164239c13c20SShubham Bansal case BPF_JMP | BPF_JLT | BPF_X: 164339c13c20SShubham Bansal case BPF_JMP | BPF_JSLT | BPF_X: 164439c13c20SShubham Bansal case BPF_JMP | BPF_JSLE | BPF_X: 164539c13c20SShubham Bansal /* Setup source registers */ 164639c13c20SShubham Bansal rm = sstk ? tmp2[0] : src_hi; 164739c13c20SShubham Bansal rn = sstk ? tmp2[1] : src_lo; 164839c13c20SShubham Bansal if (sstk) { 164939c13c20SShubham Bansal emit(ARM_LDR_I(rn, ARM_SP, STACK_VAR(src_lo)), ctx); 165039c13c20SShubham Bansal emit(ARM_LDR_I(rm, ARM_SP, STACK_VAR(src_hi)), ctx); 165139c13c20SShubham Bansal } 165239c13c20SShubham Bansal goto go_jmp; 165339c13c20SShubham Bansal /* PC += off if dst == imm */ 165439c13c20SShubham Bansal /* PC += off if dst > imm */ 165539c13c20SShubham Bansal /* PC += off if dst >= imm */ 165639c13c20SShubham Bansal /* PC += off if dst < imm */ 165739c13c20SShubham Bansal /* PC += off if dst <= imm */ 165839c13c20SShubham Bansal /* PC += off if dst != imm */ 165939c13c20SShubham Bansal /* PC += off if dst > imm (signed) */ 166039c13c20SShubham Bansal /* PC += off if dst >= imm (signed) */ 166139c13c20SShubham Bansal /* PC += off if dst < imm (signed) */ 166239c13c20SShubham Bansal /* PC += off if dst <= imm (signed) */ 166339c13c20SShubham Bansal /* PC += off if dst & imm */ 166439c13c20SShubham Bansal case BPF_JMP | BPF_JEQ | BPF_K: 166539c13c20SShubham Bansal case BPF_JMP | BPF_JGT | BPF_K: 166639c13c20SShubham Bansal case BPF_JMP | BPF_JGE | BPF_K: 166739c13c20SShubham Bansal case BPF_JMP | BPF_JNE | BPF_K: 166839c13c20SShubham Bansal case BPF_JMP | BPF_JSGT | BPF_K: 166939c13c20SShubham Bansal case BPF_JMP | BPF_JSGE | BPF_K: 167039c13c20SShubham Bansal case BPF_JMP | BPF_JSET | BPF_K: 167139c13c20SShubham Bansal case BPF_JMP | BPF_JLT | BPF_K: 167239c13c20SShubham Bansal case BPF_JMP | BPF_JLE | BPF_K: 167339c13c20SShubham Bansal case BPF_JMP | BPF_JSLT | BPF_K: 167439c13c20SShubham Bansal case BPF_JMP | BPF_JSLE | BPF_K: 167539c13c20SShubham Bansal if (off == 0) 167639c13c20SShubham Bansal break; 167739c13c20SShubham Bansal rm = tmp2[0]; 167839c13c20SShubham Bansal rn = tmp2[1]; 167939c13c20SShubham Bansal /* Sign-extend immediate value */ 168039c13c20SShubham Bansal emit_a32_mov_i64(true, tmp2, imm, false, ctx); 168139c13c20SShubham Bansal go_jmp: 168239c13c20SShubham Bansal /* Setup destination register */ 168339c13c20SShubham Bansal rd = dstk ? tmp[0] : dst_hi; 168439c13c20SShubham Bansal rt = dstk ? tmp[1] : dst_lo; 168539c13c20SShubham Bansal if (dstk) { 168639c13c20SShubham Bansal emit(ARM_LDR_I(rt, ARM_SP, STACK_VAR(dst_lo)), ctx); 168739c13c20SShubham Bansal emit(ARM_LDR_I(rd, ARM_SP, STACK_VAR(dst_hi)), ctx); 168839c13c20SShubham Bansal } 168939c13c20SShubham Bansal 169039c13c20SShubham Bansal /* Check for the condition */ 169139c13c20SShubham Bansal emit_ar_r(rd, rt, rm, rn, ctx, BPF_OP(code)); 169239c13c20SShubham Bansal 169339c13c20SShubham Bansal /* Setup JUMP instruction */ 169439c13c20SShubham Bansal jmp_offset = bpf2a32_offset(i+off, i, ctx); 169539c13c20SShubham Bansal switch (BPF_OP(code)) { 169639c13c20SShubham Bansal case BPF_JNE: 169739c13c20SShubham Bansal case BPF_JSET: 169839c13c20SShubham Bansal _emit(ARM_COND_NE, ARM_B(jmp_offset), ctx); 169939c13c20SShubham Bansal break; 170039c13c20SShubham Bansal case BPF_JEQ: 170139c13c20SShubham Bansal _emit(ARM_COND_EQ, ARM_B(jmp_offset), ctx); 170239c13c20SShubham Bansal break; 170339c13c20SShubham Bansal case BPF_JGT: 170439c13c20SShubham Bansal _emit(ARM_COND_HI, ARM_B(jmp_offset), ctx); 170539c13c20SShubham Bansal break; 170639c13c20SShubham Bansal case BPF_JGE: 170739c13c20SShubham Bansal _emit(ARM_COND_CS, ARM_B(jmp_offset), ctx); 170839c13c20SShubham Bansal break; 170939c13c20SShubham Bansal case BPF_JSGT: 171039c13c20SShubham Bansal _emit(ARM_COND_LT, ARM_B(jmp_offset), ctx); 171139c13c20SShubham Bansal break; 171239c13c20SShubham Bansal case BPF_JSGE: 171339c13c20SShubham Bansal _emit(ARM_COND_GE, ARM_B(jmp_offset), ctx); 171439c13c20SShubham Bansal break; 171539c13c20SShubham Bansal case BPF_JLE: 171639c13c20SShubham Bansal _emit(ARM_COND_LS, ARM_B(jmp_offset), ctx); 171739c13c20SShubham Bansal break; 171839c13c20SShubham Bansal case BPF_JLT: 171939c13c20SShubham Bansal _emit(ARM_COND_CC, ARM_B(jmp_offset), ctx); 172039c13c20SShubham Bansal break; 172139c13c20SShubham Bansal case BPF_JSLT: 172239c13c20SShubham Bansal _emit(ARM_COND_LT, ARM_B(jmp_offset), ctx); 172339c13c20SShubham Bansal break; 172439c13c20SShubham Bansal case BPF_JSLE: 172539c13c20SShubham Bansal _emit(ARM_COND_GE, ARM_B(jmp_offset), ctx); 172639c13c20SShubham Bansal break; 172739c13c20SShubham Bansal } 172839c13c20SShubham Bansal break; 172939c13c20SShubham Bansal /* JMP OFF */ 173039c13c20SShubham Bansal case BPF_JMP | BPF_JA: 173139c13c20SShubham Bansal { 173239c13c20SShubham Bansal if (off == 0) 173339c13c20SShubham Bansal break; 173439c13c20SShubham Bansal jmp_offset = bpf2a32_offset(i+off, i, ctx); 173539c13c20SShubham Bansal check_imm24(jmp_offset); 173639c13c20SShubham Bansal emit(ARM_B(jmp_offset), ctx); 173739c13c20SShubham Bansal break; 173839c13c20SShubham Bansal } 173939c13c20SShubham Bansal /* tail call */ 174039c13c20SShubham Bansal case BPF_JMP | BPF_TAIL_CALL: 174139c13c20SShubham Bansal if (emit_bpf_tail_call(ctx)) 174239c13c20SShubham Bansal return -EFAULT; 174339c13c20SShubham Bansal break; 174439c13c20SShubham Bansal /* function call */ 174539c13c20SShubham Bansal case BPF_JMP | BPF_CALL: 174639c13c20SShubham Bansal { 174739c13c20SShubham Bansal const u8 *r0 = bpf2a32[BPF_REG_0]; 174839c13c20SShubham Bansal const u8 *r1 = bpf2a32[BPF_REG_1]; 174939c13c20SShubham Bansal const u8 *r2 = bpf2a32[BPF_REG_2]; 175039c13c20SShubham Bansal const u8 *r3 = bpf2a32[BPF_REG_3]; 175139c13c20SShubham Bansal const u8 *r4 = bpf2a32[BPF_REG_4]; 175239c13c20SShubham Bansal const u8 *r5 = bpf2a32[BPF_REG_5]; 175339c13c20SShubham Bansal const u32 func = (u32)__bpf_call_base + (u32)imm; 175439c13c20SShubham Bansal 175539c13c20SShubham Bansal emit_a32_mov_r64(true, r0, r1, false, false, ctx); 175639c13c20SShubham Bansal emit_a32_mov_r64(true, r1, r2, false, true, ctx); 175739c13c20SShubham Bansal emit_push_r64(r5, 0, ctx); 175839c13c20SShubham Bansal emit_push_r64(r4, 8, ctx); 175939c13c20SShubham Bansal emit_push_r64(r3, 16, ctx); 176039c13c20SShubham Bansal 176139c13c20SShubham Bansal emit_a32_mov_i(tmp[1], func, false, ctx); 176239c13c20SShubham Bansal emit_blx_r(tmp[1], ctx); 176339c13c20SShubham Bansal 176439c13c20SShubham Bansal emit(ARM_ADD_I(ARM_SP, ARM_SP, imm8m(24)), ctx); // callee clean 176539c13c20SShubham Bansal break; 176639c13c20SShubham Bansal } 176739c13c20SShubham Bansal /* function return */ 176839c13c20SShubham Bansal case BPF_JMP | BPF_EXIT: 176939c13c20SShubham Bansal /* Optimization: when last instruction is EXIT 177039c13c20SShubham Bansal * simply fallthrough to epilogue. 177139c13c20SShubham Bansal */ 177239c13c20SShubham Bansal if (i == ctx->prog->len - 1) 177339c13c20SShubham Bansal break; 177439c13c20SShubham Bansal jmp_offset = epilogue_offset(ctx); 177539c13c20SShubham Bansal check_imm24(jmp_offset); 177639c13c20SShubham Bansal emit(ARM_B(jmp_offset), ctx); 177739c13c20SShubham Bansal break; 177839c13c20SShubham Bansal notyet: 177939c13c20SShubham Bansal pr_info_once("*** NOT YET: opcode %02x ***\n", code); 178039c13c20SShubham Bansal return -EFAULT; 178139c13c20SShubham Bansal default: 178239c13c20SShubham Bansal pr_err_once("unknown opcode %02x\n", code); 178339c13c20SShubham Bansal return -EINVAL; 1784ddecdfceSMircea Gherzan } 17850b59d880SNicolas Schichan 17860b59d880SNicolas Schichan if (ctx->flags & FLAG_IMM_OVERFLOW) 17870b59d880SNicolas Schichan /* 17880b59d880SNicolas Schichan * this instruction generated an overflow when 17890b59d880SNicolas Schichan * trying to access the literal pool, so 17900b59d880SNicolas Schichan * delegate this filter to the kernel interpreter. 17910b59d880SNicolas Schichan */ 17920b59d880SNicolas Schichan return -1; 179339c13c20SShubham Bansal return 0; 1794ddecdfceSMircea Gherzan } 1795ddecdfceSMircea Gherzan 179639c13c20SShubham Bansal static int build_body(struct jit_ctx *ctx) 179739c13c20SShubham Bansal { 179839c13c20SShubham Bansal const struct bpf_prog *prog = ctx->prog; 179939c13c20SShubham Bansal unsigned int i; 180039c13c20SShubham Bansal 180139c13c20SShubham Bansal for (i = 0; i < prog->len; i++) { 180239c13c20SShubham Bansal const struct bpf_insn *insn = &(prog->insnsi[i]); 180339c13c20SShubham Bansal int ret; 180439c13c20SShubham Bansal 180539c13c20SShubham Bansal ret = build_insn(insn, ctx); 180639c13c20SShubham Bansal 180739c13c20SShubham Bansal /* It's used with loading the 64 bit immediate value. */ 180839c13c20SShubham Bansal if (ret > 0) { 180939c13c20SShubham Bansal i++; 1810ddecdfceSMircea Gherzan if (ctx->target == NULL) 181139c13c20SShubham Bansal ctx->offsets[i] = ctx->idx; 181239c13c20SShubham Bansal continue; 181339c13c20SShubham Bansal } 181439c13c20SShubham Bansal 181539c13c20SShubham Bansal if (ctx->target == NULL) 181639c13c20SShubham Bansal ctx->offsets[i] = ctx->idx; 181739c13c20SShubham Bansal 181839c13c20SShubham Bansal /* If unsuccesfull, return with error code */ 181939c13c20SShubham Bansal if (ret) 182039c13c20SShubham Bansal return ret; 182139c13c20SShubham Bansal } 182239c13c20SShubham Bansal return 0; 182339c13c20SShubham Bansal } 182439c13c20SShubham Bansal 182539c13c20SShubham Bansal static int validate_code(struct jit_ctx *ctx) 182639c13c20SShubham Bansal { 182739c13c20SShubham Bansal int i; 182839c13c20SShubham Bansal 182939c13c20SShubham Bansal for (i = 0; i < ctx->idx; i++) { 183039c13c20SShubham Bansal if (ctx->target[i] == __opcode_to_mem_arm(ARM_INST_UDF)) 183139c13c20SShubham Bansal return -1; 183239c13c20SShubham Bansal } 1833ddecdfceSMircea Gherzan 1834ddecdfceSMircea Gherzan return 0; 1835ddecdfceSMircea Gherzan } 1836ddecdfceSMircea Gherzan 183739c13c20SShubham Bansal void bpf_jit_compile(struct bpf_prog *prog) 1838ddecdfceSMircea Gherzan { 183939c13c20SShubham Bansal /* Nothing to do here. We support Internal BPF. */ 184039c13c20SShubham Bansal } 1841ddecdfceSMircea Gherzan 184239c13c20SShubham Bansal struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog) 184339c13c20SShubham Bansal { 184439c13c20SShubham Bansal struct bpf_prog *tmp, *orig_prog = prog; 184539c13c20SShubham Bansal struct bpf_binary_header *header; 184639c13c20SShubham Bansal bool tmp_blinded = false; 184739c13c20SShubham Bansal struct jit_ctx ctx; 184839c13c20SShubham Bansal unsigned int tmp_idx; 184939c13c20SShubham Bansal unsigned int image_size; 185039c13c20SShubham Bansal u8 *image_ptr; 185139c13c20SShubham Bansal 185239c13c20SShubham Bansal /* If BPF JIT was not enabled then we must fall back to 185339c13c20SShubham Bansal * the interpreter. 185439c13c20SShubham Bansal */ 1855ddecdfceSMircea Gherzan if (!bpf_jit_enable) 185639c13c20SShubham Bansal return orig_prog; 185739c13c20SShubham Bansal 185839c13c20SShubham Bansal /* If constant blinding was enabled and we failed during blinding 185939c13c20SShubham Bansal * then we must fall back to the interpreter. Otherwise, we save 186039c13c20SShubham Bansal * the new JITed code. 186139c13c20SShubham Bansal */ 186239c13c20SShubham Bansal tmp = bpf_jit_blind_constants(prog); 186339c13c20SShubham Bansal 186439c13c20SShubham Bansal if (IS_ERR(tmp)) 186539c13c20SShubham Bansal return orig_prog; 186639c13c20SShubham Bansal if (tmp != prog) { 186739c13c20SShubham Bansal tmp_blinded = true; 186839c13c20SShubham Bansal prog = tmp; 186939c13c20SShubham Bansal } 1870ddecdfceSMircea Gherzan 1871ddecdfceSMircea Gherzan memset(&ctx, 0, sizeof(ctx)); 187239c13c20SShubham Bansal ctx.prog = prog; 1873ddecdfceSMircea Gherzan 187439c13c20SShubham Bansal /* Not able to allocate memory for offsets[] , then 187539c13c20SShubham Bansal * we must fall back to the interpreter 187639c13c20SShubham Bansal */ 187739c13c20SShubham Bansal ctx.offsets = kcalloc(prog->len, sizeof(int), GFP_KERNEL); 187839c13c20SShubham Bansal if (ctx.offsets == NULL) { 187939c13c20SShubham Bansal prog = orig_prog; 1880ddecdfceSMircea Gherzan goto out; 188139c13c20SShubham Bansal } 188239c13c20SShubham Bansal 188339c13c20SShubham Bansal /* 1) fake pass to find in the length of the JITed code, 188439c13c20SShubham Bansal * to compute ctx->offsets and other context variables 188539c13c20SShubham Bansal * needed to compute final JITed code. 188639c13c20SShubham Bansal * Also, calculate random starting pointer/start of JITed code 188739c13c20SShubham Bansal * which is prefixed by random number of fault instructions. 188839c13c20SShubham Bansal * 188939c13c20SShubham Bansal * If the first pass fails then there is no chance of it 189039c13c20SShubham Bansal * being successful in the second pass, so just fall back 189139c13c20SShubham Bansal * to the interpreter. 189239c13c20SShubham Bansal */ 189339c13c20SShubham Bansal if (build_body(&ctx)) { 189439c13c20SShubham Bansal prog = orig_prog; 189539c13c20SShubham Bansal goto out_off; 189639c13c20SShubham Bansal } 1897ddecdfceSMircea Gherzan 1898ddecdfceSMircea Gherzan tmp_idx = ctx.idx; 1899ddecdfceSMircea Gherzan build_prologue(&ctx); 1900ddecdfceSMircea Gherzan ctx.prologue_bytes = (ctx.idx - tmp_idx) * 4; 1901ddecdfceSMircea Gherzan 190239c13c20SShubham Bansal ctx.epilogue_offset = ctx.idx; 190339c13c20SShubham Bansal 1904ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 7 1905ddecdfceSMircea Gherzan tmp_idx = ctx.idx; 1906ddecdfceSMircea Gherzan build_epilogue(&ctx); 1907ddecdfceSMircea Gherzan ctx.epilogue_bytes = (ctx.idx - tmp_idx) * 4; 1908ddecdfceSMircea Gherzan 1909ddecdfceSMircea Gherzan ctx.idx += ctx.imm_count; 1910ddecdfceSMircea Gherzan if (ctx.imm_count) { 191139c13c20SShubham Bansal ctx.imms = kcalloc(ctx.imm_count, sizeof(u32), GFP_KERNEL); 191239c13c20SShubham Bansal if (ctx.imms == NULL) { 191339c13c20SShubham Bansal prog = orig_prog; 191439c13c20SShubham Bansal goto out_off; 191539c13c20SShubham Bansal } 1916ddecdfceSMircea Gherzan } 1917ddecdfceSMircea Gherzan #else 191839c13c20SShubham Bansal /* there's nothing about the epilogue on ARMv7 */ 1919ddecdfceSMircea Gherzan build_epilogue(&ctx); 1920ddecdfceSMircea Gherzan #endif 192139c13c20SShubham Bansal /* Now we can get the actual image size of the JITed arm code. 192239c13c20SShubham Bansal * Currently, we are not considering the THUMB-2 instructions 192339c13c20SShubham Bansal * for jit, although it can decrease the size of the image. 192439c13c20SShubham Bansal * 192539c13c20SShubham Bansal * As each arm instruction is of length 32bit, we are translating 192639c13c20SShubham Bansal * number of JITed intructions into the size required to store these 192739c13c20SShubham Bansal * JITed code. 192839c13c20SShubham Bansal */ 192939c13c20SShubham Bansal image_size = sizeof(u32) * ctx.idx; 1930ddecdfceSMircea Gherzan 193139c13c20SShubham Bansal /* Now we know the size of the structure to make */ 193239c13c20SShubham Bansal header = bpf_jit_binary_alloc(image_size, &image_ptr, 193339c13c20SShubham Bansal sizeof(u32), jit_fill_hole); 193439c13c20SShubham Bansal /* Not able to allocate memory for the structure then 193539c13c20SShubham Bansal * we must fall back to the interpretation 193639c13c20SShubham Bansal */ 193739c13c20SShubham Bansal if (header == NULL) { 193839c13c20SShubham Bansal prog = orig_prog; 193939c13c20SShubham Bansal goto out_imms; 194039c13c20SShubham Bansal } 194139c13c20SShubham Bansal 194239c13c20SShubham Bansal /* 2.) Actual pass to generate final JIT code */ 194339c13c20SShubham Bansal ctx.target = (u32 *) image_ptr; 1944ddecdfceSMircea Gherzan ctx.idx = 0; 194555309dd3SDaniel Borkmann 1946ddecdfceSMircea Gherzan build_prologue(&ctx); 194739c13c20SShubham Bansal 194839c13c20SShubham Bansal /* If building the body of the JITed code fails somehow, 194939c13c20SShubham Bansal * we fall back to the interpretation. 195039c13c20SShubham Bansal */ 19510b59d880SNicolas Schichan if (build_body(&ctx) < 0) { 195239c13c20SShubham Bansal image_ptr = NULL; 19530b59d880SNicolas Schichan bpf_jit_binary_free(header); 195439c13c20SShubham Bansal prog = orig_prog; 195539c13c20SShubham Bansal goto out_imms; 19560b59d880SNicolas Schichan } 1957ddecdfceSMircea Gherzan build_epilogue(&ctx); 1958ddecdfceSMircea Gherzan 195939c13c20SShubham Bansal /* 3.) Extra pass to validate JITed Code */ 196039c13c20SShubham Bansal if (validate_code(&ctx)) { 196139c13c20SShubham Bansal image_ptr = NULL; 196239c13c20SShubham Bansal bpf_jit_binary_free(header); 196339c13c20SShubham Bansal prog = orig_prog; 196439c13c20SShubham Bansal goto out_imms; 196539c13c20SShubham Bansal } 1966ebaef649SDaniel Borkmann flush_icache_range((u32)header, (u32)(ctx.target + ctx.idx)); 1967ddecdfceSMircea Gherzan 196839c13c20SShubham Bansal if (bpf_jit_enable > 1) 196939c13c20SShubham Bansal /* there are 2 passes here */ 197039c13c20SShubham Bansal bpf_jit_dump(prog->len, image_size, 2, ctx.target); 197139c13c20SShubham Bansal 197239c13c20SShubham Bansal set_memory_ro((unsigned long)header, header->pages); 197339c13c20SShubham Bansal prog->bpf_func = (void *)ctx.target; 197439c13c20SShubham Bansal prog->jited = 1; 197539c13c20SShubham Bansal prog->jited_len = image_size; 197639c13c20SShubham Bansal 197739c13c20SShubham Bansal out_imms: 1978ddecdfceSMircea Gherzan #if __LINUX_ARM_ARCH__ < 7 1979ddecdfceSMircea Gherzan if (ctx.imm_count) 1980ddecdfceSMircea Gherzan kfree(ctx.imms); 1981ddecdfceSMircea Gherzan #endif 198239c13c20SShubham Bansal out_off: 1983ddecdfceSMircea Gherzan kfree(ctx.offsets); 198439c13c20SShubham Bansal out: 198539c13c20SShubham Bansal if (tmp_blinded) 198639c13c20SShubham Bansal bpf_jit_prog_release_other(prog, prog == orig_prog ? 198739c13c20SShubham Bansal tmp : orig_prog); 198839c13c20SShubham Bansal return prog; 1989ddecdfceSMircea Gherzan } 1990ddecdfceSMircea Gherzan 1991