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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Note that these check functions cannot check expanded arguments from properties, since they will
|
|
|
|
// not know what those properties would be at runtime. They will be passed an empty string in the
|
|
|
|
// situation that the input line had a property expansion without a default value, since an empty
|
|
|
|
// string is otherwise an impossible value. They should therefore disregard checking empty
|
|
|
|
// arguments.
|
|
|
|
|
|
|
|
#include "check_builtins.h"
|
|
|
|
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <android-base/logging.h>
|
2020-05-14 18:20:30 +02:00
|
|
|
#include <android-base/parsedouble.h>
|
2019-07-30 18:34:41 +02:00
|
|
|
#include <android-base/parseint.h>
|
|
|
|
#include <android-base/strings.h>
|
|
|
|
|
|
|
|
#include "builtin_arguments.h"
|
2019-11-09 02:54:27 +01:00
|
|
|
#include "host_init_verifier.h"
|
2019-08-03 00:13:50 +02:00
|
|
|
#include "interface_utils.h"
|
2019-11-09 02:54:27 +01:00
|
|
|
#include "property_type.h"
|
2019-07-30 18:34:41 +02:00
|
|
|
#include "rlimit_parser.h"
|
|
|
|
#include "service.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
using android::base::ParseInt;
|
|
|
|
using android::base::StartsWith;
|
|
|
|
|
|
|
|
#define ReturnIfAnyArgsEmpty() \
|
|
|
|
for (const auto& arg : args) { \
|
|
|
|
if (arg.empty()) { \
|
|
|
|
return {}; \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace init {
|
|
|
|
|
|
|
|
Result<void> check_chown(const BuiltinArguments& args) {
|
|
|
|
if (!args[1].empty()) {
|
|
|
|
auto uid = DecodeUid(args[1]);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!uid.ok()) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return Error() << "Unable to decode UID for '" << args[1] << "': " << uid.error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// GID is optional and pushes the index of path out by one if specified.
|
|
|
|
if (args.size() == 4 && !args[2].empty()) {
|
|
|
|
auto gid = DecodeUid(args[2]);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!gid.ok()) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return Error() << "Unable to decode GID for '" << args[2] << "': " << gid.error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_exec(const BuiltinArguments& args) {
|
|
|
|
ReturnIfAnyArgsEmpty();
|
|
|
|
|
|
|
|
auto result = Service::MakeTemporaryOneshotService(args.args);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!result.ok()) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return result.error();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_exec_background(const BuiltinArguments& args) {
|
|
|
|
return check_exec(std::move(args));
|
|
|
|
}
|
|
|
|
|
2019-09-05 00:26:52 +02:00
|
|
|
Result<void> check_exec_reboot_on_failure(const BuiltinArguments& args) {
|
2023-02-22 19:01:33 +01:00
|
|
|
BuiltinArguments remaining_args{.context = args.context};
|
2019-09-05 00:26:52 +02:00
|
|
|
|
|
|
|
remaining_args.args = std::vector<std::string>(args.begin() + 1, args.end());
|
|
|
|
remaining_args.args[0] = args[0];
|
|
|
|
|
|
|
|
return check_exec(remaining_args);
|
|
|
|
}
|
|
|
|
|
2019-08-03 00:13:50 +02:00
|
|
|
Result<void> check_interface_restart(const BuiltinArguments& args) {
|
2020-02-05 19:49:33 +01:00
|
|
|
if (auto result = IsKnownInterface(args[1]); !result.ok()) {
|
2019-08-03 00:13:50 +02:00
|
|
|
return result.error();
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_interface_start(const BuiltinArguments& args) {
|
|
|
|
return check_interface_restart(std::move(args));
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_interface_stop(const BuiltinArguments& args) {
|
|
|
|
return check_interface_restart(std::move(args));
|
|
|
|
}
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_load_system_props(const BuiltinArguments& args) {
|
|
|
|
return Error() << "'load_system_props' is deprecated";
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_loglevel(const BuiltinArguments& args) {
|
|
|
|
ReturnIfAnyArgsEmpty();
|
|
|
|
|
|
|
|
int log_level = -1;
|
|
|
|
ParseInt(args[1], &log_level);
|
|
|
|
if (log_level < 0 || log_level > 7) {
|
|
|
|
return Error() << "loglevel must be in the range of 0-7";
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
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
2020-05-21 01:24:00 +02:00
|
|
|
Result<void> check_mount_all(const BuiltinArguments& args) {
|
|
|
|
auto options = ParseMountAll(args.args);
|
|
|
|
if (!options.ok()) {
|
|
|
|
return options.error();
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_mkdir(const BuiltinArguments& args) {
|
2019-10-28 15:55:03 +01:00
|
|
|
auto options = ParseMkdir(args.args);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!options.ok()) {
|
2019-10-28 15:55:03 +01:00
|
|
|
return options.error();
|
2019-07-30 18:34:41 +02:00
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_restorecon(const BuiltinArguments& args) {
|
|
|
|
ReturnIfAnyArgsEmpty();
|
|
|
|
|
|
|
|
auto restorecon_info = ParseRestorecon(args.args);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!restorecon_info.ok()) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return restorecon_info.error();
|
|
|
|
}
|
|
|
|
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_restorecon_recursive(const BuiltinArguments& args) {
|
|
|
|
return check_restorecon(std::move(args));
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_setprop(const BuiltinArguments& args) {
|
|
|
|
const std::string& name = args[1];
|
|
|
|
if (name.empty()) {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
const std::string& value = args[2];
|
|
|
|
|
|
|
|
if (!IsLegalPropertyName(name)) {
|
|
|
|
return Error() << "'" << name << "' is not a legal property name";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!value.empty()) {
|
2020-02-05 19:49:33 +01:00
|
|
|
if (auto result = IsLegalPropertyValue(name, value); !result.ok()) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return result.error();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (StartsWith(name, "ctl.")) {
|
|
|
|
return Error()
|
|
|
|
<< "Do not set ctl. properties from init; call the Service functions directly";
|
|
|
|
}
|
|
|
|
|
|
|
|
static constexpr const char kRestoreconProperty[] = "selinux.restorecon_recursive";
|
|
|
|
if (name == kRestoreconProperty) {
|
|
|
|
return Error() << "Do not set '" << kRestoreconProperty
|
|
|
|
<< "' from init; use the restorecon builtin directly";
|
|
|
|
}
|
|
|
|
|
2019-11-09 02:54:27 +01:00
|
|
|
const char* target_context = nullptr;
|
|
|
|
const char* type = nullptr;
|
|
|
|
property_info_area->GetPropertyInfo(name.c_str(), &target_context, &type);
|
|
|
|
|
|
|
|
if (!CheckType(type, value)) {
|
|
|
|
return Error() << "Property type check failed, value doesn't match expected type '"
|
|
|
|
<< (type ?: "(null)") << "'";
|
|
|
|
}
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_setrlimit(const BuiltinArguments& args) {
|
|
|
|
ReturnIfAnyArgsEmpty();
|
|
|
|
|
|
|
|
auto rlimit = ParseRlimit(args.args);
|
2020-02-05 19:49:33 +01:00
|
|
|
if (!rlimit.ok()) return rlimit.error();
|
2019-07-30 18:34:41 +02:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2020-06-08 20:04:53 +02:00
|
|
|
Result<void> check_swapon_all(const BuiltinArguments& args) {
|
|
|
|
auto options = ParseSwaponAll(args.args);
|
|
|
|
if (!options.ok()) {
|
|
|
|
return options.error();
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_sysclktz(const BuiltinArguments& args) {
|
|
|
|
ReturnIfAnyArgsEmpty();
|
|
|
|
|
|
|
|
struct timezone tz = {};
|
|
|
|
if (!android::base::ParseInt(args[1], &tz.tz_minuteswest)) {
|
|
|
|
return Error() << "Unable to parse mins_west_of_gmt";
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
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
2020-05-21 01:24:00 +02:00
|
|
|
Result<void> check_umount_all(const BuiltinArguments& args) {
|
|
|
|
auto options = ParseUmountAll(args.args);
|
|
|
|
if (!options.ok()) {
|
|
|
|
return options.error();
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
2019-07-30 18:34:41 +02:00
|
|
|
Result<void> check_wait(const BuiltinArguments& args) {
|
|
|
|
if (args.size() == 3 && !args[2].empty()) {
|
2020-05-14 18:20:30 +02:00
|
|
|
double timeout_double;
|
|
|
|
if (!android::base::ParseDouble(args[2], &timeout_double, 0)) {
|
2019-07-30 18:34:41 +02:00
|
|
|
return Error() << "failed to parse timeout";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
Result<void> check_wait_for_prop(const BuiltinArguments& args) {
|
|
|
|
return check_setprop(std::move(args));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace init
|
|
|
|
} // namespace android
|