• Hao Luo's avatar
    libbpf: Support weak typed ksyms. · 2211c825
    Hao Luo authored
    Currently weak typeless ksyms have default value zero, when they don't
    exist in the kernel. However, weak typed ksyms are rejected by libbpf
    if they can not be resolved. This means that if a bpf object contains
    the declaration of a nonexistent weak typed ksym, it will be rejected
    even if there is no program that references the symbol.
    
    Nonexistent weak typed ksyms can also default to zero just like
    typeless ones. This allows programs that access weak typed ksyms to be
    accepted by verifier, if the accesses are guarded. For example,
    
    extern const int bpf_link_fops3 __ksym __weak;
    
    /* then in BPF program */
    
    if (&bpf_link_fops3) {
       /* use bpf_link_fops3 */
    }
    
    If actual use of nonexistent typed ksym is not guarded properly,
    verifier would see that register is not PTR_TO_BTF_ID and wouldn't
    allow to use it for direct memory reads or passing it to BPF helpers.
    Signed-off-by: default avatarHao Luo <haoluo@google.com>
    Signed-off-by: default avatarAndrii Nakryiko <andrii@kernel.org>
    Link: https://lore.kernel.org/bpf/20210812003819.2439037-1-haoluo@google.com
    2211c825
libbpf.c 271 KB