Skip to content

Commit 298e59d

Browse files
yonghong-songborkmann
authored andcommittedJan 11, 2019
tools/bpf: fix bpftool map dump with bitfields
Commit 8772c8b ("tools: bpftool: support pretty print with kind_flag set") added bpftool map dump with kind_flag support. When bitfield_size can be retrieved directly from btf_member, function btf_dumper_bitfield() is called to dump the bitfield. The implementation passed the wrong parameter "bit_offset" to the function. The excepted value is the bit_offset within a byte while the passed-in value is the struct member offset. This commit fixed the bug with passing correct "bit_offset" with adjusted data pointer. Fixes: 8772c8b ("tools: bpftool: support pretty print with kind_flag set") Acked-by: Martin KaFai Lau <kafai@fb.com> Signed-off-by: Yonghong Song <yhs@fb.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed
 

‎tools/bpf/bpftool/btf_dumper.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ static void btf_dumper_bitfield(__u32 nr_bits, __u8 bit_offset,
8282
int bits_to_copy;
8383
__u64 print_num;
8484

85-
data += BITS_ROUNDDOWN_BYTES(bit_offset);
86-
bit_offset = BITS_PER_BYTE_MASKED(bit_offset);
8785
bits_to_copy = bit_offset + nr_bits;
8886
bytes_to_copy = BITS_ROUNDUP_BYTES(bits_to_copy);
8987

@@ -118,7 +116,9 @@ static void btf_dumper_int_bits(__u32 int_type, __u8 bit_offset,
118116
* BTF_INT_OFFSET() cannot exceed 64 bits.
119117
*/
120118
total_bits_offset = bit_offset + BTF_INT_OFFSET(int_type);
121-
btf_dumper_bitfield(nr_bits, total_bits_offset, data, jw,
119+
data += BITS_ROUNDDOWN_BYTES(total_bits_offset);
120+
bit_offset = BITS_PER_BYTE_MASKED(total_bits_offset);
121+
btf_dumper_bitfield(nr_bits, bit_offset, data, jw,
122122
is_plain_text);
123123
}
124124

@@ -216,11 +216,12 @@ static int btf_dumper_struct(const struct btf_dumper *d, __u32 type_id,
216216
}
217217

218218
jsonw_name(d->jw, btf__name_by_offset(d->btf, m[i].name_off));
219+
data_off = data + BITS_ROUNDDOWN_BYTES(bit_offset);
219220
if (bitfield_size) {
220-
btf_dumper_bitfield(bitfield_size, bit_offset,
221-
data, d->jw, d->is_plain_text);
221+
btf_dumper_bitfield(bitfield_size,
222+
BITS_PER_BYTE_MASKED(bit_offset),
223+
data_off, d->jw, d->is_plain_text);
222224
} else {
223-
data_off = data + BITS_ROUNDDOWN_BYTES(bit_offset);
224225
ret = btf_dumper_do_type(d, m[i].type,
225226
BITS_PER_BYTE_MASKED(bit_offset),
226227
data_off);

0 commit comments

Comments
 (0)
Please sign in to comment.