From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D4B9BC433F5 for ; Tue, 15 Mar 2022 01:03:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240242AbiCOBEV (ORCPT ); Mon, 14 Mar 2022 21:04:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38374 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344106AbiCOBD7 (ORCPT ); Mon, 14 Mar 2022 21:03:59 -0400 Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 03724C28; Mon, 14 Mar 2022 18:02:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1647306169; x=1678842169; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=1FPC1+faoHuUKJzI0PehoPzEV0/G34kXYwPqzFyYCuU=; b=ETCSJna6J1Pc8ALmlNfAO4ngAeTAEals7NIKbRv8S+j7tStQYwReHkkr Zh5C0M5sRp+0aJQ/OBlGn6No4+88BPzR3W/1rZnRmiyFnTDVbEKkyjiR4 mkhvEU3iSMimKFNJVNGVyY3mNNHSs++uw5nQHu2KI98U1uinqf9nv7XVq 0cAvM3iTOtvaB7FlFU+2kqWUVsbDil3RgVt5G/U+Oni4QWX9qERxgU36u IQRgJFduMLiQThPSGW5svX6F5QTz7fCuK7wE8LACHSno97Mxl5OsLAjww 6hRq6iADonUeWxHIACyEHnkYXhh3KT7wQS0rmakHhFCRsjh74y8GMrxQX A==; X-IronPort-AV: E=McAfee;i="6200,9189,10286"; a="255912367" X-IronPort-AV: E=Sophos;i="5.90,181,1643702400"; d="scan'208";a="255912367" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Mar 2022 18:02:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,181,1643702400"; d="scan'208";a="515669352" Received: from cathy-vostro-3670.bj.intel.com ([10.238.156.128]) by orsmga006.jf.intel.com with ESMTP; 14 Mar 2022 18:02:46 -0700 From: Cathy Zhang To: linux-sgx@vger.kernel.org, linux-kernel@vger.kernel.org Cc: dave.hansen@intel.com, ashok.raj@intel.com, cathy.zhang@intel.com Subject: [RFC PATCH v2 07/10] x86/sgx: Define error codes for ENCLS[EUPDATESVN] Date: Tue, 15 Mar 2022 09:02:57 +0800 Message-Id: <20220315010300.10199-8-cathy.zhang@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20220315010300.10199-1-cathy.zhang@intel.com> References: <20220315010300.10199-1-cathy.zhang@intel.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add error codes for ENCLS[EUPDATESVN], then SGX CPUSVN update process can know the execution state of EUPDATESVN and notify userspace. Signed-off-by: Cathy Zhang --- arch/x86/include/asm/sgx.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/x86/include/asm/sgx.h b/arch/x86/include/asm/sgx.h index eae20fa52b93..6aa36c1be426 100644 --- a/arch/x86/include/asm/sgx.h +++ b/arch/x86/include/asm/sgx.h @@ -73,6 +73,11 @@ enum sgx_encls_function { * public key does not match IA32_SGXLEPUBKEYHASH. * %SGX_PAGE_NOT_MODIFIABLE: The EPC page cannot be modified because it * is in the PENDING or MODIFIED state. + * %SGX_INSUFFICIENT_ENTROPY: Insufficient entropy in RNG. + * %SGX_EPC_NOT_READY: EPC is not ready for SVN update. + * %SGX_NO_UPDATE: EUPDATESVN was successful, but CPUSVN was not + * updated because current SVN was not newer than + * CPUSVN. * %SGX_UNMASKED_EVENT: An unmasked event, e.g. INTR, was received */ enum sgx_return_code { @@ -81,6 +86,9 @@ enum sgx_return_code { SGX_CHILD_PRESENT = 13, SGX_INVALID_EINITTOKEN = 16, SGX_PAGE_NOT_MODIFIABLE = 20, + SGX_INSUFFICIENT_ENTROPY = 29, + SGX_EPC_NOT_READY = 30, + SGX_NO_UPDATE = 31, SGX_UNMASKED_EVENT = 128, }; -- 2.17.1