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
|
/*
* File: main.cpp
* Author: warren
*
* Created on October 25, 2012, 11:41 AM
*/
#include <QtWidgets/QApplication>
#include <QMessageBox>
#include <pwd.h>
#include <unistd.h>
#include <sys/types.h>
#include <iostream>
#include <fstream>
#include <string>
#include <cstring>
#include <QThread>
#include <sys/stat.h>
#include "MainForm.h"
#include "ui_MainForm.h"
#include "Getter.h"
#include "Custom.h"
using namespace std;
// Globals here - TODO make some local where possible
string pipeName;
string genPipeName(int);
string endBlockString = "-=-=-=-=-=-End block";
string beginBlockString = "-=-=-=-=-=-Begin block";
int lastBlockRequested;
int lastBlockReceived;
qint64 startTime;
bool stopping = false;
runStates runState=STOPPED;
int realUID;
struct passwd *realUser;
string fullPrefsName;
const char* fullPrefsNameCstr;
string fullLogName;
const char* fullLogNameCstr;
int main(int argc, char *argv[]) {
// initialize resources, if needed
// Q_INIT_RESOURCE(resfile);
QApplication app(argc, argv);
// make sure we're running as root, otherwise bag it.
if (geteuid() != 0) {
QMessageBox messageBox;
messageBox.critical(0,"Error",
"You are attempting to run LinSSID without root privilege.\n\
It will not work. Try linssid-pkexec instead. Sorry. Goodbye.");
messageBox.setFixedSize(500,200);
exit(1);
}
// Find the real user if launched from pkexec
// If launched with sudo, then real UID is 0
if (getenv("PKEXEC_UID") != nullptr) {
realUID = atoi(getenv("PKEXEC_UID"));
} else {
realUID = 0;
}
realUser = getpwuid(realUID);
fullPrefsName = string(realUser->pw_dir) + "/" + string(PREFS_FILE_NAME);
fullPrefsNameCstr = fullPrefsName.c_str();
fullLogName = string(realUser->pw_dir) + "/" + string(LOG_DATA_FILE_NAME);
fullLogNameCstr = fullLogName.c_str();
// create instances of the main GUI and the worker thread and initialize
Getter getter1; // instance of Getter
MainForm form1; // instance of MainForm
// make a thread for the getter and "movetothread"
static QThread getter1Thread;
getter1.moveToThread(&getter1Thread);
pipeName = genPipeName(10);
mkfifo(pipeName.c_str(), 0666);
form1.init(); // my own kludgy init, not part of constructor
// Tell form1 and getter1 how to find each other
form1.pGetter = &getter1; // form1 has a pointer to getter1
getter1.pMainForm = &form1; // and getter1 has a pointer to form1
form1.pGetterThread = &getter1Thread; // and form1 has a pointer to getter1 thread
// fire up the event loops and run the app
getter1Thread.start(); // start getter1 event loop
form1.show();
return (app.exec());
}
string genPipeName(int len) {
string charSet = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
string name = "/tmp/linssid_";
srand(time(NULL));
for (int i = 0; i < len; i++) {
name = name + charSet[rand() % charSet.size()];
}
return (name);
}
|