mirror of
https://github.com/tnodir/fort
synced 2024-11-15 15:55:45 +00:00
307 lines
8.0 KiB
C++
307 lines
8.0 KiB
C++
#include "fortsettings.h"
|
|
|
|
#include <QApplication>
|
|
#include <QCommandLineParser>
|
|
#include <QJsonDocument>
|
|
#include <QSettings>
|
|
|
|
#include "conf/addressgroup.h"
|
|
#include "conf/firewallconf.h"
|
|
#include "util/fileutil.h"
|
|
|
|
FortSettings::FortSettings(const QStringList &args,
|
|
QObject *parent) :
|
|
QObject(parent),
|
|
m_hasProvBoot(false),
|
|
m_provBoot(false)
|
|
{
|
|
processArguments(args);
|
|
setupIni();
|
|
}
|
|
|
|
bool FortSettings::startWithWindows() const
|
|
{
|
|
return FileUtil::fileExists(startupShortcutPath());
|
|
}
|
|
|
|
void FortSettings::setStartWithWindows(bool start)
|
|
{
|
|
const QString linkPath = startupShortcutPath();
|
|
if (start) {
|
|
FileUtil::linkFile(qApp->applicationFilePath(), linkPath);
|
|
} else {
|
|
FileUtil::removeFile(linkPath);
|
|
}
|
|
emit startWithWindowsChanged();
|
|
}
|
|
|
|
void FortSettings::processArguments(const QStringList &args)
|
|
{
|
|
QCommandLineParser parser;
|
|
|
|
const QCommandLineOption provBootOption(
|
|
QStringList() << "b" << "boot",
|
|
"Block access to network when Fort Firewall is not running.", "boot");
|
|
parser.addOption(provBootOption);
|
|
|
|
const QCommandLineOption profileOption(
|
|
QStringList() << "p" << "profile",
|
|
"Directory to store settings.", "profile");
|
|
parser.addOption(profileOption);
|
|
|
|
parser.addVersionOption();
|
|
parser.addHelpOption();
|
|
|
|
parser.process(args);
|
|
|
|
m_hasProvBoot = parser.isSet(provBootOption);
|
|
if (m_hasProvBoot) {
|
|
m_provBoot = QVariant(parser.value(provBootOption)).toBool();
|
|
}
|
|
|
|
m_profilePath = parser.value(profileOption);
|
|
if (m_profilePath.isEmpty()) {
|
|
m_profilePath = FileUtil::appConfigLocation();
|
|
}
|
|
m_profilePath = FileUtil::absolutePath(m_profilePath);
|
|
|
|
const QLatin1Char slash('/');
|
|
if (!m_profilePath.endsWith(slash)) {
|
|
m_profilePath += slash;
|
|
}
|
|
}
|
|
|
|
void FortSettings::setupIni()
|
|
{
|
|
const QString iniPath(m_profilePath + "FortFirewall.ini");
|
|
|
|
FileUtil::makePath(m_profilePath);
|
|
|
|
m_ini = new QSettings(iniPath, QSettings::IniFormat, this);
|
|
}
|
|
|
|
void FortSettings::setErrorMessage(const QString &errorMessage)
|
|
{
|
|
if (m_errorMessage != errorMessage) {
|
|
m_errorMessage = errorMessage;
|
|
emit errorMessageChanged();
|
|
}
|
|
}
|
|
|
|
TasksMap FortSettings::tasks() const
|
|
{
|
|
TasksMap map;
|
|
const QString tasksPrefix("tasks");
|
|
|
|
foreach (const QString &taskName, iniChildKeys(tasksPrefix)) {
|
|
const QString taskKey(tasksPrefix + '/' + taskName);
|
|
map.insert(taskName, iniValue(taskKey).toByteArray());
|
|
}
|
|
return map;
|
|
}
|
|
|
|
bool FortSettings::setTasks(const TasksMap &map)
|
|
{
|
|
const QString tasksPrefix("tasks");
|
|
|
|
removeIniKey(tasksPrefix);
|
|
|
|
foreach (const QString &taskName, map.keys()) {
|
|
const QString taskKey(tasksPrefix + '/' + taskName);
|
|
setIniValue(taskKey, map.value(taskName));
|
|
}
|
|
|
|
return iniSync();
|
|
}
|
|
|
|
QString FortSettings::confFilePath() const
|
|
{
|
|
return m_profilePath + QLatin1String("FortFirewall.conf");
|
|
}
|
|
|
|
QString FortSettings::confBackupFilePath() const
|
|
{
|
|
return confFilePath() + QLatin1String(".backup");
|
|
}
|
|
|
|
bool FortSettings::readConf(FirewallConf &conf)
|
|
{
|
|
const QString filePath = confFilePath();
|
|
const QString backupFilePath = confBackupFilePath();
|
|
|
|
const bool fileExists = FileUtil::fileExists(filePath);
|
|
const bool backupFileExists = FileUtil::fileExists(backupFilePath);
|
|
|
|
return (!(fileExists || backupFileExists)
|
|
|| (fileExists && tryToReadConf(conf, filePath))
|
|
|| tryToReadConf(conf, backupFilePath))
|
|
&& readConfFlags(conf); // read flags at the end to use correct app groups
|
|
}
|
|
|
|
bool FortSettings::tryToReadConf(FirewallConf &conf, const QString &filePath)
|
|
{
|
|
const QByteArray data = FileUtil::readFileData(filePath);
|
|
|
|
QJsonParseError jsonParseError;
|
|
const QJsonDocument jsonDoc = QJsonDocument::fromJson(
|
|
data, &jsonParseError);
|
|
if (jsonParseError.error != QJsonParseError::NoError) {
|
|
setErrorMessage(jsonParseError.errorString());
|
|
return false;
|
|
}
|
|
|
|
conf.fromVariant(jsonDoc.toVariant());
|
|
|
|
return true;
|
|
}
|
|
|
|
bool FortSettings::writeConf(const FirewallConf &conf)
|
|
{
|
|
const QString filePath = confFilePath();
|
|
const QString backupFilePath = confBackupFilePath();
|
|
|
|
if (!writeConfFlags(conf)) {
|
|
setErrorMessage(tr("Can't write .ini file"));
|
|
return false;
|
|
}
|
|
|
|
if (FileUtil::fileExists(backupFilePath)
|
|
&& !FileUtil::renameFile(backupFilePath, filePath)) {
|
|
setErrorMessage(tr("Can't rename old backup .conf file"));
|
|
return false;
|
|
}
|
|
|
|
if (!tryToWriteConf(conf, backupFilePath)) {
|
|
setErrorMessage(tr("Can't create backup .conf file"));
|
|
return false;
|
|
}
|
|
|
|
if (!FileUtil::renameFile(backupFilePath, filePath)) {
|
|
setErrorMessage(tr("Can't rename backup .conf file"));
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool FortSettings::tryToWriteConf(const FirewallConf &conf, const QString &filePath)
|
|
{
|
|
const QJsonDocument jsonDoc = QJsonDocument::fromVariant(
|
|
conf.toVariant());
|
|
|
|
const QByteArray data = jsonDoc.toJson(QJsonDocument::Indented);
|
|
|
|
if (!FileUtil::writeFileData(filePath, data)) {
|
|
setErrorMessage(tr("Can't write .conf file"));
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool FortSettings::readConfFlags(FirewallConf &conf) const
|
|
{
|
|
m_ini->beginGroup("confFlags");
|
|
conf.setProvBoot(iniBool("provBoot"));
|
|
conf.setFilterEnabled(iniBool("filterEnabled", true));
|
|
conf.ipInclude()->setUseAll(iniBool("ipIncludeAll"));
|
|
conf.ipExclude()->setUseAll(iniBool("ipExcludeAll"));
|
|
conf.setAppBlockAll(iniBool("appBlockAll", true));
|
|
conf.setAppAllowAll(iniBool("appAllowAll"));
|
|
conf.setAppGroupBits(iniUInt("appGroupBits", 0xFFFF));
|
|
m_ini->endGroup();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool FortSettings::writeConfFlags(const FirewallConf &conf)
|
|
{
|
|
m_ini->beginGroup("confFlags");
|
|
setIniValue("provBoot", conf.provBoot());
|
|
setIniValue("filterEnabled", conf.filterEnabled());
|
|
setIniValue("ipIncludeAll", conf.ipInclude()->useAll());
|
|
setIniValue("ipExcludeAll", conf.ipExclude()->useAll());
|
|
setIniValue("appBlockAll", conf.appBlockAll());
|
|
setIniValue("appAllowAll", conf.appAllowAll());
|
|
setIniValue("appGroupBits", conf.appGroupBits());
|
|
m_ini->endGroup();
|
|
|
|
return iniSync();
|
|
}
|
|
|
|
bool FortSettings::iniBool(const QString &key, bool defaultValue) const
|
|
{
|
|
return iniValue(key, defaultValue).toBool();
|
|
}
|
|
|
|
int FortSettings::iniInt(const QString &key, int defaultValue) const
|
|
{
|
|
return iniValue(key, defaultValue).toInt();
|
|
}
|
|
|
|
int FortSettings::iniUInt(const QString &key, int defaultValue) const
|
|
{
|
|
return iniValue(key, defaultValue).toUInt();
|
|
}
|
|
|
|
int FortSettings::iniReal(const QString &key, qreal defaultValue) const
|
|
{
|
|
return iniValue(key, defaultValue).toReal();
|
|
}
|
|
|
|
QString FortSettings::iniText(const QString &key, const QString &defaultValue) const
|
|
{
|
|
return iniValue(key, defaultValue).toString();
|
|
}
|
|
|
|
QStringList FortSettings::iniList(const QString &key) const
|
|
{
|
|
return iniValue(key).toStringList();
|
|
}
|
|
|
|
QVariant FortSettings::iniValue(const QString &key,
|
|
const QVariant &defaultValue) const
|
|
{
|
|
if (key.isEmpty())
|
|
return QVariant();
|
|
|
|
return m_ini->value(key, defaultValue);
|
|
}
|
|
|
|
void FortSettings::setIniValue(const QString &key, const QVariant &value,
|
|
const QVariant &defaultValue)
|
|
{
|
|
if (m_ini->value(key, defaultValue) == value)
|
|
return;
|
|
|
|
m_ini->setValue(key, value);
|
|
emit iniChanged();
|
|
}
|
|
|
|
void FortSettings::removeIniKey(const QString &key)
|
|
{
|
|
m_ini->remove(key);
|
|
}
|
|
|
|
QStringList FortSettings::iniChildKeys(const QString &prefix) const
|
|
{
|
|
m_ini->beginGroup(prefix);
|
|
const QStringList list = m_ini->childKeys();
|
|
m_ini->endGroup();
|
|
return list;
|
|
}
|
|
|
|
bool FortSettings::iniSync()
|
|
{
|
|
m_ini->sync();
|
|
|
|
return m_ini->status() == QSettings::NoError;
|
|
}
|
|
|
|
QString FortSettings::startupShortcutPath()
|
|
{
|
|
return FileUtil::applicationsLocation() + QLatin1Char('\\')
|
|
+ "Startup" + QLatin1Char('\\')
|
|
+ qApp->applicationName() + ".lnk";
|
|
}
|