The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | |
| 2 | Android Init Language |
| 3 | --------------------- |
| 4 | |
| 5 | The Android Init Language consists of four broad classes of statements, |
| 6 | which are Actions, Commands, Services, and Options. |
| 7 | |
| 8 | All of these are line-oriented, consisting of tokens separated by |
| 9 | whitespace. The c-style backslash escapes may be used to insert |
| 10 | whitespace into a token. Double quotes may also be used to prevent |
| 11 | whitespace from breaking text into multiple tokens. The backslash, |
| 12 | when it is the last character on a line, may be used for line-folding. |
| 13 | |
| 14 | Lines which start with a # (leading whitespace allowed) are comments. |
| 15 | |
| 16 | Actions and Services implicitly declare a new section. All commands |
| 17 | or options belong to the section most recently declared. Commands |
| 18 | or options before the first section are ignored. |
| 19 | |
| 20 | Actions and Services have unique names. If a second Action or Service |
| 21 | is declared with the same name as an existing one, it is ignored as |
| 22 | an error. (??? should we override instead) |
| 23 | |
| 24 | |
| 25 | Actions |
| 26 | ------- |
| 27 | Actions are named sequences of commands. Actions have a trigger which |
| 28 | is used to determine when the action should occur. When an event |
| 29 | occurs which matches an action's trigger, that action is added to |
| 30 | the tail of a to-be-executed queue (unless it is already on the |
| 31 | queue). |
| 32 | |
| 33 | Each action in the queue is dequeued in sequence and each command in |
| 34 | that action is executed in sequence. Init handles other activities |
| 35 | (device creation/destruction, property setting, process restarting) |
| 36 | "between" the execution of the commands in activities. |
| 37 | |
| 38 | Actions take the form of: |
| 39 | |
| 40 | on <trigger> |
| 41 | <command> |
| 42 | <command> |
| 43 | <command> |
| 44 | |
| 45 | |
| 46 | Services |
| 47 | -------- |
| 48 | Services are programs which init launches and (optionally) restarts |
| 49 | when they exit. Services take the form of: |
| 50 | |
| 51 | service <name> <pathname> [ <argument> ]* |
| 52 | <option> |
| 53 | <option> |
| 54 | ... |
| 55 | |
| 56 | |
| 57 | Options |
| 58 | ------- |
| 59 | Options are modifiers to services. They affect how and when init |
| 60 | runs the service. |
| 61 | |
| 62 | critical |
| 63 | This is a device-critical service. If it exits more than four times in |
| 64 | four minutes, the device will reboot into recovery mode. |
| 65 | |
| 66 | disabled |
| 67 | This service will not automatically start with its class. |
| 68 | It must be explicitly started by name. |
| 69 | |
| 70 | setenv <name> <value> |
| 71 | Set the environment variable <name> to <value> in the launched process. |
| 72 | |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 73 | socket <name> <type> <perm> [ <user> [ <group> [ <seclabel> ] ] ] |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 74 | Create a unix domain socket named /dev/socket/<name> and pass |
Mike Lockwood | 912ff85 | 2010-10-01 08:20:36 -0400 | [diff] [blame] | 75 | its fd to the launched process. <type> must be "dgram", "stream" or "seqpacket". |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 76 | User and group default to 0. |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 77 | 'seclabel' is the SELinux security context for the socket. |
Stephen Smalley | 8348d27 | 2013-05-13 12:37:04 -0400 | [diff] [blame] | 78 | It defaults to the service security context, as specified by seclabel or |
| 79 | computed based on the service executable file security context. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 80 | |
| 81 | user <username> |
| 82 | Change to username before exec'ing this service. |
| 83 | Currently defaults to root. (??? probably should default to nobody) |
| 84 | Currently, if your process requires linux capabilities then you cannot use |
| 85 | this command. You must instead request the capabilities in-process while |
| 86 | still root, and then drop to your desired uid. |
| 87 | |
| 88 | group <groupname> [ <groupname> ]* |
| 89 | Change to groupname before exec'ing this service. Additional |
| 90 | groupnames beyond the (required) first one are used to set the |
| 91 | supplemental groups of the process (via setgroups()). |
| 92 | Currently defaults to root. (??? probably should default to nobody) |
| 93 | |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 94 | seclabel <seclabel> |
| 95 | Change to 'seclabel' before exec'ing this service. |
Stephen Smalley | 3fb6110 | 2012-11-02 15:22:34 -0400 | [diff] [blame] | 96 | Primarily for use by services run from the rootfs, e.g. ueventd, adbd. |
| 97 | Services on the system partition can instead use policy-defined transitions |
| 98 | based on their file security context. |
| 99 | If not specified and no transition is defined in policy, defaults to the init context. |
| 100 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 101 | oneshot |
| 102 | Do not restart the service when it exits. |
| 103 | |
| 104 | class <name> |
| 105 | Specify a class name for the service. All services in a |
| 106 | named class may be started or stopped together. A service |
| 107 | is in the class "default" if one is not specified via the |
| 108 | class option. |
| 109 | |
| 110 | onrestart |
| 111 | Execute a Command (see below) when service restarts. |
| 112 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 113 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 114 | Triggers |
| 115 | -------- |
| 116 | Triggers are strings which can be used to match certain kinds |
| 117 | of events and used to cause an action to occur. |
| 118 | |
| 119 | boot |
| 120 | This is the first trigger that will occur when init starts |
| 121 | (after /init.conf is loaded) |
| 122 | |
| 123 | <name>=<value> |
| 124 | Triggers of this form occur when the property <name> is set |
| 125 | to the specific value <value>. |
| 126 | |
Elliott Hughes | d3e37d1 | 2015-02-02 16:43:32 -0800 | [diff] [blame] | 127 | One can also test multiple properties to execute a group |
Badhri Jagan Sridharan | 0b41512 | 2014-10-10 23:19:06 -0700 | [diff] [blame] | 128 | of commands. For example: |
| 129 | |
| 130 | on property:test.a=1 && property:test.b=1 |
| 131 | setprop test.c 1 |
| 132 | |
| 133 | The above stub sets test.c to 1 only when |
| 134 | both test.a=1 and test.b=1 |
| 135 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 136 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 137 | Commands |
| 138 | -------- |
| 139 | |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 140 | exec [ <seclabel> [ <user> [ <group> ]* ] ] -- <command> [ <argument> ]* |
| 141 | Fork and execute command with the given arguments. The command starts |
| 142 | after "--" so that an optional security context, user, and supplementary |
| 143 | groups can be provided. No other commands will be run until this one |
| 144 | finishes. |
San Mehat | 429721c | 2014-09-23 07:48:47 -0700 | [diff] [blame] | 145 | |
| 146 | execonce <path> [ <argument> ]* |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 147 | Fork and execute a program (<path>). This will block until |
San Mehat | 429721c | 2014-09-23 07:48:47 -0700 | [diff] [blame] | 148 | the program completes execution. This command can be run at most |
| 149 | once during init's lifetime. Subsequent invocations are ignored. |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 150 | It is best to avoid execonce as unlike the builtin commands, it runs |
San Mehat | 429721c | 2014-09-23 07:48:47 -0700 | [diff] [blame] | 151 | the risk of getting init "stuck". |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 152 | |
| 153 | export <name> <value> |
| 154 | Set the environment variable <name> equal to <value> in the |
| 155 | global environment (which will be inherited by all processes |
| 156 | started after this command is executed) |
| 157 | |
| 158 | ifup <interface> |
| 159 | Bring the network interface <interface> online. |
| 160 | |
| 161 | import <filename> |
| 162 | Parse an init config file, extending the current configuration. |
| 163 | |
| 164 | hostname <name> |
| 165 | Set the host name. |
| 166 | |
Jay Freeman (saurik) | e7cb137 | 2008-11-17 06:41:10 +0000 | [diff] [blame] | 167 | chdir <directory> |
| 168 | Change working directory. |
| 169 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 170 | chmod <octal-mode> <path> |
| 171 | Change file access permissions. |
| 172 | |
| 173 | chown <owner> <group> <path> |
| 174 | Change file owner and group. |
| 175 | |
Jay Freeman (saurik) | e7cb137 | 2008-11-17 06:41:10 +0000 | [diff] [blame] | 176 | chroot <directory> |
| 177 | Change process root directory. |
| 178 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 179 | class_start <serviceclass> |
| 180 | Start all services of the specified class if they are |
| 181 | not already running. |
| 182 | |
| 183 | class_stop <serviceclass> |
| 184 | Stop all services of the specified class if they are |
| 185 | currently running. |
| 186 | |
| 187 | domainname <name> |
| 188 | Set the domain name. |
| 189 | |
JP Abgrall | 3beec7e | 2014-05-02 21:14:29 -0700 | [diff] [blame] | 190 | enable <servicename> |
| 191 | Turns a disabled service into an enabled one as if the service did not |
| 192 | specify disabled. |
| 193 | If the service is supposed to be running, it will be started now. |
| 194 | Typically used when the bootloader sets a variable that indicates a specific |
| 195 | service should be started when needed. E.g. |
| 196 | on property:ro.boot.myfancyhardware=1 |
| 197 | enable my_fancy_service_for_my_fancy_hardware |
| 198 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 199 | insmod <path> |
| 200 | Install the module at <path> |
| 201 | |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 202 | loglevel <level> |
| 203 | Sets the kernel log level to level. Properties are expanded within <level>. |
| 204 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 205 | mkdir <path> [mode] [owner] [group] |
| 206 | Create a directory at <path>, optionally with the given mode, owner, and |
| 207 | group. If not provided, the directory is created with permissions 755 and |
| 208 | owned by the root user and root group. |
| 209 | |
| 210 | mount <type> <device> <dir> [ <mountoption> ]* |
| 211 | Attempt to mount the named device at the directory <dir> |
| 212 | <device> may be of the form mtd@name to specify a mtd block |
| 213 | device by name. |
| 214 | <mountoption>s include "ro", "rw", "remount", "noatime", ... |
| 215 | |
Stephen Smalley | 726e8f7 | 2013-10-09 16:02:09 -0400 | [diff] [blame] | 216 | restorecon <path> [ <path> ]* |
Stephen Smalley | 3fb6110 | 2012-11-02 15:22:34 -0400 | [diff] [blame] | 217 | Restore the file named by <path> to the security context specified |
| 218 | in the file_contexts configuration. |
| 219 | Not required for directories created by the init.rc as these are |
| 220 | automatically labeled correctly by init. |
| 221 | |
Stephen Smalley | 726e8f7 | 2013-10-09 16:02:09 -0400 | [diff] [blame] | 222 | restorecon_recursive <path> [ <path> ]* |
| 223 | Recursively restore the directory tree named by <path> to the |
| 224 | security contexts specified in the file_contexts configuration. |
Stephen Smalley | 726e8f7 | 2013-10-09 16:02:09 -0400 | [diff] [blame] | 225 | |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 226 | setcon <seclabel> |
Stephen Smalley | 3fb6110 | 2012-11-02 15:22:34 -0400 | [diff] [blame] | 227 | Set the current process security context to the specified string. |
| 228 | This is typically only used from early-init to set the init context |
| 229 | before any other process is started. |
| 230 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 231 | setkey |
| 232 | TBD |
| 233 | |
| 234 | setprop <name> <value> |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 235 | Set system property <name> to <value>. Properties are expanded |
| 236 | within <value>. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 237 | |
| 238 | setrlimit <resource> <cur> <max> |
| 239 | Set the rlimit for a resource. |
| 240 | |
Stephen Smalley | 0e23fee | 2012-11-28 13:52:12 -0500 | [diff] [blame] | 241 | setsebool <name> <value> |
Stephen Smalley | 3fb6110 | 2012-11-02 15:22:34 -0400 | [diff] [blame] | 242 | Set SELinux boolean <name> to <value>. |
| 243 | <value> may be 1|true|on or 0|false|off |
| 244 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 245 | start <service> |
| 246 | Start a service running if it is not already running. |
| 247 | |
| 248 | stop <service> |
| 249 | Stop a service from running if it is currently running. |
| 250 | |
| 251 | symlink <target> <path> |
| 252 | Create a symbolic link at <path> with the value <target> |
| 253 | |
The Android Open Source Project | 35237d1 | 2008-12-17 18:08:08 -0800 | [diff] [blame] | 254 | sysclktz <mins_west_of_gmt> |
| 255 | Set the system clock base (0 if system clock ticks in GMT) |
| 256 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 257 | trigger <event> |
| 258 | Trigger an event. Used to queue an action from another |
| 259 | action. |
| 260 | |
Patrick McCormick | 96d0a4d | 2011-02-04 10:51:39 -0800 | [diff] [blame] | 261 | wait <path> [ <timeout> ] |
| 262 | Poll for the existence of the given file and return when found, |
| 263 | or the timeout has been reached. If timeout is not specified it |
| 264 | currently defaults to five seconds. |
| 265 | |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 266 | write <path> <content> |
| 267 | Open the file at <path> and write a string to it with write(2). |
| 268 | If the file does not exist, it will be created. If it does exist, |
| 269 | it will be truncated. Properties are expanded within <content>. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 270 | |
| 271 | |
| 272 | Properties |
| 273 | ---------- |
| 274 | Init updates some system properties to provide some insight into |
| 275 | what it's doing: |
| 276 | |
Elliott Hughes | 8d82ea0 | 2015-02-06 20:15:18 -0800 | [diff] [blame] | 277 | init.action |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 278 | Equal to the name of the action currently being executed or "" if none |
| 279 | |
| 280 | init.command |
| 281 | Equal to the command being executed or "" if none. |
| 282 | |
| 283 | init.svc.<name> |
| 284 | State of a named service ("stopped", "running", "restarting") |
| 285 | |
| 286 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 287 | Bootcharting |
| 288 | ------------ |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 289 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 290 | This version of init contains code to perform "bootcharting": generating log |
| 291 | files that can be later processed by the tools provided by www.bootchart.org. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 292 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 293 | On the emulator, use the new -bootchart <timeout> option to boot with |
| 294 | bootcharting activated for <timeout> seconds. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 295 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 296 | On a device, create /data/bootchart/start with a command like the following: |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 297 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 298 | adb shell 'echo $TIMEOUT > /data/bootchart/start' |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 299 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 300 | Where the value of $TIMEOUT corresponds to the desired bootcharted period in |
| 301 | seconds. Bootcharting will stop after that many seconds have elapsed. |
| 302 | You can also stop the bootcharting at any moment by doing the following: |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 303 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 304 | adb shell 'echo 1 > /data/bootchart/stop' |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 305 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 306 | Note that /data/bootchart/stop is deleted automatically by init at the end of |
| 307 | the bootcharting. This is not the case with /data/bootchart/start, so don't |
| 308 | forget to delete it when you're done collecting data. |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 309 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 310 | The log files are written to /data/bootchart/. A script is provided to |
| 311 | retrieve them and create a bootchart.tgz file that can be used with the |
| 312 | bootchart command-line utility: |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 313 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 314 | sudo apt-get install pybootchartgui |
Mark Salyzyn | d4e5c32 | 2015-02-24 08:28:07 -0800 | [diff] [blame] | 315 | ANDROID_SERIAL=<device serial number> |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 316 | $ANDROID_BUILD_TOP/system/core/init/grab-bootchart.sh |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 317 | |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 318 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 319 | Debugging init |
| 320 | -------------- |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 321 | By default, programs executed by init will drop stdout and stderr into |
| 322 | /dev/null. To help with debugging, you can execute your program via the |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 323 | Android program logwrapper. This will redirect stdout/stderr into the |
The Android Open Source Project | 4f6e8d7 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 324 | Android logging system (accessed via logcat). |
| 325 | |
| 326 | For example |
| 327 | service akmd /system/bin/logwrapper /sbin/akmd |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 328 | |
| 329 | For quicker turnaround when working on init itself, use: |
| 330 | |
Elliott Hughes | 841b263 | 2015-02-12 14:28:54 -0800 | [diff] [blame] | 331 | mm -j |
Elliott Hughes | f682b47 | 2015-02-06 12:19:48 -0800 | [diff] [blame] | 332 | m ramdisk-nodeps |
| 333 | m bootimage-nodeps |
| 334 | adb reboot bootloader |
| 335 | fastboot boot $ANDROID_PRODUCT_OUT/boot.img |
| 336 | |
| 337 | Alternatively, use the emulator: |
| 338 | |
| 339 | emulator -partition-size 1024 -verbose -show-kernel -no-window |
| 340 | |
| 341 | You might want to call klog_set_level(6) after the klog_init() call |
| 342 | so you see the kernel logging in dmesg (or the emulator output). |