-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqubesinstallhelper.cpp
166 lines (131 loc) · 3.92 KB
/
qubesinstallhelper.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#include "qubesinstallhelper.h"
#include <iostream>
#include <fstream>
#include <unistd.h>
#include <sys/stat.h>
using namespace std;
inline bool file_exists (const std::string& name) {
struct stat buffer;
return (stat (name.c_str(), &buffer) == 0);
}
qubesInstallHelper::qubesInstallHelper(std::vector<qubesPkg *> pkgs,std::string f,bool iQubesManOnly)
{
folder=f;
installQubesManagerOnly=iQubesManOnly;
if (iQubesManOnly)
{
//add only needed packages
for(qubesPkg* p:pkgs)
{
if (p->projectName=="qubes-core-admin-client" || p->projectName=="qubes-artwork" || p->projectName=="qubes-python-qasync"
|| p->projectName=="qubes-repo-templates" || p->projectName=="qubes-rpm-oxide" || p->projectName=="qubes-manager"
|| p->projectName=="qubes-app-linux-img-converter" || p->projectName=="qubes-desktop-linux-common" )
{
packages.push_back(p);
}
else if (p->projectName=="qubes-linux-utils")
{
//only imgconv
p->changePackageNameFlagAll(PkgInstallFlag::IGNORE);
p->changePackageNameFlag("python3-qubesimgconverter",PkgInstallFlag::FOR_PROD);
packages.push_back(p);
}
}
}
else
{
//add all
packages=pkgs;
}
}
bool qubesInstallHelper::install()
{
int ret=0;
bool hasError{false};
if (!file_exists(folder))
{
cout << "Couldn't find folder " << folder << " with deb packages" << endl;
return false;
}
chdir(folder.c_str());
if (!installQubesManagerOnly)
{
//prepare host
cout << "Prepare host.." << endl;
runCmd("hostnamectl set-hostname dom0");
runCmd("mkdir -p /run/qubes");
runCmd("chmod 777 -R /run/qubes");
runCmd("mkdir -p /var/log/qubes");
runCmd("chmod 777 -R /var/log/qubes");
//check for xen
//activate xen
cout << "Activate xen..." << endl;
runCmd("modprobe xen-gntalloc");
runCmd("modprobe xen-gntdev");
runCmd("modprobe xen-evtchn");
runCmd("chmod 777 -R /dev/xen");
writeModuleLoadConf();
}
//start install
cout << "Start installation " << (installQubesManagerOnly?"qubes-manager only":"qubes") << ".." << endl;
for(auto p : packages)
{
ret=p->readVersion();
if (ret!=0)
{
cout << "Error while reading version of project " << p->projectName << endl;
hasError=true;
break;
}
cout << "Install project-packages " << p->projectName << endl;
ret=p->installPackages(true);
//ignore install issue, can be fixed in installmissing
ret=installMissing();
if (ret!=0)
{
cout << "Error while fixing apt, installing project " << p->projectName << endl;
hasError=true;
break;
}
if (debug)
{
cout << "press key to continue with next package"<<endl;
cin.get();
}
}
if (hasError)
{
cout << "Installation failed with error" << endl;
return false;
}
return true;
}
qubesPkg *qubesInstallHelper::getProjPackage(string name)
{
for(auto q: packages)
{
if (q->projectName==name)
return q;
}
return nullptr;
}
int qubesInstallHelper::installMissing()
{
return runCmd("apt install -y -f");
}
int qubesInstallHelper::runCmd(string cmd)
{
return system(cmd.c_str());
}
void qubesInstallHelper::writeModuleLoadConf()
{
fstream of("/usr/lib/modules-load.d/xen.conf",std::fstream::out);
of << "xen-evtchn" << endl;
of << "xen-gntdev" << endl;
of << "xen-gntalloc" << endl;
of << "xen-blkback" << endl;
of << "xen-pciback" << endl;
of << "xen-privcmd" << endl;
of << "xen-acpi-processor" << endl;
of.close();
}