mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 19:01:14 +00:00
600462834f
In many files there are header comments that contain an Author: statement, supposedly reflecting who originally wrote the code. In a large collaborative project like libvirt, any non-trivial file will have been modified by a large number of different contributors. IOW, the Author: comments are quickly out of date, omitting people who have made significant contribitions. In some places Author: lines have been added despite the person merely being responsible for creating the file by moving existing code out of another file. IOW, the Author: lines give an incorrect record of authorship. With this all in mind, the comments are useless as a means to identify who to talk to about code in a particular file. Contributors will always be better off using 'git log' and 'git blame' if they need to find the author of a particular bit of code. This commit thus deletes all Author: comments from the source and adds a rule to prevent them reappearing. The Copyright headers are similarly misleading and inaccurate, however, we cannot delete these as they have legal meaning, despite being largely inaccurate. In addition only the copyright holder is permitted to change their respective copyright statement. Reviewed-by: Erik Skultety <eskultet@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
289 lines
6.4 KiB
C
289 lines
6.4 KiB
C
/*
|
|
* storage_backend_mpath.c: storage backend for multipath handling
|
|
*
|
|
* Copyright (C) 2009-2014 Red Hat, Inc.
|
|
* Copyright (C) 2009-2008 Dave Allan
|
|
*
|
|
* 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 <unistd.h>
|
|
#include <fcntl.h>
|
|
|
|
#include <libdevmapper.h>
|
|
|
|
#include "virerror.h"
|
|
#include "storage_conf.h"
|
|
#include "storage_backend.h"
|
|
#include "storage_backend_mpath.h"
|
|
#include "viralloc.h"
|
|
#include "virlog.h"
|
|
#include "virfile.h"
|
|
#include "virstring.h"
|
|
#include "storage_util.h"
|
|
|
|
#define VIR_FROM_THIS VIR_FROM_STORAGE
|
|
|
|
VIR_LOG_INIT("storage.storage_backend_mpath");
|
|
|
|
static int
|
|
virStorageBackendMpathNewVol(virStoragePoolObjPtr pool,
|
|
const int devnum,
|
|
const char *dev)
|
|
{
|
|
virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
|
|
virStorageVolDefPtr vol;
|
|
int ret = -1;
|
|
|
|
if (VIR_ALLOC(vol) < 0)
|
|
goto cleanup;
|
|
|
|
vol->type = VIR_STORAGE_VOL_BLOCK;
|
|
|
|
if (virAsprintf(&(vol->name), "dm-%u", devnum) < 0)
|
|
goto cleanup;
|
|
|
|
if (virAsprintf(&vol->target.path, "/dev/%s", dev) < 0)
|
|
goto cleanup;
|
|
|
|
if (virStorageBackendUpdateVolInfo(vol, true,
|
|
VIR_STORAGE_VOL_OPEN_DEFAULT, 0) < 0) {
|
|
goto cleanup;
|
|
}
|
|
|
|
/* XXX should use logical unit's UUID instead */
|
|
if (VIR_STRDUP(vol->key, vol->target.path) < 0)
|
|
goto cleanup;
|
|
|
|
if (virStoragePoolObjAddVol(pool, vol) < 0)
|
|
goto cleanup;
|
|
|
|
def->capacity += vol->target.capacity;
|
|
def->allocation += vol->target.allocation;
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
if (ret != 0)
|
|
virStorageVolDefFree(vol);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
static int
|
|
virStorageBackendIsMultipath(const char *dev_name)
|
|
{
|
|
int ret = 0;
|
|
struct dm_task *dmt = NULL;
|
|
void *next = NULL;
|
|
uint64_t start, length;
|
|
char *target_type = NULL;
|
|
char *params = NULL;
|
|
|
|
dmt = dm_task_create(DM_DEVICE_TABLE);
|
|
if (dmt == NULL) {
|
|
ret = -1;
|
|
goto out;
|
|
}
|
|
|
|
if (dm_task_set_name(dmt, dev_name) == 0) {
|
|
ret = -1;
|
|
goto out;
|
|
}
|
|
|
|
dm_task_no_open_count(dmt);
|
|
|
|
if (!dm_task_run(dmt)) {
|
|
ret = -1;
|
|
goto out;
|
|
}
|
|
|
|
dm_get_next_target(dmt, next, &start, &length, &target_type, ¶ms);
|
|
|
|
if (STREQ_NULLABLE(target_type, "multipath"))
|
|
ret = 1;
|
|
|
|
out:
|
|
if (dmt != NULL)
|
|
dm_task_destroy(dmt);
|
|
return ret;
|
|
}
|
|
|
|
|
|
static int
|
|
virStorageBackendGetMinorNumber(const char *dev_name, uint32_t *minor)
|
|
{
|
|
int ret = -1;
|
|
struct dm_task *dmt;
|
|
struct dm_info info;
|
|
|
|
if (!(dmt = dm_task_create(DM_DEVICE_INFO)))
|
|
goto out;
|
|
|
|
if (!dm_task_set_name(dmt, dev_name))
|
|
goto out;
|
|
|
|
if (!dm_task_run(dmt))
|
|
goto out;
|
|
|
|
if (!dm_task_get_info(dmt, &info))
|
|
goto out;
|
|
|
|
*minor = info.minor;
|
|
ret = 0;
|
|
|
|
out:
|
|
if (dmt != NULL)
|
|
dm_task_destroy(dmt);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
static int
|
|
virStorageBackendCreateVols(virStoragePoolObjPtr pool,
|
|
struct dm_names *names)
|
|
{
|
|
int retval = -1, is_mpath = 0;
|
|
char *map_device = NULL;
|
|
uint32_t minor = -1;
|
|
uint32_t next;
|
|
|
|
do {
|
|
is_mpath = virStorageBackendIsMultipath(names->name);
|
|
|
|
if (is_mpath < 0)
|
|
goto out;
|
|
|
|
if (is_mpath == 1) {
|
|
|
|
if (virAsprintf(&map_device, "mapper/%s", names->name) < 0)
|
|
goto out;
|
|
|
|
if (virStorageBackendGetMinorNumber(names->name, &minor) < 0) {
|
|
virReportError(VIR_ERR_INTERNAL_ERROR,
|
|
_("Failed to get %s minor number"),
|
|
names->name);
|
|
goto out;
|
|
}
|
|
|
|
if (virStorageBackendMpathNewVol(pool, minor, map_device) < 0)
|
|
goto out;
|
|
|
|
VIR_FREE(map_device);
|
|
}
|
|
|
|
/* Given the way libdevmapper returns its data, I don't see
|
|
* any way to avoid this series of casts. */
|
|
VIR_WARNINGS_NO_CAST_ALIGN
|
|
next = names->next;
|
|
names = (struct dm_names *)(((char *)names) + next);
|
|
VIR_WARNINGS_RESET
|
|
|
|
} while (next);
|
|
|
|
retval = 0;
|
|
out:
|
|
VIR_FREE(map_device);
|
|
return retval;
|
|
}
|
|
|
|
|
|
static int
|
|
virStorageBackendGetMaps(virStoragePoolObjPtr pool)
|
|
{
|
|
int retval = 0;
|
|
struct dm_task *dmt = NULL;
|
|
struct dm_names *names = NULL;
|
|
|
|
if (!(dmt = dm_task_create(DM_DEVICE_LIST))) {
|
|
retval = 1;
|
|
goto out;
|
|
}
|
|
|
|
dm_task_no_open_count(dmt);
|
|
|
|
if (!dm_task_run(dmt)) {
|
|
retval = 1;
|
|
goto out;
|
|
}
|
|
|
|
if (!(names = dm_task_get_names(dmt))) {
|
|
retval = 1;
|
|
goto out;
|
|
}
|
|
|
|
if (!names->dev) {
|
|
/* No devices found */
|
|
goto out;
|
|
}
|
|
|
|
virStorageBackendCreateVols(pool, names);
|
|
|
|
out:
|
|
if (dmt != NULL)
|
|
dm_task_destroy(dmt);
|
|
return retval;
|
|
}
|
|
|
|
static int
|
|
virStorageBackendMpathCheckPool(virStoragePoolObjPtr pool ATTRIBUTE_UNUSED,
|
|
bool *isActive)
|
|
{
|
|
*isActive = virFileExists("/dev/mapper") ||
|
|
virFileExists("/dev/mpath");
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
virStorageBackendMpathRefreshPool(virStoragePoolObjPtr pool)
|
|
{
|
|
int retval = 0;
|
|
virStoragePoolDefPtr def = virStoragePoolObjGetDef(pool);
|
|
|
|
VIR_DEBUG("pool=%p", pool);
|
|
|
|
def->allocation = def->capacity = def->available = 0;
|
|
|
|
virWaitForDevices();
|
|
|
|
virStorageBackendGetMaps(pool);
|
|
|
|
return retval;
|
|
}
|
|
|
|
|
|
virStorageBackend virStorageBackendMpath = {
|
|
.type = VIR_STORAGE_POOL_MPATH,
|
|
|
|
.checkPool = virStorageBackendMpathCheckPool,
|
|
.refreshPool = virStorageBackendMpathRefreshPool,
|
|
.uploadVol = virStorageBackendVolUploadLocal,
|
|
.downloadVol = virStorageBackendVolDownloadLocal,
|
|
.wipeVol = virStorageBackendVolWipeLocal,
|
|
};
|
|
|
|
|
|
int
|
|
virStorageBackendMpathRegister(void)
|
|
{
|
|
return virStorageBackendRegister(&virStorageBackendMpath);
|
|
}
|