Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.17.
   1// SPDX-License-Identifier: GPL-2.0-only
   2/*
   3 * eBPF JIT compiler for PPC32
   4 *
   5 * Copyright 2020 Christophe Leroy <christophe.leroy@csgroup.eu>
   6 *		  CS GROUP France
   7 *
   8 * Based on PPC64 eBPF JIT compiler by Naveen N. Rao
   9 */
  10#include <linux/moduleloader.h>
  11#include <asm/cacheflush.h>
  12#include <asm/asm-compat.h>
  13#include <linux/netdevice.h>
  14#include <linux/filter.h>
  15#include <linux/if_vlan.h>
  16#include <asm/kprobes.h>
  17#include <linux/bpf.h>
  18
  19#include "bpf_jit.h"
  20
  21/*
  22 * Stack layout:
  23 *
  24 *		[	prev sp		] <-------------
  25 *		[   nv gpr save area	] 16 * 4	|
  26 * fp (r31) -->	[   ebpf stack space	] upto 512	|
  27 *		[     frame header	] 16		|
  28 * sp (r1) --->	[    stack pointer	] --------------
  29 */
  30
  31/* for gpr non volatile registers r17 to r31 (14) + tail call */
  32#define BPF_PPC_STACK_SAVE	(15 * 4 + 4)
  33/* stack frame, ensure this is quadword aligned */
  34#define BPF_PPC_STACKFRAME(ctx)	(STACK_FRAME_MIN_SIZE + BPF_PPC_STACK_SAVE + (ctx)->stack_size)
  35
  36#define PPC_EX32(r, i)		EMIT(PPC_RAW_LI((r), (i) < 0 ? -1 : 0))
  37
  38/* PPC NVR range -- update this if we ever use NVRs below r17 */
  39#define BPF_PPC_NVR_MIN		_R17
  40#define BPF_PPC_TC		_R16
  41
  42/* BPF register usage */
  43#define TMP_REG			(MAX_BPF_JIT_REG + 0)
  44
  45/* BPF to ppc register mappings */
  46void bpf_jit_init_reg_mapping(struct codegen_context *ctx)
  47{
  48	/* function return value */
  49	ctx->b2p[BPF_REG_0] = _R12;
  50	/* function arguments */
  51	ctx->b2p[BPF_REG_1] = _R4;
  52	ctx->b2p[BPF_REG_2] = _R6;
  53	ctx->b2p[BPF_REG_3] = _R8;
  54	ctx->b2p[BPF_REG_4] = _R10;
  55	ctx->b2p[BPF_REG_5] = _R22;
  56	/* non volatile registers */
  57	ctx->b2p[BPF_REG_6] = _R24;
  58	ctx->b2p[BPF_REG_7] = _R26;
  59	ctx->b2p[BPF_REG_8] = _R28;
  60	ctx->b2p[BPF_REG_9] = _R30;
  61	/* frame pointer aka BPF_REG_10 */
  62	ctx->b2p[BPF_REG_FP] = _R18;
  63	/* eBPF jit internal registers */
  64	ctx->b2p[BPF_REG_AX] = _R20;
  65	ctx->b2p[TMP_REG] = _R31;		/* 32 bits */
  66}
  67
  68static int bpf_jit_stack_offsetof(struct codegen_context *ctx, int reg)
  69{
  70	if ((reg >= BPF_PPC_NVR_MIN && reg < 32) || reg == BPF_PPC_TC)
  71		return BPF_PPC_STACKFRAME(ctx) - 4 * (32 - reg);
  72
  73	WARN(true, "BPF JIT is asking about unknown registers, will crash the stack");
  74	/* Use the hole we have left for alignment */
  75	return BPF_PPC_STACKFRAME(ctx) - 4;
  76}
  77
  78#define SEEN_VREG_MASK		0x1ff80000 /* Volatile registers r3-r12 */
  79#define SEEN_NVREG_FULL_MASK	0x0003ffff /* Non volatile registers r14-r31 */
  80#define SEEN_NVREG_TEMP_MASK	0x00001e01 /* BPF_REG_5, BPF_REG_AX, TMP_REG */
  81
  82static inline bool bpf_has_stack_frame(struct codegen_context *ctx)
  83{
  84	/*
  85	 * We only need a stack frame if:
  86	 * - we call other functions (kernel helpers), or
  87	 * - we use non volatile registers, or
  88	 * - we use tail call counter
  89	 * - the bpf program uses its stack area
  90	 * The latter condition is deduced from the usage of BPF_REG_FP
  91	 */
  92	return ctx->seen & (SEEN_FUNC | SEEN_TAILCALL | SEEN_NVREG_FULL_MASK) ||
  93	       bpf_is_seen_register(ctx, bpf_to_ppc(BPF_REG_FP));
  94}
  95
  96void bpf_jit_realloc_regs(struct codegen_context *ctx)
  97{
  98	unsigned int nvreg_mask;
  99
 100	if (ctx->seen & SEEN_FUNC)
 101		nvreg_mask = SEEN_NVREG_TEMP_MASK;
 102	else
 103		nvreg_mask = SEEN_NVREG_FULL_MASK;
 104
 105	while (ctx->seen & nvreg_mask &&
 106	      (ctx->seen & SEEN_VREG_MASK) != SEEN_VREG_MASK) {
 107		int old = 32 - fls(ctx->seen & (nvreg_mask & 0xaaaaaaab));
 108		int new = 32 - fls(~ctx->seen & (SEEN_VREG_MASK & 0xaaaaaaaa));
 109		int i;
 110
 111		for (i = BPF_REG_0; i <= TMP_REG; i++) {
 112			if (ctx->b2p[i] != old)
 113				continue;
 114			ctx->b2p[i] = new;
 115			bpf_set_seen_register(ctx, new);
 116			bpf_clear_seen_register(ctx, old);
 117			if (i != TMP_REG) {
 118				bpf_set_seen_register(ctx, new - 1);
 119				bpf_clear_seen_register(ctx, old - 1);
 120			}
 121			break;
 122		}
 123	}
 124}
 125
 126void bpf_jit_build_prologue(u32 *image, struct codegen_context *ctx)
 127{
 128	int i;
 129
 130	/* Initialize tail_call_cnt, to be skipped if we do tail calls. */
 131	if (ctx->seen & SEEN_TAILCALL)
 132		EMIT(PPC_RAW_LI(_R4, 0));
 133	else
 134		EMIT(PPC_RAW_NOP());
 135
 136#define BPF_TAILCALL_PROLOGUE_SIZE	4
 137
 138	if (bpf_has_stack_frame(ctx))
 139		EMIT(PPC_RAW_STWU(_R1, _R1, -BPF_PPC_STACKFRAME(ctx)));
 140
 141	if (ctx->seen & SEEN_TAILCALL)
 142		EMIT(PPC_RAW_STW(_R4, _R1, bpf_jit_stack_offsetof(ctx, BPF_PPC_TC)));
 143
 144	/* First arg comes in as a 32 bits pointer. */
 145	EMIT(PPC_RAW_MR(bpf_to_ppc(BPF_REG_1), _R3));
 146	EMIT(PPC_RAW_LI(bpf_to_ppc(BPF_REG_1) - 1, 0));
 147
 148	/*
 149	 * We need a stack frame, but we don't necessarily need to
 150	 * save/restore LR unless we call other functions
 151	 */
 152	if (ctx->seen & SEEN_FUNC)
 153		EMIT(PPC_RAW_MFLR(_R0));
 154
 155	/*
 156	 * Back up non-volatile regs -- registers r18-r31
 157	 */
 158	for (i = BPF_PPC_NVR_MIN; i <= 31; i++)
 159		if (bpf_is_seen_register(ctx, i))
 160			EMIT(PPC_RAW_STW(i, _R1, bpf_jit_stack_offsetof(ctx, i)));
 161
 162	/* Setup frame pointer to point to the bpf stack area */
 163	if (bpf_is_seen_register(ctx, bpf_to_ppc(BPF_REG_FP))) {
 164		EMIT(PPC_RAW_LI(bpf_to_ppc(BPF_REG_FP) - 1, 0));
 165		EMIT(PPC_RAW_ADDI(bpf_to_ppc(BPF_REG_FP), _R1,
 166				  STACK_FRAME_MIN_SIZE + ctx->stack_size));
 167	}
 168
 169	if (ctx->seen & SEEN_FUNC)
 170		EMIT(PPC_RAW_STW(_R0, _R1, BPF_PPC_STACKFRAME(ctx) + PPC_LR_STKOFF));
 171}
 172
 173static void bpf_jit_emit_common_epilogue(u32 *image, struct codegen_context *ctx)
 174{
 175	int i;
 176
 177	/* Restore NVRs */
 178	for (i = BPF_PPC_NVR_MIN; i <= 31; i++)
 179		if (bpf_is_seen_register(ctx, i))
 180			EMIT(PPC_RAW_LWZ(i, _R1, bpf_jit_stack_offsetof(ctx, i)));
 181
 182	if (ctx->seen & SEEN_FUNC)
 183		EMIT(PPC_RAW_LWZ(_R0, _R1, BPF_PPC_STACKFRAME(ctx) + PPC_LR_STKOFF));
 184
 185	/* Tear down our stack frame */
 186	if (bpf_has_stack_frame(ctx))
 187		EMIT(PPC_RAW_ADDI(_R1, _R1, BPF_PPC_STACKFRAME(ctx)));
 188
 189	if (ctx->seen & SEEN_FUNC)
 190		EMIT(PPC_RAW_MTLR(_R0));
 191
 192}
 193
 194void bpf_jit_build_epilogue(u32 *image, struct codegen_context *ctx)
 195{
 196	EMIT(PPC_RAW_MR(_R3, bpf_to_ppc(BPF_REG_0)));
 197
 198	bpf_jit_emit_common_epilogue(image, ctx);
 199
 200	EMIT(PPC_RAW_BLR());
 201}
 202
 203/* Relative offset needs to be calculated based on final image location */
 204int bpf_jit_emit_func_call_rel(u32 *image, u32 *fimage, struct codegen_context *ctx, u64 func)
 205{
 206	s32 rel = (s32)func - (s32)(fimage + ctx->idx);
 207
 208	if (image && rel < 0x2000000 && rel >= -0x2000000) {
 209		EMIT(PPC_RAW_BL(rel));
 210	} else {
 211		/* Load function address into r0 */
 212		EMIT(PPC_RAW_LIS(_R0, IMM_H(func)));
 213		EMIT(PPC_RAW_ORI(_R0, _R0, IMM_L(func)));
 214		EMIT(PPC_RAW_MTCTR(_R0));
 215		EMIT(PPC_RAW_BCTRL());
 216	}
 217
 218	return 0;
 219}
 220
 221static int bpf_jit_emit_tail_call(u32 *image, struct codegen_context *ctx, u32 out)
 222{
 223	/*
 224	 * By now, the eBPF program has already setup parameters in r3-r6
 225	 * r3-r4/BPF_REG_1 - pointer to ctx -- passed as is to the next bpf program
 226	 * r5-r6/BPF_REG_2 - pointer to bpf_array
 227	 * r7-r8/BPF_REG_3 - index in bpf_array
 228	 */
 229	int b2p_bpf_array = bpf_to_ppc(BPF_REG_2);
 230	int b2p_index = bpf_to_ppc(BPF_REG_3);
 231
 232	/*
 233	 * if (index >= array->map.max_entries)
 234	 *   goto out;
 235	 */
 236	EMIT(PPC_RAW_LWZ(_R0, b2p_bpf_array, offsetof(struct bpf_array, map.max_entries)));
 237	EMIT(PPC_RAW_CMPLW(b2p_index, _R0));
 238	EMIT(PPC_RAW_LWZ(_R0, _R1, bpf_jit_stack_offsetof(ctx, BPF_PPC_TC)));
 239	PPC_BCC_SHORT(COND_GE, out);
 240
 241	/*
 242	 * if (tail_call_cnt >= MAX_TAIL_CALL_CNT)
 243	 *   goto out;
 244	 */
 245	EMIT(PPC_RAW_CMPLWI(_R0, MAX_TAIL_CALL_CNT));
 246	/* tail_call_cnt++; */
 247	EMIT(PPC_RAW_ADDIC(_R0, _R0, 1));
 248	PPC_BCC_SHORT(COND_GE, out);
 249
 250	/* prog = array->ptrs[index]; */
 251	EMIT(PPC_RAW_RLWINM(_R3, b2p_index, 2, 0, 29));
 252	EMIT(PPC_RAW_ADD(_R3, _R3, b2p_bpf_array));
 253	EMIT(PPC_RAW_LWZ(_R3, _R3, offsetof(struct bpf_array, ptrs)));
 254
 255	/*
 256	 * if (prog == NULL)
 257	 *   goto out;
 258	 */
 259	EMIT(PPC_RAW_CMPLWI(_R3, 0));
 260	PPC_BCC_SHORT(COND_EQ, out);
 261
 262	/* goto *(prog->bpf_func + prologue_size); */
 263	EMIT(PPC_RAW_LWZ(_R3, _R3, offsetof(struct bpf_prog, bpf_func)));
 264	EMIT(PPC_RAW_ADDIC(_R3, _R3, BPF_TAILCALL_PROLOGUE_SIZE));
 265	EMIT(PPC_RAW_MTCTR(_R3));
 266
 267	EMIT(PPC_RAW_MR(_R3, bpf_to_ppc(BPF_REG_1)));
 268
 269	/* Put tail_call_cnt in r4 */
 270	EMIT(PPC_RAW_MR(_R4, _R0));
 271
 272	/* tear restore NVRs, ... */
 273	bpf_jit_emit_common_epilogue(image, ctx);
 274
 275	EMIT(PPC_RAW_BCTR());
 276
 277	/* out: */
 278	return 0;
 279}
 280
 281/* Assemble the body code between the prologue & epilogue */
 282int bpf_jit_build_body(struct bpf_prog *fp, u32 *image, u32 *fimage, struct codegen_context *ctx,
 283		       u32 *addrs, int pass, bool extra_pass)
 284{
 285	const struct bpf_insn *insn = fp->insnsi;
 286	int flen = fp->len;
 287	int i, ret;
 288
 289	/* Start of epilogue code - will only be valid 2nd pass onwards */
 290	u32 exit_addr = addrs[flen];
 291
 292	for (i = 0; i < flen; i++) {
 293		u32 code = insn[i].code;
 294		u32 prevcode = i ? insn[i - 1].code : 0;
 295		u32 dst_reg = bpf_to_ppc(insn[i].dst_reg);
 296		u32 dst_reg_h = dst_reg - 1;
 297		u32 src_reg = bpf_to_ppc(insn[i].src_reg);
 298		u32 src_reg_h = src_reg - 1;
 299		u32 src2_reg = dst_reg;
 300		u32 src2_reg_h = dst_reg_h;
 301		u32 ax_reg = bpf_to_ppc(BPF_REG_AX);
 302		u32 tmp_reg = bpf_to_ppc(TMP_REG);
 303		u32 size = BPF_SIZE(code);
 304		u32 save_reg, ret_reg;
 305		s16 off = insn[i].off;
 306		s32 imm = insn[i].imm;
 307		bool func_addr_fixed;
 308		u64 func_addr;
 309		u32 true_cond;
 310		u32 tmp_idx;
 311		int j;
 312
 313		if (i && (BPF_CLASS(code) == BPF_ALU64 || BPF_CLASS(code) == BPF_ALU) &&
 314		    (BPF_CLASS(prevcode) == BPF_ALU64 || BPF_CLASS(prevcode) == BPF_ALU) &&
 315		    BPF_OP(prevcode) == BPF_MOV && BPF_SRC(prevcode) == BPF_X &&
 316		    insn[i - 1].dst_reg == insn[i].dst_reg && insn[i - 1].imm != 1) {
 317			src2_reg = bpf_to_ppc(insn[i - 1].src_reg);
 318			src2_reg_h = src2_reg - 1;
 319			ctx->idx = addrs[i - 1] / 4;
 320		}
 321
 322		/*
 323		 * addrs[] maps a BPF bytecode address into a real offset from
 324		 * the start of the body code.
 325		 */
 326		addrs[i] = ctx->idx * 4;
 327
 328		/*
 329		 * As an optimization, we note down which registers
 330		 * are used so that we can only save/restore those in our
 331		 * prologue and epilogue. We do this here regardless of whether
 332		 * the actual BPF instruction uses src/dst registers or not
 333		 * (for instance, BPF_CALL does not use them). The expectation
 334		 * is that those instructions will have src_reg/dst_reg set to
 335		 * 0. Even otherwise, we just lose some prologue/epilogue
 336		 * optimization but everything else should work without
 337		 * any issues.
 338		 */
 339		if (dst_reg >= 3 && dst_reg < 32) {
 340			bpf_set_seen_register(ctx, dst_reg);
 341			bpf_set_seen_register(ctx, dst_reg_h);
 342		}
 343
 344		if (src_reg >= 3 && src_reg < 32) {
 345			bpf_set_seen_register(ctx, src_reg);
 346			bpf_set_seen_register(ctx, src_reg_h);
 347		}
 348
 349		switch (code) {
 350		/*
 351		 * Arithmetic operations: ADD/SUB/MUL/DIV/MOD/NEG
 352		 */
 353		case BPF_ALU | BPF_ADD | BPF_X: /* (u32) dst += (u32) src */
 354			EMIT(PPC_RAW_ADD(dst_reg, src2_reg, src_reg));
 355			break;
 356		case BPF_ALU64 | BPF_ADD | BPF_X: /* dst += src */
 357			EMIT(PPC_RAW_ADDC(dst_reg, src2_reg, src_reg));
 358			EMIT(PPC_RAW_ADDE(dst_reg_h, src2_reg_h, src_reg_h));
 359			break;
 360		case BPF_ALU | BPF_SUB | BPF_X: /* (u32) dst -= (u32) src */
 361			EMIT(PPC_RAW_SUB(dst_reg, src2_reg, src_reg));
 362			break;
 363		case BPF_ALU64 | BPF_SUB | BPF_X: /* dst -= src */
 364			EMIT(PPC_RAW_SUBFC(dst_reg, src_reg, src2_reg));
 365			EMIT(PPC_RAW_SUBFE(dst_reg_h, src_reg_h, src2_reg_h));
 366			break;
 367		case BPF_ALU | BPF_SUB | BPF_K: /* (u32) dst -= (u32) imm */
 368			imm = -imm;
 369			fallthrough;
 370		case BPF_ALU | BPF_ADD | BPF_K: /* (u32) dst += (u32) imm */
 371			if (!imm) {
 372				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 373			} else if (IMM_HA(imm) & 0xffff) {
 374				EMIT(PPC_RAW_ADDIS(dst_reg, src2_reg, IMM_HA(imm)));
 375				src2_reg = dst_reg;
 376			}
 377			if (IMM_L(imm))
 378				EMIT(PPC_RAW_ADDI(dst_reg, src2_reg, IMM_L(imm)));
 379			break;
 380		case BPF_ALU64 | BPF_SUB | BPF_K: /* dst -= imm */
 381			imm = -imm;
 382			fallthrough;
 383		case BPF_ALU64 | BPF_ADD | BPF_K: /* dst += imm */
 384			if (!imm) {
 385				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 386				EMIT(PPC_RAW_MR(dst_reg_h, src2_reg_h));
 387				break;
 388			}
 389			if (imm >= -32768 && imm < 32768) {
 390				EMIT(PPC_RAW_ADDIC(dst_reg, src2_reg, imm));
 391			} else {
 392				PPC_LI32(_R0, imm);
 393				EMIT(PPC_RAW_ADDC(dst_reg, src2_reg, _R0));
 394			}
 395			if (imm >= 0 || (BPF_OP(code) == BPF_SUB && imm == 0x80000000))
 396				EMIT(PPC_RAW_ADDZE(dst_reg_h, src2_reg_h));
 397			else
 398				EMIT(PPC_RAW_ADDME(dst_reg_h, src2_reg_h));
 399			break;
 400		case BPF_ALU64 | BPF_MUL | BPF_X: /* dst *= src */
 401			bpf_set_seen_register(ctx, tmp_reg);
 402			EMIT(PPC_RAW_MULW(_R0, src2_reg, src_reg_h));
 403			EMIT(PPC_RAW_MULW(dst_reg_h, src2_reg_h, src_reg));
 404			EMIT(PPC_RAW_MULHWU(tmp_reg, src2_reg, src_reg));
 405			EMIT(PPC_RAW_MULW(dst_reg, src2_reg, src_reg));
 406			EMIT(PPC_RAW_ADD(dst_reg_h, dst_reg_h, _R0));
 407			EMIT(PPC_RAW_ADD(dst_reg_h, dst_reg_h, tmp_reg));
 408			break;
 409		case BPF_ALU | BPF_MUL | BPF_X: /* (u32) dst *= (u32) src */
 410			EMIT(PPC_RAW_MULW(dst_reg, src2_reg, src_reg));
 411			break;
 412		case BPF_ALU | BPF_MUL | BPF_K: /* (u32) dst *= (u32) imm */
 413			if (imm == 1) {
 414				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 415			} else if (imm == -1) {
 416				EMIT(PPC_RAW_SUBFIC(dst_reg, src2_reg, 0));
 417			} else if (is_power_of_2((u32)imm)) {
 418				EMIT(PPC_RAW_SLWI(dst_reg, src2_reg, ilog2(imm)));
 419			} else if (imm >= -32768 && imm < 32768) {
 420				EMIT(PPC_RAW_MULI(dst_reg, src2_reg, imm));
 421			} else {
 422				PPC_LI32(_R0, imm);
 423				EMIT(PPC_RAW_MULW(dst_reg, src2_reg, _R0));
 424			}
 425			break;
 426		case BPF_ALU64 | BPF_MUL | BPF_K: /* dst *= imm */
 427			if (!imm) {
 428				PPC_LI32(dst_reg, 0);
 429				PPC_LI32(dst_reg_h, 0);
 430			} else if (imm == 1) {
 431				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 432				EMIT(PPC_RAW_MR(dst_reg_h, src2_reg_h));
 433			} else if (imm == -1) {
 434				EMIT(PPC_RAW_SUBFIC(dst_reg, src2_reg, 0));
 435				EMIT(PPC_RAW_SUBFZE(dst_reg_h, src2_reg_h));
 436			} else if (imm > 0 && is_power_of_2(imm)) {
 437				imm = ilog2(imm);
 438				EMIT(PPC_RAW_RLWINM(dst_reg_h, src2_reg_h, imm, 0, 31 - imm));
 439				EMIT(PPC_RAW_RLWIMI(dst_reg_h, dst_reg, imm, 32 - imm, 31));
 440				EMIT(PPC_RAW_SLWI(dst_reg, src2_reg, imm));
 441			} else {
 442				bpf_set_seen_register(ctx, tmp_reg);
 443				PPC_LI32(tmp_reg, imm);
 444				EMIT(PPC_RAW_MULW(dst_reg_h, src2_reg_h, tmp_reg));
 445				if (imm < 0)
 446					EMIT(PPC_RAW_SUB(dst_reg_h, dst_reg_h, src2_reg));
 447				EMIT(PPC_RAW_MULHWU(_R0, src2_reg, tmp_reg));
 448				EMIT(PPC_RAW_MULW(dst_reg, src2_reg, tmp_reg));
 449				EMIT(PPC_RAW_ADD(dst_reg_h, dst_reg_h, _R0));
 450			}
 451			break;
 452		case BPF_ALU | BPF_DIV | BPF_X: /* (u32) dst /= (u32) src */
 453			if (off)
 454				EMIT(PPC_RAW_DIVW(dst_reg, src2_reg, src_reg));
 455			else
 456				EMIT(PPC_RAW_DIVWU(dst_reg, src2_reg, src_reg));
 457			break;
 458		case BPF_ALU | BPF_MOD | BPF_X: /* (u32) dst %= (u32) src */
 459			if (off)
 460				EMIT(PPC_RAW_DIVW(_R0, src2_reg, src_reg));
 461			else
 462				EMIT(PPC_RAW_DIVWU(_R0, src2_reg, src_reg));
 463			EMIT(PPC_RAW_MULW(_R0, src_reg, _R0));
 464			EMIT(PPC_RAW_SUB(dst_reg, src2_reg, _R0));
 465			break;
 466		case BPF_ALU64 | BPF_DIV | BPF_X: /* dst /= src */
 467			return -EOPNOTSUPP;
 468		case BPF_ALU64 | BPF_MOD | BPF_X: /* dst %= src */
 469			return -EOPNOTSUPP;
 470		case BPF_ALU | BPF_DIV | BPF_K: /* (u32) dst /= (u32) imm */
 471			if (!imm)
 472				return -EINVAL;
 473			if (imm == 1) {
 474				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 475			} else if (is_power_of_2((u32)imm)) {
 476				if (off)
 477					EMIT(PPC_RAW_SRAWI(dst_reg, src2_reg, ilog2(imm)));
 478				else
 479					EMIT(PPC_RAW_SRWI(dst_reg, src2_reg, ilog2(imm)));
 480			} else {
 481				PPC_LI32(_R0, imm);
 482				if (off)
 483					EMIT(PPC_RAW_DIVW(dst_reg, src2_reg, _R0));
 484				else
 485					EMIT(PPC_RAW_DIVWU(dst_reg, src2_reg, _R0));
 486			}
 487			break;
 488		case BPF_ALU | BPF_MOD | BPF_K: /* (u32) dst %= (u32) imm */
 489			if (!imm)
 490				return -EINVAL;
 491
 492			if (!is_power_of_2((u32)imm)) {
 493				bpf_set_seen_register(ctx, tmp_reg);
 494				PPC_LI32(tmp_reg, imm);
 495				if (off)
 496					EMIT(PPC_RAW_DIVW(_R0, src2_reg, tmp_reg));
 497				else
 498					EMIT(PPC_RAW_DIVWU(_R0, src2_reg, tmp_reg));
 499				EMIT(PPC_RAW_MULW(_R0, tmp_reg, _R0));
 500				EMIT(PPC_RAW_SUB(dst_reg, src2_reg, _R0));
 501			} else if (imm == 1) {
 502				EMIT(PPC_RAW_LI(dst_reg, 0));
 503			} else if (off) {
 504				EMIT(PPC_RAW_SRAWI(_R0, src2_reg, ilog2(imm)));
 505				EMIT(PPC_RAW_ADDZE(_R0, _R0));
 506				EMIT(PPC_RAW_SLWI(_R0, _R0, ilog2(imm)));
 507				EMIT(PPC_RAW_SUB(dst_reg, src2_reg, _R0));
 508			} else {
 509				imm = ilog2((u32)imm);
 510				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 0, 32 - imm, 31));
 511			}
 512			break;
 513		case BPF_ALU64 | BPF_MOD | BPF_K: /* dst %= imm */
 514			if (!imm)
 515				return -EINVAL;
 516			if (imm < 0)
 517				imm = -imm;
 518			if (!is_power_of_2(imm))
 519				return -EOPNOTSUPP;
 520			if (imm == 1) {
 521				EMIT(PPC_RAW_LI(dst_reg, 0));
 522				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 523			} else if (off) {
 524				EMIT(PPC_RAW_SRAWI(dst_reg_h, src2_reg_h, 31));
 525				EMIT(PPC_RAW_XOR(dst_reg, src2_reg, dst_reg_h));
 526				EMIT(PPC_RAW_SUBFC(dst_reg, dst_reg_h, dst_reg));
 527				EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 0, 32 - ilog2(imm), 31));
 528				EMIT(PPC_RAW_XOR(dst_reg, dst_reg, dst_reg_h));
 529				EMIT(PPC_RAW_SUBFC(dst_reg, dst_reg_h, dst_reg));
 530				EMIT(PPC_RAW_SUBFE(dst_reg_h, dst_reg_h, dst_reg_h));
 531			} else {
 532				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 0, 32 - ilog2(imm), 31));
 533				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 534			}
 535			break;
 536		case BPF_ALU64 | BPF_DIV | BPF_K: /* dst /= imm */
 537			if (!imm)
 538				return -EINVAL;
 539			if (!is_power_of_2(abs(imm)))
 540				return -EOPNOTSUPP;
 541
 542			if (imm < 0) {
 543				EMIT(PPC_RAW_SUBFIC(dst_reg, src2_reg, 0));
 544				EMIT(PPC_RAW_SUBFZE(dst_reg_h, src2_reg_h));
 545				imm = -imm;
 546				src2_reg = dst_reg;
 547			}
 548			if (imm == 1) {
 549				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 550				EMIT(PPC_RAW_MR(dst_reg_h, src2_reg_h));
 551			} else {
 552				imm = ilog2(imm);
 553				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 32 - imm, imm, 31));
 554				EMIT(PPC_RAW_RLWIMI(dst_reg, src2_reg_h, 32 - imm, 0, imm - 1));
 555				EMIT(PPC_RAW_SRAWI(dst_reg_h, src2_reg_h, imm));
 556			}
 557			break;
 558		case BPF_ALU | BPF_NEG: /* (u32) dst = -dst */
 559			EMIT(PPC_RAW_NEG(dst_reg, src2_reg));
 560			break;
 561		case BPF_ALU64 | BPF_NEG: /* dst = -dst */
 562			EMIT(PPC_RAW_SUBFIC(dst_reg, src2_reg, 0));
 563			EMIT(PPC_RAW_SUBFZE(dst_reg_h, src2_reg_h));
 564			break;
 565
 566		/*
 567		 * Logical operations: AND/OR/XOR/[A]LSH/[A]RSH
 568		 */
 569		case BPF_ALU64 | BPF_AND | BPF_X: /* dst = dst & src */
 570			EMIT(PPC_RAW_AND(dst_reg, src2_reg, src_reg));
 571			EMIT(PPC_RAW_AND(dst_reg_h, src2_reg_h, src_reg_h));
 572			break;
 573		case BPF_ALU | BPF_AND | BPF_X: /* (u32) dst = dst & src */
 574			EMIT(PPC_RAW_AND(dst_reg, src2_reg, src_reg));
 575			break;
 576		case BPF_ALU64 | BPF_AND | BPF_K: /* dst = dst & imm */
 577			if (imm >= 0)
 578				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 579			fallthrough;
 580		case BPF_ALU | BPF_AND | BPF_K: /* (u32) dst = dst & imm */
 581			if (!IMM_H(imm)) {
 582				EMIT(PPC_RAW_ANDI(dst_reg, src2_reg, IMM_L(imm)));
 583			} else if (!IMM_L(imm)) {
 584				EMIT(PPC_RAW_ANDIS(dst_reg, src2_reg, IMM_H(imm)));
 585			} else if (imm == (((1 << fls(imm)) - 1) ^ ((1 << (ffs(i) - 1)) - 1))) {
 586				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 0,
 587						    32 - fls(imm), 32 - ffs(imm)));
 588			} else {
 589				PPC_LI32(_R0, imm);
 590				EMIT(PPC_RAW_AND(dst_reg, src2_reg, _R0));
 591			}
 592			break;
 593		case BPF_ALU64 | BPF_OR | BPF_X: /* dst = dst | src */
 594			EMIT(PPC_RAW_OR(dst_reg, src2_reg, src_reg));
 595			EMIT(PPC_RAW_OR(dst_reg_h, src2_reg_h, src_reg_h));
 596			break;
 597		case BPF_ALU | BPF_OR | BPF_X: /* dst = (u32) dst | (u32) src */
 598			EMIT(PPC_RAW_OR(dst_reg, src2_reg, src_reg));
 599			break;
 600		case BPF_ALU64 | BPF_OR | BPF_K:/* dst = dst | imm */
 601			/* Sign-extended */
 602			if (imm < 0)
 603				EMIT(PPC_RAW_LI(dst_reg_h, -1));
 604			fallthrough;
 605		case BPF_ALU | BPF_OR | BPF_K:/* dst = (u32) dst | (u32) imm */
 606			if (IMM_L(imm)) {
 607				EMIT(PPC_RAW_ORI(dst_reg, src2_reg, IMM_L(imm)));
 608				src2_reg = dst_reg;
 609			}
 610			if (IMM_H(imm))
 611				EMIT(PPC_RAW_ORIS(dst_reg, src2_reg, IMM_H(imm)));
 612			break;
 613		case BPF_ALU64 | BPF_XOR | BPF_X: /* dst ^= src */
 614			if (dst_reg == src_reg) {
 615				EMIT(PPC_RAW_LI(dst_reg, 0));
 616				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 617			} else {
 618				EMIT(PPC_RAW_XOR(dst_reg, src2_reg, src_reg));
 619				EMIT(PPC_RAW_XOR(dst_reg_h, src2_reg_h, src_reg_h));
 620			}
 621			break;
 622		case BPF_ALU | BPF_XOR | BPF_X: /* (u32) dst ^= src */
 623			if (dst_reg == src_reg)
 624				EMIT(PPC_RAW_LI(dst_reg, 0));
 625			else
 626				EMIT(PPC_RAW_XOR(dst_reg, src2_reg, src_reg));
 627			break;
 628		case BPF_ALU64 | BPF_XOR | BPF_K: /* dst ^= imm */
 629			if (imm < 0)
 630				EMIT(PPC_RAW_NOR(dst_reg_h, src2_reg_h, src2_reg_h));
 631			fallthrough;
 632		case BPF_ALU | BPF_XOR | BPF_K: /* (u32) dst ^= (u32) imm */
 633			if (IMM_L(imm)) {
 634				EMIT(PPC_RAW_XORI(dst_reg, src2_reg, IMM_L(imm)));
 635				src2_reg = dst_reg;
 636			}
 637			if (IMM_H(imm))
 638				EMIT(PPC_RAW_XORIS(dst_reg, src2_reg, IMM_H(imm)));
 639			break;
 640		case BPF_ALU | BPF_LSH | BPF_X: /* (u32) dst <<= (u32) src */
 641			EMIT(PPC_RAW_SLW(dst_reg, src2_reg, src_reg));
 642			break;
 643		case BPF_ALU64 | BPF_LSH | BPF_X: /* dst <<= src; */
 644			bpf_set_seen_register(ctx, tmp_reg);
 645			EMIT(PPC_RAW_SUBFIC(_R0, src_reg, 32));
 646			EMIT(PPC_RAW_SLW(dst_reg_h, src2_reg_h, src_reg));
 647			EMIT(PPC_RAW_ADDI(tmp_reg, src_reg, 32));
 648			EMIT(PPC_RAW_SRW(_R0, src2_reg, _R0));
 649			EMIT(PPC_RAW_SLW(tmp_reg, src2_reg, tmp_reg));
 650			EMIT(PPC_RAW_OR(dst_reg_h, dst_reg_h, _R0));
 651			EMIT(PPC_RAW_SLW(dst_reg, src2_reg, src_reg));
 652			EMIT(PPC_RAW_OR(dst_reg_h, dst_reg_h, tmp_reg));
 653			break;
 654		case BPF_ALU | BPF_LSH | BPF_K: /* (u32) dst <<= (u32) imm */
 655			if (imm)
 656				EMIT(PPC_RAW_SLWI(dst_reg, src2_reg, imm));
 657			else
 658				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 659			break;
 660		case BPF_ALU64 | BPF_LSH | BPF_K: /* dst <<= imm */
 661			if (imm < 0)
 662				return -EINVAL;
 663			if (!imm) {
 664				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 665			} else if (imm < 32) {
 666				EMIT(PPC_RAW_RLWINM(dst_reg_h, src2_reg_h, imm, 0, 31 - imm));
 667				EMIT(PPC_RAW_RLWIMI(dst_reg_h, src2_reg, imm, 32 - imm, 31));
 668				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, imm, 0, 31 - imm));
 669			} else if (imm < 64) {
 670				EMIT(PPC_RAW_RLWINM(dst_reg_h, src2_reg, imm, 0, 31 - imm));
 671				EMIT(PPC_RAW_LI(dst_reg, 0));
 672			} else {
 673				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 674				EMIT(PPC_RAW_LI(dst_reg, 0));
 675			}
 676			break;
 677		case BPF_ALU | BPF_RSH | BPF_X: /* (u32) dst >>= (u32) src */
 678			EMIT(PPC_RAW_SRW(dst_reg, src2_reg, src_reg));
 679			break;
 680		case BPF_ALU64 | BPF_RSH | BPF_X: /* dst >>= src */
 681			bpf_set_seen_register(ctx, tmp_reg);
 682			EMIT(PPC_RAW_SUBFIC(_R0, src_reg, 32));
 683			EMIT(PPC_RAW_SRW(dst_reg, src2_reg, src_reg));
 684			EMIT(PPC_RAW_ADDI(tmp_reg, src_reg, 32));
 685			EMIT(PPC_RAW_SLW(_R0, src2_reg_h, _R0));
 686			EMIT(PPC_RAW_SRW(tmp_reg, dst_reg_h, tmp_reg));
 687			EMIT(PPC_RAW_OR(dst_reg, dst_reg, _R0));
 688			EMIT(PPC_RAW_SRW(dst_reg_h, src2_reg_h, src_reg));
 689			EMIT(PPC_RAW_OR(dst_reg, dst_reg, tmp_reg));
 690			break;
 691		case BPF_ALU | BPF_RSH | BPF_K: /* (u32) dst >>= (u32) imm */
 692			if (imm)
 693				EMIT(PPC_RAW_SRWI(dst_reg, src2_reg, imm));
 694			else
 695				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 696			break;
 697		case BPF_ALU64 | BPF_RSH | BPF_K: /* dst >>= imm */
 698			if (imm < 0)
 699				return -EINVAL;
 700			if (!imm) {
 701				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 702				EMIT(PPC_RAW_MR(dst_reg_h, src2_reg_h));
 703			} else if (imm < 32) {
 704				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 32 - imm, imm, 31));
 705				EMIT(PPC_RAW_RLWIMI(dst_reg, src2_reg_h, 32 - imm, 0, imm - 1));
 706				EMIT(PPC_RAW_RLWINM(dst_reg_h, src2_reg_h, 32 - imm, imm, 31));
 707			} else if (imm < 64) {
 708				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg_h, 64 - imm, imm - 32, 31));
 709				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 710			} else {
 711				EMIT(PPC_RAW_LI(dst_reg, 0));
 712				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 713			}
 714			break;
 715		case BPF_ALU | BPF_ARSH | BPF_X: /* (s32) dst >>= src */
 716			EMIT(PPC_RAW_SRAW(dst_reg, src2_reg, src_reg));
 717			break;
 718		case BPF_ALU64 | BPF_ARSH | BPF_X: /* (s64) dst >>= src */
 719			bpf_set_seen_register(ctx, tmp_reg);
 720			EMIT(PPC_RAW_SUBFIC(_R0, src_reg, 32));
 721			EMIT(PPC_RAW_SRW(dst_reg, src2_reg, src_reg));
 722			EMIT(PPC_RAW_SLW(_R0, src2_reg_h, _R0));
 723			EMIT(PPC_RAW_ADDI(tmp_reg, src_reg, 32));
 724			EMIT(PPC_RAW_OR(dst_reg, dst_reg, _R0));
 725			EMIT(PPC_RAW_RLWINM(_R0, tmp_reg, 0, 26, 26));
 726			EMIT(PPC_RAW_SRAW(tmp_reg, src2_reg_h, tmp_reg));
 727			EMIT(PPC_RAW_SRAW(dst_reg_h, src2_reg_h, src_reg));
 728			EMIT(PPC_RAW_SLW(tmp_reg, tmp_reg, _R0));
 729			EMIT(PPC_RAW_OR(dst_reg, dst_reg, tmp_reg));
 730			break;
 731		case BPF_ALU | BPF_ARSH | BPF_K: /* (s32) dst >>= imm */
 732			if (imm)
 733				EMIT(PPC_RAW_SRAWI(dst_reg, src2_reg, imm));
 734			else
 735				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 736			break;
 737		case BPF_ALU64 | BPF_ARSH | BPF_K: /* (s64) dst >>= imm */
 738			if (imm < 0)
 739				return -EINVAL;
 740			if (!imm) {
 741				EMIT(PPC_RAW_MR(dst_reg, src2_reg));
 742				EMIT(PPC_RAW_MR(dst_reg_h, src2_reg_h));
 743			} else if (imm < 32) {
 744				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 32 - imm, imm, 31));
 745				EMIT(PPC_RAW_RLWIMI(dst_reg, src2_reg_h, 32 - imm, 0, imm - 1));
 746				EMIT(PPC_RAW_SRAWI(dst_reg_h, src2_reg_h, imm));
 747			} else if (imm < 64) {
 748				EMIT(PPC_RAW_SRAWI(dst_reg, src2_reg_h, imm - 32));
 749				EMIT(PPC_RAW_SRAWI(dst_reg_h, src2_reg_h, 31));
 750			} else {
 751				EMIT(PPC_RAW_SRAWI(dst_reg, src2_reg_h, 31));
 752				EMIT(PPC_RAW_SRAWI(dst_reg_h, src2_reg_h, 31));
 753			}
 754			break;
 755
 756		/*
 757		 * MOV
 758		 */
 759		case BPF_ALU64 | BPF_MOV | BPF_X: /* dst = src */
 760			if (off == 8) {
 761				EMIT(PPC_RAW_EXTSB(dst_reg, src_reg));
 762				EMIT(PPC_RAW_SRAWI(dst_reg_h, dst_reg, 31));
 763			} else if (off == 16) {
 764				EMIT(PPC_RAW_EXTSH(dst_reg, src_reg));
 765				EMIT(PPC_RAW_SRAWI(dst_reg_h, dst_reg, 31));
 766			} else if (off == 32 && dst_reg == src_reg) {
 767				EMIT(PPC_RAW_SRAWI(dst_reg_h, src_reg, 31));
 768			} else if (off == 32) {
 769				EMIT(PPC_RAW_MR(dst_reg, src_reg));
 770				EMIT(PPC_RAW_SRAWI(dst_reg_h, src_reg, 31));
 771			} else if (dst_reg != src_reg) {
 772				EMIT(PPC_RAW_MR(dst_reg, src_reg));
 773				EMIT(PPC_RAW_MR(dst_reg_h, src_reg_h));
 774			}
 775			break;
 776		case BPF_ALU | BPF_MOV | BPF_X: /* (u32) dst = src */
 777			/* special mov32 for zext */
 778			if (imm == 1)
 779				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 780			else if (off == 8)
 781				EMIT(PPC_RAW_EXTSB(dst_reg, src_reg));
 782			else if (off == 16)
 783				EMIT(PPC_RAW_EXTSH(dst_reg, src_reg));
 784			else if (dst_reg != src_reg)
 785				EMIT(PPC_RAW_MR(dst_reg, src_reg));
 786			break;
 787		case BPF_ALU64 | BPF_MOV | BPF_K: /* dst = (s64) imm */
 788			PPC_LI32(dst_reg, imm);
 789			PPC_EX32(dst_reg_h, imm);
 790			break;
 791		case BPF_ALU | BPF_MOV | BPF_K: /* (u32) dst = imm */
 792			PPC_LI32(dst_reg, imm);
 793			break;
 794
 795		/*
 796		 * BPF_FROM_BE/LE
 797		 */
 798		case BPF_ALU | BPF_END | BPF_FROM_LE:
 799		case BPF_ALU64 | BPF_END | BPF_FROM_LE:
 800			switch (imm) {
 801			case 16:
 802				/* Copy 16 bits to upper part */
 803				EMIT(PPC_RAW_RLWIMI(dst_reg, src2_reg, 16, 0, 15));
 804				/* Rotate 8 bits right & mask */
 805				EMIT(PPC_RAW_RLWINM(dst_reg, dst_reg, 24, 16, 31));
 806				break;
 807			case 32:
 808				/*
 809				 * Rotate word left by 8 bits:
 810				 * 2 bytes are already in their final position
 811				 * -- byte 2 and 4 (of bytes 1, 2, 3 and 4)
 812				 */
 813				EMIT(PPC_RAW_RLWINM(_R0, src2_reg, 8, 0, 31));
 814				/* Rotate 24 bits and insert byte 1 */
 815				EMIT(PPC_RAW_RLWIMI(_R0, src2_reg, 24, 0, 7));
 816				/* Rotate 24 bits and insert byte 3 */
 817				EMIT(PPC_RAW_RLWIMI(_R0, src2_reg, 24, 16, 23));
 818				EMIT(PPC_RAW_MR(dst_reg, _R0));
 819				break;
 820			case 64:
 821				bpf_set_seen_register(ctx, tmp_reg);
 822				EMIT(PPC_RAW_RLWINM(tmp_reg, src2_reg, 8, 0, 31));
 823				EMIT(PPC_RAW_RLWINM(_R0, src2_reg_h, 8, 0, 31));
 824				/* Rotate 24 bits and insert byte 1 */
 825				EMIT(PPC_RAW_RLWIMI(tmp_reg, src2_reg, 24, 0, 7));
 826				EMIT(PPC_RAW_RLWIMI(_R0, src2_reg_h, 24, 0, 7));
 827				/* Rotate 24 bits and insert byte 3 */
 828				EMIT(PPC_RAW_RLWIMI(tmp_reg, src2_reg, 24, 16, 23));
 829				EMIT(PPC_RAW_RLWIMI(_R0, src2_reg_h, 24, 16, 23));
 830				EMIT(PPC_RAW_MR(dst_reg, _R0));
 831				EMIT(PPC_RAW_MR(dst_reg_h, tmp_reg));
 832				break;
 833			}
 834			if (BPF_CLASS(code) == BPF_ALU64 && imm != 64)
 835				EMIT(PPC_RAW_LI(dst_reg_h, 0));
 836			break;
 837		case BPF_ALU | BPF_END | BPF_FROM_BE:
 838			switch (imm) {
 839			case 16:
 840				/* zero-extend 16 bits into 32 bits */
 841				EMIT(PPC_RAW_RLWINM(dst_reg, src2_reg, 0, 16, 31));
 842				break;
 843			case 32:
 844			case 64:
 845				/* nop */
 846				break;
 847			}
 848			break;
 849
 850		/*
 851		 * BPF_ST NOSPEC (speculation barrier)
 852		 */
 853		case BPF_ST | BPF_NOSPEC:
 854			break;
 855
 856		/*
 857		 * BPF_ST(X)
 858		 */
 859		case BPF_STX | BPF_MEM | BPF_B: /* *(u8 *)(dst + off) = src */
 860			EMIT(PPC_RAW_STB(src_reg, dst_reg, off));
 861			break;
 862		case BPF_ST | BPF_MEM | BPF_B: /* *(u8 *)(dst + off) = imm */
 863			PPC_LI32(_R0, imm);
 864			EMIT(PPC_RAW_STB(_R0, dst_reg, off));
 865			break;
 866		case BPF_STX | BPF_MEM | BPF_H: /* (u16 *)(dst + off) = src */
 867			EMIT(PPC_RAW_STH(src_reg, dst_reg, off));
 868			break;
 869		case BPF_ST | BPF_MEM | BPF_H: /* (u16 *)(dst + off) = imm */
 870			PPC_LI32(_R0, imm);
 871			EMIT(PPC_RAW_STH(_R0, dst_reg, off));
 872			break;
 873		case BPF_STX | BPF_MEM | BPF_W: /* *(u32 *)(dst + off) = src */
 874			EMIT(PPC_RAW_STW(src_reg, dst_reg, off));
 875			break;
 876		case BPF_ST | BPF_MEM | BPF_W: /* *(u32 *)(dst + off) = imm */
 877			PPC_LI32(_R0, imm);
 878			EMIT(PPC_RAW_STW(_R0, dst_reg, off));
 879			break;
 880		case BPF_STX | BPF_MEM | BPF_DW: /* (u64 *)(dst + off) = src */
 881			EMIT(PPC_RAW_STW(src_reg_h, dst_reg, off));
 882			EMIT(PPC_RAW_STW(src_reg, dst_reg, off + 4));
 883			break;
 884		case BPF_ST | BPF_MEM | BPF_DW: /* *(u64 *)(dst + off) = imm */
 885			PPC_LI32(_R0, imm);
 886			EMIT(PPC_RAW_STW(_R0, dst_reg, off + 4));
 887			PPC_EX32(_R0, imm);
 888			EMIT(PPC_RAW_STW(_R0, dst_reg, off));
 889			break;
 890
 891		/*
 892		 * BPF_STX ATOMIC (atomic ops)
 893		 */
 894		case BPF_STX | BPF_ATOMIC | BPF_W:
 895			save_reg = _R0;
 896			ret_reg = src_reg;
 897
 898			bpf_set_seen_register(ctx, tmp_reg);
 899			bpf_set_seen_register(ctx, ax_reg);
 900
 901			/* Get offset into TMP_REG */
 902			EMIT(PPC_RAW_LI(tmp_reg, off));
 903			tmp_idx = ctx->idx * 4;
 904			/* load value from memory into r0 */
 905			EMIT(PPC_RAW_LWARX(_R0, tmp_reg, dst_reg, 0));
 906
 907			/* Save old value in BPF_REG_AX */
 908			if (imm & BPF_FETCH)
 909				EMIT(PPC_RAW_MR(ax_reg, _R0));
 910
 911			switch (imm) {
 912			case BPF_ADD:
 913			case BPF_ADD | BPF_FETCH:
 914				EMIT(PPC_RAW_ADD(_R0, _R0, src_reg));
 915				break;
 916			case BPF_AND:
 917			case BPF_AND | BPF_FETCH:
 918				EMIT(PPC_RAW_AND(_R0, _R0, src_reg));
 919				break;
 920			case BPF_OR:
 921			case BPF_OR | BPF_FETCH:
 922				EMIT(PPC_RAW_OR(_R0, _R0, src_reg));
 923				break;
 924			case BPF_XOR:
 925			case BPF_XOR | BPF_FETCH:
 926				EMIT(PPC_RAW_XOR(_R0, _R0, src_reg));
 927				break;
 928			case BPF_CMPXCHG:
 929				/*
 930				 * Return old value in BPF_REG_0 for BPF_CMPXCHG &
 931				 * in src_reg for other cases.
 932				 */
 933				ret_reg = bpf_to_ppc(BPF_REG_0);
 934
 935				/* Compare with old value in BPF_REG_0 */
 936				EMIT(PPC_RAW_CMPW(bpf_to_ppc(BPF_REG_0), _R0));
 937				/* Don't set if different from old value */
 938				PPC_BCC_SHORT(COND_NE, (ctx->idx + 3) * 4);
 939				fallthrough;
 940			case BPF_XCHG:
 941				save_reg = src_reg;
 942				break;
 943			default:
 944				pr_err_ratelimited("eBPF filter atomic op code %02x (@%d) unsupported\n",
 945						   code, i);
 946				return -EOPNOTSUPP;
 947			}
 948
 949			/* store new value */
 950			EMIT(PPC_RAW_STWCX(save_reg, tmp_reg, dst_reg));
 951			/* we're done if this succeeded */
 952			PPC_BCC_SHORT(COND_NE, tmp_idx);
 953
 954			/* For the BPF_FETCH variant, get old data into src_reg */
 955			if (imm & BPF_FETCH) {
 956				EMIT(PPC_RAW_MR(ret_reg, ax_reg));
 957				if (!fp->aux->verifier_zext)
 958					EMIT(PPC_RAW_LI(ret_reg - 1, 0)); /* higher 32-bit */
 959			}
 960			break;
 961
 962		case BPF_STX | BPF_ATOMIC | BPF_DW: /* *(u64 *)(dst + off) += src */
 963			return -EOPNOTSUPP;
 964
 965		/*
 966		 * BPF_LDX
 967		 */
 968		case BPF_LDX | BPF_MEM | BPF_B: /* dst = *(u8 *)(ul) (src + off) */
 969		case BPF_LDX | BPF_MEMSX | BPF_B:
 970		case BPF_LDX | BPF_PROBE_MEM | BPF_B:
 971		case BPF_LDX | BPF_PROBE_MEMSX | BPF_B:
 972		case BPF_LDX | BPF_MEM | BPF_H: /* dst = *(u16 *)(ul) (src + off) */
 973		case BPF_LDX | BPF_MEMSX | BPF_H:
 974		case BPF_LDX | BPF_PROBE_MEM | BPF_H:
 975		case BPF_LDX | BPF_PROBE_MEMSX | BPF_H:
 976		case BPF_LDX | BPF_MEM | BPF_W: /* dst = *(u32 *)(ul) (src + off) */
 977		case BPF_LDX | BPF_MEMSX | BPF_W:
 978		case BPF_LDX | BPF_PROBE_MEM | BPF_W:
 979		case BPF_LDX | BPF_PROBE_MEMSX | BPF_W:
 980		case BPF_LDX | BPF_MEM | BPF_DW: /* dst = *(u64 *)(ul) (src + off) */
 981		case BPF_LDX | BPF_PROBE_MEM | BPF_DW:
 982			/*
 983			 * As PTR_TO_BTF_ID that uses BPF_PROBE_MEM mode could either be a valid
 984			 * kernel pointer or NULL but not a userspace address, execute BPF_PROBE_MEM
 985			 * load only if addr is kernel address (see is_kernel_addr()), otherwise
 986			 * set dst_reg=0 and move on.
 987			 */
 988			if (BPF_MODE(code) == BPF_PROBE_MEM || BPF_MODE(code) == BPF_PROBE_MEMSX) {
 989				PPC_LI32(_R0, TASK_SIZE - off);
 990				EMIT(PPC_RAW_CMPLW(src_reg, _R0));
 991				PPC_BCC_SHORT(COND_GT, (ctx->idx + 4) * 4);
 992				EMIT(PPC_RAW_LI(dst_reg, 0));
 993				/*
 994				 * For BPF_DW case, "li reg_h,0" would be needed when
 995				 * !fp->aux->verifier_zext. Emit NOP otherwise.
 996				 *
 997				 * Note that "li reg_h,0" is emitted for BPF_B/H/W case,
 998				 * if necessary. So, jump there instead of emitting an
 999				 * additional "li reg_h,0" instruction.
1000				 */
1001				if (size == BPF_DW && !fp->aux->verifier_zext)
1002					EMIT(PPC_RAW_LI(dst_reg_h, 0));
1003				else
1004					EMIT(PPC_RAW_NOP());
1005				/*
1006				 * Need to jump two instructions instead of one for BPF_DW case
1007				 * as there are two load instructions for dst_reg_h & dst_reg
1008				 * respectively.
1009				 */
1010				if (size == BPF_DW ||
1011				    (size == BPF_B && BPF_MODE(code) == BPF_PROBE_MEMSX))
1012					PPC_JMP((ctx->idx + 3) * 4);
1013				else
1014					PPC_JMP((ctx->idx + 2) * 4);
1015			}
1016
1017			if (BPF_MODE(code) == BPF_MEMSX || BPF_MODE(code) == BPF_PROBE_MEMSX) {
1018				switch (size) {
1019				case BPF_B:
1020					EMIT(PPC_RAW_LBZ(dst_reg, src_reg, off));
1021					EMIT(PPC_RAW_EXTSB(dst_reg, dst_reg));
1022					break;
1023				case BPF_H:
1024					EMIT(PPC_RAW_LHA(dst_reg, src_reg, off));
1025					break;
1026				case BPF_W:
1027					EMIT(PPC_RAW_LWZ(dst_reg, src_reg, off));
1028					break;
1029				}
1030				if (!fp->aux->verifier_zext)
1031					EMIT(PPC_RAW_SRAWI(dst_reg_h, dst_reg, 31));
1032
1033			} else {
1034				switch (size) {
1035				case BPF_B:
1036					EMIT(PPC_RAW_LBZ(dst_reg, src_reg, off));
1037					break;
1038				case BPF_H:
1039					EMIT(PPC_RAW_LHZ(dst_reg, src_reg, off));
1040					break;
1041				case BPF_W:
1042					EMIT(PPC_RAW_LWZ(dst_reg, src_reg, off));
1043					break;
1044				case BPF_DW:
1045					EMIT(PPC_RAW_LWZ(dst_reg_h, src_reg, off));
1046					EMIT(PPC_RAW_LWZ(dst_reg, src_reg, off + 4));
1047					break;
1048				}
1049				if (size != BPF_DW && !fp->aux->verifier_zext)
1050					EMIT(PPC_RAW_LI(dst_reg_h, 0));
1051			}
1052
1053			if (BPF_MODE(code) == BPF_PROBE_MEM) {
1054				int insn_idx = ctx->idx - 1;
1055				int jmp_off = 4;
1056
1057				/*
1058				 * In case of BPF_DW, two lwz instructions are emitted, one
1059				 * for higher 32-bit and another for lower 32-bit. So, set
1060				 * ex->insn to the first of the two and jump over both
1061				 * instructions in fixup.
1062				 *
1063				 * Similarly, with !verifier_zext, two instructions are
1064				 * emitted for BPF_B/H/W case. So, set ex->insn to the
1065				 * instruction that could fault and skip over both
1066				 * instructions.
1067				 */
1068				if (size == BPF_DW || !fp->aux->verifier_zext) {
1069					insn_idx -= 1;
1070					jmp_off += 4;
1071				}
1072
1073				ret = bpf_add_extable_entry(fp, image, fimage, pass, ctx, insn_idx,
1074							    jmp_off, dst_reg);
1075				if (ret)
1076					return ret;
1077			}
1078			break;
1079
1080		/*
1081		 * Doubleword load
1082		 * 16 byte instruction that uses two 'struct bpf_insn'
1083		 */
1084		case BPF_LD | BPF_IMM | BPF_DW: /* dst = (u64) imm */
1085			tmp_idx = ctx->idx;
1086			PPC_LI32(dst_reg_h, (u32)insn[i + 1].imm);
1087			PPC_LI32(dst_reg, (u32)insn[i].imm);
1088			/* padding to allow full 4 instructions for later patching */
1089			if (!image)
1090				for (j = ctx->idx - tmp_idx; j < 4; j++)
1091					EMIT(PPC_RAW_NOP());
1092			/* Adjust for two bpf instructions */
1093			addrs[++i] = ctx->idx * 4;
1094			break;
1095
1096		/*
1097		 * Return/Exit
1098		 */
1099		case BPF_JMP | BPF_EXIT:
1100			/*
1101			 * If this isn't the very last instruction, branch to
1102			 * the epilogue. If we _are_ the last instruction,
1103			 * we'll just fall through to the epilogue.
1104			 */
1105			if (i != flen - 1) {
1106				ret = bpf_jit_emit_exit_insn(image, ctx, _R0, exit_addr);
1107				if (ret)
1108					return ret;
1109			}
1110			/* else fall through to the epilogue */
1111			break;
1112
1113		/*
1114		 * Call kernel helper or bpf function
1115		 */
1116		case BPF_JMP | BPF_CALL:
1117			ctx->seen |= SEEN_FUNC;
1118
1119			ret = bpf_jit_get_func_addr(fp, &insn[i], extra_pass,
1120						    &func_addr, &func_addr_fixed);
1121			if (ret < 0)
1122				return ret;
1123
1124			if (bpf_is_seen_register(ctx, bpf_to_ppc(BPF_REG_5))) {
1125				EMIT(PPC_RAW_STW(bpf_to_ppc(BPF_REG_5) - 1, _R1, 8));
1126				EMIT(PPC_RAW_STW(bpf_to_ppc(BPF_REG_5), _R1, 12));
1127			}
1128
1129			ret = bpf_jit_emit_func_call_rel(image, fimage, ctx, func_addr);
1130			if (ret)
1131				return ret;
1132
1133			EMIT(PPC_RAW_MR(bpf_to_ppc(BPF_REG_0) - 1, _R3));
1134			EMIT(PPC_RAW_MR(bpf_to_ppc(BPF_REG_0), _R4));
1135			break;
1136
1137		/*
1138		 * Jumps and branches
1139		 */
1140		case BPF_JMP | BPF_JA:
1141			PPC_JMP(addrs[i + 1 + off]);
1142			break;
1143		case BPF_JMP32 | BPF_JA:
1144			PPC_JMP(addrs[i + 1 + imm]);
1145			break;
1146
1147		case BPF_JMP | BPF_JGT | BPF_K:
1148		case BPF_JMP | BPF_JGT | BPF_X:
1149		case BPF_JMP | BPF_JSGT | BPF_K:
1150		case BPF_JMP | BPF_JSGT | BPF_X:
1151		case BPF_JMP32 | BPF_JGT | BPF_K:
1152		case BPF_JMP32 | BPF_JGT | BPF_X:
1153		case BPF_JMP32 | BPF_JSGT | BPF_K:
1154		case BPF_JMP32 | BPF_JSGT | BPF_X:
1155			true_cond = COND_GT;
1156			goto cond_branch;
1157		case BPF_JMP | BPF_JLT | BPF_K:
1158		case BPF_JMP | BPF_JLT | BPF_X:
1159		case BPF_JMP | BPF_JSLT | BPF_K:
1160		case BPF_JMP | BPF_JSLT | BPF_X:
1161		case BPF_JMP32 | BPF_JLT | BPF_K:
1162		case BPF_JMP32 | BPF_JLT | BPF_X:
1163		case BPF_JMP32 | BPF_JSLT | BPF_K:
1164		case BPF_JMP32 | BPF_JSLT | BPF_X:
1165			true_cond = COND_LT;
1166			goto cond_branch;
1167		case BPF_JMP | BPF_JGE | BPF_K:
1168		case BPF_JMP | BPF_JGE | BPF_X:
1169		case BPF_JMP | BPF_JSGE | BPF_K:
1170		case BPF_JMP | BPF_JSGE | BPF_X:
1171		case BPF_JMP32 | BPF_JGE | BPF_K:
1172		case BPF_JMP32 | BPF_JGE | BPF_X:
1173		case BPF_JMP32 | BPF_JSGE | BPF_K:
1174		case BPF_JMP32 | BPF_JSGE | BPF_X:
1175			true_cond = COND_GE;
1176			goto cond_branch;
1177		case BPF_JMP | BPF_JLE | BPF_K:
1178		case BPF_JMP | BPF_JLE | BPF_X:
1179		case BPF_JMP | BPF_JSLE | BPF_K:
1180		case BPF_JMP | BPF_JSLE | BPF_X:
1181		case BPF_JMP32 | BPF_JLE | BPF_K:
1182		case BPF_JMP32 | BPF_JLE | BPF_X:
1183		case BPF_JMP32 | BPF_JSLE | BPF_K:
1184		case BPF_JMP32 | BPF_JSLE | BPF_X:
1185			true_cond = COND_LE;
1186			goto cond_branch;
1187		case BPF_JMP | BPF_JEQ | BPF_K:
1188		case BPF_JMP | BPF_JEQ | BPF_X:
1189		case BPF_JMP32 | BPF_JEQ | BPF_K:
1190		case BPF_JMP32 | BPF_JEQ | BPF_X:
1191			true_cond = COND_EQ;
1192			goto cond_branch;
1193		case BPF_JMP | BPF_JNE | BPF_K:
1194		case BPF_JMP | BPF_JNE | BPF_X:
1195		case BPF_JMP32 | BPF_JNE | BPF_K:
1196		case BPF_JMP32 | BPF_JNE | BPF_X:
1197			true_cond = COND_NE;
1198			goto cond_branch;
1199		case BPF_JMP | BPF_JSET | BPF_K:
1200		case BPF_JMP | BPF_JSET | BPF_X:
1201		case BPF_JMP32 | BPF_JSET | BPF_K:
1202		case BPF_JMP32 | BPF_JSET | BPF_X:
1203			true_cond = COND_NE;
1204			/* fallthrough; */
1205
1206cond_branch:
1207			switch (code) {
1208			case BPF_JMP | BPF_JGT | BPF_X:
1209			case BPF_JMP | BPF_JLT | BPF_X:
1210			case BPF_JMP | BPF_JGE | BPF_X:
1211			case BPF_JMP | BPF_JLE | BPF_X:
1212			case BPF_JMP | BPF_JEQ | BPF_X:
1213			case BPF_JMP | BPF_JNE | BPF_X:
1214				/* unsigned comparison */
1215				EMIT(PPC_RAW_CMPLW(dst_reg_h, src_reg_h));
1216				PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1217				EMIT(PPC_RAW_CMPLW(dst_reg, src_reg));
1218				break;
1219			case BPF_JMP32 | BPF_JGT | BPF_X:
1220			case BPF_JMP32 | BPF_JLT | BPF_X:
1221			case BPF_JMP32 | BPF_JGE | BPF_X:
1222			case BPF_JMP32 | BPF_JLE | BPF_X:
1223			case BPF_JMP32 | BPF_JEQ | BPF_X:
1224			case BPF_JMP32 | BPF_JNE | BPF_X:
1225				/* unsigned comparison */
1226				EMIT(PPC_RAW_CMPLW(dst_reg, src_reg));
1227				break;
1228			case BPF_JMP | BPF_JSGT | BPF_X:
1229			case BPF_JMP | BPF_JSLT | BPF_X:
1230			case BPF_JMP | BPF_JSGE | BPF_X:
1231			case BPF_JMP | BPF_JSLE | BPF_X:
1232				/* signed comparison */
1233				EMIT(PPC_RAW_CMPW(dst_reg_h, src_reg_h));
1234				PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1235				EMIT(PPC_RAW_CMPLW(dst_reg, src_reg));
1236				break;
1237			case BPF_JMP32 | BPF_JSGT | BPF_X:
1238			case BPF_JMP32 | BPF_JSLT | BPF_X:
1239			case BPF_JMP32 | BPF_JSGE | BPF_X:
1240			case BPF_JMP32 | BPF_JSLE | BPF_X:
1241				/* signed comparison */
1242				EMIT(PPC_RAW_CMPW(dst_reg, src_reg));
1243				break;
1244			case BPF_JMP | BPF_JSET | BPF_X:
1245				EMIT(PPC_RAW_AND_DOT(_R0, dst_reg_h, src_reg_h));
1246				PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1247				EMIT(PPC_RAW_AND_DOT(_R0, dst_reg, src_reg));
1248				break;
1249			case BPF_JMP32 | BPF_JSET | BPF_X: {
1250				EMIT(PPC_RAW_AND_DOT(_R0, dst_reg, src_reg));
1251				break;
1252			case BPF_JMP | BPF_JNE | BPF_K:
1253			case BPF_JMP | BPF_JEQ | BPF_K:
1254			case BPF_JMP | BPF_JGT | BPF_K:
1255			case BPF_JMP | BPF_JLT | BPF_K:
1256			case BPF_JMP | BPF_JGE | BPF_K:
1257			case BPF_JMP | BPF_JLE | BPF_K:
1258				/*
1259				 * Need sign-extended load, so only positive
1260				 * values can be used as imm in cmplwi
1261				 */
1262				if (imm >= 0 && imm < 32768) {
1263					EMIT(PPC_RAW_CMPLWI(dst_reg_h, 0));
1264					PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1265					EMIT(PPC_RAW_CMPLWI(dst_reg, imm));
1266				} else {
1267					/* sign-extending load ... but unsigned comparison */
1268					PPC_EX32(_R0, imm);
1269					EMIT(PPC_RAW_CMPLW(dst_reg_h, _R0));
1270					PPC_LI32(_R0, imm);
1271					PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1272					EMIT(PPC_RAW_CMPLW(dst_reg, _R0));
1273				}
1274				break;
1275			case BPF_JMP32 | BPF_JNE | BPF_K:
1276			case BPF_JMP32 | BPF_JEQ | BPF_K:
1277			case BPF_JMP32 | BPF_JGT | BPF_K:
1278			case BPF_JMP32 | BPF_JLT | BPF_K:
1279			case BPF_JMP32 | BPF_JGE | BPF_K:
1280			case BPF_JMP32 | BPF_JLE | BPF_K:
1281				if (imm >= 0 && imm < 65536) {
1282					EMIT(PPC_RAW_CMPLWI(dst_reg, imm));
1283				} else {
1284					PPC_LI32(_R0, imm);
1285					EMIT(PPC_RAW_CMPLW(dst_reg, _R0));
1286				}
1287				break;
1288			}
1289			case BPF_JMP | BPF_JSGT | BPF_K:
1290			case BPF_JMP | BPF_JSLT | BPF_K:
1291			case BPF_JMP | BPF_JSGE | BPF_K:
1292			case BPF_JMP | BPF_JSLE | BPF_K:
1293				if (imm >= 0 && imm < 65536) {
1294					EMIT(PPC_RAW_CMPWI(dst_reg_h, imm < 0 ? -1 : 0));
1295					PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1296					EMIT(PPC_RAW_CMPLWI(dst_reg, imm));
1297				} else {
1298					/* sign-extending load */
1299					EMIT(PPC_RAW_CMPWI(dst_reg_h, imm < 0 ? -1 : 0));
1300					PPC_LI32(_R0, imm);
1301					PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1302					EMIT(PPC_RAW_CMPLW(dst_reg, _R0));
1303				}
1304				break;
1305			case BPF_JMP32 | BPF_JSGT | BPF_K:
1306			case BPF_JMP32 | BPF_JSLT | BPF_K:
1307			case BPF_JMP32 | BPF_JSGE | BPF_K:
1308			case BPF_JMP32 | BPF_JSLE | BPF_K:
1309				/*
1310				 * signed comparison, so any 16-bit value
1311				 * can be used in cmpwi
1312				 */
1313				if (imm >= -32768 && imm < 32768) {
1314					EMIT(PPC_RAW_CMPWI(dst_reg, imm));
1315				} else {
1316					/* sign-extending load */
1317					PPC_LI32(_R0, imm);
1318					EMIT(PPC_RAW_CMPW(dst_reg, _R0));
1319				}
1320				break;
1321			case BPF_JMP | BPF_JSET | BPF_K:
1322				/* andi does not sign-extend the immediate */
1323				if (imm >= 0 && imm < 32768) {
1324					/* PPC_ANDI is _only/always_ dot-form */
1325					EMIT(PPC_RAW_ANDI(_R0, dst_reg, imm));
1326				} else {
1327					PPC_LI32(_R0, imm);
1328					if (imm < 0) {
1329						EMIT(PPC_RAW_CMPWI(dst_reg_h, 0));
1330						PPC_BCC_SHORT(COND_NE, (ctx->idx + 2) * 4);
1331					}
1332					EMIT(PPC_RAW_AND_DOT(_R0, dst_reg, _R0));
1333				}
1334				break;
1335			case BPF_JMP32 | BPF_JSET | BPF_K:
1336				/* andi does not sign-extend the immediate */
1337				if (imm >= 0 && imm < 32768) {
1338					/* PPC_ANDI is _only/always_ dot-form */
1339					EMIT(PPC_RAW_ANDI(_R0, dst_reg, imm));
1340				} else {
1341					PPC_LI32(_R0, imm);
1342					EMIT(PPC_RAW_AND_DOT(_R0, dst_reg, _R0));
1343				}
1344				break;
1345			}
1346			PPC_BCC(true_cond, addrs[i + 1 + off]);
1347			break;
1348
1349		/*
1350		 * Tail call
1351		 */
1352		case BPF_JMP | BPF_TAIL_CALL:
1353			ctx->seen |= SEEN_TAILCALL;
1354			ret = bpf_jit_emit_tail_call(image, ctx, addrs[i + 1]);
1355			if (ret < 0)
1356				return ret;
1357			break;
1358
1359		default:
1360			/*
1361			 * The filter contains something cruel & unusual.
1362			 * We don't handle it, but also there shouldn't be
1363			 * anything missing from our list.
1364			 */
1365			pr_err_ratelimited("eBPF filter opcode %04x (@%d) unsupported\n", code, i);
1366			return -EOPNOTSUPP;
1367		}
1368		if (BPF_CLASS(code) == BPF_ALU && !fp->aux->verifier_zext &&
1369		    !insn_is_zext(&insn[i + 1]) && !(BPF_OP(code) == BPF_END && imm == 64))
1370			EMIT(PPC_RAW_LI(dst_reg_h, 0));
1371	}
1372
1373	/* Set end-of-body-code address for exit. */
1374	addrs[i] = ctx->idx * 4;
1375
1376	return 0;
1377}