| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 17 | #pragma once | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 18 |  | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 19 | #include <sys/stat.h> | 
|  | 20 | #include <sys/types.h> | 
|  | 21 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 22 | #include <chrono> | 
| Nick Kralevich | f667a32 | 2015-04-25 17:42:52 -0700 | [diff] [blame] | 23 | #include <functional> | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 24 | #include <string> | 
| Alistair Delva | a2cc1eb | 2020-05-20 16:24:00 -0700 | [diff] [blame] | 25 | #include <vector> | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 26 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 27 | #include <android-base/chrono_utils.h> | 
|  | 28 |  | 
| Paul Crowley | 68258e8 | 2019-10-28 07:55:03 -0700 | [diff] [blame] | 29 | #include "fscrypt_init_extensions.h" | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 30 | #include "result.h" | 
|  | 31 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 32 | using android::base::boot_clock; | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 33 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 34 | namespace android { | 
|  | 35 | namespace init { | 
|  | 36 |  | 
| Alistair Delva | a2cc1eb | 2020-05-20 16:24:00 -0700 | [diff] [blame] | 37 | enum mount_mode { | 
|  | 38 | MOUNT_MODE_DEFAULT = 0, | 
|  | 39 | MOUNT_MODE_EARLY = 1, | 
|  | 40 | MOUNT_MODE_LATE = 2, | 
|  | 41 | }; | 
|  | 42 |  | 
| Tom Cherry | 39fafed | 2019-06-10 17:49:59 -0700 | [diff] [blame] | 43 | static const char kColdBootDoneProp[] = "ro.cold_boot_done"; | 
|  | 44 |  | 
| Tom Cherry | 18278d2 | 2019-11-12 16:21:20 -0800 | [diff] [blame] | 45 | extern void (*trigger_shutdown)(const std::string& command); | 
|  | 46 |  | 
| Adam Langley | ecc14a5 | 2022-05-11 22:32:47 +0000 | [diff] [blame] | 47 | Result<int> CreateSocket(const std::string& name, int type, bool passcred, bool should_listen, | 
|  | 48 | mode_t perm, uid_t uid, gid_t gid, const std::string& socketcon); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 49 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 50 | Result<std::string> ReadFile(const std::string& path); | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 51 | Result<void> WriteFile(const std::string& path, const std::string& content); | 
| Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 52 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 53 | Result<uid_t> DecodeUid(const std::string& name); | 
| Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 54 |  | 
| Tom Cherry | 0c8d6d2 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 55 | bool mkdir_recursive(const std::string& pathname, mode_t mode); | 
| Yi-Yo Chiang | da5323e | 2023-08-02 01:08:23 +0800 | [diff] [blame] | 56 | int wait_for_file(const char* filename, std::chrono::nanoseconds timeout); | 
| Tom Cherry | 0c8d6d2 | 2017-08-10 12:22:44 -0700 | [diff] [blame] | 57 | bool make_dir(const std::string& path, mode_t mode); | 
| Lee Campbell | f13b1b3 | 2015-07-24 16:57:14 -0700 | [diff] [blame] | 58 | bool is_dir(const char* pathname); | 
| Tom Cherry | c5cf85d | 2019-07-31 13:59:15 -0700 | [diff] [blame] | 59 | Result<std::string> ExpandProps(const std::string& src); | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 60 |  | 
| Yu Ning | c01022a | 2017-07-26 17:54:08 +0800 | [diff] [blame] | 61 | // Reads or compares the content of device tree file under the platform's Android DT directory. | 
| Bowgo Tsai | d262017 | 2017-04-17 22:17:09 +0800 | [diff] [blame] | 62 | bool read_android_dt_file(const std::string& sub_path, std::string* dt_content); | 
|  | 63 | bool is_android_dt_value_expected(const std::string& sub_path, const std::string& expected_content); | 
|  | 64 |  | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 65 | bool IsLegalPropertyName(const std::string& name); | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 66 | Result<void> IsLegalPropertyValue(const std::string& name, const std::string& value); | 
| Eric Biggers | 6cb5a36 | 2022-05-13 19:11:42 +0000 | [diff] [blame] | 67 | std::string CleanDirPath(const std::string& path); | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 68 |  | 
| Paul Crowley | 68258e8 | 2019-10-28 07:55:03 -0700 | [diff] [blame] | 69 | struct MkdirOptions { | 
|  | 70 | std::string target; | 
|  | 71 | mode_t mode; | 
|  | 72 | uid_t uid; | 
|  | 73 | gid_t gid; | 
|  | 74 | FscryptAction fscrypt_action; | 
|  | 75 | std::string ref_option; | 
|  | 76 | }; | 
|  | 77 |  | 
|  | 78 | Result<MkdirOptions> ParseMkdir(const std::vector<std::string>& args); | 
|  | 79 |  | 
| Alistair Delva | a2cc1eb | 2020-05-20 16:24:00 -0700 | [diff] [blame] | 80 | struct MountAllOptions { | 
|  | 81 | std::vector<std::string> rc_paths; | 
|  | 82 | std::string fstab_path; | 
|  | 83 | mount_mode mode; | 
|  | 84 | bool import_rc; | 
|  | 85 | }; | 
|  | 86 |  | 
|  | 87 | Result<MountAllOptions> ParseMountAll(const std::vector<std::string>& args); | 
|  | 88 |  | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 89 | Result<std::pair<int, std::vector<std::string>>> ParseRestorecon( | 
|  | 90 | const std::vector<std::string>& args); | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 91 |  | 
| Alistair Delva | de28a86 | 2020-06-08 11:04:53 -0700 | [diff] [blame] | 92 | Result<std::string> ParseSwaponAll(const std::vector<std::string>& args); | 
|  | 93 |  | 
| Alistair Delva | a2cc1eb | 2020-05-20 16:24:00 -0700 | [diff] [blame] | 94 | Result<std::string> ParseUmountAll(const std::vector<std::string>& args); | 
|  | 95 |  | 
| Tom Cherry | 59656fb | 2019-05-28 10:19:44 -0700 | [diff] [blame] | 96 | void SetStdioToDevNull(char** argv); | 
|  | 97 | void InitKernelLogging(char** argv); | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 98 | bool IsRecoveryMode(); | 
| Kiyoung Kim | 0cbee0d | 2021-03-02 16:45:27 +0900 | [diff] [blame] | 99 |  | 
|  | 100 | bool IsDefaultMountNamespaceReady(); | 
|  | 101 | void SetDefaultMountNamespaceReady(); | 
| Jiyong Park | 3b3d87d | 2021-09-28 16:11:26 +0900 | [diff] [blame] | 102 |  | 
| Nikita Ioffe | a66adf4 | 2023-06-26 14:55:31 +0100 | [diff] [blame] | 103 | inline constexpr bool IsMicrodroid() { | 
|  | 104 | #ifdef MICRODROID | 
|  | 105 | return MICRODROID; | 
|  | 106 | #else | 
|  | 107 | return false; | 
|  | 108 | #endif | 
|  | 109 | } | 
|  | 110 |  | 
| Jiyong Park | 11d7bc5 | 2022-07-15 13:44:14 +0900 | [diff] [blame] | 111 | bool Has32BitAbi(); | 
| Deyao Ren | df40ed1 | 2022-07-14 22:51:10 +0000 | [diff] [blame] | 112 |  | 
|  | 113 | std::string GetApexNameFromFileName(const std::string& path); | 
| Deyao Ren | 238e909 | 2022-07-21 23:05:13 +0000 | [diff] [blame] | 114 |  | 
|  | 115 | // Compare all files */path.#rc and */path.rc with the same path prefix. | 
|  | 116 | // Keep the one with the highest # that doesn't exceed the system's SDK. | 
|  | 117 | // (.rc == .0rc for ranking purposes) | 
|  | 118 | std::vector<std::string> FilterVersionedConfigs(const std::vector<std::string>& configs, | 
|  | 119 | int active_sdk); | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 120 | }  // namespace init | 
|  | 121 | }  // namespace android |