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 | #ifndef _INIT_SERVICE_H |
| 18 | #define _INIT_SERVICE_H |
| 19 | |
| 20 | #include <sys/types.h> |
| 21 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 22 | #include <memory> |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 23 | #include <set> |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 24 | #include <string> |
| 25 | #include <vector> |
| 26 | |
James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 27 | #include <android-base/chrono_utils.h> |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 28 | #include <cutils/iosched_policy.h> |
James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 29 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 30 | #include "action.h" |
Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 31 | #include "capabilities.h" |
Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 32 | #include "descriptors.h" |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 33 | #include "keyword_map.h" |
Tom Cherry | 67dee62 | 2017-07-27 12:54:48 -0700 | [diff] [blame] | 34 | #include "parser.h" |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 35 | |
Keun-young Park | 8d01f63 | 2017-03-13 11:54:47 -0700 | [diff] [blame] | 36 | #define SVC_DISABLED 0x001 // do not autostart with class |
| 37 | #define SVC_ONESHOT 0x002 // do not restart on exit |
| 38 | #define SVC_RUNNING 0x004 // currently active |
| 39 | #define SVC_RESTARTING 0x008 // waiting to restart |
| 40 | #define SVC_CONSOLE 0x010 // requires console |
| 41 | #define SVC_CRITICAL 0x020 // will reboot into recovery if keeps crashing |
| 42 | #define SVC_RESET 0x040 // Use when stopping a process, |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 43 | // but not disabling so it can be restarted with its class. |
Keun-young Park | 8d01f63 | 2017-03-13 11:54:47 -0700 | [diff] [blame] | 44 | #define SVC_RC_DISABLED 0x080 // Remember if the disabled flag was set in the rc script. |
| 45 | #define SVC_RESTART 0x100 // Use to safely restart (stop, wait, start) a service. |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 46 | #define SVC_DISABLED_START 0x200 // A start was requested but it was disabled at the time. |
Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 47 | #define SVC_EXEC 0x400 // This service was started by either 'exec' or 'exec_start' and stops |
| 48 | // init from processing more commands until it completes |
Keun-young Park | 8d01f63 | 2017-03-13 11:54:47 -0700 | [diff] [blame] | 49 | |
| 50 | #define SVC_SHUTDOWN_CRITICAL 0x800 // This service is critical for shutdown and |
| 51 | // should not be killed during shutdown |
Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 52 | #define SVC_TEMPORARY 0x1000 // This service was started by 'exec' and should be removed from the |
| 53 | // service list once it is reaped. |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 54 | |
| 55 | #define NR_SVC_SUPP_GIDS 12 // twelve supplementary groups |
| 56 | |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 57 | namespace android { |
| 58 | namespace init { |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 59 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 60 | struct ServiceEnvironmentInfo { |
| 61 | ServiceEnvironmentInfo(); |
| 62 | ServiceEnvironmentInfo(const std::string& name, const std::string& value); |
| 63 | std::string name; |
| 64 | std::string value; |
| 65 | }; |
| 66 | |
| 67 | class Service { |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 68 | public: |
| 69 | Service(const std::string& name, const std::vector<std::string>& args); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 70 | |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 71 | Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, |
Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 72 | const std::vector<gid_t>& supp_gids, const CapSet& capabilities, |
| 73 | unsigned namespace_flags, const std::string& seclabel, |
| 74 | const std::vector<std::string>& args); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 75 | |
Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame^] | 76 | static std::unique_ptr<Service> MakeTemporaryOneshotService(const std::vector<std::string>& args); |
| 77 | |
Keun-young Park | 8d01f63 | 2017-03-13 11:54:47 -0700 | [diff] [blame] | 78 | bool IsRunning() { return (flags_ & SVC_RUNNING) != 0; } |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 79 | bool ParseLine(const std::vector<std::string>& args, std::string* err); |
Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame^] | 80 | bool ExecStart(); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 81 | bool Start(); |
| 82 | bool StartIfNotDisabled(); |
| 83 | bool Enable(); |
| 84 | void Reset(); |
| 85 | void Stop(); |
Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 86 | void Terminate(); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 87 | void Restart(); |
Tom Cherry | b27004a | 2017-03-27 16:27:30 -0700 | [diff] [blame] | 88 | void Reap(); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 89 | void DumpState() const; |
Keun-young Park | 8d01f63 | 2017-03-13 11:54:47 -0700 | [diff] [blame] | 90 | void SetShutdownCritical() { flags_ |= SVC_SHUTDOWN_CRITICAL; } |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 91 | bool IsShutdownCritical() const { return (flags_ & SVC_SHUTDOWN_CRITICAL) != 0; } |
Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame^] | 92 | void UnSetExec() { |
| 93 | is_exec_service_running_ = false; |
| 94 | flags_ &= ~SVC_EXEC; |
| 95 | } |
| 96 | |
| 97 | static bool is_exec_service_running() { return is_exec_service_running_; } |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 98 | |
| 99 | const std::string& name() const { return name_; } |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 100 | const std::set<std::string>& classnames() const { return classnames_; } |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 101 | unsigned flags() const { return flags_; } |
| 102 | pid_t pid() const { return pid_; } |
Tom Cherry | d269e3a | 2017-07-31 13:23:18 -0700 | [diff] [blame] | 103 | android::base::boot_clock::time_point time_started() const { return time_started_; } |
Tom Cherry | 7da5485 | 2017-05-01 14:16:41 -0700 | [diff] [blame] | 104 | int crash_count() const { return crash_count_; } |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 105 | uid_t uid() const { return uid_; } |
| 106 | gid_t gid() const { return gid_; } |
Tom Cherry | 7da5485 | 2017-05-01 14:16:41 -0700 | [diff] [blame] | 107 | unsigned namespace_flags() const { return namespace_flags_; } |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 108 | const std::vector<gid_t>& supp_gids() const { return supp_gids_; } |
| 109 | const std::string& seclabel() const { return seclabel_; } |
| 110 | const std::vector<int>& keycodes() const { return keycodes_; } |
| 111 | int keychord_id() const { return keychord_id_; } |
| 112 | void set_keychord_id(int keychord_id) { keychord_id_ = keychord_id; } |
Tom Cherry | 7da5485 | 2017-05-01 14:16:41 -0700 | [diff] [blame] | 113 | IoSchedClass ioprio_class() const { return ioprio_class_; } |
| 114 | int ioprio_pri() const { return ioprio_pri_; } |
| 115 | int priority() const { return priority_; } |
| 116 | int oom_score_adjust() const { return oom_score_adjust_; } |
Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 117 | bool process_cgroup_empty() const { return process_cgroup_empty_; } |
Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 118 | unsigned long start_order() const { return start_order_; } |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 119 | const std::vector<std::string>& args() const { return args_; } |
| 120 | |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 121 | private: |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 122 | using OptionParser = bool (Service::*) (const std::vector<std::string>& args, |
| 123 | std::string* err); |
| 124 | class OptionParserMap; |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 125 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 126 | void NotifyStateChange(const std::string& new_state) const; |
| 127 | void StopOrReset(int how); |
| 128 | void ZapStdio() const; |
| 129 | void OpenConsole() const; |
Elliott Hughes | ad8e94e | 2016-06-15 14:49:57 -0700 | [diff] [blame] | 130 | void KillProcessGroup(int signal); |
Jorge Lucangeli Obes | 344d01f | 2016-07-08 13:32:26 -0400 | [diff] [blame] | 131 | void SetProcessAttributes(); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 132 | |
Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 133 | bool ParseCapabilities(const std::vector<std::string>& args, std::string *err); |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 134 | bool ParseClass(const std::vector<std::string>& args, std::string* err); |
| 135 | bool ParseConsole(const std::vector<std::string>& args, std::string* err); |
| 136 | bool ParseCritical(const std::vector<std::string>& args, std::string* err); |
| 137 | bool ParseDisabled(const std::vector<std::string>& args, std::string* err); |
| 138 | bool ParseGroup(const std::vector<std::string>& args, std::string* err); |
| 139 | bool ParsePriority(const std::vector<std::string>& args, std::string* err); |
| 140 | bool ParseIoprio(const std::vector<std::string>& args, std::string* err); |
| 141 | bool ParseKeycodes(const std::vector<std::string>& args, std::string* err); |
| 142 | bool ParseOneshot(const std::vector<std::string>& args, std::string* err); |
| 143 | bool ParseOnrestart(const std::vector<std::string>& args, std::string* err); |
Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 144 | bool ParseOomScoreAdjust(const std::vector<std::string>& args, std::string* err); |
Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 145 | bool ParseMemcgLimitInBytes(const std::vector<std::string>& args, std::string* err); |
| 146 | bool ParseMemcgSoftLimitInBytes(const std::vector<std::string>& args, std::string* err); |
| 147 | bool ParseMemcgSwappiness(const std::vector<std::string>& args, std::string* err); |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 148 | bool ParseNamespace(const std::vector<std::string>& args, std::string* err); |
| 149 | bool ParseSeclabel(const std::vector<std::string>& args, std::string* err); |
| 150 | bool ParseSetenv(const std::vector<std::string>& args, std::string* err); |
Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 151 | bool ParseShutdown(const std::vector<std::string>& args, std::string* err); |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 152 | bool ParseSocket(const std::vector<std::string>& args, std::string* err); |
Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 153 | bool ParseFile(const std::vector<std::string>& args, std::string* err); |
Jorge Lucangeli Obes | 177b27d | 2016-06-29 14:32:49 -0400 | [diff] [blame] | 154 | bool ParseUser(const std::vector<std::string>& args, std::string* err); |
| 155 | bool ParseWritepid(const std::vector<std::string>& args, std::string* err); |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 156 | |
Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 157 | template <typename T> |
| 158 | bool AddDescriptor(const std::vector<std::string>& args, std::string* err); |
| 159 | |
Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 160 | static unsigned long next_start_order_; |
Tom Cherry | 3b81f2d | 2017-07-28 14:48:41 -0700 | [diff] [blame^] | 161 | static bool is_exec_service_running_; |
Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 162 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 163 | std::string name_; |
Wei Wang | 641ff0a | 2017-03-27 10:59:11 -0700 | [diff] [blame] | 164 | std::set<std::string> classnames_; |
Viorel Suman | 70daa67 | 2016-03-21 10:08:07 +0200 | [diff] [blame] | 165 | std::string console_; |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 166 | |
| 167 | unsigned flags_; |
| 168 | pid_t pid_; |
James Hawkins | e78ea77 | 2017-03-24 11:43:02 -0700 | [diff] [blame] | 169 | android::base::boot_clock::time_point time_started_; // time of last start |
| 170 | android::base::boot_clock::time_point time_crashed_; // first crash within inspection window |
Elliott Hughes | 9605a94 | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 171 | int crash_count_; // number of times crashed within window |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 172 | |
| 173 | uid_t uid_; |
| 174 | gid_t gid_; |
| 175 | std::vector<gid_t> supp_gids_; |
Jorge Lucangeli Obes | 24b2913 | 2016-10-27 10:33:03 -0400 | [diff] [blame] | 176 | CapSet capabilities_; |
Jorge Lucangeli Obes | 1b3fa3d | 2016-04-21 15:35:09 -0700 | [diff] [blame] | 177 | unsigned namespace_flags_; |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 178 | |
| 179 | std::string seclabel_; |
| 180 | |
Mark Salyzyn | 62767fe | 2016-10-27 07:45:34 -0700 | [diff] [blame] | 181 | std::vector<std::unique_ptr<DescriptorInfo>> descriptors_; |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 182 | std::vector<ServiceEnvironmentInfo> envvars_; |
| 183 | |
| 184 | Action onrestart_; // Commands to execute on restart. |
| 185 | |
| 186 | std::vector<std::string> writepid_files_; |
| 187 | |
| 188 | // keycodes for triggering this service via /dev/keychord |
| 189 | std::vector<int> keycodes_; |
| 190 | int keychord_id_; |
| 191 | |
| 192 | IoSchedClass ioprio_class_; |
| 193 | int ioprio_pri_; |
Vitalii Tomkiv | 081705c | 2016-05-18 17:36:30 -0700 | [diff] [blame] | 194 | int priority_; |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 195 | |
Marco Nelissen | 310f670 | 2016-07-22 12:07:06 -0700 | [diff] [blame] | 196 | int oom_score_adjust_; |
| 197 | |
Robert Benea | d485226 | 2017-07-16 19:38:11 -0700 | [diff] [blame] | 198 | int swappiness_; |
| 199 | int soft_limit_in_bytes_; |
| 200 | int limit_in_bytes_; |
| 201 | |
Tom Cherry | 33838b1 | 2017-05-04 11:32:36 -0700 | [diff] [blame] | 202 | bool process_cgroup_empty_ = false; |
| 203 | |
Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 204 | unsigned long start_order_; |
| 205 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 206 | std::vector<std::string> args_; |
| 207 | }; |
| 208 | |
| 209 | class ServiceManager { |
Wei Wang | eeab491 | 2017-06-27 22:08:45 -0700 | [diff] [blame] | 210 | public: |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 211 | static ServiceManager& GetInstance(); |
| 212 | |
Tom Cherry | 7da5485 | 2017-05-01 14:16:41 -0700 | [diff] [blame] | 213 | // Exposed for testing |
| 214 | ServiceManager(); |
| 215 | |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 216 | void AddService(std::unique_ptr<Service> service); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 217 | Service* FindServiceByName(const std::string& name) const; |
| 218 | Service* FindServiceByPid(pid_t pid) const; |
| 219 | Service* FindServiceByKeychord(int keychord_id) const; |
Chih-Hung Hsieh | 8f7b9e3 | 2016-07-27 16:25:51 -0700 | [diff] [blame] | 220 | void ForEachService(const std::function<void(Service*)>& callback) const; |
Tom Cherry | 5938379 | 2017-07-26 16:09:09 -0700 | [diff] [blame] | 221 | void ForEachServiceShutdownOrder(const std::function<void(Service*)>& callback) const; |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 222 | void ForEachServiceInClass(const std::string& classname, |
| 223 | void (*func)(Service* svc)) const; |
Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 224 | void ReapAnyOutstandingChildren(); |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 225 | void RemoveService(const Service& svc); |
| 226 | void DumpState() const; |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 227 | |
Wei Wang | eeab491 | 2017-06-27 22:08:45 -0700 | [diff] [blame] | 228 | private: |
Bertrand SIMONNET | b7e03e8 | 2015-12-18 11:39:59 -0800 | [diff] [blame] | 229 | // Cleans up a child process that exited. |
| 230 | // Returns true iff a children was cleaned up. |
| 231 | bool ReapOneProcess(); |
| 232 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 233 | std::vector<std::unique_ptr<Service>> services_; |
| 234 | }; |
| 235 | |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 236 | class ServiceParser : public SectionParser { |
Tom Cherry | 012c573 | 2017-04-18 13:21:54 -0700 | [diff] [blame] | 237 | public: |
Tom Cherry | 30a6f27 | 2017-04-19 15:31:58 -0700 | [diff] [blame] | 238 | ServiceParser(ServiceManager* service_manager) |
| 239 | : service_manager_(service_manager), service_(nullptr) {} |
| 240 | bool ParseSection(std::vector<std::string>&& args, const std::string& filename, int line, |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 241 | std::string* err) override; |
Tom Cherry | 30a6f27 | 2017-04-19 15:31:58 -0700 | [diff] [blame] | 242 | bool ParseLineSection(std::vector<std::string>&& args, int line, std::string* err) override; |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 243 | void EndSection() override; |
Tom Cherry | 012c573 | 2017-04-18 13:21:54 -0700 | [diff] [blame] | 244 | |
| 245 | private: |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 246 | bool IsValidName(const std::string& name) const; |
| 247 | |
Tom Cherry | 30a6f27 | 2017-04-19 15:31:58 -0700 | [diff] [blame] | 248 | ServiceManager* service_manager_; |
Tom Cherry | b734990 | 2015-08-26 11:43:36 -0700 | [diff] [blame] | 249 | std::unique_ptr<Service> service_; |
| 250 | }; |
| 251 | |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 252 | } // namespace init |
| 253 | } // namespace android |
| 254 | |
Tom Cherry | bac3299 | 2015-07-31 12:45:25 -0700 | [diff] [blame] | 255 | #endif |