On Mon, Aug 17, 2026 at 02:11:26PM +0300, Ard Biesheuvel wrote:
> On Sat, 15 Aug 2026, at 21:57, Josh Poimboeuf wrote:
> > On Sat, Aug 15, 2026 at 12:56:11PM +0300, Ard Biesheuvel wrote:
> >> On Sat, 15 Aug 2026, at 07:45, Josh Poimboeuf wrote:
> >> > The following BTI exception was seen when loading a livepatch module:
> >> >
> >> >   Internal error: Oops - BTI: 0000000036000001 [#1]  SMP
> >> >   pstate: 634004c9 (nZCv daIF +PAN -UAO +TCO +DIT -SSBS BTYPE=jc)
> >> >   pc : kill_orphaned_pgrp+0x0/0x150
> >> >   lr : do_exit+0x498/0xaf0 [livepatch_combined]
> >> >
> >> > The problem is that the patch module's do_exit() is branching to a
> >> > static function in vmlinux using a module PLT veneer (indirect branch),
> >> > but the target function doesn't have a BTI landing pad.
> >> >
> >> > Clang 21+ omits the landing pad for static functions which can only be
> >> > reached by a direct branch.  But livepatch modules use klp relocations
> >> > to reference arbitrary kernel symbols, and with
> >> > CONFIG_RANDOMIZE_MODULE_REGION_FULL the module is far enough away that
> >> > every call to vmlinux needs a PLT.
> >> >
> >> > Note this problem is actually not specific to livepatch.  It's possible
> >> > for any module's .init section to be allocated > 128MB away from its
> >> > .text section.  So calls from .init to .text via a PLT can trigger a BTI
> >> > exception when the target function doesn't have a landing pad.
> >> >
> >> > GCC has always omitted the landing pad when possible, so kernel BTI is
> >> > already considered incompatible with GCC since commit c0a454b9044f
> >> > ("arm64/bti: Disable in kernel BTI when cross section thunks are
> >> > broken").
> >> >
> >> > When missing landing pads are detected, allocate a page close to the
> >> > target which can be used to hold BTI veneers which receive PLT veneer
> >> > indirect branches and direct branch to the final target:
> >> >
> >> 
> >> This does not work for cross-section calls from .init.text to .text.
> >> 
> >> If .init.text is far away from .text, it is likely because .text
> >> ended up in the 128M 'near' module region, and .init.text did not.
> >> (They tend to end up in direct branching range of each otherwise.)
> >> 
> >> Given that the module init code is typically small, I don't think
> >> it is safe to assume that allocating a single page close enough to
> >> .text is going to be possible if allocating the space for .init.*
> >> was not.
> >> 
> >> IOW, the fix I proposed for cross-section calls is still needed
> >> with this approach.
> >
> > But the BTI veneer page is allocated from a *256MB* window, of which the
> > near region is only a 128MB subset.
> >
> 
> OK, so this window would be [_etext - 128M, _text + 128M), right? Or
> whichever the equivalent is for a kernel module?
> 
> I agree that this considerably reduces the likelihood of running out
> of veneer space within direct branching range.

It's a *moving* 256M window centered around a given branch target:
[target - 128M, target + 128M).  The window always fully contains the
near region, *plus* another 128MB: 128M - (target - base) below the
region and (target - base) above, which always adds up to an extra
128MB.  So it has a much bigger pool to choose from than module text
does.

It does try to allocate inside the region, or right after it, so the
page can be shared by other branches in the same module if possible.
But it can allocate more above or below as needed.

> > There is a theoretical case where the 256MB window around the target is
> > completely full without any fragmentation, but I would think that there
> > would almost always be some fragmentation.  If that window is modules
> > stacked together, most modules have at least .init.plt and .init.text,
> > and many have .init.data.
> >
> 
> Are you saying these are freed again once the module is initialized, and
> therefore there is fragmentation? Not sure if it works like that if modules
> are loaded one after the other.

Not sure I understand your question, but yes, the module init mem is
allocated from the same pool as other module memory, and freed once
module init is done, able to be reused, causing fragmentation.

If multiple modules get loaded all at the same time before any module
init memory has a chance to get freed, presumably fragmentation wouldn't
be much of an issue yet and the given module's .init.text would get
allocated close to .text in the first place.

> > Right now it needs two pages (because of the default guard page) but we
> > could maybe fall back to VM_NO_GUARD in case of emergency.
> >
> 
> I like the advantage of only allocating veneers if they are really needed,
> as opposed to allocating the space unconditionally, which is what my
> solution does. But I need more convincing that this will actually cover
> all these cases, given that the cross-section call issue only occurs when
> running out of direct branching space to begin with.

Right, so if .text fits in the near region, and a one-page .init.text
doesn't, meaning the 128MB near region is completely full, the BTI
veneer allocation still likely succeeds because it still has another
128MB pool to allocate from above/below the region.

So for the allocation to fail, it would need to be a perfect storm:

1) a *lot* of modules loaded and/or huge vmlinux
2) the branch in init code is placed >128MB away from its .text
3) the target is a static .text function with no landing pad
4) there are 0 free pages in the 256MB region around the target

Seems unrealistic to me, unless I'm missing something.

-- 
Josh

Reply via email to