nfp: bpf: refactor nfp_bpf_check_ptr()
authorJakub Kicinski <jakub.kicinski@netronome.com>
Mon, 23 Oct 2017 18:58:07 +0000 (11:58 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Oct 2017 08:38:37 +0000 (17:38 +0900)
nfp_bpf_check_ptr() mostly looks at the pointer register.
Add a temporary variable to shorten the code.

While at it make sure we print error messages if translation
fails to help users identify the problem (to be carried in
ext_ack in due course).

Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/netronome/nfp/bpf/verifier.c

index e361c0e..4d2ed84 100644 (file)
@@ -113,17 +113,23 @@ nfp_bpf_check_exit(struct nfp_prog *nfp_prog,
 
 static int
 nfp_bpf_check_ptr(struct nfp_prog *nfp_prog, struct nfp_insn_meta *meta,
-                 const struct bpf_verifier_env *env, u8 reg)
+                 const struct bpf_verifier_env *env, u8 reg_no)
 {
-       if (env->cur_state.regs[reg].type != PTR_TO_CTX &&
-           env->cur_state.regs[reg].type != PTR_TO_PACKET)
+       const struct bpf_reg_state *reg = &env->cur_state.regs[reg_no];
+
+       if (reg->type != PTR_TO_CTX &&
+           reg->type != PTR_TO_PACKET) {
+               pr_info("unsupported ptr type: %d\n", reg->type);
                return -EINVAL;
+       }
 
-       if (meta->ptr.type != NOT_INIT &&
-           meta->ptr.type != env->cur_state.regs[reg].type)
+       if (meta->ptr.type != NOT_INIT && meta->ptr.type != reg->type) {
+               pr_info("ptr type changed for instruction %d -> %d\n",
+                       meta->ptr.type, reg->type);
                return -EINVAL;
+       }
 
-       meta->ptr = env->cur_state.regs[reg];
+       meta->ptr = *reg;
 
        return 0;
 }