1
0
Fork 0
caffyBoot/BerrybootGUI2.0/diskdialog.cpp

293 lines
8.6 KiB
C++

/*
Copyright (c) 2012, Floris Bos
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "diskdialog.h"
#include "ui_diskdialog.h"
#include "installer.h"
#include "syncthread.h"
#include "driveformatthread.h"
#include "iscsidialog.h"
#include <QDir>
#include <QIcon>
#include <QProgressDialog>
#include <QMessageBox>
#include <QSettings>
#include <unistd.h>
DiskDialog::DiskDialog(Installer *i, QWidget *parent) :
QDialog(parent),
ui(new Ui::DiskDialog),
_i(i),
_usbboot(false)
{
setWindowFlags(Qt::Window | Qt::CustomizeWindowHint | Qt::WindowTitleHint);
ui->setupUi(this);
connect(&_pollDisksTimer,SIGNAL(timeout()), this, SLOT(pollForNewDisks()));
connect(i, SIGNAL(error(QString)), this, SLOT(onError(QString)));
QString defaultFS = _i->settings()->value("berryboot/defaultfs").toString();
if (defaultFS == "btrfs")
ui->filesystemCombo->setCurrentIndex(3);
else if (defaultFS == "ext4_nolazy")
ui->filesystemCombo->setCurrentIndex(2);
/* Check every second if the user attached a USB disk */
_pollDisksTimer.start(1000);
QTimer::singleShot(1, this, SLOT(populateDrivelist()) );
}
DiskDialog::~DiskDialog()
{
delete ui;
}
inline QByteArray get_file_contents(const QString &filename)
{
QByteArray r;
QFile f(filename);
f.open(f.ReadOnly);
r = f.readAll();
f.close();
return r;
}
void DiskDialog::populateDrivelist()
{
ui->driveList->clear();
QString defaultStorage = _i->settings()->value("berryboot/defaultstorage").toString();
QString dirname = "/sys/class/block";
QDir dir(dirname);
QStringList list = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot);
foreach (QString devname, list)
{
QString blocklink = QFile::symLinkTarget(dirname+"/"+devname);
/* skip virtual things and partitions */
if (blocklink.contains("/devices/virtual/") || QFile::exists(blocklink+"/partition") )
continue;
if (get_file_contents(blocklink+"/ro").trimmed() == "0")
{
/* block device is read-write */
QString model = get_file_contents(dirname+"/"+devname+"/device/model").trimmed();
if (model.isEmpty())
model = get_file_contents(dirname+"/"+devname+"/device/name").trimmed();
QIcon icon;
if (devname.startsWith("mmc"))
{
icon = QIcon(":/icons/mmc.png");
}
else
{
icon = QIcon(":/icons/hdd.png");
}
QListWidgetItem *item = new QListWidgetItem(icon, devname+": "+model, ui->driveList);
item->setData(Qt::UserRole, devname);
if (devname == defaultStorage)
{
ui->driveList->setCurrentItem(item);
if (_i->settings()->value("berryboot/preloaded").toBool() && hasExistingBerryboot(devname))
{
ui->filesystemCombo->setCurrentIndex(4);
on_formatButton_clicked();
}
}
}
}
QListWidgetItem *item = new QListWidgetItem(QIcon(":/icons/server.png"), "Networked storage (iSCSI SAN)", ui->driveList);
item->setData(Qt::UserRole, "iscsi");
if (ui->driveList->currentRow() < 1)
ui->driveList->setCurrentRow(0);
_devlistcount = list.count();
}
void DiskDialog::pollForNewDisks()
{
QDir dir("/sys/class/block");
if (dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot).count() != _devlistcount)
populateDrivelist();
}
void DiskDialog::on_formatButton_clicked()
{
setEnabled(false);
_pollDisksTimer.stop();
QString drive = ui->driveList->currentItem()->data(Qt::UserRole).toString();
QString fs;
if (drive == "iscsi")
{
iSCSIDialog id(_i, this);
if (id.exec() != id.Accepted)
{
setEnabled(true);
_pollDisksTimer.start(1000);
return;
}
}
switch (ui->filesystemCombo->currentIndex())
{
case 0:
fs = "ext4";
break;
case 2:
fs = "ext4 nolazy";
break;
case 3:
fs = "btrfs";
break;
case 4:
fs = "existing";
if ( !hasExistingBerryboot(ui->driveList->currentItem()->data(Qt::UserRole).toString()) )
{
QMessageBox::critical(this, tr("Error"), tr("No existing Berryboot installation found on this drive"), QMessageBox::Close);
setEnabled(true);
_pollDisksTimer.start(1000);
return;
}
break;
default:
fs = "ext4 nodiscard";
}
if (ui->luksCheck->isChecked())
{
QMessageBox::information(this, tr("Info"), tr("You will be switched to a secure text console shortly, where you need to enter the password you wish to use three times"), QMessageBox::Ok);
}
_qpd = new QProgressDialog( tr("Preparing disk format"), QString(), 0, 0, this);
_qpd->show();
//_i->mountSystemPartition() // already done by berryboot
QString bootdev = "mmcblk0p1";
if (drive == "iscsi")
{
if (!QFile::exists("/dev/"+bootdev))
bootdev = "mmcblk0";
}
else if (_i->supportsUSBboot() && !drive.startsWith("mmcblk"))
{
bootdev = drive;
if (!bootdev.startsWith("sd") && !bootdev.startsWith("hd"))
bootdev += "p";
bootdev += "1";
_usbboot = true;
}
DriveFormatThread *dft = new DriveFormatThread(drive, fs, _i, this, bootdev, true, ui->luksCheck->isChecked());
connect(dft, SIGNAL(statusUpdate(QString)), _qpd, SLOT(setLabelText(QString)));
connect(dft, SIGNAL(error(QString)), this, SLOT(onError(QString)));
connect(dft, SIGNAL(completed()), this, SLOT(onFormatComplete()));
dft->start();
}
void DiskDialog::onFormatComplete()
{
DriveFormatThread *dft = qobject_cast<DriveFormatThread *>(sender());
_qpd->hide();
dft->deleteLater();
accept();
}
void DiskDialog::onError(const QString &errormsg)
{
if (_qpd)
_qpd->hide();
QMessageBox::critical(this, tr("Error"), errormsg, QMessageBox::Close);
setEnabled(true);
_pollDisksTimer.start(1000);
}
void DiskDialog::on_driveList_currentRowChanged(int currentRow)
{
if (currentRow == -1)
return;
if ( hasExistingBerryboot(ui->driveList->currentItem()->data(Qt::UserRole).toString()) )
{
ui->filesystemCombo->setCurrentIndex(4);
}
else if (ui->filesystemCombo->currentIndex() == 4)
{
ui->filesystemCombo->setCurrentIndex(0);
}
}
bool DiskDialog::hasExistingBerryboot(const QString &drive)
{
bool existingBerryboot = false;
QString p = drive;
if (p.startsWith("sd") || p.startsWith("hd"))
p += "2";
else
p += "p2";
QProcess proc;
proc.start("/sbin/blkid /dev/"+p);
if (proc.waitForFinished() && proc.exitCode() == 0)
{
QByteArray res = proc.readAll();
if (res.contains("LABEL=\"berryboot\""))
{
existingBerryboot = true;
}
}
return existingBerryboot;
}
void DiskDialog::on_filesystemCombo_currentIndexChanged(const QString &)
{
if (ui->filesystemCombo->currentIndex() == 4)
{
/* Using existing files */
ui->luksCheck->setEnabled(false);
ui->warningLabel->setHidden(true);
ui->formatButton->setText(tr("Continue"));
}
else
{
ui->luksCheck->setEnabled(true);
ui->warningLabel->setHidden(false);
ui->formatButton->setText(tr("Format"));
}
}
bool DiskDialog::usbBoot()
{
return _usbboot;
}