/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2023 Bernd Herzog * * This file is part of PortaPack. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #include "ui_flash_utility.hpp" #include "ui_styles.hpp" #include "portapack_shared_memory.hpp" namespace ui { static const char16_t* firmware_folder = u"/FIRMWARE"; Thread* FlashUtilityView::thread{nullptr}; static constexpr size_t max_filename_length = 26; bool valid_firmware_file(std::filesystem::path::string_type path) { File firmware_file; uint32_t read_buffer[128]; uint32_t checksum{(uint32_t)~FLASH_EXPECTED_CHECKSUM}; // initializing to invalid checksum in case file can't be read // test read of the whole file just to validate checksum (baseband flash code will re-read when flashing) auto result = firmware_file.open(path.c_str()); if (!result.is_valid()) { checksum = 0; for (uint32_t i = 0; i < FLASH_ROM_SIZE / sizeof(read_buffer); i++) { auto readResult = firmware_file.read(&read_buffer, sizeof(read_buffer)); // if file is smaller than 1MB, assume it's a downgrade to an old FW version and ignore the checksum if ((!readResult) || (readResult.value() != sizeof(read_buffer))) { checksum = FLASH_EXPECTED_CHECKSUM; break; } checksum += simple_checksum((uint32_t)read_buffer, sizeof(read_buffer)); } } return (checksum == FLASH_EXPECTED_CHECKSUM); } FlashUtilityView::FlashUtilityView(NavigationView& nav) : nav_(nav) { add_children({&labels, &menu_view}); menu_view.set_parent_rect({0, 3 * 8, 240, 33 * 8}); ensure_directory(firmware_folder); for (const auto& entry : std::filesystem::directory_iterator(firmware_folder, u"*.bin")) { auto filename = entry.path().filename(); auto path = entry.path().native(); menu_view.add_item({filename.string().substr(0, max_filename_length), ui::Color::red(), &bitmap_icon_temperature, [this, path](KeyEvent) { this->firmware_selected(path); }}); } for (const auto& entry : std::filesystem::directory_iterator(firmware_folder, u"*.tar")) { auto filename = entry.path().filename(); auto path = entry.path().native(); menu_view.add_item({filename.string().substr(0, max_filename_length), ui::Color::purple(), &bitmap_icon_temperature, [this, path](KeyEvent) { this->firmware_selected(path); }}); } } void FlashUtilityView::firmware_selected(std::filesystem::path::string_type path) { nav_.push( "Warning!", "This will replace your\ncurrent firmware.\n\nIf things go wrong you are\nrequired to flash manually\nwith dfu.", YESNO, [this, path](bool choice) { if (choice) { std::u16string full_path = std::u16string(u"FIRMWARE/") + path; this->flash_firmware(full_path); } }); } bool FlashUtilityView::endsWith(const std::u16string& str, const std::u16string& suffix) { if (str.length() >= suffix.length()) { std::u16string endOfString = str.substr(str.length() - suffix.length()); return endOfString == suffix; } else { return false; } } std::filesystem::path FlashUtilityView::extract_tar(std::filesystem::path::string_type path, ui::Painter& painter) { // painter.fill_rectangle( {0, 0, portapack::display.width(), portapack::display.height()}, ui::Color::black()); painter.draw_string({12, 24}, this->nav_.style(), "Unpacking TAR file..."); auto res = UnTar::untar(path, [this](const std::string fileName) { ui::Painter painter; painter.fill_rectangle({0, 50, portapack::display.width(), 90}, ui::Color::black()); painter.draw_string({0, 60}, this->nav_.style(), fileName); }); return res; } bool FlashUtilityView::flash_firmware(std::filesystem::path::string_type path) { ui::Painter painter; if (endsWith(path, u".tar")) { // extract, then update path = extract_tar(u'/' + path, painter).native(); } if (path.empty() || !valid_firmware_file(path.c_str())) { painter.fill_rectangle({0, 50, portapack::display.width(), 90}, ui::Color::black()); painter.draw_string({0, 60}, Styles::red, "BAD FIRMWARE FILE"); chThdSleepMilliseconds(5000); return false; } painter.fill_rectangle( {0, 0, portapack::display.width(), portapack::display.height()}, ui::Color::black()); painter.draw_string({12, 24}, this->nav_.style(), "This will take 15 seconds."); painter.draw_string({12, 64}, this->nav_.style(), "Please wait while LEDs RX"); painter.draw_string({12, 84}, this->nav_.style(), "and TX are flashing."); painter.draw_string({12, 124}, this->nav_.style(), "Device will then restart."); std::memcpy(&shared_memory.bb_data.data[0], path.c_str(), (path.length() + 1) * 2); m4_init(portapack::spi_flash::image_tag_flash_utility, portapack::memory::map::m4_code, false); m0_halt(); } void FlashUtilityView::focus() { menu_view.focus(); } } /* namespace ui */