函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:kernel\bpf\verifier.c Create Date:2022-07-27 14:17:11
Last Modify:2022-05-19 20:02:10 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:check_btf_info

函数原型:static int check_btf_info(struct bpf_verifier_env *env, const union bpf_attr *attr, union bpf_attr __user *uattr)

返回类型:int

参数:

类型参数名称
struct bpf_verifier_env *env
const union bpf_attr *attr
union bpf_attr __user *uattr
6919  如果非 number of bpf_func_info records 且非 number of bpf_line_info records 则返回:0
6922  btf等于btf_get_by_fd( fd pointing to BTF type data )
6923  如果是错误则返回:错误
6925  btf等于btf
6927  err等于check_btf_func(env, attr, uattr)
6928  如果err则返回:err
6931  err等于check_btf_line(env, attr, uattr)
6932  如果err则返回:err
6935  返回:0
调用者
名称描述
bpf_check