struct ksym_relo_desc { constchar *name; int kind; int insn_idx; bool is_weak; bool is_typeless; bool is_ld64;
};
struct ksym_desc { constchar *name; int ref; int kind; union { /* used for kfunc */ int off; /* used for typeless ksym */ bool typeless;
}; int insn; bool is_ld64;
};
struct bpf_gen { struct gen_loader_opts *opts; void *data_start; void *data_cur; void *insn_start; void *insn_cur; bool swapped_endian;
ssize_t cleanup_label;
__u32 nr_progs;
__u32 nr_maps; int log_level; int error; struct ksym_relo_desc *relos; int relo_cnt; struct bpf_core_relo *core_relos; int core_relo_cnt; char attach_target[128]; int attach_kind; struct ksym_desc *ksyms;
__u32 nr_ksyms; int fd_array; int nr_fd_array;
};
void bpf_gen__init(struct bpf_gen *gen, int log_level, int nr_progs, int nr_maps); int bpf_gen__finish(struct bpf_gen *gen, int nr_progs, int nr_maps); void bpf_gen__free(struct bpf_gen *gen); void bpf_gen__load_btf(struct bpf_gen *gen, constvoid *raw_data, __u32 raw_size); void bpf_gen__map_create(struct bpf_gen *gen, enum bpf_map_type map_type, constchar *map_name,
__u32 key_size, __u32 value_size, __u32 max_entries, struct bpf_map_create_opts *map_attr, int map_idx); void bpf_gen__prog_load(struct bpf_gen *gen, enum bpf_prog_type prog_type, constchar *prog_name, constchar *license, struct bpf_insn *insns, size_t insn_cnt, struct bpf_prog_load_opts *load_attr, int prog_idx); void bpf_gen__map_update_elem(struct bpf_gen *gen, int map_idx, void *value, __u32 value_size); void bpf_gen__map_freeze(struct bpf_gen *gen, int map_idx); void bpf_gen__record_attach_target(struct bpf_gen *gen, constchar *name, enum bpf_attach_type type); void bpf_gen__record_extern(struct bpf_gen *gen, constchar *name, bool is_weak, bool is_typeless, bool is_ld64, int kind, int insn_idx); void bpf_gen__record_relo_core(struct bpf_gen *gen, conststruct bpf_core_relo *core_relo); void bpf_gen__populate_outer_map(struct bpf_gen *gen, int outer_map_idx, int key, int inner_map_idx);
#endif
Messung V0.5
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.