Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2017 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 | 14c2472 | 2019-09-18 13:47:19 -0700 | [diff] [blame] | 17 | #pragma once |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 18 | |
| 19 | #include <signal.h> |
| 20 | |
| 21 | #include <string> |
| 22 | #include <vector> |
| 23 | |
| 24 | #include <android-base/unique_fd.h> |
| 25 | |
| 26 | #include "builtins.h" |
Tom Cherry | 618d310 | 2018-01-19 14:25:48 -0800 | [diff] [blame] | 27 | #include "result.h" |
Tom Cherry | c49719f | 2018-01-10 11:04:34 -0800 | [diff] [blame] | 28 | #include "system/core/init/subcontext.pb.h" |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 29 | |
| 30 | namespace android { |
| 31 | namespace init { |
| 32 | |
Tom Cherry | 14c2472 | 2019-09-18 13:47:19 -0700 | [diff] [blame] | 33 | static constexpr const char kInitContext[] = "u:r:init:s0"; |
| 34 | static constexpr const char kVendorContext[] = "u:r:vendor_init:s0"; |
Tom Cherry | 1c005f3 | 2019-11-20 15:51:36 -0800 | [diff] [blame] | 35 | static constexpr const char kTestContext[] = "test-test-test"; |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 36 | |
| 37 | class Subcontext { |
| 38 | public: |
Daniel Norman | f597fa5 | 2020-11-09 17:28:24 -0800 | [diff] [blame] | 39 | Subcontext(std::vector<std::string> path_prefixes, std::string context, bool host = false) |
Tom Cherry | 14c2472 | 2019-09-18 13:47:19 -0700 | [diff] [blame] | 40 | : path_prefixes_(std::move(path_prefixes)), context_(std::move(context)), pid_(0) { |
Daniel Norman | f597fa5 | 2020-11-09 17:28:24 -0800 | [diff] [blame] | 41 | if (!host) { |
| 42 | Fork(); |
| 43 | } |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 44 | } |
| 45 | |
Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 46 | Result<void> Execute(const std::vector<std::string>& args); |
Tom Cherry | c49719f | 2018-01-10 11:04:34 -0800 | [diff] [blame] | 47 | Result<std::vector<std::string>> ExpandArgs(const std::vector<std::string>& args); |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 48 | void Restart(); |
Jooyung Han | 38e8e74 | 2022-05-10 05:35:35 +0900 | [diff] [blame] | 49 | bool PathMatchesSubcontext(const std::string& path) const; |
| 50 | void SetApexList(std::vector<std::string>&& apex_list); |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 51 | |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 52 | const std::string& context() const { return context_; } |
| 53 | pid_t pid() const { return pid_; } |
| 54 | |
| 55 | private: |
| 56 | void Fork(); |
Tom Cherry | c49719f | 2018-01-10 11:04:34 -0800 | [diff] [blame] | 57 | Result<SubcontextReply> TransmitMessage(const SubcontextCommand& subcontext_command); |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 58 | |
Tom Cherry | 14c2472 | 2019-09-18 13:47:19 -0700 | [diff] [blame] | 59 | std::vector<std::string> path_prefixes_; |
Jooyung Han | 38e8e74 | 2022-05-10 05:35:35 +0900 | [diff] [blame] | 60 | std::vector<std::string> apex_list_; |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 61 | std::string context_; |
| 62 | pid_t pid_; |
| 63 | android::base::unique_fd socket_; |
| 64 | }; |
| 65 | |
Tom Cherry | d52a5b3 | 2019-07-22 16:05:36 -0700 | [diff] [blame] | 66 | int SubcontextMain(int argc, char** argv, const BuiltinFunctionMap* function_map); |
Tom Cherry | e3e77d3 | 2020-04-28 13:55:19 -0700 | [diff] [blame] | 67 | void InitializeSubcontext(); |
Daniel Norman | f597fa5 | 2020-11-09 17:28:24 -0800 | [diff] [blame] | 68 | void InitializeHostSubcontext(std::vector<std::string> vendor_prefixes); |
Tom Cherry | e3e77d3 | 2020-04-28 13:55:19 -0700 | [diff] [blame] | 69 | Subcontext* GetSubcontext(); |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 70 | bool SubcontextChildReap(pid_t pid); |
Luis Hector Chavez | 92c49bc | 2018-07-27 11:19:25 -0700 | [diff] [blame] | 71 | void SubcontextTerminate(); |
Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 72 | |
| 73 | } // namespace init |
| 74 | } // namespace android |