public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
* [PATCH 00/11] Use proper entropy sources
@ 2019-11-14  2:17 Wang, Jian J
  2019-11-14  4:21 ` [edk2-devel] " Michael D Kinney
  0 siblings, 1 reply; 3+ messages in thread
From: Wang, Jian J @ 2019-11-14  2:17 UTC (permalink / raw)
  To: devel
  Cc: Ard Biesheuvel, Bret Barkelew, Chao Zhang, Jiaxin Wu, Jiewen Yao,
	Jordan Justen, Laszlo Ersek, Leif Lindholm, Liming Gao,
	Maciej Rabeda, Matthew Carlson, Michael D Kinney, Ray Ni,
	Sean Brogan, Siyuan Fu, Xiaoyu Lu

REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1871

Patch series summary:
 - Add BaseRngLibNull to package dsc
 - Add DxeRngLibRngProtocol to make use EFI_RNG_PROTOCOL
 - Add RdSeed interface and RngLibRdSeed for IA32/X64 arch
 - Remove following files
    rand_pool_noise.h
    rand_pool_noise_tsc.c
    rand_pool_noise.c
 - Update rand_pool.c to use RngLib interface directly
   and the drop the TimerLib depenency from OpensslLib
 - Update OVMF platform dsc to use DxeRngLibRngProtocol
   when necessary

Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: Bret Barkelew <bret.barkelew@microsoft.com>
Cc: Chao Zhang <chao.b.zhang@intel.com>
Cc: Jiaxin Wu <jiaxin.wu@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Cc: Jordan Justen <jordan.l.justen@intel.com>
Cc: Laszlo Ersek <lersek@redhat.com>
Cc: Leif Lindholm <leif.lindholm@linaro.org>
Cc: Liming Gao <liming.gao@intel.com>
Cc: Maciej Rabeda <maciej.rabeda@intel.com>
Cc: Matthew Carlson <macarl@microsoft.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Ray Ni <ray.ni@intel.com>
Cc: Sean Brogan <sean.brogan@microsoft.com>
Cc: Siyuan Fu <siyuan.fu@intel.com>
Cc: Xiaoyu Lu <xiaoyux.lu@intel.com>

Jian J Wang (11):
  NetworkPkg/NetworkPkg.dsc: specify RngLib instance for build
  SignedCapsulePkg/SignedCapsulePkg.dsc: specify RngLib instances
  FmpDevicePkg/FmpDevicePkg.dsc: specify RngLib instances in dsc files
  MdePkg/BaseLib: add interface to wrap rdseed IA instruction
  SecurityPkg/RngLibRdSeed: add an instance of RngLib to make use rdseed
  SecurityPkg/DxeRngLibRngProtocol: add RNG protocol version of RngLib
  SecurityPkg/SecurityPkg.dsc: add new RngLib instances for build
  OvmfPkg: specify RngLib instances in dsc files
  ArmVirtPkg/ArmVirt.dsc.inc: specify RngLib instances in dsc files
  CryptoPkg/OpensslLib: use RngLib to get high quality random entropy
  FmpDevicePkg/FmpDevicePkg.dsc: remove TimerLib instance

 ArmVirtPkg/ArmVirt.dsc.inc                    |   2 +
 CryptoPkg/CryptoPkg.dsc                       |   1 +
 CryptoPkg/Library/OpensslLib/OpensslLib.inf   |  15 +-
 .../Library/OpensslLib/OpensslLibCrypto.inf   |  15 +-
 CryptoPkg/Library/OpensslLib/rand_pool.c      | 253 ++----------------
 .../Library/OpensslLib/rand_pool_noise.c      |  29 --
 .../Library/OpensslLib/rand_pool_noise.h      |  29 --
 .../Library/OpensslLib/rand_pool_noise_tsc.c  |  43 ---
 FmpDevicePkg/FmpDevicePkg.dsc                 |   2 +-
 MdePkg/Include/Library/BaseLib.h              |  51 ++++
 MdePkg/Library/BaseLib/BaseLib.inf            |   4 +
 MdePkg/Library/BaseLib/BaseLibInternals.h     |  46 ++++
 MdePkg/Library/BaseLib/Ia32/RdSeed.nasm       |  87 ++++++
 MdePkg/Library/BaseLib/X64/RdSeed.nasm        |  80 ++++++
 MdePkg/Library/BaseLib/X86RdSeed.c            |  73 +++++
 NetworkPkg/NetworkPkg.dsc                     |   1 +
 OvmfPkg/OvmfPkgIa32.dsc                       |   5 +
 OvmfPkg/OvmfPkgIa32X64.dsc                    |   5 +
 OvmfPkg/OvmfPkgX64.dsc                        |   5 +
 OvmfPkg/OvmfXen.dsc                           |   5 +
 .../DxeRngLibRngProtocol.c                    | 200 ++++++++++++++
 .../DxeRngLibRngProtocol.inf                  |  42 +++
 .../DxeRngLibRngProtocol.uni                  |  14 +
 .../RngLibRdSeed/RngLibRdSeed.inf             |  37 +++
 .../RngLibRdSeed/RngLibRdSeed.uni             |  18 ++
 .../RngLibRdSeed/RngRdSeed.c                  | 189 +++++++++++++
 SecurityPkg/SecurityPkg.dsc                   |   6 +
 SignedCapsulePkg/SignedCapsulePkg.dsc         |   6 +
 28 files changed, 909 insertions(+), 354 deletions(-)
 delete mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise.c
 delete mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise.h
 delete mode 100644 CryptoPkg/Library/OpensslLib/rand_pool_noise_tsc.c
 create mode 100644 MdePkg/Library/BaseLib/Ia32/RdSeed.nasm
 create mode 100644 MdePkg/Library/BaseLib/X64/RdSeed.nasm
 create mode 100644 MdePkg/Library/BaseLib/X86RdSeed.c
 create mode 100644 SecurityPkg/RandomNumberGenerator/DxeRngLibRngProtocol/DxeRngLibRngProtocol.c
 create mode 100644 SecurityPkg/RandomNumberGenerator/DxeRngLibRngProtocol/DxeRngLibRngProtocol.inf
 create mode 100644 SecurityPkg/RandomNumberGenerator/DxeRngLibRngProtocol/DxeRngLibRngProtocol.uni
 create mode 100644 SecurityPkg/RandomNumberGenerator/RngLibRdSeed/RngLibRdSeed.inf
 create mode 100644 SecurityPkg/RandomNumberGenerator/RngLibRdSeed/RngLibRdSeed.uni
 create mode 100644 SecurityPkg/RandomNumberGenerator/RngLibRdSeed/RngRdSeed.c

-- 
2.17.1.windows.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-11-14  5:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <15D6E5DF9619E96C.9269@groups.io>
2019-11-14  2:19 ` [edk2-devel] [PATCH 00/11] Use proper entropy sources Wang, Jian J
2019-11-14  2:17 Wang, Jian J
2019-11-14  4:21 ` [edk2-devel] " Michael D Kinney
2019-11-14  5:15   ` Wang, Jian J

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox