blob: ab52749fd60d29f7fa021a2f54ca3360809c94a0 [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001/*
2 * Copyright (C) 2008 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 <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <unistd.h>
21#include <fcntl.h>
22#include <ctype.h>
23#include <signal.h>
24#include <sys/wait.h>
25#include <sys/mount.h>
26#include <sys/stat.h>
27#include <sys/poll.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070028#include <errno.h>
29#include <stdarg.h>
30#include <mtd/mtd-user.h>
31#include <sys/types.h>
32#include <sys/socket.h>
33#include <sys/un.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050034
Stephen Smalleye46f9d52012-01-13 08:48:47 -050035#include <selinux/selinux.h>
36#include <selinux/label.h>
Stephen Smalleyae6f3d72012-05-01 15:02:53 -040037#include <selinux/android.h>
Stephen Smalleye46f9d52012-01-13 08:48:47 -050038
Colin Crossf83d0b92010-04-21 12:04:20 -070039#include <libgen.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070040
Dima Zavinda04c522011-09-01 17:09:44 -070041#include <cutils/list.h>
Nick Kralevich56fa0ac2013-06-24 17:41:40 -070042#include <cutils/android_reboot.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070043#include <cutils/sockets.h>
San Mehat4e221f02010-02-25 14:19:50 -080044#include <cutils/iosched_policy.h>
Alex Klyubin0d872d82013-08-16 13:19:24 -070045#include <cutils/fs.h>
Colin Crossf83d0b92010-04-21 12:04:20 -070046#include <private/android_filesystem_config.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070047#include <termios.h>
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070048
49#include <sys/system_properties.h>
50
51#include "devices.h"
52#include "init.h"
Colin Crossed8a7d82010-04-19 17:05:34 -070053#include "log.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070054#include "property_service.h"
The Android Open Source Project35237d12008-12-17 18:08:08 -080055#include "bootchart.h"
Colin Cross9c5366b2010-04-13 19:48:59 -070056#include "signal_handler.h"
Colin Crossa8666952010-04-13 19:20:44 -070057#include "keychords.h"
Colin Cross6310a822010-04-20 14:29:05 -070058#include "init_parser.h"
Colin Cross3899e9f2010-04-13 20:35:46 -070059#include "util.h"
Colin Crossf83d0b92010-04-21 12:04:20 -070060#include "ueventd.h"
Arve Hjønnevågd97d9072012-06-13 21:51:56 -070061#include "watchdogd.h"
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070062
Stephen Smalleye46f9d52012-01-13 08:48:47 -050063struct selabel_handle *sehandle;
rpcraig63207cd2012-08-09 10:05:49 -040064struct selabel_handle *sehandle_prop;
Stephen Smalleye46f9d52012-01-13 08:48:47 -050065
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070066static int property_triggers_enabled = 0;
67
68#if BOOTCHART
69static int bootchart_count;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070070#endif
71
72static char console[32];
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070073static char bootmode[32];
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070074static char hardware[32];
75static unsigned revision = 0;
76static char qemu[32];
77
Colin Crossebc6ff12010-04-13 19:52:01 -070078static struct action *cur_action = NULL;
79static struct command *cur_command = NULL;
80static struct listnode *command_queue = NULL;
81
Colin Cross9c5366b2010-04-13 19:48:59 -070082void notify_service_state(const char *name, const char *state)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070083{
84 char pname[PROP_NAME_MAX];
85 int len = strlen(name);
86 if ((len + 10) > PROP_NAME_MAX)
87 return;
88 snprintf(pname, sizeof(pname), "init.svc.%s", name);
89 property_set(pname, state);
90}
91
92static int have_console;
Hong-Mei Li11467182013-04-01 11:17:51 +080093static char console_name[PROP_VALUE_MAX] = "/dev/console";
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070094static time_t process_needs_restart;
95
96static const char *ENV[32];
97
98/* add_environment - add "key=value" to the current environment */
99int add_environment(const char *key, const char *val)
100{
101 int n;
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -0700102
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700103 for (n = 0; n < 31; n++) {
104 if (!ENV[n]) {
105 size_t len = strlen(key) + strlen(val) + 2;
106 char *entry = malloc(len);
107 snprintf(entry, len, "%s=%s", key, val);
108 ENV[n] = entry;
109 return 0;
110 }
111 }
112
113 return 1;
114}
115
116static void zap_stdio(void)
117{
118 int fd;
119 fd = open("/dev/null", O_RDWR);
120 dup2(fd, 0);
121 dup2(fd, 1);
122 dup2(fd, 2);
123 close(fd);
124}
125
126static void open_console()
127{
128 int fd;
129 if ((fd = open(console_name, O_RDWR)) < 0) {
130 fd = open("/dev/null", O_RDWR);
131 }
Colin Cross50fb5a62012-03-18 15:38:19 -0700132 ioctl(fd, TIOCSCTTY, 0);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700133 dup2(fd, 0);
134 dup2(fd, 1);
135 dup2(fd, 2);
136 close(fd);
137}
138
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700139static void publish_socket(const char *name, int fd)
140{
141 char key[64] = ANDROID_SOCKET_ENV_PREFIX;
142 char val[64];
143
144 strlcpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1,
145 name,
146 sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX));
147 snprintf(val, sizeof(val), "%d", fd);
148 add_environment(key, val);
149
150 /* make sure we don't close-on-exec */
151 fcntl(fd, F_SETFD, 0);
152}
153
San Mehatf24e2522009-05-19 13:30:46 -0700154void service_start(struct service *svc, const char *dynamic_args)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700155{
156 struct stat s;
157 pid_t pid;
158 int needs_console;
159 int n;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500160 char *scon = NULL;
161 int rc;
Kenny Rootb5982bf2012-10-16 23:07:05 -0700162
Ken Sumrall752923c2010-12-03 16:33:31 -0800163 /* starting a service removes it from the disabled or reset
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700164 * state and immediately takes it out of the restarting
165 * state if it was in there
166 */
Mike Kasickb54f39f2012-01-25 23:48:46 -0500167 svc->flags &= (~(SVC_DISABLED|SVC_RESTARTING|SVC_RESET|SVC_RESTART));
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700168 svc->time_started = 0;
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -0700169
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700170 /* running processes require no additional work -- if
171 * they're in the process of exiting, we've ensured
172 * that they will immediately restart on exit, unless
173 * they are ONESHOT
174 */
175 if (svc->flags & SVC_RUNNING) {
176 return;
177 }
178
179 needs_console = (svc->flags & SVC_CONSOLE) ? 1 : 0;
180 if (needs_console && (!have_console)) {
181 ERROR("service '%s' requires console\n", svc->name);
182 svc->flags |= SVC_DISABLED;
183 return;
184 }
185
186 if (stat(svc->args[0], &s) != 0) {
187 ERROR("cannot find '%s', disabling '%s'\n", svc->args[0], svc->name);
188 svc->flags |= SVC_DISABLED;
189 return;
190 }
191
San Mehatf24e2522009-05-19 13:30:46 -0700192 if ((!(svc->flags & SVC_ONESHOT)) && dynamic_args) {
San Mehatd4cdd132009-05-20 09:52:16 -0700193 ERROR("service '%s' must be one-shot to use dynamic args, disabling\n",
194 svc->args[0]);
San Mehatf24e2522009-05-19 13:30:46 -0700195 svc->flags |= SVC_DISABLED;
196 return;
197 }
198
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500199 if (is_selinux_enabled() > 0) {
Stephen Smalley30f30332012-11-16 14:34:27 -0500200 if (svc->seclabel) {
201 scon = strdup(svc->seclabel);
202 if (!scon) {
203 ERROR("Out of memory while starting '%s'\n", svc->name);
204 return;
205 }
206 } else {
207 char *mycon = NULL, *fcon = NULL;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500208
Stephen Smalley30f30332012-11-16 14:34:27 -0500209 INFO("computing context for service '%s'\n", svc->args[0]);
210 rc = getcon(&mycon);
211 if (rc < 0) {
212 ERROR("could not get context while starting '%s'\n", svc->name);
213 return;
214 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500215
Stephen Smalley30f30332012-11-16 14:34:27 -0500216 rc = getfilecon(svc->args[0], &fcon);
217 if (rc < 0) {
218 ERROR("could not get context while starting '%s'\n", svc->name);
219 freecon(mycon);
220 return;
221 }
222
223 rc = security_compute_create(mycon, fcon, string_to_security_class("process"), &scon);
Stephen Smalleyaf06c672013-12-09 15:40:24 -0500224 if (rc == 0 && !strcmp(scon, mycon)) {
225 ERROR("Warning! Service %s needs a SELinux domain defined; please fix!\n", svc->name);
226 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500227 freecon(mycon);
Stephen Smalley30f30332012-11-16 14:34:27 -0500228 freecon(fcon);
229 if (rc < 0) {
230 ERROR("could not get context while starting '%s'\n", svc->name);
231 return;
232 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500233 }
234 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500235
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700236 NOTICE("starting '%s'\n", svc->name);
237
238 pid = fork();
239
240 if (pid == 0) {
241 struct socketinfo *si;
242 struct svcenvinfo *ei;
243 char tmp[32];
244 int fd, sz;
245
Nick Kralevich6ebf12f2012-03-26 09:09:11 -0700246 umask(077);
Colin Cross3294bbb2010-04-19 17:11:33 -0700247 if (properties_inited()) {
248 get_property_workspace(&fd, &sz);
249 sprintf(tmp, "%d,%d", dup(fd), sz);
250 add_environment("ANDROID_PROPERTY_WORKSPACE", tmp);
251 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700252
253 for (ei = svc->envvars; ei; ei = ei->next)
254 add_environment(ei->name, ei->value);
255
256 for (si = svc->sockets; si; si = si->next) {
Mike Lockwood912ff852010-10-01 08:20:36 -0400257 int socket_type = (
258 !strcmp(si->type, "stream") ? SOCK_STREAM :
259 (!strcmp(si->type, "dgram") ? SOCK_DGRAM : SOCK_SEQPACKET));
260 int s = create_socket(si->name, socket_type,
Stephen Smalley8348d272013-05-13 12:37:04 -0400261 si->perm, si->uid, si->gid, si->socketcon ?: scon);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700262 if (s >= 0) {
263 publish_socket(si->name, s);
264 }
265 }
266
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500267 freecon(scon);
268 scon = NULL;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500269
San Mehat4e221f02010-02-25 14:19:50 -0800270 if (svc->ioprio_class != IoSchedClass_NONE) {
271 if (android_set_ioprio(getpid(), svc->ioprio_class, svc->ioprio_pri)) {
272 ERROR("Failed to set pid %d ioprio = %d,%d: %s\n",
273 getpid(), svc->ioprio_class, svc->ioprio_pri, strerror(errno));
274 }
275 }
276
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700277 if (needs_console) {
278 setsid();
279 open_console();
280 } else {
281 zap_stdio();
282 }
283
284#if 0
285 for (n = 0; svc->args[n]; n++) {
286 INFO("args[%d] = '%s'\n", n, svc->args[n]);
287 }
288 for (n = 0; ENV[n]; n++) {
289 INFO("env[%d] = '%s'\n", n, ENV[n]);
290 }
291#endif
292
293 setpgid(0, getpid());
294
The Android Open Source Project5ae090e2009-01-09 17:51:25 -0800295 /* as requested, set our gid, supplemental gids, and uid */
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700296 if (svc->gid) {
Nick Kralevich22687182010-11-17 16:55:42 -0800297 if (setgid(svc->gid) != 0) {
298 ERROR("setgid failed: %s\n", strerror(errno));
299 _exit(127);
300 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700301 }
302 if (svc->nr_supp_gids) {
Nick Kralevich22687182010-11-17 16:55:42 -0800303 if (setgroups(svc->nr_supp_gids, svc->supp_gids) != 0) {
304 ERROR("setgroups failed: %s\n", strerror(errno));
305 _exit(127);
306 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700307 }
308 if (svc->uid) {
Nick Kralevich22687182010-11-17 16:55:42 -0800309 if (setuid(svc->uid) != 0) {
310 ERROR("setuid failed: %s\n", strerror(errno));
311 _exit(127);
312 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700313 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500314 if (svc->seclabel) {
315 if (is_selinux_enabled() > 0 && setexeccon(svc->seclabel) < 0) {
316 ERROR("cannot setexeccon('%s'): %s\n", svc->seclabel, strerror(errno));
317 _exit(127);
318 }
319 }
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500320
San Mehat8ad15682009-05-20 08:50:40 -0700321 if (!dynamic_args) {
322 if (execve(svc->args[0], (char**) svc->args, (char**) ENV) < 0) {
323 ERROR("cannot execve('%s'): %s\n", svc->args[0], strerror(errno));
324 }
325 } else {
Colin Cross6310a822010-04-20 14:29:05 -0700326 char *arg_ptrs[INIT_PARSER_MAXARGS+1];
San Mehatd4cdd132009-05-20 09:52:16 -0700327 int arg_idx = svc->nargs;
San Mehatf24e2522009-05-19 13:30:46 -0700328 char *tmp = strdup(dynamic_args);
San Mehatd4cdd132009-05-20 09:52:16 -0700329 char *next = tmp;
330 char *bword;
San Mehatf24e2522009-05-19 13:30:46 -0700331
332 /* Copy the static arguments */
San Mehatd4cdd132009-05-20 09:52:16 -0700333 memcpy(arg_ptrs, svc->args, (svc->nargs * sizeof(char *)));
San Mehatf24e2522009-05-19 13:30:46 -0700334
San Mehatd4cdd132009-05-20 09:52:16 -0700335 while((bword = strsep(&next, " "))) {
336 arg_ptrs[arg_idx++] = bword;
Colin Cross6310a822010-04-20 14:29:05 -0700337 if (arg_idx == INIT_PARSER_MAXARGS)
San Mehatf24e2522009-05-19 13:30:46 -0700338 break;
San Mehatf24e2522009-05-19 13:30:46 -0700339 }
340 arg_ptrs[arg_idx] = '\0';
341 execve(svc->args[0], (char**) arg_ptrs, (char**) ENV);
Ivan Djelic165de922008-11-23 22:26:39 +0100342 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700343 _exit(127);
344 }
345
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500346 freecon(scon);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500347
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700348 if (pid < 0) {
349 ERROR("failed to start '%s'\n", svc->name);
350 svc->pid = 0;
351 return;
352 }
353
354 svc->time_started = gettime();
355 svc->pid = pid;
356 svc->flags |= SVC_RUNNING;
357
Colin Cross3294bbb2010-04-19 17:11:33 -0700358 if (properties_inited())
359 notify_service_state(svc->name, "running");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700360}
361
Mike Kasickb54f39f2012-01-25 23:48:46 -0500362/* The how field should be either SVC_DISABLED, SVC_RESET, or SVC_RESTART */
Ken Sumrall752923c2010-12-03 16:33:31 -0800363static void service_stop_or_reset(struct service *svc, int how)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700364{
Mike Kasick7e36edd2012-02-06 10:32:13 -0500365 /* The service is still SVC_RUNNING until its process exits, but if it has
366 * already exited it shoudn't attempt a restart yet. */
367 svc->flags &= (~SVC_RESTARTING);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700368
Mike Kasickb54f39f2012-01-25 23:48:46 -0500369 if ((how != SVC_DISABLED) && (how != SVC_RESET) && (how != SVC_RESTART)) {
Ken Sumrall752923c2010-12-03 16:33:31 -0800370 /* Hrm, an illegal flag. Default to SVC_DISABLED */
371 how = SVC_DISABLED;
372 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700373 /* if the service has not yet started, prevent
374 * it from auto-starting with its class
375 */
Ken Sumralla2864802011-10-26 16:56:00 -0700376 if (how == SVC_RESET) {
377 svc->flags |= (svc->flags & SVC_RC_DISABLED) ? SVC_DISABLED : SVC_RESET;
378 } else {
379 svc->flags |= how;
380 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700381
382 if (svc->pid) {
383 NOTICE("service '%s' is being killed\n", svc->name);
Ken Sumrall752923c2010-12-03 16:33:31 -0800384 kill(-svc->pid, SIGKILL);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700385 notify_service_state(svc->name, "stopping");
386 } else {
387 notify_service_state(svc->name, "stopped");
388 }
389}
390
Ken Sumrall752923c2010-12-03 16:33:31 -0800391void service_reset(struct service *svc)
392{
393 service_stop_or_reset(svc, SVC_RESET);
394}
395
396void service_stop(struct service *svc)
397{
398 service_stop_or_reset(svc, SVC_DISABLED);
399}
400
Mike Kasickb54f39f2012-01-25 23:48:46 -0500401void service_restart(struct service *svc)
402{
403 if (svc->flags & SVC_RUNNING) {
404 /* Stop, wait, then start the service. */
405 service_stop_or_reset(svc, SVC_RESTART);
406 } else if (!(svc->flags & SVC_RESTARTING)) {
407 /* Just start the service since it's not running. */
408 service_start(svc, NULL);
409 } /* else: Service is restarting anyways. */
410}
411
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700412void property_changed(const char *name, const char *value)
413{
Colin Crossebc6ff12010-04-13 19:52:01 -0700414 if (property_triggers_enabled)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700415 queue_property_triggers(name, value);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700416}
417
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700418static void restart_service_if_needed(struct service *svc)
419{
420 time_t next_start_time = svc->time_started + 5;
421
422 if (next_start_time <= gettime()) {
423 svc->flags &= (~SVC_RESTARTING);
San Mehatf24e2522009-05-19 13:30:46 -0700424 service_start(svc, NULL);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700425 return;
426 }
427
428 if ((next_start_time < process_needs_restart) ||
429 (process_needs_restart == 0)) {
430 process_needs_restart = next_start_time;
431 }
432}
433
434static void restart_processes()
435{
436 process_needs_restart = 0;
437 service_for_each_flags(SVC_RESTARTING,
438 restart_service_if_needed);
439}
440
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700441static void msg_start(const char *name)
442{
Hong-Mei Li11467182013-04-01 11:17:51 +0800443 struct service *svc = NULL;
San Mehatf24e2522009-05-19 13:30:46 -0700444 char *tmp = NULL;
445 char *args = NULL;
446
447 if (!strchr(name, ':'))
448 svc = service_find_by_name(name);
449 else {
450 tmp = strdup(name);
Hong-Mei Li11467182013-04-01 11:17:51 +0800451 if (tmp) {
452 args = strchr(tmp, ':');
453 *args = '\0';
454 args++;
San Mehatf24e2522009-05-19 13:30:46 -0700455
Hong-Mei Li11467182013-04-01 11:17:51 +0800456 svc = service_find_by_name(tmp);
457 }
San Mehatf24e2522009-05-19 13:30:46 -0700458 }
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -0700459
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700460 if (svc) {
San Mehatf24e2522009-05-19 13:30:46 -0700461 service_start(svc, args);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700462 } else {
463 ERROR("no such service '%s'\n", name);
464 }
San Mehatf24e2522009-05-19 13:30:46 -0700465 if (tmp)
466 free(tmp);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700467}
468
469static void msg_stop(const char *name)
470{
471 struct service *svc = service_find_by_name(name);
472
473 if (svc) {
474 service_stop(svc);
475 } else {
Dima Zavin770354d2009-05-05 18:33:07 -0700476 ERROR("no such service '%s'\n", name);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700477 }
478}
479
Mike Kasickb54f39f2012-01-25 23:48:46 -0500480static void msg_restart(const char *name)
481{
482 struct service *svc = service_find_by_name(name);
483
484 if (svc) {
485 service_restart(svc);
486 } else {
487 ERROR("no such service '%s'\n", name);
488 }
489}
490
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700491void handle_control_message(const char *msg, const char *arg)
492{
493 if (!strcmp(msg,"start")) {
494 msg_start(arg);
495 } else if (!strcmp(msg,"stop")) {
496 msg_stop(arg);
Wink Savillecfa0d842010-10-03 13:30:11 -0700497 } else if (!strcmp(msg,"restart")) {
Mike Kasickb54f39f2012-01-25 23:48:46 -0500498 msg_restart(arg);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700499 } else {
500 ERROR("unknown control msg '%s'\n", msg);
501 }
502}
503
Colin Crossebc6ff12010-04-13 19:52:01 -0700504static struct command *get_first_command(struct action *act)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700505{
506 struct listnode *node;
Colin Crossebc6ff12010-04-13 19:52:01 -0700507 node = list_head(&act->commands);
Dima Zavin3bea0792011-08-26 13:59:18 -0700508 if (!node || list_empty(&act->commands))
Colin Crossebc6ff12010-04-13 19:52:01 -0700509 return NULL;
510
511 return node_to_item(node, struct command, clist);
512}
513
514static struct command *get_next_command(struct action *act, struct command *cmd)
515{
516 struct listnode *node;
517 node = cmd->clist.next;
518 if (!node)
519 return NULL;
520 if (node == &act->commands)
521 return NULL;
522
523 return node_to_item(node, struct command, clist);
524}
525
526static int is_last_command(struct action *act, struct command *cmd)
527{
528 return (list_tail(&act->commands) == &cmd->clist);
529}
530
531void execute_one_command(void)
532{
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700533 int ret;
534
Colin Crossebc6ff12010-04-13 19:52:01 -0700535 if (!cur_action || !cur_command || is_last_command(cur_action, cur_command)) {
536 cur_action = action_remove_queue_head();
Colin Crossebd46132010-04-22 11:52:23 -0700537 cur_command = NULL;
Colin Crossebc6ff12010-04-13 19:52:01 -0700538 if (!cur_action)
539 return;
540 INFO("processing action %p (%s)\n", cur_action, cur_action->name);
541 cur_command = get_first_command(cur_action);
542 } else {
543 cur_command = get_next_command(cur_action, cur_command);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700544 }
Colin Crossebc6ff12010-04-13 19:52:01 -0700545
546 if (!cur_command)
547 return;
548
549 ret = cur_command->func(cur_command->nargs, cur_command->args);
550 INFO("command '%s' r=%d\n", cur_command->args[0], ret);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700551}
552
Colin Crossf83d0b92010-04-21 12:04:20 -0700553static int wait_for_coldboot_done_action(int nargs, char **args)
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700554{
Colin Crossf83d0b92010-04-21 12:04:20 -0700555 int ret;
556 INFO("wait for %s\n", coldboot_done);
557 ret = wait_for_file(coldboot_done, COMMAND_RETRY_TIMEOUT);
558 if (ret)
559 ERROR("Timed out waiting for %s\n", coldboot_done);
560 return ret;
Colin Crossebc6ff12010-04-13 19:52:01 -0700561}
562
Alex Klyubin0d872d82013-08-16 13:19:24 -0700563/*
564 * Writes 512 bytes of output from Hardware RNG (/dev/hw_random, backed
565 * by Linux kernel's hw_random framework) into Linux RNG's via /dev/urandom.
566 * Does nothing if Hardware RNG is not present.
567 *
568 * Since we don't yet trust the quality of Hardware RNG, these bytes are not
569 * mixed into the primary pool of Linux RNG and the entropy estimate is left
570 * unmodified.
571 *
572 * If the HW RNG device /dev/hw_random is present, we require that at least
573 * 512 bytes read from it are written into Linux RNG. QA is expected to catch
574 * devices/configurations where these I/O operations are blocking for a long
575 * time. We do not reboot or halt on failures, as this is a best-effort
576 * attempt.
577 */
578static int mix_hwrng_into_linux_rng_action(int nargs, char **args)
579{
580 int result = -1;
581 int hwrandom_fd = -1;
582 int urandom_fd = -1;
583 char buf[512];
584 ssize_t chunk_size;
585 size_t total_bytes_written = 0;
586
587 hwrandom_fd = TEMP_FAILURE_RETRY(
588 open("/dev/hw_random", O_RDONLY | O_NOFOLLOW));
589 if (hwrandom_fd == -1) {
590 if (errno == ENOENT) {
591 ERROR("/dev/hw_random not found\n");
592 /* It's not an error to not have a Hardware RNG. */
593 result = 0;
594 } else {
595 ERROR("Failed to open /dev/hw_random: %s\n", strerror(errno));
596 }
597 goto ret;
598 }
599
600 urandom_fd = TEMP_FAILURE_RETRY(
601 open("/dev/urandom", O_WRONLY | O_NOFOLLOW));
602 if (urandom_fd == -1) {
603 ERROR("Failed to open /dev/urandom: %s\n", strerror(errno));
604 goto ret;
605 }
606
607 while (total_bytes_written < sizeof(buf)) {
608 chunk_size = TEMP_FAILURE_RETRY(
609 read(hwrandom_fd, buf, sizeof(buf) - total_bytes_written));
610 if (chunk_size == -1) {
611 ERROR("Failed to read from /dev/hw_random: %s\n", strerror(errno));
612 goto ret;
613 } else if (chunk_size == 0) {
614 ERROR("Failed to read from /dev/hw_random: EOF\n");
615 goto ret;
616 }
617
618 chunk_size = TEMP_FAILURE_RETRY(write(urandom_fd, buf, chunk_size));
619 if (chunk_size == -1) {
620 ERROR("Failed to write to /dev/urandom: %s\n", strerror(errno));
621 goto ret;
622 }
623 total_bytes_written += chunk_size;
624 }
625
626 INFO("Mixed %d bytes from /dev/hw_random into /dev/urandom",
627 total_bytes_written);
628 result = 0;
629
630ret:
631 if (hwrandom_fd != -1) {
632 close(hwrandom_fd);
633 }
634 if (urandom_fd != -1) {
635 close(urandom_fd);
636 }
637 memset(buf, 0, sizeof(buf));
638 return result;
639}
640
Colin Crossebc6ff12010-04-13 19:52:01 -0700641static int keychord_init_action(int nargs, char **args)
642{
643 keychord_init();
644 return 0;
645}
646
647static int console_init_action(int nargs, char **args)
648{
649 int fd;
Colin Crossebc6ff12010-04-13 19:52:01 -0700650
651 if (console[0]) {
Hong-Mei Li11467182013-04-01 11:17:51 +0800652 snprintf(console_name, sizeof(console_name), "/dev/%s", console);
Colin Crossebc6ff12010-04-13 19:52:01 -0700653 }
654
655 fd = open(console_name, O_RDWR);
656 if (fd >= 0)
657 have_console = 1;
658 close(fd);
659
Marcin Chojnacki50dc9362013-10-16 17:39:16 +0200660 fd = open("/dev/tty0", O_WRONLY);
661 if (fd >= 0) {
662 const char *msg;
663 msg = "\n"
664 "\n"
665 "\n"
666 "\n"
667 "\n"
668 "\n"
669 "\n" // console is 40 cols x 30 lines
670 "\n"
671 "\n"
672 "\n"
673 "\n"
674 "\n"
675 "\n"
676 "\n"
677 " A N D R O I D ";
678 write(fd, msg, strlen(msg));
679 close(fd);
Colin Crossebc6ff12010-04-13 19:52:01 -0700680 }
Marcin Chojnacki50dc9362013-10-16 17:39:16 +0200681
Colin Crossebc6ff12010-04-13 19:52:01 -0700682 return 0;
683}
684
Dima Zavin5511c842011-12-19 11:21:32 -0800685static void import_kernel_nv(char *name, int for_emulator)
686{
687 char *value = strchr(name, '=');
688 int name_len = strlen(name);
689
690 if (value == 0) return;
691 *value++ = 0;
692 if (name_len == 0) return;
693
694 if (for_emulator) {
695 /* in the emulator, export any kernel option with the
696 * ro.kernel. prefix */
697 char buff[PROP_NAME_MAX];
698 int len = snprintf( buff, sizeof(buff), "ro.kernel.%s", name );
699
700 if (len < (int)sizeof(buff))
701 property_set( buff, value );
702 return;
703 }
704
705 if (!strcmp(name,"qemu")) {
706 strlcpy(qemu, value, sizeof(qemu));
707 } else if (!strncmp(name, "androidboot.", 12) && name_len > 12) {
708 const char *boot_prop_name = name + 12;
709 char prop[PROP_NAME_MAX];
710 int cnt;
711
712 cnt = snprintf(prop, sizeof(prop), "ro.boot.%s", boot_prop_name);
713 if (cnt < PROP_NAME_MAX)
714 property_set(prop, value);
715 }
716}
717
718static void export_kernel_boot_props(void)
Colin Crossebc6ff12010-04-13 19:52:01 -0700719{
720 char tmp[PROP_VALUE_MAX];
Colin Cross1a6f4c32013-01-28 17:13:35 -0800721 int ret;
Dima Zavin5511c842011-12-19 11:21:32 -0800722 unsigned i;
723 struct {
724 const char *src_prop;
725 const char *dest_prop;
726 const char *def_val;
727 } prop_map[] = {
728 { "ro.boot.serialno", "ro.serialno", "", },
729 { "ro.boot.mode", "ro.bootmode", "unknown", },
730 { "ro.boot.baseband", "ro.baseband", "unknown", },
Dima Zavin5511c842011-12-19 11:21:32 -0800731 { "ro.boot.bootloader", "ro.bootloader", "unknown", },
732 };
Colin Crossebc6ff12010-04-13 19:52:01 -0700733
Dima Zavin5511c842011-12-19 11:21:32 -0800734 for (i = 0; i < ARRAY_SIZE(prop_map); i++) {
Colin Cross1a6f4c32013-01-28 17:13:35 -0800735 ret = property_get(prop_map[i].src_prop, tmp);
Colin Cross5e484e92013-06-17 16:20:08 -0700736 if (ret > 0)
737 property_set(prop_map[i].dest_prop, tmp);
738 else
Colin Cross1a6f4c32013-01-28 17:13:35 -0800739 property_set(prop_map[i].dest_prop, prop_map[i].def_val);
Dima Zavin5511c842011-12-19 11:21:32 -0800740 }
Colin Crossebc6ff12010-04-13 19:52:01 -0700741
Colin Cross1a6f4c32013-01-28 17:13:35 -0800742 ret = property_get("ro.boot.console", tmp);
743 if (ret)
744 strlcpy(console, tmp, sizeof(console));
Dima Zavin5511c842011-12-19 11:21:32 -0800745
746 /* save a copy for init's usage during boot */
Colin Cross1a6f4c32013-01-28 17:13:35 -0800747 property_get("ro.bootmode", tmp);
748 strlcpy(bootmode, tmp, sizeof(bootmode));
Dima Zavin5511c842011-12-19 11:21:32 -0800749
750 /* if this was given on kernel command line, override what we read
751 * before (e.g. from /proc/cpuinfo), if anything */
Colin Cross1a6f4c32013-01-28 17:13:35 -0800752 ret = property_get("ro.boot.hardware", tmp);
753 if (ret)
754 strlcpy(hardware, tmp, sizeof(hardware));
Dima Zavin5511c842011-12-19 11:21:32 -0800755 property_set("ro.hardware", hardware);
756
757 snprintf(tmp, PROP_VALUE_MAX, "%d", revision);
758 property_set("ro.revision", tmp);
759
760 /* TODO: these are obsolete. We should delete them */
Colin Crossebc6ff12010-04-13 19:52:01 -0700761 if (!strcmp(bootmode,"factory"))
762 property_set("ro.factorytest", "1");
763 else if (!strcmp(bootmode,"factory2"))
764 property_set("ro.factorytest", "2");
765 else
766 property_set("ro.factorytest", "0");
Dima Zavin5511c842011-12-19 11:21:32 -0800767}
Colin Crossebc6ff12010-04-13 19:52:01 -0700768
Dima Zavin5511c842011-12-19 11:21:32 -0800769static void process_kernel_cmdline(void)
770{
771 /* don't expose the raw commandline to nonpriv processes */
772 chmod("/proc/cmdline", 0440);
Colin Crossebc6ff12010-04-13 19:52:01 -0700773
Dima Zavin5511c842011-12-19 11:21:32 -0800774 /* first pass does the common stuff, and finds if we are in qemu.
775 * second pass is only necessary for qemu to export all kernel params
776 * as props.
777 */
778 import_kernel_cmdline(0, import_kernel_nv);
779 if (qemu[0])
780 import_kernel_cmdline(1, import_kernel_nv);
781
782 /* now propogate the info given on command line to internal variables
783 * used by init as well as the current required properties
784 */
785 export_kernel_boot_props();
Colin Crossebc6ff12010-04-13 19:52:01 -0700786}
787
788static int property_service_init_action(int nargs, char **args)
789{
790 /* read any property files on system or data and
791 * fire up the property service. This must happen
792 * after the ro.foo properties are set above so
793 * that /data/local.prop cannot interfere with them.
794 */
795 start_property_service();
796 return 0;
797}
798
799static int signal_init_action(int nargs, char **args)
800{
801 signal_init();
802 return 0;
803}
804
805static int check_startup_action(int nargs, char **args)
806{
807 /* make sure we actually have all the pieces we need */
Colin Crossf83d0b92010-04-21 12:04:20 -0700808 if ((get_property_set_fd() < 0) ||
Colin Crossebc6ff12010-04-13 19:52:01 -0700809 (get_signal_fd() < 0)) {
810 ERROR("init startup failure\n");
811 exit(1);
812 }
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700813
814 /* signal that we hit this point */
815 unlink("/dev/.booting");
816
Colin Crossebc6ff12010-04-13 19:52:01 -0700817 return 0;
818}
819
820static int queue_property_triggers_action(int nargs, char **args)
821{
822 queue_all_property_triggers();
823 /* enable property triggers */
824 property_triggers_enabled = 1;
825 return 0;
826}
827
828#if BOOTCHART
829static int bootchart_init_action(int nargs, char **args)
830{
831 bootchart_count = bootchart_init();
832 if (bootchart_count < 0) {
833 ERROR("bootcharting init failure\n");
834 } else if (bootchart_count > 0) {
835 NOTICE("bootcharting started (period=%d ms)\n", bootchart_count*BOOTCHART_POLLING_MS);
836 } else {
837 NOTICE("bootcharting ignored\n");
838 }
Carl-Emil Lagerstedt9ab81902011-01-14 09:35:30 +0100839
840 return 0;
Colin Crossebc6ff12010-04-13 19:52:01 -0700841}
842#endif
843
rpcraig63207cd2012-08-09 10:05:49 -0400844static const struct selinux_opt seopts_prop[] = {
repo sync49be2402013-05-17 12:48:34 -0700845 { SELABEL_OPT_PATH, "/data/security/property_contexts" },
rpcraig63207cd2012-08-09 10:05:49 -0400846 { SELABEL_OPT_PATH, "/property_contexts" },
847 { 0, NULL }
848};
849
850struct selabel_handle* selinux_android_prop_context_handle(void)
851{
852 int i = 0;
853 struct selabel_handle* sehandle = NULL;
854 while ((sehandle == NULL) && seopts_prop[i].value) {
855 sehandle = selabel_open(SELABEL_CTX_ANDROID_PROP, &seopts_prop[i], 1);
856 i++;
857 }
858
859 if (!sehandle) {
860 ERROR("SELinux: Could not load property_contexts: %s\n",
861 strerror(errno));
862 return NULL;
863 }
864 INFO("SELinux: Loaded property contexts from %s\n", seopts_prop[i - 1].value);
865 return sehandle;
866}
867
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400868void selinux_init_all_handles(void)
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500869{
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400870 sehandle = selinux_android_file_context_handle();
rpcraig63207cd2012-08-09 10:05:49 -0400871 sehandle_prop = selinux_android_prop_context_handle();
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400872}
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500873
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700874static bool selinux_is_disabled(void)
875{
876 char tmp[PROP_VALUE_MAX];
877
878 if (access("/sys/fs/selinux", F_OK) != 0) {
879 /* SELinux is not compiled into the kernel, or has been disabled
880 * via the kernel command line "selinux=0".
881 */
882 return true;
883 }
884
885 if ((property_get("ro.boot.selinux", tmp) != 0) && (strcmp(tmp, "disabled") == 0)) {
886 /* SELinux is compiled into the kernel, but we've been told to disable it. */
887 return true;
888 }
889
890 return false;
891}
892
893static bool selinux_is_enforcing(void)
894{
895 char tmp[PROP_VALUE_MAX];
896
897 if (property_get("ro.boot.selinux", tmp) == 0) {
898 /* Property is not set. Assume enforcing */
899 return true;
900 }
901
902 if (strcmp(tmp, "permissive") == 0) {
903 /* SELinux is in the kernel, but we've been told to go into permissive mode */
904 return false;
905 }
906
907 if (strcmp(tmp, "enforcing") != 0) {
908 ERROR("SELinux: Unknown value of ro.boot.selinux. Got: \"%s\". Assuming enforcing.\n", tmp);
909 }
910
911 return true;
912}
913
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400914int selinux_reload_policy(void)
915{
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700916 if (selinux_is_disabled()) {
917 return -1;
918 }
919
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400920 INFO("SELinux: Attempting to reload policy files\n");
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500921
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400922 if (selinux_android_reload_policy() == -1) {
923 return -1;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500924 }
925
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400926 if (sehandle)
927 selabel_close(sehandle);
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500928
rpcraig63207cd2012-08-09 10:05:49 -0400929 if (sehandle_prop)
930 selabel_close(sehandle_prop);
931
Stephen Smalleyae6f3d72012-05-01 15:02:53 -0400932 selinux_init_all_handles();
933 return 0;
Stephen Smalleye46f9d52012-01-13 08:48:47 -0500934}
rpcraig63207cd2012-08-09 10:05:49 -0400935
936int audit_callback(void *data, security_class_t cls, char *buf, size_t len)
937{
938 snprintf(buf, len, "property=%s", !data ? "NULL" : (char *)data);
939 return 0;
940}
941
Nick Kralevich56fa0ac2013-06-24 17:41:40 -0700942static void selinux_initialize(void)
943{
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700944 if (selinux_is_disabled()) {
Nick Kralevich56fa0ac2013-06-24 17:41:40 -0700945 return;
946 }
947
948 INFO("loading selinux policy\n");
949 if (selinux_android_load_policy() < 0) {
950 ERROR("SELinux: Failed to load policy; rebooting into recovery mode\n");
951 android_reboot(ANDROID_RB_RESTART2, 0, "recovery");
952 while (1) { pause(); } // never reached
953 }
954
955 selinux_init_all_handles();
Nick Kralevich935bd3e2013-06-26 15:37:26 -0700956 bool is_enforcing = selinux_is_enforcing();
957 INFO("SELinux: security_setenforce(%d)\n", is_enforcing);
958 security_setenforce(is_enforcing);
Nick Kralevich56fa0ac2013-06-24 17:41:40 -0700959}
960
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700961int main(int argc, char **argv)
962{
Colin Crossebc6ff12010-04-13 19:52:01 -0700963 int fd_count = 0;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700964 struct pollfd ufds[4];
965 char *tmpdev;
The Android Open Source Project5ae090e2009-01-09 17:51:25 -0800966 char* debuggable;
Colin Crossebc6ff12010-04-13 19:52:01 -0700967 char tmp[32];
Colin Crossebc6ff12010-04-13 19:52:01 -0700968 int property_set_fd_init = 0;
969 int signal_fd_init = 0;
970 int keychord_fd_init = 0;
Dima Zavind7634c92011-12-16 14:18:06 -0800971 bool is_charger = false;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700972
Colin Crossf83d0b92010-04-21 12:04:20 -0700973 if (!strcmp(basename(argv[0]), "ueventd"))
974 return ueventd_main(argc, argv);
975
Arve Hjønnevågd97d9072012-06-13 21:51:56 -0700976 if (!strcmp(basename(argv[0]), "watchdogd"))
977 return watchdogd_main(argc, argv);
978
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700979 /* clear the umask */
980 umask(0);
981
982 /* Get the basic filesystem setup we need put
983 * together in the initramdisk on / and then we'll
984 * let the rc file figure out the rest.
985 */
986 mkdir("/dev", 0755);
987 mkdir("/proc", 0755);
988 mkdir("/sys", 0755);
989
Nick Kralevich150f19e2010-06-22 16:35:43 -0700990 mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700991 mkdir("/dev/pts", 0755);
992 mkdir("/dev/socket", 0755);
993 mount("devpts", "/dev/pts", "devpts", 0, NULL);
994 mount("proc", "/proc", "proc", 0, NULL);
995 mount("sysfs", "/sys", "sysfs", 0, NULL);
996
Brian Swetland8d48c8e2011-03-24 15:45:30 -0700997 /* indicate that booting is in progress to background fw loaders, etc */
998 close(open("/dev/.booting", O_WRONLY | O_CREAT, 0000));
999
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001000 /* We must have some place other than / to create the
1001 * device nodes for kmsg and null, otherwise we won't
1002 * be able to remount / read-only later on.
1003 * Now that tmpfs is mounted on /dev, we can actually
1004 * talk to the outside world.
1005 */
1006 open_devnull_stdio();
Dima Zavin8f912822011-08-31 18:26:17 -07001007 klog_init();
Dima Zavin5511c842011-12-19 11:21:32 -08001008 property_init();
Vladimir Chtchetkine2b995432011-09-28 09:55:31 -07001009
Colin Crossf83d0b92010-04-21 12:04:20 -07001010 get_hardware_name(hardware, &revision);
Dima Zavind7634c92011-12-16 14:18:06 -08001011
Dima Zavin5511c842011-12-19 11:21:32 -08001012 process_kernel_cmdline();
1013
rpcraig63207cd2012-08-09 10:05:49 -04001014 union selinux_callback cb;
1015 cb.func_log = klog_write;
1016 selinux_set_callback(SELINUX_CB_LOG, cb);
1017
1018 cb.func_audit = audit_callback;
1019 selinux_set_callback(SELINUX_CB_AUDIT, cb);
1020
Nick Kralevich56fa0ac2013-06-24 17:41:40 -07001021 selinux_initialize();
Stephen Smalleyae6f3d72012-05-01 15:02:53 -04001022 /* These directories were necessarily created before initial policy load
Stephen Smalleye096e362012-06-11 13:37:39 -04001023 * and therefore need their security context restored to the proper value.
1024 * This must happen before /dev is populated by ueventd.
1025 */
1026 restorecon("/dev");
1027 restorecon("/dev/socket");
Geremy Condra8e15eab2013-02-28 17:29:58 -08001028 restorecon("/dev/__properties__");
Nick Kralevichae76f6d2013-07-11 15:38:26 -07001029 restorecon_recursive("/sys");
Stephen Smalleye46f9d52012-01-13 08:48:47 -05001030
Dima Zavind7634c92011-12-16 14:18:06 -08001031 is_charger = !strcmp(bootmode, "charger");
1032
1033 INFO("property init\n");
Dima Zavin5511c842011-12-19 11:21:32 -08001034 if (!is_charger)
1035 property_load_boot_defaults();
Dima Zavind7634c92011-12-16 14:18:06 -08001036
1037 INFO("reading config file\n");
1038 init_parse_config_file("/init.rc");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001039
1040 action_for_each_trigger("early-init", action_add_queue_tail);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001041
Colin Crossf83d0b92010-04-21 12:04:20 -07001042 queue_builtin_action(wait_for_coldboot_done_action, "wait_for_coldboot_done");
Alex Klyubin0d872d82013-08-16 13:19:24 -07001043 queue_builtin_action(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
Colin Crossebc6ff12010-04-13 19:52:01 -07001044 queue_builtin_action(keychord_init_action, "keychord_init");
1045 queue_builtin_action(console_init_action, "console_init");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001046
Dima Zavinca47cef2011-08-24 15:28:23 -07001047 /* execute all the boot actions to get us started */
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001048 action_for_each_trigger("init", action_add_queue_tail);
Dima Zavinca47cef2011-08-24 15:28:23 -07001049
1050 /* skip mounting filesystems in charger mode */
Dima Zavind7634c92011-12-16 14:18:06 -08001051 if (!is_charger) {
Dima Zavinca47cef2011-08-24 15:28:23 -07001052 action_for_each_trigger("early-fs", action_add_queue_tail);
1053 action_for_each_trigger("fs", action_add_queue_tail);
1054 action_for_each_trigger("post-fs", action_add_queue_tail);
1055 action_for_each_trigger("post-fs-data", action_add_queue_tail);
1056 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001057
Alex Klyubin0d872d82013-08-16 13:19:24 -07001058 /* Repeat mix_hwrng_into_linux_rng in case /dev/hw_random or /dev/random
1059 * wasn't ready immediately after wait_for_coldboot_done
1060 */
1061 queue_builtin_action(mix_hwrng_into_linux_rng_action, "mix_hwrng_into_linux_rng");
1062
Colin Crossebc6ff12010-04-13 19:52:01 -07001063 queue_builtin_action(property_service_init_action, "property_service_init");
1064 queue_builtin_action(signal_init_action, "signal_init");
1065 queue_builtin_action(check_startup_action, "check_startup");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001066
Dima Zavind7634c92011-12-16 14:18:06 -08001067 if (is_charger) {
Dima Zavinca47cef2011-08-24 15:28:23 -07001068 action_for_each_trigger("charger", action_add_queue_tail);
1069 } else {
1070 action_for_each_trigger("early-boot", action_add_queue_tail);
1071 action_for_each_trigger("boot", action_add_queue_tail);
1072 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001073
1074 /* run all property triggers based on current state of the properties */
Chris Dearman469b7b22012-03-01 15:29:20 -08001075 queue_builtin_action(queue_property_triggers_action, "queue_property_triggers");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001076
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001077
1078#if BOOTCHART
Colin Crossebc6ff12010-04-13 19:52:01 -07001079 queue_builtin_action(bootchart_init_action, "bootchart_init");
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001080#endif
1081
1082 for(;;) {
The Android Open Source Project5ae090e2009-01-09 17:51:25 -08001083 int nr, i, timeout = -1;
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001084
Colin Crossebc6ff12010-04-13 19:52:01 -07001085 execute_one_command();
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001086 restart_processes();
1087
Colin Crossebc6ff12010-04-13 19:52:01 -07001088 if (!property_set_fd_init && get_property_set_fd() > 0) {
1089 ufds[fd_count].fd = get_property_set_fd();
1090 ufds[fd_count].events = POLLIN;
1091 ufds[fd_count].revents = 0;
1092 fd_count++;
1093 property_set_fd_init = 1;
1094 }
1095 if (!signal_fd_init && get_signal_fd() > 0) {
1096 ufds[fd_count].fd = get_signal_fd();
1097 ufds[fd_count].events = POLLIN;
1098 ufds[fd_count].revents = 0;
1099 fd_count++;
1100 signal_fd_init = 1;
1101 }
1102 if (!keychord_fd_init && get_keychord_fd() > 0) {
1103 ufds[fd_count].fd = get_keychord_fd();
1104 ufds[fd_count].events = POLLIN;
1105 ufds[fd_count].revents = 0;
1106 fd_count++;
1107 keychord_fd_init = 1;
1108 }
1109
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001110 if (process_needs_restart) {
1111 timeout = (process_needs_restart - gettime()) * 1000;
1112 if (timeout < 0)
1113 timeout = 0;
1114 }
1115
Colin Crossebd46132010-04-22 11:52:23 -07001116 if (!action_queue_empty() || cur_action)
Colin Crossebc6ff12010-04-13 19:52:01 -07001117 timeout = 0;
1118
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001119#if BOOTCHART
1120 if (bootchart_count > 0) {
1121 if (timeout < 0 || timeout > BOOTCHART_POLLING_MS)
1122 timeout = BOOTCHART_POLLING_MS;
1123 if (bootchart_step() < 0 || --bootchart_count == 0) {
1124 bootchart_finish();
1125 bootchart_count = 0;
1126 }
1127 }
1128#endif
Colin Crossebc6ff12010-04-13 19:52:01 -07001129
The Android Open Source Project5ae090e2009-01-09 17:51:25 -08001130 nr = poll(ufds, fd_count, timeout);
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001131 if (nr <= 0)
1132 continue;
1133
Colin Crossebc6ff12010-04-13 19:52:01 -07001134 for (i = 0; i < fd_count; i++) {
Amir Goldstein1d4e86c2013-11-10 15:36:58 +02001135 if (ufds[i].revents & POLLIN) {
Colin Crossf83d0b92010-04-21 12:04:20 -07001136 if (ufds[i].fd == get_property_set_fd())
Colin Crossebc6ff12010-04-13 19:52:01 -07001137 handle_property_set_fd();
1138 else if (ufds[i].fd == get_keychord_fd())
1139 handle_keychord();
1140 else if (ufds[i].fd == get_signal_fd())
1141 handle_signal();
1142 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001143 }
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001144 }
1145
1146 return 0;
1147}