reHDD/src/reHDD.cpp

315 lines
9.6 KiB
C++
Raw Normal View History

/**
2020-05-02 22:06:47 +02:00
* @file reHDD.cpp
* @brief app logic
* @author hendrik schutter
* @date 01.05.2020
*/
2020-05-02 22:06:47 +02:00
#include "../include/reHDD.h"
2020-08-03 22:40:07 +02:00
2020-08-04 11:59:45 +02:00
static int fdSearchDrives[2];//File descriptor for pipe that informs if new drives are found
static int fdUserInput[2];//File descriptor for pipe that informs if a user input occoures
2020-08-04 22:35:29 +02:00
static int fdWhipe[2];//File descriptor for pipe that informs if a wipe thread signals
2020-08-04 11:59:45 +02:00
static std::mutex mxScannDrives;
static vector <Drive> vecNewDrives; //store found drives that are updated every 5sec
static fd_set selectSet;
2020-08-03 22:40:07 +02:00
/**
* \brief app constructor
* \param void
* \return instance of App
*/
2020-05-02 22:06:47 +02:00
reHDD::reHDD(void)
{
cout << "created app" << endl;
2020-08-04 22:35:29 +02:00
2020-08-06 11:41:38 +02:00
}
/**
* \brief app logic
* \param void
* \return void
*/
2020-05-02 22:06:47 +02:00
void reHDD::app_logic(void)
{
cout << "app logic" << endl;
2020-08-04 22:35:29 +02:00
ui = new TUI();
ui->initTUI();
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
pipe(fdSearchDrives);
2020-08-04 22:35:29 +02:00
pipe(fdWhipe);
2020-08-03 22:40:07 +02:00
2020-08-04 11:59:45 +02:00
FD_ZERO(&selectSet);
FD_SET(fdSearchDrives[0], &selectSet);
2020-08-04 22:35:29 +02:00
FD_SET(fdWhipe[0], &selectSet);
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
thread thDevices(ThreadScannDevices); //start thread that scanns for drives
2020-08-06 22:45:05 +02:00
thread thUserInput(ThreadUserInput); //start thread that reads user input
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
while(1) {
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
select(FD_SETSIZE, &selectSet, NULL, NULL, NULL);
2020-08-04 11:59:45 +02:00
2020-08-04 17:18:32 +02:00
if( FD_ISSET(fdSearchDrives[0], &selectSet)) {
char dummy;
read (fdSearchDrives[0],&dummy,1);
mxScannDrives.lock();
2020-08-04 19:51:34 +02:00
filterNewDrives(&vecDrives, &vecNewDrives);
2020-08-04 22:35:29 +02:00
//printDrives(&vecDrives);
//TODO update UI
2020-08-03 22:40:07 +02:00
2020-08-04 22:35:29 +02:00
ui->updateTUI(&vecDrives);
2020-08-04 11:59:45 +02:00
2020-08-04 17:18:32 +02:00
mxScannDrives.unlock();
2020-08-03 22:40:07 +02:00
}
2020-08-04 22:35:29 +02:00
else if (FD_ISSET(fdWhipe[0], &selectSet)) {
cout << "Whipe signal" << endl;
2020-08-04 17:18:32 +02:00
}
2020-08-04 22:35:29 +02:00
} //endless loop
thDevices.join();
2020-08-06 22:45:05 +02:00
thUserInput.join();
2020-08-03 22:40:07 +02:00
}
2020-08-04 17:18:32 +02:00
void reHDD::ThreadScannDevices() {
while(true) {
2020-08-06 11:41:38 +02:00
// cout << "Thread" << endl;
2020-08-04 17:18:32 +02:00
mxScannDrives.lock();
vecNewDrives.clear();
searchDrives(&vecNewDrives); //search for new drives and store them in list
filterIgnoredDrives(&vecNewDrives); //filter out ignored drives
addSMARTData(&vecNewDrives); //add S.M.A.R.T. Data to the drives
mxScannDrives.unlock();
write (fdSearchDrives[1], "A",1);
sleep(5); //sleep 5 sec
}
}
2020-08-03 22:40:07 +02:00
2020-08-06 22:45:05 +02:00
void reHDD::ThreadUserInput() {
while(true) {
// cout << TUI::readUserInput() << endl;
switch (TUI::readUserInput())
{
case TUI::UserInput::DownKey:
/* code */
//cout << "Down" << endl;
break;
case TUI::UserInput::UpKey:
//cout << "Up" << endl;
break;
case TUI::UserInput::Undefined:
//cout << "Undefined" << endl;
break;
case TUI::UserInput::Abort:
//cout << "Abort" << endl;
break;
case TUI::UserInput::Delete:
//cout << "Delete" << endl;
break;
case TUI::UserInput::Shred:
//cout << "Shred" << endl;
break;
case TUI::UserInput::Enter:
//cout << "Enter" << endl;
break;
case TUI::UserInput::ESC:
//cout << "ESC" << endl;
break;
default:
break;
}
}
}
2020-08-04 22:35:29 +02:00
2020-08-04 19:51:34 +02:00
void reHDD::filterNewDrives(vector <Drive>* pvecOldDrives, vector <Drive>* pvecNewDrives) {
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
vector <Drive>::iterator itOld; //Iterator for current (old) drive list
vector <Drive>::iterator itNew; //Iterator for new drive list that was created from to scann thread
2020-08-03 22:40:07 +02:00
2020-08-04 17:18:32 +02:00
for (itOld = pvecOldDrives->begin(); itOld != pvecOldDrives->end(); ++itOld)
{
2020-08-04 19:51:34 +02:00
bool bOldDriveIsOffline = true;
for (itNew = pvecNewDrives->begin(); itNew != pvecNewDrives->end(); ++itNew)
2020-08-04 17:18:32 +02:00
{
2020-08-04 19:51:34 +02:00
if(itOld->getSerial() == itNew->getSerial()) {
bOldDriveIsOffline = false;
2020-08-04 22:35:29 +02:00
// cout << "already online drive found: " << itOld->getPath() << endl;
2020-08-04 17:18:32 +02:00
}
}
2020-08-04 19:51:34 +02:00
if(bOldDriveIsOffline == true) {
2020-08-06 11:41:38 +02:00
//cout << "offline drive found: " << itOld->getPath() << endl;
2020-08-04 19:51:34 +02:00
//TODO kill wipe thread
}
}
2020-08-03 22:40:07 +02:00
2020-08-04 19:51:34 +02:00
pvecOldDrives->clear();
for (long unsigned int i=0; i<pvecNewDrives->size(); i++) {
pvecOldDrives->push_back((*pvecNewDrives)[i]);
}
2020-08-03 22:40:07 +02:00
}
/**
* \brief search attached drives on /dev/sd*
* \param pointer of vector <Drive>* pvecDrives
* \return void
*/
2020-08-04 17:18:32 +02:00
void reHDD::searchDrives(vector <Drive>* pvecDrives)
{
2020-08-06 11:41:38 +02:00
// cout << "search drives ..." << endl;
char * cLine = NULL;
size_t len = 0;
FILE* outputfileHwinfo = popen("hwinfo --short --disk", "r");
if (outputfileHwinfo == NULL)
{
exit(EXIT_FAILURE);
}
while ((getline(&cLine, &len, outputfileHwinfo)) != -1)
{
if (string(cLine).find("/dev/sd") != string::npos)
{
Drive* tmpDrive = new Drive(string(cLine).substr (2,8));
pvecDrives->push_back(*tmpDrive);
}
}
fclose(outputfileHwinfo);
}
/**
* \brief filter out drives that are listed in "ignoreDrives.conf"
* \param pointer of vector <Drive>* pvecDrives
* \return void
*/
2020-05-02 22:06:47 +02:00
void reHDD::filterIgnoredDrives(vector <Drive>* pvecDrives)
{
string sDelimiter = ":";
string sIgnoredDrivePath;
string sIgnoredDriveUUID;
vector<tuple<string, string>> vtlIgnoredDevices; //store drives from ingnore file
2020-08-04 19:51:34 +02:00
//vector <Drive> vecTmpDrives
ifstream input( "ignoreDrives.conf" ); //read ingnore file
for(string sLine; getline( input, sLine );)
{
if (string(sLine).find("/dev/sd") != string::npos)
{
size_t pos = 0;
string token;
while ((pos = sLine.find(sDelimiter)) != string::npos)
{
token = sLine.substr(0, pos);
sIgnoredDrivePath = token;
sLine.erase(0, pos + sDelimiter.length());
sIgnoredDriveUUID = sLine;
} //end while
//cout << "Path: " << sIgnoredDrivePath << std::endl;
//cout << "UUID: " << sIgnoredDriveUUID << std::endl;
vtlIgnoredDevices.emplace_back(sIgnoredDrivePath, sIgnoredDriveUUID); //add found path and uuid from ingnore file to vector
}
}
//loop through found entries in ingnore file
for(auto row : vtlIgnoredDevices)
{
2020-08-04 19:51:34 +02:00
vector <Drive>::iterator it;
for (it = pvecDrives->begin(); it != pvecDrives->end(); ++it)
{
string sUUID;
if (!get<0>(row).compare(it->getPath())) //find same drive based on path
{
char * cLine = NULL;
size_t len = 0;
string sCMD = "blkid ";
sCMD.append(it->getPath());
2020-08-04 19:51:34 +02:00
//cout << "cmd: " << sCMD << endl;
FILE* outputfileBlkid = popen(sCMD.c_str(), "r"); //get UUID from drive
if (outputfileBlkid == NULL)
{
exit(EXIT_FAILURE);
}
while ((getline(&cLine, &len, outputfileBlkid)) != -1) //parse UUID from blkid
{
if (string(cLine).find("PTUUID") != string::npos)
{
string sBlkidOut = string(cLine);
sBlkidOut.erase(0, 18);
sBlkidOut.erase(36, sBlkidOut.length() - 36);
sUUID = sBlkidOut;
//cout << "blkid uuid:" << sUUID << endl;
}
}
fclose(outputfileBlkid);
2020-08-04 19:51:34 +02:00
//cout << "blkid uuid:" << sUUID << endl;
if (get<1>(row).compare(sUUID)) //compare uuid from ignore file and uuid from drive
{
cout << "[ERROR] different uuid found than in ignore file:" << it->getPath() << endl;
exit(EXIT_FAILURE); // exit to prevent accidentally shred a system drive
}
else
{
// same uuid found than in ignore file --> ignore this drive
it = pvecDrives->erase(it);
2020-08-04 19:51:34 +02:00
it--;
//cout << "same uuid found than in ignore file --> ignore this drive:" << it->getPath() << endl;
}
}
}
}
}
/**
* \brief print drives with all information
* \param pointer of vector <Drive>* pvecDrives
* \return void
*/
2020-05-02 22:06:47 +02:00
void reHDD::printDrives(vector <Drive>* pvecDrives)
{
cout << "------------DRIVES---------------" << endl;
vector <Drive>::iterator it;
for (it = pvecDrives->begin(); it != pvecDrives->end(); ++it)
{
2020-05-03 17:17:20 +02:00
cout << " Drive: " << distance(pvecDrives->begin(), it) << endl;
cout << "Path: " << it->getPath() << endl;
2020-05-02 00:49:11 +02:00
cout << "ModelFamily: " << it->getModelFamily() << endl;
cout << "ModelName: " << it->getModelName() << endl;
cout << "Capacity: " << it->getCapacity() << endl;
cout << "Serial: " << it->getSerial() << endl;
cout << "PowerOnHours: " << it->getPowerOnHours() << endl;
cout << "PowerCycle: " << it->getPowerCycles() << endl;
cout << "ErrorCount: " << it->getErrorCount() << endl;
cout << endl;
}
cout << "---------------------------------" << endl;
}
2020-05-02 00:49:11 +02:00
/**
* \brief add S.M.A.R.T data from SMART
* \param pointer of vector <Drive>* pvecDrives
* \return void
*/
2020-05-02 22:06:47 +02:00
void reHDD::addSMARTData(vector <Drive>* pvecDrives)
{
vector <Drive>::iterator it;
for (it = pvecDrives->begin(); it != pvecDrives->end(); ++it)
2020-05-02 00:49:11 +02:00
{
Drive* pTmpDrive = iterator_to_pointer<Drive, std::vector<Drive>::iterator > (it);
SMART::readSMARTData(pTmpDrive);
2020-05-02 00:49:11 +02:00
}
}