| 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> | 
|  | 23 | #include <sys/mount.h> | 
|  | 24 | #include <sys/prctl.h> | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 25 | #include <sys/resource.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 26 | #include <sys/stat.h> | 
| Tom Cherry | f57c0bf | 2017-04-07 13:46:21 -0700 | [diff] [blame] | 27 | #include <sys/system_properties.h> | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 28 | #include <sys/time.h> | 
| Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 29 | #include <sys/wait.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 30 | #include <termios.h> | 
| Dan Albert | af9ba4d | 2015-08-11 16:37:04 -0700 | [diff] [blame] | 31 | #include <unistd.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 32 |  | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 33 | #include <android-base/file.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 34 | #include <android-base/logging.h> | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 35 | #include <android-base/parseint.h> | 
| Tom Cherry | ccf2353 | 2017-03-28 16:40:41 -0700 | [diff] [blame] | 36 | #include <android-base/properties.h> | 
| Tom Cherry | 8d13d80 | 2017-06-29 16:18:08 -0700 | [diff] [blame] | 37 | #include <android-base/scopeguard.h> | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 38 | #include <android-base/stringprintf.h> | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 39 | #include <android-base/strings.h> | 
| Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 40 | #include <processgroup/processgroup.h> | 
|  | 41 | #include <selinux/selinux.h> | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 42 | #include <system/thread_defs.h> | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 43 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 44 | #include "init.h" | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 45 | #include "property_service.h" | 
|  | 46 | #include "util.h" | 
|  | 47 |  | 
| James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 48 | using android::base::boot_clock; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 49 | using android::base::GetProperty; | 
|  | 50 | using android::base::Join; | 
| Tom Cherry | 8d13d80 | 2017-06-29 16:18:08 -0700 | [diff] [blame] | 51 | using android::base::make_scope_guard; | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 52 | using android::base::ParseInt; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 53 | using android::base::StartsWith; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 54 | using android::base::StringPrintf; | 
|  | 55 | using android::base::WriteStringToFile; | 
|  | 56 |  | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 57 | namespace android { | 
|  | 58 | namespace init { | 
|  | 59 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 60 | static std::string ComputeContextFromExecutable(std::string& service_name, | 
|  | 61 | const std::string& service_path) { | 
|  | 62 | std::string computed_context; | 
|  | 63 |  | 
|  | 64 | char* raw_con = nullptr; | 
|  | 65 | char* raw_filecon = nullptr; | 
|  | 66 |  | 
|  | 67 | if (getcon(&raw_con) == -1) { | 
|  | 68 | LOG(ERROR) << "could not get context while starting '" << service_name << "'"; | 
|  | 69 | return ""; | 
|  | 70 | } | 
|  | 71 | std::unique_ptr<char> mycon(raw_con); | 
|  | 72 |  | 
|  | 73 | if (getfilecon(service_path.c_str(), &raw_filecon) == -1) { | 
|  | 74 | LOG(ERROR) << "could not get file context while starting '" << service_name << "'"; | 
|  | 75 | return ""; | 
|  | 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()) { | 
|  | 87 | LOG(ERROR) << "service " << service_name << " does not have a SELinux domain defined"; | 
|  | 88 | return ""; | 
|  | 89 | } | 
|  | 90 | if (rc < 0) { | 
|  | 91 | LOG(ERROR) << "could not get context while starting '" << service_name << "'"; | 
|  | 92 | return ""; | 
|  | 93 | } | 
|  | 94 | return computed_context; | 
|  | 95 | } | 
|  | 96 |  | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 97 | static void SetUpPidNamespace(const std::string& service_name) { | 
|  | 98 | constexpr unsigned int kSafeFlags = MS_NODEV | MS_NOEXEC | MS_NOSUID; | 
|  | 99 |  | 
|  | 100 | // It's OK to LOG(FATAL) in this function since it's running in the first | 
|  | 101 | // child process. | 
|  | 102 | if (mount("", "/proc", "proc", kSafeFlags | MS_REMOUNT, "") == -1) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 103 | PLOG(FATAL) << "couldn't remount(/proc) for " << service_name; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 104 | } | 
|  | 105 |  | 
|  | 106 | if (prctl(PR_SET_NAME, service_name.c_str()) == -1) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 107 | PLOG(FATAL) << "couldn't set name for " << service_name; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 108 | } | 
|  | 109 |  | 
|  | 110 | pid_t child_pid = fork(); | 
|  | 111 | if (child_pid == -1) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 112 | PLOG(FATAL) << "couldn't fork init inside the PID namespace for " << service_name; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 113 | } | 
|  | 114 |  | 
|  | 115 | if (child_pid > 0) { | 
|  | 116 | // So that we exit with the right status. | 
|  | 117 | static int init_exitstatus = 0; | 
|  | 118 | signal(SIGTERM, [](int) { _exit(init_exitstatus); }); | 
|  | 119 |  | 
|  | 120 | pid_t waited_pid; | 
|  | 121 | int status; | 
|  | 122 | while ((waited_pid = wait(&status)) > 0) { | 
|  | 123 | // This loop will end when there are no processes left inside the | 
|  | 124 | // PID namespace or when the init process inside the PID namespace | 
|  | 125 | // gets a signal. | 
|  | 126 | if (waited_pid == child_pid) { | 
|  | 127 | init_exitstatus = status; | 
|  | 128 | } | 
|  | 129 | } | 
|  | 130 | if (!WIFEXITED(init_exitstatus)) { | 
|  | 131 | _exit(EXIT_FAILURE); | 
|  | 132 | } | 
|  | 133 | _exit(WEXITSTATUS(init_exitstatus)); | 
|  | 134 | } | 
|  | 135 | } | 
|  | 136 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 137 | static void ExpandArgs(const std::vector<std::string>& args, std::vector<char*>* strs) { | 
|  | 138 | std::vector<std::string> expanded_args; | 
|  | 139 | expanded_args.resize(args.size()); | 
|  | 140 | strs->push_back(const_cast<char*>(args[0].c_str())); | 
|  | 141 | for (std::size_t i = 1; i < args.size(); ++i) { | 
|  | 142 | if (!expand_props(args[i], &expanded_args[i])) { | 
|  | 143 | LOG(FATAL) << args[0] << ": cannot expand '" << args[i] << "'"; | 
|  | 144 | } | 
|  | 145 | strs->push_back(const_cast<char*>(expanded_args[i].c_str())); | 
|  | 146 | } | 
|  | 147 | strs->push_back(nullptr); | 
|  | 148 | } | 
|  | 149 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 150 | ServiceEnvironmentInfo::ServiceEnvironmentInfo() { | 
|  | 151 | } | 
|  | 152 |  | 
|  | 153 | ServiceEnvironmentInfo::ServiceEnvironmentInfo(const std::string& name, | 
|  | 154 | const std::string& value) | 
|  | 155 | : name(name), value(value) { | 
|  | 156 | } | 
|  | 157 |  | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 158 | unsigned long Service::next_start_order_ = 1; | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 159 | bool Service::is_exec_service_running_ = false; | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 160 |  | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 161 | Service::Service(const std::string& name, const std::vector<std::string>& args) | 
| Tom Cherry | 5d17d04 | 2017-07-21 12:42:07 -0700 | [diff] [blame] | 162 | : Service(name, 0, 0, 0, {}, 0, 0, "", args) {} | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 163 |  | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 164 | Service::Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, | 
|  | 165 | const std::vector<gid_t>& supp_gids, const CapSet& capabilities, | 
|  | 166 | unsigned namespace_flags, const std::string& seclabel, | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 167 | const std::vector<std::string>& args) | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 168 | : name_(name), | 
|  | 169 | classnames_({"default"}), | 
|  | 170 | flags_(flags), | 
|  | 171 | pid_(0), | 
|  | 172 | crash_count_(0), | 
|  | 173 | uid_(uid), | 
|  | 174 | gid_(gid), | 
|  | 175 | supp_gids_(supp_gids), | 
|  | 176 | capabilities_(capabilities), | 
|  | 177 | namespace_flags_(namespace_flags), | 
|  | 178 | seclabel_(seclabel), | 
| Tom Cherry | 012c573 | 2017-04-18 13:21:54 -0700 | [diff] [blame] | 179 | onrestart_(false, "<Service '" + name + "' onrestart>", 0), | 
| Tom Cherry | 7da5485 | 2017-05-01 14:16:41 -0700 | [diff] [blame] | 180 | keychord_id_(0), | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 181 | ioprio_class_(IoSchedClass_NONE), | 
|  | 182 | ioprio_pri_(0), | 
|  | 183 | priority_(0), | 
|  | 184 | oom_score_adjust_(-1000), | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 185 | swappiness_(-1), | 
|  | 186 | soft_limit_in_bytes_(-1), | 
|  | 187 | limit_in_bytes_(-1), | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 188 | start_order_(0), | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 189 | args_(args) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 190 | onrestart_.InitSingleTrigger("onrestart"); | 
|  | 191 | } | 
|  | 192 |  | 
|  | 193 | void Service::NotifyStateChange(const std::string& new_state) const { | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 194 | if ((flags_ & SVC_TEMPORARY) != 0) { | 
|  | 195 | // 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] | 196 | return; | 
|  | 197 | } | 
|  | 198 |  | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 199 | std::string prop_name = "init.svc." + name_; | 
|  | 200 | property_set(prop_name, new_state); | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 201 |  | 
|  | 202 | if (new_state == "running") { | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 203 | uint64_t start_ns = time_started_.time_since_epoch().count(); | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 204 | property_set("ro.boottime." + name_, std::to_string(start_ns)); | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 205 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 206 | } | 
|  | 207 |  | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 208 | void Service::KillProcessGroup(int signal) { | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 209 | // If we've already seen a successful result from killProcessGroup*(), then we have removed | 
|  | 210 | // the cgroup already and calling these functions a second time will simply result in an error. | 
|  | 211 | // This is true regardless of which signal was sent. | 
|  | 212 | // These functions handle their own logging, so no additional logging is needed. | 
|  | 213 | if (!process_cgroup_empty_) { | 
|  | 214 | LOG(INFO) << "Sending signal " << signal << " to service '" << name_ << "' (pid " << pid_ | 
|  | 215 | << ") process group..."; | 
|  | 216 | int r; | 
|  | 217 | if (signal == SIGTERM) { | 
|  | 218 | r = killProcessGroupOnce(uid_, pid_, signal); | 
|  | 219 | } else { | 
|  | 220 | r = killProcessGroup(uid_, pid_, signal); | 
|  | 221 | } | 
|  | 222 |  | 
|  | 223 | if (r == 0) process_cgroup_empty_ = true; | 
|  | 224 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 225 | } | 
|  | 226 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 227 | void Service::SetProcessAttributes() { | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 228 | // Keep capabilites on uid change. | 
|  | 229 | if (capabilities_.any() && uid_) { | 
| Luis Hector Chavez | f596551 | 2017-06-30 14:04:20 -0700 | [diff] [blame] | 230 | // If Android is running in a container, some securebits might already | 
|  | 231 | // be locked, so don't change those. | 
| Ben Fennema | a724360 | 2017-07-25 14:37:21 -0700 | [diff] [blame] | 232 | unsigned long securebits = prctl(PR_GET_SECUREBITS); | 
|  | 233 | if (securebits == -1UL) { | 
| Luis Hector Chavez | f596551 | 2017-06-30 14:04:20 -0700 | [diff] [blame] | 234 | PLOG(FATAL) << "prctl(PR_GET_SECUREBITS) failed for " << name_; | 
|  | 235 | } | 
|  | 236 | securebits |= SECBIT_KEEP_CAPS | SECBIT_KEEP_CAPS_LOCKED; | 
|  | 237 | if (prctl(PR_SET_SECUREBITS, securebits) != 0) { | 
|  | 238 | PLOG(FATAL) << "prctl(PR_SET_SECUREBITS) failed for " << name_; | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 239 | } | 
|  | 240 | } | 
|  | 241 |  | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 242 | // TODO: work out why this fails for `console` then upgrade to FATAL. | 
|  | 243 | if (setpgid(0, getpid()) == -1) PLOG(ERROR) << "setpgid failed for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 244 |  | 
|  | 245 | if (gid_) { | 
|  | 246 | if (setgid(gid_) != 0) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 247 | PLOG(FATAL) << "setgid failed for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 248 | } | 
|  | 249 | } | 
| Nick Kralevich | 80960d2 | 2016-10-29 12:20:00 -0700 | [diff] [blame] | 250 | if (setgroups(supp_gids_.size(), &supp_gids_[0]) != 0) { | 
|  | 251 | PLOG(FATAL) << "setgroups failed for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 252 | } | 
|  | 253 | if (uid_) { | 
|  | 254 | if (setuid(uid_) != 0) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 255 | PLOG(FATAL) << "setuid failed for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 256 | } | 
|  | 257 | } | 
|  | 258 | if (!seclabel_.empty()) { | 
|  | 259 | if (setexeccon(seclabel_.c_str()) < 0) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 260 | PLOG(FATAL) << "cannot setexeccon('" << seclabel_ << "') for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 261 | } | 
|  | 262 | } | 
|  | 263 | if (priority_ != 0) { | 
|  | 264 | if (setpriority(PRIO_PROCESS, 0, priority_) != 0) { | 
| Elliott Hughes | e18e7e5 | 2016-07-25 18:18:16 -0700 | [diff] [blame] | 265 | PLOG(FATAL) << "setpriority failed for " << name_; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 266 | } | 
|  | 267 | } | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 268 | if (capabilities_.any()) { | 
|  | 269 | if (!SetCapsForExec(capabilities_)) { | 
|  | 270 | LOG(FATAL) << "cannot set capabilities for " << name_; | 
|  | 271 | } | 
|  | 272 | } | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 273 | } | 
|  | 274 |  | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 275 | void Service::Reap() { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 276 | if (!(flags_ & SVC_ONESHOT) || (flags_ & SVC_RESTART)) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 277 | KillProcessGroup(SIGKILL); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 278 | } | 
|  | 279 |  | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 280 | // Remove any descriptor resources we may have created. | 
|  | 281 | std::for_each(descriptors_.begin(), descriptors_.end(), | 
|  | 282 | std::bind(&DescriptorInfo::Clean, std::placeholders::_1)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 283 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 284 | if (flags_ & SVC_EXEC) UnSetExec(); | 
|  | 285 |  | 
|  | 286 | if (flags_ & SVC_TEMPORARY) return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 287 |  | 
|  | 288 | pid_ = 0; | 
|  | 289 | flags_ &= (~SVC_RUNNING); | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 290 | start_order_ = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 291 |  | 
|  | 292 | // Oneshot processes go into the disabled state on exit, | 
|  | 293 | // except when manually restarted. | 
|  | 294 | if ((flags_ & SVC_ONESHOT) && !(flags_ & SVC_RESTART)) { | 
|  | 295 | flags_ |= SVC_DISABLED; | 
|  | 296 | } | 
|  | 297 |  | 
|  | 298 | // Disabled and reset processes do not get restarted automatically. | 
|  | 299 | if (flags_ & (SVC_DISABLED | SVC_RESET))  { | 
|  | 300 | NotifyStateChange("stopped"); | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 301 | return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 302 | } | 
|  | 303 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 304 | // If we crash > 4 times in 4 minutes, reboot into recovery. | 
|  | 305 | boot_clock::time_point now = boot_clock::now(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 306 | if ((flags_ & SVC_CRITICAL) && !(flags_ & SVC_RESTART)) { | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 307 | if (now < time_crashed_ + 4min) { | 
|  | 308 | if (++crash_count_ > 4) { | 
| Elliott Hughes | 331cf2f | 2016-11-29 19:20:58 +0000 | [diff] [blame] | 309 | LOG(ERROR) << "critical process '" << name_ << "' exited 4 times in 4 minutes"; | 
|  | 310 | panic(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 311 | } | 
|  | 312 | } else { | 
|  | 313 | time_crashed_ = now; | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 314 | crash_count_ = 1; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 315 | } | 
|  | 316 | } | 
|  | 317 |  | 
|  | 318 | flags_ &= (~SVC_RESTART); | 
|  | 319 | flags_ |= SVC_RESTARTING; | 
|  | 320 |  | 
|  | 321 | // Execute all onrestart commands for this service. | 
|  | 322 | onrestart_.ExecuteAllCommands(); | 
|  | 323 |  | 
|  | 324 | NotifyStateChange("restarting"); | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 325 | return; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 326 | } | 
|  | 327 |  | 
|  | 328 | void Service::DumpState() const { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 329 | LOG(INFO) << "service " << name_; | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 330 | LOG(INFO) << "  class '" << Join(classnames_, " ") << "'"; | 
|  | 331 | LOG(INFO) << "  exec " << Join(args_, " "); | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 332 | std::for_each(descriptors_.begin(), descriptors_.end(), | 
|  | 333 | [] (const auto& info) { LOG(INFO) << *info; }); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 334 | } | 
|  | 335 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 336 | Result<Success> Service::ParseCapabilities(const std::vector<std::string>& args) { | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 337 | capabilities_ = 0; | 
|  | 338 |  | 
| Jorge Lucangeli Obes | f3f824e | 2016-12-15 12:13:38 -0500 | [diff] [blame] | 339 | if (!CapAmbientSupported()) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 340 | return Error() | 
|  | 341 | << "capabilities requested but the kernel does not support ambient capabilities"; | 
| Jorge Lucangeli Obes | f3f824e | 2016-12-15 12:13:38 -0500 | [diff] [blame] | 342 | } | 
|  | 343 |  | 
|  | 344 | unsigned int last_valid_cap = GetLastValidCap(); | 
|  | 345 | if (last_valid_cap >= capabilities_.size()) { | 
|  | 346 | LOG(WARNING) << "last valid run-time capability is larger than CAP_LAST_CAP"; | 
|  | 347 | } | 
|  | 348 |  | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 349 | for (size_t i = 1; i < args.size(); i++) { | 
|  | 350 | const std::string& arg = args[i]; | 
| Jorge Lucangeli Obes | f3f824e | 2016-12-15 12:13:38 -0500 | [diff] [blame] | 351 | int res = LookupCap(arg); | 
|  | 352 | if (res < 0) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 353 | return Error() << StringPrintf("invalid capability '%s'", arg.c_str()); | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 354 | } | 
| Jorge Lucangeli Obes | f3f824e | 2016-12-15 12:13:38 -0500 | [diff] [blame] | 355 | unsigned int cap = static_cast<unsigned int>(res);  // |res| is >= 0. | 
|  | 356 | if (cap > last_valid_cap) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 357 | return Error() << StringPrintf("capability '%s' not supported by the kernel", | 
|  | 358 | arg.c_str()); | 
| Jorge Lucangeli Obes | f3f824e | 2016-12-15 12:13:38 -0500 | [diff] [blame] | 359 | } | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 360 | capabilities_[cap] = true; | 
|  | 361 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 362 | return Success(); | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 363 | } | 
|  | 364 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 365 | Result<Success> Service::ParseClass(const std::vector<std::string>& args) { | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 366 | classnames_ = std::set<std::string>(args.begin() + 1, args.end()); | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 367 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 368 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 369 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 370 | Result<Success> Service::ParseConsole(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 371 | flags_ |= SVC_CONSOLE; | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 372 | console_ = args.size() > 1 ? "/dev/" + args[1] : ""; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 373 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 374 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 375 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 376 | Result<Success> Service::ParseCritical(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 377 | flags_ |= SVC_CRITICAL; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 378 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 379 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 380 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 381 | Result<Success> Service::ParseDisabled(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 382 | flags_ |= SVC_DISABLED; | 
|  | 383 | flags_ |= SVC_RC_DISABLED; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 384 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 385 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 386 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 387 | Result<Success> Service::ParseGroup(const std::vector<std::string>& args) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 388 | auto gid = DecodeUid(args[1]); | 
|  | 389 | if (!gid) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 390 | return Error() << "Unable to decode GID for '" << args[1] << "': " << gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 391 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 392 | gid_ = *gid; | 
|  | 393 |  | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 394 | for (std::size_t n = 2; n < args.size(); n++) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 395 | gid = DecodeUid(args[n]); | 
|  | 396 | if (!gid) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 397 | return Error() << "Unable to decode GID for '" << args[n] << "': " << gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 398 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 399 | supp_gids_.emplace_back(*gid); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 400 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 401 | return Success(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 402 | } | 
|  | 403 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 404 | Result<Success> Service::ParsePriority(const std::vector<std::string>& args) { | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 405 | priority_ = 0; | 
|  | 406 | if (!ParseInt(args[1], &priority_, | 
| Keun-young Park | dd34ca4 | 2016-11-11 18:06:31 -0800 | [diff] [blame] | 407 | static_cast<int>(ANDROID_PRIORITY_HIGHEST), // highest is negative | 
|  | 408 | static_cast<int>(ANDROID_PRIORITY_LOWEST))) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 409 | return Error() << StringPrintf("process priority value must be range %d - %d", | 
|  | 410 | ANDROID_PRIORITY_HIGHEST, ANDROID_PRIORITY_LOWEST); | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 411 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 412 | return Success(); | 
| Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 413 | } | 
|  | 414 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 415 | Result<Success> Service::ParseIoprio(const std::vector<std::string>& args) { | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 416 | if (!ParseInt(args[2], &ioprio_pri_, 0, 7)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 417 | return Error() << "priority value must be range 0 - 7"; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 418 | } | 
|  | 419 |  | 
|  | 420 | if (args[1] == "rt") { | 
|  | 421 | ioprio_class_ = IoSchedClass_RT; | 
|  | 422 | } else if (args[1] == "be") { | 
|  | 423 | ioprio_class_ = IoSchedClass_BE; | 
|  | 424 | } else if (args[1] == "idle") { | 
|  | 425 | ioprio_class_ = IoSchedClass_IDLE; | 
|  | 426 | } else { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 427 | return Error() << "ioprio option usage: ioprio <rt|be|idle> <0-7>"; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 428 | } | 
|  | 429 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 430 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 431 | } | 
|  | 432 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 433 | Result<Success> Service::ParseKeycodes(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 434 | for (std::size_t i = 1; i < args.size(); i++) { | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 435 | int code; | 
|  | 436 | if (ParseInt(args[i], &code)) { | 
|  | 437 | keycodes_.emplace_back(code); | 
|  | 438 | } else { | 
|  | 439 | LOG(WARNING) << "ignoring invalid keycode: " << args[i]; | 
|  | 440 | } | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 441 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 442 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 443 | } | 
|  | 444 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 445 | Result<Success> Service::ParseOneshot(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 446 | flags_ |= SVC_ONESHOT; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 447 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 448 | } | 
|  | 449 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 450 | Result<Success> Service::ParseOnrestart(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 451 | std::vector<std::string> str_args(args.begin() + 1, args.end()); | 
| Tom Cherry | 012c573 | 2017-04-18 13:21:54 -0700 | [diff] [blame] | 452 | int line = onrestart_.NumCommands() + 1; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 453 | if (auto result = onrestart_.AddCommand(str_args, line); !result) { | 
|  | 454 | return Error() << "cannot add Onrestart command: " << result.error(); | 
|  | 455 | } | 
|  | 456 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 457 | } | 
|  | 458 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 459 | Result<Success> Service::ParseNamespace(const std::vector<std::string>& args) { | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 460 | for (size_t i = 1; i < args.size(); i++) { | 
|  | 461 | if (args[i] == "pid") { | 
|  | 462 | namespace_flags_ |= CLONE_NEWPID; | 
|  | 463 | // PID namespaces require mount namespaces. | 
|  | 464 | namespace_flags_ |= CLONE_NEWNS; | 
|  | 465 | } else if (args[i] == "mnt") { | 
|  | 466 | namespace_flags_ |= CLONE_NEWNS; | 
|  | 467 | } else { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 468 | return Error() << "namespace must be 'pid' or 'mnt'"; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 469 | } | 
|  | 470 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 471 | return Success(); | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 472 | } | 
|  | 473 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 474 | Result<Success> Service::ParseOomScoreAdjust(const std::vector<std::string>& args) { | 
| Elliott Hughes | da46b39 | 2016-10-11 17:09:00 -0700 | [diff] [blame] | 475 | if (!ParseInt(args[1], &oom_score_adjust_, -1000, 1000)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 476 | return Error() << "oom_score_adjust value must be in range -1000 - +1000"; | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 477 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 478 | return Success(); | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 479 | } | 
|  | 480 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 481 | Result<Success> Service::ParseMemcgSwappiness(const std::vector<std::string>& args) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 482 | if (!ParseInt(args[1], &swappiness_, 0)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 483 | return Error() << "swappiness value must be equal or greater than 0"; | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 484 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 485 | return Success(); | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 486 | } | 
|  | 487 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 488 | Result<Success> Service::ParseMemcgLimitInBytes(const std::vector<std::string>& args) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 489 | if (!ParseInt(args[1], &limit_in_bytes_, 0)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 490 | return Error() << "limit_in_bytes value must be equal or greater than 0"; | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 491 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 492 | return Success(); | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 493 | } | 
|  | 494 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 495 | Result<Success> Service::ParseMemcgSoftLimitInBytes(const std::vector<std::string>& args) { | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 496 | if (!ParseInt(args[1], &soft_limit_in_bytes_, 0)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 497 | return Error() << "soft_limit_in_bytes value must be equal or greater than 0"; | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 498 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 499 | return Success(); | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 500 | } | 
|  | 501 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 502 | Result<Success> Service::ParseSeclabel(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 503 | seclabel_ = args[1]; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 504 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 505 | } | 
|  | 506 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 507 | Result<Success> Service::ParseSetenv(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 508 | envvars_.emplace_back(args[1], args[2]); | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 509 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 510 | } | 
|  | 511 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 512 | Result<Success> Service::ParseShutdown(const std::vector<std::string>& args) { | 
| Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 513 | if (args[1] == "critical") { | 
|  | 514 | flags_ |= SVC_SHUTDOWN_CRITICAL; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 515 | return Success(); | 
| Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 516 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 517 | return Error() << "Invalid shutdown option"; | 
| Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 518 | } | 
|  | 519 |  | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 520 | template <typename T> | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 521 | Result<Success> Service::AddDescriptor(const std::vector<std::string>& args) { | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 522 | int perm = args.size() > 3 ? std::strtoul(args[3].c_str(), 0, 8) : -1; | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 523 | Result<uid_t> uid = 0; | 
|  | 524 | Result<gid_t> gid = 0; | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 525 | std::string context = args.size() > 6 ? args[6] : ""; | 
|  | 526 |  | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 527 | if (args.size() > 4) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 528 | uid = DecodeUid(args[4]); | 
|  | 529 | if (!uid) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 530 | return Error() << "Unable to find UID for '" << args[4] << "': " << uid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 531 | } | 
|  | 532 | } | 
|  | 533 |  | 
|  | 534 | if (args.size() > 5) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 535 | gid = DecodeUid(args[5]); | 
|  | 536 | if (!gid) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 537 | return Error() << "Unable to find GID for '" << args[5] << "': " << gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 538 | } | 
|  | 539 | } | 
|  | 540 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 541 | auto descriptor = std::make_unique<T>(args[1], args[2], *uid, *gid, perm, context); | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 542 |  | 
|  | 543 | auto old = | 
|  | 544 | std::find_if(descriptors_.begin(), descriptors_.end(), | 
|  | 545 | [&descriptor] (const auto& other) { return descriptor.get() == other.get(); }); | 
|  | 546 |  | 
|  | 547 | if (old != descriptors_.end()) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 548 | return Error() << "duplicate descriptor " << args[1] << " " << args[2]; | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 549 | } | 
|  | 550 |  | 
|  | 551 | descriptors_.emplace_back(std::move(descriptor)); | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 552 | return Success(); | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 553 | } | 
|  | 554 |  | 
|  | 555 | // name type perm [ uid gid context ] | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 556 | Result<Success> Service::ParseSocket(const std::vector<std::string>& args) { | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 557 | if (!StartsWith(args[2], "dgram") && !StartsWith(args[2], "stream") && | 
|  | 558 | !StartsWith(args[2], "seqpacket")) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 559 | return Error() << "socket type must be 'dgram', 'stream' or 'seqpacket'"; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 560 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 561 | return AddDescriptor<SocketInfo>(args); | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 562 | } | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 563 |  | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 564 | // name type perm [ uid gid context ] | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 565 | Result<Success> Service::ParseFile(const std::vector<std::string>& args) { | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 566 | if (args[2] != "r" && args[2] != "w" && args[2] != "rw") { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 567 | return Error() << "file type must be 'r', 'w' or 'rw'"; | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 568 | } | 
|  | 569 | if ((args[1][0] != '/') || (args[1].find("../") != std::string::npos)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 570 | return Error() << "file name must not be relative"; | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 571 | } | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 572 | return AddDescriptor<FileInfo>(args); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 573 | } | 
|  | 574 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 575 | Result<Success> Service::ParseUser(const std::vector<std::string>& args) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 576 | auto uid = DecodeUid(args[1]); | 
|  | 577 | if (!uid) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 578 | return Error() << "Unable to find UID for '" << args[1] << "': " << uid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 579 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 580 | uid_ = *uid; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 581 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 582 | } | 
|  | 583 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 584 | Result<Success> Service::ParseWritepid(const std::vector<std::string>& args) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 585 | writepid_files_.assign(args.begin() + 1, args.end()); | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 586 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 587 | } | 
|  | 588 |  | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 589 | class Service::OptionParserMap : public KeywordMap<OptionParser> { | 
| Tom Cherry | ad54d09 | 2017-04-19 16:18:50 -0700 | [diff] [blame] | 590 | public: | 
|  | 591 | OptionParserMap() {} | 
|  | 592 |  | 
|  | 593 | private: | 
|  | 594 | const Map& map() const override; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 595 | }; | 
|  | 596 |  | 
| Tom Cherry | ad54d09 | 2017-04-19 16:18:50 -0700 | [diff] [blame] | 597 | const Service::OptionParserMap::Map& Service::OptionParserMap::map() const { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 598 | constexpr std::size_t kMax = std::numeric_limits<std::size_t>::max(); | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 599 | // clang-format off | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 600 | static const Map option_parsers = { | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 601 | {"capabilities", | 
|  | 602 | {1,     kMax, &Service::ParseCapabilities}}, | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 603 | {"class",       {1,     kMax, &Service::ParseClass}}, | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 604 | {"console",     {0,     1,    &Service::ParseConsole}}, | 
|  | 605 | {"critical",    {0,     0,    &Service::ParseCritical}}, | 
|  | 606 | {"disabled",    {0,     0,    &Service::ParseDisabled}}, | 
|  | 607 | {"group",       {1,     NR_SVC_SUPP_GIDS + 1, &Service::ParseGroup}}, | 
|  | 608 | {"ioprio",      {2,     2,    &Service::ParseIoprio}}, | 
|  | 609 | {"priority",    {1,     1,    &Service::ParsePriority}}, | 
|  | 610 | {"keycodes",    {1,     kMax, &Service::ParseKeycodes}}, | 
|  | 611 | {"oneshot",     {0,     0,    &Service::ParseOneshot}}, | 
|  | 612 | {"onrestart",   {1,     kMax, &Service::ParseOnrestart}}, | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 613 | {"oom_score_adjust", | 
|  | 614 | {1,     1,    &Service::ParseOomScoreAdjust}}, | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 615 | {"memcg.swappiness", | 
|  | 616 | {1,     1,    &Service::ParseMemcgSwappiness}}, | 
|  | 617 | {"memcg.soft_limit_in_bytes", | 
|  | 618 | {1,     1,    &Service::ParseMemcgSoftLimitInBytes}}, | 
|  | 619 | {"memcg.limit_in_bytes", | 
|  | 620 | {1,     1,    &Service::ParseMemcgLimitInBytes}}, | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 621 | {"namespace",   {1,     2,    &Service::ParseNamespace}}, | 
|  | 622 | {"seclabel",    {1,     1,    &Service::ParseSeclabel}}, | 
|  | 623 | {"setenv",      {2,     2,    &Service::ParseSetenv}}, | 
| Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 624 | {"shutdown",    {1,     1,    &Service::ParseShutdown}}, | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 625 | {"socket",      {3,     6,    &Service::ParseSocket}}, | 
| Mark Salyzyn | 978fd0e | 2016-12-02 08:05:22 -0800 | [diff] [blame] | 626 | {"file",        {2,     2,    &Service::ParseFile}}, | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 627 | {"user",        {1,     1,    &Service::ParseUser}}, | 
|  | 628 | {"writepid",    {1,     kMax, &Service::ParseWritepid}}, | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 629 | }; | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 630 | // clang-format on | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 631 | return option_parsers; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 632 | } | 
|  | 633 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 634 | Result<Success> Service::ParseLine(const std::vector<std::string>& args) { | 
| Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 635 | static const OptionParserMap parser_map; | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 636 | auto parser = parser_map.FindFunction(args); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 637 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 638 | if (!parser) return Error() << parser.error(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 639 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 640 | return std::invoke(*parser, this, args); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 641 | } | 
|  | 642 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 643 | bool Service::ExecStart() { | 
|  | 644 | flags_ |= SVC_ONESHOT; | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 645 |  | 
|  | 646 | if (!Start()) { | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 647 | return false; | 
|  | 648 | } | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 649 |  | 
|  | 650 | flags_ |= SVC_EXEC; | 
|  | 651 | is_exec_service_running_ = true; | 
|  | 652 |  | 
|  | 653 | LOG(INFO) << "SVC_EXEC pid " << pid_ << " (uid " << uid_ << " gid " << gid_ << "+" | 
|  | 654 | << supp_gids_.size() << " context " << (!seclabel_.empty() ? seclabel_ : "default") | 
|  | 655 | << ") started; waiting..."; | 
|  | 656 |  | 
| Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 657 | return true; | 
|  | 658 | } | 
|  | 659 |  | 
| Elliott Hughes | bdeac39 | 2016-04-12 15:38:27 -0700 | [diff] [blame] | 660 | bool Service::Start() { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 661 | // Starting a service removes it from the disabled or reset state and | 
|  | 662 | // immediately takes it out of the restarting state if it was in there. | 
|  | 663 | flags_ &= (~(SVC_DISABLED|SVC_RESTARTING|SVC_RESET|SVC_RESTART|SVC_DISABLED_START)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 664 |  | 
|  | 665 | // Running processes require no additional work --- if they're in the | 
|  | 666 | // process of exiting, we've ensured that they will immediately restart | 
|  | 667 | // on exit, unless they are ONESHOT. | 
|  | 668 | if (flags_ & SVC_RUNNING) { | 
|  | 669 | return false; | 
|  | 670 | } | 
|  | 671 |  | 
|  | 672 | bool needs_console = (flags_ & SVC_CONSOLE); | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 673 | if (needs_console) { | 
|  | 674 | if (console_.empty()) { | 
|  | 675 | console_ = default_console; | 
|  | 676 | } | 
|  | 677 |  | 
| Adrian Salido | 24ef860 | 2016-12-20 15:52:15 -0800 | [diff] [blame] | 678 | // Make sure that open call succeeds to ensure a console driver is | 
|  | 679 | // properly registered for the device node | 
|  | 680 | int console_fd = open(console_.c_str(), O_RDWR | O_CLOEXEC); | 
|  | 681 | if (console_fd < 0) { | 
|  | 682 | PLOG(ERROR) << "service '" << name_ << "' couldn't open console '" << console_ << "'"; | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 683 | flags_ |= SVC_DISABLED; | 
|  | 684 | return false; | 
|  | 685 | } | 
| Adrian Salido | 24ef860 | 2016-12-20 15:52:15 -0800 | [diff] [blame] | 686 | close(console_fd); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 687 | } | 
|  | 688 |  | 
|  | 689 | struct stat sb; | 
|  | 690 | if (stat(args_[0].c_str(), &sb) == -1) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 691 | PLOG(ERROR) << "cannot find '" << args_[0] << "', disabling '" << name_ << "'"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 692 | flags_ |= SVC_DISABLED; | 
|  | 693 | return false; | 
|  | 694 | } | 
|  | 695 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 696 | std::string scon; | 
|  | 697 | if (!seclabel_.empty()) { | 
|  | 698 | scon = seclabel_; | 
|  | 699 | } else { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 700 | scon = ComputeContextFromExecutable(name_, args_[0]); | 
|  | 701 | if (scon == "") { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 702 | return false; | 
|  | 703 | } | 
|  | 704 | } | 
|  | 705 |  | 
| Wei Wang | a285dac | 2016-10-04 14:05:39 -0700 | [diff] [blame] | 706 | LOG(INFO) << "starting service '" << name_ << "'..."; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 707 |  | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 708 | pid_t pid = -1; | 
|  | 709 | if (namespace_flags_) { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 710 | pid = clone(nullptr, nullptr, namespace_flags_ | SIGCHLD, nullptr); | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 711 | } else { | 
|  | 712 | pid = fork(); | 
|  | 713 | } | 
|  | 714 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 715 | if (pid == 0) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 716 | umask(077); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 717 |  | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 718 | if (namespace_flags_ & CLONE_NEWPID) { | 
|  | 719 | // This will fork again to run an init process inside the PID | 
|  | 720 | // namespace. | 
|  | 721 | SetUpPidNamespace(name_); | 
|  | 722 | } | 
|  | 723 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 724 | for (const auto& ei : envvars_) { | 
|  | 725 | add_environment(ei.name.c_str(), ei.value.c_str()); | 
|  | 726 | } | 
|  | 727 |  | 
| Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 728 | std::for_each(descriptors_.begin(), descriptors_.end(), | 
|  | 729 | std::bind(&DescriptorInfo::CreateAndPublish, std::placeholders::_1, scon)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 730 |  | 
| Alex Vakulenko | 0828676 | 2016-05-03 12:00:00 -0700 | [diff] [blame] | 731 | // See if there were "writepid" instructions to write to files under /dev/cpuset/. | 
|  | 732 | auto cpuset_predicate = [](const std::string& path) { | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 733 | return StartsWith(path, "/dev/cpuset/"); | 
| Alex Vakulenko | 0828676 | 2016-05-03 12:00:00 -0700 | [diff] [blame] | 734 | }; | 
|  | 735 | auto iter = std::find_if(writepid_files_.begin(), writepid_files_.end(), cpuset_predicate); | 
|  | 736 | if (iter == writepid_files_.end()) { | 
|  | 737 | // There were no "writepid" instructions for cpusets, check if the system default | 
|  | 738 | // cpuset is specified to be used for the process. | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 739 | std::string default_cpuset = GetProperty("ro.cpuset.default", ""); | 
| Alex Vakulenko | 0828676 | 2016-05-03 12:00:00 -0700 | [diff] [blame] | 740 | if (!default_cpuset.empty()) { | 
|  | 741 | // Make sure the cpuset name starts and ends with '/'. | 
|  | 742 | // A single '/' means the 'root' cpuset. | 
|  | 743 | if (default_cpuset.front() != '/') { | 
|  | 744 | default_cpuset.insert(0, 1, '/'); | 
|  | 745 | } | 
|  | 746 | if (default_cpuset.back() != '/') { | 
|  | 747 | default_cpuset.push_back('/'); | 
|  | 748 | } | 
|  | 749 | writepid_files_.push_back( | 
|  | 750 | StringPrintf("/dev/cpuset%stasks", default_cpuset.c_str())); | 
|  | 751 | } | 
|  | 752 | } | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 753 | std::string pid_str = std::to_string(getpid()); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 754 | for (const auto& file : writepid_files_) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 755 | if (!WriteStringToFile(pid_str, file)) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 756 | PLOG(ERROR) << "couldn't write " << pid_str << " to " << file; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 757 | } | 
|  | 758 | } | 
|  | 759 |  | 
|  | 760 | if (ioprio_class_ != IoSchedClass_NONE) { | 
|  | 761 | if (android_set_ioprio(getpid(), ioprio_class_, ioprio_pri_)) { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 762 | PLOG(ERROR) << "failed to set pid " << getpid() | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 763 | << " ioprio=" << ioprio_class_ << "," << ioprio_pri_; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 764 | } | 
|  | 765 | } | 
|  | 766 |  | 
|  | 767 | if (needs_console) { | 
|  | 768 | setsid(); | 
|  | 769 | OpenConsole(); | 
|  | 770 | } else { | 
|  | 771 | ZapStdio(); | 
|  | 772 | } | 
|  | 773 |  | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 774 | // As requested, set our gid, supplemental gids, uid, context, and | 
|  | 775 | // priority. Aborts on failure. | 
|  | 776 | SetProcessAttributes(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 777 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 778 | std::vector<char*> strs; | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 779 | ExpandArgs(args_, &strs); | 
| Tom Cherry | bac3536 | 2016-06-07 11:22:00 -0700 | [diff] [blame] | 780 | if (execve(strs[0], (char**) &strs[0], (char**) ENV) < 0) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 781 | PLOG(ERROR) << "cannot execve('" << strs[0] << "')"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 782 | } | 
|  | 783 |  | 
|  | 784 | _exit(127); | 
|  | 785 | } | 
|  | 786 |  | 
|  | 787 | if (pid < 0) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 788 | PLOG(ERROR) << "failed to fork for '" << name_ << "'"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 789 | pid_ = 0; | 
|  | 790 | return false; | 
|  | 791 | } | 
|  | 792 |  | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 793 | if (oom_score_adjust_ != -1000) { | 
| Tom Cherry | 1c3a53f | 2017-06-22 16:50:31 -0700 | [diff] [blame] | 794 | std::string oom_str = std::to_string(oom_score_adjust_); | 
| Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 795 | std::string oom_file = StringPrintf("/proc/%d/oom_score_adj", pid); | 
|  | 796 | if (!WriteStringToFile(oom_str, oom_file)) { | 
|  | 797 | PLOG(ERROR) << "couldn't write oom_score_adj: " << strerror(errno); | 
|  | 798 | } | 
|  | 799 | } | 
|  | 800 |  | 
| Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 801 | time_started_ = boot_clock::now(); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 802 | pid_ = pid; | 
|  | 803 | flags_ |= SVC_RUNNING; | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 804 | start_order_ = next_start_order_++; | 
| Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 805 | process_cgroup_empty_ = false; | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 806 |  | 
|  | 807 | errno = -createProcessGroup(uid_, pid_); | 
|  | 808 | if (errno != 0) { | 
| Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 809 | PLOG(ERROR) << "createProcessGroup(" << uid_ << ", " << pid_ << ") failed for service '" | 
|  | 810 | << name_ << "'"; | 
| Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 811 | } else { | 
|  | 812 | if (swappiness_ != -1) { | 
|  | 813 | if (!setProcessGroupSwappiness(uid_, pid_, swappiness_)) { | 
|  | 814 | PLOG(ERROR) << "setProcessGroupSwappiness failed"; | 
|  | 815 | } | 
|  | 816 | } | 
|  | 817 |  | 
|  | 818 | if (soft_limit_in_bytes_ != -1) { | 
|  | 819 | if (!setProcessGroupSoftLimit(uid_, pid_, soft_limit_in_bytes_)) { | 
|  | 820 | PLOG(ERROR) << "setProcessGroupSoftLimit failed"; | 
|  | 821 | } | 
|  | 822 | } | 
|  | 823 |  | 
|  | 824 | if (limit_in_bytes_ != -1) { | 
|  | 825 | if (!setProcessGroupLimit(uid_, pid_, limit_in_bytes_)) { | 
|  | 826 | PLOG(ERROR) << "setProcessGroupLimit failed"; | 
|  | 827 | } | 
|  | 828 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 829 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 830 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 831 | NotifyStateChange("running"); | 
|  | 832 | return true; | 
|  | 833 | } | 
|  | 834 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 835 | bool Service::StartIfNotDisabled() { | 
|  | 836 | if (!(flags_ & SVC_DISABLED)) { | 
|  | 837 | return Start(); | 
|  | 838 | } else { | 
|  | 839 | flags_ |= SVC_DISABLED_START; | 
|  | 840 | } | 
|  | 841 | return true; | 
|  | 842 | } | 
|  | 843 |  | 
|  | 844 | bool Service::Enable() { | 
|  | 845 | flags_ &= ~(SVC_DISABLED | SVC_RC_DISABLED); | 
|  | 846 | if (flags_ & SVC_DISABLED_START) { | 
|  | 847 | return Start(); | 
|  | 848 | } | 
|  | 849 | return true; | 
|  | 850 | } | 
|  | 851 |  | 
|  | 852 | void Service::Reset() { | 
|  | 853 | StopOrReset(SVC_RESET); | 
|  | 854 | } | 
|  | 855 |  | 
|  | 856 | void Service::Stop() { | 
|  | 857 | StopOrReset(SVC_DISABLED); | 
|  | 858 | } | 
|  | 859 |  | 
| Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 860 | void Service::Terminate() { | 
|  | 861 | flags_ &= ~(SVC_RESTARTING | SVC_DISABLED_START); | 
|  | 862 | flags_ |= SVC_DISABLED; | 
|  | 863 | if (pid_) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 864 | KillProcessGroup(SIGTERM); | 
| Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 865 | NotifyStateChange("stopping"); | 
|  | 866 | } | 
|  | 867 | } | 
|  | 868 |  | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 869 | void Service::Restart() { | 
|  | 870 | if (flags_ & SVC_RUNNING) { | 
|  | 871 | /* Stop, wait, then start the service. */ | 
|  | 872 | StopOrReset(SVC_RESTART); | 
|  | 873 | } else if (!(flags_ & SVC_RESTARTING)) { | 
|  | 874 | /* Just start the service since it's not running. */ | 
|  | 875 | Start(); | 
|  | 876 | } /* else: Service is restarting anyways. */ | 
|  | 877 | } | 
|  | 878 |  | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 879 | // 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] | 880 | void Service::StopOrReset(int how) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 881 | // The service is still SVC_RUNNING until its process exits, but if it has | 
|  | 882 | // already exited it shoudn't attempt a restart yet. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 883 | flags_ &= ~(SVC_RESTARTING | SVC_DISABLED_START); | 
|  | 884 |  | 
|  | 885 | if ((how != SVC_DISABLED) && (how != SVC_RESET) && (how != SVC_RESTART)) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 886 | // An illegal flag: default to SVC_DISABLED. | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 887 | how = SVC_DISABLED; | 
|  | 888 | } | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 889 |  | 
|  | 890 | // 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] | 891 | if (how == SVC_RESET) { | 
|  | 892 | flags_ |= (flags_ & SVC_RC_DISABLED) ? SVC_DISABLED : SVC_RESET; | 
|  | 893 | } else { | 
|  | 894 | flags_ |= how; | 
|  | 895 | } | 
|  | 896 |  | 
|  | 897 | if (pid_) { | 
| Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 898 | KillProcessGroup(SIGKILL); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 899 | NotifyStateChange("stopping"); | 
|  | 900 | } else { | 
|  | 901 | NotifyStateChange("stopped"); | 
|  | 902 | } | 
|  | 903 | } | 
|  | 904 |  | 
|  | 905 | void Service::ZapStdio() const { | 
|  | 906 | int fd; | 
|  | 907 | fd = open("/dev/null", O_RDWR); | 
|  | 908 | dup2(fd, 0); | 
|  | 909 | dup2(fd, 1); | 
|  | 910 | dup2(fd, 2); | 
|  | 911 | close(fd); | 
|  | 912 | } | 
|  | 913 |  | 
|  | 914 | void Service::OpenConsole() const { | 
| Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 915 | int fd = open(console_.c_str(), O_RDWR); | 
|  | 916 | if (fd == -1) fd = open("/dev/null", O_RDWR); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 917 | ioctl(fd, TIOCSCTTY, 0); | 
|  | 918 | dup2(fd, 0); | 
|  | 919 | dup2(fd, 1); | 
|  | 920 | dup2(fd, 2); | 
|  | 921 | close(fd); | 
|  | 922 | } | 
|  | 923 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 924 | ServiceList::ServiceList() {} | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 925 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 926 | ServiceList& ServiceList::GetInstance() { | 
|  | 927 | static ServiceList instance; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 928 | return instance; | 
|  | 929 | } | 
|  | 930 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 931 | void ServiceList::AddService(std::unique_ptr<Service> service) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 932 | services_.emplace_back(std::move(service)); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 933 | } | 
|  | 934 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 935 | std::unique_ptr<Service> Service::MakeTemporaryOneshotService(const std::vector<std::string>& args) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 936 | // Parse the arguments: exec [SECLABEL [UID [GID]*] --] COMMAND ARGS... | 
|  | 937 | // SECLABEL can be a - to denote default | 
|  | 938 | std::size_t command_arg = 1; | 
|  | 939 | for (std::size_t i = 1; i < args.size(); ++i) { | 
|  | 940 | if (args[i] == "--") { | 
|  | 941 | command_arg = i + 1; | 
|  | 942 | break; | 
|  | 943 | } | 
|  | 944 | } | 
|  | 945 | if (command_arg > 4 + NR_SVC_SUPP_GIDS) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 946 | LOG(ERROR) << "exec called with too many supplementary group ids"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 947 | return nullptr; | 
|  | 948 | } | 
|  | 949 |  | 
|  | 950 | if (command_arg >= args.size()) { | 
| Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 951 | LOG(ERROR) << "exec called without command"; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 952 | return nullptr; | 
|  | 953 | } | 
|  | 954 | std::vector<std::string> str_args(args.begin() + command_arg, args.end()); | 
|  | 955 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 956 | static size_t exec_count = 0; | 
|  | 957 | exec_count++; | 
|  | 958 | std::string name = "exec " + std::to_string(exec_count) + " (" + Join(str_args, " ") + ")"; | 
| Tom Cherry | 86e31a8 | 2017-04-25 17:31:06 -0700 | [diff] [blame] | 959 |  | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 960 | unsigned flags = SVC_ONESHOT | SVC_TEMPORARY; | 
| Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 961 | CapSet no_capabilities; | 
| Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 962 | unsigned namespace_flags = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 963 |  | 
|  | 964 | std::string seclabel = ""; | 
|  | 965 | if (command_arg > 2 && args[1] != "-") { | 
|  | 966 | seclabel = args[1]; | 
|  | 967 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 968 | Result<uid_t> uid = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 969 | if (command_arg > 3) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 970 | uid = DecodeUid(args[2]); | 
|  | 971 | if (!uid) { | 
|  | 972 | LOG(ERROR) << "Unable to decode UID for '" << args[2] << "': " << uid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 973 | return nullptr; | 
|  | 974 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 975 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 976 | Result<gid_t> gid = 0; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 977 | std::vector<gid_t> supp_gids; | 
|  | 978 | if (command_arg > 4) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 979 | gid = DecodeUid(args[3]); | 
|  | 980 | if (!gid) { | 
|  | 981 | LOG(ERROR) << "Unable to decode GID for '" << args[3] << "': " << gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 982 | return nullptr; | 
|  | 983 | } | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 984 | std::size_t nr_supp_gids = command_arg - 1 /* -- */ - 4 /* exec SECLABEL UID GID */; | 
|  | 985 | for (size_t i = 0; i < nr_supp_gids; ++i) { | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 986 | auto supp_gid = DecodeUid(args[4 + i]); | 
|  | 987 | if (!supp_gid) { | 
|  | 988 | LOG(ERROR) << "Unable to decode GID for '" << args[4 + i] | 
|  | 989 | << "': " << supp_gid.error(); | 
| Tom Cherry | 517e1f1 | 2017-05-04 17:40:33 -0700 | [diff] [blame] | 990 | return nullptr; | 
|  | 991 | } | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 992 | supp_gids.push_back(*supp_gid); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 993 | } | 
|  | 994 | } | 
|  | 995 |  | 
| Tom Cherry | 11a3aee | 2017-08-03 12:54:07 -0700 | [diff] [blame] | 996 | return std::make_unique<Service>(name, flags, *uid, *gid, supp_gids, no_capabilities, | 
| Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame] | 997 | namespace_flags, seclabel, str_args); | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 998 | } | 
|  | 999 |  | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 1000 | // Shutdown services in the opposite order that they were started. | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1001 | const std::vector<Service*> ServiceList::services_in_shutdown_order() const { | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 1002 | std::vector<Service*> shutdown_services; | 
|  | 1003 | for (const auto& service : services_) { | 
|  | 1004 | if (service->start_order() > 0) shutdown_services.emplace_back(service.get()); | 
|  | 1005 | } | 
|  | 1006 | std::sort(shutdown_services.begin(), shutdown_services.end(), | 
|  | 1007 | [](const auto& a, const auto& b) { return a->start_order() > b->start_order(); }); | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1008 | return shutdown_services; | 
| Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 1009 | } | 
|  | 1010 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1011 | void ServiceList::RemoveService(const Service& svc) { | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 1012 | auto svc_it = std::find_if(services_.begin(), services_.end(), | 
|  | 1013 | [&svc] (const std::unique_ptr<Service>& s) { | 
|  | 1014 | return svc.name() == s->name(); | 
|  | 1015 | }); | 
|  | 1016 | if (svc_it == services_.end()) { | 
|  | 1017 | return; | 
|  | 1018 | } | 
|  | 1019 |  | 
|  | 1020 | services_.erase(svc_it); | 
|  | 1021 | } | 
|  | 1022 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1023 | void ServiceList::DumpState() const { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1024 | for (const auto& s : services_) { | 
|  | 1025 | s->DumpState(); | 
|  | 1026 | } | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1027 | } | 
|  | 1028 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1029 | Result<Success> ServiceParser::ParseSection(std::vector<std::string>&& args, | 
|  | 1030 | const std::string& filename, int line) { | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1031 | if (args.size() < 3) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1032 | return Error() << "services must have a name and a program"; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1033 | } | 
|  | 1034 |  | 
|  | 1035 | const std::string& name = args[1]; | 
|  | 1036 | if (!IsValidName(name)) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1037 | return Error() << "invalid service name '" << name << "'"; | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1038 | } | 
|  | 1039 |  | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1040 | Service* old_service = service_list_->FindService(name); | 
| Tom Cherry | 30a6f27 | 2017-04-19 15:31:58 -0700 | [diff] [blame] | 1041 | if (old_service) { | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1042 | return Error() << "ignored duplicate definition of service '" << name << "'"; | 
| Tom Cherry | 30a6f27 | 2017-04-19 15:31:58 -0700 | [diff] [blame] | 1043 | } | 
|  | 1044 |  | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1045 | std::vector<std::string> str_args(args.begin() + 2, args.end()); | 
| Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 1046 | service_ = std::make_unique<Service>(name, str_args); | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1047 | return Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1048 | } | 
|  | 1049 |  | 
| Tom Cherry | 89bcc85 | 2017-08-02 17:01:36 -0700 | [diff] [blame] | 1050 | Result<Success> ServiceParser::ParseLineSection(std::vector<std::string>&& args, int line) { | 
|  | 1051 | return service_ ? service_->ParseLine(std::move(args)) : Success(); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1052 | } | 
|  | 1053 |  | 
|  | 1054 | void ServiceParser::EndSection() { | 
|  | 1055 | if (service_) { | 
| Tom Cherry | 911b9b1 | 2017-07-27 16:20:58 -0700 | [diff] [blame] | 1056 | service_list_->AddService(std::move(service_)); | 
| Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 1057 | } | 
|  | 1058 | } | 
|  | 1059 |  | 
|  | 1060 | bool ServiceParser::IsValidName(const std::string& name) const { | 
| Elliott Hughes | b7788fd | 2017-02-28 09:54:36 -0800 | [diff] [blame] | 1061 | // Property names can be any length, but may only contain certain characters. | 
|  | 1062 | // Property values can contain any characters, but may only be a certain length. | 
|  | 1063 | // (The latter restriction is needed because `start` and `stop` work by writing | 
|  | 1064 | // the service name to the "ctl.start" and "ctl.stop" properties.) | 
|  | 1065 | return is_legal_property_name("init.svc." + name) && name.size() <= PROP_VALUE_MAX; | 
| Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 1066 | } | 
| Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 1067 |  | 
|  | 1068 | }  // namespace init | 
|  | 1069 | }  // namespace android |