blob: 1f2c44f932216c1b0d1115d74fa37490c9de89de [file] [log] [blame]
Tom Cherrybac32992015-07-31 12:45:25 -07001/*
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 Cherrybac32992015-07-31 12:45:25 -070022#include <memory>
Wei Wang641ff0a2017-03-27 10:59:11 -070023#include <set>
Tom Cherrybac32992015-07-31 12:45:25 -070024#include <string>
25#include <vector>
26
James Hawkinse78ea772017-03-24 11:43:02 -070027#include <android-base/chrono_utils.h>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070028#include <cutils/iosched_policy.h>
James Hawkinse78ea772017-03-24 11:43:02 -070029
Tom Cherrybac32992015-07-31 12:45:25 -070030#include "action.h"
Jorge Lucangeli Obes24b29132016-10-27 10:33:03 -040031#include "capabilities.h"
Mark Salyzyn62767fe2016-10-27 07:45:34 -070032#include "descriptors.h"
Tom Cherryb7349902015-08-26 11:43:36 -070033#include "keyword_map.h"
Tom Cherry67dee622017-07-27 12:54:48 -070034#include "parser.h"
Tom Cherrybac32992015-07-31 12:45:25 -070035
Keun-young Park8d01f632017-03-13 11:54:47 -070036#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 Cherrybac32992015-07-31 12:45:25 -070043 // but not disabling so it can be restarted with its class.
Keun-young Park8d01f632017-03-13 11:54:47 -070044#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 Cherrybac32992015-07-31 12:45:25 -070046#define SVC_DISABLED_START 0x200 // A start was requested but it was disabled at the time.
Tom Cherryb27004a2017-03-27 16:27:30 -070047#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 Park8d01f632017-03-13 11:54:47 -070049
50#define SVC_SHUTDOWN_CRITICAL 0x800 // This service is critical for shutdown and
51 // should not be killed during shutdown
Tom Cherryb27004a2017-03-27 16:27:30 -070052#define SVC_TEMPORARY 0x1000 // This service was started by 'exec' and should be removed from the
53 // service list once it is reaped.
Tom Cherrybac32992015-07-31 12:45:25 -070054
55#define NR_SVC_SUPP_GIDS 12 // twelve supplementary groups
56
Tom Cherry81f5d3e2017-06-22 12:53:17 -070057namespace android {
58namespace init {
Tom Cherrybac32992015-07-31 12:45:25 -070059
Tom Cherrybac32992015-07-31 12:45:25 -070060class Service {
Wei Wang641ff0a2017-03-27 10:59:11 -070061 public:
62 Service(const std::string& name, const std::vector<std::string>& args);
Tom Cherrybac32992015-07-31 12:45:25 -070063
Wei Wang641ff0a2017-03-27 10:59:11 -070064 Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid,
Jorge Lucangeli Obes24b29132016-10-27 10:33:03 -040065 const std::vector<gid_t>& supp_gids, const CapSet& capabilities,
66 unsigned namespace_flags, const std::string& seclabel,
67 const std::vector<std::string>& args);
Tom Cherrybac32992015-07-31 12:45:25 -070068
Tom Cherry3b81f2d2017-07-28 14:48:41 -070069 static std::unique_ptr<Service> MakeTemporaryOneshotService(const std::vector<std::string>& args);
70
Keun-young Park8d01f632017-03-13 11:54:47 -070071 bool IsRunning() { return (flags_ & SVC_RUNNING) != 0; }
Tom Cherry89bcc852017-08-02 17:01:36 -070072 Result<Success> ParseLine(const std::vector<std::string>& args);
Tom Cherry76af7e62017-08-22 16:13:59 -070073 Result<Success> ExecStart();
74 Result<Success> Start();
75 Result<Success> StartIfNotDisabled();
76 Result<Success> Enable();
Tom Cherrybac32992015-07-31 12:45:25 -070077 void Reset();
78 void Stop();
Bertrand SIMONNETb7e03e82015-12-18 11:39:59 -080079 void Terminate();
Tom Cherrybac32992015-07-31 12:45:25 -070080 void Restart();
Tom Cherryb27004a2017-03-27 16:27:30 -070081 void Reap();
Tom Cherrybac32992015-07-31 12:45:25 -070082 void DumpState() const;
Keun-young Park8d01f632017-03-13 11:54:47 -070083 void SetShutdownCritical() { flags_ |= SVC_SHUTDOWN_CRITICAL; }
Wei Wang641ff0a2017-03-27 10:59:11 -070084 bool IsShutdownCritical() const { return (flags_ & SVC_SHUTDOWN_CRITICAL) != 0; }
Tom Cherry3b81f2d2017-07-28 14:48:41 -070085 void UnSetExec() {
86 is_exec_service_running_ = false;
87 flags_ &= ~SVC_EXEC;
88 }
89
90 static bool is_exec_service_running() { return is_exec_service_running_; }
Tom Cherrybac32992015-07-31 12:45:25 -070091
92 const std::string& name() const { return name_; }
Wei Wang641ff0a2017-03-27 10:59:11 -070093 const std::set<std::string>& classnames() const { return classnames_; }
Tom Cherrybac32992015-07-31 12:45:25 -070094 unsigned flags() const { return flags_; }
95 pid_t pid() const { return pid_; }
Tom Cherryd269e3a2017-07-31 13:23:18 -070096 android::base::boot_clock::time_point time_started() const { return time_started_; }
Tom Cherry7da54852017-05-01 14:16:41 -070097 int crash_count() const { return crash_count_; }
Tom Cherrybac32992015-07-31 12:45:25 -070098 uid_t uid() const { return uid_; }
99 gid_t gid() const { return gid_; }
Tom Cherry7da54852017-05-01 14:16:41 -0700100 unsigned namespace_flags() const { return namespace_flags_; }
Tom Cherrybac32992015-07-31 12:45:25 -0700101 const std::vector<gid_t>& supp_gids() const { return supp_gids_; }
102 const std::string& seclabel() const { return seclabel_; }
103 const std::vector<int>& keycodes() const { return keycodes_; }
104 int keychord_id() const { return keychord_id_; }
105 void set_keychord_id(int keychord_id) { keychord_id_ = keychord_id; }
Tom Cherry7da54852017-05-01 14:16:41 -0700106 IoSchedClass ioprio_class() const { return ioprio_class_; }
107 int ioprio_pri() const { return ioprio_pri_; }
108 int priority() const { return priority_; }
109 int oom_score_adjust() const { return oom_score_adjust_; }
Tom Cherry33838b12017-05-04 11:32:36 -0700110 bool process_cgroup_empty() const { return process_cgroup_empty_; }
Tom Cherry59383792017-07-26 16:09:09 -0700111 unsigned long start_order() const { return start_order_; }
Tom Cherrybac32992015-07-31 12:45:25 -0700112 const std::vector<std::string>& args() const { return args_; }
113
Wei Wang641ff0a2017-03-27 10:59:11 -0700114 private:
Tom Cherry89bcc852017-08-02 17:01:36 -0700115 using OptionParser = Result<Success> (Service::*)(const std::vector<std::string>& args);
Jorge Lucangeli Obes177b27d2016-06-29 14:32:49 -0400116 class OptionParserMap;
Tom Cherryb7349902015-08-26 11:43:36 -0700117
Tom Cherrybac32992015-07-31 12:45:25 -0700118 void NotifyStateChange(const std::string& new_state) const;
119 void StopOrReset(int how);
120 void ZapStdio() const;
121 void OpenConsole() const;
Elliott Hughesad8e94e2016-06-15 14:49:57 -0700122 void KillProcessGroup(int signal);
Jorge Lucangeli Obes344d01f2016-07-08 13:32:26 -0400123 void SetProcessAttributes();
Tom Cherrybac32992015-07-31 12:45:25 -0700124
Tom Cherry89bcc852017-08-02 17:01:36 -0700125 Result<Success> ParseCapabilities(const std::vector<std::string>& args);
126 Result<Success> ParseClass(const std::vector<std::string>& args);
127 Result<Success> ParseConsole(const std::vector<std::string>& args);
128 Result<Success> ParseCritical(const std::vector<std::string>& args);
129 Result<Success> ParseDisabled(const std::vector<std::string>& args);
130 Result<Success> ParseGroup(const std::vector<std::string>& args);
131 Result<Success> ParsePriority(const std::vector<std::string>& args);
132 Result<Success> ParseIoprio(const std::vector<std::string>& args);
133 Result<Success> ParseKeycodes(const std::vector<std::string>& args);
134 Result<Success> ParseOneshot(const std::vector<std::string>& args);
135 Result<Success> ParseOnrestart(const std::vector<std::string>& args);
136 Result<Success> ParseOomScoreAdjust(const std::vector<std::string>& args);
137 Result<Success> ParseMemcgLimitInBytes(const std::vector<std::string>& args);
138 Result<Success> ParseMemcgSoftLimitInBytes(const std::vector<std::string>& args);
139 Result<Success> ParseMemcgSwappiness(const std::vector<std::string>& args);
140 Result<Success> ParseNamespace(const std::vector<std::string>& args);
141 Result<Success> ParseSeclabel(const std::vector<std::string>& args);
142 Result<Success> ParseSetenv(const std::vector<std::string>& args);
143 Result<Success> ParseShutdown(const std::vector<std::string>& args);
144 Result<Success> ParseSocket(const std::vector<std::string>& args);
145 Result<Success> ParseFile(const std::vector<std::string>& args);
146 Result<Success> ParseUser(const std::vector<std::string>& args);
147 Result<Success> ParseWritepid(const std::vector<std::string>& args);
Tom Cherryb7349902015-08-26 11:43:36 -0700148
Mark Salyzyn62767fe2016-10-27 07:45:34 -0700149 template <typename T>
Tom Cherry89bcc852017-08-02 17:01:36 -0700150 Result<Success> AddDescriptor(const std::vector<std::string>& args);
Mark Salyzyn62767fe2016-10-27 07:45:34 -0700151
Tom Cherry59383792017-07-26 16:09:09 -0700152 static unsigned long next_start_order_;
Tom Cherry3b81f2d2017-07-28 14:48:41 -0700153 static bool is_exec_service_running_;
Tom Cherry59383792017-07-26 16:09:09 -0700154
Tom Cherrybac32992015-07-31 12:45:25 -0700155 std::string name_;
Wei Wang641ff0a2017-03-27 10:59:11 -0700156 std::set<std::string> classnames_;
Viorel Suman70daa672016-03-21 10:08:07 +0200157 std::string console_;
Tom Cherrybac32992015-07-31 12:45:25 -0700158
159 unsigned flags_;
160 pid_t pid_;
James Hawkinse78ea772017-03-24 11:43:02 -0700161 android::base::boot_clock::time_point time_started_; // time of last start
162 android::base::boot_clock::time_point time_crashed_; // first crash within inspection window
Elliott Hughes9605a942016-11-10 17:43:47 -0800163 int crash_count_; // number of times crashed within window
Tom Cherrybac32992015-07-31 12:45:25 -0700164
165 uid_t uid_;
166 gid_t gid_;
167 std::vector<gid_t> supp_gids_;
Jorge Lucangeli Obes24b29132016-10-27 10:33:03 -0400168 CapSet capabilities_;
Jorge Lucangeli Obes1b3fa3d2016-04-21 15:35:09 -0700169 unsigned namespace_flags_;
Tom Cherrybac32992015-07-31 12:45:25 -0700170
171 std::string seclabel_;
172
Mark Salyzyn62767fe2016-10-27 07:45:34 -0700173 std::vector<std::unique_ptr<DescriptorInfo>> descriptors_;
Tom Cherry6de21f12017-08-22 15:41:03 -0700174 std::vector<std::pair<std::string, std::string>> environment_vars_;
Tom Cherrybac32992015-07-31 12:45:25 -0700175
176 Action onrestart_; // Commands to execute on restart.
177
178 std::vector<std::string> writepid_files_;
179
180 // keycodes for triggering this service via /dev/keychord
181 std::vector<int> keycodes_;
182 int keychord_id_;
183
184 IoSchedClass ioprio_class_;
185 int ioprio_pri_;
Vitalii Tomkiv081705c2016-05-18 17:36:30 -0700186 int priority_;
Tom Cherrybac32992015-07-31 12:45:25 -0700187
Marco Nelissen310f6702016-07-22 12:07:06 -0700188 int oom_score_adjust_;
189
Robert Benead4852262017-07-16 19:38:11 -0700190 int swappiness_;
191 int soft_limit_in_bytes_;
192 int limit_in_bytes_;
193
Tom Cherry33838b12017-05-04 11:32:36 -0700194 bool process_cgroup_empty_ = false;
195
Tom Cherry59383792017-07-26 16:09:09 -0700196 unsigned long start_order_;
197
Tom Cherrybac32992015-07-31 12:45:25 -0700198 std::vector<std::string> args_;
199};
200
Tom Cherry911b9b12017-07-27 16:20:58 -0700201class ServiceList {
Wei Wangeeab4912017-06-27 22:08:45 -0700202 public:
Tom Cherry911b9b12017-07-27 16:20:58 -0700203 static ServiceList& GetInstance();
Tom Cherrybac32992015-07-31 12:45:25 -0700204
Tom Cherry7da54852017-05-01 14:16:41 -0700205 // Exposed for testing
Tom Cherry911b9b12017-07-27 16:20:58 -0700206 ServiceList();
Tom Cherry7da54852017-05-01 14:16:41 -0700207
Tom Cherryb7349902015-08-26 11:43:36 -0700208 void AddService(std::unique_ptr<Service> service);
Tom Cherrybac32992015-07-31 12:45:25 -0700209 void RemoveService(const Service& svc);
Tom Cherry911b9b12017-07-27 16:20:58 -0700210
211 template <typename T, typename F = decltype(&Service::name)>
212 Service* FindService(T value, F function = &Service::name) const {
213 auto svc = std::find_if(services_.begin(), services_.end(),
214 [&function, &value](const std::unique_ptr<Service>& s) {
215 return std::invoke(function, s) == value;
216 });
217 if (svc != services_.end()) {
218 return svc->get();
219 }
220 return nullptr;
221 }
222
Tom Cherrybac32992015-07-31 12:45:25 -0700223 void DumpState() const;
Tom Cherryb7349902015-08-26 11:43:36 -0700224
Tom Cherry911b9b12017-07-27 16:20:58 -0700225 auto begin() const { return services_.begin(); }
226 auto end() const { return services_.end(); }
227 const std::vector<std::unique_ptr<Service>>& services() const { return services_; }
228 const std::vector<Service*> services_in_shutdown_order() const;
229
Wei Wangeeab4912017-06-27 22:08:45 -0700230 private:
Tom Cherrybac32992015-07-31 12:45:25 -0700231 std::vector<std::unique_ptr<Service>> services_;
232};
233
Tom Cherryb7349902015-08-26 11:43:36 -0700234class ServiceParser : public SectionParser {
Tom Cherry012c5732017-04-18 13:21:54 -0700235 public:
Tom Cherry911b9b12017-07-27 16:20:58 -0700236 ServiceParser(ServiceList* service_list) : service_list_(service_list), service_(nullptr) {}
Tom Cherry89bcc852017-08-02 17:01:36 -0700237 Result<Success> ParseSection(std::vector<std::string>&& args, const std::string& filename,
238 int line) override;
239 Result<Success> ParseLineSection(std::vector<std::string>&& args, int line) override;
Tom Cherryb7349902015-08-26 11:43:36 -0700240 void EndSection() override;
Tom Cherry012c5732017-04-18 13:21:54 -0700241
242 private:
Tom Cherryb7349902015-08-26 11:43:36 -0700243 bool IsValidName(const std::string& name) const;
244
Tom Cherry911b9b12017-07-27 16:20:58 -0700245 ServiceList* service_list_;
Tom Cherryb7349902015-08-26 11:43:36 -0700246 std::unique_ptr<Service> service_;
247};
248
Tom Cherry81f5d3e2017-06-22 12:53:17 -0700249} // namespace init
250} // namespace android
251
Tom Cherrybac32992015-07-31 12:45:25 -0700252#endif