blob: 056539181d99337e19dcdcb9f6e32d8240dbe152 [file] [log] [blame]
Colin Cross3899e9f2010-04-13 20:35:46 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Tom Cherry4772f1d2019-07-30 09:34:41 -070017#pragma once
Colin Cross3899e9f2010-04-13 20:35:46 -070018
Colin Crossf83d0b92010-04-21 12:04:20 -070019#include <sys/stat.h>
20#include <sys/types.h>
Tiffany Yangb885e4a2024-05-22 21:04:38 -070021#include <sys/unistd.h>
Colin Crossf83d0b92010-04-21 12:04:20 -070022
Elliott Hughes9605a942016-11-10 17:43:47 -080023#include <chrono>
Nick Kralevichf667a322015-04-25 17:42:52 -070024#include <functional>
Elliott Hughes331cf2f2016-11-29 19:20:58 +000025#include <string>
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -070026#include <vector>
Elliott Hughesf682b472015-02-06 12:19:48 -080027
James Hawkinse78ea772017-03-24 11:43:02 -070028#include <android-base/chrono_utils.h>
29
Paul Crowley68258e82019-10-28 07:55:03 -070030#include "fscrypt_init_extensions.h"
Tom Cherry11a3aee2017-08-03 12:54:07 -070031#include "result.h"
32
James Hawkinse78ea772017-03-24 11:43:02 -070033using android::base::boot_clock;
Elliott Hughes9605a942016-11-10 17:43:47 -080034
Tom Cherry81f5d3e2017-06-22 12:53:17 -070035namespace android {
36namespace init {
37
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -070038enum mount_mode {
39 MOUNT_MODE_DEFAULT = 0,
40 MOUNT_MODE_EARLY = 1,
41 MOUNT_MODE_LATE = 2,
42};
43
Tom Cherry39fafed2019-06-10 17:49:59 -070044static const char kColdBootDoneProp[] = "ro.cold_boot_done";
45
Tom Cherry18278d22019-11-12 16:21:20 -080046extern void (*trigger_shutdown)(const std::string& command);
47
Adam Langleyecc14a52022-05-11 22:32:47 +000048Result<int> CreateSocket(const std::string& name, int type, bool passcred, bool should_listen,
49 mode_t perm, uid_t uid, gid_t gid, const std::string& socketcon);
Elliott Hughesf682b472015-02-06 12:19:48 -080050
Tom Cherry11a3aee2017-08-03 12:54:07 -070051Result<std::string> ReadFile(const std::string& path);
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070052Result<void> WriteFile(const std::string& path, const std::string& content);
Elliott Hughesf682b472015-02-06 12:19:48 -080053
Tom Cherry11a3aee2017-08-03 12:54:07 -070054Result<uid_t> DecodeUid(const std::string& name);
Colin Cross3899e9f2010-04-13 20:35:46 -070055
Tom Cherry0c8d6d22017-08-10 12:22:44 -070056bool mkdir_recursive(const std::string& pathname, mode_t mode);
Yi-Yo Chiangda5323e2023-08-02 01:08:23 +080057int wait_for_file(const char* filename, std::chrono::nanoseconds timeout);
Tom Cherry0c8d6d22017-08-10 12:22:44 -070058bool make_dir(const std::string& path, mode_t mode);
Lee Campbellf13b1b32015-07-24 16:57:14 -070059bool is_dir(const char* pathname);
Tom Cherryc5cf85d2019-07-31 13:59:15 -070060Result<std::string> ExpandProps(const std::string& src);
Elliott Hughes331cf2f2016-11-29 19:20:58 +000061
Yu Ningc01022a2017-07-26 17:54:08 +080062// Reads or compares the content of device tree file under the platform's Android DT directory.
Bowgo Tsaid2620172017-04-17 22:17:09 +080063bool read_android_dt_file(const std::string& sub_path, std::string* dt_content);
64bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content);
65
Tom Cherryde6bd502018-02-13 16:50:08 -080066bool IsLegalPropertyName(const std::string& name);
Tom Cherry4772f1d2019-07-30 09:34:41 -070067Result<void> IsLegalPropertyValue(const std::string& name, const std::string& value);
Eric Biggers6cb5a362022-05-13 19:11:42 +000068std::string CleanDirPath(const std::string& path);
Tom Cherry4772f1d2019-07-30 09:34:41 -070069
Paul Crowley68258e82019-10-28 07:55:03 -070070struct MkdirOptions {
71 std::string target;
72 mode_t mode;
73 uid_t uid;
74 gid_t gid;
75 FscryptAction fscrypt_action;
76 std::string ref_option;
77};
78
79Result<MkdirOptions> ParseMkdir(const std::vector<std::string>& args);
80
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -070081struct MountAllOptions {
82 std::vector<std::string> rc_paths;
83 std::string fstab_path;
84 mount_mode mode;
85 bool import_rc;
86};
87
88Result<MountAllOptions> ParseMountAll(const std::vector<std::string>& args);
89
Tom Cherry4772f1d2019-07-30 09:34:41 -070090Result<std::pair<int, std::vector<std::string>>> ParseRestorecon(
91 const std::vector<std::string>& args);
Tom Cherryde6bd502018-02-13 16:50:08 -080092
Alistair Delvade28a862020-06-08 11:04:53 -070093Result<std::string> ParseSwaponAll(const std::vector<std::string>& args);
94
Alistair Delvaa2cc1eb2020-05-20 16:24:00 -070095Result<std::string> ParseUmountAll(const std::vector<std::string>& args);
96
Tom Cherry59656fb2019-05-28 10:19:44 -070097void SetStdioToDevNull(char** argv);
98void InitKernelLogging(char** argv);
Jiyong Park68660412019-01-16 23:00:59 +090099bool IsRecoveryMode();
Kiyoung Kim0cbee0d2021-03-02 16:45:27 +0900100
101bool IsDefaultMountNamespaceReady();
102void SetDefaultMountNamespaceReady();
Jiyong Park3b3d87d2021-09-28 16:11:26 +0900103
Nikita Ioffea66adf42023-06-26 14:55:31 +0100104inline constexpr bool IsMicrodroid() {
105#ifdef MICRODROID
106 return MICRODROID;
107#else
108 return false;
109#endif
110}
111
Tiffany Yangb885e4a2024-05-22 21:04:38 -0700112inline bool IsArcvm() {
113 return !access("/is_arcvm", F_OK);
114}
115
Jiyong Park11d7bc52022-07-15 13:44:14 +0900116bool Has32BitAbi();
Deyao Rendf40ed12022-07-14 22:51:10 +0000117
118std::string GetApexNameFromFileName(const std::string& path);
Deyao Ren238e9092022-07-21 23:05:13 +0000119
120// Compare all files */path.#rc and */path.rc with the same path prefix.
121// Keep the one with the highest # that doesn't exceed the system's SDK.
122// (.rc == .0rc for ranking purposes)
123std::vector<std::string> FilterVersionedConfigs(const std::vector<std::string>& configs,
124 int active_sdk);
Nikita Ioffefe7b83f2024-03-04 14:59:49 +0000125
126// Forks, executes the provided program in the child, and waits for the completion in the parent.
127// Child's stderr is captured and logged using LOG(ERROR).
128bool ForkExecveAndWaitForCompletion(const char* filename, char* const argv[]);
129
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700130} // namespace init
131} // namespace android