diff mbox series

x86/vdso: Use named constant for ENCLU leaves

Message ID 20200319205116.124166-1-jarkko.sakkinen@linux.intel.com (mailing list archive)
State New, archived
Headers show
Series x86/vdso: Use named constant for ENCLU leaves | expand

Commit Message

Jarkko Sakkinen March 19, 2020, 8:51 p.m. UTC
Rather than using magic numbers and a comment, replace the magic
numbers with named constants.

Cc: Sean Christopherson <sean.j.christopherson@intel.com>
Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
---
Already pushed (as is RSA key generation). Just something noted when
going through 2/8 patch.
 arch/x86/entry/vdso/vsgx_enter_enclave.S | 5 +++--
 arch/x86/include/asm/enclu.h             | 8 ++++++++
 2 files changed, 11 insertions(+), 2 deletions(-)
 create mode 100644 arch/x86/include/asm/enclu.h

Comments

Jarkko Sakkinen March 19, 2020, 9:20 p.m. UTC | #1
On Thu, Mar 19, 2020 at 10:51:16PM +0200, Jarkko Sakkinen wrote:
> Rather than using magic numbers and a comment, replace the magic
> numbers with named constants.
> 
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Signed-off-by: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
> ---
> Already pushed (as is RSA key generation). Just something noted when
> going through 2/8 patch.
>  arch/x86/entry/vdso/vsgx_enter_enclave.S | 5 +++--
>  arch/x86/include/asm/enclu.h             | 8 ++++++++
>  2 files changed, 11 insertions(+), 2 deletions(-)
>  create mode 100644 arch/x86/include/asm/enclu.h
> 
> diff --git a/arch/x86/entry/vdso/vsgx_enter_enclave.S b/arch/x86/entry/vdso/vsgx_enter_enclave.S
> index 22a22e0774d8..7c01a629dc7e 100644
> --- a/arch/x86/entry/vdso/vsgx_enter_enclave.S
> +++ b/arch/x86/entry/vdso/vsgx_enter_enclave.S
> @@ -3,6 +3,7 @@
>  #include <linux/linkage.h>
>  #include <asm/export.h>
>  #include <asm/errno.h>
> +#include <asm/enclu.h>
>  
>  #include "extable.h"
>  
> @@ -85,9 +86,9 @@ SYM_FUNC_START(__vdso_sgx_enter_enclave)
>  
>  .Lenter_enclave:
>  	/* EENTER <= leaf <= ERESUME */
> -	cmp	$0x2, %eax
> +	cmp	EENTER, %eax
>  	jb	.Linvalid_leaf
> -	cmp	$0x3, %eax
> +	cmp	ERESUME, %eax

These are correct in my tree ('$').

/Jarkko
diff mbox series

Patch

diff --git a/arch/x86/entry/vdso/vsgx_enter_enclave.S b/arch/x86/entry/vdso/vsgx_enter_enclave.S
index 22a22e0774d8..7c01a629dc7e 100644
--- a/arch/x86/entry/vdso/vsgx_enter_enclave.S
+++ b/arch/x86/entry/vdso/vsgx_enter_enclave.S
@@ -3,6 +3,7 @@ 
 #include <linux/linkage.h>
 #include <asm/export.h>
 #include <asm/errno.h>
+#include <asm/enclu.h>
 
 #include "extable.h"
 
@@ -85,9 +86,9 @@  SYM_FUNC_START(__vdso_sgx_enter_enclave)
 
 .Lenter_enclave:
 	/* EENTER <= leaf <= ERESUME */
-	cmp	$0x2, %eax
+	cmp	EENTER, %eax
 	jb	.Linvalid_leaf
-	cmp	$0x3, %eax
+	cmp	ERESUME, %eax
 	ja	.Linvalid_leaf
 
 	/* Load TCS and AEP */
diff --git a/arch/x86/include/asm/enclu.h b/arch/x86/include/asm/enclu.h
new file mode 100644
index 000000000000..06157b3e9ede
--- /dev/null
+++ b/arch/x86/include/asm/enclu.h
@@ -0,0 +1,8 @@ 
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef _ASM_X86_ENCLU_H
+#define _ASM_X86_ENCLU_H
+
+#define EENTER	0x02
+#define ERESUME	0x03
+
+#endif /* _ASM_X86_ENCLU_H */