2017-04-04 16:22:31 +00:00
|
|
|
/*
|
|
|
|
* qemu_tpm.h: QEMU TPM support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 IBM Corporation
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2018-12-13 13:32:06 +00:00
|
|
|
|
2019-06-18 16:12:37 +00:00
|
|
|
#pragma once
|
2017-04-04 16:22:31 +00:00
|
|
|
|
2019-06-18 16:12:37 +00:00
|
|
|
#include "vircommand.h"
|
2017-04-04 16:22:31 +00:00
|
|
|
|
|
|
|
int qemuExtTPMInitPaths(virQEMUDriverPtr driver,
|
|
|
|
virDomainDefPtr def)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
|
|
|
int qemuExtTPMPrepareHost(virQEMUDriverPtr driver,
|
|
|
|
virDomainDefPtr def)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
|
|
|
void qemuExtTPMCleanupHost(virDomainDefPtr def)
|
|
|
|
ATTRIBUTE_NONNULL(1);
|
|
|
|
|
|
|
|
int qemuExtTPMStart(virQEMUDriverPtr driver,
|
2018-11-13 14:14:43 +00:00
|
|
|
virDomainObjPtr vm,
|
2019-07-26 20:41:10 +00:00
|
|
|
bool incomingMigration)
|
2019-08-08 14:54:55 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|
2017-04-04 16:22:31 +00:00
|
|
|
|
|
|
|
void qemuExtTPMStop(virQEMUDriverPtr driver,
|
2018-11-13 14:14:43 +00:00
|
|
|
virDomainObjPtr vm)
|
2017-04-04 16:22:31 +00:00
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);
|
|
|
|
|
2018-04-05 19:06:55 +00:00
|
|
|
int qemuExtTPMSetupCgroup(virQEMUDriverPtr driver,
|
|
|
|
virDomainDefPtr def,
|
|
|
|
virCgroupPtr cgroup)
|
|
|
|
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2) ATTRIBUTE_NONNULL(3)
|
2019-10-14 12:25:14 +00:00
|
|
|
G_GNUC_WARN_UNUSED_RESULT;
|