/* Copyright (c) 2010-2014 Benjamin Dobell, Glass Echidna Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/ // C/C++ Standard Library #include #include #include // Heimdall #include "ClosePcScreenAction.h" #include "DetectAction.h" #include "DownloadPitAction.h" #include "FlashAction.h" #include "HelpAction.h" #include "InfoAction.h" #include "Heimdall.h" #include "Interface.h" #include "PrintPitAction.h" #include "VersionAction.h" using namespace std; using namespace libpit; using namespace Heimdall; map actionMap; bool stdoutErrors = false; const char *version = "v1.4.1"; const char *actionUsage = "Usage: heimdall \n"; const char *releaseInfo = "Heimdall %s\n\n\ Copyright (c) 2010-2014 Benjamin Dobell, Glass Echidna\n\ http://www.glassechidna.com.au/\n\n\ This software is provided free of charge. Copying and redistribution is\nencouraged.\n\n\ If you appreciate this software and you would like to support future\ndevelopment please consider donating:\n\ http://www.glassechidna.com.au/donate/\n\n"; static const char *extraInfo = "Heimdall utilises libusbx for all USB communication:\n\ http://www.libusb.org/\n\ \n\ libusbx is licensed under the LGPL-2.1:\n\ http://www.gnu.org/licenses/licenses.html#LGPL\n\n"; void populateActionMap(void) { actionMap["close-pc-screen"] = Interface::ActionInfo(&ClosePcScreenAction::Execute, ClosePcScreenAction::usage); actionMap["detect"] = Interface::ActionInfo(&DetectAction::Execute, DetectAction::usage); actionMap["download-pit"] = Interface::ActionInfo(&DownloadPitAction::Execute, DownloadPitAction::usage); actionMap["flash"] = Interface::ActionInfo(&FlashAction::Execute, FlashAction::usage); actionMap["help"] = Interface::ActionInfo(&HelpAction::Execute, HelpAction::usage); actionMap["info"] = Interface::ActionInfo(&InfoAction::Execute, InfoAction::usage); actionMap["print-pit"] = Interface::ActionInfo(&PrintPitAction::Execute, PrintPitAction::usage); actionMap["version"] = Interface::ActionInfo(&VersionAction::Execute, VersionAction::usage); } const map& Interface::GetActionMap(void) { if (actionMap.size() == 0) populateActionMap(); return actionMap; } void Interface::Print(const char *format, ...) { va_list args; va_start(args, format); vfprintf(stdout, format, args); fflush(stdout); va_end(args); } void Interface::PrintWarning(const char *format, ...) { va_list stderrArgs; va_start(stderrArgs, format); if (stdoutErrors) { va_list stdoutArgs; va_copy(stdoutArgs, stderrArgs); fprintf(stdout, "WARNING: "); vfprintf(stdout, format, stdoutArgs); fflush(stdout); va_end(stdoutArgs); } fprintf(stderr, "WARNING: "); vfprintf(stderr, format, stderrArgs); fflush(stderr); va_end(stderrArgs); } void Interface::PrintWarningSameLine(const char *format, ...) { va_list stderrArgs; va_start(stderrArgs, format); if (stdoutErrors) { va_list stdoutArgs; va_copy(stdoutArgs, stderrArgs); vfprintf(stdout, format, stdoutArgs); fflush(stdout); va_end(stdoutArgs); } vfprintf(stderr, format, stderrArgs); fflush(stderr); va_end(stderrArgs); } void Interface::PrintError(const char *format, ...) { va_list stderrArgs; va_start(stderrArgs, format); if (stdoutErrors) { va_list stdoutArgs; va_copy(stdoutArgs, stderrArgs); fprintf(stdout, "ERROR: "); vfprintf(stdout, format, stdoutArgs); fflush(stdout); va_end(stdoutArgs); } fprintf(stderr, "ERROR: "); vfprintf(stderr, format, stderrArgs); fflush(stderr); va_end(stderrArgs); } void Interface::PrintErrorSameLine(const char *format, ...) { va_list stderrArgs; va_start(stderrArgs, format); if (stdoutErrors) { va_list stdoutArgs; va_copy(stdoutArgs, stderrArgs); vfprintf(stdout, format, stdoutArgs); fflush(stdout); va_end(stdoutArgs); } vfprintf(stderr, format, stderrArgs); fflush(stderr); va_end(stderrArgs); } void Interface::PrintVersion(void) { Interface::Print("%s\n", version); } void Interface::PrintUsage(void) { const map& actionMap = Interface::GetActionMap(); Interface::Print(actionUsage); for (map::const_iterator it = actionMap.begin(); it != actionMap.end(); it++) Interface::Print("\n%s", it->second.usage); } void Interface::PrintReleaseInfo(void) { Interface::Print(releaseInfo, version); } void Interface::PrintFullInfo(void) { Interface::Print(releaseInfo, version); Interface::Print(extraInfo); } void Interface::PrintDeviceDetectionFailed(void) { Interface::PrintError("Failed to detect compatible download-mode device.\n"); } void Interface::PrintPit(const PitData *pitData) { Interface::Print("Entry Count: %d\n", pitData->GetEntryCount()); Interface::Print("Unknown 1: %d\n", pitData->GetUnknown1()); Interface::Print("Unknown 2: %d\n", pitData->GetUnknown2()); Interface::Print("Unknown 3: %d\n", pitData->GetUnknown3()); Interface::Print("Unknown 4: %d\n", pitData->GetUnknown4()); Interface::Print("Unknown 5: %d\n", pitData->GetUnknown5()); Interface::Print("Unknown 6: %d\n", pitData->GetUnknown6()); Interface::Print("Unknown 7: %d\n", pitData->GetUnknown7()); Interface::Print("Unknown 8: %d\n", pitData->GetUnknown8()); for (unsigned int i = 0; i < pitData->GetEntryCount(); i++) { const PitEntry *entry = pitData->GetEntry(i); Interface::Print("\n\n--- Entry #%d ---\n", i); Interface::Print("Binary Type: %d (", entry->GetBinaryType()); switch (entry->GetBinaryType()) { case PitEntry::kBinaryTypeApplicationProcessor: Interface::Print("AP"); break; case PitEntry::kBinaryTypeCommunicationProcessor: Interface::Print("CP"); break; default: Interface::Print("Unknown"); break; } Interface::Print(")\n"); Interface::Print("Device Type: %d (", entry->GetDeviceType()); switch (entry->GetDeviceType()) { case PitEntry::kDeviceTypeOneNand: Interface::Print("OneNAND"); break; case PitEntry::kDeviceTypeFile: Interface::Print("File/FAT"); break; case PitEntry::kDeviceTypeMMC: Interface::Print("MMC"); break; case PitEntry::kDeviceTypeAll: Interface::Print("All (?)"); break; default: Interface::Print("Unknown"); break; } Interface::Print(")\n"); Interface::Print("Identifier: %d\n", entry->GetIdentifier()); Interface::Print("Attributes: %d (", entry->GetAttributes()); if (entry->GetAttributes() & PitEntry::kAttributeSTL) Interface::Print("STL "); /*if (entry->GetAttributes() & PitEntry::kAttributeBML) Interface::Print("BML ");*/ if (entry->GetAttributes() & PitEntry::kAttributeWrite) Interface::Print("Read/Write"); else Interface::Print("Read-Only"); Interface::Print(")\n"); Interface::Print("Update Attributes: %d", entry->GetUpdateAttributes()); if (entry->GetUpdateAttributes()) { Interface::Print(" ("); if (entry->GetUpdateAttributes() & PitEntry::kUpdateAttributeFota) { if (entry->GetUpdateAttributes() & PitEntry::kUpdateAttributeSecure) Interface::Print("FOTA, Secure"); else Interface::Print("FOTA"); } else { if (entry->GetUpdateAttributes() & PitEntry::kUpdateAttributeSecure) Interface::Print("Secure"); } Interface::Print(")\n"); } else { Interface::Print("\n"); } Interface::Print("Partition Block Size/Offset: %d\n", entry->GetBlockSizeOrOffset()); Interface::Print("Partition Block Count: %d\n", entry->GetBlockCount()); Interface::Print("File Offset (Obsolete): %d\n", entry->GetFileOffset()); Interface::Print("File Size (Obsolete): %d\n", entry->GetFileSize()); Interface::Print("Partition Name: %s\n", entry->GetPartitionName()); Interface::Print("Flash Filename: %s\n", entry->GetFlashFilename()); Interface::Print("FOTA Filename: %s\n", entry->GetFotaFilename()); } Interface::Print("\n"); } void Interface::SetStdoutErrors(bool enabled) { stdoutErrors = enabled; }