CC: [email protected]
BCC: [email protected]
CC: [email protected]
TO: Yonghong Song <[email protected]>
CC: Alexei Starovoitov <[email protected]>

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 
master
head:   6b1f86f8e9c7f9de7ca1cb987b2cf25e99b1ae3a
commit: b5ea834dde6b6e7f75e51d5f66dac8cd7c97b5ef bpf: Support for new btf kind 
BTF_KIND_TAG
date:   6 months ago
:::::: branch date: 21 hours ago
:::::: commit date: 6 months ago
compiler: microblaze-linux-gcc (GCC) 11.2.0

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <[email protected]>


cppcheck possible warnings: (new ones prefixed by >>, may not real problems)

                ^
   kernel/bpf/btf.c:4849:38: note: Null pointer addition
    args = (const struct btf_param *)(t + 1);
                                        ^
   kernel/bpf/btf.c:4534:5: warning: union member 'Anonymous2::__t' is never 
used. [unusedStructMember]
    } *__t;
       ^
>> kernel/bpf/btf.c:3827:24: warning: Variable 'tag' is not assigned a value. 
>> [unassignedVariable]
    const struct btf_tag *tag;
                          ^

vim +/tag +3827 kernel/bpf/btf.c

b1828f0b04828aa Ilya Leoshkevich 2021-02-26  3822  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3823  static s32 
btf_tag_check_meta(struct btf_verifier_env *env,
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3824                             
const struct btf_type *t,
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3825                             
u32 meta_left)
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3826  {
b5ea834dde6b6e7 Yonghong Song    2021-09-14 @3827       const struct btf_tag 
*tag;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3828       u32 meta_needed = 
sizeof(*tag);
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3829       s32 component_idx;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3830       const char *value;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3831  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3832       if (meta_left < 
meta_needed) {
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3833               
btf_verifier_log_basic(env, t,
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3834                               
       "meta_left:%u meta_needed:%u",
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3835                               
       meta_left, meta_needed);
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3836               return -EINVAL;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3837       }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3838  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3839       value = 
btf_name_by_offset(env->btf, t->name_off);
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3840       if (!value || 
!value[0]) {
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3841               
btf_verifier_log_type(env, t, "Invalid value");
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3842               return -EINVAL;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3843       }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3844  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3845       if (btf_type_vlen(t)) {
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3846               
btf_verifier_log_type(env, t, "vlen != 0");
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3847               return -EINVAL;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3848       }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3849  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3850       if (btf_type_kflag(t)) {
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3851               
btf_verifier_log_type(env, t, "Invalid btf_info kind_flag");
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3852               return -EINVAL;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3853       }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3854  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3855       component_idx = 
btf_type_tag(t)->component_idx;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3856       if (component_idx < -1) 
{
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3857               
btf_verifier_log_type(env, t, "Invalid component_idx");
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3858               return -EINVAL;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3859       }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3860  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3861       
btf_verifier_log_type(env, t, NULL);
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3862  
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3863       return meta_needed;
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3864  }
b5ea834dde6b6e7 Yonghong Song    2021-09-14  3865  

-- 
0-DAY CI Kernel Test Service
https://01.org/lkp
_______________________________________________
kbuild mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to