mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
bpf: btf: Add struct bpf_btf_info
During BPF_OBJ_GET_INFO_BY_FD on a btf_fd, the current bpf_attr's info.info is directly filled with the BTF binary data. It is not extensible. In this case, we want to add BTF ID. This patch adds "struct bpf_btf_info" which has the BTF ID as one of its member. The BTF binary data itself is exposed through the "btf" and "btf_size" members. Signed-off-by: Martin KaFai Lau <kafai@fb.com> Acked-by: Alexei Starovoitov <ast@fb.com> Acked-by: Song Liu <songliubraving@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
parent
78958fca7e
commit
62dab84c81
@ -2137,6 +2137,12 @@ struct bpf_map_info {
|
|||||||
__u32 btf_value_id;
|
__u32 btf_value_id;
|
||||||
} __attribute__((aligned(8)));
|
} __attribute__((aligned(8)));
|
||||||
|
|
||||||
|
struct bpf_btf_info {
|
||||||
|
__aligned_u64 btf;
|
||||||
|
__u32 btf_size;
|
||||||
|
__u32 id;
|
||||||
|
} __attribute__((aligned(8)));
|
||||||
|
|
||||||
/* User bpf_sock_addr struct to access socket fields and sockaddr struct passed
|
/* User bpf_sock_addr struct to access socket fields and sockaddr struct passed
|
||||||
* by user and intended to be used by socket (e.g. to bind to, depends on
|
* by user and intended to be used by socket (e.g. to bind to, depends on
|
||||||
* attach attach type).
|
* attach attach type).
|
||||||
|
@ -2114,12 +2114,28 @@ int btf_get_info_by_fd(const struct btf *btf,
|
|||||||
const union bpf_attr *attr,
|
const union bpf_attr *attr,
|
||||||
union bpf_attr __user *uattr)
|
union bpf_attr __user *uattr)
|
||||||
{
|
{
|
||||||
void __user *udata = u64_to_user_ptr(attr->info.info);
|
struct bpf_btf_info __user *uinfo;
|
||||||
u32 copy_len = min_t(u32, btf->data_size,
|
struct bpf_btf_info info = {};
|
||||||
attr->info.info_len);
|
u32 info_copy, btf_copy;
|
||||||
|
void __user *ubtf;
|
||||||
|
u32 uinfo_len;
|
||||||
|
|
||||||
if (copy_to_user(udata, btf->data, copy_len) ||
|
uinfo = u64_to_user_ptr(attr->info.info);
|
||||||
put_user(btf->data_size, &uattr->info.info_len))
|
uinfo_len = attr->info.info_len;
|
||||||
|
|
||||||
|
info_copy = min_t(u32, uinfo_len, sizeof(info));
|
||||||
|
if (copy_from_user(&info, uinfo, info_copy))
|
||||||
|
return -EFAULT;
|
||||||
|
|
||||||
|
info.id = btf->id;
|
||||||
|
ubtf = u64_to_user_ptr(info.btf);
|
||||||
|
btf_copy = min_t(u32, btf->data_size, info.btf_size);
|
||||||
|
if (copy_to_user(ubtf, btf->data, btf_copy))
|
||||||
|
return -EFAULT;
|
||||||
|
info.btf_size = btf->data_size;
|
||||||
|
|
||||||
|
if (copy_to_user(uinfo, &info, info_copy) ||
|
||||||
|
put_user(info_copy, &uattr->info.info_len))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -2021,6 +2021,21 @@ static int bpf_map_get_info_by_fd(struct bpf_map *map,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int bpf_btf_get_info_by_fd(struct btf *btf,
|
||||||
|
const union bpf_attr *attr,
|
||||||
|
union bpf_attr __user *uattr)
|
||||||
|
{
|
||||||
|
struct bpf_btf_info __user *uinfo = u64_to_user_ptr(attr->info.info);
|
||||||
|
u32 info_len = attr->info.info_len;
|
||||||
|
int err;
|
||||||
|
|
||||||
|
err = check_uarg_tail_zero(uinfo, sizeof(*uinfo), info_len);
|
||||||
|
if (err)
|
||||||
|
return err;
|
||||||
|
|
||||||
|
return btf_get_info_by_fd(btf, attr, uattr);
|
||||||
|
}
|
||||||
|
|
||||||
#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
|
#define BPF_OBJ_GET_INFO_BY_FD_LAST_FIELD info.info
|
||||||
|
|
||||||
static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
|
static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
|
||||||
@ -2044,7 +2059,7 @@ static int bpf_obj_get_info_by_fd(const union bpf_attr *attr,
|
|||||||
err = bpf_map_get_info_by_fd(f.file->private_data, attr,
|
err = bpf_map_get_info_by_fd(f.file->private_data, attr,
|
||||||
uattr);
|
uattr);
|
||||||
else if (f.file->f_op == &btf_fops)
|
else if (f.file->f_op == &btf_fops)
|
||||||
err = btf_get_info_by_fd(f.file->private_data, attr, uattr);
|
err = bpf_btf_get_info_by_fd(f.file->private_data, attr, uattr);
|
||||||
else
|
else
|
||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user