BPF List
 help / color / mirror / Atom feed
From: Yonghong Song <yhs@fb.com>
To: John Fastabend <john.fastabend@gmail.com>,
	Ilya Leoshkevich <iii@linux.ibm.com>,
	Alexei Starovoitov <ast@kernel.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Andrii Nakryiko <andrii@kernel.org>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: <bpf@vger.kernel.org>, Heiko Carstens <heiko.carstens@de.ibm.com>,
	Vasily Gorbik <gor@linux.ibm.com>
Subject: Re: [PATCH v6 bpf-next 3/9] libbpf: Add BTF_KIND_FLOAT support
Date: Thu, 25 Feb 2021 21:26:20 -0800	[thread overview]
Message-ID: <43a94f4f-d00c-52ba-8060-86f0c2774ca6@fb.com> (raw)
In-Reply-To: <60384f3e68e80_5c31208ed@john-XPS-13-9370.notmuch>



On 2/25/21 5:30 PM, John Fastabend wrote:
> Ilya Leoshkevich wrote:
>> The logic follows that of BTF_KIND_INT most of the time. Sanitization
>> replaces BTF_KIND_FLOATs with equally-sized empty BTF_KIND_STRUCTs on
>> older kernels, for example, the following:
>>
>>      [4] FLOAT 'float' size=4
>>
>> becomes the following:
>>
>>      [4] STRUCT '(anon)' size=4 vlen=0
>>
>> Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
>> Acked-by: Andrii Nakryiko <andrii@kernel.org>
>> ---
> 
> [...]
> 
>> @@ -2445,6 +2450,10 @@ static void bpf_object__sanitize_btf(struct bpf_object *obj, struct btf *btf)
>>   		} else if (!has_func_global && btf_is_func(t)) {
>>   			/* replace BTF_FUNC_GLOBAL with BTF_FUNC_STATIC */
>>   			t->info = BTF_INFO_ENC(BTF_KIND_FUNC, 0, 0);
>> +		} else if (!has_float && btf_is_float(t)) {
>> +			/* replace FLOAT with an equally-sized empty STRUCT */
>> +			t->name_off = 0;
> 
> Can we keep the name_off from btf__add_float()? Or just explain why
> we zero it here, its not obvious to me at least.

This is mostly to avoid type name collision, e.g., after sanitation, we 
may end up with "struct float {}" or "typedef char float[8]". All these 
will be rejected with strict enforcement although we didn't do it today.
Consider a rare case, users get btf from kernel, dump it into a C file
and then it may not compile...
In my opinion, if user needs any information, libbpf should emit them 
during the time of sanitation. Maybe some comments will be good here.

> 
>> +			t->info = BTF_INFO_ENC(BTF_KIND_STRUCT, 0, 0);
>>   		}
>>   	}
>>   }
>> @@ -3882,6 +3891,18 @@ static int probe_kern_btf_datasec(void)

  reply	other threads:[~2021-02-26  5:27 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-24 23:45 [PATCH v6 bpf-next 0/9] Add BTF_KIND_FLOAT support Ilya Leoshkevich
2021-02-24 23:45 ` [PATCH v6 bpf-next 1/9] bpf: Add BTF_KIND_FLOAT to uapi Ilya Leoshkevich
2021-02-24 23:45 ` [PATCH v6 bpf-next 2/9] libbpf: Fix whitespace in btf_add_composite() comment Ilya Leoshkevich
2021-02-24 23:45 ` [PATCH v6 bpf-next 3/9] libbpf: Add BTF_KIND_FLOAT support Ilya Leoshkevich
2021-02-26  1:30   ` John Fastabend
2021-02-26  5:26     ` Yonghong Song [this message]
2021-02-26  1:57   ` John Fastabend
2021-02-24 23:45 ` [PATCH v6 bpf-next 4/9] tools/bpftool: " Ilya Leoshkevich
2021-02-25  6:29   ` Yonghong Song
2021-02-24 23:45 ` [PATCH v6 bpf-next 5/9] selftests/bpf: Use the 25th bit in the "invalid BTF_INFO" test Ilya Leoshkevich
2021-02-25  6:31   ` Yonghong Song
2021-02-24 23:45 ` [PATCH v6 bpf-next 6/9] bpf: Add BTF_KIND_FLOAT support Ilya Leoshkevich
2021-02-25  7:10   ` Yonghong Song
2021-02-25 10:40     ` Ilya Leoshkevich
2021-02-25 14:59       ` Yonghong Song
2021-02-26  1:53         ` John Fastabend
2021-02-26  5:43           ` Yonghong Song
2021-02-24 23:45 ` [PATCH v6 bpf-next 7/9] selftest/bpf: Add BTF_KIND_FLOAT tests Ilya Leoshkevich
2021-02-24 23:51   ` Ilya Leoshkevich
2021-02-26  2:01   ` John Fastabend
2021-02-24 23:45 ` [PATCH v6 bpf-next 8/9] selftests/bpf: Add BTF_KIND_FLOAT to the existing deduplication tests Ilya Leoshkevich
2021-02-24 23:45 ` [PATCH v6 bpf-next 9/9] bpf: Document BTF_KIND_FLOAT in btf.rst Ilya Leoshkevich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=43a94f4f-d00c-52ba-8060-86f0c2774ca6@fb.com \
    --to=yhs@fb.com \
    --cc=acme@redhat.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=gor@linux.ibm.com \
    --cc=heiko.carstens@de.ibm.com \
    --cc=iii@linux.ibm.com \
    --cc=john.fastabend@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox