summaryrefslogtreecommitdiffstats
path: root/src/fbgui/fbgui.cpp
blob: 9cb906da2affa69c8c28c4083a18fa82331fecce (plain) (blame)
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
#include "fbgui.h"
#include "sysinfo.h"
#include "downloadmanager.h"
#include "javascriptinterfacefbgui.h"

#include <log4cxx/logger.h>
#include "qlog4cxx.h"

using namespace log4cxx;
using namespace log4cxx::helpers;
LoggerPtr coreLogger(Logger::getLogger("fbgui.core"));

#include <iostream>
#include <QThread>
#include <QtWebKit>

//-------------------------------------------------------------------------------------------
/**
 * A constructor.
 *
 * The constructor of the fbgui class. It initializes the main objects
 * which are needed while the program is running.
 * The appearance of the webView is here also defined.
 *
 * @see JavascriptInterface
 * @see DownloadManager
 */
fbgui::fbgui() :
		agui() {
}
fbgui::~fbgui() {
	dmThread.quit();
}

/**
 * init function.
 */
void fbgui::init() {
	// start fbgui
	LOG4CXX_DEBUG(coreLogger, "Initializing fbgui...");
	setWindowTitle("fbgui");

	if (sslSupport)
		LOG4CXX_DEBUG(coreLogger, "SSL enabled.");

	// initialize javascript interface
	JavascriptInterfaceFBGUI* jsi = new JavascriptInterfaceFBGUI(
			this->_webView->page()->mainFrame());
	QObject::connect(jsi, SIGNAL(quitFbgui()), this, SLOT(close()));
	QObject::connect(jsi, SIGNAL(shutDownClient()), this,
			SLOT(shutdownSystem()));
	QObject::connect(jsi, SIGNAL(deleteCookies()), this,
			SLOT(clearAllCookies()));
	QObject::connect(jsi, SIGNAL(showCookies()), this,
			SLOT(printCookies()));
	QObject::connect(jsi, SIGNAL(showHistory()), this,
			SLOT(printHistory()));
	QObject::connect(_webView->page()->mainFrame(), SIGNAL(
			javaScriptWindowObjectCleared()), jsi, SLOT(attachToDOM()));

	// initialize download manager
	DownloadManager* dm = new DownloadManager();
	QObject::connect(dm, SIGNAL(downloadInfo(const QString&, const double&)),
			jsi, SLOT(downloadInfo(const QString&, const double&)));
	QObject::connect(dm, SIGNAL(notify(const QString&)), jsi,
			SLOT(notify(const QString&)));
	QObject::connect(jsi, SIGNAL(requestFile(const QString&)), dm,
			SLOT(downloadFile(const QString&)));
	QObject::connect(dm,
			SIGNAL(updateProgress(const int&, const double&, const QString&)), jsi,
			SLOT(updateProgressBar(const int&, const double&, const QString&)));
	QObject::connect(dm, SIGNAL(downloadQueueEmpty()), jsi, SLOT(
			callbackOnFinished()));
	QObject::connect(dm, SIGNAL(downloadQueueEmpty()), this, SLOT(loadSystem()));

	// move download manager to its own thread
	dm->moveToThread(&dmThread);
	dmThread.start();

	// connect to handler for loaded URLs
	QObject::connect(_webView, SIGNAL(loadFinished(bool)), this, SLOT(loadURLDone(bool)));

	loadURL();

	showFullScreen();

}
//-------------------------------------------------------------------------------------------
//                            Preparations for URL load
//-------------------------------------------------------------------------------------------
/**
 * This method checks the existance of the host.
 *
 * This method checks if the host exists / can be found.
 * The host is from the URL given through the configuration.
 */
bool fbgui::checkHost() const {
	QHostInfo hostInfo = QHostInfo::fromName(baseURL.host());
	if (hostInfo.error() != QHostInfo::NoError) {
		LOG4CXX_DEBUG(coreLogger, "Lookup of " << baseURL.host() << "failed.");
		LOG4CXX_DEBUG(coreLogger, "Host can not be reached.");
		return false;
	} else {
		LOG4CXX_DEBUG(coreLogger,
				"Lookup of " << baseURL.host() << " succeeded.");
		return true;
	}
}
//-------------------------------------------------------------------------------------------
/**
 * This method tries loads the URL.
 *
 * This method loads the main screen via an POST request. If also disconnects the watcher
 * of the file, (Watcher is set in the fbgui::watchForTrigger() method).
 * and generates the POST data body.
 *
 * @see fbgui::watchForTrigger()
 * @see fbgui::generatePOSTData()
 */
void fbgui::loadURL() {
	if (checkHost()) {
		LOG4CXX_DEBUG(coreLogger,
				"Loading URL: " << baseURL.toString() << " ...");

		// Generate POST identification data needed by PBS.
		QByteArray postData = generatePOSTData();
		// Generate a Network Request Object
		QNetworkRequest req(baseURL);
		 QObject::connect(_webView->page()->networkAccessManager(), SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError> & )),
				 	 	 	 	 this, SLOT(sslErrorHandler(QNetworkReply*, QList<QSslError> )));


		// show cursor again since user is about to interact.
		req.setHeader(QNetworkRequest::ContentTypeHeader,
				"application/x-www-form-urlencoded");

		_webView->load(req, QNetworkAccessManager::PostOperation, postData);
	}
	// TODO: error page if no host.
}
void fbgui::sslErrorHandler(QNetworkReply* rep, QList<QSslError> errList) {
		LOG4CXX_DEBUG(coreLogger, "Received SSL errors:");
		//rep->ignoreSslErrors(errList);
		QList<QSslError>::iterator n;
		for (n = errList.begin(); n != errList.end(); ++n) {
			LOG4CXX_DEBUG(coreLogger, "Error :" << n->errorString());
		}
		LOG4CXX_DEBUG(coreLogger, "End SSL errors:");
}
void fbgui::loadURLDone(bool success) {
	// done contains the success of the loading: false / true
	if (!success) {
		LOG4CXX_DEBUG(coreLogger,
				"Loading failed. URL: " << _webView->url().toString());
		LOG4CXX_DEBUG(coreLogger, "You can quit with CTRL + X ...");
		// TODO handle failure properly...
	} else {
		LOG4CXX_DEBUG(coreLogger, "Loaded URL: " << _webView->url().toString());
	}
}
//-------------------------------------------------------------------------------------------
/**
 * This method clears all cookies and starts a new pbs-session.
 *
 */

void fbgui::clearAllCookies() {

	LOG4CXX_DEBUG(coreLogger, "Clearing cookies...");

	// delete all cookies.
	QNetworkCookieJar* cookieJar = new QNetworkCookieJar();
	_webView->page()->networkAccessManager()->setCookieJar(cookieJar);

	// start new session with pbs
	loadURL();
}
//-------------------------------------------------------------------------------------------
/**
 * This method prints cookies [DEBUGGING]
 *
 */
void fbgui::printCookies() {

	QList<QNetworkCookie> cookieList = _webView->page()->networkAccessManager()->cookieJar()->cookiesForUrl(_webView->page()->mainFrame()->url());

	if (cookieList.isEmpty()) {
		LOG4CXX_DEBUG(coreLogger, "No cookies saved!");
	}
	else {
		QList<QNetworkCookie>::iterator i;
		for (i = cookieList.begin(); i != cookieList.end(); ++i) {
			if (i->domain() == baseURL.host() || i->domain() == "." + baseURL.host()) {
				LOG4CXX_DEBUG(coreLogger, "Keeping cookie from domain '" << i->domain() << "': " << i->toRawForm());
			}
			else {
				LOG4CXX_DEBUG(coreLogger, "Deleting cookie from domain '" << i->domain() << "': " << i->toRawForm());
			}
		}
	}
}
//-------------------------------------------------------------------------------------------
/**
 * This method prints site history [DEBUGGING]
 *
 */
void fbgui::printHistory() {
	LOG4CXX_DEBUG(coreLogger, "-----------------------------------------------------------------------------------");
	QList<QUrl> urls;
	QList<QWebHistoryItem> history = _webView->history()->backItems(10);
	QList<QWebHistoryItem>::iterator n;
	for (n = history.begin(); n != history.end(); ++n) {
		LOG4CXX_DEBUG(coreLogger, "History item: " << n->url().toString());
		if (!(urls.contains(n->url()))) {
			urls.append(n->url());
			LOG4CXX_DEBUG(coreLogger, "Appended: " << n->url().toString());
		}
	}

	QList<QUrl>::iterator u;
	for (u = urls.begin(); u != urls.end(); ++u) {
		LOG4CXX_DEBUG(coreLogger, "Cookie from URL " << u->toString());
		QList<QNetworkCookie> cookieList = _webView->page()->networkAccessManager()->cookieJar()->cookiesForUrl(*u);
		if (cookieList.isEmpty()) {
			LOG4CXX_DEBUG(coreLogger, "No cookies saved!");
		}
		else {
			QList<QNetworkCookie>::iterator i;
			for (i = cookieList.begin(); i != cookieList.end(); ++i) {
				if (i->domain() == baseURL.host()) {
					LOG4CXX_DEBUG(coreLogger, "Keeping cookie from domain '" << i->domain() << "': " << i->toRawForm());
				}
				else {
					LOG4CXX_DEBUG(coreLogger, "Deleting cookie from domain '" << i->domain() << "': " << i->toRawForm());
				}
			}
		}
	}
	LOG4CXX_DEBUG(coreLogger, "-----------------------------------------------------------------------------------");
}

//-------------------------------------------------------------------------------------------
/**
 * This method generates the POST data body.
 *
 * This method generates the POST data body. The body contains the
 * MAC address, an hardwarehash and a specific serial number.
 * The hardwarehash is a MD5 hash over the MAC address and the
 * mainboard serial number.
 * The specific serial number is set at the creation of the usb boot stick.
 * This file has to be present on the directory specified in
 * the configuration for this to work.
 *
 * @see SysInfo::getMACAddress()
 * @see SysInfo::getMainboardSerial()
 */
QByteArray fbgui::generatePOSTData() {
	LOG4CXX_DEBUG(coreLogger, "Generating POST data...");
	// use MAC address as base data
	SysInfo si;
	QByteArray data;
	QByteArray macAdress(si.getInfo("mac").toUtf8());
	if (!macAdress.isEmpty())
		data.append(macAdress);
	else {
		LOG4CXX_DEBUG(coreLogger, "No readable MAC Address.");
	}
	// append mainboard serial to the mac address for more unique hardwarehash
	QByteArray mbserial(si.getInfo("mbserial").toUtf8());
	if (!mbserial.isEmpty())
		data.append(mbserial);
	else {
		LOG4CXX_DEBUG(coreLogger,
				"Mainboard serial was empty. Not appending to base hash data.");
	}LOG4CXX_DEBUG(coreLogger, "[post] Hashing: " << data);
	// generate MD5 hash of data
	QByteArray hash = QCryptographicHash::hash(data, QCryptographicHash::Md5);
	LOG4CXX_DEBUG(coreLogger, "[post] MD5 Hash: " << hash.toHex());

	// fetch serial number from usb
	QByteArray serial;
	QFile file(serialLocation);
	if (!file.open(QIODevice::ReadOnly)) {
		LOG4CXX_DEBUG(coreLogger, "[post] No such file: " << file.fileName());
	}
	// everything ok, read data
	serial = file.readAll();
	file.close();
	serial.chop(1);
	LOG4CXX_DEBUG(coreLogger, "[post] Serial number is: " << serial);

	if (gInterfaceName.isEmpty())
		gInterfaceName = "eth0";

	// construct final byte array
	QByteArray postData("mac=");
	postData.append(si.getInfo("mac"));
	postData.append("&hardwarehash=" + hash.toHex());
	postData.append("&serialnumber=" + serial);
	LOG4CXX_DEBUG(coreLogger, "[post] POST data: " << postData);
	return postData;
}
//-------------------------------------------------------------------------------------------
//                   Preparing Kernel Switch per kexec (initiating Stage 3)
//-------------------------------------------------------------------------------------------
void fbgui::loadSystem() {
	//show loading system page.
	//_webView->disconnect(this);
	//QObject::connect(_webView, SIGNAL(loadFinished(bool)), this, SLOT(prepareKexec()));
	_webView->load(QUrl("qrc:/html/loadsystem.html"));
	QTimer::singleShot(1000, this, SLOT(prepareKexec()));
}
//-------------------------------------------------------------------------------------------
/**
 * This method prepares kexec.
 *
 * The kernel command line file that should have been downloaded from the Preboot-Server
 * and the ip config file (created by udhcpc) are merged into the final completed KCL.
 *
 * A process is then started to load the kernel, initramfs and kcl into kexec.
 * The process tries to execute kexec -l with these parameters.
 *
 * If this succeeds, runKexec() is called
 *
 * @see fbgui::runKexec()
 *
 */
