From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::344; helo=mail-wm1-x344.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm1-x344.google.com (mail-wm1-x344.google.com [IPv6:2a00:1450:4864:20::344]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 129FE211B818D for ; Wed, 16 Jan 2019 13:22:27 -0800 (PST) Received: by mail-wm1-x344.google.com with SMTP id y139so3575858wmc.5 for ; Wed, 16 Jan 2019 13:22:27 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=Ns/l98rgXsmuwvnBVFx/UaySYfEHFgcP/bSA4Hm5dlQ=; b=FqYK6l9ck5a/rcjzdILEEYaIG6zIqLP/ppT9/oG2Fsse/DJImFyS8udNufdA72wVaS 3Fp2O9FlYISS7pz9NbiQr0jtNCcrPjtrjle/nyjBIGxENFGDKDgyKacrd+J+mkQq72Nw xErgW6cRun4aNotINiietW7cSsXxkbUY9X28g= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=Ns/l98rgXsmuwvnBVFx/UaySYfEHFgcP/bSA4Hm5dlQ=; b=ZrFDgc64aqkXzqEB78Xy8mg+lTNf3eet/CJ/JudR3ntMnUoMvoZPICj+gfzLoxaiYy PYpReP6piRlgU9JyyC1YAnMv4JH+JiwE+k5KtOqKxazdakOkeVRjWdIsbyiiBK7LWpBM 8hdxABspjwgwR/nXOJdE5vKeiWuY5yObPoy8yspqizil4dVZ+nZbMIArPq5FmXrX/T9U miYfE0gsf98MQ12mzQzURHDbbcShuze28vKuVyVpFIolkjvUj5OXq9aGFjiVED1bIyoj Ku3HrUFk2BWrDO1sm40DMmetqiuDNo8vC0hk3cyVQiOl6aQDHSxtqR8FODLghalDKFe9 FDDg== X-Gm-Message-State: AJcUukes2ETKzox+BWUevxMYipj9M4WiuzjttOWBieycDIrki4vizW9n lcc+e8EkxAIZsm+RRL7MX2u9ml/TxnE4zA== X-Google-Smtp-Source: ALg8bN5kNm7T3L/hqCvndbINCZZDbd9RgrAnUHEudTmz4HB3Xqdv7H3EWWBuJHdMFWtDn/2JSCr/6A== X-Received: by 2002:a1c:d7d3:: with SMTP id o202mr9683898wmg.135.1547673746234; Wed, 16 Jan 2019 13:22:26 -0800 (PST) Received: from dogfood.home ([2a01:cb1d:112:6f00:28df:207d:542c:1451]) by smtp.gmail.com with ESMTPSA id l14sm162789095wrp.55.2019.01.16.13.22.24 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Jan 2019 13:22:25 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: Ard Biesheuvel , Michael D Kinney , Liming Gao , Ting Ye , Gang Wei , Jian Wang , Chao Zhang , Jiewen Yao , Hao Wu , Star Zeng , Achin Gupta , Jagadeesh Ujja Date: Wed, 16 Jan 2019 22:22:17 +0100 Message-Id: <20190116212221.7460-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 Subject: [PATCH 0/4] Various Packages: add MM_STANDALONE support X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jan 2019 21:22:28 -0000 Add MM_STANDALONE to the list of permitted module types of various libraries that are required to build the standalone MM authenticated variable stack. In some cases, this requires the MODULE_TYPE to be modified to BASE, given that the constructor prototype is different between DXE/UEFI and MM_STANDALONE drivers. Cc: Michael D Kinney Cc: Liming Gao Cc: Ting Ye Cc: Gang Wei Cc: Jian Wang Cc: Chao Zhang Cc: Jiewen Yao Cc: Hao Wu Cc: Star Zeng Cc: Achin Gupta Cc: Jagadeesh Ujja Ard Biesheuvel (4): CryptoPkg/SmmCryptLib: permit use by MM_STANDALONE modules SecurityPkg/PlatformSecureLibNull: permit use by MM_STANDALONE modules MdeModulePkg/VarCheckLib: permit use by MM_STANDALONE modules MdePkg/UefiDevicePathLib: permit use by MM_STANDALONE modules CryptoPkg/Library/BaseCryptLib/SmmCryptLib.inf | 2 +- MdeModulePkg/Library/VarCheckUefiLib/VarCheckUefiLib.inf | 4 ++-- .../Library/VarCheckUefiLib/VarCheckUefiLibNullClass.c | 9 +++++---- MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.inf | 2 +- .../PlatformSecureLibNull/PlatformSecureLibNull.c | 9 +++++---- .../PlatformSecureLibNull/PlatformSecureLibNull.inf | 4 ++-- 6 files changed, 16 insertions(+), 14 deletions(-) -- 2.17.1