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