2019-07-30 18:34:41 +02:00
|
|
|
/*
|
|
|
|
* 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"
|
|
|
|
|
2024-02-16 09:23:34 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <property_info_serializer/property_info_serializer.h>
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
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);
|
2019-09-05 00:26:52 +02:00
|
|
|
Result<void> check_exec_reboot_on_failure(const BuiltinArguments& args);
|
2019-08-03 00:13:50 +02:00
|
|
|
Result<void> check_interface_restart(const BuiltinArguments& args);
|
|
|
|
Result<void> check_interface_start(const BuiltinArguments& args);
|
|
|
|
Result<void> check_interface_stop(const BuiltinArguments& args);
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_load_system_props(const BuiltinArguments& args);
|
|
|
|
Result<void> check_loglevel(const BuiltinArguments& args);
|
|
|
|
Result<void> check_mkdir(const BuiltinArguments& args);
|
Add ro.boot.fstab_suffix and modify mount_all to use it
Currently the ReadDefaultFstab function, which calls GetFstabPath,
makes some assumptions about what the fstab will be called and where
it is located. This is being used by vold to set up userdata encryption
and for gsid, and is even used in the default boot control HAL, so it
has become quite baked.
The original way for a board to specify things to mount was to use the
"mount_all /path/to/fstab" command in init.rc. However, due to the
above functionality, the path after mount_all is no longer very useful,
as it cannot differ from the inferred path, or userdata encryption and
other features will be broken.
On Cuttlefish, we have an interest in being able to test alternative
userdata configurations (ext4 vs f2fs, encryption on/off, etc.) and
currently the only way to achieve this is to either a) modify the
ro.hardware or ro.hardware.platform properties, which breaks a bunch
of things like default HAL filenames, or regenerate our odm.img or
vendor.img filesystems. We can't simply install another fstab and
point to it with "mount_all".
This change allows the fstab path to be omitted from "mount_all", and
adds another property which overrides the existing checks for
fstab.${ro.hardware} and fstab.${ro.hardware.platform}. Specifying
${ro.boot.fstab_suffix} will cause fstab.${ro.boot.fstab_suffix}
to be checked first.
Bug: 142424832
Test: booted cuttlefish with 'mount_all ${ro.hardware} --late'
Test: booted cuttlefish with 'mount_all --late'
Test: booted cuttlefish with 'mount_all --late' and fstab_suffix=f2fs
Test: partially booted cuttlefish with 'mount_all ${ro.hardware}'
Test: partially booted cuttlefish with 'mount_all'
Change-Id: I3e10f66aecfcd48bdb9ebf1d304b7aae745cbd3c
Merged-In: I3e10f66aecfcd48bdb9ebf1d304b7aae745cbd3c
2020-05-21 01:24:00 +02:00
|
|
|
Result<void> check_mount_all(const BuiltinArguments& args);
|
2019-07-30 18:34:41 +02:00
|
|
|
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);
|
2020-06-08 20:04:53 +02:00
|
|
|
Result<void> check_swapon_all(const BuiltinArguments& args);
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_sysclktz(const BuiltinArguments& args);
|
Add ro.boot.fstab_suffix and modify mount_all to use it
Currently the ReadDefaultFstab function, which calls GetFstabPath,
makes some assumptions about what the fstab will be called and where
it is located. This is being used by vold to set up userdata encryption
and for gsid, and is even used in the default boot control HAL, so it
has become quite baked.
The original way for a board to specify things to mount was to use the
"mount_all /path/to/fstab" command in init.rc. However, due to the
above functionality, the path after mount_all is no longer very useful,
as it cannot differ from the inferred path, or userdata encryption and
other features will be broken.
On Cuttlefish, we have an interest in being able to test alternative
userdata configurations (ext4 vs f2fs, encryption on/off, etc.) and
currently the only way to achieve this is to either a) modify the
ro.hardware or ro.hardware.platform properties, which breaks a bunch
of things like default HAL filenames, or regenerate our odm.img or
vendor.img filesystems. We can't simply install another fstab and
point to it with "mount_all".
This change allows the fstab path to be omitted from "mount_all", and
adds another property which overrides the existing checks for
fstab.${ro.hardware} and fstab.${ro.hardware.platform}. Specifying
${ro.boot.fstab_suffix} will cause fstab.${ro.boot.fstab_suffix}
to be checked first.
Bug: 142424832
Test: booted cuttlefish with 'mount_all ${ro.hardware} --late'
Test: booted cuttlefish with 'mount_all --late'
Test: booted cuttlefish with 'mount_all --late' and fstab_suffix=f2fs
Test: partially booted cuttlefish with 'mount_all ${ro.hardware}'
Test: partially booted cuttlefish with 'mount_all'
Change-Id: I3e10f66aecfcd48bdb9ebf1d304b7aae745cbd3c
Merged-In: I3e10f66aecfcd48bdb9ebf1d304b7aae745cbd3c
2020-05-21 01:24:00 +02:00
|
|
|
Result<void> check_umount_all(const BuiltinArguments& args);
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_wait(const BuiltinArguments& args);
|
|
|
|
Result<void> check_wait_for_prop(const BuiltinArguments& args);
|
|
|
|
|
2024-02-16 09:23:34 +01:00
|
|
|
Result<void> InitializeHostPropertyInfoArea(
|
|
|
|
const std::vector<properties::PropertyInfoEntry>& property_infos);
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|