]> git.baikalelectronics.ru Git - kernel.git/commitdiff
nfp: bpf: copy eBPF subprograms information from kernel verifier
authorQuentin Monnet <quentin.monnet@netronome.com>
Sun, 7 Oct 2018 11:56:49 +0000 (12:56 +0100)
committerDaniel Borkmann <daniel@iogearbox.net>
Mon, 8 Oct 2018 08:24:12 +0000 (10:24 +0200)
In order to support BPF-to-BPF calls in offloaded programs, the nfp
driver must collect information about the distinct subprograms: namely,
the number of subprograms composing the complete program and the stack
depth of those subprograms. The latter in particular is non-trivial to
collect, so we copy those elements from the kernel verifier via the
newly added post-verification hook. The struct nfp_prog is extended to
store this information. Stack depths are stored in an array of dedicated
structs.

Subprogram start indexes are not collected. Instead, meta instructions
associated to the start of a subprogram will be marked with a flag in a
later patch.

Signed-off-by: Quentin Monnet <quentin.monnet@netronome.com>
Reviewed-by: Jiong Wang <jiong.wang@netronome.com>
Reviewed-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
drivers/net/ethernet/netronome/nfp/bpf/main.h
drivers/net/ethernet/netronome/nfp/bpf/offload.c
drivers/net/ethernet/netronome/nfp/bpf/verifier.c

index 7050535383b84025b7938b81d5059bb5f44ba610..7f6e850e42da7f3ba047376040efc467c940f3c2 100644 (file)
@@ -423,6 +423,14 @@ static inline bool is_mbpf_div(const struct nfp_insn_meta *meta)
        return is_mbpf_alu(meta) && mbpf_op(meta) == BPF_DIV;
 }
 
+/**
+ * struct nfp_bpf_subprog_info - nfp BPF sub-program (a.k.a. function) info
+ * @stack_depth:       maximum stack depth used by this sub-program
+ */
+struct nfp_bpf_subprog_info {
+       u16 stack_depth;
+};
+
 /**
  * struct nfp_prog - nfp BPF program
  * @bpf: backpointer to the bpf app priv structure
@@ -439,7 +447,9 @@ static inline bool is_mbpf_div(const struct nfp_insn_meta *meta)
  * @stack_frame_depth: max stack depth for current frame
  * @adjust_head_location: if program has single adjust head call - the insn no.
  * @map_records_cnt: the number of map pointers recorded for this prog
+ * @subprog_cnt: number of sub-programs, including main function
  * @map_records: the map record pointers from bpf->maps_neutral
+ * @subprog: pointer to an array of objects holding info about sub-programs
  * @insns: list of BPF instruction wrappers (struct nfp_insn_meta)
  */
 struct nfp_prog {
@@ -464,7 +474,9 @@ struct nfp_prog {
        unsigned int adjust_head_location;
 
        unsigned int map_records_cnt;
+       unsigned int subprog_cnt;
        struct nfp_bpf_neutral_map **map_records;
+       struct nfp_bpf_subprog_info *subprog;
 
        struct list_head insns;
 };
index c9519bb00f8a39afa65caf504e400b65dc54ae7f..b683b03efd227d723019e8ea483683c45f7d869d 100644 (file)
@@ -208,6 +208,8 @@ static void nfp_prog_free(struct nfp_prog *nfp_prog)
 {
        struct nfp_insn_meta *meta, *tmp;
 
+       kfree(nfp_prog->subprog);
+
        list_for_each_entry_safe(meta, tmp, &nfp_prog->insns, l) {
                list_del(&meta->l);
                kfree(meta);
index e470489021e3e388a2b2932f96f321d6896acdfe..9ef74bc1ec1d7758f283b6da11fc1b9dd8b4b5d7 100644 (file)
@@ -642,6 +642,21 @@ nfp_verify_insn(struct bpf_verifier_env *env, int insn_idx, int prev_insn_idx)
 
 static int nfp_bpf_finalize(struct bpf_verifier_env *env)
 {
+       struct bpf_subprog_info *info;
+       struct nfp_prog *nfp_prog;
+       int i;
+
+       nfp_prog = env->prog->aux->offload->dev_priv;
+       nfp_prog->subprog_cnt = env->subprog_cnt;
+       nfp_prog->subprog = kcalloc(nfp_prog->subprog_cnt,
+                                   sizeof(nfp_prog->subprog[0]), GFP_KERNEL);
+       if (!nfp_prog->subprog)
+               return -ENOMEM;
+
+       info = env->subprog_info;
+       for (i = 0; i < nfp_prog->subprog_cnt; i++)
+               nfp_prog->subprog[i].stack_depth = info[i].stack_depth;
+
        return 0;
 }