2015-09-13 20:15:26 +08:00
|
|
|
/* uefifind.cpp
|
|
|
|
|
2016-02-02 09:08:08 +08:00
|
|
|
Copyright (c) 2016, Nikolaj Schlej. All rights reserved.
|
2015-09-13 20:15:26 +08:00
|
|
|
This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uefifind.h"
|
2019-01-20 18:23:28 +08:00
|
|
|
#include "../common/ffsutils.h"
|
2015-09-13 20:15:26 +08:00
|
|
|
|
2018-08-02 08:41:11 +08:00
|
|
|
#include <fstream>
|
|
|
|
|
2016-03-01 16:12:37 +08:00
|
|
|
UEFIFind::UEFIFind()
|
2015-09-13 20:15:26 +08:00
|
|
|
{
|
|
|
|
model = new TreeModel();
|
2016-03-01 16:12:37 +08:00
|
|
|
ffsParser = new FfsParser(model);
|
2015-09-13 20:15:26 +08:00
|
|
|
initDone = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
UEFIFind::~UEFIFind()
|
|
|
|
{
|
|
|
|
delete ffsParser;
|
|
|
|
delete model;
|
|
|
|
model = NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-02 08:41:11 +08:00
|
|
|
USTATUS UEFIFind::init(const UString & path)
|
2015-09-13 20:15:26 +08:00
|
|
|
{
|
2016-07-09 16:01:41 +08:00
|
|
|
USTATUS result;
|
2018-10-08 17:58:12 +08:00
|
|
|
UByteArray buffer;
|
|
|
|
result = readFileIntoBuffer(path, buffer);
|
|
|
|
if (result)
|
|
|
|
return result;
|
2015-09-13 20:15:26 +08:00
|
|
|
|
2016-02-02 09:08:08 +08:00
|
|
|
result = ffsParser->parse(buffer);
|
2015-09-13 20:15:26 +08:00
|
|
|
if (result)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
initDone = true;
|
2016-07-09 16:01:41 +08:00
|
|
|
return U_SUCCESS;
|
2015-09-13 20:15:26 +08:00
|
|
|
}
|
|
|
|
|
2018-08-02 08:41:11 +08:00
|
|
|
USTATUS UEFIFind::find(const UINT8 mode, const bool count, const UString & hexPattern, UString & result)
|
2015-09-13 20:15:26 +08:00
|
|
|
{
|
2018-07-13 05:31:46 +08:00
|
|
|
UModelIndex root = model->index(0, 0);
|
|
|
|
std::set<std::pair<UModelIndex, UModelIndex> > files;
|
2015-09-13 20:15:26 +08:00
|
|
|
|
|
|
|
result.clear();
|
|
|
|
|
2019-01-20 18:23:28 +08:00
|
|
|
USTATUS returned = FfsUtils::findFileRecursive(model, root, hexPattern, mode, files);
|
2015-09-13 20:15:26 +08:00
|
|
|
if (returned)
|
|
|
|
return returned;
|
|
|
|
|
|
|
|
if (count) {
|
2016-03-01 16:12:37 +08:00
|
|
|
if (!files.empty())
|
2018-08-02 08:41:11 +08:00
|
|
|
result += usprintf("%d\n", files.size());
|
2016-07-09 16:01:41 +08:00
|
|
|
return U_SUCCESS;
|
2015-09-13 20:15:26 +08:00
|
|
|
}
|
|
|
|
|
2018-07-13 05:31:46 +08:00
|
|
|
for (std::set<std::pair<UModelIndex, UModelIndex> >::const_iterator citer = files.begin(); citer != files.end(); ++citer) {
|
2018-08-02 08:41:11 +08:00
|
|
|
UByteArray data(16, '\x00');
|
2018-07-13 05:31:46 +08:00
|
|
|
std::pair<UModelIndex, UModelIndex> indexes = *citer;
|
2015-12-13 23:34:56 +08:00
|
|
|
if (!model->hasEmptyHeader(indexes.first))
|
|
|
|
data = model->header(indexes.first).left(16);
|
2018-11-12 14:13:34 +08:00
|
|
|
result += guidToUString(readUnaligned((const EFI_GUID*)data.constData()));
|
2015-09-13 20:15:26 +08:00
|
|
|
|
|
|
|
// Special case of freeform subtype GUID files
|
|
|
|
if (indexes.second.isValid() && model->subtype(indexes.second) == EFI_SECTION_FREEFORM_SUBTYPE_GUID) {
|
2017-07-23 02:43:20 +08:00
|
|
|
data = model->header(indexes.second);
|
2018-11-12 14:13:34 +08:00
|
|
|
result += UString(" ") + (guidToUString(readUnaligned((const EFI_GUID*)(data.constData() + sizeof(EFI_COMMON_SECTION_HEADER)))));
|
2015-09-13 20:15:26 +08:00
|
|
|
}
|
|
|
|
|
2018-08-02 08:41:11 +08:00
|
|
|
result += UString("\n");
|
2015-09-13 20:15:26 +08:00
|
|
|
}
|
2016-07-09 16:01:41 +08:00
|
|
|
return U_SUCCESS;
|
2015-09-13 20:15:26 +08:00
|
|
|
}
|