blob: 32eb4abbce9d635c07f1569da9896373d9ec0c1d [file] [log] [blame]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -07001
2Android Init Language
3---------------------
4
5The Android Init Language consists of four broad classes of statements,
6which are Actions, Commands, Services, and Options.
7
8All of these are line-oriented, consisting of tokens separated by
9whitespace. The c-style backslash escapes may be used to insert
10whitespace into a token. Double quotes may also be used to prevent
11whitespace from breaking text into multiple tokens. The backslash,
12when it is the last character on a line, may be used for line-folding.
13
14Lines which start with a # (leading whitespace allowed) are comments.
15
16Actions and Services implicitly declare a new section. All commands
17or options belong to the section most recently declared. Commands
18or options before the first section are ignored.
19
20Actions and Services have unique names. If a second Action or Service
21is declared with the same name as an existing one, it is ignored as
22an error. (??? should we override instead)
23
24
25Actions
26-------
27Actions are named sequences of commands. Actions have a trigger which
28is used to determine when the action should occur. When an event
29occurs which matches an action's trigger, that action is added to
30the tail of a to-be-executed queue (unless it is already on the
31queue).
32
33Each action in the queue is dequeued in sequence and each command in
34that 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
38Actions take the form of:
39
40on <trigger>
41 <command>
42 <command>
43 <command>
44
45
46Services
47--------
48Services are programs which init launches and (optionally) restarts
49when they exit. Services take the form of:
50
51service <name> <pathname> [ <argument> ]*
52 <option>
53 <option>
54 ...
55
56
57Options
58-------
59Options are modifiers to services. They affect how and when init
60runs the service.
61
62critical
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
66disabled
67 This service will not automatically start with its class.
68 It must be explicitly started by name.
69
70setenv <name> <value>
71 Set the environment variable <name> to <value> in the launched process.
72
Stephen Smalley8348d272013-05-13 12:37:04 -040073socket <name> <type> <perm> [ <user> [ <group> [ <context> ] ] ]
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070074 Create a unix domain socket named /dev/socket/<name> and pass
Mike Lockwood912ff852010-10-01 08:20:36 -040075 its fd to the launched process. <type> must be "dgram", "stream" or "seqpacket".
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -070076 User and group default to 0.
Stephen Smalley8348d272013-05-13 12:37:04 -040077 Context is the SELinux security context for the socket.
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 Project4f6e8d72008-10-21 07:00:00 -070080
81user <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
88group <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
Stephen Smalley3fb61102012-11-02 15:22:34 -040094seclabel <securitycontext>
95 Change to securitycontext before exec'ing this service.
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 Project4f6e8d72008-10-21 07:00:00 -0700101oneshot
102 Do not restart the service when it exits.
103
104class <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
110onrestart
111 Execute a Command (see below) when service restarts.
112
Elliott Hughes841b2632015-02-12 14:28:54 -0800113
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700114Triggers
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
119boot
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 Hughesd3e37d12015-02-02 16:43:32 -0800127 One can also test multiple properties to execute a group
Badhri Jagan Sridharan0b415122014-10-10 23:19:06 -0700128 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 Hughes841b2632015-02-12 14:28:54 -0800136
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700137Commands
138--------
139
140exec <path> [ <argument> ]*
San Mehat429721c2014-09-23 07:48:47 -0700141 This command is not implemented.
142
143execonce <path> [ <argument> ]*
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700144 Fork and execute a program (<path>). This will block until
San Mehat429721c2014-09-23 07:48:47 -0700145 the program completes execution. This command can be run at most
146 once during init's lifetime. Subsequent invocations are ignored.
147 It is best to avoid exec as unlike the builtin commands, it runs
148 the risk of getting init "stuck".
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700149
150export <name> <value>
151 Set the environment variable <name> equal to <value> in the
152 global environment (which will be inherited by all processes
153 started after this command is executed)
154
155ifup <interface>
156 Bring the network interface <interface> online.
157
158import <filename>
159 Parse an init config file, extending the current configuration.
160
161hostname <name>
162 Set the host name.
163
Jay Freeman (saurik)e7cb1372008-11-17 06:41:10 +0000164chdir <directory>
165 Change working directory.
166
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700167chmod <octal-mode> <path>
168 Change file access permissions.
169
170chown <owner> <group> <path>
171 Change file owner and group.
172
Jay Freeman (saurik)e7cb1372008-11-17 06:41:10 +0000173chroot <directory>
174 Change process root directory.
175
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700176class_start <serviceclass>
177 Start all services of the specified class if they are
178 not already running.
179
180class_stop <serviceclass>
181 Stop all services of the specified class if they are
182 currently running.
183
184domainname <name>
185 Set the domain name.
186
JP Abgrall3beec7e2014-05-02 21:14:29 -0700187enable <servicename>
188 Turns a disabled service into an enabled one as if the service did not
189 specify disabled.
190 If the service is supposed to be running, it will be started now.
191 Typically used when the bootloader sets a variable that indicates a specific
192 service should be started when needed. E.g.
193 on property:ro.boot.myfancyhardware=1
194 enable my_fancy_service_for_my_fancy_hardware
195
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700196insmod <path>
197 Install the module at <path>
198
Elliott Hughesf682b472015-02-06 12:19:48 -0800199loglevel <level>
200 Sets the kernel log level to level. Properties are expanded within <level>.
201
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700202mkdir <path> [mode] [owner] [group]
203 Create a directory at <path>, optionally with the given mode, owner, and
204 group. If not provided, the directory is created with permissions 755 and
205 owned by the root user and root group.
206
207mount <type> <device> <dir> [ <mountoption> ]*
208 Attempt to mount the named device at the directory <dir>
209 <device> may be of the form mtd@name to specify a mtd block
210 device by name.
211 <mountoption>s include "ro", "rw", "remount", "noatime", ...
212
Stephen Smalley726e8f72013-10-09 16:02:09 -0400213restorecon <path> [ <path> ]*
Stephen Smalley3fb61102012-11-02 15:22:34 -0400214 Restore the file named by <path> to the security context specified
215 in the file_contexts configuration.
216 Not required for directories created by the init.rc as these are
217 automatically labeled correctly by init.
218
Stephen Smalley726e8f72013-10-09 16:02:09 -0400219restorecon_recursive <path> [ <path> ]*
220 Recursively restore the directory tree named by <path> to the
221 security contexts specified in the file_contexts configuration.
Stephen Smalley726e8f72013-10-09 16:02:09 -0400222
Stephen Smalley3fb61102012-11-02 15:22:34 -0400223setcon <securitycontext>
224 Set the current process security context to the specified string.
225 This is typically only used from early-init to set the init context
226 before any other process is started.
227
228setenforce 0|1
229 Set the SELinux system-wide enforcing status.
230 0 is permissive (i.e. log but do not deny), 1 is enforcing.
231
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700232setkey
233 TBD
234
235setprop <name> <value>
Elliott Hughesf682b472015-02-06 12:19:48 -0800236 Set system property <name> to <value>. Properties are expanded
237 within <value>.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700238
239setrlimit <resource> <cur> <max>
240 Set the rlimit for a resource.
241
Stephen Smalley0e23fee2012-11-28 13:52:12 -0500242setsebool <name> <value>
Stephen Smalley3fb61102012-11-02 15:22:34 -0400243 Set SELinux boolean <name> to <value>.
244 <value> may be 1|true|on or 0|false|off
245
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700246start <service>
247 Start a service running if it is not already running.
248
249stop <service>
250 Stop a service from running if it is currently running.
251
252symlink <target> <path>
253 Create a symbolic link at <path> with the value <target>
254
The Android Open Source Project35237d12008-12-17 18:08:08 -0800255sysclktz <mins_west_of_gmt>
256 Set the system clock base (0 if system clock ticks in GMT)
257
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700258trigger <event>
259 Trigger an event. Used to queue an action from another
260 action.
261
Patrick McCormick96d0a4d2011-02-04 10:51:39 -0800262wait <path> [ <timeout> ]
263 Poll for the existence of the given file and return when found,
264 or the timeout has been reached. If timeout is not specified it
265 currently defaults to five seconds.
266
Elliott Hughesf682b472015-02-06 12:19:48 -0800267write <path> <content>
268 Open the file at <path> and write a string to it with write(2).
269 If the file does not exist, it will be created. If it does exist,
270 it will be truncated. Properties are expanded within <content>.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700271
272
273Properties
274----------
275Init updates some system properties to provide some insight into
276what it's doing:
277
278init.action
279 Equal to the name of the action currently being executed or "" if none
280
281init.command
282 Equal to the command being executed or "" if none.
283
284init.svc.<name>
285 State of a named service ("stopped", "running", "restarting")
286
287
Elliott Hughes841b2632015-02-12 14:28:54 -0800288Bootcharting
289------------
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700290
Elliott Hughes841b2632015-02-12 14:28:54 -0800291This version of init contains code to perform "bootcharting": generating log
292files that can be later processed by the tools provided by www.bootchart.org.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700293
Elliott Hughes841b2632015-02-12 14:28:54 -0800294On the emulator, use the new -bootchart <timeout> option to boot with
295bootcharting activated for <timeout> seconds.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700296
Elliott Hughes841b2632015-02-12 14:28:54 -0800297On a device, create /data/bootchart/start with a command like the following:
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700298
Elliott Hughes841b2632015-02-12 14:28:54 -0800299 adb shell 'echo $TIMEOUT > /data/bootchart/start'
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700300
Elliott Hughes841b2632015-02-12 14:28:54 -0800301Where the value of $TIMEOUT corresponds to the desired bootcharted period in
302seconds. Bootcharting will stop after that many seconds have elapsed.
303You can also stop the bootcharting at any moment by doing the following:
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700304
Elliott Hughes841b2632015-02-12 14:28:54 -0800305 adb shell 'echo 1 > /data/bootchart/stop'
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700306
Elliott Hughes841b2632015-02-12 14:28:54 -0800307Note that /data/bootchart/stop is deleted automatically by init at the end of
308the bootcharting. This is not the case with /data/bootchart/start, so don't
309forget to delete it when you're done collecting data.
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700310
Elliott Hughes841b2632015-02-12 14:28:54 -0800311The log files are written to /data/bootchart/. A script is provided to
312retrieve them and create a bootchart.tgz file that can be used with the
313bootchart command-line utility:
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700314
Elliott Hughes841b2632015-02-12 14:28:54 -0800315 sudo apt-get install pybootchartgui
316 $ANDROID_BUILD_TOP/system/core/init/grab-bootchart.sh
317 bootchart ./bootchart.tgz
318 gnome-open bootchart.png
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700319
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700320
Elliott Hughes841b2632015-02-12 14:28:54 -0800321Debugging init
322--------------
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700323By default, programs executed by init will drop stdout and stderr into
324/dev/null. To help with debugging, you can execute your program via the
Elliott Hughesf682b472015-02-06 12:19:48 -0800325Android program logwrapper. This will redirect stdout/stderr into the
The Android Open Source Project4f6e8d72008-10-21 07:00:00 -0700326Android logging system (accessed via logcat).
327
328For example
329service akmd /system/bin/logwrapper /sbin/akmd
Elliott Hughesf682b472015-02-06 12:19:48 -0800330
331For quicker turnaround when working on init itself, use:
332
Elliott Hughes841b2632015-02-12 14:28:54 -0800333 mm -j
Elliott Hughesf682b472015-02-06 12:19:48 -0800334 m ramdisk-nodeps
335 m bootimage-nodeps
336 adb reboot bootloader
337 fastboot boot $ANDROID_PRODUCT_OUT/boot.img
338
339Alternatively, use the emulator:
340
341 emulator -partition-size 1024 -verbose -show-kernel -no-window
342
343You might want to call klog_set_level(6) after the klog_init() call
344so you see the kernel logging in dmesg (or the emulator output).