void fbgui::prepareKexec() {

	LOG4CXX_DEBUG(coreLogger, "Preparing kexec ...");
	// try to read KCL file that was downloaded.
	QFile file(downloadPath + "/kcl");
	if (!file.open(QIODevice::ReadOnly)) {
		LOG4CXX_DEBUG(coreLogger, "No such file: " << file.fileName());
	}
	// everything ok, read data.
	QString kcl = file.readAll();
	file.close();
	LOG4CXX_DEBUG(coreLogger, "KCL from PBS: " << kcl);

	// try to read ipconfig file generated by udhcpc.
	file.setFileName("/tmp/ip_config_fbgui");
	if (!file.open(QIODevice::ReadOnly)) {
		LOG4CXX_DEBUG(coreLogger, "No such file: " << file.fileName());
	}
	// everything ok, read data.
	QString ipConfig = file.readAll();
	file.close();
	LOG4CXX_DEBUG(coreLogger, "IP config: " << ipConfig);

	// append ipConfig
	kcl.append(" ip=");
	kcl.append(ipConfig);
	LOG4CXX_DEBUG(coreLogger, "Complete KCL: " << kcl);

	// load the kernel + initramfs + append of kcl into kexec.
	QProcess *process = new QProcess(this);
	QString cmdline = "kexec -l " + downloadPath.toUtf8() + "/kernel --initrd="
			+ downloadPath.toUtf8() + "/initramfs --append=\"" + kcl.toUtf8()
			+ "\"";
	LOG4CXX_DEBUG(coreLogger, "kexec cmdline: " << cmdline);
	process->start(cmdline);
	bool ret = process->waitForFinished();
	if (!ret) {
		LOG4CXX_DEBUG(coreLogger, "Failed to execute: " << cmdline);
		LOG4CXX_DEBUG(coreLogger, "Exiting in 5 seconds...");
		QTimer::singleShot(5000, this, SLOT(close()));
	} else {
		LOG4CXX_DEBUG(coreLogger, "Kexec load was successfull.");
		if (debugMode < 0) {
			// if process successfully finished, try to run kexec -e
			runKexec();
		} else {
			LOG4CXX_DEBUG(coreLogger,
					"Skipping execution of kexec - open debug shell.");
			LOG4CXX_DEBUG(coreLogger,
					"To start the system execute \"kexec -e\" in your shell.");
			close();
		}
	}
}
//-------------------------------------------------------------------------------------------
/**
 * This method tries to execute: kexec -e
 *
 * This method tries to execute: kexec -e
 *
 */
void fbgui::runKexec() {
	QProcess *process = new QProcess(this);
	process->start("kexec -e");
	if (!process->waitForStarted()) {
		LOG4CXX_DEBUG(coreLogger, "Failed to execute: kexec -e");
		LOG4CXX_DEBUG(coreLogger, "Exiting in 5 seconds...");
		QTimer::singleShot(5000, this, SLOT(close()));
		//TODO: Handle failure properly...
	}
}