| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2015 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 |  | 
|  | 17 | #include "service.h" | 
|  | 18 |  | 
|  | 19 | #include <fcntl.h> | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 20 | #include <inttypes.h> | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 21 | #include <linux/securebits.h> | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 22 | #include <sched.h> | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 23 | #include <sys/prctl.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 24 | #include <sys/stat.h> | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 25 | #include <sys/time.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 26 | #include <termios.h> | 
| Dan Albert | af9ba4d | 2015-08-11 16:37:04 -0700 | [diff] [blame] | 27 | #include <unistd.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 28 |  | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 29 | #include <android-base/file.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 30 | #include <android-base/logging.h> | 
| Elliott Hughes | dc80312 | 2018-05-24 18:00:39 -0700 | [diff] [blame] | 31 | #include <android-base/properties.h> | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 32 | #include <android-base/scopeguard.h> | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 33 | #include <android-base/stringprintf.h> | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 34 | #include <android-base/strings.h> | 
| Tom Cherry | 2e4c85f | 2019-07-09 13:33:36 -0700 | [diff] [blame] | 35 | #include <cutils/sockets.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 36 | #include <processgroup/processgroup.h> | 
|  | 37 | #include <selinux/selinux.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 38 |  | 
| Tom Cherry | 2aeb1ad | 2019-06-26 10:46:20 -0700 | [diff] [blame] | 39 | #include "service_list.h" | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 40 | #include "util.h" | 
|  | 41 |  | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 42 | #if defined(__ANDROID__) | 
| Jiyong Park | d7f7c20 | 2019-05-10 21:12:15 +0900 | [diff] [blame] | 43 | #include <ApexProperties.sysprop.h> | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 44 |  | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 45 | #include "init.h" | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 46 | #include "mount_namespace.h" | 
| Tom Cherry | de6bd50 | 2018-02-13 16:50:08 -0800 | [diff] [blame] | 47 | #include "property_service.h" | 
|  | 48 | #else | 
|  | 49 | #include "host_init_stubs.h" | 
|  | 50 | #endif | 
|  | 51 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 52 | using android::base::boot_clock; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 53 | using android::base::GetProperty; | 
|  | 54 | using android::base::Join; | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 55 | using android::base::make_scope_guard; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 56 | using android::base::StartsWith; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 57 | using android::base::StringPrintf; | 
|  | 58 | using android::base::WriteStringToFile; | 
|  | 59 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 60 | namespace android { | 
|  | 61 | namespace init { | 
|  | 62 |  | 
| Tom Cherry | aead51b | 2018-04-20 16:18:12 -0700 | [diff] [blame] | 63 | static Result<std::string> ComputeContextFromExecutable(const std::string& service_path) { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 64 | std::string computed_context; | 
|  | 65 |  | 
|  | 66 | char* raw_con = nullptr; | 
|  | 67 | char* raw_filecon = nullptr; | 
|  | 68 |  | 
|  | 69 | if (getcon(&raw_con) == -1) { | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 70 | return Error() << "Could not get security context"; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 71 | } | 
|  | 72 | std::unique_ptr<char> mycon(raw_con); | 
|  | 73 |  | 
|  | 74 | if (getfilecon(service_path.c_str(), &raw_filecon) == -1) { | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 75 | return Error() << "Could not get file context"; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 76 | } | 
|  | 77 | std::unique_ptr<char> filecon(raw_filecon); | 
|  | 78 |  | 
|  | 79 | char* new_con = nullptr; | 
|  | 80 | int rc = security_compute_create(mycon.get(), filecon.get(), | 
|  | 81 | string_to_security_class("process"), &new_con); | 
|  | 82 | if (rc == 0) { | 
|  | 83 | computed_context = new_con; | 
|  | 84 | free(new_con); | 
|  | 85 | } | 
|  | 86 | if (rc == 0 && computed_context == mycon.get()) { | 
| Nick Kralevich | 1ea19eb | 2017-08-25 12:08:57 -0700 | [diff] [blame] | 87 | return Error() << "File " << service_path << "(labeled \"" << filecon.get() | 
|  | 88 | << "\") has incorrect label or no domain transition from " << mycon.get() | 
|  | 89 | << " to another SELinux domain defined. Have you configured your " | 
|  | 90 | "service correctly? https://source.android.com/security/selinux/" | 
|  | 91 | "device-policy#label_new_services_and_address_denials"; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 92 | } | 
|  | 93 | if (rc < 0) { | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 94 | return Error() << "Could not get process context"; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 95 | } | 
|  | 96 | return computed_context; | 
|  | 97 | } | 
|  | 98 |  | 
| Tom Cherry | 8f38048 | 2018-04-17 14:48:44 -0700 | [diff] [blame] | 99 | static bool ExpandArgsAndExecv(const std::vector<std::string>& args, bool sigstop) { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 100 | std::vector<std::string> expanded_args; | 
| Tom Cherry | 5e405ca | 2017-09-11 16:08:54 -0700 | [diff] [blame] | 101 | std::vector<char*> c_strings; | 
|  | 102 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 103 | expanded_args.resize(args.size()); | 
| Tom Cherry | 5e405ca | 2017-09-11 16:08:54 -0700 | [diff] [blame] | 104 | c_strings.push_back(const_cast<char*>(args[0].data())); | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 105 | for (std::size_t i = 1; i < args.size(); ++i) { | 
| Tom Cherry | c5cf85d | 2019-07-31 13:59:15 -0700 | [diff] [blame] | 106 | auto expanded_arg = ExpandProps(args[i]); | 
|  | 107 | if (!expanded_arg) { | 
|  | 108 | LOG(FATAL) << args[0] << ": cannot expand arguments': " << expanded_arg.error(); | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 109 | } | 
| Tom Cherry | c5cf85d | 2019-07-31 13:59:15 -0700 | [diff] [blame] | 110 | expanded_args[i] = *expanded_arg; | 
| Tom Cherry | 5e405ca | 2017-09-11 16:08:54 -0700 | [diff] [blame] | 111 | c_strings.push_back(expanded_args[i].data()); | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 112 | } | 
| Tom Cherry | 5e405ca | 2017-09-11 16:08:54 -0700 | [diff] [blame] | 113 | c_strings.push_back(nullptr); | 
|  | 114 |  | 
| Tom Cherry | 8f38048 | 2018-04-17 14:48:44 -0700 | [diff] [blame] | 115 | if (sigstop) { | 
|  | 116 | kill(getpid(), SIGSTOP); | 
|  | 117 | } | 
|  | 118 |  | 
| Tom Cherry | 5e405ca | 2017-09-11 16:08:54 -0700 | [diff] [blame] | 119 | return execv(c_strings[0], c_strings.data()) == 0; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 120 | } | 
|  | 121 |  | 
| Martin Stjernholm | cacf043 | 2019-08-21 18:34:31 +0100 | [diff] [blame] | 122 | static bool AreRuntimeApexesReady() { | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 123 | struct stat buf; | 
| Martin Stjernholm | cacf043 | 2019-08-21 18:34:31 +0100 | [diff] [blame] | 124 | return stat("/apex/com.android.art/", &buf) == 0 && | 
|  | 125 | stat("/apex/com.android.runtime/", &buf) == 0; | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 126 | } | 
|  | 127 |  | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 128 | unsigned long Service::next_start_order_ = 1; | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 129 | bool Service::is_exec_service_running_ = false; | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 130 |  | 
| Tom Cherry | cb0f9bb | 2017-09-12 15:58:47 -0700 | [diff] [blame] | 131 | Service::Service(const std::string& name, Subcontext* subcontext_for_restart_commands, | 
|  | 132 | const std::vector<std::string>& args) | 
| Tom Cherry | 1cd082d | 2019-02-06 10:45:56 -0800 | [diff] [blame] | 133 | : Service(name, 0, 0, 0, {}, 0, "", subcontext_for_restart_commands, args) {} | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 134 |  | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 135 | Service::Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, | 
| Tom Cherry | 247ffbf | 2019-07-08 15:09:36 -0700 | [diff] [blame] | 136 | const std::vector<gid_t>& supp_gids, int namespace_flags, | 
| Tom Cherry | 1cd082d | 2019-02-06 10:45:56 -0800 | [diff] [blame] | 137 | const std::string& seclabel, Subcontext* subcontext_for_restart_commands, | 
|  | 138 | const std::vector<std::string>& args) | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 139 | : name_(name), | 
|  | 140 | classnames_({"default"}), | 
|  | 141 | flags_(flags), | 
|  | 142 | pid_(0), | 
|  | 143 | crash_count_(0), | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 144 | proc_attr_{.ioprio_class = IoSchedClass_NONE, | 
|  | 145 | .ioprio_pri = 0, | 
|  | 146 | .uid = uid, | 
|  | 147 | .gid = gid, | 
|  | 148 | .supp_gids = supp_gids, | 
|  | 149 | .priority = 0}, | 
|  | 150 | namespaces_{.flags = namespace_flags}, | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 151 | seclabel_(seclabel), | 
| Tom Cherry | 9cbf570 | 2018-02-13 16:24:51 -0800 | [diff] [blame] | 152 | onrestart_(false, subcontext_for_restart_commands, "<Service '" + name + "' onrestart>", 0, | 
|  | 153 | "onrestart", {}), | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 154 | oom_score_adjust_(-1000), | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 155 | start_order_(0), | 
| Tom Cherry | 9cbf570 | 2018-02-13 16:24:51 -0800 | [diff] [blame] | 156 | args_(args) {} | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 157 |  | 
|  | 158 | void Service::NotifyStateChange(const std::string& new_state) const { | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 159 | if ((flags_ & SVC_TEMPORARY) != 0) { | 
|  | 160 | // Services created by 'exec' are temporary and don't have properties tracking their state. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 161 | return; | 
|  | 162 | } | 
|  | 163 |  | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 164 | std::string prop_name = "init.svc." + name_; | 
|  | 165 | property_set(prop_name, new_state); | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 166 |  | 
|  | 167 | if (new_state == "running") { | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 168 | uint64_t start_ns = time_started_.time_since_epoch().count(); | 
| Tom Cherry | fed3373 | 2017-08-18 10:47:46 -0700 | [diff] [blame] | 169 | std::string boottime_property = "ro.boottime." + name_; | 
|  | 170 | if (GetProperty(boottime_property, "").empty()) { | 
|  | 171 | property_set(boottime_property, std::to_string(start_ns)); | 
|  | 172 | } | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 173 | } | 
| Daniel Norman | c788771 | 2019-07-19 11:04:01 -0700 | [diff] [blame] | 174 |  | 
|  | 175 | // init.svc_debug_pid.* properties are only for tests, and should not be used | 
|  | 176 | // on device for security checks. | 
|  | 177 | std::string pid_property = "init.svc_debug_pid." + name_; | 
|  | 178 | if (new_state == "running") { | 
|  | 179 | property_set(pid_property, std::to_string(pid_)); | 
|  | 180 | } else if (new_state == "stopped") { | 
|  | 181 | property_set(pid_property, ""); | 
|  | 182 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 183 | } | 
|  | 184 |  | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 185 | void Service::KillProcessGroup(int signal) { | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 186 | // If we've already seen a successful result from killProcessGroup*(), then we have removed | 
|  | 187 | // the cgroup already and calling these functions a second time will simply result in an error. | 
|  | 188 | // This is true regardless of which signal was sent. | 
|  | 189 | // These functions handle their own logging, so no additional logging is needed. | 
|  | 190 | if (!process_cgroup_empty_) { | 
|  | 191 | LOG(INFO) << "Sending signal " << signal << " to service '" << name_ << "' (pid " << pid_ | 
|  | 192 | << ") process group..."; | 
|  | 193 | int r; | 
|  | 194 | if (signal == SIGTERM) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 195 | r = killProcessGroupOnce(proc_attr_.uid, pid_, signal); | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 196 | } else { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 197 | r = killProcessGroup(proc_attr_.uid, pid_, signal); | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
|  | 200 | if (r == 0) process_cgroup_empty_ = true; | 
|  | 201 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 202 | } | 
|  | 203 |  | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 204 | void Service::SetProcessAttributesAndCaps() { | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 205 | // Keep capabilites on uid change. | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 206 | if (capabilities_ && proc_attr_.uid) { | 
| Luis Hector Chavez | f596551 | 2017-06-30 14:04:20 -0700 | [diff] [blame] | 207 | // If Android is running in a container, some securebits might already | 
|  | 208 | // be locked, so don't change those. | 
| Ben Fennema | a724360 | 2017-07-25 14:37:21 -0700 | [diff] [blame] | 209 | unsigned long securebits = prctl(PR_GET_SECUREBITS); | 
|  | 210 | if (securebits == -1UL) { | 
| Luis Hector Chavez | f596551 | 2017-06-30 14:04:20 -0700 | [diff] [blame] | 211 | PLOG(FATAL) << "prctl(PR_GET_SECUREBITS) failed for " << name_; | 
|  | 212 | } | 
|  | 213 | securebits |= SECBIT_KEEP_CAPS | SECBIT_KEEP_CAPS_LOCKED; | 
|  | 214 | if (prctl(PR_SET_SECUREBITS, securebits) != 0) { | 
|  | 215 | PLOG(FATAL) << "prctl(PR_SET_SECUREBITS) failed for " << name_; | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 216 | } | 
|  | 217 | } | 
|  | 218 |  | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 219 | if (auto result = SetProcessAttributes(proc_attr_); !result) { | 
|  | 220 | LOG(FATAL) << "cannot set attribute for " << name_ << ": " << result.error(); | 
|  | 221 | } | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 222 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 223 | if (!seclabel_.empty()) { | 
|  | 224 | if (setexeccon(seclabel_.c_str()) < 0) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 225 | PLOG(FATAL) << "cannot setexeccon('" << seclabel_ << "') for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 226 | } | 
|  | 227 | } | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 228 |  | 
| Tom Cherry | 1cd082d | 2019-02-06 10:45:56 -0800 | [diff] [blame] | 229 | if (capabilities_) { | 
|  | 230 | if (!SetCapsForExec(*capabilities_)) { | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 231 | LOG(FATAL) << "cannot set capabilities for " << name_; | 
|  | 232 | } | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 233 | } else if (proc_attr_.uid) { | 
| Luis Hector Chavez | 94fb5b0 | 2017-11-16 15:52:00 -0800 | [diff] [blame] | 234 | // Inheritable caps can be non-zero when running in a container. | 
|  | 235 | if (!DropInheritableCaps()) { | 
|  | 236 | LOG(FATAL) << "cannot drop inheritable caps for " << name_; | 
|  | 237 | } | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 238 | } | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 239 | } | 
|  | 240 |  | 
| Paul Crowley | c73b215 | 2018-04-13 17:38:57 +0000 | [diff] [blame] | 241 | void Service::Reap(const siginfo_t& siginfo) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 242 | if (!(flags_ & SVC_ONESHOT) || (flags_ & SVC_RESTART)) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 243 | KillProcessGroup(SIGKILL); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 244 | } | 
|  | 245 |  | 
| Tom Cherry | 2e4c85f | 2019-07-09 13:33:36 -0700 | [diff] [blame] | 246 | // Remove any socket resources we may have created. | 
|  | 247 | for (const auto& socket : sockets_) { | 
|  | 248 | auto path = ANDROID_SOCKET_DIR "/" + socket.name; | 
|  | 249 | unlink(path.c_str()); | 
|  | 250 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 251 |  | 
| Paul Crowley | c73b215 | 2018-04-13 17:38:57 +0000 | [diff] [blame] | 252 | for (const auto& f : reap_callbacks_) { | 
|  | 253 | f(siginfo); | 
|  | 254 | } | 
|  | 255 |  | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 256 | if ((siginfo.si_code != CLD_EXITED || siginfo.si_status != 0) && on_failure_reboot_target_) { | 
|  | 257 | LOG(ERROR) << "Service with 'reboot_on_failure' option failed, shutting down system."; | 
| Tom Cherry | 0dbfea7 | 2019-10-11 13:18:44 -0700 | [diff] [blame] | 258 | TriggerShutdown(*on_failure_reboot_target_); | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 261 | if (flags_ & SVC_EXEC) UnSetExec(); | 
|  | 262 |  | 
|  | 263 | if (flags_ & SVC_TEMPORARY) return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 264 |  | 
|  | 265 | pid_ = 0; | 
|  | 266 | flags_ &= (~SVC_RUNNING); | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 267 | start_order_ = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 268 |  | 
|  | 269 | // Oneshot processes go into the disabled state on exit, | 
|  | 270 | // except when manually restarted. | 
| Martijn Coenen | 70788f9 | 2019-04-23 16:26:01 +0200 | [diff] [blame] | 271 | if ((flags_ & SVC_ONESHOT) && !(flags_ & SVC_RESTART) && !(flags_ & SVC_RESET)) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 272 | flags_ |= SVC_DISABLED; | 
|  | 273 | } | 
|  | 274 |  | 
|  | 275 | // Disabled and reset processes do not get restarted automatically. | 
|  | 276 | if (flags_ & (SVC_DISABLED | SVC_RESET))  { | 
|  | 277 | NotifyStateChange("stopped"); | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 278 | return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 279 | } | 
|  | 280 |  | 
| Jiyong Park | d7f7c20 | 2019-05-10 21:12:15 +0900 | [diff] [blame] | 281 | #if defined(__ANDROID__) | 
|  | 282 | static bool is_apex_updatable = android::sysprop::ApexProperties::updatable().value_or(false); | 
|  | 283 | #else | 
|  | 284 | static bool is_apex_updatable = false; | 
|  | 285 | #endif | 
|  | 286 | const bool is_process_updatable = !pre_apexd_ && is_apex_updatable; | 
|  | 287 |  | 
| Zimuzo | 88de80f | 2019-04-27 21:10:35 +0100 | [diff] [blame] | 288 | // If we crash > 4 times in 4 minutes or before boot_completed, | 
|  | 289 | // reboot into bootloader or set crashing property | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 290 | boot_clock::time_point now = boot_clock::now(); | 
| Jiyong Park | d7f7c20 | 2019-05-10 21:12:15 +0900 | [diff] [blame] | 291 | if (((flags_ & SVC_CRITICAL) || is_process_updatable) && !(flags_ & SVC_RESTART)) { | 
| Zimuzo | 88de80f | 2019-04-27 21:10:35 +0100 | [diff] [blame] | 292 | bool boot_completed = android::base::GetBoolProperty("sys.boot_completed", false); | 
|  | 293 | if (now < time_crashed_ + 4min || !boot_completed) { | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 294 | if (++crash_count_ > 4) { | 
| Zimuzo | c55a8c6 | 2019-01-07 10:19:02 +0000 | [diff] [blame] | 295 | if (flags_ & SVC_CRITICAL) { | 
|  | 296 | // Aborts into bootloader | 
| Zimuzo | 88de80f | 2019-04-27 21:10:35 +0100 | [diff] [blame] | 297 | LOG(FATAL) << "critical process '" << name_ << "' exited 4 times " | 
|  | 298 | << (boot_completed ? "in 4 minutes" : "before boot completed"); | 
| Zimuzo | c55a8c6 | 2019-01-07 10:19:02 +0000 | [diff] [blame] | 299 | } else { | 
| Zimuzo | 88de80f | 2019-04-27 21:10:35 +0100 | [diff] [blame] | 300 | LOG(ERROR) << "updatable process '" << name_ << "' exited 4 times " | 
|  | 301 | << (boot_completed ? "in 4 minutes" : "before boot completed"); | 
| Zimuzo | c55a8c6 | 2019-01-07 10:19:02 +0000 | [diff] [blame] | 302 | // Notifies update_verifier and apexd | 
| Nikita Ioffe | 72d2491 | 2019-10-04 16:45:56 +0100 | [diff] [blame] | 303 | property_set("sys.init.updatable_crashing", "1"); | 
| Zimuzo | c55a8c6 | 2019-01-07 10:19:02 +0000 | [diff] [blame] | 304 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 305 | } | 
|  | 306 | } else { | 
|  | 307 | time_crashed_ = now; | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 308 | crash_count_ = 1; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 309 | } | 
|  | 310 | } | 
|  | 311 |  | 
|  | 312 | flags_ &= (~SVC_RESTART); | 
|  | 313 | flags_ |= SVC_RESTARTING; | 
|  | 314 |  | 
|  | 315 | // Execute all onrestart commands for this service. | 
|  | 316 | onrestart_.ExecuteAllCommands(); | 
|  | 317 |  | 
|  | 318 | NotifyStateChange("restarting"); | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 319 | return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 320 | } | 
|  | 321 |  | 
|  | 322 | void Service::DumpState() const { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 323 | LOG(INFO) << "service " << name_; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 324 | LOG(INFO) << "  class '" << Join(classnames_, " ") << "'"; | 
|  | 325 | LOG(INFO) << "  exec " << Join(args_, " "); | 
| Tom Cherry | 2e4c85f | 2019-07-09 13:33:36 -0700 | [diff] [blame] | 326 | for (const auto& socket : sockets_) { | 
|  | 327 | LOG(INFO) << "  socket " << socket.name; | 
|  | 328 | } | 
|  | 329 | for (const auto& file : files_) { | 
|  | 330 | LOG(INFO) << "  file " << file.name; | 
|  | 331 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 332 | } | 
|  | 333 |  | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 334 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 335 | Result<void> Service::ExecStart() { | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 336 | auto reboot_on_failure = make_scope_guard([this] { | 
|  | 337 | if (on_failure_reboot_target_) { | 
| Tom Cherry | 0dbfea7 | 2019-10-11 13:18:44 -0700 | [diff] [blame] | 338 | TriggerShutdown(*on_failure_reboot_target_); | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 339 | } | 
|  | 340 | }); | 
|  | 341 |  | 
| Jiyong Park | 80aa447 | 2018-11-12 12:08:41 +0900 | [diff] [blame] | 342 | if (is_updatable() && !ServiceList::GetInstance().IsServicesUpdated()) { | 
|  | 343 | // Don't delay the service for ExecStart() as the semantic is that | 
|  | 344 | // the caller might depend on the side effect of the execution. | 
|  | 345 | return Error() << "Cannot start an updatable service '" << name_ | 
|  | 346 | << "' before configs from APEXes are all loaded"; | 
|  | 347 | } | 
|  | 348 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 349 | flags_ |= SVC_ONESHOT; | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 350 |  | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 351 | if (auto result = Start(); !result) { | 
|  | 352 | return result; | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 353 | } | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 354 |  | 
|  | 355 | flags_ |= SVC_EXEC; | 
|  | 356 | is_exec_service_running_ = true; | 
|  | 357 |  | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 358 | LOG(INFO) << "SVC_EXEC service '" << name_ << "' pid " << pid_ << " (uid " << proc_attr_.uid | 
|  | 359 | << " gid " << proc_attr_.gid << "+" << proc_attr_.supp_gids.size() << " context " | 
| Wei Wang | 2c4ee75 | 2018-06-20 14:54:52 -0700 | [diff] [blame] | 360 | << (!seclabel_.empty() ? seclabel_ : "default") << ") started; waiting..."; | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 361 |  | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 362 | reboot_on_failure.Disable(); | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 363 | return {}; | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 364 | } | 
|  | 365 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 366 | Result<void> Service::Start() { | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 367 | auto reboot_on_failure = make_scope_guard([this] { | 
|  | 368 | if (on_failure_reboot_target_) { | 
| Tom Cherry | 0dbfea7 | 2019-10-11 13:18:44 -0700 | [diff] [blame] | 369 | TriggerShutdown(*on_failure_reboot_target_); | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 370 | } | 
|  | 371 | }); | 
|  | 372 |  | 
| Jiyong Park | 80aa447 | 2018-11-12 12:08:41 +0900 | [diff] [blame] | 373 | if (is_updatable() && !ServiceList::GetInstance().IsServicesUpdated()) { | 
|  | 374 | ServiceList::GetInstance().DelayService(*this); | 
|  | 375 | return Error() << "Cannot start an updatable service '" << name_ | 
|  | 376 | << "' before configs from APEXes are all loaded. " | 
|  | 377 | << "Queued for execution."; | 
|  | 378 | } | 
|  | 379 |  | 
| Tao Wu | 990d43c | 2017-10-26 10:43:10 -0700 | [diff] [blame] | 380 | bool disabled = (flags_ & (SVC_DISABLED | SVC_RESET)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 381 | // Starting a service removes it from the disabled or reset state and | 
|  | 382 | // immediately takes it out of the restarting state if it was in there. | 
|  | 383 | flags_ &= (~(SVC_DISABLED|SVC_RESTARTING|SVC_RESET|SVC_RESTART|SVC_DISABLED_START)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 384 |  | 
|  | 385 | // Running processes require no additional work --- if they're in the | 
|  | 386 | // process of exiting, we've ensured that they will immediately restart | 
| Tao Wu | 990d43c | 2017-10-26 10:43:10 -0700 | [diff] [blame] | 387 | // on exit, unless they are ONESHOT. For ONESHOT service, if it's in | 
|  | 388 | // stopping status, we just set SVC_RESTART flag so it will get restarted | 
|  | 389 | // in Reap(). | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 390 | if (flags_ & SVC_RUNNING) { | 
| Tao Wu | 990d43c | 2017-10-26 10:43:10 -0700 | [diff] [blame] | 391 | if ((flags_ & SVC_ONESHOT) && disabled) { | 
|  | 392 | flags_ |= SVC_RESTART; | 
|  | 393 | } | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 394 | // It is not an error to try to start a service that is already running. | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 395 | reboot_on_failure.Disable(); | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 396 | return {}; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 397 | } | 
|  | 398 |  | 
|  | 399 | bool needs_console = (flags_ & SVC_CONSOLE); | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 400 | if (needs_console) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 401 | if (proc_attr_.console.empty()) { | 
| Tom Cherry | ff88e30 | 2019-06-26 14:20:53 -0700 | [diff] [blame] | 402 | proc_attr_.console = "/dev/" + GetProperty("ro.boot.console", "console"); | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 403 | } | 
|  | 404 |  | 
| Adrian Salido | 24ef860 | 2016-12-20 15:52:15 -0800 | [diff] [blame] | 405 | // Make sure that open call succeeds to ensure a console driver is | 
|  | 406 | // properly registered for the device node | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 407 | int console_fd = open(proc_attr_.console.c_str(), O_RDWR | O_CLOEXEC); | 
| Adrian Salido | 24ef860 | 2016-12-20 15:52:15 -0800 | [diff] [blame] | 408 | if (console_fd < 0) { | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 409 | flags_ |= SVC_DISABLED; | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 410 | return ErrnoError() << "Couldn't open console '" << proc_attr_.console << "'"; | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 411 | } | 
| Adrian Salido | 24ef860 | 2016-12-20 15:52:15 -0800 | [diff] [blame] | 412 | close(console_fd); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 413 | } | 
|  | 414 |  | 
|  | 415 | struct stat sb; | 
|  | 416 | if (stat(args_[0].c_str(), &sb) == -1) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 417 | flags_ |= SVC_DISABLED; | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 418 | return ErrnoError() << "Cannot find '" << args_[0] << "'"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 419 | } | 
|  | 420 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 421 | std::string scon; | 
|  | 422 | if (!seclabel_.empty()) { | 
|  | 423 | scon = seclabel_; | 
|  | 424 | } else { | 
| Tom Cherry | aead51b | 2018-04-20 16:18:12 -0700 | [diff] [blame] | 425 | auto result = ComputeContextFromExecutable(args_[0]); | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 426 | if (!result) { | 
|  | 427 | return result.error(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 428 | } | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 429 | scon = *result; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 430 | } | 
|  | 431 |  | 
| Martin Stjernholm | cacf043 | 2019-08-21 18:34:31 +0100 | [diff] [blame] | 432 | if (!AreRuntimeApexesReady() && !pre_apexd_) { | 
|  | 433 | // If this service is started before the Runtime and ART APEXes get | 
|  | 434 | // available, mark it as pre-apexd one. Note that this marking is | 
|  | 435 | // permanent. So for example, if the service is re-launched (e.g., due | 
|  | 436 | // to crash), it is still recognized as pre-apexd... for consistency. | 
| Jiyong Park | 6866041 | 2019-01-16 23:00:59 +0900 | [diff] [blame] | 437 | pre_apexd_ = true; | 
|  | 438 | } | 
|  | 439 |  | 
| Martijn Coenen | 70788f9 | 2019-04-23 16:26:01 +0200 | [diff] [blame] | 440 | post_data_ = ServiceList::GetInstance().IsPostData(); | 
|  | 441 |  | 
| Wei Wang | a285dac | 2016-10-04 14:05:39 -0700 | [diff] [blame] | 442 | LOG(INFO) << "starting service '" << name_ << "'..."; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 443 |  | 
| Tom Cherry | 5241d10 | 2019-09-10 14:20:35 -0700 | [diff] [blame] | 444 | std::vector<Descriptor> descriptors; | 
|  | 445 | for (const auto& socket : sockets_) { | 
|  | 446 | if (auto result = socket.Create(scon)) { | 
|  | 447 | descriptors.emplace_back(std::move(*result)); | 
|  | 448 | } else { | 
|  | 449 | LOG(INFO) << "Could not create socket '" << socket.name << "': " << result.error(); | 
|  | 450 | } | 
|  | 451 | } | 
|  | 452 |  | 
|  | 453 | for (const auto& file : files_) { | 
|  | 454 | if (auto result = file.Create()) { | 
|  | 455 | descriptors.emplace_back(std::move(*result)); | 
|  | 456 | } else { | 
|  | 457 | LOG(INFO) << "Could not open file '" << file.name << "': " << result.error(); | 
|  | 458 | } | 
|  | 459 | } | 
|  | 460 |  | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 461 | pid_t pid = -1; | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 462 | if (namespaces_.flags) { | 
|  | 463 | pid = clone(nullptr, nullptr, namespaces_.flags | SIGCHLD, nullptr); | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 464 | } else { | 
|  | 465 | pid = fork(); | 
|  | 466 | } | 
|  | 467 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 468 | if (pid == 0) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 469 | umask(077); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 470 |  | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 471 | if (auto result = EnterNamespaces(namespaces_, name_, pre_apexd_); !result) { | 
|  | 472 | LOG(FATAL) << "Service '" << name_ | 
|  | 473 | << "' failed to set up namespaces: " << result.error(); | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 474 | } | 
|  | 475 |  | 
| Tom Cherry | 6de21f1 | 2017-08-22 15:41:03 -0700 | [diff] [blame] | 476 | for (const auto& [key, value] : environment_vars_) { | 
|  | 477 | setenv(key.c_str(), value.c_str(), 1); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 478 | } | 
|  | 479 |  | 
| Tom Cherry | 5241d10 | 2019-09-10 14:20:35 -0700 | [diff] [blame] | 480 | for (const auto& descriptor : descriptors) { | 
|  | 481 | descriptor.Publish(); | 
| Tom Cherry | 2e4c85f | 2019-07-09 13:33:36 -0700 | [diff] [blame] | 482 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 483 |  | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 484 | if (auto result = WritePidToFiles(&writepid_files_); !result) { | 
|  | 485 | LOG(ERROR) << "failed to write pid to files: " << result.error(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 486 | } | 
|  | 487 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 488 | // As requested, set our gid, supplemental gids, uid, context, and | 
|  | 489 | // priority. Aborts on failure. | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 490 | SetProcessAttributesAndCaps(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 491 |  | 
| Tom Cherry | 8f38048 | 2018-04-17 14:48:44 -0700 | [diff] [blame] | 492 | if (!ExpandArgsAndExecv(args_, sigstop_)) { | 
| Tom Cherry | 9328021 | 2019-09-26 15:24:40 -0700 | [diff] [blame] | 493 | PLOG(ERROR) << "cannot execv('" << args_[0] | 
|  | 494 | << "'). See the 'Debugging init' section of init's README.md for tips"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 495 | } | 
|  | 496 |  | 
|  | 497 | _exit(127); | 
|  | 498 | } | 
|  | 499 |  | 
|  | 500 | if (pid < 0) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 501 | pid_ = 0; | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 502 | return ErrnoError() << "Failed to fork"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 503 | } | 
|  | 504 |  | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 505 | if (oom_score_adjust_ != -1000) { | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 506 | std::string oom_str = std::to_string(oom_score_adjust_); | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 507 | std::string oom_file = StringPrintf("/proc/%d/oom_score_adj", pid); | 
|  | 508 | if (!WriteStringToFile(oom_str, oom_file)) { | 
| Elliott Hughes | 076305e | 2019-03-08 12:34:53 -0800 | [diff] [blame] | 509 | PLOG(ERROR) << "couldn't write oom_score_adj"; | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 510 | } | 
|  | 511 | } | 
|  | 512 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 513 | time_started_ = boot_clock::now(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 514 | pid_ = pid; | 
|  | 515 | flags_ |= SVC_RUNNING; | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 516 | start_order_ = next_start_order_++; | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 517 | process_cgroup_empty_ = false; | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 518 |  | 
| Peter Collingbourne | d7157c2 | 2018-10-30 15:49:33 -0700 | [diff] [blame] | 519 | bool use_memcg = swappiness_ != -1 || soft_limit_in_bytes_ != -1 || limit_in_bytes_ != -1 || | 
|  | 520 | limit_percent_ != -1 || !limit_property_.empty(); | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 521 | errno = -createProcessGroup(proc_attr_.uid, pid_, use_memcg); | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 522 | if (errno != 0) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 523 | PLOG(ERROR) << "createProcessGroup(" << proc_attr_.uid << ", " << pid_ | 
|  | 524 | << ") failed for service '" << name_ << "'"; | 
| Peter Collingbourne | d7157c2 | 2018-10-30 15:49:33 -0700 | [diff] [blame] | 525 | } else if (use_memcg) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 526 | if (swappiness_ != -1) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 527 | if (!setProcessGroupSwappiness(proc_attr_.uid, pid_, swappiness_)) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 528 | PLOG(ERROR) << "setProcessGroupSwappiness failed"; | 
|  | 529 | } | 
|  | 530 | } | 
|  | 531 |  | 
|  | 532 | if (soft_limit_in_bytes_ != -1) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 533 | if (!setProcessGroupSoftLimit(proc_attr_.uid, pid_, soft_limit_in_bytes_)) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 534 | PLOG(ERROR) << "setProcessGroupSoftLimit failed"; | 
|  | 535 | } | 
|  | 536 | } | 
|  | 537 |  | 
| Peter Collingbourne | d7157c2 | 2018-10-30 15:49:33 -0700 | [diff] [blame] | 538 | size_t computed_limit_in_bytes = limit_in_bytes_; | 
|  | 539 | if (limit_percent_ != -1) { | 
|  | 540 | long page_size = sysconf(_SC_PAGESIZE); | 
|  | 541 | long num_pages = sysconf(_SC_PHYS_PAGES); | 
|  | 542 | if (page_size > 0 && num_pages > 0) { | 
|  | 543 | size_t max_mem = SIZE_MAX; | 
|  | 544 | if (size_t(num_pages) < SIZE_MAX / size_t(page_size)) { | 
|  | 545 | max_mem = size_t(num_pages) * size_t(page_size); | 
|  | 546 | } | 
|  | 547 | computed_limit_in_bytes = | 
|  | 548 | std::min(computed_limit_in_bytes, max_mem / 100 * limit_percent_); | 
|  | 549 | } | 
|  | 550 | } | 
|  | 551 |  | 
|  | 552 | if (!limit_property_.empty()) { | 
|  | 553 | // This ends up overwriting computed_limit_in_bytes but only if the | 
|  | 554 | // property is defined. | 
|  | 555 | computed_limit_in_bytes = android::base::GetUintProperty( | 
|  | 556 | limit_property_, computed_limit_in_bytes, SIZE_MAX); | 
|  | 557 | } | 
|  | 558 |  | 
|  | 559 | if (computed_limit_in_bytes != size_t(-1)) { | 
| Vic Yang | e01ca4d | 2019-05-29 15:58:32 -0700 | [diff] [blame] | 560 | if (!setProcessGroupLimit(proc_attr_.uid, pid_, computed_limit_in_bytes)) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 561 | PLOG(ERROR) << "setProcessGroupLimit failed"; | 
|  | 562 | } | 
|  | 563 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 564 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 565 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 566 | NotifyStateChange("running"); | 
| Tom Cherry | 60971e6 | 2019-09-10 10:40:47 -0700 | [diff] [blame] | 567 | reboot_on_failure.Disable(); | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 568 | return {}; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 569 | } | 
|  | 570 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 571 | Result<void> Service::StartIfNotDisabled() { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 572 | if (!(flags_ & SVC_DISABLED)) { | 
|  | 573 | return Start(); | 
|  | 574 | } else { | 
|  | 575 | flags_ |= SVC_DISABLED_START; | 
|  | 576 | } | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 577 | return {}; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 578 | } | 
|  | 579 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 580 | Result<void> Service::Enable() { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 581 | flags_ &= ~(SVC_DISABLED | SVC_RC_DISABLED); | 
|  | 582 | if (flags_ & SVC_DISABLED_START) { | 
|  | 583 | return Start(); | 
|  | 584 | } | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 585 | return {}; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 586 | } | 
|  | 587 |  | 
|  | 588 | void Service::Reset() { | 
|  | 589 | StopOrReset(SVC_RESET); | 
|  | 590 | } | 
|  | 591 |  | 
| Martijn Coenen | 70788f9 | 2019-04-23 16:26:01 +0200 | [diff] [blame] | 592 | void Service::ResetIfPostData() { | 
|  | 593 | if (post_data_) { | 
| Martijn Coenen | acc45aa | 2019-05-15 22:04:13 +0200 | [diff] [blame] | 594 | if (flags_ & SVC_RUNNING) { | 
|  | 595 | running_at_post_data_reset_ = true; | 
|  | 596 | } | 
| Martijn Coenen | 70788f9 | 2019-04-23 16:26:01 +0200 | [diff] [blame] | 597 | StopOrReset(SVC_RESET); | 
|  | 598 | } | 
|  | 599 | } | 
|  | 600 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 601 | Result<void> Service::StartIfPostData() { | 
| Martijn Coenen | acc45aa | 2019-05-15 22:04:13 +0200 | [diff] [blame] | 602 | // Start the service, but only if it was started after /data was mounted, | 
|  | 603 | // and it was still running when we reset the post-data services. | 
|  | 604 | if (running_at_post_data_reset_) { | 
|  | 605 | return Start(); | 
|  | 606 | } | 
|  | 607 |  | 
| Tom Cherry | bbcbc2f | 2019-06-10 11:08:01 -0700 | [diff] [blame] | 608 | return {}; | 
| Martijn Coenen | acc45aa | 2019-05-15 22:04:13 +0200 | [diff] [blame] | 609 | } | 
|  | 610 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 611 | void Service::Stop() { | 
|  | 612 | StopOrReset(SVC_DISABLED); | 
|  | 613 | } | 
|  | 614 |  | 
| Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 615 | void Service::Terminate() { | 
|  | 616 | flags_ &= ~(SVC_RESTARTING | SVC_DISABLED_START); | 
|  | 617 | flags_ |= SVC_DISABLED; | 
|  | 618 | if (pid_) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 619 | KillProcessGroup(SIGTERM); | 
| Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 620 | NotifyStateChange("stopping"); | 
|  | 621 | } | 
|  | 622 | } | 
|  | 623 |  | 
| Tom Cherry | 73f535e | 2018-09-27 16:10:46 -0700 | [diff] [blame] | 624 | void Service::Timeout() { | 
|  | 625 | // All process state flags will be taken care of in Reap(), we really just want to kill the | 
|  | 626 | // process here when it times out.  Oneshot processes will transition to be disabled, and | 
|  | 627 | // all other processes will transition to be restarting. | 
|  | 628 | LOG(INFO) << "Service '" << name_ << "' expired its timeout of " << timeout_period_->count() | 
|  | 629 | << " seconds and will now be killed"; | 
|  | 630 | if (pid_) { | 
|  | 631 | KillProcessGroup(SIGKILL); | 
|  | 632 | NotifyStateChange("stopping"); | 
|  | 633 | } | 
|  | 634 | } | 
|  | 635 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 636 | void Service::Restart() { | 
|  | 637 | if (flags_ & SVC_RUNNING) { | 
|  | 638 | /* Stop, wait, then start the service. */ | 
|  | 639 | StopOrReset(SVC_RESTART); | 
|  | 640 | } else if (!(flags_ & SVC_RESTARTING)) { | 
|  | 641 | /* Just start the service since it's not running. */ | 
| Tom Cherry | 76af7e6 | 2017-08-22 16:13:59 -0700 | [diff] [blame] | 642 | if (auto result = Start(); !result) { | 
|  | 643 | LOG(ERROR) << "Could not restart '" << name_ << "': " << result.error(); | 
|  | 644 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 645 | } /* else: Service is restarting anyways. */ | 
|  | 646 | } | 
|  | 647 |  | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 648 | // The how field should be either SVC_DISABLED, SVC_RESET, or SVC_RESTART. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 649 | void Service::StopOrReset(int how) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 650 | // The service is still SVC_RUNNING until its process exits, but if it has | 
|  | 651 | // already exited it shoudn't attempt a restart yet. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 652 | flags_ &= ~(SVC_RESTARTING | SVC_DISABLED_START); | 
|  | 653 |  | 
|  | 654 | if ((how != SVC_DISABLED) && (how != SVC_RESET) && (how != SVC_RESTART)) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 655 | // An illegal flag: default to SVC_DISABLED. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 656 | how = SVC_DISABLED; | 
|  | 657 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 658 |  | 
|  | 659 | // If the service has not yet started, prevent it from auto-starting with its class. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 660 | if (how == SVC_RESET) { | 
|  | 661 | flags_ |= (flags_ & SVC_RC_DISABLED) ? SVC_DISABLED : SVC_RESET; | 
|  | 662 | } else { | 
|  | 663 | flags_ |= how; | 
|  | 664 | } | 
| Tao Wu | 84b856d | 2017-10-27 11:29:13 -0700 | [diff] [blame] | 665 | // Make sure it's in right status when a restart immediately follow a | 
|  | 666 | // stop/reset or vice versa. | 
|  | 667 | if (how == SVC_RESTART) { | 
|  | 668 | flags_ &= (~(SVC_DISABLED | SVC_RESET)); | 
|  | 669 | } else { | 
|  | 670 | flags_ &= (~SVC_RESTART); | 
|  | 671 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 672 |  | 
|  | 673 | if (pid_) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 674 | KillProcessGroup(SIGKILL); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 675 | NotifyStateChange("stopping"); | 
|  | 676 | } else { | 
|  | 677 | NotifyStateChange("stopped"); | 
|  | 678 | } | 
|  | 679 | } | 
|  | 680 |  | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 681 | Result<std::unique_ptr<Service>> Service::MakeTemporaryOneshotService( | 
|  | 682 | const std::vector<std::string>& args) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 683 | // Parse the arguments: exec [SECLABEL [UID [GID]*] --] COMMAND ARGS... | 
|  | 684 | // SECLABEL can be a - to denote default | 
|  | 685 | std::size_t command_arg = 1; | 
|  | 686 | for (std::size_t i = 1; i < args.size(); ++i) { | 
|  | 687 | if (args[i] == "--") { | 
|  | 688 | command_arg = i + 1; | 
|  | 689 | break; | 
|  | 690 | } | 
|  | 691 | } | 
|  | 692 | if (command_arg > 4 + NR_SVC_SUPP_GIDS) { | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 693 | return Error() << "exec called with too many supplementary group ids"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 694 | } | 
|  | 695 |  | 
|  | 696 | if (command_arg >= args.size()) { | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 697 | return Error() << "exec called without command"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 698 | } | 
|  | 699 | std::vector<std::string> str_args(args.begin() + command_arg, args.end()); | 
|  | 700 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 701 | static size_t exec_count = 0; | 
|  | 702 | exec_count++; | 
|  | 703 | std::string name = "exec " + std::to_string(exec_count) + " (" + Join(str_args, " ") + ")"; | 
| Tom Cherry | 86e31a8 | 2017-04-25 17:31:06 -0700 | [diff] [blame] | 704 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 705 | unsigned flags = SVC_ONESHOT | SVC_TEMPORARY; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 706 | unsigned namespace_flags = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 707 |  | 
|  | 708 | std::string seclabel = ""; | 
|  | 709 | if (command_arg > 2 && args[1] != "-") { | 
|  | 710 | seclabel = args[1]; | 
|  | 711 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 712 | Result<uid_t> uid = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 713 | if (command_arg > 3) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 714 | uid = DecodeUid(args[2]); | 
|  | 715 | if (!uid) { | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 716 | return Error() << "Unable to decode UID for '" << args[2] << "': " << uid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 717 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 718 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 719 | Result<gid_t> gid = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 720 | std::vector<gid_t> supp_gids; | 
|  | 721 | if (command_arg > 4) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 722 | gid = DecodeUid(args[3]); | 
|  | 723 | if (!gid) { | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 724 | return Error() << "Unable to decode GID for '" << args[3] << "': " << gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 725 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 726 | std::size_t nr_supp_gids = command_arg - 1 /* -- */ - 4 /* exec SECLABEL UID GID */; | 
|  | 727 | for (size_t i = 0; i < nr_supp_gids; ++i) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 728 | auto supp_gid = DecodeUid(args[4 + i]); | 
|  | 729 | if (!supp_gid) { | 
| Tom Cherry | 4772f1d | 2019-07-30 09:34:41 -0700 | [diff] [blame] | 730 | return Error() << "Unable to decode GID for '" << args[4 + i] | 
|  | 731 | << "': " << supp_gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 732 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 733 | supp_gids.push_back(*supp_gid); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 734 | } | 
|  | 735 | } | 
|  | 736 |  | 
| Tom Cherry | 1cd082d | 2019-02-06 10:45:56 -0800 | [diff] [blame] | 737 | return std::make_unique<Service>(name, flags, *uid, *gid, supp_gids, namespace_flags, seclabel, | 
|  | 738 | nullptr, str_args); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 739 | } | 
|  | 740 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 741 | }  // namespace init | 
|  | 742 | }  // namespace android |