kpmcore/src/core/lvmdevice.cpp

378 lines
12 KiB
C++
Raw Normal View History

2016-06-08 16:50:40 +01:00
/*************************************************************************
* Copyright (C) 2016 by Chantara Tith <tith.chantara@gmail.com> *
2016-06-08 16:50:40 +01:00
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License as *
* published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>.*
*************************************************************************/
#include "core/lvmdevice.h"
#include "fs/filesystem.h"
#include "fs/lvm2_pv.h"
#include "fs/filesystemfactory.h"
#include "core/partition.h"
2016-06-08 16:50:40 +01:00
#include "core/partitiontable.h"
#include "util/externalcommand.h"
2016-06-13 00:39:54 +01:00
#include "util/helpers.h"
2016-06-08 16:50:40 +01:00
#include <QRegularExpression>
#include <QStringList>
2016-06-13 00:39:54 +01:00
#include <KMountPoint>
#include <KDiskFreeSpaceInfo>
2016-06-23 19:41:55 +01:00
#include <KLocalizedString>
2016-06-08 16:50:40 +01:00
/** Constructs a representation of LVM device with functionning LV as Partition
*
* @param name Volume Group name
*/
2016-06-08 16:50:40 +01:00
LvmDevice::LvmDevice(const QString& name, const QString& iconname)
: VolumeManagerDevice(name,
(QStringLiteral("/dev/") + name),
getPeSize(name),
getTotalPE(name),
iconname,
Device::LVM_Device)
, m_peSize(getPeSize(name))
, m_totalPE(getTotalPE(name))
, m_allocPE(getAllocatedPE(name))
, m_freePE(getFreePE(name))
, m_UUID(getUUID(name))
2016-06-08 16:50:40 +01:00
{
initPartitions();
}
void LvmDevice::initPartitions()
{
qint64 firstUsable = 0;
qint64 lastusable = totalPE() - 1;
PartitionTable* pTable = new PartitionTable(PartitionTable::vmd, firstUsable, lastusable);
foreach (Partition* p, scanPartitions(*this, pTable)) {
pTable->append(p);
}
2016-06-23 19:41:55 +01:00
pTable->updateUnallocated(*this);
2016-06-12 14:09:46 +01:00
setPartitionTable(pTable);
}
/**
* @returns sorted Partition(LV) Array
*/
2016-06-23 19:41:55 +01:00
QList<Partition*> LvmDevice::scanPartitions(const LvmDevice& dev, PartitionTable* pTable) const
2016-06-08 16:50:40 +01:00
{
QList<Partition*> pList;
foreach (QString lvPath, lvPathList()) {
pList.append(scanPartition(lvPath, dev, pTable));
}
return pList;
}
/**
* @returns sorted Partition(LV) Array
*/
2016-06-23 19:41:55 +01:00
Partition* LvmDevice::scanPartition(const QString& lvpath, const LvmDevice& dev, PartitionTable* pTable) const
{
/*
* NOTE:
* LVM partition have 2 different start and end sector value
* 1. representing the actual LV start from 0 -> size of LV - 1
* 2. representing abstract LV's sector inside a VG partitionTable
2016-07-20 19:43:44 +01:00
* start from last sector + 1 of last Partitions -> size of LV - 1
* Reason for this is for the LV Partition to worrks nicely with other parts of the codebase
* without too many special cases.
*/
qint64 startSector;
qint64 endSector;
qint64 lvSize;
bool mounted = isMounted(lvpath);
QString mountPoint = QString();
KMountPoint::List mountPointList = KMountPoint::currentMountPoints(KMountPoint::NeedRealDeviceName);
mountPointList.append(KMountPoint::possibleMountPoints(KMountPoint::NeedRealDeviceName));
mountPoint = mountPointList.findByDevice(lvpath) ?
mountPointList.findByDevice(lvpath)->mountPoint() :
QString();
lvSize = getTotalLE(lvpath);
startSector = mappedSector(lvpath,0);
endSector = startSector + (lvSize - 1);
const KDiskFreeSpaceInfo freeSpaceInfo = KDiskFreeSpaceInfo::freeSpaceInfo(mountPoint);
FileSystem* fs = FileSystemFactory::create(FileSystem::detectFileSystem(lvpath), 0, lvSize - 1);
2016-06-25 18:25:05 +01:00
//TODO: fix used space report. currently incorrect
if (mounted && freeSpaceInfo.isValid() && mountPoint != QString()) {
fs->setSectorsUsed(freeSpaceInfo.used() / logicalSize());
2016-06-25 18:25:05 +01:00
} else if (fs->supportGetUsed() == FileSystem::cmdSupportFileSystem) {
fs->setSectorsUsed(fs->readUsedCapacity(lvpath) / logicalSize());
}
2016-06-13 00:39:54 +01:00
if (fs->supportGetLabel() != FileSystem::cmdSupportNone) {
fs->setLabel(fs->readLabel(lvpath));
}
Partition* part = new Partition(pTable,
dev,
PartitionRole(PartitionRole::Lvm_Lv),
fs,
startSector,
endSector,
lvpath,
PartitionTable::Flag::FlagLvm,
mountPoint,
mounted);
return part;
2016-06-08 16:50:40 +01:00
}
qint64 LvmDevice::mappedSector(const QString& lvpath, qint64 sector) const
{
qint64 mSector = 0;
QList<QString> lvpathList = lvPathList();
qint32 devIndex = lvpathList.indexOf(lvpath);
if (devIndex) {
for (int i = 0; i < devIndex; i++) {
//TODO: currently going over the same LV again and again is wasteful. Could use some more optimization
mSector += getTotalLE(lvpathList[i]);
}
mSector += sector;
}
return mSector;
}
QStringList LvmDevice::getPVs(const QString& vgname)
2016-06-08 16:50:40 +01:00
{
QStringList devPathList;
QString cmdOutput = getField(QStringLiteral("pv_name"), vgname);
2016-06-12 14:09:46 +01:00
if (cmdOutput.size()) {
QStringList tempPathList = cmdOutput.split(QStringLiteral("\n"), QString::SkipEmptyParts);
2016-06-12 14:09:46 +01:00
foreach(QString devPath, tempPathList) {
devPathList.append(devPath.trimmed());
2016-06-08 16:50:40 +01:00
}
}
2016-06-12 14:09:46 +01:00
return devPathList;
}
QList<QString> LvmDevice::deviceNodeList() const
{
return getPVs(name());
}
QStringList LvmDevice::getLVs(const QString& vgname)
{
QStringList lvPathList;
QString cmdOutput = getField(QStringLiteral("lv_path"), vgname);
if (cmdOutput.size()) {
QStringList tempPathList = cmdOutput.split(QStringLiteral("\n"), QString::SkipEmptyParts);
foreach(QString lvPath, tempPathList) {
lvPathList.append(lvPath.trimmed());
}
}
return lvPathList;
}
QList<QString> LvmDevice::lvPathList() const
{
return getLVs(name());
}
qint64 LvmDevice::getPeSize(const QString& vgname)
2016-06-12 14:09:46 +01:00
{
QString val = getField(QStringLiteral("vg_extent_size"), vgname);
return val.isEmpty() ? -1 : val.toInt();
2016-06-08 16:50:40 +01:00
}
2016-06-26 11:54:47 +01:00
qint64 LvmDevice::getTotalPE(const QString& vgname)
2016-06-08 16:50:40 +01:00
{
2016-06-12 14:09:46 +01:00
QString val = getField(QStringLiteral("vg_extent_count"), vgname);
return val.isEmpty() ? -1 : val.toInt();
2016-06-08 16:50:40 +01:00
}
qint64 LvmDevice::getAllocatedPE(const QString& vgname)
2016-06-08 16:50:40 +01:00
{
2016-06-12 14:09:46 +01:00
return getTotalPE(vgname) - getFreePE(vgname);
2016-06-08 16:50:40 +01:00
}
qint64 LvmDevice::getFreePE(const QString& vgname)
2016-06-08 16:50:40 +01:00
{
2016-06-12 14:09:46 +01:00
QString val = getField(QStringLiteral("vg_free_count"), vgname);
return val.isEmpty() ? -1 : val.toInt();
2016-06-08 16:50:40 +01:00
}
QString LvmDevice::getUUID(const QString& vgname)
2016-06-12 14:09:46 +01:00
{
QString val = getField(QStringLiteral("vg_uuid"), vgname);
return val.isEmpty() ? QStringLiteral("---") : val;
}
2016-06-23 19:41:55 +01:00
/** Get LVM vgs command output with field name
2016-06-13 00:39:54 +01:00
*
* @param fieldName lvm field name
* @param vgname
* @returns raw output of command output, usully with manay spaces within the returned string
* */
2016-06-12 14:09:46 +01:00
QString LvmDevice::getField(const QString& fieldName, const QString& vgname)
{
QStringList args = { QStringLiteral("vgs"),
2016-06-12 14:09:46 +01:00
QStringLiteral("--foreign"),
QStringLiteral("--readonly"),
QStringLiteral("--noheadings"),
QStringLiteral("--units"),
QStringLiteral("B"),
2016-06-12 14:09:46 +01:00
QStringLiteral("--nosuffix"),
QStringLiteral("--options"),
fieldName };
if (!vgname.isEmpty()) {
args << vgname;
}
ExternalCommand cmd(QStringLiteral("lvm"), args);
if (cmd.run(-1) && cmd.exitCode() == 0) {
2016-06-12 14:09:46 +01:00
return cmd.output().trimmed();
}
2016-06-12 14:09:46 +01:00
return QString();
}
qint64 LvmDevice::getTotalLE(const QString& lvpath)
{
ExternalCommand cmd(QStringLiteral("lvm"),
{ QStringLiteral("lvdisplay"),
lvpath});
if (cmd.run(-1) && cmd.exitCode() == 0) {
QRegularExpression re(QStringLiteral("Current LE\\h+(\\d+)"));
QRegularExpressionMatch match = re.match(cmd.output());
if (match.hasMatch()) {
return match.captured(1).toInt();
}
}
return -1;
}
2016-06-18 21:58:40 +01:00
2016-06-23 19:41:55 +01:00
bool LvmDevice::removeLV(Report& report, LvmDevice& dev, Partition& part)
2016-06-18 21:58:40 +01:00
{
2016-06-25 05:41:00 +01:00
ExternalCommand cmd(report, QStringLiteral("lvm"),
2016-06-18 21:58:40 +01:00
{ QStringLiteral("lvremove"),
QStringLiteral("--yes"),
part.partitionPath()});
if (cmd.run(-1) && cmd.exitCode() == 0) {
2016-06-23 19:41:55 +01:00
//TODO: remove Partition from PartitionTable and delete from memory ??
2016-06-18 21:58:40 +01:00
dev.partitionTable()->remove(&part);
return true;
}
2016-06-23 19:41:55 +01:00
return false;
}
bool LvmDevice::createLV(Report& report, LvmDevice& dev, Partition& part, const QString& lvname)
{
2016-06-25 05:41:00 +01:00
ExternalCommand cmd(report, QStringLiteral("lvm"),
2016-06-23 19:41:55 +01:00
{ QStringLiteral("lvcreate"),
QStringLiteral("--yes"),
QStringLiteral("--extents"),
QString::number(part.length()),
QStringLiteral("--name"),
lvname,
dev.name()});
2016-06-25 05:41:00 +01:00
return (cmd.run(-1) && cmd.exitCode() == 0);
2016-06-23 19:41:55 +01:00
}
2016-06-25 19:13:09 +01:00
bool LvmDevice::resizeLV(Report& report, LvmDevice& dev, Partition& part)
2016-06-23 19:41:55 +01:00
{
Q_UNUSED(dev);
2016-06-25 19:13:09 +01:00
//TODO: through tests and add warning that it could currupt the user data.
2016-06-25 05:41:00 +01:00
ExternalCommand cmd(report, QStringLiteral("lvm"),
2016-06-23 19:41:55 +01:00
{ QStringLiteral("lvresize"),
2016-06-25 19:13:09 +01:00
QStringLiteral("--force"), // this command could corrupt user data
QStringLiteral("--yes"),
2016-06-23 19:41:55 +01:00
QStringLiteral("--extents"),
QString::number(part.length()),
part.partitionPath()});
2016-06-25 05:41:00 +01:00
return (cmd.run(-1) && cmd.exitCode() == 0);
2016-06-23 19:41:55 +01:00
}
bool LvmDevice::removePV(Report& report, LvmDevice& dev, const QString& pvPath)
{
//TODO: through tests
2016-06-25 05:41:00 +01:00
ExternalCommand cmd(report, QStringLiteral("lvm"),
2016-06-23 19:41:55 +01:00
{ QStringLiteral("vgreduce"),
//QStringLiteral("--yes"), // potentially corrupt user data
dev.name(),
pvPath});
2016-06-25 05:41:00 +01:00
return (cmd.run(-1) && cmd.exitCode() == 0);
2016-06-23 19:41:55 +01:00
}
bool LvmDevice::insertPV(Report& report, LvmDevice& dev, const QString& pvPath)
{
//TODO: through tests
2016-06-25 05:41:00 +01:00
ExternalCommand cmd(report, QStringLiteral("lvm"),
2016-06-23 19:41:55 +01:00
{ QStringLiteral("vgextend"),
//QStringLiteral("--yes"), // potentially corrupt user data
dev.name(),
pvPath});
2016-06-25 05:41:00 +01:00
return (cmd.run(-1) && cmd.exitCode() == 0);
2016-06-18 21:58:40 +01:00
}
bool LvmDevice::movePV(Report& report, LvmDevice& dev, const QString& pvPath, const QStringList& destinations)
2016-07-04 02:13:26 +01:00
{
Q_UNUSED(dev);
if (FS::lvm2_pv::getAllocatedPE(pvPath) <= 0) {
return true;
}
QStringList args = QStringList();
args << QStringLiteral("pvmove");
args << pvPath;
if (!destinations.isEmpty()) {
foreach (QString destPath, destinations) {
args << destPath.trimmed();
}
}
ExternalCommand cmd(report, QStringLiteral("lvm"), args);
2016-07-04 02:13:26 +01:00
return (cmd.run(-1) && cmd.exitCode() == 0);
}
2016-06-29 16:08:32 +01:00
bool LvmDevice::createVG(Report& report, const QString vgname, const QStringList pvlist, const qint32 peSize)
2016-06-29 16:08:32 +01:00
{
//TODO: check that all the pv in pvlist is lvm2_pv
QStringList args = QStringList();
args << QStringLiteral("vgcreate") << QStringLiteral("--physicalextentsize") << QString::number(peSize);
args << vgname;
foreach (QString pvnode, pvlist) {
args << pvnode.trimmed();
2016-06-29 16:08:32 +01:00
}
ExternalCommand cmd(report, QStringLiteral("lvm"), args);
return (cmd.run(-1) && cmd.exitCode() == 0);
}
bool LvmDevice::removeVG(Report& report, LvmDevice& dev)
{
ExternalCommand cmd(report, QStringLiteral("lvm"),
{ QStringLiteral("vgremove"),
dev.name() });
return (cmd.run(-1) && cmd.exitCode() == 0);
}