2013-04-12 20:55:45 +00:00
|
|
|
/*
|
|
|
|
* virtpm.c: TPM support
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
2013-04-03 10:36:23 +00:00
|
|
|
#include "virstring.h"
|
2013-04-12 20:55:45 +00:00
|
|
|
#include "virerror.h"
|
2015-11-18 00:44:13 +00:00
|
|
|
#include "viralloc.h"
|
|
|
|
#include "virfile.h"
|
2013-04-12 20:55:45 +00:00
|
|
|
#include "virtpm.h"
|
|
|
|
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_NONE
|
|
|
|
|
|
|
|
/**
|
|
|
|
* virTPMCreateCancelPath:
|
|
|
|
* @devpath: Path to the TPM device
|
|
|
|
*
|
|
|
|
* Create the cancel path given the path to the TPM device
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
virTPMCreateCancelPath(const char *devpath)
|
|
|
|
{
|
|
|
|
char *path = NULL;
|
|
|
|
const char *dev;
|
2015-11-18 00:44:13 +00:00
|
|
|
const char *prefix[] = {"misc/", "tpm/"};
|
|
|
|
size_t i;
|
2013-04-12 20:55:45 +00:00
|
|
|
|
|
|
|
if (devpath) {
|
|
|
|
dev = strrchr(devpath, '/');
|
|
|
|
if (dev) {
|
|
|
|
dev++;
|
2015-11-18 00:44:13 +00:00
|
|
|
for (i = 0; i < ARRAY_CARDINALITY(prefix); i++) {
|
|
|
|
if (virAsprintf(&path, "/sys/class/%s%s/device/cancel",
|
|
|
|
prefix[i], dev) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (virFileExists(path))
|
|
|
|
break;
|
|
|
|
|
|
|
|
VIR_FREE(path);
|
|
|
|
}
|
|
|
|
if (!path)
|
2017-06-29 18:01:11 +00:00
|
|
|
ignore_value(VIR_STRDUP(path, "/dev/null"));
|
2013-04-12 20:55:45 +00:00
|
|
|
} else {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("TPM device path %s is invalid"), devpath);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
virReportError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Missing TPM device path"));
|
|
|
|
}
|
|
|
|
|
2014-03-25 06:53:22 +00:00
|
|
|
cleanup:
|
2013-04-12 20:55:45 +00:00
|
|
|
return path;
|
|
|
|
}
|