Nick Kralevich | f3ef127 | 2012-03-14 15:22:54 -0700 | [diff] [blame] | 1 | # Copyright (C) 2012 The Android Open Source Project |
| 2 | # |
| 3 | # IMPORTANT: Do not create world writable files or directories. |
| 4 | # This is a common source of Android security bugs. |
| 5 | # |
| 6 | |
Ying Wang | 5748ee9 | 2013-07-23 18:03:37 -0700 | [diff] [blame] | 7 | import /init.environ.rc |
Mike Lockwood | 4f5d517 | 2012-04-04 11:26:59 -0700 | [diff] [blame] | 8 | import /init.usb.rc |
Mike Lockwood | 35ea5e4 | 2012-08-28 10:25:13 -0700 | [diff] [blame] | 9 | import /init.${ro.hardware}.rc |
Narayan Kamath | 4456a55 | 2014-03-31 11:08:02 +0100 | [diff] [blame] | 10 | import /init.${ro.zygote}.rc |
Todd Poynor | f1c50bf | 2012-09-20 20:10:53 -0700 | [diff] [blame] | 11 | import /init.trace.rc |
Dima Zavin | 7634bf8 | 2011-12-16 14:23:22 -0800 | [diff] [blame] | 12 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 13 | on early-init |
Dima Zavin | 4a25390 | 2011-11-04 12:45:52 -0700 | [diff] [blame] | 14 | # Set init and its forked children's oom_adj. |
Todd Poynor | 4676550 | 2013-09-16 19:32:03 -0700 | [diff] [blame] | 15 | write /proc/1/oom_score_adj -1000 |
Dima Zavin | 4a25390 | 2011-11-04 12:45:52 -0700 | [diff] [blame] | 16 | |
Stephen Smalley | 5e1461d | 2013-12-23 16:26:46 -0500 | [diff] [blame] | 17 | # Apply strict SELinux checking of PROT_EXEC on mmap/mprotect calls. |
| 18 | write /sys/fs/selinux/checkreqprot 0 |
| 19 | |
Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 20 | # Set the security context for the init process. |
| 21 | # This should occur before anything else (e.g. ueventd) is started. |
| 22 | setcon u:r:init:s0 |
| 23 | |
Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 24 | # Set the security context of /adb_keys if present. |
| 25 | restorecon /adb_keys |
| 26 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 27 | start ueventd |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 28 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 29 | # create mountpoints |
Mike Lockwood | a2dffa9 | 2010-06-15 20:57:59 -0700 | [diff] [blame] | 30 | mkdir /mnt 0775 root system |
| 31 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 32 | on init |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 33 | sysclktz 0 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 34 | |
Elliott Hughes | 3a5d71a | 2015-02-13 16:47:02 -0800 | [diff] [blame] | 35 | # Backward compatibility. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 36 | symlink /system/etc /etc |
Brian Swetland | bb6f68c | 2009-09-18 15:31:23 -0700 | [diff] [blame] | 37 | symlink /sys/kernel/debug /d |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 38 | |
Elliott Hughes | 3a5d71a | 2015-02-13 16:47:02 -0800 | [diff] [blame] | 39 | # Link /vendor to /system/vendor for devices without a vendor partition. |
Daniel Rosenberg | f67d6bd | 2014-06-26 14:55:04 -0700 | [diff] [blame] | 40 | symlink /system/vendor /vendor |
| 41 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 42 | # Create cgroup mount point for cpu accounting |
Mike Chan | 89f235c | 2010-03-01 11:36:10 -0800 | [diff] [blame] | 43 | mkdir /acct |
| 44 | mount cgroup none /acct cpuacct |
| 45 | mkdir /acct/uid |
| 46 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 47 | # Create cgroup mount point for memory |
Rom Lemarchand | 67b00d8 | 2013-09-10 17:39:30 -0700 | [diff] [blame] | 48 | mount tmpfs none /sys/fs/cgroup mode=0750,uid=0,gid=1000 |
| 49 | mkdir /sys/fs/cgroup/memory 0750 root system |
Rom Lemarchand | 435a52e | 2013-07-10 13:00:42 -0700 | [diff] [blame] | 50 | mount cgroup none /sys/fs/cgroup/memory memory |
| 51 | write /sys/fs/cgroup/memory/memory.move_charge_at_immigrate 1 |
| 52 | chown root system /sys/fs/cgroup/memory/tasks |
| 53 | chmod 0660 /sys/fs/cgroup/memory/tasks |
Rom Lemarchand | 67b00d8 | 2013-09-10 17:39:30 -0700 | [diff] [blame] | 54 | mkdir /sys/fs/cgroup/memory/sw 0750 root system |
Rom Lemarchand | 435a52e | 2013-07-10 13:00:42 -0700 | [diff] [blame] | 55 | write /sys/fs/cgroup/memory/sw/memory.swappiness 100 |
| 56 | write /sys/fs/cgroup/memory/sw/memory.move_charge_at_immigrate 1 |
| 57 | chown root system /sys/fs/cgroup/memory/sw/tasks |
| 58 | chmod 0660 /sys/fs/cgroup/memory/sw/tasks |
| 59 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 60 | mkdir /system |
| 61 | mkdir /data 0771 system system |
| 62 | mkdir /cache 0770 system cache |
Dmitry Shmidt | 720f08f | 2009-06-09 14:38:56 -0700 | [diff] [blame] | 63 | mkdir /config 0500 root root |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 64 | |
Jeff Sharkey | bfcd810 | 2012-08-22 13:57:25 -0700 | [diff] [blame] | 65 | # See storage config details at http://source.android.com/tech/storage/ |
Jeff Sharkey | 5dd0f86 | 2012-08-17 16:01:16 -0700 | [diff] [blame] | 66 | mkdir /mnt/shell 0700 shell shell |
Jeff Sharkey | e93a051 | 2013-10-08 10:14:24 -0700 | [diff] [blame] | 67 | mkdir /mnt/media_rw 0700 media_rw media_rw |
Jeff Sharkey | 44d6342 | 2013-09-12 09:44:48 -0700 | [diff] [blame] | 68 | mkdir /storage 0751 root sdcard_r |
Jeff Sharkey | 5dd0f86 | 2012-08-17 16:01:16 -0700 | [diff] [blame] | 69 | |
San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 70 | # Directory for putting things only root should see. |
| 71 | mkdir /mnt/secure 0700 root root |
| 72 | |
| 73 | # Directory for staging bindmounts |
| 74 | mkdir /mnt/secure/staging 0700 root root |
| 75 | |
| 76 | # Directory-target for where the secure container |
| 77 | # imagefile directory will be bind-mounted |
| 78 | mkdir /mnt/secure/asec 0700 root root |
| 79 | |
| 80 | # Secure container public mount points. |
| 81 | mkdir /mnt/asec 0700 root system |
| 82 | mount tmpfs tmpfs /mnt/asec mode=0755,gid=1000 |
San Mehat | 900570e | 2010-01-06 10:38:49 -0800 | [diff] [blame] | 83 | |
Kenny Root | c7858a3 | 2010-07-15 12:14:44 -0700 | [diff] [blame] | 84 | # Filesystem image public mount points. |
| 85 | mkdir /mnt/obb 0700 root system |
| 86 | mount tmpfs tmpfs /mnt/obb mode=0755,gid=1000 |
| 87 | |
Todd Poynor | aacded7 | 2013-07-10 15:19:44 -0700 | [diff] [blame] | 88 | # memory control cgroup |
| 89 | mkdir /dev/memcg 0700 root system |
| 90 | mount cgroup none /dev/memcg memory |
| 91 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 92 | write /proc/sys/kernel/panic_on_oops 1 |
| 93 | write /proc/sys/kernel/hung_task_timeout_secs 0 |
| 94 | write /proc/cpu/alignment 4 |
| 95 | write /proc/sys/kernel/sched_latency_ns 10000000 |
| 96 | write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000 |
San Mehat | 4322f2d | 2009-06-29 08:47:43 -0700 | [diff] [blame] | 97 | write /proc/sys/kernel/sched_compat_yield 1 |
San Mehat | 7baff71 | 2009-09-16 13:32:23 -0700 | [diff] [blame] | 98 | write /proc/sys/kernel/sched_child_runs_first 0 |
Nick Kralevich | d707fb3 | 2011-10-06 11:47:11 -0700 | [diff] [blame] | 99 | write /proc/sys/kernel/randomize_va_space 2 |
Nick Kralevich | 2e7c833 | 2011-11-02 08:51:37 -0700 | [diff] [blame] | 100 | write /proc/sys/kernel/kptr_restrict 2 |
Nick Kralevich | 27cca21 | 2011-12-05 14:48:08 -0800 | [diff] [blame] | 101 | write /proc/sys/vm/mmap_min_addr 32768 |
Nick Kralevich | be341cc | 2013-02-21 18:36:43 -0800 | [diff] [blame] | 102 | write /proc/sys/net/ipv4/ping_group_range "0 2147483647" |
Mark Salyzyn | 581edc1 | 2013-11-20 13:38:52 -0800 | [diff] [blame] | 103 | write /proc/sys/net/unix/max_dgram_qlen 300 |
Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 104 | write /proc/sys/kernel/sched_rt_runtime_us 950000 |
| 105 | write /proc/sys/kernel/sched_rt_period_us 1000000 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 106 | |
Sreeram Ramachandran | fd94922 | 2014-04-09 17:44:56 -0700 | [diff] [blame] | 107 | # reflect fwmark from incoming packets onto generated replies |
| 108 | write /proc/sys/net/ipv4/fwmark_reflect 1 |
| 109 | write /proc/sys/net/ipv6/fwmark_reflect 1 |
| 110 | |
| 111 | # set fwmark on accepted sockets |
| 112 | write /proc/sys/net/ipv4/tcp_fwmark_accept 1 |
| 113 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 114 | # Create cgroup mount points for process groups |
San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 115 | mkdir /dev/cpuctl |
San Mehat | b91bf4b | 2010-02-27 08:20:11 -0800 | [diff] [blame] | 116 | mount cgroup none /dev/cpuctl cpu |
San Mehat | 92175e0 | 2010-01-17 12:21:42 -0800 | [diff] [blame] | 117 | chown system system /dev/cpuctl |
San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 118 | chown system system /dev/cpuctl/tasks |
Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 119 | chmod 0666 /dev/cpuctl/tasks |
San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 120 | write /dev/cpuctl/cpu.shares 1024 |
Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 121 | write /dev/cpuctl/cpu.rt_runtime_us 800000 |
Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 122 | write /dev/cpuctl/cpu.rt_period_us 1000000 |
San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 123 | |
Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 124 | mkdir /dev/cpuctl/bg_non_interactive |
| 125 | chown system system /dev/cpuctl/bg_non_interactive/tasks |
| 126 | chmod 0666 /dev/cpuctl/bg_non_interactive/tasks |
San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 127 | # 5.0 % |
Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 128 | write /dev/cpuctl/bg_non_interactive/cpu.shares 52 |
| 129 | write /dev/cpuctl/bg_non_interactive/cpu.rt_runtime_us 700000 |
| 130 | write /dev/cpuctl/bg_non_interactive/cpu.rt_period_us 1000000 |
Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 131 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 132 | # qtaguid will limit access to specific data based on group memberships. |
| 133 | # net_bw_acct grants impersonation of socket owners. |
| 134 | # net_bw_stats grants access to other apps' detailed tagged-socket stats. |
JP Abgrall | 3e54aab | 2013-01-04 14:34:58 -0800 | [diff] [blame] | 135 | chown root net_bw_acct /proc/net/xt_qtaguid/ctrl |
| 136 | chown root net_bw_stats /proc/net/xt_qtaguid/stats |
| 137 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 138 | # Allow everybody to read the xt_qtaguid resource tracking misc dev. |
| 139 | # This is needed by any process that uses socket tagging. |
JP Abgrall | 8e3ff70 | 2011-09-11 16:12:27 -0700 | [diff] [blame] | 140 | chmod 0644 /dev/xt_qtaguid |
| 141 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 142 | # Create location for fs_mgr to store abbreviated output from filesystem |
| 143 | # checker programs. |
Ken Sumrall | 4eaf905 | 2013-09-18 17:49:21 -0700 | [diff] [blame] | 144 | mkdir /dev/fscklogs 0770 root system |
| 145 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 146 | # pstore/ramoops previous console log |
Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 147 | mount pstore pstore /sys/fs/pstore |
| 148 | chown system log /sys/fs/pstore/console-ramoops |
| 149 | chmod 0440 /sys/fs/pstore/console-ramoops |
Mark Salyzyn | 4b0313e | 2014-12-15 07:52:19 -0800 | [diff] [blame] | 150 | chown system log /sys/fs/pstore/pmsg-ramoops-0 |
| 151 | chmod 0440 /sys/fs/pstore/pmsg-ramoops-0 |
Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 152 | |
Greg Hackmann | cee8757 | 2015-01-26 10:40:29 -0800 | [diff] [blame] | 153 | # enable armv8_deprecated instruction hooks |
| 154 | write /proc/sys/abi/swp 1 |
| 155 | |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 156 | # Healthd can trigger a full boot from charger mode by signaling this |
| 157 | # property when the power button is held. |
| 158 | on property:sys.boot_from_charger_mode=1 |
| 159 | class_stop charger |
| 160 | trigger late-init |
| 161 | |
| 162 | # Load properties from /system/ + /factory after fs mount. |
| 163 | on load_all_props_action |
| 164 | load_all_props |
Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 165 | start logd-reinit |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 166 | |
Riley Andrews | 80c7a5e | 2014-07-11 15:05:23 -0700 | [diff] [blame] | 167 | # Indicate to fw loaders that the relevant mounts are up. |
| 168 | on firmware_mounts_complete |
| 169 | rm /dev/.booting |
| 170 | |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 171 | # Mount filesystems and start core system services. |
| 172 | on late-init |
| 173 | trigger early-fs |
| 174 | trigger fs |
| 175 | trigger post-fs |
| 176 | trigger post-fs-data |
| 177 | |
| 178 | # Load properties from /system/ + /factory after fs mount. Place |
| 179 | # this in another action so that the load will be scheduled after the prior |
| 180 | # issued fs triggers have completed. |
| 181 | trigger load_all_props_action |
| 182 | |
Riley Andrews | 67cb1ae | 2014-07-15 20:39:41 -0700 | [diff] [blame] | 183 | # Remove a file to wake up anything waiting for firmware. |
| 184 | trigger firmware_mounts_complete |
| 185 | |
Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 186 | trigger early-boot |
| 187 | trigger boot |
| 188 | |
Riley Andrews | 80c7a5e | 2014-07-11 15:05:23 -0700 | [diff] [blame] | 189 | |
Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 190 | on post-fs |
Mark Salyzyn | 124ff15 | 2015-04-07 15:32:12 -0700 | [diff] [blame^] | 191 | start logd |
Brian Swetland | 56de7a1 | 2010-09-08 15:06:45 -0700 | [diff] [blame] | 192 | # once everything is setup, no need to modify / |
| 193 | mount rootfs rootfs / ro remount |
Jeff Sharkey | 885342a | 2012-08-14 21:00:22 -0700 | [diff] [blame] | 194 | # mount shared so changes propagate into child namespaces |
| 195 | mount rootfs rootfs / shared rec |
Brian Swetland | 56de7a1 | 2010-09-08 15:06:45 -0700 | [diff] [blame] | 196 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 197 | # We chown/chmod /cache again so because mount is run as root + defaults |
| 198 | chown system cache /cache |
| 199 | chmod 0770 /cache |
Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 200 | # We restorecon /cache in case the cache partition has been reset. |
Nick Kralevich | e169591 | 2014-07-09 12:39:21 -0700 | [diff] [blame] | 201 | restorecon_recursive /cache |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 202 | |
| 203 | # This may have been created by the recovery system with odd permissions |
| 204 | chown system cache /cache/recovery |
| 205 | chmod 0770 /cache/recovery |
| 206 | |
| 207 | #change permissions on vmallocinfo so we can grab it from bugreports |
| 208 | chown root log /proc/vmallocinfo |
| 209 | chmod 0440 /proc/vmallocinfo |
| 210 | |
Dima Zavin | 9481266 | 2012-09-25 14:22:02 -0700 | [diff] [blame] | 211 | chown root log /proc/slabinfo |
| 212 | chmod 0440 /proc/slabinfo |
| 213 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 214 | #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks |
| 215 | chown root system /proc/kmsg |
| 216 | chmod 0440 /proc/kmsg |
| 217 | chown root system /proc/sysrq-trigger |
| 218 | chmod 0220 /proc/sysrq-trigger |
Colin Cross | b35e36e | 2012-08-02 18:14:33 -0700 | [diff] [blame] | 219 | chown system log /proc/last_kmsg |
| 220 | chmod 0440 /proc/last_kmsg |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 221 | |
dcashman | 5822a4a | 2014-03-25 16:31:07 -0700 | [diff] [blame] | 222 | # make the selinux kernel policy world-readable |
| 223 | chmod 0444 /sys/fs/selinux/policy |
| 224 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 225 | # create the lost+found directories, so as to enforce our permissions |
Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 226 | mkdir /cache/lost+found 0770 root root |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 227 | |
| 228 | on post-fs-data |
Paul Lawrence | b8c9d27 | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 229 | installkey /data |
| 230 | |
Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 231 | # We chown/chmod /data again so because mount is run as root + defaults |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 232 | chown system system /data |
| 233 | chmod 0771 /data |
Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 234 | # We restorecon /data in case the userdata partition has been reset. |
| 235 | restorecon /data |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 236 | |
Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 237 | # Start bootcharting as soon as possible after the data partition is |
| 238 | # mounted to collect more data. |
| 239 | mkdir /data/bootchart 0755 shell shell |
| 240 | bootchart_init |
| 241 | |
Nick Kralevich | b410eb1 | 2013-09-17 16:18:23 -0700 | [diff] [blame] | 242 | # Avoid predictable entropy pool. Carry over entropy from previous boot. |
| 243 | copy /data/system/entropy.dat /dev/urandom |
| 244 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 245 | # create basic filesystem structure |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 246 | mkdir /data/misc 01771 system misc |
Benoit Goby | 0245e15 | 2012-05-09 17:27:53 -0700 | [diff] [blame] | 247 | mkdir /data/misc/adb 02750 system shell |
Matthew Xie | 971153a | 2012-10-04 12:35:27 -0700 | [diff] [blame] | 248 | mkdir /data/misc/bluedroid 0770 bluetooth net_bt_stack |
Jaikumar Ganesh | eafdd86 | 2010-01-07 20:24:55 -0800 | [diff] [blame] | 249 | mkdir /data/misc/bluetooth 0770 system system |
Chia-chi Yeh | 9b4f1ff | 2009-09-18 10:35:26 +0800 | [diff] [blame] | 250 | mkdir /data/misc/keystore 0700 keystore keystore |
Brian Carlstrom | 0491893 | 2011-06-30 22:50:29 -0700 | [diff] [blame] | 251 | mkdir /data/misc/keychain 0771 system system |
Sreeram Ramachandran | b46efdb | 2014-07-07 22:09:54 -0700 | [diff] [blame] | 252 | mkdir /data/misc/net 0750 root shell |
Robert Greenwalt | 2aa33a3 | 2013-07-16 09:46:17 -0700 | [diff] [blame] | 253 | mkdir /data/misc/radio 0770 system radio |
Robert Greenwalt | d6d4780 | 2012-09-26 16:04:27 -0700 | [diff] [blame] | 254 | mkdir /data/misc/sms 0770 system radio |
Elliott Hughes | f820e85 | 2012-10-19 18:10:05 -0700 | [diff] [blame] | 255 | mkdir /data/misc/zoneinfo 0775 system system |
Chia-chi Yeh | 9bb4d41 | 2011-07-08 20:03:03 -0700 | [diff] [blame] | 256 | mkdir /data/misc/vpn 0770 system vpn |
Torne (Richard Coles) | 234f696 | 2014-05-22 18:40:21 +0100 | [diff] [blame] | 257 | mkdir /data/misc/shared_relro 0771 shared_relro shared_relro |
Oscar Montemayor | d0aa32c | 2010-01-06 13:18:12 -0800 | [diff] [blame] | 258 | mkdir /data/misc/systemkeys 0700 system system |
Mike Lockwood | 48d116e | 2009-07-08 18:42:08 -0400 | [diff] [blame] | 259 | mkdir /data/misc/wifi 0770 wifi wifi |
Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 260 | mkdir /data/misc/wifi/sockets 0770 wifi wifi |
Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 261 | mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi |
Jaewan Kim | 373d9fa | 2014-03-10 17:13:07 +0900 | [diff] [blame] | 262 | mkdir /data/misc/ethernet 0770 system system |
Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 263 | mkdir /data/misc/dhcp 0770 dhcp dhcp |
Robin Lee | 3094f82 | 2014-04-25 15:21:35 +0100 | [diff] [blame] | 264 | mkdir /data/misc/user 0771 root root |
Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 265 | # give system access to wpa_supplicant.conf for backup and restore |
Amith Yamasani | eefef32 | 2009-07-02 12:08:13 -0700 | [diff] [blame] | 266 | chmod 0660 /data/misc/wifi/wpa_supplicant.conf |
Chia-chi Yeh | 5ebced3 | 2012-03-07 14:52:10 -0800 | [diff] [blame] | 267 | mkdir /data/local 0751 root root |
Glenn Kasten | b0f908a | 2013-02-22 14:54:45 -0800 | [diff] [blame] | 268 | mkdir /data/misc/media 0700 media media |
Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 269 | |
Nick Kralevich | f3ef127 | 2012-03-14 15:22:54 -0700 | [diff] [blame] | 270 | # For security reasons, /data/local/tmp should always be empty. |
| 271 | # Do not place files or directories in /data/local/tmp |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 272 | mkdir /data/local/tmp 0771 shell shell |
| 273 | mkdir /data/data 0771 system system |
| 274 | mkdir /data/app-private 0771 system system |
Kenny Root | f8bbaba | 2012-04-12 15:01:52 -0700 | [diff] [blame] | 275 | mkdir /data/app-asec 0700 root root |
Kenny Root | 5054417 | 2012-09-08 22:39:25 -0700 | [diff] [blame] | 276 | mkdir /data/app-lib 0771 system system |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 277 | mkdir /data/app 0771 system system |
| 278 | mkdir /data/property 0700 root root |
Nick Kralevich | 0359d77 | 2015-01-30 17:38:06 -0800 | [diff] [blame] | 279 | mkdir /data/tombstones 0771 system system |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 280 | |
Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 281 | # create dalvik-cache, so as to enforce our permissions |
Alex Light | c692410 | 2014-08-27 15:40:05 -0700 | [diff] [blame] | 282 | mkdir /data/dalvik-cache 0771 root root |
Nick Kralevich | 347ee51 | 2014-06-11 18:32:15 -0700 | [diff] [blame] | 283 | mkdir /data/dalvik-cache/profiles 0711 system system |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 284 | |
MÃ¥rten Kongstad | b45280d | 2011-05-30 10:24:54 +0200 | [diff] [blame] | 285 | # create resource-cache and double-check the perms |
| 286 | mkdir /data/resource-cache 0771 system system |
| 287 | chown system system /data/resource-cache |
| 288 | chmod 0771 /data/resource-cache |
| 289 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 290 | # create the lost+found directories, so as to enforce our permissions |
Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 291 | mkdir /data/lost+found 0770 root root |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 292 | |
James Dong | 09cdc0e | 2012-01-06 15:19:26 -0800 | [diff] [blame] | 293 | # create directory for DRM plug-ins - give drm the read/write access to |
| 294 | # the following directory. |
| 295 | mkdir /data/drm 0770 drm drm |
aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 296 | |
Jeff Tinker | 08d6430 | 2013-04-23 19:54:17 -0700 | [diff] [blame] | 297 | # create directory for MediaDrm plug-ins - give drm the read/write access to |
| 298 | # the following directory. |
| 299 | mkdir /data/mediadrm 0770 mediadrm mediadrm |
| 300 | |
Nick Kralevich | 89252ce | 2014-10-20 21:53:56 -0700 | [diff] [blame] | 301 | mkdir /data/adb 0700 root root |
| 302 | |
Jeff Sharkey | fb4f7ac | 2013-03-14 14:27:38 -0700 | [diff] [blame] | 303 | # symlink to bugreport storage location |
| 304 | symlink /data/data/com.android.shell/files/bugreports /data/bugreports |
| 305 | |
William Roberts | bfd71b4 | 2013-01-23 14:05:04 -0800 | [diff] [blame] | 306 | # Separate location for storing security policy files on data |
William Roberts | d43bab7 | 2013-04-15 13:56:22 -0700 | [diff] [blame] | 307 | mkdir /data/security 0711 system system |
William Roberts | bfd71b4 | 2013-01-23 14:05:04 -0800 | [diff] [blame] | 308 | |
Paul Lawrence | b8c9d27 | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 309 | # Create all remaining /data root dirs so that they are made through init |
| 310 | # and get proper encryption policy installed |
| 311 | mkdir /data/backup 0700 system system |
| 312 | mkdir /data/media 0770 media_rw media_rw |
| 313 | mkdir /data/ss 0700 system system |
| 314 | mkdir /data/system 0775 system system |
Nick Kralevich | 9c0437f | 2015-04-07 16:44:08 -0700 | [diff] [blame] | 315 | mkdir /data/system/heapdump 0700 system system |
Paul Lawrence | b8c9d27 | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 316 | mkdir /data/user 0711 system system |
| 317 | |
Stephen Smalley | 6552f68 | 2013-08-26 10:45:05 -0400 | [diff] [blame] | 318 | # Reload policy from /data/security if present. |
| 319 | setprop selinux.reload_policy 1 |
| 320 | |
Stephen Smalley | f2b7ee7 | 2014-02-06 13:52:52 -0500 | [diff] [blame] | 321 | # Set SELinux security contexts on upgrade or policy update. |
| 322 | restorecon_recursive /data |
| 323 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 324 | # If there is no fs-post-data action in the init.<device>.rc file, you |
| 325 | # must uncomment this line, otherwise encrypted filesystems |
| 326 | # won't work. |
| 327 | # Set indication (checked by vold) that we have finished this action |
| 328 | #setprop vold.post_fs_data_done 1 |
| 329 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 330 | on boot |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 331 | # basic network init |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 332 | ifup lo |
| 333 | hostname localhost |
| 334 | domainname localdomain |
| 335 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 336 | # set RLIMIT_NICE to allow priorities from 19 to -20 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 337 | setrlimit 13 40 40 |
| 338 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 339 | # Memory management. Basic kernel parameters, and allow the high |
| 340 | # level system server to be able to adjust the kernel OOM driver |
| 341 | # parameters to match how it is managing things. |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 342 | write /proc/sys/vm/overcommit_memory 1 |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 343 | write /proc/sys/vm/min_free_order_shift 4 |
Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 344 | chown root system /sys/module/lowmemorykiller/parameters/adj |
Nick Kralevich | b373973 | 2014-02-13 13:58:21 -0800 | [diff] [blame] | 345 | chmod 0220 /sys/module/lowmemorykiller/parameters/adj |
Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 346 | chown root system /sys/module/lowmemorykiller/parameters/minfree |
Nick Kralevich | b373973 | 2014-02-13 13:58:21 -0800 | [diff] [blame] | 347 | chmod 0220 /sys/module/lowmemorykiller/parameters/minfree |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 348 | |
San Mehat | 831d8e1 | 2009-10-13 12:24:47 -0700 | [diff] [blame] | 349 | # Tweak background writeout |
| 350 | write /proc/sys/vm/dirty_expire_centisecs 200 |
| 351 | write /proc/sys/vm/dirty_background_ratio 5 |
| 352 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 353 | # Permissions for System Server and daemons. |
| 354 | chown radio system /sys/android_power/state |
| 355 | chown radio system /sys/android_power/request_state |
| 356 | chown radio system /sys/android_power/acquire_full_wake_lock |
| 357 | chown radio system /sys/android_power/acquire_partial_wake_lock |
| 358 | chown radio system /sys/android_power/release_wake_lock |
Arve Hjønnevåg | 70a163f | 2012-05-02 17:57:50 -0700 | [diff] [blame] | 359 | chown system system /sys/power/autosleep |
Arve Hjønnevåg | 1670f83 | 2012-03-20 20:33:09 -0700 | [diff] [blame] | 360 | chown system system /sys/power/state |
| 361 | chown system system /sys/power/wakeup_count |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 362 | chown radio system /sys/power/wake_lock |
| 363 | chown radio system /sys/power/wake_unlock |
| 364 | chmod 0660 /sys/power/state |
| 365 | chmod 0660 /sys/power/wake_lock |
| 366 | chmod 0660 /sys/power/wake_unlock |
Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 367 | |
| 368 | chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_rate |
| 369 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_rate |
Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 370 | chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_slack |
| 371 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_slack |
Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 372 | chown system system /sys/devices/system/cpu/cpufreq/interactive/min_sample_time |
| 373 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/min_sample_time |
| 374 | chown system system /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq |
| 375 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq |
Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 376 | chown system system /sys/devices/system/cpu/cpufreq/interactive/target_loads |
| 377 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/target_loads |
Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 378 | chown system system /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load |
| 379 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load |
Todd Poynor | f35c203 | 2012-04-19 13:17:24 -0700 | [diff] [blame] | 380 | chown system system /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay |
| 381 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay |
Todd Poynor | 8d3ea1d | 2012-04-24 15:37:13 -0700 | [diff] [blame] | 382 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boost |
| 383 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boost |
Todd Poynor | 4ff10e6 | 2012-05-03 15:20:48 -0700 | [diff] [blame] | 384 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse |
Todd Poynor | 33045a6 | 2012-04-27 20:21:18 -0700 | [diff] [blame] | 385 | chown system system /sys/devices/system/cpu/cpufreq/interactive/input_boost |
| 386 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/input_boost |
Todd Poynor | 4f247d7 | 2012-12-19 17:43:06 -0800 | [diff] [blame] | 387 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration |
| 388 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration |
Todd Poynor | 6b5de1c | 2013-03-25 13:17:13 -0700 | [diff] [blame] | 389 | chown system system /sys/devices/system/cpu/cpufreq/interactive/io_is_busy |
| 390 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/io_is_busy |
Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 391 | |
| 392 | # Assume SMP uses shared cpufreq policy for all CPUs |
| 393 | chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 394 | chmod 0660 /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq |
| 395 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 396 | chown system system /sys/class/timed_output/vibrator/enable |
| 397 | chown system system /sys/class/leds/keyboard-backlight/brightness |
| 398 | chown system system /sys/class/leds/lcd-backlight/brightness |
| 399 | chown system system /sys/class/leds/button-backlight/brightness |
The Android Open Source Project | f614d64 | 2009-03-18 17:39:49 -0700 | [diff] [blame] | 400 | chown system system /sys/class/leds/jogball-backlight/brightness |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 401 | chown system system /sys/class/leds/red/brightness |
| 402 | chown system system /sys/class/leds/green/brightness |
| 403 | chown system system /sys/class/leds/blue/brightness |
| 404 | chown system system /sys/class/leds/red/device/grpfreq |
| 405 | chown system system /sys/class/leds/red/device/grppwm |
| 406 | chown system system /sys/class/leds/red/device/blink |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 407 | chown system system /sys/class/timed_output/vibrator/enable |
| 408 | chown system system /sys/module/sco/parameters/disable_esco |
| 409 | chown system system /sys/kernel/ipv4/tcp_wmem_min |
| 410 | chown system system /sys/kernel/ipv4/tcp_wmem_def |
| 411 | chown system system /sys/kernel/ipv4/tcp_wmem_max |
| 412 | chown system system /sys/kernel/ipv4/tcp_rmem_min |
| 413 | chown system system /sys/kernel/ipv4/tcp_rmem_def |
| 414 | chown system system /sys/kernel/ipv4/tcp_rmem_max |
| 415 | chown root radio /proc/cmdline |
| 416 | |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 417 | # Define default initial receive window size in segments. |
JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 418 | setprop net.tcp.default_init_rwnd 60 |
| 419 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 420 | class_start core |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 421 | |
| 422 | on nonencrypted |
Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 423 | class_start main |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 424 | class_start late_start |
| 425 | |
Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 426 | on property:vold.decrypt=trigger_default_encryption |
Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 427 | start defaultcrypto |
| 428 | |
Paul Lawrence | 166fa3d | 2014-02-03 13:27:49 -0800 | [diff] [blame] | 429 | on property:vold.decrypt=trigger_encryption |
| 430 | start surfaceflinger |
| 431 | start encrypt |
Paul Lawrence | 166fa3d | 2014-02-03 13:27:49 -0800 | [diff] [blame] | 432 | |
Riley Andrews | 1bbef88 | 2014-06-26 13:55:03 -0700 | [diff] [blame] | 433 | on property:sys.init_log_level=* |
| 434 | loglevel ${sys.init_log_level} |
| 435 | |
Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 436 | on charger |
| 437 | class_start charger |
| 438 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 439 | on property:vold.decrypt=trigger_reset_main |
| 440 | class_reset main |
| 441 | |
Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 442 | on property:vold.decrypt=trigger_load_persist_props |
| 443 | load_persist_props |
Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 444 | start logd-reinit |
Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 445 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 446 | on property:vold.decrypt=trigger_post_fs_data |
| 447 | trigger post-fs-data |
| 448 | |
Ken Sumrall | e434915 | 2011-01-17 14:26:34 -0800 | [diff] [blame] | 449 | on property:vold.decrypt=trigger_restart_min_framework |
| 450 | class_start main |
| 451 | |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 452 | on property:vold.decrypt=trigger_restart_framework |
Paul Lawrence | b8c9d27 | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 453 | installkey /data |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 454 | class_start main |
| 455 | class_start late_start |
| 456 | |
| 457 | on property:vold.decrypt=trigger_shutdown_framework |
| 458 | class_reset late_start |
| 459 | class_reset main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 460 | |
Nick Kralevich | ca8e66a | 2013-04-18 12:20:02 -0700 | [diff] [blame] | 461 | on property:sys.powerctl=* |
| 462 | powerctl ${sys.powerctl} |
| 463 | |
JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 464 | # system server cannot write to /proc/sys files, |
| 465 | # and chown/chmod does not work for /proc/sys/ entries. |
| 466 | # So proxy writes through init. |
Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 467 | on property:sys.sysctl.extra_free_kbytes=* |
| 468 | write /proc/sys/vm/extra_free_kbytes ${sys.sysctl.extra_free_kbytes} |
Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 469 | |
JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 470 | # "tcp_default_init_rwnd" Is too long! |
| 471 | on property:sys.sysctl.tcp_def_init_rwnd=* |
| 472 | write /proc/sys/net/ipv4/tcp_default_init_rwnd ${sys.sysctl.tcp_def_init_rwnd} |
| 473 | |
Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 474 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 475 | ## Daemon processes to be run by init. |
| 476 | ## |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 477 | service ueventd /sbin/ueventd |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 478 | class core |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 479 | critical |
Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 480 | seclabel u:r:ueventd:s0 |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 481 | |
Mark Salyzyn | 3c253dc | 2014-03-21 16:06:54 -0700 | [diff] [blame] | 482 | service logd /system/bin/logd |
| 483 | class core |
| 484 | socket logd stream 0666 logd logd |
| 485 | socket logdr seqpacket 0666 logd logd |
| 486 | socket logdw dgram 0222 logd logd |
Mark Salyzyn | 3c253dc | 2014-03-21 16:06:54 -0700 | [diff] [blame] | 487 | |
Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 488 | service logd-reinit /system/bin/logd --reinit |
Mark Salyzyn | 124ff15 | 2015-04-07 15:32:12 -0700 | [diff] [blame^] | 489 | start logd |
Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 490 | oneshot |
| 491 | disabled |
| 492 | |
Todd Poynor | 13f4c9f | 2013-06-19 15:09:35 -0700 | [diff] [blame] | 493 | service healthd /sbin/healthd |
| 494 | class core |
| 495 | critical |
| 496 | seclabel u:r:healthd:s0 |
| 497 | |
Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 498 | service console /system/bin/sh |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 499 | class core |
Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 500 | console |
| 501 | disabled |
| 502 | user shell |
Nick Kralevich | f2cb352 | 2014-06-12 12:33:21 -0700 | [diff] [blame] | 503 | group shell log |
Stephen Smalley | 610653f | 2013-12-23 14:11:02 -0500 | [diff] [blame] | 504 | seclabel u:r:shell:s0 |
Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 505 | |
Mike Lockwood | d49b4ef | 2010-11-19 09:12:27 -0500 | [diff] [blame] | 506 | on property:ro.debuggable=1 |
Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 507 | start console |
| 508 | |
Mike Lockwood | 352dfdf | 2011-06-08 17:40:00 -0700 | [diff] [blame] | 509 | # adbd is controlled via property triggers in init.<platform>.usb.rc |
Nick Kralevich | d49aa25 | 2014-01-18 09:25:04 -0800 | [diff] [blame] | 510 | service adbd /sbin/adbd --root_seclabel=u:r:su:s0 |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 511 | class core |
Benoit Goby | 0574d6b | 2012-04-24 15:07:12 -0700 | [diff] [blame] | 512 | socket adbd stream 660 system system |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 513 | disabled |
Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 514 | seclabel u:r:adbd:s0 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 515 | |
| 516 | # adbd on at boot in emulator |
| 517 | on property:ro.kernel.qemu=1 |
| 518 | start adbd |
| 519 | |
Mark Salyzyn | 0a0cc71 | 2014-03-21 17:41:52 -0700 | [diff] [blame] | 520 | service lmkd /system/bin/lmkd |
| 521 | class core |
| 522 | critical |
| 523 | socket lmkd seqpacket 0660 system system |
| 524 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 525 | service servicemanager /system/bin/servicemanager |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 526 | class core |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 527 | user system |
Nick Kralevich | 333f24b | 2010-12-10 14:10:16 -0800 | [diff] [blame] | 528 | group system |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 529 | critical |
Todd Poynor | 13f4c9f | 2013-06-19 15:09:35 -0700 | [diff] [blame] | 530 | onrestart restart healthd |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 531 | onrestart restart zygote |
| 532 | onrestart restart media |
Mathias Agopian | 04a8759 | 2011-10-31 14:27:36 -0700 | [diff] [blame] | 533 | onrestart restart surfaceflinger |
| 534 | onrestart restart drm |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 535 | |
The Android Open Source Project | e4749f3 | 2009-03-09 11:52:15 -0700 | [diff] [blame] | 536 | service vold /system/bin/vold |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 537 | class core |
The Android Open Source Project | e4749f3 | 2009-03-09 11:52:15 -0700 | [diff] [blame] | 538 | socket vold stream 0660 root mount |
San Mehat | f0cb74e | 2010-02-26 10:01:14 -0800 | [diff] [blame] | 539 | ioprio be 2 |
The Android Open Source Project | e4749f3 | 2009-03-09 11:52:15 -0700 | [diff] [blame] | 540 | |
San Mehat | 192277c | 2010-01-15 07:48:35 -0800 | [diff] [blame] | 541 | service netd /system/bin/netd |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 542 | class main |
San Mehat | 192277c | 2010-01-15 07:48:35 -0800 | [diff] [blame] | 543 | socket netd stream 0660 root system |
Brad Fitzpatrick | 8c5669f | 2010-10-27 10:23:16 -0700 | [diff] [blame] | 544 | socket dnsproxyd stream 0660 root inet |
Robert Greenwalt | 1d91fcf | 2012-03-27 16:59:27 -0700 | [diff] [blame] | 545 | socket mdns stream 0660 root system |
Sreeram Ramachandran | 76202a2 | 2014-05-11 07:27:34 -0700 | [diff] [blame] | 546 | socket fwmarkd stream 0660 root inet |
San Mehat | 192277c | 2010-01-15 07:48:35 -0800 | [diff] [blame] | 547 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 548 | service debuggerd /system/bin/debuggerd |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 549 | class main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 550 | |
Dan Willemsen | 78ef91a | 2014-02-16 11:30:27 -0800 | [diff] [blame] | 551 | service debuggerd64 /system/bin/debuggerd64 |
| 552 | class main |
| 553 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 554 | service ril-daemon /system/bin/rild |
vidya rao | 04cf629 | 2011-06-24 12:15:20 -0700 | [diff] [blame] | 555 | class main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 556 | socket rild stream 660 root radio |
| 557 | socket rild-debug stream 660 radio system |
| 558 | user root |
Jeff Sharkey | 61f1359 | 2012-08-20 14:31:47 -0700 | [diff] [blame] | 559 | group radio cache inet misc audio log |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 560 | |
Mathias Agopian | a40481b | 2011-03-03 18:48:30 -0800 | [diff] [blame] | 561 | service surfaceflinger /system/bin/surfaceflinger |
Andres Morales | 314313a | 2014-08-26 12:57:46 -0700 | [diff] [blame] | 562 | class core |
Mathias Agopian | a40481b | 2011-03-03 18:48:30 -0800 | [diff] [blame] | 563 | user system |
Dima Zavin | ece565c | 2012-10-04 17:02:26 -0700 | [diff] [blame] | 564 | group graphics drmrpc |
Mathias Agopian | a40481b | 2011-03-03 18:48:30 -0800 | [diff] [blame] | 565 | onrestart restart zygote |
| 566 | |
aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 567 | service drm /system/bin/drmserver |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 568 | class main |
aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 569 | user drm |
Jeff Sharkey | 61f1359 | 2012-08-20 14:31:47 -0700 | [diff] [blame] | 570 | group drm system inet drmrpc |
aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 571 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 572 | service media /system/bin/mediaserver |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 573 | class main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 574 | user media |
Jeff Tinker | 08d6430 | 2013-04-23 19:54:17 -0700 | [diff] [blame] | 575 | group audio camera inet net_bt net_bt_admin net_bw_acct drmrpc mediadrm |
San Mehat | f0cb74e | 2010-02-26 10:01:14 -0800 | [diff] [blame] | 576 | ioprio rt 4 |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 577 | |
Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 578 | # One shot invocation to deal with encrypted volume. |
| 579 | service defaultcrypto /system/bin/vdc --wait cryptfs mountdefaultencrypted |
| 580 | disabled |
| 581 | oneshot |
| 582 | # vold will set vold.decrypt to trigger_restart_framework (default |
| 583 | # encryption) or trigger_restart_min_framework (other encryption) |
| 584 | |
Paul Lawrence | 166fa3d | 2014-02-03 13:27:49 -0800 | [diff] [blame] | 585 | # One shot invocation to encrypt unencrypted volumes |
Paul Lawrence | 317b402 | 2015-02-06 17:18:19 +0000 | [diff] [blame] | 586 | service encrypt /system/bin/vdc --wait cryptfs enablecrypto inplace default |
Paul Lawrence | 166fa3d | 2014-02-03 13:27:49 -0800 | [diff] [blame] | 587 | disabled |
| 588 | oneshot |
| 589 | # vold will set vold.decrypt to trigger_restart_framework (default |
| 590 | # encryption) |
| 591 | |
Mathias Agopian | 8b2cf9f | 2009-05-20 18:09:51 -0700 | [diff] [blame] | 592 | service bootanim /system/bin/bootanimation |
Andres Morales | 314313a | 2014-08-26 12:57:46 -0700 | [diff] [blame] | 593 | class core |
Mathias Agopian | 8b2cf9f | 2009-05-20 18:09:51 -0700 | [diff] [blame] | 594 | user graphics |
Mike Lockwood | 7e58899 | 2014-09-29 06:17:10 -0700 | [diff] [blame] | 595 | group graphics audio |
Mathias Agopian | 8b2cf9f | 2009-05-20 18:09:51 -0700 | [diff] [blame] | 596 | disabled |
| 597 | oneshot |
| 598 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 599 | service installd /system/bin/installd |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 600 | class main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 601 | socket installd stream 600 system system |
| 602 | |
Doug Zongker | 9526202 | 2014-02-04 12:15:14 -0800 | [diff] [blame] | 603 | service flash_recovery /system/bin/install-recovery.sh |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 604 | class main |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 605 | oneshot |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 606 | |
Chia-chi Yeh | 51afbf5 | 2009-07-01 07:06:47 +0800 | [diff] [blame] | 607 | service racoon /system/bin/racoon |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 608 | class main |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 609 | socket racoon stream 600 system system |
Chia-chi Yeh | 9bb4d41 | 2011-07-08 20:03:03 -0700 | [diff] [blame] | 610 | # IKE uses UDP port 500. Racoon will setuid to vpn after binding the port. |
Chia-chi Yeh | a246871 | 2011-08-08 10:11:40 -0700 | [diff] [blame] | 611 | group vpn net_admin inet |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 612 | disabled |
| 613 | oneshot |
| 614 | |
| 615 | service mtpd /system/bin/mtpd |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 616 | class main |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 617 | socket mtpd stream 600 system system |
Chia-chi Yeh | 51afbf5 | 2009-07-01 07:06:47 +0800 | [diff] [blame] | 618 | user vpn |
Chia-chi Yeh | a246871 | 2011-08-08 10:11:40 -0700 | [diff] [blame] | 619 | group vpn net_admin inet net_raw |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 620 | disabled |
| 621 | oneshot |
| 622 | |
Chia-chi Yeh | 9b4f1ff | 2009-09-18 10:35:26 +0800 | [diff] [blame] | 623 | service keystore /system/bin/keystore /data/misc/keystore |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 624 | class main |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 625 | user keystore |
Kenny Root | ad5b9c7 | 2012-02-23 16:31:10 -0800 | [diff] [blame] | 626 | group keystore drmrpc |
Chung-yih Wang | 1f75d70 | 2009-06-01 19:04:05 +0800 | [diff] [blame] | 627 | |
Mike Lockwood | abe3a9c | 2009-09-02 18:09:26 -0400 | [diff] [blame] | 628 | service dumpstate /system/bin/dumpstate -s |
Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 629 | class main |
Mike Lockwood | abe3a9c | 2009-09-02 18:09:26 -0400 | [diff] [blame] | 630 | socket dumpstate stream 0660 shell log |
| 631 | disabled |
| 632 | oneshot |
Mike Lockwood | 9dd2eef | 2011-12-11 20:25:16 -0800 | [diff] [blame] | 633 | |
Robert Greenwalt | 1d91fcf | 2012-03-27 16:59:27 -0700 | [diff] [blame] | 634 | service mdnsd /system/bin/mdnsd |
| 635 | class main |
| 636 | user mdnsr |
| 637 | group inet net_raw |
| 638 | socket mdnsd stream 0660 mdnsr inet |
| 639 | disabled |
| 640 | oneshot |
Doug Zongker | 7baebf1 | 2014-01-14 12:30:40 -0800 | [diff] [blame] | 641 | |
| 642 | service pre-recovery /system/bin/uncrypt |
| 643 | class main |
| 644 | disabled |
| 645 | oneshot |