x86/insn: Rename insn_decode() to insn_decode_from_regs()
authorBorislav Petkov <bp@suse.de>
Mon, 2 Nov 2020 17:47:34 +0000 (18:47 +0100)
committerBorislav Petkov <bp@suse.de>
Mon, 15 Mar 2021 09:53:10 +0000 (10:53 +0100)
Rename insn_decode() to insn_decode_from_regs() to denote that it
receives regs as param and uses registers from there during decoding.
Free the former name for a more generic version of the function.

No functional changes.

Signed-off-by: Borislav Petkov <bp@suse.de>
Link: https://lkml.kernel.org/r/20210304174237.31945-2-bp@alien8.de
arch/x86/include/asm/insn-eval.h
arch/x86/kernel/sev-es.c
arch/x86/kernel/umip.c
arch/x86/lib/insn-eval.c

index 98b4dae5e8bc8a93398682080ab180982b33280f..91d7182ad2d6e7825f1b35db0d38d95f592baabc 100644 (file)
@@ -25,7 +25,7 @@ int insn_fetch_from_user(struct pt_regs *regs,
                         unsigned char buf[MAX_INSN_SIZE]);
 int insn_fetch_from_user_inatomic(struct pt_regs *regs,
                                  unsigned char buf[MAX_INSN_SIZE]);
-bool insn_decode(struct insn *insn, struct pt_regs *regs,
-                unsigned char buf[MAX_INSN_SIZE], int buf_size);
+bool insn_decode_from_regs(struct insn *insn, struct pt_regs *regs,
+                          unsigned char buf[MAX_INSN_SIZE], int buf_size);
 
 #endif /* _ASM_X86_INSN_EVAL_H */
index 225704ed205538c71668e83006caa2f3f71c86bc..a28922f7aa81889e5833bded72541bb642528306 100644 (file)
@@ -266,7 +266,7 @@ static enum es_result vc_decode_insn(struct es_em_ctxt *ctxt)
                        return ES_EXCEPTION;
                }
 
-               if (!insn_decode(&ctxt->insn, ctxt->regs, buffer, res))
+               if (!insn_decode_from_regs(&ctxt->insn, ctxt->regs, buffer, res))
                        return ES_DECODE_FAILED;
        } else {
                res = vc_fetch_insn_kernel(ctxt, buffer);
index f6225bf22c02f60b66fb25abe9b068030a1f3c70..8032f5f7eef947c44d950be111c9886c40403c44 100644 (file)
@@ -356,7 +356,7 @@ bool fixup_umip_exception(struct pt_regs *regs)
        if (!nr_copied)
                return false;
 
-       if (!insn_decode(&insn, regs, buf, nr_copied))
+       if (!insn_decode_from_regs(&insn, regs, buf, nr_copied))
                return false;
 
        umip_inst = identify_insn(&insn);
index 8cec4615f5ae1fddfdf4aae5229c77730593f09a..422a592b6338481e1b4883f7b083676835271b1f 100644 (file)
@@ -1488,7 +1488,7 @@ int insn_fetch_from_user_inatomic(struct pt_regs *regs, unsigned char buf[MAX_IN
 }
 
 /**
- * insn_decode() - Decode an instruction
+ * insn_decode_from_regs() - Decode an instruction
  * @insn:      Structure to store decoded instruction
  * @regs:      Structure with register values as seen when entering kernel mode
  * @buf:       Buffer containing the instruction bytes
@@ -1501,8 +1501,8 @@ int insn_fetch_from_user_inatomic(struct pt_regs *regs, unsigned char buf[MAX_IN
  *
  * True if instruction was decoded, False otherwise.
  */
-bool insn_decode(struct insn *insn, struct pt_regs *regs,
-                unsigned char buf[MAX_INSN_SIZE], int buf_size)
+bool insn_decode_from_regs(struct insn *insn, struct pt_regs *regs,
+                          unsigned char buf[MAX_INSN_SIZE], int buf_size)
 {
        int seg_defs;