-
Notifications
You must be signed in to change notification settings - Fork 13
/
work.cpp
577 lines (525 loc) · 24.4 KB
/
work.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
/**********************************************************************
* work.cpp
**********************************************************************
* Copyright (C) 2020-2024 MX Authors
*
* Authors: Adrian
* MX Linux <http://mxlinux.org>
*
* This file is part of MX Snapshot.
*
* MX Snapshot 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.
*
* MX Snapshot 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 MX Snapshot. If not, see <http://www.gnu.org/licenses/>.
**********************************************************************/
#include "work.h"
#include <QDate>
#include <QDebug>
#include <QDirIterator>
#include <QRegularExpression>
#include <QSettings>
#include <QStorageInfo>
Work::Work(Settings *settings, QObject *parent)
: QObject(parent),
settings(settings)
{
}
// Checks if there's enough space on partitions, if not post error, cleanup and exit
// We don't yet take /home used space into considerations (need to calculate how much is excluded)
void Work::checkEnoughSpace()
{
quint64 required_space = getRequiredSpace();
// Check foremost if enough space for ISO on snapshot_dir, print error and exit if not
checkNoSpaceAndExit(required_space, settings->free_space, settings->snapshot_dir);
/* If snapshot and workdir are on the same partition we need about double the size of required_space.
* If both TMP work_dir and ISO don't fit on snapshot_dir, see if work_dir can be put on /home or /tmp
* we already checked that ISO can fit on snapshot_dir so if TMP work fits on /home or /tmp move
* the work_dir to the appropriate place and return */
if (QStorageInfo(settings->work_dir + "/").device() == QStorageInfo(settings->snapshot_dir + "/").device()) {
if (settings->free_space < required_space * 2) {
if (checkAndMoveWorkDir("/tmp", required_space)) {
return;
}
if (checkAndMoveWorkDir("/home", required_space)) {
return;
}
checkNoSpaceAndExit(required_space * 2, settings->free_space,
settings->snapshot_dir); // Print out error and exit
}
} else { // If not on the same partitions, check if work_dir has enough free space for temp files for required_space
checkNoSpaceAndExit(required_space, settings->free_space_work, settings->work_dir);
}
}
bool Work::checkInstalled(const QString &package)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
return Cmd().run(QString("dpkg-query -W -f='${Status}' %1 | grep 'install ok installed'").arg(package));
}
void Work::cleanUp()
{
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib chown_conf", true);
if (!started) {
shell.close();
initrd_dir.remove();
exit(EXIT_SUCCESS);
}
emit message(tr("Cleaning...") + "\033[?25h"); // Restore the cursor visibility
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib kill_mksquashfs", true);
shell.close();
QProcess::execute("sync", {});
QDir::setCurrent("/");
if (QFileInfo::exists("/tmp/installed-to-live/cleanup.conf")) {
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib cleanup");
}
initrd_dir.remove();
settings->tmpdir.reset();
if (done) {
emit message(tr("Done"));
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib copy_log", true);
if (settings->shutdown) {
QFile::copy("/tmp/" + QCoreApplication::applicationName() + ".log",
settings->snapshot_dir + "/" + settings->snapshot_name + ".log");
QProcess::execute("sync", {});
QProcess::execute("dbus-send",
{"--system", "--print-reply", "--dest=org.freedesktop.login1", "/org/freedesktop/login1",
"org.freedesktop.login1.Manager.PowerOff", "boolean:true"});
}
exit(EXIT_SUCCESS);
} else {
emit message(tr("Interrupted or failed to complete"));
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib copy_log", true);
exit(EXIT_FAILURE);
}
}
// Check if we can put work_dir on another partition with enough space, move work_dir there and setupEnv again
bool Work::checkAndMoveWorkDir(const QString &dir, quint64 req_size)
{
// See first if the dir is on different partition otherwise it's irrelevant
if (QStorageInfo(dir + "/").device() != QStorageInfo(settings->snapshot_dir + "/").device()
&& Settings::getFreeSpace(dir) > req_size) {
if (QFileInfo::exists("/tmp/installed-to-live/cleanup.conf")) {
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib cleanup");
}
settings->tempdir_parent = dir;
if (!settings->checkTempDir()) {
cleanUp();
}
setupEnv();
return true;
}
return false;
}
void Work::checkNoSpaceAndExit(quint64 needed_space, quint64 free_space, const QString &dir)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
constexpr float factor = 1024 * 1024;
qDebug() << "Needed space:" << needed_space;
qDebug() << "Free space :" << free_space << "on" << dir;
if (needed_space > free_space) {
emit messageBox(
BoxType::critical, tr("Error"),
tr("There's not enough free space on your target disk, you need at least %1")
.arg(QString::number(static_cast<double>(needed_space) / factor, 'f', 2) + "GiB")
+ "\n"
+ tr("You have %1 free space on %2")
.arg(QString::number(static_cast<double>(free_space) / factor, 'f', 2) + "GiB", dir)
+ "\n"
+ tr("If you are sure you have enough free space rerun the program with -o/--override-size option"));
cleanUp();
}
}
void Work::closeInitrd(const QString &initrd_dir, const QString &file)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
QDir::setCurrent(initrd_dir);
shell.run("(find . |cpio -o -H newc --owner root:root |gzip -9) >\"" + file + "\"");
makeChecksum(HashType::md5, settings->work_dir + "/iso-template/antiX", "initrd.gz");
}
// copyModules(mod_dir/kernel kernel)
void Work::copyModules(const QString &to, const QString &kernel)
{
shell.run(QString(R"(/usr/share/%1/scripts/copy-initrd-modules -e -t="%2" -k="%3")")
.arg(qApp->applicationName(), to, kernel));
shell.runAsRoot(QString("/usr/share/%1/scripts/copy-initrd-programs --to=\"%2\"").arg(qApp->applicationName(), to));
shell.runAsRoot("chown -R $(logname): " + to);
}
// Copying the iso-template filesystem
void Work::copyNewIso()
{
emit message(tr("Copying the new-iso filesystem..."));
QDir::setCurrent(settings->work_dir);
shell.run("tar xf /usr/lib/iso-template/iso-template.tar.gz");
shell.run("cp /usr/lib/iso-template/template-initrd.gz iso-template/antiX/initrd.gz");
shell.run("cp /boot/vmlinuz-" + settings->kernel + " iso-template/antiX/vmlinuz");
replaceMenuStrings();
makeChecksum(HashType::md5, settings->work_dir + "/iso-template/antiX", "vmlinuz");
QString path = initrd_dir.path();
if (!initrd_dir.isValid()) {
qDebug() << tr("Could not create temp directory. ") + path;
cleanUp();
}
openInitrd(settings->work_dir + "/iso-template/antiX/initrd.gz", path);
// Strip modules; make sure initrd_dir is correct to avoid disaster
if (path.startsWith("/tmp/")) {
QDir modulesDir(path + "/lib/modules");
if (modulesDir.exists()) {
modulesDir.removeRecursively();
}
}
// For old versions we copy initrd-release for newer ones we copy initrd_release
QString sourcePath = "/etc/initrd-release";
QString destinationPath = path + "/etc/initrd-release";
QFileInfo sourceFileInfo(sourcePath);
if (sourceFileInfo.exists() && sourceFileInfo.isFile()) {
if (!QFile::exists(destinationPath) || QFile::remove(destinationPath)) {
QFile::copy(sourcePath, destinationPath);
}
}
sourcePath = "/etc/initrd_release";
destinationPath = path + "/etc/initrd_release";
sourceFileInfo.setFile(sourcePath);
if (sourceFileInfo.exists() && sourceFileInfo.isFile()) {
if (!QFile::exists(destinationPath) || QFile::remove(destinationPath)) {
QFile::copy(sourcePath, destinationPath);
}
}
if (initrd_dir.isValid()) {
copyModules(path, settings->kernel);
closeInitrd(path, settings->work_dir + "/iso-template/antiX/initrd.gz");
initrd_dir.remove();
}
}
// Create squashfs and then the iso
bool Work::createIso(const QString &filename)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
// Squash the filesystem copy
QString unbuffer = checkInstalled("expect") ? "unbuffer " : "stdbuf -o0 ";
using Release::Version;
QString throttle
= (Settings::getDebianVerNum() < Version::Bookworm) ? "" : " -throttle " + QString::number(settings->throttle);
QString cmd = unbuffer + "mksquashfs /.bind-root \"" + settings->work_dir + "/iso-template/antiX/linuxfs\" -comp "
+ settings->compression + " -processors " + QString::number(settings->cores) + throttle
+ (settings->mksq_opt.isEmpty() ? "" : " " + settings->mksq_opt) + " -wildcards -ef "
+ settings->snapshot_excludes.fileName()
+ (settings->session_excludes.isEmpty() ? "" : " -e " + settings->session_excludes);
if (Cmd().getOut("umask", true) != "0022") {
cmd.prepend("umask 022; ");
}
emit message(tr("Squashing filesystem..."));
if (!shell.runAsRoot(cmd)) {
emit messageBox(
BoxType::critical, tr("Error"),
tr("Could not create linuxfs file, please check /var/log/%1.log").arg(QCoreApplication::applicationName()));
return false;
}
writeUnsquashfsSize(shell.readAllOutput());
// Move linuxfs files to iso-2/antiX folder
QDir().mkpath("iso-2/antiX");
shell.run("mv iso-template/antiX/linuxfs* iso-2/antiX");
makeChecksum(HashType::md5, settings->work_dir + "/iso-2/antiX", "linuxfs");
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib cleanup");
// Create the iso file
QDir::setCurrent(settings->work_dir + "/iso-template");
cmd = "xorriso -as mkisofs -l -V MXLIVE -R -J -pad -iso-level 3 -no-emul-boot -boot-load-size 4 -boot-info-table "
"-b boot/isolinux/isolinux.bin -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot -c "
"boot/isolinux/isolinux.cat -o \""
+ settings->snapshot_dir + "/" + filename + "\" . \"" + settings->work_dir + "/iso-2\"";
emit message(tr("Creating CD/DVD image file..."));
if (!shell.run(cmd)) {
emit messageBox(
BoxType::critical, tr("Error"),
tr("Could not create ISO file, please check whether you have enough space on the destination partition."));
return false;
}
// Make it isohybrid
if (settings->make_isohybrid) {
emit message(tr("Making hybrid iso"));
shell.run("isohybrid --uefi \"" + settings->snapshot_dir + "/" + filename + "\"");
}
// Make ISO checksums
if (settings->make_md5sum) {
makeChecksum(HashType::md5, settings->snapshot_dir, filename);
}
if (settings->make_sha512sum) {
makeChecksum(HashType::sha512, settings->snapshot_dir, filename);
}
auto elapsedTime = QTime(0, 0).addMSecs(e_timer.elapsed());
emit message(tr("Done"));
if (settings->shutdown) {
done = true;
cleanUp();
}
emit messageBox(BoxType::information, tr("Success"),
tr("MX Snapshot completed successfully!") + '\n'
+ tr("Snapshot took %1 to finish.").arg(elapsedTime.toString("hh:mm:ss")) + "\n\n"
+ tr("Thanks for using MX Snapshot, run MX Live USB Maker next!"));
done = true;
return true;
}
bool Work::installPackage(const QString &package)
{
emit message(tr("Installing ") + package);
shell.runAsRoot("apt-get update");
if (!shell.runAsRoot("apt-get install -y " + package)) {
emit messageBox(BoxType::critical, tr("Error"), tr("Could not install ") + package);
return false;
}
return true;
}
// Create checksums for different files
void Work::makeChecksum(Work::HashType hash_type, const QString &folder, const QString &file_name)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
emit message(tr("Calculating checksum..."));
shell.run("sync");
QDir::setCurrent(folder);
QString ce = QVariant::fromValue(hash_type).toString();
QString cmd;
QString checksum_cmd = QString("%1sum \"%2\">\"%3/%2.%1\"").arg(ce, file_name, folder);
QString temp_dir {"/tmp/snapsphot-checksum-temp"};
QString checksum_tmp
= QString(
"TD=%1; KEEP=$TD/.keep; [ -d $TD ] || mkdir $TD ; FN=\"%2\"; CF=\"%3/${FN}.%4\"; cp $FN $TD/$FN; pushd "
"$TD>/dev/null; %4sum $FN > $FN.%4 ; cp $FN.%4 $CF; popd >/dev/null ; [ -e $KEEP ] || rm -rf $TD")
.arg(temp_dir, file_name, folder, ce);
if (settings->preempt) {
// Check free space available on /tmp
shell.run(QString("TF=%1/\"%2\"; [ -f \"$TF\" ] && rm -f \"$TF\"").arg(temp_dir, file_name));
if (!shell.run(QString("DUF=$(du -BM \"%1\" |grep -oE '^[[:digit:]]+'); TDA=$(df -BM --output=avail /tmp |grep -oE "
"'^[[:digit:]]+'); ((TDA/10*8 >= DUF))")
.arg(file_name))) {
settings->preempt = false;
}
}
if (!settings->preempt) {
cmd = checksum_cmd;
} else {
// Free pagecache
shell.run("sync; sleep 1");
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib drop_caches");
shell.run("sleep 1");
cmd = checksum_tmp;
}
shell.run(cmd);
QDir::setCurrent(settings->work_dir);
}
void Work::openInitrd(const QString &file, const QString &initrd_dir)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
emit message(tr("Building new initrd..."));
shell.run("chmod a+rx \"" + initrd_dir + "\"");
QDir::setCurrent(initrd_dir);
shell.run(QString("gunzip -c \"%1\" |cpio -idum").arg(file));
}
// Replace text in menu items in grub.cfg, syslinux.cfg, isolinux.cfg
void Work::replaceMenuStrings()
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
QString full_distro_name_space = settings->full_distro_name;
full_distro_name_space.replace("_", " ");
const QString grub_cfg {"/iso-template/boot/grub/grub.cfg"};
replaceStringInFile("%DISTRO%", settings->project_name + "-" + settings->distro_version,
settings->work_dir + grub_cfg);
replaceStringInFile("%DISTRO_NAME%", settings->project_name, settings->work_dir + grub_cfg);
replaceStringInFile("%FULL_DISTRO_NAME%", settings->full_distro_name, settings->work_dir + grub_cfg);
replaceStringInFile("%FULL_DISTRO_NAME_SPACE%", full_distro_name_space, settings->work_dir + grub_cfg);
replaceStringInFile("%RELEASE_DATE%", settings->release_date, settings->work_dir + grub_cfg);
const QString grubenv_cfg {"/iso-template/boot/grub/grubenv.cfg"};
const QString boot_pararameter_regexp {"(lang|kbd|kbvar|kbopt|tz)=[^[:space:]]*"};
shell.run(QString("printf '%s\\n' %1 | grep -E '^%2' >> '%3'")
.arg(settings->boot_options, boot_pararameter_regexp, settings->work_dir + grubenv_cfg));
shell.run(
QString(
R"(sed -i "s|%OPTIONS%|$(sed -r 's/[[:space:]]%2/ /g; s/^[[:space:]]+//; s/[[:space:]]+/ /g'<<<' %1')|" '%3')")
.arg(settings->boot_options, boot_pararameter_regexp, settings->work_dir + grub_cfg));
const QString syslinux_cfg {"/iso-template/boot/syslinux/syslinux.cfg"};
const QString isolinux_cfg {"/iso-template/boot/isolinux/isolinux.cfg"};
for (const QString &file : {syslinux_cfg, isolinux_cfg}) {
replaceStringInFile("%OPTIONS%", settings->boot_options, settings->work_dir + file);
replaceStringInFile("%CODE_NAME%", settings->codename, settings->work_dir + file);
}
const QString sys_readme = "/iso-template/boot/syslinux/readme.msg";
const QString iso_readme = "/iso-template/boot/isolinux/readme.msg";
const QStringList cfg_files {syslinux_cfg, isolinux_cfg, sys_readme, iso_readme};
for (const QString &file : cfg_files) {
replaceStringInFile("%FULL_DISTRO_NAME%", settings->full_distro_name, settings->work_dir + file);
replaceStringInFile("%RELEASE_DATE%", settings->release_date, settings->work_dir + file);
}
QDir themeDir(settings->work_dir + "/iso-template/boot/grub/theme");
for (const QFileInfo &themeFile : themeDir.entryInfoList({"*.txt"}, QDir::Files)) {
replaceStringInFile("%ASCII_CODE_NAME%", settings->codename, themeFile.absoluteFilePath());
replaceStringInFile("%DISTRO%", settings->project_name + "-" + settings->distro_version,
themeFile.absoluteFilePath());
}
}
// Util function for replacing strings in files
bool Work::replaceStringInFile(const QString &old_text, const QString &new_text, const QString &file_path)
{
return shell.run(QString("sed -i 's|%1|%2|g' '%3'").arg(old_text, new_text, file_path));
}
// Save package list in working directory
void Work::savePackageList(const QString &file_name)
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
QFileInfo fi(file_name);
QDir dir(settings->work_dir + "/iso-template/" + fi.completeBaseName());
if (!dir.mkpath(dir.absolutePath())) {
emit messageBox(BoxType::critical, tr("Error"),
tr("Could not create working directory. ") + dir.absolutePath());
}
QString full_name = QString("%1/iso-template/%2/package_list").arg(settings->work_dir, fi.completeBaseName());
QString cmd = QString(R"(dpkg -l | awk '/^ii /{printf "%-41s %s\n", $2, $3}' > '%1')").arg(full_name);
shell.run(cmd);
}
// Setup the environment before taking the snapshot
void Work::setupEnv()
{
qDebug() << "+++" << __PRETTY_FUNCTION__ << "+++";
// Checks if work_dir looks OK
if (!settings->work_dir.contains("/mx-snapshot")) {
cleanUp();
}
QString bind_boot;
QString bind_boot_too;
if (shell.run("mountpoint /boot")) {
bind_boot = "bind=/boot ";
bind_boot_too = ",/boot";
}
// Install mx-installer if absent
if (settings->force_installer && !checkInstalled("mx-installer")) {
installPackage("mx-installer");
}
writeSnapshotInfo();
writeVersionFile();
writeLsbRelease();
// Setup environment if creating a respin (reset root/demo, remove personal accounts)
if (settings->reset_accounts) {
shell.runAsRoot("installed-to-live -b /.bind-root start " + bind_boot
+ "empty=/home general version-file read-only");
} else {
shell.runAsRoot("installed-to-live -b /.bind-root start bind=/home" + bind_boot_too
+ " live-files version-file adjtime read-only");
}
}
void Work::writeLsbRelease()
{
QFile file("/usr/local/share/live-files/files/etc/lsb-release");
if (!file.open(QFile::WriteOnly | QFile::Truncate)) {
return;
}
QTextStream stream(&file);
stream << "PRETTY_NAME=\"" << settings->project_name << " " << settings->distro_version << " " << settings->codename
<< "\"\n";
stream << "DISTRIB_ID=\"" << settings->project_name << "\"\n";
stream << "DISTRIB_RELEASE=" << settings->distro_version << "\n";
stream << "DISTRIB_CODENAME=\"" << settings->codename << "\"\n";
stream << "DISTRIB_DESCRIPTION=\"" << settings->project_name << " " << settings->distro_version << " "
<< settings->codename << "\"\n";
file.close();
}
// Write date of the snapshot in a "snapshot_created" file
void Work::writeSnapshotInfo()
{
Cmd().run(elevate + " /usr/lib/" + QCoreApplication::applicationName() + "/snapshot-lib datetime_log", true);
}
void Work::writeVersionFile()
{
QFile file("/usr/local/share/live-files/files/etc/mx-version");
if (!file.open(QFile::WriteOnly | QFile::Truncate)) {
return;
}
QTextStream stream(&file);
stream << settings->full_distro_name << " " << settings->codename << " " << settings->release_date << "\n";
file.close();
}
void Work::writeUnsquashfsSize(const QString &text)
{
QSettings file(settings->work_dir + "/iso-template/antiX/linuxfs.info", QSettings::NativeFormat);
file.setValue("UncompressedSizeKB",
text.section(QRegularExpression(" uncompressed filesystem size \\("), 1, 1).section(" ", 0, 0));
}
quint64 Work::getRequiredSpace()
{
QStringList excludes;
QFile *file = &settings->snapshot_excludes;
// Open and read the excludes file
if (!file->open(QIODevice::ReadOnly)) {
qDebug() << "Count not open file: " << file->fileName();
}
while (!file->atEnd()) {
QString line = file->readLine().trimmed();
if (!line.startsWith('#') && !line.isEmpty() && !line.startsWith(".bind-root")) {
excludes << line;
}
}
file->close();
// Add session excludes
if (!settings->session_excludes.isEmpty()) {
QString sessionExcludes = settings->session_excludes;
QStringList excludeList = sessionExcludes.split("\" \"");
excludes.reserve(excludeList.size());
for (QString exclude : excludeList) {
exclude = exclude.replace('"', "").trimmed();
excludes << exclude;
}
}
QString root_dev = Cmd().getOut("df /.bind-root --output=target |tail -1", true);
QMutableStringListIterator it(excludes);
while (it.hasNext()) {
it.next();
if (it.value().indexOf('!') != -1) { // Truncate things like "!(minstall.desktop)"
it.value().truncate(it.value().indexOf('!'));
}
it.value().replace(' ', "\\ "); // Escape special bash characters, might need to expand this
it.value().replace('(', "\\(");
it.value().replace(')', "\\)");
it.value().replace('|', "\\|");
it.value().prepend("/.bind-root/"); // Check size occupied by excluded files on /.bind-root only
it.value().replace(QRegularExpression("/\\*$"), "/"); // Remove last *
// Remove from list if files not on the same volume
if (root_dev != Cmd().getOut("df " + it.value() + " --output=target 2>/dev/null |tail -1", true)) {
it.remove();
}
}
emit message(tr("Calculating total size of excluded files..."));
bool ok = false;
QString cmd = settings->live ? "du -sc" : "du -sxc";
quint64 excl_size
= shell.getOutAsRoot(cmd + " {" + excludes.join(',') + "} 2>/dev/null |tail -1 |cut -f1").toULongLong(&ok);
if (!ok) {
qDebug() << "Error: calculating size of excluded files\n"
"If you are sure you have enough free space rerun the program with -o/--override-size option";
cleanUp();
}
emit message(tr("Calculating size of root..."));
cmd = settings->live ? "du -s" : "du -sx";
quint64 root_size = shell.getOutAsRoot(cmd + " /.bind-root 2>/dev/null |tail -1 |cut -f1").toULongLong(&ok);
qDebug() << "SIZE" << root_size;
if (!ok) {
qDebug() << "Error: calculating root size (/.bind-root)\n"
"If you are sure you have enough free space rerun the program with -o/--override-size option";
cleanUp();
}
qDebug() << "SIZE ROOT " << root_size;
qDebug() << "SIZE EXCLUDES" << excl_size;
uint c_factor = settings->compression_factor.value(settings->compression);
qDebug() << "COMPRESSION " << c_factor;
qDebug() << "SIZE NEEDED " << (root_size - excl_size) * c_factor / 100;
qDebug() << "SIZE FREE " << settings->free_space << '\n';
if (excl_size > root_size) {
qDebug() << "Error: calculating excluded file size.\n"
"If you are sure you have enough free space rerun the program with -o/--override-size option";
cleanUp();
}
return (root_size - excl_size) * c_factor / 100;
}