All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] vtpm deep quote in locality 0
@ 2015-04-14  9:08 Emil Condrea
  2015-04-14  9:08 ` [PATCH v2 1/2] vtpm: deep quote flags Emil Condrea
  2015-04-14  9:08 ` [PATCH v2 2/2] vtpmmgr: execute deep quote in locality 0 Emil Condrea
  0 siblings, 2 replies; 9+ messages in thread
From: Emil Condrea @ 2015-04-14  9:08 UTC (permalink / raw)
  To: xen-devel; +Cc: dgdegra, emilcondrea

Changes from v1, suggested by Daniel:
 - flags parameter is now mandatory
 - updated documentation about externData calculation
 - constant size for externData structure, perform SHA1 on empty string
if requested parameter is NULL
 - return error if invalid bit is set in flags
 - added VTPM_QUOTE_FLAGS_GROUP_PUBKEY flag

Right now, deep quote functionality is enabled just when vtpm manager
is started with locality=2. This requirement is enforced by the current
implementation which uses PCRs that can be reset in locality 2: 20,21,22,23.

Since some TPM chips do not enable access to other locality than 0 this patch
enables the deep quote functionality for vtpm manager started with locality=0.

The patches are based on a suggestion given by Daniel De Graaf in another
thread on the list:
 - Add a field to the request - extraInfoFlags
 - Compute externData = SHA1 (
       extraInfoFlags
       requestData
       [SHA1 (
          [SHA1 (UUIDs if requested)]
          [SHA1 (vTPM measurements if requested)]
          [SHA1 (vTPM group update policy if requested)]
          [SHA1 (vTPM group public key if requested)]
       ) if flags !=0 ]
   )
 - Perform deep quotes using the above externData value instead of the value
provided by the vTPM.

Embedding additional data in externData is equivalently secure as extending
it into PCRs.

This change also has the benefit of increasing the flexibility of the request.
It is simple to define additional flags and add data to the hash if needed.

Emil Condrea (2):
  vtpm: deep quote flags
  vtpmmgr: execute deep quote in locality 0

 stubdom/Makefile                    |   1 +
 stubdom/vtpm-deepquote-anyloc.patch | 127 ++++++++++++++++++++++++++++++++++++
 stubdom/vtpm/vtpm_cmd.c             |  13 ++--
 stubdom/vtpmmgr/marshal.h           |   1 +
 stubdom/vtpmmgr/mgmt_authority.c    |  91 +++++++++++++++++++++++---
 stubdom/vtpmmgr/mgmt_authority.h    |   2 +-
 stubdom/vtpmmgr/vtpm_cmd_handler.c  |   7 +-
 stubdom/vtpmmgr/vtpm_manager.h      |  27 +++++++-
 8 files changed, 250 insertions(+), 19 deletions(-)
 create mode 100644 stubdom/vtpm-deepquote-anyloc.patch

-- 
2.1.0

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

end of thread, other threads:[~2015-04-15 17:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-14  9:08 [PATCH v2 0/2] vtpm deep quote in locality 0 Emil Condrea
2015-04-14  9:08 ` [PATCH v2 1/2] vtpm: deep quote flags Emil Condrea
2015-04-15 15:07   ` Daniel De Graaf
2015-04-15 15:09     ` Emil Condrea
2015-04-15 15:34       ` Ian Campbell
2015-04-15 15:50         ` Ian Campbell
2015-04-15 17:33           ` Emil Condrea
2015-04-14  9:08 ` [PATCH v2 2/2] vtpmmgr: execute deep quote in locality 0 Emil Condrea
2015-04-15 15:07   ` Daniel De Graaf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.