/** * Copyright (C) 2021 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. */ #include "gtest/gtest.h" #include #include #include "bpf/BpfUtils.h" class VtsBootconfigTest : public testing::Test {}; TEST_F(VtsBootconfigTest, ProcCmdlineAndroidbootTest) { // This is supported and required in Android S with kernel version // 5.10+. Devices are allowed to launch with kernels < 5.10 // through Android T so the expectation from the Android framework, and the // enforcement of this requirement, can only be on devices launched with // Android U and beyond. int first_api_level = android::base::GetIntProperty( "ro.board.first_api_level", android::base::GetIntProperty("ro.vendor.api_level", 1000000)); if (first_api_level < __ANDROID_API_U__) { GTEST_SKIP() << "Bootconfig requirements do not apply"; } std::string cmdline; ASSERT_TRUE(android::base::ReadFileToString("/proc/cmdline", &cmdline)); EXPECT_TRUE(cmdline.size() > 0); EXPECT_EQ(cmdline.find("androidboot"), cmdline.npos) << "\"androidboot\" parameters are not allowed in the kernel cmdline for " << "devices using kernel version 5.10 or greater with Android S and beyond. " << "These parameters are to be placed in bootconfig." << "\n/proc/cmdline contents:\n" << cmdline; }