libvirt/src/util/virsysfs.c
Martin Kletzander a7b902c082 util: Add virsysfs for handling sysfs files
By using this we are able to easily switch the sysfs path being
used (fake it).  This will not only help tests in the future but can
be also used from files where the code is duplicated currently.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
2017-03-27 13:13:29 +02:00

230 lines
4.9 KiB
C

/*
* virsysfs.c: Helper functions for manipulating sysfs files
*
* 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/>.
*
* Author: Martin Kletzander <mkletzan@redhat.com>
*/
#include <config.h>
#include "internal.h"
#include "virsysfspriv.h"
#include "viralloc.h"
#include "virfile.h"
#include "virlog.h"
#include "virstring.h"
#define VIR_FROM_THIS VIR_FROM_NONE
VIR_LOG_INIT("util.sysfs");
#define VIR_SYSFS_VALUE_MAXLEN 8192
#define SYSFS_SYSTEM_PATH "/sys/devices/system"
static const char *sysfs_system_path = SYSFS_SYSTEM_PATH;
void virSysfsSetSystemPath(const char *path)
{
if (path)
sysfs_system_path = path;
else
sysfs_system_path = SYSFS_SYSTEM_PATH;
}
const char *
virSysfsGetSystemPath(void)
{
return sysfs_system_path;
}
int
virSysfsGetValueInt(const char *file,
int *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/%s", sysfs_system_path, file) < 0)
return -1;
ret = virFileReadValueInt(path, value);
VIR_FREE(path);
return ret;
}
int
virSysfsGetValueString(const char *file,
char **value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/%s", sysfs_system_path, file) < 0)
return -1;
if (!virFileExists(path)) {
ret = -2;
goto cleanup;
}
if (virFileReadAll(path, VIR_SYSFS_VALUE_MAXLEN, value) < 0)
goto cleanup;
ret = 0;
cleanup:
VIR_FREE(path);
return ret;
}
int
virSysfsGetValueBitmap(const char *file,
virBitmapPtr *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/%s", sysfs_system_path, file) < 0)
return -1;
ret = virFileReadValueBitmap(path, VIR_SYSFS_VALUE_MAXLEN, value);
VIR_FREE(path);
return ret;
}
int
virSysfsGetCpuValueInt(unsigned int cpu,
const char *file,
int *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/cpu/cpu%u/%s", sysfs_system_path, cpu, file) < 0)
return -1;
ret = virFileReadValueInt(path, value);
VIR_FREE(path);
return ret;
}
int
virSysfsGetCpuValueUint(unsigned int cpu,
const char *file,
unsigned int *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/cpu/cpu%u/%s", sysfs_system_path, cpu, file) < 0)
return -1;
ret = virFileReadValueUint(path, value);
VIR_FREE(path);
return ret;
}
int
virSysfsGetCpuValueString(unsigned int cpu,
const char *file,
char **value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/cpu/cpu%u/%s", sysfs_system_path, cpu, file) < 0)
return -1;
if (!virFileExists(path)) {
ret = -2;
goto cleanup;
}
if (virFileReadAll(path, VIR_SYSFS_VALUE_MAXLEN, value) < 0)
goto cleanup;
ret = 0;
cleanup:
VIR_FREE(path);
return ret;
}
int
virSysfsGetCpuValueBitmap(unsigned int cpu,
const char *file,
virBitmapPtr *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/cpu/cpu%u/%s", sysfs_system_path, cpu, file) < 0)
return -1;
ret = virFileReadValueBitmap(path, VIR_SYSFS_VALUE_MAXLEN, value);
VIR_FREE(path);
return ret;
}
int
virSysfsGetNodeValueString(unsigned int node,
const char *file,
char **value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/node/node%u/%s", sysfs_system_path, node, file) < 0)
return -1;
if (!virFileExists(path)) {
ret = -2;
goto cleanup;
}
if (virFileReadAll(path, VIR_SYSFS_VALUE_MAXLEN, value) < 0)
goto cleanup;
ret = 0;
cleanup:
VIR_FREE(path);
return ret;
}
int
virSysfsGetNodeValueBitmap(unsigned int node,
const char *file,
virBitmapPtr *value)
{
char *path = NULL;
int ret = -1;
if (virAsprintf(&path, "%s/node/node%u/%s", sysfs_system_path, node, file) < 0)
return -1;
ret = virFileReadValueBitmap(path, VIR_SYSFS_VALUE_MAXLEN, value);
VIR_FREE(path);
return ret;
}