aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xm-test/tests/vtpm/vtpm_utils.py
blob: 4e5b281bb82b2d63843dd4e66df8e6c9592af073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/python

# Copyright (C) International Business Machines Corp., 2006
# Author: Stefan Berger <stefanb@us.ibm.com>

from XmTestLib import *

if ENABLE_HVM_SUPPORT:
    SKIP("vtpm tests not supported for HVM domains")

status, output = traceCommand("COLUMNS=200 ; "
                              "ps aux | grep vtpm_manager | grep -v grep")
if output == "":
    SKIP("virtual TPM manager must be started to run this test; might "
         "need /dev/tpm0")

def vtpm_cleanup(domName):
    traceCommand("/etc/xen/scripts/vtpm-delete "
                 "`xenstore-read /local/domain/0/backend/vtpm/%s/0/uuid`" %
                 str(domid(domName)))

def vtpm_cleanup(uuid):
    from xen.xm import main
    if main.serverType != main.SERVER_XEN_API:
        traceCommand("/etc/xen/scripts/vtpm-delete %s" % uuid)

def vtpm_get_uuid(domainid):
    s, o = traceCommand("xenstore-read "
                        "/local/domain/0/backend/vtpm/%s/0/uuid" % domainid)
    return o