2016-12-15 00:52:34 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-02-28 21:26:29 +01:00
|
|
|
#include <string>
|
2019-05-16 23:42:42 +02:00
|
|
|
#include <string_view>
|
2017-02-28 21:26:29 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2018-11-15 00:18:30 +01:00
|
|
|
#include <android-base/file.h>
|
2016-12-15 00:52:34 +01:00
|
|
|
#include <android-base/strings.h>
|
|
|
|
#include <bootloader_message/bootloader_message.h>
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
|
2019-05-16 23:42:42 +02:00
|
|
|
using namespace std::string_literals;
|
|
|
|
|
|
|
|
extern void SetMiscBlockDeviceForTest(std::string_view misc_device);
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
TEST(BootloaderMessageTest, read_and_write_bootloader_message) {
|
|
|
|
TemporaryFile temp_misc;
|
2017-02-28 21:26:29 +01:00
|
|
|
|
2016-12-15 00:52:34 +01:00
|
|
|
// Write the BCB.
|
|
|
|
bootloader_message boot = {};
|
|
|
|
strlcpy(boot.command, "command", sizeof(boot.command));
|
|
|
|
strlcpy(boot.recovery, "message1\nmessage2\n", sizeof(boot.recovery));
|
|
|
|
strlcpy(boot.status, "status1", sizeof(boot.status));
|
|
|
|
|
|
|
|
std::string err;
|
2017-10-25 22:16:54 +02:00
|
|
|
ASSERT_TRUE(write_bootloader_message_to(boot, temp_misc.path, &err))
|
|
|
|
<< "Failed to write BCB: " << err;
|
2016-12-15 00:52:34 +01:00
|
|
|
|
|
|
|
// Read and verify.
|
|
|
|
bootloader_message boot_verify;
|
2017-10-25 22:16:54 +02:00
|
|
|
ASSERT_TRUE(read_bootloader_message_from(&boot_verify, temp_misc.path, &err))
|
|
|
|
<< "Failed to read BCB: " << err;
|
2016-12-15 00:52:34 +01:00
|
|
|
|
|
|
|
ASSERT_EQ(std::string(reinterpret_cast<const char*>(&boot), sizeof(boot)),
|
|
|
|
std::string(reinterpret_cast<const char*>(&boot_verify), sizeof(boot_verify)));
|
|
|
|
}
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
TEST(BootloaderMessageTest, update_bootloader_message_in_struct) {
|
2016-12-15 00:52:34 +01:00
|
|
|
// Write the options to BCB.
|
|
|
|
std::vector<std::string> options = { "option1", "option2" };
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
bootloader_message boot = {};
|
|
|
|
// Inject some bytes into boot.
|
2016-12-15 00:52:34 +01:00
|
|
|
strlcpy(boot.recovery, "random message", sizeof(boot.recovery));
|
2017-10-25 22:16:54 +02:00
|
|
|
strlcpy(boot.status, "status bytes", sizeof(boot.status));
|
|
|
|
strlcpy(boot.stage, "stage bytes", sizeof(boot.stage));
|
2016-12-15 00:52:34 +01:00
|
|
|
strlcpy(boot.reserved, "reserved bytes", sizeof(boot.reserved));
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
|
2016-12-15 00:52:34 +01:00
|
|
|
|
|
|
|
// Verify that command and recovery fields should be set.
|
|
|
|
ASSERT_EQ("boot-recovery", std::string(boot.command));
|
|
|
|
std::string expected = "recovery\n" + android::base::Join(options, "\n") + "\n";
|
|
|
|
ASSERT_EQ(expected, std::string(boot.recovery));
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
// The rest should be intact.
|
|
|
|
ASSERT_EQ("status bytes", std::string(boot.status));
|
|
|
|
ASSERT_EQ("stage bytes", std::string(boot.stage));
|
|
|
|
ASSERT_EQ("reserved bytes", std::string(boot.reserved));
|
2016-12-15 00:52:34 +01:00
|
|
|
}
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
TEST(BootloaderMessageTest, update_bootloader_message_recovery_options_empty) {
|
2016-12-15 00:52:34 +01:00
|
|
|
// Write empty vector.
|
|
|
|
std::vector<std::string> options;
|
|
|
|
|
|
|
|
// Read and verify.
|
2017-10-25 22:16:54 +02:00
|
|
|
bootloader_message boot = {};
|
|
|
|
ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
|
2016-12-15 00:52:34 +01:00
|
|
|
|
|
|
|
// command and recovery fields should be set.
|
|
|
|
ASSERT_EQ("boot-recovery", std::string(boot.command));
|
|
|
|
ASSERT_EQ("recovery\n", std::string(boot.recovery));
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
// The rest should be empty.
|
2016-12-15 00:52:34 +01:00
|
|
|
ASSERT_EQ(std::string(sizeof(boot.status), '\0'), std::string(boot.status, sizeof(boot.status)));
|
|
|
|
ASSERT_EQ(std::string(sizeof(boot.stage), '\0'), std::string(boot.stage, sizeof(boot.stage)));
|
|
|
|
ASSERT_EQ(std::string(sizeof(boot.reserved), '\0'),
|
|
|
|
std::string(boot.reserved, sizeof(boot.reserved)));
|
|
|
|
}
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
TEST(BootloaderMessageTest, update_bootloader_message_recovery_options_long) {
|
2016-12-15 00:52:34 +01:00
|
|
|
// Write super long message.
|
|
|
|
std::vector<std::string> options;
|
|
|
|
for (int i = 0; i < 100; i++) {
|
|
|
|
options.push_back("option: " + std::to_string(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read and verify.
|
2017-10-25 22:16:54 +02:00
|
|
|
bootloader_message boot = {};
|
|
|
|
ASSERT_TRUE(update_bootloader_message_in_struct(&boot, options));
|
2016-12-15 00:52:34 +01:00
|
|
|
|
|
|
|
// Make sure it's long enough.
|
|
|
|
std::string expected = "recovery\n" + android::base::Join(options, "\n") + "\n";
|
|
|
|
ASSERT_GE(expected.size(), sizeof(boot.recovery));
|
|
|
|
|
|
|
|
// command and recovery fields should be set.
|
|
|
|
ASSERT_EQ("boot-recovery", std::string(boot.command));
|
|
|
|
ASSERT_EQ(expected.substr(0, sizeof(boot.recovery) - 1), std::string(boot.recovery));
|
|
|
|
ASSERT_EQ('\0', boot.recovery[sizeof(boot.recovery) - 1]);
|
|
|
|
|
2017-10-25 22:16:54 +02:00
|
|
|
// The rest should be empty.
|
2016-12-15 00:52:34 +01:00
|
|
|
ASSERT_EQ(std::string(sizeof(boot.status), '\0'), std::string(boot.status, sizeof(boot.status)));
|
|
|
|
ASSERT_EQ(std::string(sizeof(boot.stage), '\0'), std::string(boot.stage, sizeof(boot.stage)));
|
|
|
|
ASSERT_EQ(std::string(sizeof(boot.reserved), '\0'),
|
|
|
|
std::string(boot.reserved, sizeof(boot.reserved)));
|
|
|
|
}
|