2018-08-12 16:45:39 +02:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QSettings>
|
2020-08-24 21:36:45 +02:00
|
|
|
#include <QMessageBox>
|
2021-08-07 12:03:35 +02:00
|
|
|
#include <QStandardPaths>
|
2021-09-28 21:44:09 +02:00
|
|
|
#include <QProcess>
|
|
|
|
|
2020-05-23 22:52:42 +02:00
|
|
|
#include "mainwindow.h"
|
2018-08-12 16:45:39 +02:00
|
|
|
#include "searchresult.h"
|
2022-01-03 23:02:21 +01:00
|
|
|
#include "previewresultpdf.h"
|
2020-05-23 22:52:42 +02:00
|
|
|
#include "../shared/common.h"
|
2021-12-26 18:21:48 +01:00
|
|
|
#include "../submodules/exile.h/exile.h"
|
2021-09-28 21:44:09 +02:00
|
|
|
#include "ipcserver.h"
|
2020-05-23 22:52:42 +02:00
|
|
|
|
2018-08-12 16:45:39 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2021-09-28 21:44:09 +02:00
|
|
|
QString socketPath = "/tmp/looqs-spawner";
|
|
|
|
if(argc > 1)
|
|
|
|
{
|
2021-12-30 12:31:32 +01:00
|
|
|
Common::setupAppInfo();
|
2021-09-28 21:44:09 +02:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
QString arg = argv[1];
|
|
|
|
if(arg == "ipc")
|
|
|
|
{
|
|
|
|
IpcServer *ipcserver = new IpcServer();
|
|
|
|
qDebug() << "Launching ipc";
|
|
|
|
if(!ipcserver->startSpawner(socketPath))
|
|
|
|
{
|
2021-12-29 11:51:52 +01:00
|
|
|
qCritical() << "Error failed to spawn";
|
2021-09-28 21:44:09 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
qDebug() << "Launched";
|
|
|
|
}
|
|
|
|
return a.exec();
|
|
|
|
}
|
|
|
|
QProcess process;
|
|
|
|
QStringList args;
|
|
|
|
args << "ipc";
|
|
|
|
if(!process.startDetached("/proc/self/exe", args))
|
|
|
|
{
|
|
|
|
QString errorMsg = "Failed to start IPC server";
|
|
|
|
qDebug() << errorMsg;
|
|
|
|
QMessageBox::critical(nullptr, "Error", errorMsg);
|
|
|
|
}
|
|
|
|
|
2021-12-26 18:21:48 +01:00
|
|
|
struct exile_policy *policy = exile_init_policy();
|
2021-12-29 11:51:52 +01:00
|
|
|
if(policy == NULL)
|
|
|
|
{
|
|
|
|
qCritical() << "Failed to init policy for sandbox";
|
|
|
|
return 1;
|
|
|
|
}
|
2021-08-07 12:03:35 +02:00
|
|
|
std::string appDataLocation = QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation).toStdString();
|
|
|
|
std::string cacheDataLocation = QStandardPaths::writableLocation(QStandardPaths::CacheLocation).toStdString();
|
2021-09-28 21:44:09 +02:00
|
|
|
std::string sockPath = socketPath.toStdString();
|
2021-12-26 18:21:48 +01:00
|
|
|
policy->namespace_options = EXILE_UNSHARE_NETWORK | EXILE_UNSHARE_USER;
|
2021-12-29 11:51:52 +01:00
|
|
|
policy->vow_promises = EXILE_SYSCALL_VOW_THREAD | EXILE_SYSCALL_VOW_CPATH | EXILE_SYSCALL_VOW_WPATH |
|
|
|
|
EXILE_SYSCALL_VOW_RPATH | EXILE_SYSCALL_VOW_UNIX | EXILE_SYSCALL_VOW_STDIO |
|
|
|
|
EXILE_SYSCALL_VOW_PROT_EXEC | EXILE_SYSCALL_VOW_PROC | EXILE_SYSCALL_VOW_SHM |
|
|
|
|
EXILE_SYSCALL_VOW_FSNOTIFY | EXILE_SYSCALL_VOW_IOCTL;
|
2021-09-28 21:44:09 +02:00
|
|
|
|
2021-12-29 11:51:52 +01:00
|
|
|
if(exile_append_path_policy(policy, EXILE_FS_ALLOW_ALL_READ | EXILE_FS_ALLOW_REMOVE_FILE, "/") != 0)
|
|
|
|
{
|
|
|
|
qCritical() << "Failed to append a path to the path policy";
|
|
|
|
return 1;
|
|
|
|
}
|
2021-08-07 12:03:35 +02:00
|
|
|
|
2021-12-29 11:51:52 +01:00
|
|
|
if(exile_append_path_policy(policy, EXILE_FS_ALLOW_ALL_READ | EXILE_FS_ALLOW_ALL_WRITE, appDataLocation.c_str()) !=
|
|
|
|
0)
|
|
|
|
{
|
|
|
|
qCritical() << "Failed to append a path to the path policy";
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if(exile_append_path_policy(policy, EXILE_FS_ALLOW_ALL_READ | EXILE_FS_ALLOW_ALL_WRITE,
|
|
|
|
cacheDataLocation.c_str()) != 0)
|
|
|
|
{
|
|
|
|
qCritical() << "Failed to append a path to the path policy";
|
|
|
|
return 1;
|
|
|
|
}
|
2021-12-26 18:21:48 +01:00
|
|
|
int ret = exile_enable_policy(policy);
|
2021-08-07 12:03:35 +02:00
|
|
|
if(ret != 0)
|
|
|
|
{
|
|
|
|
qDebug() << "Failed to establish sandbox";
|
|
|
|
return 1;
|
|
|
|
}
|
2021-12-26 18:21:48 +01:00
|
|
|
exile_free_policy(policy);
|
2021-08-07 12:03:35 +02:00
|
|
|
|
2020-05-23 22:52:42 +02:00
|
|
|
Common::setupAppInfo();
|
2018-08-12 16:45:39 +02:00
|
|
|
QApplication a(argc, argv);
|
2020-08-24 21:36:45 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
Common::ensureConfigured();
|
|
|
|
}
|
2021-06-12 14:59:58 +02:00
|
|
|
catch(LooqsGeneralException &e)
|
2020-08-24 21:36:45 +02:00
|
|
|
{
|
|
|
|
qDebug() << e.message;
|
|
|
|
QMessageBox::critical(nullptr, "Error", e.message);
|
|
|
|
return 1;
|
|
|
|
}
|
2018-08-12 16:45:39 +02:00
|
|
|
qRegisterMetaType<QVector<SearchResult>>("QVector<SearchResult>");
|
2022-01-03 23:02:21 +01:00
|
|
|
qRegisterMetaType<QVector<PreviewResultPdf>>("QVector<PreviewResultPdf>");
|
|
|
|
qRegisterMetaType<PreviewResultPdf>("PreviewResultPdf");
|
2021-09-28 21:44:09 +02:00
|
|
|
|
|
|
|
IPCClient client{socketPath};
|
|
|
|
MainWindow w{0, client};
|
2018-08-12 16:45:39 +02:00
|
|
|
w.showMaximized();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|