While not triggered by the trivial xen_nop in-tree patch on
staging/master, that patch exposes a problem on the stable trees, where
all functions have ENDBR inserted. When NOP-ing out a range, we need to
account for this. Handle this right in livepatch_insn_len().
This requires livepatch_insn_len() to be called _after_ ->patch_offset
was set.
Fixes: 6974c75180f1 ("xen/x86: Livepatch: support patching CET-enhanced functions")
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
func->patch_offset = 0;
old_ptr = func->old_addr;
- len = livepatch_insn_len(func);
- if ( !len )
- return;
/*
* CET hotpatching support: We may have functions starting with an ENDBR64
if ( is_endbr64(old_ptr) || is_endbr64_poison(func->old_addr) )
func->patch_offset += ENDBR64_LEN;
+ /* This call must be done with ->patch_offset already set. */
+ len = livepatch_insn_len(func);
+ if ( !len )
+ return;
+
memcpy(func->opaque, old_ptr + func->patch_offset, len);
if ( func->new_addr )
{
unsigned int livepatch_insn_len(const struct livepatch_func *func)
{
if ( !func->new_addr )
- return func->new_size;
+ return func->new_size - func->patch_offset;
return ARCH_PATCH_INSN_SIZE;
}