mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-20 18:09:23 +03:00
12137231d3
o Update activate.c and fs.c to use them o device names are now of the form <vg>:<lv>
141 lines
2.5 KiB
C
141 lines
2.5 KiB
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <limits.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "fs.h"
|
|
#include "log.h"
|
|
#include "names.h"
|
|
|
|
#include <libdevmapper.h>
|
|
|
|
|
|
/*
|
|
* Lazy programmer: I'm just going to always try
|
|
* and create/remove the vg directory, and not say
|
|
* anything if it fails.
|
|
*/
|
|
static int _mk_dir(struct volume_group *vg)
|
|
{
|
|
char vg_path[PATH_MAX];
|
|
|
|
if (!build_vg_path(vg_path, sizeof(vg_path),
|
|
vg->cmd->dev_dir, vg->name)) {
|
|
log_err("Couldn't create volume group directory.");
|
|
return 0;
|
|
}
|
|
|
|
log_very_verbose("Creating directory %s", vg_path);
|
|
mkdir(vg_path, 0555);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int _rm_dir(struct volume_group *vg)
|
|
{
|
|
char vg_path[PATH_MAX];
|
|
|
|
if (!build_vg_path(vg_path, sizeof(vg_path),
|
|
vg->cmd->dev_dir, vg->name)) {
|
|
log_err("Couldn't remove volume group directory.");
|
|
return 0;
|
|
}
|
|
|
|
log_very_verbose("Removing directory %s", vg_path);
|
|
rmdir(vg_path);
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int _mk_link(struct logical_volume *lv)
|
|
{
|
|
char lv_path[PATH_MAX], link_path[PATH_MAX];
|
|
|
|
if (!build_dm_path(lv_path, sizeof(lv_path), lv->vg->name, lv->name)) {
|
|
log_err("Couldn't create destination path for "
|
|
"logical volume link.");
|
|
return 0;
|
|
}
|
|
|
|
if (!build_lv_link_path(link_path, sizeof(link_path),
|
|
lv->vg->cmd->dev_dir,
|
|
lv->vg->name, lv->name)) {
|
|
log_err("Couldn't create source path for "
|
|
"logical volume link.");
|
|
return 0;
|
|
}
|
|
|
|
log_very_verbose("Linking %s to %s", link_path, lv_path);
|
|
if (symlink(lv_path, link_path) < 0) {
|
|
log_sys_error("symlink", link_path);
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
static int _rm_link(struct logical_volume *lv, const char *lv_name)
|
|
{
|
|
char link_path[PATH_MAX];
|
|
|
|
if (!lv_name)
|
|
lv_name = lv->name;
|
|
|
|
if (!build_lv_link_path(link_path, sizeof(link_path),
|
|
lv->vg->cmd->dev_dir,
|
|
lv->vg->name, lv->name)) {
|
|
log_err("Couldn't create link path (in order to remove it.");
|
|
return 0;
|
|
}
|
|
|
|
log_very_verbose("Removing link %s", link_path);
|
|
if (unlink(link_path) < 0) {
|
|
log_sys_error("unlink", link_path);
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int fs_add_lv(struct logical_volume *lv)
|
|
{
|
|
if (!_mk_dir(lv->vg) ||
|
|
!_mk_link(lv)) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int fs_del_lv(struct logical_volume *lv)
|
|
{
|
|
if (!_rm_link(lv, NULL) ||
|
|
!_rm_dir(lv->vg)) {
|
|
stack;
|
|
return 0;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int fs_rename_lv(const char *old_name, struct logical_volume *lv)
|
|
{
|
|
if (!_rm_link(lv, old_name))
|
|
stack;
|
|
|
|
if (!_mk_link(lv))
|
|
stack;
|
|
|
|
return 1;
|
|
}
|