The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | /* |
| 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 Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 28 | #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 Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 34 | |
| 35 | #ifdef HAVE_SELINUX |
| 36 | #include <sys/mman.h> |
| 37 | #include <selinux/selinux.h> |
| 38 | #include <selinux/label.h> |
| 39 | #endif |
| 40 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 41 | #include <libgen.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 42 | |
Dima Zavin | da04c52 | 2011-09-01 17:09:44 -0700 | [diff] [blame] | 43 | #include <cutils/list.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 44 | #include <cutils/sockets.h> |
San Mehat | 4e221f0 | 2010-02-25 14:19:50 -0800 | [diff] [blame] | 45 | #include <cutils/iosched_policy.h> |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 46 | #include <private/android_filesystem_config.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 47 | #include <termios.h> |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 48 | |
| 49 | #include <sys/system_properties.h> |
| 50 | |
| 51 | #include "devices.h" |
| 52 | #include "init.h" |
Colin Cross | ed8a7d8 | 2010-04-19 17:05:34 -0700 | [diff] [blame] | 53 | #include "log.h" |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 54 | #include "property_service.h" |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 55 | #include "bootchart.h" |
Colin Cross | 9c5366b | 2010-04-13 19:48:59 -0700 | [diff] [blame] | 56 | #include "signal_handler.h" |
Colin Cross | a866695 | 2010-04-13 19:20:44 -0700 | [diff] [blame] | 57 | #include "keychords.h" |
Colin Cross | 6310a82 | 2010-04-20 14:29:05 -0700 | [diff] [blame] | 58 | #include "init_parser.h" |
Colin Cross | 3899e9f | 2010-04-13 20:35:46 -0700 | [diff] [blame] | 59 | #include "util.h" |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 60 | #include "ueventd.h" |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 61 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 62 | #ifdef HAVE_SELINUX |
| 63 | struct selabel_handle *sehandle; |
| 64 | #endif |
| 65 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 66 | static int property_triggers_enabled = 0; |
| 67 | |
| 68 | #if BOOTCHART |
| 69 | static int bootchart_count; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 70 | #endif |
| 71 | |
| 72 | static char console[32]; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 73 | static char bootmode[32]; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 74 | static char hardware[32]; |
| 75 | static unsigned revision = 0; |
| 76 | static char qemu[32]; |
| 77 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 78 | #ifdef HAVE_SELINUX |
| 79 | static int selinux_enabled = 1; |
| 80 | static int selinux_enforcing = 0; |
| 81 | #endif |
| 82 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 83 | static struct action *cur_action = NULL; |
| 84 | static struct command *cur_command = NULL; |
| 85 | static struct listnode *command_queue = NULL; |
| 86 | |
Colin Cross | 9c5366b | 2010-04-13 19:48:59 -0700 | [diff] [blame] | 87 | void notify_service_state(const char *name, const char *state) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 88 | { |
| 89 | char pname[PROP_NAME_MAX]; |
| 90 | int len = strlen(name); |
| 91 | if ((len + 10) > PROP_NAME_MAX) |
| 92 | return; |
| 93 | snprintf(pname, sizeof(pname), "init.svc.%s", name); |
| 94 | property_set(pname, state); |
| 95 | } |
| 96 | |
| 97 | static int have_console; |
| 98 | static char *console_name = "/dev/console"; |
| 99 | static time_t process_needs_restart; |
| 100 | |
| 101 | static const char *ENV[32]; |
| 102 | |
| 103 | /* add_environment - add "key=value" to the current environment */ |
| 104 | int add_environment(const char *key, const char *val) |
| 105 | { |
| 106 | int n; |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 107 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 108 | for (n = 0; n < 31; n++) { |
| 109 | if (!ENV[n]) { |
| 110 | size_t len = strlen(key) + strlen(val) + 2; |
| 111 | char *entry = malloc(len); |
| 112 | snprintf(entry, len, "%s=%s", key, val); |
| 113 | ENV[n] = entry; |
| 114 | return 0; |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | return 1; |
| 119 | } |
| 120 | |
| 121 | static void zap_stdio(void) |
| 122 | { |
| 123 | int fd; |
| 124 | fd = open("/dev/null", O_RDWR); |
| 125 | dup2(fd, 0); |
| 126 | dup2(fd, 1); |
| 127 | dup2(fd, 2); |
| 128 | close(fd); |
| 129 | } |
| 130 | |
| 131 | static void open_console() |
| 132 | { |
| 133 | int fd; |
| 134 | if ((fd = open(console_name, O_RDWR)) < 0) { |
| 135 | fd = open("/dev/null", O_RDWR); |
| 136 | } |
| 137 | dup2(fd, 0); |
| 138 | dup2(fd, 1); |
| 139 | dup2(fd, 2); |
| 140 | close(fd); |
| 141 | } |
| 142 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 143 | static void publish_socket(const char *name, int fd) |
| 144 | { |
| 145 | char key[64] = ANDROID_SOCKET_ENV_PREFIX; |
| 146 | char val[64]; |
| 147 | |
| 148 | strlcpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1, |
| 149 | name, |
| 150 | sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX)); |
| 151 | snprintf(val, sizeof(val), "%d", fd); |
| 152 | add_environment(key, val); |
| 153 | |
| 154 | /* make sure we don't close-on-exec */ |
| 155 | fcntl(fd, F_SETFD, 0); |
| 156 | } |
| 157 | |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 158 | void service_start(struct service *svc, const char *dynamic_args) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 159 | { |
| 160 | struct stat s; |
| 161 | pid_t pid; |
| 162 | int needs_console; |
| 163 | int n; |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 164 | #ifdef HAVE_SELINUX |
| 165 | char *scon = NULL; |
| 166 | int rc; |
| 167 | #endif |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 168 | /* starting a service removes it from the disabled or reset |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 169 | * state and immediately takes it out of the restarting |
| 170 | * state if it was in there |
| 171 | */ |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 172 | svc->flags &= (~(SVC_DISABLED|SVC_RESTARTING|SVC_RESET)); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 173 | svc->time_started = 0; |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 174 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 175 | /* running processes require no additional work -- if |
| 176 | * they're in the process of exiting, we've ensured |
| 177 | * that they will immediately restart on exit, unless |
| 178 | * they are ONESHOT |
| 179 | */ |
| 180 | if (svc->flags & SVC_RUNNING) { |
| 181 | return; |
| 182 | } |
| 183 | |
| 184 | needs_console = (svc->flags & SVC_CONSOLE) ? 1 : 0; |
| 185 | if (needs_console && (!have_console)) { |
| 186 | ERROR("service '%s' requires console\n", svc->name); |
| 187 | svc->flags |= SVC_DISABLED; |
| 188 | return; |
| 189 | } |
| 190 | |
| 191 | if (stat(svc->args[0], &s) != 0) { |
| 192 | ERROR("cannot find '%s', disabling '%s'\n", svc->args[0], svc->name); |
| 193 | svc->flags |= SVC_DISABLED; |
| 194 | return; |
| 195 | } |
| 196 | |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 197 | if ((!(svc->flags & SVC_ONESHOT)) && dynamic_args) { |
San Mehat | d4cdd13 | 2009-05-20 09:52:16 -0700 | [diff] [blame] | 198 | ERROR("service '%s' must be one-shot to use dynamic args, disabling\n", |
| 199 | svc->args[0]); |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 200 | svc->flags |= SVC_DISABLED; |
| 201 | return; |
| 202 | } |
| 203 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 204 | #ifdef HAVE_SELINUX |
| 205 | if (is_selinux_enabled() > 0) { |
| 206 | char *mycon = NULL, *fcon = NULL; |
| 207 | |
| 208 | INFO("computing context for service '%s'\n", svc->args[0]); |
| 209 | rc = getcon(&mycon); |
| 210 | if (rc < 0) { |
| 211 | ERROR("could not get context while starting '%s'\n", svc->name); |
| 212 | return; |
| 213 | } |
| 214 | |
| 215 | rc = getfilecon(svc->args[0], &fcon); |
| 216 | if (rc < 0) { |
| 217 | ERROR("could not get context while starting '%s'\n", svc->name); |
| 218 | freecon(mycon); |
| 219 | return; |
| 220 | } |
| 221 | |
| 222 | rc = security_compute_create(mycon, fcon, string_to_security_class("process"), &scon); |
| 223 | freecon(mycon); |
| 224 | freecon(fcon); |
| 225 | if (rc < 0) { |
| 226 | ERROR("could not get context while starting '%s'\n", svc->name); |
| 227 | return; |
| 228 | } |
| 229 | } |
| 230 | #endif |
| 231 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 232 | NOTICE("starting '%s'\n", svc->name); |
| 233 | |
| 234 | pid = fork(); |
| 235 | |
| 236 | if (pid == 0) { |
| 237 | struct socketinfo *si; |
| 238 | struct svcenvinfo *ei; |
| 239 | char tmp[32]; |
| 240 | int fd, sz; |
| 241 | |
Colin Cross | 3294bbb | 2010-04-19 17:11:33 -0700 | [diff] [blame] | 242 | if (properties_inited()) { |
| 243 | get_property_workspace(&fd, &sz); |
| 244 | sprintf(tmp, "%d,%d", dup(fd), sz); |
| 245 | add_environment("ANDROID_PROPERTY_WORKSPACE", tmp); |
| 246 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 247 | |
| 248 | for (ei = svc->envvars; ei; ei = ei->next) |
| 249 | add_environment(ei->name, ei->value); |
| 250 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 251 | #ifdef HAVE_SELINUX |
| 252 | setsockcreatecon(scon); |
| 253 | #endif |
| 254 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 255 | for (si = svc->sockets; si; si = si->next) { |
Mike Lockwood | 912ff85 | 2010-10-01 08:20:36 -0400 | [diff] [blame] | 256 | int socket_type = ( |
| 257 | !strcmp(si->type, "stream") ? SOCK_STREAM : |
| 258 | (!strcmp(si->type, "dgram") ? SOCK_DGRAM : SOCK_SEQPACKET)); |
| 259 | int s = create_socket(si->name, socket_type, |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 260 | si->perm, si->uid, si->gid); |
| 261 | if (s >= 0) { |
| 262 | publish_socket(si->name, s); |
| 263 | } |
| 264 | } |
| 265 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 266 | #ifdef HAVE_SELINUX |
| 267 | freecon(scon); |
| 268 | scon = NULL; |
| 269 | setsockcreatecon(NULL); |
| 270 | #endif |
| 271 | |
San Mehat | 4e221f0 | 2010-02-25 14:19:50 -0800 | [diff] [blame] | 272 | if (svc->ioprio_class != IoSchedClass_NONE) { |
| 273 | if (android_set_ioprio(getpid(), svc->ioprio_class, svc->ioprio_pri)) { |
| 274 | ERROR("Failed to set pid %d ioprio = %d,%d: %s\n", |
| 275 | getpid(), svc->ioprio_class, svc->ioprio_pri, strerror(errno)); |
| 276 | } |
| 277 | } |
| 278 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 279 | if (needs_console) { |
| 280 | setsid(); |
| 281 | open_console(); |
| 282 | } else { |
| 283 | zap_stdio(); |
| 284 | } |
| 285 | |
| 286 | #if 0 |
| 287 | for (n = 0; svc->args[n]; n++) { |
| 288 | INFO("args[%d] = '%s'\n", n, svc->args[n]); |
| 289 | } |
| 290 | for (n = 0; ENV[n]; n++) { |
| 291 | INFO("env[%d] = '%s'\n", n, ENV[n]); |
| 292 | } |
| 293 | #endif |
| 294 | |
| 295 | setpgid(0, getpid()); |
| 296 | |
The Android Open Source Project | 5ae090e | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 297 | /* as requested, set our gid, supplemental gids, and uid */ |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 298 | if (svc->gid) { |
Nick Kralevich | 2268718 | 2010-11-17 16:55:42 -0800 | [diff] [blame] | 299 | if (setgid(svc->gid) != 0) { |
| 300 | ERROR("setgid failed: %s\n", strerror(errno)); |
| 301 | _exit(127); |
| 302 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 303 | } |
| 304 | if (svc->nr_supp_gids) { |
Nick Kralevich | 2268718 | 2010-11-17 16:55:42 -0800 | [diff] [blame] | 305 | if (setgroups(svc->nr_supp_gids, svc->supp_gids) != 0) { |
| 306 | ERROR("setgroups failed: %s\n", strerror(errno)); |
| 307 | _exit(127); |
| 308 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 309 | } |
| 310 | if (svc->uid) { |
Nick Kralevich | 2268718 | 2010-11-17 16:55:42 -0800 | [diff] [blame] | 311 | if (setuid(svc->uid) != 0) { |
| 312 | ERROR("setuid failed: %s\n", strerror(errno)); |
| 313 | _exit(127); |
| 314 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 317 | #ifdef HAVE_SELINUX |
| 318 | if (svc->seclabel) { |
| 319 | if (is_selinux_enabled() > 0 && setexeccon(svc->seclabel) < 0) { |
| 320 | ERROR("cannot setexeccon('%s'): %s\n", svc->seclabel, strerror(errno)); |
| 321 | _exit(127); |
| 322 | } |
| 323 | } |
| 324 | #endif |
| 325 | |
San Mehat | 8ad1568 | 2009-05-20 08:50:40 -0700 | [diff] [blame] | 326 | if (!dynamic_args) { |
| 327 | if (execve(svc->args[0], (char**) svc->args, (char**) ENV) < 0) { |
| 328 | ERROR("cannot execve('%s'): %s\n", svc->args[0], strerror(errno)); |
| 329 | } |
| 330 | } else { |
Colin Cross | 6310a82 | 2010-04-20 14:29:05 -0700 | [diff] [blame] | 331 | char *arg_ptrs[INIT_PARSER_MAXARGS+1]; |
San Mehat | d4cdd13 | 2009-05-20 09:52:16 -0700 | [diff] [blame] | 332 | int arg_idx = svc->nargs; |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 333 | char *tmp = strdup(dynamic_args); |
San Mehat | d4cdd13 | 2009-05-20 09:52:16 -0700 | [diff] [blame] | 334 | char *next = tmp; |
| 335 | char *bword; |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 336 | |
| 337 | /* Copy the static arguments */ |
San Mehat | d4cdd13 | 2009-05-20 09:52:16 -0700 | [diff] [blame] | 338 | memcpy(arg_ptrs, svc->args, (svc->nargs * sizeof(char *))); |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 339 | |
San Mehat | d4cdd13 | 2009-05-20 09:52:16 -0700 | [diff] [blame] | 340 | while((bword = strsep(&next, " "))) { |
| 341 | arg_ptrs[arg_idx++] = bword; |
Colin Cross | 6310a82 | 2010-04-20 14:29:05 -0700 | [diff] [blame] | 342 | if (arg_idx == INIT_PARSER_MAXARGS) |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 343 | break; |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 344 | } |
| 345 | arg_ptrs[arg_idx] = '\0'; |
| 346 | execve(svc->args[0], (char**) arg_ptrs, (char**) ENV); |
Ivan Djelic | 165de92 | 2008-11-23 22:26:39 +0100 | [diff] [blame] | 347 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 348 | _exit(127); |
| 349 | } |
| 350 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 351 | #ifdef HAVE_SELINUX |
| 352 | freecon(scon); |
| 353 | #endif |
| 354 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 355 | if (pid < 0) { |
| 356 | ERROR("failed to start '%s'\n", svc->name); |
| 357 | svc->pid = 0; |
| 358 | return; |
| 359 | } |
| 360 | |
| 361 | svc->time_started = gettime(); |
| 362 | svc->pid = pid; |
| 363 | svc->flags |= SVC_RUNNING; |
| 364 | |
Colin Cross | 3294bbb | 2010-04-19 17:11:33 -0700 | [diff] [blame] | 365 | if (properties_inited()) |
| 366 | notify_service_state(svc->name, "running"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 367 | } |
| 368 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 369 | /* The how field should be either SVC_DISABLED or SVC_RESET */ |
| 370 | static void service_stop_or_reset(struct service *svc, int how) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 371 | { |
| 372 | /* we are no longer running, nor should we |
| 373 | * attempt to restart |
| 374 | */ |
| 375 | svc->flags &= (~(SVC_RUNNING|SVC_RESTARTING)); |
| 376 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 377 | if ((how != SVC_DISABLED) && (how != SVC_RESET)) { |
| 378 | /* Hrm, an illegal flag. Default to SVC_DISABLED */ |
| 379 | how = SVC_DISABLED; |
| 380 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 381 | /* if the service has not yet started, prevent |
| 382 | * it from auto-starting with its class |
| 383 | */ |
Ken Sumrall | a286480 | 2011-10-26 16:56:00 -0700 | [diff] [blame] | 384 | if (how == SVC_RESET) { |
| 385 | svc->flags |= (svc->flags & SVC_RC_DISABLED) ? SVC_DISABLED : SVC_RESET; |
| 386 | } else { |
| 387 | svc->flags |= how; |
| 388 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 389 | |
| 390 | if (svc->pid) { |
| 391 | NOTICE("service '%s' is being killed\n", svc->name); |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 392 | kill(-svc->pid, SIGKILL); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 393 | notify_service_state(svc->name, "stopping"); |
| 394 | } else { |
| 395 | notify_service_state(svc->name, "stopped"); |
| 396 | } |
| 397 | } |
| 398 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 399 | void service_reset(struct service *svc) |
| 400 | { |
| 401 | service_stop_or_reset(svc, SVC_RESET); |
| 402 | } |
| 403 | |
| 404 | void service_stop(struct service *svc) |
| 405 | { |
| 406 | service_stop_or_reset(svc, SVC_DISABLED); |
| 407 | } |
| 408 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 409 | void property_changed(const char *name, const char *value) |
| 410 | { |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 411 | if (property_triggers_enabled) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 412 | queue_property_triggers(name, value); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 413 | } |
| 414 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 415 | static void restart_service_if_needed(struct service *svc) |
| 416 | { |
| 417 | time_t next_start_time = svc->time_started + 5; |
| 418 | |
| 419 | if (next_start_time <= gettime()) { |
| 420 | svc->flags &= (~SVC_RESTARTING); |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 421 | service_start(svc, NULL); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 422 | return; |
| 423 | } |
| 424 | |
| 425 | if ((next_start_time < process_needs_restart) || |
| 426 | (process_needs_restart == 0)) { |
| 427 | process_needs_restart = next_start_time; |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | static void restart_processes() |
| 432 | { |
| 433 | process_needs_restart = 0; |
| 434 | service_for_each_flags(SVC_RESTARTING, |
| 435 | restart_service_if_needed); |
| 436 | } |
| 437 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 438 | static void msg_start(const char *name) |
| 439 | { |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 440 | struct service *svc; |
| 441 | char *tmp = NULL; |
| 442 | char *args = NULL; |
| 443 | |
| 444 | if (!strchr(name, ':')) |
| 445 | svc = service_find_by_name(name); |
| 446 | else { |
| 447 | tmp = strdup(name); |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 448 | args = strchr(tmp, ':'); |
| 449 | *args = '\0'; |
| 450 | args++; |
| 451 | |
| 452 | svc = service_find_by_name(tmp); |
| 453 | } |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 454 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 455 | if (svc) { |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 456 | service_start(svc, args); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 457 | } else { |
| 458 | ERROR("no such service '%s'\n", name); |
| 459 | } |
San Mehat | f24e252 | 2009-05-19 13:30:46 -0700 | [diff] [blame] | 460 | if (tmp) |
| 461 | free(tmp); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 462 | } |
| 463 | |
| 464 | static void msg_stop(const char *name) |
| 465 | { |
| 466 | struct service *svc = service_find_by_name(name); |
| 467 | |
| 468 | if (svc) { |
| 469 | service_stop(svc); |
| 470 | } else { |
Dima Zavin | 770354d | 2009-05-05 18:33:07 -0700 | [diff] [blame] | 471 | ERROR("no such service '%s'\n", name); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 472 | } |
| 473 | } |
| 474 | |
| 475 | void handle_control_message(const char *msg, const char *arg) |
| 476 | { |
| 477 | if (!strcmp(msg,"start")) { |
| 478 | msg_start(arg); |
| 479 | } else if (!strcmp(msg,"stop")) { |
| 480 | msg_stop(arg); |
Wink Saville | cfa0d84 | 2010-10-03 13:30:11 -0700 | [diff] [blame] | 481 | } else if (!strcmp(msg,"restart")) { |
| 482 | msg_stop(arg); |
| 483 | msg_start(arg); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 484 | } else { |
| 485 | ERROR("unknown control msg '%s'\n", msg); |
| 486 | } |
| 487 | } |
| 488 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 489 | static struct command *get_first_command(struct action *act) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 490 | { |
| 491 | struct listnode *node; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 492 | node = list_head(&act->commands); |
Dima Zavin | 3bea079 | 2011-08-26 13:59:18 -0700 | [diff] [blame] | 493 | if (!node || list_empty(&act->commands)) |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 494 | return NULL; |
| 495 | |
| 496 | return node_to_item(node, struct command, clist); |
| 497 | } |
| 498 | |
| 499 | static struct command *get_next_command(struct action *act, struct command *cmd) |
| 500 | { |
| 501 | struct listnode *node; |
| 502 | node = cmd->clist.next; |
| 503 | if (!node) |
| 504 | return NULL; |
| 505 | if (node == &act->commands) |
| 506 | return NULL; |
| 507 | |
| 508 | return node_to_item(node, struct command, clist); |
| 509 | } |
| 510 | |
| 511 | static int is_last_command(struct action *act, struct command *cmd) |
| 512 | { |
| 513 | return (list_tail(&act->commands) == &cmd->clist); |
| 514 | } |
| 515 | |
| 516 | void execute_one_command(void) |
| 517 | { |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 518 | int ret; |
| 519 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 520 | if (!cur_action || !cur_command || is_last_command(cur_action, cur_command)) { |
| 521 | cur_action = action_remove_queue_head(); |
Colin Cross | ebd4613 | 2010-04-22 11:52:23 -0700 | [diff] [blame] | 522 | cur_command = NULL; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 523 | if (!cur_action) |
| 524 | return; |
| 525 | INFO("processing action %p (%s)\n", cur_action, cur_action->name); |
| 526 | cur_command = get_first_command(cur_action); |
| 527 | } else { |
| 528 | cur_command = get_next_command(cur_action, cur_command); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 529 | } |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 530 | |
| 531 | if (!cur_command) |
| 532 | return; |
| 533 | |
| 534 | ret = cur_command->func(cur_command->nargs, cur_command->args); |
| 535 | INFO("command '%s' r=%d\n", cur_command->args[0], ret); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 536 | } |
| 537 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 538 | static int wait_for_coldboot_done_action(int nargs, char **args) |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 539 | { |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 540 | int ret; |
| 541 | INFO("wait for %s\n", coldboot_done); |
| 542 | ret = wait_for_file(coldboot_done, COMMAND_RETRY_TIMEOUT); |
| 543 | if (ret) |
| 544 | ERROR("Timed out waiting for %s\n", coldboot_done); |
| 545 | return ret; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 546 | } |
| 547 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 548 | static int keychord_init_action(int nargs, char **args) |
| 549 | { |
| 550 | keychord_init(); |
| 551 | return 0; |
| 552 | } |
| 553 | |
| 554 | static int console_init_action(int nargs, char **args) |
| 555 | { |
| 556 | int fd; |
| 557 | char tmp[PROP_VALUE_MAX]; |
| 558 | |
| 559 | if (console[0]) { |
| 560 | snprintf(tmp, sizeof(tmp), "/dev/%s", console); |
| 561 | console_name = strdup(tmp); |
| 562 | } |
| 563 | |
| 564 | fd = open(console_name, O_RDWR); |
| 565 | if (fd >= 0) |
| 566 | have_console = 1; |
| 567 | close(fd); |
| 568 | |
| 569 | if( load_565rle_image(INIT_IMAGE_FILE) ) { |
| 570 | fd = open("/dev/tty0", O_WRONLY); |
| 571 | if (fd >= 0) { |
| 572 | const char *msg; |
| 573 | msg = "\n" |
| 574 | "\n" |
| 575 | "\n" |
| 576 | "\n" |
| 577 | "\n" |
| 578 | "\n" |
| 579 | "\n" // console is 40 cols x 30 lines |
| 580 | "\n" |
| 581 | "\n" |
| 582 | "\n" |
| 583 | "\n" |
| 584 | "\n" |
| 585 | "\n" |
| 586 | "\n" |
| 587 | " A N D R O I D "; |
| 588 | write(fd, msg, strlen(msg)); |
| 589 | close(fd); |
| 590 | } |
| 591 | } |
| 592 | return 0; |
| 593 | } |
| 594 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 595 | static void import_kernel_nv(char *name, int for_emulator) |
| 596 | { |
| 597 | char *value = strchr(name, '='); |
| 598 | int name_len = strlen(name); |
| 599 | |
| 600 | if (value == 0) return; |
| 601 | *value++ = 0; |
| 602 | if (name_len == 0) return; |
| 603 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 604 | #ifdef HAVE_SELINUX |
| 605 | if (!strcmp(name,"enforcing")) { |
| 606 | selinux_enforcing = atoi(value); |
| 607 | } else if (!strcmp(name,"selinux")) { |
| 608 | selinux_enabled = atoi(value); |
| 609 | } |
| 610 | #endif |
| 611 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 612 | if (for_emulator) { |
| 613 | /* in the emulator, export any kernel option with the |
| 614 | * ro.kernel. prefix */ |
| 615 | char buff[PROP_NAME_MAX]; |
| 616 | int len = snprintf( buff, sizeof(buff), "ro.kernel.%s", name ); |
| 617 | |
| 618 | if (len < (int)sizeof(buff)) |
| 619 | property_set( buff, value ); |
| 620 | return; |
| 621 | } |
| 622 | |
| 623 | if (!strcmp(name,"qemu")) { |
| 624 | strlcpy(qemu, value, sizeof(qemu)); |
| 625 | } else if (!strncmp(name, "androidboot.", 12) && name_len > 12) { |
| 626 | const char *boot_prop_name = name + 12; |
| 627 | char prop[PROP_NAME_MAX]; |
| 628 | int cnt; |
| 629 | |
| 630 | cnt = snprintf(prop, sizeof(prop), "ro.boot.%s", boot_prop_name); |
| 631 | if (cnt < PROP_NAME_MAX) |
| 632 | property_set(prop, value); |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | static void export_kernel_boot_props(void) |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 637 | { |
| 638 | char tmp[PROP_VALUE_MAX]; |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 639 | const char *pval; |
| 640 | unsigned i; |
| 641 | struct { |
| 642 | const char *src_prop; |
| 643 | const char *dest_prop; |
| 644 | const char *def_val; |
| 645 | } prop_map[] = { |
| 646 | { "ro.boot.serialno", "ro.serialno", "", }, |
| 647 | { "ro.boot.mode", "ro.bootmode", "unknown", }, |
| 648 | { "ro.boot.baseband", "ro.baseband", "unknown", }, |
| 649 | { "ro.boot.carrier", "ro.carrier", "unknown", }, |
| 650 | { "ro.boot.bootloader", "ro.bootloader", "unknown", }, |
| 651 | }; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 652 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 653 | for (i = 0; i < ARRAY_SIZE(prop_map); i++) { |
| 654 | pval = property_get(prop_map[i].src_prop); |
| 655 | property_set(prop_map[i].dest_prop, pval ?: prop_map[i].def_val); |
| 656 | } |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 657 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 658 | pval = property_get("ro.boot.console"); |
| 659 | if (pval) |
| 660 | strlcpy(console, pval, sizeof(console)); |
| 661 | |
| 662 | /* save a copy for init's usage during boot */ |
| 663 | strlcpy(bootmode, property_get("ro.bootmode"), sizeof(bootmode)); |
| 664 | |
| 665 | /* if this was given on kernel command line, override what we read |
| 666 | * before (e.g. from /proc/cpuinfo), if anything */ |
| 667 | pval = property_get("ro.boot.hardware"); |
| 668 | if (pval) |
| 669 | strlcpy(hardware, pval, sizeof(hardware)); |
| 670 | property_set("ro.hardware", hardware); |
| 671 | |
| 672 | snprintf(tmp, PROP_VALUE_MAX, "%d", revision); |
| 673 | property_set("ro.revision", tmp); |
| 674 | |
| 675 | /* TODO: these are obsolete. We should delete them */ |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 676 | if (!strcmp(bootmode,"factory")) |
| 677 | property_set("ro.factorytest", "1"); |
| 678 | else if (!strcmp(bootmode,"factory2")) |
| 679 | property_set("ro.factorytest", "2"); |
| 680 | else |
| 681 | property_set("ro.factorytest", "0"); |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 682 | } |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 683 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 684 | static void process_kernel_cmdline(void) |
| 685 | { |
| 686 | /* don't expose the raw commandline to nonpriv processes */ |
| 687 | chmod("/proc/cmdline", 0440); |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 688 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 689 | /* first pass does the common stuff, and finds if we are in qemu. |
| 690 | * second pass is only necessary for qemu to export all kernel params |
| 691 | * as props. |
| 692 | */ |
| 693 | import_kernel_cmdline(0, import_kernel_nv); |
| 694 | if (qemu[0]) |
| 695 | import_kernel_cmdline(1, import_kernel_nv); |
| 696 | |
| 697 | /* now propogate the info given on command line to internal variables |
| 698 | * used by init as well as the current required properties |
| 699 | */ |
| 700 | export_kernel_boot_props(); |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 701 | } |
| 702 | |
| 703 | static int property_service_init_action(int nargs, char **args) |
| 704 | { |
| 705 | /* read any property files on system or data and |
| 706 | * fire up the property service. This must happen |
| 707 | * after the ro.foo properties are set above so |
| 708 | * that /data/local.prop cannot interfere with them. |
| 709 | */ |
| 710 | start_property_service(); |
| 711 | return 0; |
| 712 | } |
| 713 | |
| 714 | static int signal_init_action(int nargs, char **args) |
| 715 | { |
| 716 | signal_init(); |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | static int check_startup_action(int nargs, char **args) |
| 721 | { |
| 722 | /* make sure we actually have all the pieces we need */ |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 723 | if ((get_property_set_fd() < 0) || |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 724 | (get_signal_fd() < 0)) { |
| 725 | ERROR("init startup failure\n"); |
| 726 | exit(1); |
| 727 | } |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 728 | |
| 729 | /* signal that we hit this point */ |
| 730 | unlink("/dev/.booting"); |
| 731 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 732 | return 0; |
| 733 | } |
| 734 | |
| 735 | static int queue_property_triggers_action(int nargs, char **args) |
| 736 | { |
| 737 | queue_all_property_triggers(); |
| 738 | /* enable property triggers */ |
| 739 | property_triggers_enabled = 1; |
| 740 | return 0; |
| 741 | } |
| 742 | |
| 743 | #if BOOTCHART |
| 744 | static int bootchart_init_action(int nargs, char **args) |
| 745 | { |
| 746 | bootchart_count = bootchart_init(); |
| 747 | if (bootchart_count < 0) { |
| 748 | ERROR("bootcharting init failure\n"); |
| 749 | } else if (bootchart_count > 0) { |
| 750 | NOTICE("bootcharting started (period=%d ms)\n", bootchart_count*BOOTCHART_POLLING_MS); |
| 751 | } else { |
| 752 | NOTICE("bootcharting ignored\n"); |
| 753 | } |
Carl-Emil Lagerstedt | 9ab8190 | 2011-01-14 09:35:30 +0100 | [diff] [blame] | 754 | |
| 755 | return 0; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 756 | } |
| 757 | #endif |
| 758 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 759 | #ifdef HAVE_SELINUX |
| 760 | void selinux_load_policy(void) |
| 761 | { |
| 762 | const char path_prefix[] = "/sepolicy"; |
| 763 | struct selinux_opt seopts[] = { |
| 764 | { SELABEL_OPT_PATH, "/file_contexts" } |
| 765 | }; |
| 766 | char path[PATH_MAX]; |
| 767 | int fd, rc, vers; |
| 768 | struct stat sb; |
| 769 | void *map; |
| 770 | |
| 771 | sehandle = NULL; |
| 772 | if (!selinux_enabled) { |
| 773 | INFO("SELinux: Disabled by command line option\n"); |
| 774 | return; |
| 775 | } |
| 776 | |
| 777 | mkdir(SELINUXMNT, 0755); |
| 778 | if (mount("selinuxfs", SELINUXMNT, "selinuxfs", 0, NULL)) { |
| 779 | if (errno == ENODEV) { |
| 780 | /* SELinux not enabled in kernel */ |
| 781 | return; |
| 782 | } |
| 783 | ERROR("SELinux: Could not mount selinuxfs: %s\n", |
| 784 | strerror(errno)); |
| 785 | return; |
| 786 | } |
| 787 | set_selinuxmnt(SELINUXMNT); |
| 788 | |
| 789 | vers = security_policyvers(); |
| 790 | if (vers <= 0) { |
| 791 | ERROR("SELinux: Unable to read policy version\n"); |
| 792 | return; |
| 793 | } |
| 794 | INFO("SELinux: Maximum supported policy version: %d\n", vers); |
| 795 | |
| 796 | snprintf(path, sizeof(path), "%s.%d", |
| 797 | path_prefix, vers); |
| 798 | fd = open(path, O_RDONLY); |
| 799 | while (fd < 0 && errno == ENOENT && --vers) { |
| 800 | snprintf(path, sizeof(path), "%s.%d", |
| 801 | path_prefix, vers); |
| 802 | fd = open(path, O_RDONLY); |
| 803 | } |
| 804 | if (fd < 0) { |
| 805 | ERROR("SELinux: Could not open %s: %s\n", |
| 806 | path, strerror(errno)); |
| 807 | return; |
| 808 | } |
| 809 | if (fstat(fd, &sb) < 0) { |
| 810 | ERROR("SELinux: Could not stat %s: %s\n", |
| 811 | path, strerror(errno)); |
| 812 | return; |
| 813 | } |
| 814 | map = mmap(NULL, sb.st_size, PROT_READ, MAP_PRIVATE, fd, 0); |
| 815 | if (map == MAP_FAILED) { |
| 816 | ERROR("SELinux: Could not map %s: %s\n", |
| 817 | path, strerror(errno)); |
| 818 | return; |
| 819 | } |
| 820 | |
| 821 | rc = security_load_policy(map, sb.st_size); |
| 822 | if (rc < 0) { |
| 823 | ERROR("SELinux: Could not load policy: %s\n", |
| 824 | strerror(errno)); |
| 825 | return; |
| 826 | } |
| 827 | |
| 828 | rc = security_setenforce(selinux_enforcing); |
| 829 | if (rc < 0) { |
| 830 | ERROR("SELinux: Could not set enforcing mode to %s: %s\n", |
| 831 | selinux_enforcing ? "enforcing" : "permissive", strerror(errno)); |
| 832 | return; |
| 833 | } |
| 834 | |
| 835 | munmap(map, sb.st_size); |
| 836 | close(fd); |
| 837 | INFO("SELinux: Loaded policy from %s\n", path); |
| 838 | |
| 839 | sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); |
| 840 | if (!sehandle) { |
| 841 | ERROR("SELinux: Could not load file_contexts: %s\n", |
| 842 | strerror(errno)); |
| 843 | return; |
| 844 | } |
| 845 | INFO("SELinux: Loaded file contexts from %s\n", seopts[0].value); |
| 846 | return; |
| 847 | } |
| 848 | #endif |
| 849 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 850 | int main(int argc, char **argv) |
| 851 | { |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 852 | int fd_count = 0; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 853 | struct pollfd ufds[4]; |
| 854 | char *tmpdev; |
The Android Open Source Project | 5ae090e | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 855 | char* debuggable; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 856 | char tmp[32]; |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 857 | int property_set_fd_init = 0; |
| 858 | int signal_fd_init = 0; |
| 859 | int keychord_fd_init = 0; |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 860 | bool is_charger = false; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 861 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 862 | if (!strcmp(basename(argv[0]), "ueventd")) |
| 863 | return ueventd_main(argc, argv); |
| 864 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 865 | /* clear the umask */ |
| 866 | umask(0); |
| 867 | |
| 868 | /* Get the basic filesystem setup we need put |
| 869 | * together in the initramdisk on / and then we'll |
| 870 | * let the rc file figure out the rest. |
| 871 | */ |
| 872 | mkdir("/dev", 0755); |
| 873 | mkdir("/proc", 0755); |
| 874 | mkdir("/sys", 0755); |
| 875 | |
Nick Kralevich | 150f19e | 2010-06-22 16:35:43 -0700 | [diff] [blame] | 876 | mount("tmpfs", "/dev", "tmpfs", MS_NOSUID, "mode=0755"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 877 | mkdir("/dev/pts", 0755); |
| 878 | mkdir("/dev/socket", 0755); |
| 879 | mount("devpts", "/dev/pts", "devpts", 0, NULL); |
| 880 | mount("proc", "/proc", "proc", 0, NULL); |
| 881 | mount("sysfs", "/sys", "sysfs", 0, NULL); |
| 882 | |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 883 | /* indicate that booting is in progress to background fw loaders, etc */ |
| 884 | close(open("/dev/.booting", O_WRONLY | O_CREAT, 0000)); |
| 885 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 886 | /* We must have some place other than / to create the |
| 887 | * device nodes for kmsg and null, otherwise we won't |
| 888 | * be able to remount / read-only later on. |
| 889 | * Now that tmpfs is mounted on /dev, we can actually |
| 890 | * talk to the outside world. |
| 891 | */ |
| 892 | open_devnull_stdio(); |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 893 | klog_init(); |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 894 | property_init(); |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 895 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 896 | get_hardware_name(hardware, &revision); |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 897 | |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 898 | process_kernel_cmdline(); |
| 899 | |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 900 | #ifdef HAVE_SELINUX |
| 901 | INFO("loading selinux policy\n"); |
| 902 | selinux_load_policy(); |
Stephen Smalley | e096e36 | 2012-06-11 13:37:39 -0400 | [diff] [blame^] | 903 | /* These directories were necessarily created before policy load |
| 904 | * and therefore need their security context restored to the proper value. |
| 905 | * This must happen before /dev is populated by ueventd. |
| 906 | */ |
| 907 | restorecon("/dev"); |
| 908 | restorecon("/dev/socket"); |
Stephen Smalley | e46f9d5 | 2012-01-13 08:48:47 -0500 | [diff] [blame] | 909 | #endif |
| 910 | |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 911 | is_charger = !strcmp(bootmode, "charger"); |
| 912 | |
| 913 | INFO("property init\n"); |
Dima Zavin | 5511c84 | 2011-12-19 11:21:32 -0800 | [diff] [blame] | 914 | if (!is_charger) |
| 915 | property_load_boot_defaults(); |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 916 | |
| 917 | INFO("reading config file\n"); |
| 918 | init_parse_config_file("/init.rc"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 919 | |
| 920 | action_for_each_trigger("early-init", action_add_queue_tail); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 921 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 922 | queue_builtin_action(wait_for_coldboot_done_action, "wait_for_coldboot_done"); |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 923 | queue_builtin_action(keychord_init_action, "keychord_init"); |
| 924 | queue_builtin_action(console_init_action, "console_init"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 925 | |
Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 926 | /* execute all the boot actions to get us started */ |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 927 | action_for_each_trigger("init", action_add_queue_tail); |
Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 928 | |
| 929 | /* skip mounting filesystems in charger mode */ |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 930 | if (!is_charger) { |
Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 931 | action_for_each_trigger("early-fs", action_add_queue_tail); |
| 932 | action_for_each_trigger("fs", action_add_queue_tail); |
| 933 | action_for_each_trigger("post-fs", action_add_queue_tail); |
| 934 | action_for_each_trigger("post-fs-data", action_add_queue_tail); |
| 935 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 936 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 937 | queue_builtin_action(property_service_init_action, "property_service_init"); |
| 938 | queue_builtin_action(signal_init_action, "signal_init"); |
| 939 | queue_builtin_action(check_startup_action, "check_startup"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 940 | |
Dima Zavin | d7634c9 | 2011-12-16 14:18:06 -0800 | [diff] [blame] | 941 | if (is_charger) { |
Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 942 | action_for_each_trigger("charger", action_add_queue_tail); |
| 943 | } else { |
| 944 | action_for_each_trigger("early-boot", action_add_queue_tail); |
| 945 | action_for_each_trigger("boot", action_add_queue_tail); |
| 946 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 947 | |
| 948 | /* run all property triggers based on current state of the properties */ |
Chris Dearman | 469b7b2 | 2012-03-01 15:29:20 -0800 | [diff] [blame] | 949 | queue_builtin_action(queue_property_triggers_action, "queue_property_triggers"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 950 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 951 | |
| 952 | #if BOOTCHART |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 953 | queue_builtin_action(bootchart_init_action, "bootchart_init"); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 954 | #endif |
| 955 | |
| 956 | for(;;) { |
The Android Open Source Project | 5ae090e | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 957 | int nr, i, timeout = -1; |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 958 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 959 | execute_one_command(); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 960 | restart_processes(); |
| 961 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 962 | if (!property_set_fd_init && get_property_set_fd() > 0) { |
| 963 | ufds[fd_count].fd = get_property_set_fd(); |
| 964 | ufds[fd_count].events = POLLIN; |
| 965 | ufds[fd_count].revents = 0; |
| 966 | fd_count++; |
| 967 | property_set_fd_init = 1; |
| 968 | } |
| 969 | if (!signal_fd_init && get_signal_fd() > 0) { |
| 970 | ufds[fd_count].fd = get_signal_fd(); |
| 971 | ufds[fd_count].events = POLLIN; |
| 972 | ufds[fd_count].revents = 0; |
| 973 | fd_count++; |
| 974 | signal_fd_init = 1; |
| 975 | } |
| 976 | if (!keychord_fd_init && get_keychord_fd() > 0) { |
| 977 | ufds[fd_count].fd = get_keychord_fd(); |
| 978 | ufds[fd_count].events = POLLIN; |
| 979 | ufds[fd_count].revents = 0; |
| 980 | fd_count++; |
| 981 | keychord_fd_init = 1; |
| 982 | } |
| 983 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 984 | if (process_needs_restart) { |
| 985 | timeout = (process_needs_restart - gettime()) * 1000; |
| 986 | if (timeout < 0) |
| 987 | timeout = 0; |
| 988 | } |
| 989 | |
Colin Cross | ebd4613 | 2010-04-22 11:52:23 -0700 | [diff] [blame] | 990 | if (!action_queue_empty() || cur_action) |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 991 | timeout = 0; |
| 992 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 993 | #if BOOTCHART |
| 994 | if (bootchart_count > 0) { |
| 995 | if (timeout < 0 || timeout > BOOTCHART_POLLING_MS) |
| 996 | timeout = BOOTCHART_POLLING_MS; |
| 997 | if (bootchart_step() < 0 || --bootchart_count == 0) { |
| 998 | bootchart_finish(); |
| 999 | bootchart_count = 0; |
| 1000 | } |
| 1001 | } |
| 1002 | #endif |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 1003 | |
The Android Open Source Project | 5ae090e | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 1004 | nr = poll(ufds, fd_count, timeout); |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1005 | if (nr <= 0) |
| 1006 | continue; |
| 1007 | |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 1008 | for (i = 0; i < fd_count; i++) { |
| 1009 | if (ufds[i].revents == POLLIN) { |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 1010 | if (ufds[i].fd == get_property_set_fd()) |
Colin Cross | ebc6ff1 | 2010-04-13 19:52:01 -0700 | [diff] [blame] | 1011 | handle_property_set_fd(); |
| 1012 | else if (ufds[i].fd == get_keychord_fd()) |
| 1013 | handle_keychord(); |
| 1014 | else if (ufds[i].fd == get_signal_fd()) |
| 1015 | handle_signal(); |
| 1016 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1017 | } |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1018 | } |
| 1019 | |
| 1020 | return 0; |
| 1021 | } |