From 139e1e8a8d30068fda19d34076f481e6df677eba Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 3 Nov 2021 16:38:20 -0400 Subject: [PATCH] Recognize DS2 files with .B01, etc. file extension. --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 31 ++++++++++++++----- oscar/tests/prs1tests.cpp | 3 ++ 2 files changed, 26 insertions(+), 8 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 08ccb5d4..a62b536f 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -405,7 +405,7 @@ bool PRDS2File::parseDS2Header() if (m_guid.size() != 36) { qWarning() << "DS2 guid unexpected length" << m_guid.size(); } else { - qDebug() << "DS2 guid {" << m_guid << "}"; + //qDebug() << "DS2 guid {" << m_guid << "}"; } m_iv = readBytes(); // 96-bit IV @@ -413,7 +413,7 @@ bool PRDS2File::parseDS2Header() if (m_iv.size() != 12 || e.size() != 16) { qWarning() << "DS2 IV,e sizes =" << m_iv.size() << e.size(); } else { - qDebug() << "DS2 IV,e =" << m_iv.toHex() << e.toHex(); + //qDebug() << "DS2 IV,e =" << m_iv.toHex() << e.toHex(); } int f = read16(); @@ -427,7 +427,7 @@ bool PRDS2File::parseDS2Header() if (h.size() != 32 || i.size() != 16) { qWarning() << "DS2 h,i sizes =" << h.size() << i.size(); } else { - qDebug() << "DS2 h,i =" << h.toHex() << i.toHex(); + //qDebug() << "DS2 h,i =" << h.toHex() << i.toHex(); } j = readBytes(); // same per d,e pair, does NOT vary per machine; possibly key or IV @@ -435,14 +435,14 @@ bool PRDS2File::parseDS2Header() if (j.size() != 32 || k.size() != 16) { qWarning() << "DS2 j,k sizes =" << j.size() << k.size(); } else { - qDebug() << "DS2 j,k =" << j.toHex() << k.toHex(); + //qDebug() << "DS2 j,k =" << j.toHex() << k.toHex(); } m_payload_tag = readBytes(); if (m_payload_tag.size() != 16) { qWarning() << "DS2 payload tag size =" << m_payload_tag.size(); } else { - qDebug() << "DS2 payload tag =" << m_payload_tag.toHex(); + //qDebug() << "DS2 payload tag =" << m_payload_tag.toHex(); } if (m_device.pos() != m_header_size) { @@ -655,7 +655,13 @@ bool PRS1Loader::PeekProperties(const QString & filename, QHash RawDataFile* src; if (QFileInfo(f).suffix().toUpper() == "BIN") { // If it's a DS2 file, insert the DS2 wrapper to decode the chunk stream. - src = new PRDS2File(f); + PRDS2File* ds2 = new PRDS2File(f); + if (!ds2->isValid()) { + qWarning() << filename << "unable to decrypt"; + delete ds2; + return false; + } + src = ds2; } else { // Otherwise just use the file as input. src = new RawDataFile(f); @@ -1010,6 +1016,9 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base) } QString ext_s = fi.fileName().section(".", -1); + if (ext_s.toUpper().startsWith("B")) { // .B01, .B02, etc. + ext_s = ext_s.mid(1); + } ext = ext_s.toInt(&ok); if (!ok) { // not a numerical extension @@ -2699,9 +2708,15 @@ QList PRS1Loader::ParseFile(const QString & path) } RawDataFile* src; - if (QFileInfo(f).suffix().toUpper() == "BIN") { + if (QFileInfo(f).suffix().toUpper().startsWith("B")) { // .B01, .B02, etc. // If it's a DS2 file, insert the DS2 wrapper to decode the chunk stream. - src = new PRDS2File(f); + PRDS2File* ds2 = new PRDS2File(f); + if (!ds2->isValid()) { + qWarning() << path << "unable to decrypt"; + delete ds2; + return CHUNKS; + } + src = ds2; } else { // Otherwise just use the file as input. src = new RawDataFile(f); diff --git a/oscar/tests/prs1tests.cpp b/oscar/tests/prs1tests.cpp index e4b6dd9b..51c8a894 100644 --- a/oscar/tests/prs1tests.cpp +++ b/oscar/tests/prs1tests.cpp @@ -329,6 +329,9 @@ void parseAndEmitChunkYaml(const QString & path) } QString ext_s = fi.fileName().section(".", -1); + if (ext_s.toUpper().startsWith("B")) { // .B01, .B02, etc. + ext_s = ext_s.mid(1); + } int ext = ext_s.toInt(&ok); if (!ok) { // not a numerical extension