Compare commits
3 Commits
feature/sh
...
550dd6a59f
| Author | SHA1 | Date | |
|---|---|---|---|
| 550dd6a59f | |||
| 6732aacdc8 | |||
| 1caa4ce6f2 |
@ -8,7 +8,7 @@
|
||||
#ifndef REHDD_H_
|
||||
#define REHDD_H_
|
||||
|
||||
#define REHDD_VERSION "V1.3.0"
|
||||
#define REHDD_VERSION "V1.2.1"
|
||||
|
||||
// Drive handling Settings
|
||||
#define WORSE_HOURS 19200 // mark drive if at this limit or beyond
|
||||
@ -31,7 +31,7 @@
|
||||
#endif
|
||||
|
||||
// Logic
|
||||
// #define DRYRUN // don't touch the drives
|
||||
#define DRYRUN // don't touch the drives
|
||||
#define FROZEN_ALERT // show alert if drive is frozen
|
||||
#define ZERO_CHECK // check drive after shred if all bytes are zero, show alert if this fails
|
||||
|
||||
@ -95,7 +95,7 @@ private:
|
||||
static void ThreadScanDevices();
|
||||
static void ThreadUserInput();
|
||||
static void ThreadShred(Drive *const pDrive);
|
||||
static void ThreadDelete(Drive *const pDrive);
|
||||
static void ThreadDelete();
|
||||
static void ThreadCheckFrozenDrives();
|
||||
static void handleArrowKey(TUI::UserInput userInput);
|
||||
static void handleEnter();
|
||||
|
||||
@ -19,7 +19,6 @@
|
||||
|
||||
#define CHUNK_SIZE 1024 * 1024 * 32 // amount of bytes that are overwritten at once --> 32MB
|
||||
#define TFNG_DATA_SIZE CHUNK_SIZE // amount of bytes used by tfng
|
||||
#define O_DIRECT_PAGE_SIZE 4096 // needed page size for O_DIRECT
|
||||
|
||||
// #define DEMO_DRIVE_SIZE 1024*1024*256L // 256MB
|
||||
// #define DEMO_DRIVE_SIZE 1024*1024*1024L // 1GB
|
||||
@ -39,8 +38,8 @@ public:
|
||||
private:
|
||||
fileDescriptor randomSrcFileDiscr;
|
||||
fileDescriptor driveFileDiscr;
|
||||
unsigned char *caTfngData;
|
||||
unsigned char *caReadBuffer;
|
||||
unsigned char caTfngData[TFNG_DATA_SIZE];
|
||||
unsigned char caReadBuffer[CHUNK_SIZE];
|
||||
unsigned long ulDriveByteSize;
|
||||
unsigned long ulDriveByteOverallCount = 0; // all bytes shredded in all iterations + checking -> used for progress calculation
|
||||
double d32Percent = 0.0;
|
||||
|
||||
146
src/reHDD.cpp
146
src/reHDD.cpp
@ -218,16 +218,18 @@ void reHDD::ThreadUserInput()
|
||||
break;
|
||||
case TUI::UserInput::Print:
|
||||
// cout << "Print" << endl;
|
||||
Logger::logThis()->info("User print single");
|
||||
if (tmpSelectedDrive != nullptr)
|
||||
{
|
||||
printDrive(tmpSelectedDrive);
|
||||
// printDrive(tmpSelectedDrive);
|
||||
}
|
||||
ui->updateTUI(&listDrives, u16SelectedEntry);
|
||||
// ui->updateTUI(&listDrives, u16SelectedEntry);
|
||||
break;
|
||||
case TUI::UserInput::PrintAll:
|
||||
// cout << "PrintAll" << endl;
|
||||
printAllDrives(&listDrives);
|
||||
ui->updateTUI(&listDrives, u16SelectedEntry);
|
||||
Logger::logThis()->info("User print all");
|
||||
// printAllDrives(&listDrives);
|
||||
// ui->updateTUI(&listDrives, u16SelectedEntry);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
@ -236,7 +238,7 @@ void reHDD::ThreadUserInput()
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief print all shredded drives
|
||||
* \brief start shred for all drives
|
||||
* \param pointer of list <Drive>* plistDrives
|
||||
* \return void
|
||||
*/
|
||||
@ -252,11 +254,6 @@ void reHDD::printAllDrives(list<Drive> *plistDrives)
|
||||
mxDrives.unlock();
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief print a shredded drives
|
||||
* \param pointer of a drive
|
||||
* \return void
|
||||
*/
|
||||
void reHDD::printDrive(Drive *const pDrive)
|
||||
{
|
||||
if (pDrive->bWasShredded)
|
||||
@ -268,7 +265,7 @@ void reHDD::printDrive(Drive *const pDrive)
|
||||
}
|
||||
#endif
|
||||
Logger::logThis()->info("User print for: " + pDrive->getModelName() + "-" + pDrive->getSerial());
|
||||
Printer::getPrinter()->print(pDrive);
|
||||
// TODO: Trigger printer for this drive
|
||||
}
|
||||
}
|
||||
|
||||
@ -284,16 +281,16 @@ void reHDD::ThreadShred(Drive *const pDrive)
|
||||
}
|
||||
}
|
||||
|
||||
void reHDD::ThreadDelete(Drive *const pDrive)
|
||||
void reHDD::ThreadDelete()
|
||||
{
|
||||
if (pDrive != nullptr)
|
||||
Drive *tmpSelectedDrive = getSelectedDrive();
|
||||
if (tmpSelectedDrive != nullptr)
|
||||
{
|
||||
pDrive->state = Drive::TaskState::DELETE_ACTIVE;
|
||||
pDrive->setActionStartTimestamp(); // save timestamp at start of deleting
|
||||
Delete::deleteDrive(pDrive); // blocking, no thread
|
||||
pDrive->state = Drive::TaskState::NONE; // delete finished
|
||||
pDrive->bWasDeleted = true;
|
||||
Logger::logThis()->info("Finished delete for: " + pDrive->getModelName() + "-" + pDrive->getSerial());
|
||||
tmpSelectedDrive->setActionStartTimestamp(); // save timestamp at start of deleting
|
||||
Delete::deleteDrive(tmpSelectedDrive); // blocking, no thread
|
||||
tmpSelectedDrive->state = Drive::TaskState::NONE; // delete finished
|
||||
tmpSelectedDrive->bWasDeleted = true;
|
||||
Logger::logThis()->info("Finished delete for: " + tmpSelectedDrive->getModelName() + "-" + tmpSelectedDrive->getSerial());
|
||||
ui->updateTUI(&listDrives, u16SelectedEntry);
|
||||
}
|
||||
}
|
||||
@ -418,7 +415,7 @@ void reHDD::searchDrives(std::list<Drive> *plistDrives)
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief filter out drives that are listed in "ignoreDrives.conf", loop devices, and optical drives
|
||||
* \brief filter out drives that are listed in "ignoreDrives.conf"
|
||||
* \param pointer of list <Drive>* plistDrives
|
||||
* \return void
|
||||
*/
|
||||
@ -428,8 +425,9 @@ void reHDD::filterIgnoredDrives(list<Drive> *plistDrives)
|
||||
if (getSystemDrive(systemDrivePath))
|
||||
{
|
||||
// Logger::logThis()->info("Found system drive: " + systemDrivePath);
|
||||
list<Drive>::iterator it = plistDrives->begin();
|
||||
while (it != plistDrives->end())
|
||||
|
||||
list<Drive>::iterator it;
|
||||
for (it = plistDrives->begin(); it != plistDrives->end(); ++it)
|
||||
{
|
||||
string driveName = it->getPath();
|
||||
// Remove /dev/ prefix
|
||||
@ -437,7 +435,6 @@ void reHDD::filterIgnoredDrives(list<Drive> *plistDrives)
|
||||
{
|
||||
driveName = driveName.substr(5); // Skip "/dev/"
|
||||
}
|
||||
|
||||
if (systemDrivePath.find(driveName) != std::string::npos) // compare found system drive and current drive
|
||||
{
|
||||
// system drive found --> ignore this drive
|
||||
@ -446,123 +443,59 @@ void reHDD::filterIgnoredDrives(list<Drive> *plistDrives)
|
||||
#endif
|
||||
it = plistDrives->erase(it);
|
||||
}
|
||||
else
|
||||
{
|
||||
++it;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Filter out loop devices (loop0, loop1, etc.)
|
||||
list<Drive>::iterator it = plistDrives->begin();
|
||||
while (it != plistDrives->end())
|
||||
{
|
||||
string driveName = it->getPath();
|
||||
if (driveName.find("/dev/") == 0)
|
||||
{
|
||||
driveName = driveName.substr(5);
|
||||
}
|
||||
|
||||
if (driveName.find("loop") == 0)
|
||||
{
|
||||
#ifdef LOG_LEVEL_HIGH
|
||||
Logger::logThis()->info("loop device found --> ignore this drive: " + it->getPath());
|
||||
#endif
|
||||
it = plistDrives->erase(it);
|
||||
}
|
||||
else
|
||||
{
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
// Filter out optical drives (sr0, sr1, cdrom, dvd, etc.)
|
||||
it = plistDrives->begin();
|
||||
while (it != plistDrives->end())
|
||||
{
|
||||
string driveName = it->getPath();
|
||||
if (driveName.find("/dev/") == 0)
|
||||
{
|
||||
driveName = driveName.substr(5);
|
||||
}
|
||||
|
||||
if (driveName.find("sr") == 0 ||
|
||||
driveName.find("cdrom") == 0 ||
|
||||
driveName.find("dvd") == 0 ||
|
||||
driveName.find("cdrw") == 0)
|
||||
{
|
||||
#ifdef LOG_LEVEL_HIGH
|
||||
Logger::logThis()->info("optical drive found --> ignore this drive: " + it->getPath());
|
||||
#endif
|
||||
it = plistDrives->erase(it);
|
||||
}
|
||||
else
|
||||
{
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
// Read ignored drives from config file
|
||||
list<tuple<string>> vtlIgnoredDevices;
|
||||
ifstream input("ignoreDrives.conf");
|
||||
list<tuple<string>> vtlIgnoredDevices; // store drives from ignore file
|
||||
ifstream input("ignoreDrives.conf"); // read ignore file
|
||||
|
||||
for (string sLine; getline(input, sLine);)
|
||||
{
|
||||
// Skip empty lines and comments
|
||||
if (!sLine.empty() && sLine[0] != '#')
|
||||
{
|
||||
vtlIgnoredDevices.emplace_back(sLine);
|
||||
// Logger::logThis()->info("read uuid: " + sLine);
|
||||
vtlIgnoredDevices.emplace_back(sLine); // add found path and uuid from ignore file to vector
|
||||
}
|
||||
}
|
||||
|
||||
// Loop through found entries in ignore file
|
||||
// loop through found entries in ignore file
|
||||
for (auto row : vtlIgnoredDevices)
|
||||
{
|
||||
it = plistDrives->begin();
|
||||
while (it != plistDrives->end())
|
||||
list<Drive>::iterator it;
|
||||
for (it = plistDrives->begin(); it != plistDrives->end(); ++it)
|
||||
{
|
||||
string sUUID;
|
||||
char *cLine = NULL;
|
||||
size_t len = 0;
|
||||
string sCMD = "blkid ";
|
||||
sCMD.append(it->getPath());
|
||||
|
||||
FILE *outputfileBlkid = popen(sCMD.c_str(), "r");
|
||||
// cout << "cmd: " << sCMD << endl;
|
||||
FILE *outputfileBlkid = popen(sCMD.c_str(), "r"); // get UUID from drive
|
||||
if (outputfileBlkid == NULL)
|
||||
{
|
||||
Logger::logThis()->error("Failed to execute blkid for: " + it->getPath());
|
||||
++it;
|
||||
continue;
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
while ((getline(&cLine, &len, outputfileBlkid)) != -1)
|
||||
while ((getline(&cLine, &len, outputfileBlkid)) != -1) // parse UUID from blkid
|
||||
{
|
||||
size_t ptuuidPos = string(cLine).find("PTUUID");
|
||||
if (ptuuidPos != string::npos)
|
||||
{
|
||||
string sBlkidOut = string(cLine);
|
||||
sBlkidOut.erase(0, ptuuidPos + 8);
|
||||
if (sBlkidOut.length() >= 8)
|
||||
{
|
||||
sBlkidOut.erase(8, sBlkidOut.length());
|
||||
}
|
||||
sUUID = sBlkidOut;
|
||||
// cout << "blkid uuid:" << sUUID << endl;
|
||||
}
|
||||
}
|
||||
free(cLine);
|
||||
pclose(outputfileBlkid);
|
||||
// cout << "blkid uuid:" << sUUID << endl;
|
||||
|
||||
if (!get<0>(row).compare(sUUID))
|
||||
if (!get<0>(row).compare(sUUID)) // compare uuid from ignore file and uuid from drive
|
||||
{
|
||||
// same uuid found than in ignore file --> ignore this drive
|
||||
#ifdef LOG_LEVEL_HIGH
|
||||
Logger::logThis()->info("same uuid found in ignore file --> ignore this drive: " + it->getPath());
|
||||
Logger::logThis()->info("same uuid found than in ignore file --> ignore this drive: " + it->getPath());
|
||||
#endif
|
||||
it = plistDrives->erase(it);
|
||||
}
|
||||
else
|
||||
{
|
||||
++it;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -606,6 +539,7 @@ void reHDD::startShredAllDrives(list<Drive> *plistDrives)
|
||||
address << (void const *)&(*pTmpDrive);
|
||||
Logger::logThis()->info("Started shred (all) for: " + pTmpDrive->getModelName() + "-" + pTmpDrive->getSerial() + " @" + address.str());
|
||||
#endif
|
||||
pTmpDrive->state = Drive::TaskState::SHRED_ACTIVE;
|
||||
thread(ThreadShred, pTmpDrive).detach();
|
||||
}
|
||||
}
|
||||
@ -757,13 +691,17 @@ void reHDD::handleEnter()
|
||||
if (tmpSelectedDrive->state == Drive::TaskState::SHRED_SELECTED)
|
||||
{
|
||||
Logger::logThis()->info("Started shred/check for: " + tmpSelectedDrive->getModelName() + "-" + tmpSelectedDrive->getSerial());
|
||||
tmpSelectedDrive->state = Drive::TaskState::SHRED_ACTIVE;
|
||||
// task for drive is running --> don't show more task option
|
||||
thread(ThreadShred, tmpSelectedDrive).detach();
|
||||
}
|
||||
|
||||
if (tmpSelectedDrive->state == Drive::TaskState::DELETE_SELECTED)
|
||||
{
|
||||
Logger::logThis()->info("Started delete for: " + tmpSelectedDrive->getModelName() + "-" + tmpSelectedDrive->getSerial());
|
||||
thread(ThreadDelete, tmpSelectedDrive).detach();
|
||||
tmpSelectedDrive->state = Drive::TaskState::DELETE_ACTIVE;
|
||||
// task for drive is running --> don't show more task options
|
||||
thread(ThreadDelete).detach();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -21,30 +21,10 @@ const static char *randomsrc = (char *)"/dev/urandom";
|
||||
|
||||
Shred::Shred()
|
||||
{
|
||||
// Allocate aligned buffers for O_DIRECT
|
||||
if (posix_memalign((void **)&caTfngData, O_DIRECT_PAGE_SIZE, TFNG_DATA_SIZE) != 0)
|
||||
{
|
||||
Logger::logThis()->error("Failed to allocate aligned buffer for tfng data");
|
||||
caTfngData = nullptr;
|
||||
}
|
||||
|
||||
if (posix_memalign((void **)&caReadBuffer, O_DIRECT_PAGE_SIZE, CHUNK_SIZE) != 0)
|
||||
{
|
||||
Logger::logThis()->error("Failed to allocate aligned buffer for read buffer");
|
||||
caReadBuffer = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
Shred::~Shred()
|
||||
{
|
||||
if (caTfngData != nullptr)
|
||||
{
|
||||
free(caTfngData);
|
||||
}
|
||||
if (caReadBuffer != nullptr)
|
||||
{
|
||||
free(caReadBuffer);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -58,16 +38,6 @@ int Shred::shredDrive(Drive *drive, int *ipSignalFd)
|
||||
address << (void const *)&(*drive);
|
||||
Logger::logThis()->info("Shred-Task started - Drive: " + drive->getModelName() + "-" + drive->getSerial() + " @" + address.str());
|
||||
drive->bWasShredStarted = true; // Mark drive as partly shredded
|
||||
drive->bWasShredded = false;
|
||||
drive->setTaskPercentage(0.0);
|
||||
drive->u32DriveChecksumAfterShredding = UINT32_MAX;
|
||||
drive->state = Drive::TaskState::SHRED_ACTIVE;
|
||||
|
||||
if ((caTfngData == nullptr) || (caReadBuffer == nullptr))
|
||||
{
|
||||
Logger::logThis()->error("Shred-Task: Aligned memory not available! - Drive: " + drive->getSerial());
|
||||
return -1;
|
||||
}
|
||||
|
||||
#ifdef DRYRUN
|
||||
for (int i = 0; i <= 100; i++)
|
||||
@ -95,13 +65,7 @@ int Shred::shredDrive(Drive *drive, int *ipSignalFd)
|
||||
}
|
||||
|
||||
// open disk
|
||||
driveFileDiscr = open(cpDrivePath, O_RDWR | O_LARGEFILE | O_DIRECT);
|
||||
if (driveFileDiscr == -1 && errno == EINVAL)
|
||||
{
|
||||
driveFileDiscr = open(cpDrivePath, O_RDWR | O_LARGEFILE);
|
||||
Logger::logThis()->warning("O_DIRECT not supported, using standard I/O - Drive: " + drive->getSerial());
|
||||
}
|
||||
|
||||
if (driveFileDiscr == -1)
|
||||
{
|
||||
std::string errorMsg(strerror(errno));
|
||||
|
||||
Reference in New Issue
Block a user