]> xenbits.xensource.com Git - people/tklengyel/xen.git/commitdiff
livepatch: account for patch offset when applying NOP patch
authorJan Beulich <jbeulich@suse.com>
Thu, 31 Mar 2022 08:45:46 +0000 (10:45 +0200)
committerJan Beulich <jbeulich@suse.com>
Thu, 31 Mar 2022 08:45:46 +0000 (10:45 +0200)
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>
xen/arch/x86/livepatch.c
xen/include/xen/livepatch.h

index b566ff1071b0547f489dcf0b119f66bbfad34951..78c35f1feffa3e95cd86f3c44f7cd2a9f5e88918 100644 (file)
@@ -145,9 +145,6 @@ void noinline arch_livepatch_apply(struct livepatch_func *func)
 
     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
@@ -160,6 +157,11 @@ void noinline arch_livepatch_apply(struct livepatch_func *func)
     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 )
     {
index f3ae10f007ede935333af14472a24c5be31119ad..9fdb29c382b6ee5dc4643edf12b6dd3e929c848f 100644 (file)
@@ -90,7 +90,7 @@ static inline
 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;
 }