[PATCH bpf-next v2 2/2] bpf, btf: Check btf for register_bpf_struct_ops

Geliang Tang posted 2 patches 7 months, 1 week ago
There is a newer version of this series
[PATCH bpf-next v2 2/2] bpf, btf: Check btf for register_bpf_struct_ops
Posted by Geliang Tang 7 months, 1 week ago
From: Geliang Tang <tanggeliang@kylinos.cn>

Similar to the handling in the functions __register_btf_kfunc_id_set()
and register_btf_id_dtor_kfuncs(), this patch uses the newly added
helper register_check_missing_btf() and IS_ERR() to check the return
value of btf_get_module_btf().

Signed-off-by: Geliang Tang <tanggeliang@kylinos.cn>
---
 kernel/bpf/btf.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/kernel/bpf/btf.c b/kernel/bpf/btf.c
index 1ebe26a3a7a5..2d99f85adc82 100644
--- a/kernel/bpf/btf.c
+++ b/kernel/bpf/btf.c
@@ -8889,7 +8889,9 @@ int __register_bpf_struct_ops(struct bpf_struct_ops *st_ops)
 
 	btf = btf_get_module_btf(st_ops->owner);
 	if (!btf)
-		return -EINVAL;
+		return register_check_missing_btf(st_ops->owner, "structs");
+	if (IS_ERR(btf))
+		return PTR_ERR(btf);
 
 	log = kzalloc(sizeof(*log), GFP_KERNEL | __GFP_NOWARN);
 	if (!log) {
-- 
2.40.1