39e8be43eb
This requires a bit of refactoring: moving things around. libinit_host is used by host_apex_verifier which needs check_builtins as well. Bug: 325565247 Test: atest host-apex-verifier Test: m out/target/product/vsoc_x86_64/host_init_verifier_output.txt Change-Id: Ifed54dd2149afbab2bf63f7e42c410c2354895fc
54 lines
2.2 KiB
C++
54 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2019 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.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "builtin_arguments.h"
|
|
#include "result.h"
|
|
|
|
#include <vector>
|
|
|
|
#include <property_info_serializer/property_info_serializer.h>
|
|
|
|
namespace android {
|
|
namespace init {
|
|
|
|
Result<void> check_chown(const BuiltinArguments& args);
|
|
Result<void> check_exec(const BuiltinArguments& args);
|
|
Result<void> check_exec_background(const BuiltinArguments& args);
|
|
Result<void> check_exec_reboot_on_failure(const BuiltinArguments& args);
|
|
Result<void> check_interface_restart(const BuiltinArguments& args);
|
|
Result<void> check_interface_start(const BuiltinArguments& args);
|
|
Result<void> check_interface_stop(const BuiltinArguments& args);
|
|
Result<void> check_load_system_props(const BuiltinArguments& args);
|
|
Result<void> check_loglevel(const BuiltinArguments& args);
|
|
Result<void> check_mkdir(const BuiltinArguments& args);
|
|
Result<void> check_mount_all(const BuiltinArguments& args);
|
|
Result<void> check_restorecon(const BuiltinArguments& args);
|
|
Result<void> check_restorecon_recursive(const BuiltinArguments& args);
|
|
Result<void> check_setprop(const BuiltinArguments& args);
|
|
Result<void> check_setrlimit(const BuiltinArguments& args);
|
|
Result<void> check_swapon_all(const BuiltinArguments& args);
|
|
Result<void> check_sysclktz(const BuiltinArguments& args);
|
|
Result<void> check_umount_all(const BuiltinArguments& args);
|
|
Result<void> check_wait(const BuiltinArguments& args);
|
|
Result<void> check_wait_for_prop(const BuiltinArguments& args);
|
|
|
|
Result<void> InitializeHostPropertyInfoArea(
|
|
const std::vector<properties::PropertyInfoEntry>& property_infos);
|
|
|
|
} // namespace init
|
|
} // namespace android
|