Re: [PATCH] jump_label: align jump_entry table to at least 4-bytes

From: David Daney
Date: Tue Feb 28 2017 - 16:42:06 EST


On 02/28/2017 10:39 AM, Jason Baron wrote:


On 02/28/2017 01:16 PM, David Daney wrote:
On 02/28/2017 08:21 AM, Steven Rostedt wrote:
On Tue, 28 Feb 2017 10:25:46 +0530
Sachin Sant <sachinp@xxxxxxxxxxxxxxxxxx> wrote:

File: ./net/ipv4/xfrm4_input.o
[12] __jump_table PROGBITS 0000000000000000 000639
000018 18 WAM 0 0 1
File: ./net/ipv4/udplite.o
File: ./net/ipv4/xfrm4_output.o
[ 9] __jump_table PROGBITS 0000000000000000 000481
000018 18 WAM 0 0 1

Looks like there's some issues right there.

Those look good to me 18/18 = 1 with no remainder. The odd numbers are
the offset of the section in the ELF file.

If you look at the stack trace, it seems that it is during module
loading.

Are the primitives for generating the tables doing something different
for the module case? I am not familiar enough with the powerpc ABIs to
know.

Try this:

$ perl -n -e 's/\[ /\[/; my @f = split " "; print hex($f[5]) % 0x18 if
$#f > 5; print $_' <~/jump_table.log


There are no entries with size that is not a multiple of 0x18.

I think my patch to add the ENTSIZE is not doing anything here.

I suspect that the alignment of the __jump_table section in the .ko
files is not correct, and you are seeing some sort of problem due to
that.



Hi,

Yes, if you look at the trace that Sachin sent the module being loaded
that does the WARN_ON() is nfsd.ko.

That module from Sachin's trace has:

[31] __jump_table PROGBITS 0000000000000000 03fd77 0000c0
18 WAM 0 0 1

The problem is then the section alignment (last column) for power.

On mips with no patches applied, we get:

[17] __jump_table PROGBITS 0000000000000000 00d2c0 000048 00 WA 0 0 8

Look, proper alignment!

The question I have is why do the power ".llong" and ".long" assembler directives not force section alignment? Is there an alternative that could be used that would result in the proper alignment? Would ".word" work?

If not, then I would say patch only power with your balign thing. 8-byte alignment for 64-bit kernel, 4-byte alignment for 32-bit kernel



So its not the size but rather the start offset '03fd77', that is the
problem here. That is what the WARN_ON triggers on, that the start of
the table is not 4-byte aligned.

Using a ppc cross-compiler and the ENTSIZE patch that line does not
change, however if I use the initial patch posted in this thread, the
start does align to 4-bytes and thus the warning goes away, as Sachin
verified. In fact, without the patch I found several modules that don't
start at the proper alignment, however with the patch that started this
thread they were all properly aligned.

In terms of the '.balign' causing holes, we originally added the
'_ASM_ALIGN' to x86 for precisely this reason. See commit:
ef64789 jump label: Add _ASM_ALIGN for x86 and x86_64 and discussion.

In addition, we have a lot of runtime with the .balign in the tree and
I'm not aware of any holes in the table. I think the code would blow up
pretty badly if there were.

A number of arches were already using the '.balign', and the patch I
proposed simply added it to remaining ones, now that we added a
WARN_ON() to catch this condition.

Thanks,

-Jason