| 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 | 
| Yueyao Zhu | f7c34ad | 2017-05-18 12:46:34 -0700 | [diff] [blame] | 10 | import /vendor/etc/init/hw/init.${ro.hardware}.rc | 
| Badhri Jagan Sridharan | e180186 | 2015-08-28 19:32:45 -0700 | [diff] [blame] | 11 | import /init.usb.configfs.rc | 
| Narayan Kamath | 4456a55 | 2014-03-31 11:08:02 +0100 | [diff] [blame] | 12 | import /init.${ro.zygote}.rc | 
| Dima Zavin | 7634bf8 | 2011-12-16 14:23:22 -0800 | [diff] [blame] | 13 |  | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 14 | on early-init | 
| Dima Zavin | 4a25390 | 2011-11-04 12:45:52 -0700 | [diff] [blame] | 15 |     # Set init and its forked children's oom_adj. | 
| Todd Poynor | 4676550 | 2013-09-16 19:32:03 -0700 | [diff] [blame] | 16 |     write /proc/1/oom_score_adj -1000 | 
| Dima Zavin | 4a25390 | 2011-11-04 12:45:52 -0700 | [diff] [blame] | 17 |  | 
| Nick Kralevich | d28a535 | 2015-10-09 17:09:10 -0700 | [diff] [blame] | 18 |     # Disable sysrq from keyboard | 
 | 19 |     write /proc/sys/kernel/sysrq 0 | 
 | 20 |  | 
| Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 21 |     # Set the security context of /adb_keys if present. | 
 | 22 |     restorecon /adb_keys | 
 | 23 |  | 
| Alex Deymo | bb968fb | 2016-02-29 17:23:36 -0800 | [diff] [blame] | 24 |     # Set the security context of /postinstall if present. | 
 | 25 |     restorecon /postinstall | 
 | 26 |  | 
| Robert Benea | c638569 | 2017-05-31 16:07:53 -0700 | [diff] [blame] | 27 |     # Mount cgroup mount point for cpu accounting | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 28 |     mount cgroup none /acct nodev noexec nosuid cpuacct | 
| Luis Hector Chavez | 0451fd6 | 2018-07-30 13:06:46 -0700 | [diff] [blame] | 29 |     chmod 0555 /acct | 
| Robert Benea | c638569 | 2017-05-31 16:07:53 -0700 | [diff] [blame] | 30 |     mkdir /acct/uid | 
 | 31 |  | 
 | 32 |     # root memory control cgroup, used by lmkd | 
 | 33 |     mkdir /dev/memcg 0700 root system | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 34 |     mount cgroup none /dev/memcg nodev noexec nosuid memory | 
| Mark Salyzyn | 64d97d8 | 2018-04-09 09:50:32 -0700 | [diff] [blame] | 35 |     # memory.pressure_level used by lmkd | 
 | 36 |     chown root system /dev/memcg/memory.pressure_level | 
 | 37 |     chmod 0040 /dev/memcg/memory.pressure_level | 
| Robert Benea | c638569 | 2017-05-31 16:07:53 -0700 | [diff] [blame] | 38 |     # app mem cgroups, used by activity manager, lmkd and zygote | 
 | 39 |     mkdir /dev/memcg/apps/ 0755 system system | 
| Robert Benea | 3280e48 | 2017-06-27 23:09:03 -0700 | [diff] [blame] | 40 |     # cgroup for system_server and surfaceflinger | 
 | 41 |     mkdir /dev/memcg/system 0550 system system | 
| Robert Benea | c638569 | 2017-05-31 16:07:53 -0700 | [diff] [blame] | 42 |  | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 43 |     start ueventd | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 |  | 
 | 45 | on init | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 46 |     sysclktz 0 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 47 |  | 
| Nick Kralevich | 27cb410 | 2016-01-22 18:02:29 -0800 | [diff] [blame] | 48 |     # Mix device-specific information into the entropy pool | 
 | 49 |     copy /proc/cmdline /dev/urandom | 
 | 50 |     copy /default.prop /dev/urandom | 
 | 51 |  | 
| Elliott Hughes | 5a0a51b | 2018-08-22 13:21:21 -0700 | [diff] [blame] | 52 |     symlink /proc/self/fd/0 /dev/stdin | 
 | 53 |     symlink /proc/self/fd/1 /dev/stdout | 
 | 54 |     symlink /proc/self/fd/2 /dev/stderr | 
 | 55 |  | 
| Elliott Hughes | ff1ef9f | 2017-12-06 08:59:02 -0800 | [diff] [blame] | 56 |     symlink /system/bin /bin | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 57 |     symlink /system/etc /etc | 
| Elliott Hughes | ff1ef9f | 2017-12-06 08:59:02 -0800 | [diff] [blame] | 58 |  | 
 | 59 |     # Backward compatibility. | 
| Brian Swetland | bb6f68c | 2009-09-18 15:31:23 -0700 | [diff] [blame] | 60 |     symlink /sys/kernel/debug /d | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 61 |  | 
| Elliott Hughes | 3a5d71a | 2015-02-13 16:47:02 -0800 | [diff] [blame] | 62 |     # Link /vendor to /system/vendor for devices without a vendor partition. | 
| Daniel Rosenberg | f67d6bd | 2014-06-26 14:55:04 -0700 | [diff] [blame] | 63 |     symlink /system/vendor /vendor | 
 | 64 |  | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 65 |     # Create energy-aware scheduler tuning nodes | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 66 |     mkdir /dev/stune | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 67 |     mount cgroup none /dev/stune nodev noexec nosuid schedtune | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 68 |     mkdir /dev/stune/foreground | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 69 |     mkdir /dev/stune/background | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 70 |     mkdir /dev/stune/top-app | 
| Joel Fernandes | f50d109 | 2016-12-19 11:01:55 -0800 | [diff] [blame] | 71 |     mkdir /dev/stune/rt | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 72 |     chown system system /dev/stune | 
 | 73 |     chown system system /dev/stune/foreground | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 74 |     chown system system /dev/stune/background | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 75 |     chown system system /dev/stune/top-app | 
| Joel Fernandes | f50d109 | 2016-12-19 11:01:55 -0800 | [diff] [blame] | 76 |     chown system system /dev/stune/rt | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 77 |     chown system system /dev/stune/tasks | 
 | 78 |     chown system system /dev/stune/foreground/tasks | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 79 |     chown system system /dev/stune/background/tasks | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 80 |     chown system system /dev/stune/top-app/tasks | 
| Joel Fernandes | f50d109 | 2016-12-19 11:01:55 -0800 | [diff] [blame] | 81 |     chown system system /dev/stune/rt/tasks | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 82 |     chmod 0664 /dev/stune/tasks | 
 | 83 |     chmod 0664 /dev/stune/foreground/tasks | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 84 |     chmod 0664 /dev/stune/background/tasks | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 85 |     chmod 0664 /dev/stune/top-app/tasks | 
| Joel Fernandes | f50d109 | 2016-12-19 11:01:55 -0800 | [diff] [blame] | 86 |     chmod 0664 /dev/stune/rt/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 87 |  | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 88 |     restorecon_recursive /mnt | 
| Jeff Sharkey | 5dd0f86 | 2012-08-17 16:01:16 -0700 | [diff] [blame] | 89 |  | 
| Luis Hector Chavez | 8774945 | 2018-02-14 08:35:01 -0800 | [diff] [blame] | 90 |     mount configfs none /config nodev noexec nosuid | 
| Daniel Rosenberg | 7903523 | 2017-11-29 14:49:08 -0800 | [diff] [blame] | 91 |     chmod 0770 /config/sdcardfs | 
| Daniel Rosenberg | 4edec25 | 2016-02-18 19:48:31 -0800 | [diff] [blame] | 92 |     chown system package_info /config/sdcardfs | 
 | 93 |  | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 94 |     mkdir /mnt/secure 0700 root root | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 95 |     mkdir /mnt/secure/asec 0700 root root | 
 | 96 |     mkdir /mnt/asec 0755 root system | 
 | 97 |     mkdir /mnt/obb 0755 root system | 
 | 98 |     mkdir /mnt/media_rw 0750 root media_rw | 
 | 99 |     mkdir /mnt/user 0755 root root | 
 | 100 |     mkdir /mnt/user/0 0755 root root | 
| Jeff Sharkey | ae0a5ac | 2015-04-06 14:08:54 -0700 | [diff] [blame] | 101 |     mkdir /mnt/expand 0771 system system | 
| Daichi Hirono | 7abc71e | 2015-12-11 13:29:04 +0900 | [diff] [blame] | 102 |     mkdir /mnt/appfuse 0711 root root | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 103 |  | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 104 |     # Storage views to support runtime permissions | 
| Jeff Sharkey | b9f438f | 2015-08-06 11:39:44 -0700 | [diff] [blame] | 105 |     mkdir /mnt/runtime 0700 root root | 
 | 106 |     mkdir /mnt/runtime/default 0755 root root | 
 | 107 |     mkdir /mnt/runtime/default/self 0755 root root | 
 | 108 |     mkdir /mnt/runtime/read 0755 root root | 
 | 109 |     mkdir /mnt/runtime/read/self 0755 root root | 
 | 110 |     mkdir /mnt/runtime/write 0755 root root | 
 | 111 |     mkdir /mnt/runtime/write/self 0755 root root | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 112 |  | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 113 |     # Symlink to keep legacy apps working in multi-user world | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 114 |     symlink /storage/self/primary /sdcard | 
| Nick Kralevich | d2f0a2c | 2016-04-12 20:36:01 -0700 | [diff] [blame] | 115 |     symlink /storage/self/primary /mnt/sdcard | 
| Jeff Sharkey | b9f438f | 2015-08-06 11:39:44 -0700 | [diff] [blame] | 116 |     symlink /mnt/user/0/primary /mnt/runtime/default/self/primary | 
| Kenny Root | c7858a3 | 2010-07-15 12:14:44 -0700 | [diff] [blame] | 117 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 118 |     write /proc/sys/kernel/panic_on_oops 1 | 
 | 119 |     write /proc/sys/kernel/hung_task_timeout_secs 0 | 
 | 120 |     write /proc/cpu/alignment 4 | 
| Riley Andrews | e850f57 | 2015-07-20 16:01:48 -0700 | [diff] [blame] | 121 |  | 
 | 122 |     # scheduler tunables | 
 | 123 |     # Disable auto-scaling of scheduler tunables with hotplug. The tunables | 
 | 124 |     # will vary across devices in unpredictable ways if allowed to scale with | 
 | 125 |     # cpu cores. | 
 | 126 |     write /proc/sys/kernel/sched_tunable_scaling 0 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 127 |     write /proc/sys/kernel/sched_latency_ns 10000000 | 
 | 128 |     write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000 | 
| San Mehat | 7baff71 | 2009-09-16 13:32:23 -0700 | [diff] [blame] | 129 |     write /proc/sys/kernel/sched_child_runs_first 0 | 
| Riley Andrews | e850f57 | 2015-07-20 16:01:48 -0700 | [diff] [blame] | 130 |  | 
| Nick Kralevich | d707fb3 | 2011-10-06 11:47:11 -0700 | [diff] [blame] | 131 |     write /proc/sys/kernel/randomize_va_space 2 | 
| Nick Kralevich | 27cca21 | 2011-12-05 14:48:08 -0800 | [diff] [blame] | 132 |     write /proc/sys/vm/mmap_min_addr 32768 | 
| Nick Kralevich | be341cc | 2013-02-21 18:36:43 -0800 | [diff] [blame] | 133 |     write /proc/sys/net/ipv4/ping_group_range "0 2147483647" | 
| Mark Salyzyn | 39944c8 | 2015-09-08 11:24:07 -0700 | [diff] [blame] | 134 |     write /proc/sys/net/unix/max_dgram_qlen 600 | 
| Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 135 |     write /proc/sys/kernel/sched_rt_runtime_us 950000 | 
 | 136 |     write /proc/sys/kernel/sched_rt_period_us 1000000 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 137 |  | 
| Sandeep Patil | 5fee496 | 2016-12-07 10:55:45 -0800 | [diff] [blame] | 138 |     # Assign reasonable ceiling values for socket rcv/snd buffers. | 
 | 139 |     # These should almost always be overridden by the target per the | 
 | 140 |     # the corresponding technology maximums. | 
 | 141 |     write /proc/sys/net/core/rmem_max  262144 | 
 | 142 |     write /proc/sys/net/core/wmem_max  262144 | 
 | 143 |  | 
| Sreeram Ramachandran | fd94922 | 2014-04-09 17:44:56 -0700 | [diff] [blame] | 144 |     # reflect fwmark from incoming packets onto generated replies | 
 | 145 |     write /proc/sys/net/ipv4/fwmark_reflect 1 | 
 | 146 |     write /proc/sys/net/ipv6/fwmark_reflect 1 | 
 | 147 |  | 
 | 148 |     # set fwmark on accepted sockets | 
 | 149 |     write /proc/sys/net/ipv4/tcp_fwmark_accept 1 | 
 | 150 |  | 
| Greg Hackmann | f3fd122 | 2014-12-03 09:57:00 -0800 | [diff] [blame] | 151 |     # disable icmp redirects | 
 | 152 |     write /proc/sys/net/ipv4/conf/all/accept_redirects 0 | 
 | 153 |     write /proc/sys/net/ipv6/conf/all/accept_redirects 0 | 
 | 154 |  | 
| Nick Kralevich | 15ffc53 | 2017-08-25 12:55:52 -0700 | [diff] [blame] | 155 |     # /proc/net/fib_trie leaks interface IP addresses | 
 | 156 |     chmod 0400 /proc/net/fib_trie | 
 | 157 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 158 |     # Create cgroup mount points for process groups | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 159 |     mkdir /dev/cpuctl | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 160 |     mount cgroup none /dev/cpuctl nodev noexec nosuid cpu | 
| San Mehat | 92175e0 | 2010-01-17 12:21:42 -0800 | [diff] [blame] | 161 |     chown system system /dev/cpuctl | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 162 |     chown system system /dev/cpuctl/tasks | 
| Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 163 |     chmod 0666 /dev/cpuctl/tasks | 
| Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 164 |     write /dev/cpuctl/cpu.rt_period_us 1000000 | 
| Tim Murray | 3a29e34 | 2016-06-17 14:02:16 -0700 | [diff] [blame] | 165 |     write /dev/cpuctl/cpu.rt_runtime_us 950000 | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 166 |  | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 167 |     # sets up initial cpusets for ActivityManager | 
 | 168 |     mkdir /dev/cpuset | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 169 |     mount cpuset none /dev/cpuset nodev noexec nosuid | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 170 |  | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 171 |     # this ensures that the cpusets are present and usable, but the device's | 
 | 172 |     # init.rc must actually set the correct cpus | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 173 |     mkdir /dev/cpuset/foreground | 
| Wei Wang | 8dbd12b | 2017-04-13 18:27:35 -0700 | [diff] [blame] | 174 |     copy /dev/cpuset/cpus /dev/cpuset/foreground/cpus | 
 | 175 |     copy /dev/cpuset/mems /dev/cpuset/foreground/mems | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 176 |     mkdir /dev/cpuset/background | 
| Wei Wang | 8dbd12b | 2017-04-13 18:27:35 -0700 | [diff] [blame] | 177 |     copy /dev/cpuset/cpus /dev/cpuset/background/cpus | 
 | 178 |     copy /dev/cpuset/mems /dev/cpuset/background/mems | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 179 |  | 
 | 180 |     # system-background is for system tasks that should only run on | 
 | 181 |     # little cores, not on bigs | 
 | 182 |     # to be used only by init, so don't change system-bg permissions | 
 | 183 |     mkdir /dev/cpuset/system-background | 
| Wei Wang | 8dbd12b | 2017-04-13 18:27:35 -0700 | [diff] [blame] | 184 |     copy /dev/cpuset/cpus /dev/cpuset/system-background/cpus | 
 | 185 |     copy /dev/cpuset/mems /dev/cpuset/system-background/mems | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 186 |  | 
| Tim Murray | 658ae90 | 2018-04-13 10:15:49 -0700 | [diff] [blame] | 187 |     # restricted is for system tasks that are being throttled | 
 | 188 |     # due to screen off. | 
 | 189 |     mkdir /dev/cpuset/restricted | 
 | 190 |     copy /dev/cpuset/cpus /dev/cpuset/restricted/cpus | 
 | 191 |     copy /dev/cpuset/mems /dev/cpuset/restricted/mems | 
 | 192 |  | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 193 |     mkdir /dev/cpuset/top-app | 
| Wei Wang | 8dbd12b | 2017-04-13 18:27:35 -0700 | [diff] [blame] | 194 |     copy /dev/cpuset/cpus /dev/cpuset/top-app/cpus | 
 | 195 |     copy /dev/cpuset/mems /dev/cpuset/top-app/mems | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 196 |  | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 197 |     # change permissions for all cpusets we'll touch at runtime | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 198 |     chown system system /dev/cpuset | 
 | 199 |     chown system system /dev/cpuset/foreground | 
 | 200 |     chown system system /dev/cpuset/background | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 201 |     chown system system /dev/cpuset/system-background | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 202 |     chown system system /dev/cpuset/top-app | 
| Tim Murray | 658ae90 | 2018-04-13 10:15:49 -0700 | [diff] [blame] | 203 |     chown system system /dev/cpuset/restricted | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 204 |     chown system system /dev/cpuset/tasks | 
 | 205 |     chown system system /dev/cpuset/foreground/tasks | 
 | 206 |     chown system system /dev/cpuset/background/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 207 |     chown system system /dev/cpuset/system-background/tasks | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 208 |     chown system system /dev/cpuset/top-app/tasks | 
| Tim Murray | 658ae90 | 2018-04-13 10:15:49 -0700 | [diff] [blame] | 209 |     chown system system /dev/cpuset/restricted/tasks | 
| Tim Murray | 4284f9f | 2015-11-10 14:31:09 -0800 | [diff] [blame] | 210 |  | 
 | 211 |     # set system-background to 0775 so SurfaceFlinger can touch it | 
 | 212 |     chmod 0775 /dev/cpuset/system-background | 
 | 213 |  | 
| Jeff Vander Stoep | 3f62a02 | 2015-07-23 15:18:36 -0700 | [diff] [blame] | 214 |     chmod 0664 /dev/cpuset/foreground/tasks | 
 | 215 |     chmod 0664 /dev/cpuset/background/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 216 |     chmod 0664 /dev/cpuset/system-background/tasks | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 217 |     chmod 0664 /dev/cpuset/top-app/tasks | 
| Tim Murray | 658ae90 | 2018-04-13 10:15:49 -0700 | [diff] [blame] | 218 |     chmod 0664 /dev/cpuset/restricted/tasks | 
| Jeff Vander Stoep | 3f62a02 | 2015-07-23 15:18:36 -0700 | [diff] [blame] | 219 |     chmod 0664 /dev/cpuset/tasks | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 220 |  | 
 | 221 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 222 |     # qtaguid will limit access to specific data based on group memberships. | 
 | 223 |     #   net_bw_acct grants impersonation of socket owners. | 
 | 224 |     #   net_bw_stats grants access to other apps' detailed tagged-socket stats. | 
| JP Abgrall | 3e54aab | 2013-01-04 14:34:58 -0800 | [diff] [blame] | 225 |     chown root net_bw_acct /proc/net/xt_qtaguid/ctrl | 
 | 226 |     chown root net_bw_stats /proc/net/xt_qtaguid/stats | 
 | 227 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 228 |     # Allow everybody to read the xt_qtaguid resource tracking misc dev. | 
 | 229 |     # This is needed by any process that uses socket tagging. | 
| JP Abgrall | 8e3ff70 | 2011-09-11 16:12:27 -0700 | [diff] [blame] | 230 |     chmod 0644 /dev/xt_qtaguid | 
 | 231 |  | 
| Chenbo Feng | 2cba6f2 | 2017-10-23 11:57:59 -0700 | [diff] [blame] | 232 |     mkdir /dev/cg2_bpf | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 233 |     mount cgroup2 cg2_bpf /dev/cg2_bpf nodev noexec nosuid | 
| Chenbo Feng | 2cba6f2 | 2017-10-23 11:57:59 -0700 | [diff] [blame] | 234 |     chown root root /dev/cg2_bpf | 
 | 235 |     chmod 0600 /dev/cg2_bpf | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 236 |     mount bpf bpf /sys/fs/bpf nodev noexec nosuid | 
| Chenbo Feng | 2cba6f2 | 2017-10-23 11:57:59 -0700 | [diff] [blame] | 237 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 238 |     # Create location for fs_mgr to store abbreviated output from filesystem | 
 | 239 |     # checker programs. | 
| Ken Sumrall | 4eaf905 | 2013-09-18 17:49:21 -0700 | [diff] [blame] | 240 |     mkdir /dev/fscklogs 0770 root system | 
 | 241 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 242 |     # pstore/ramoops previous console log | 
| Luis Hector Chavez | f8a7e37 | 2018-02-12 11:30:46 -0800 | [diff] [blame] | 243 |     mount pstore pstore /sys/fs/pstore nodev noexec nosuid | 
| Mark Salyzyn | 7ab805e | 2018-06-29 10:32:11 -0700 | [diff] [blame] | 244 |     chown system log /sys/fs/pstore | 
 | 245 |     chmod 0550 /sys/fs/pstore | 
| Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 246 |     chown system log /sys/fs/pstore/console-ramoops | 
 | 247 |     chmod 0440 /sys/fs/pstore/console-ramoops | 
| Mark Salyzyn | 4eb0ba0 | 2017-06-27 09:32:32 -0700 | [diff] [blame] | 248 |     chown system log /sys/fs/pstore/console-ramoops-0 | 
 | 249 |     chmod 0440 /sys/fs/pstore/console-ramoops-0 | 
| Mark Salyzyn | 4b0313e | 2014-12-15 07:52:19 -0800 | [diff] [blame] | 250 |     chown system log /sys/fs/pstore/pmsg-ramoops-0 | 
 | 251 |     chmod 0440 /sys/fs/pstore/pmsg-ramoops-0 | 
| Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 252 |  | 
| Greg Hackmann | cee8757 | 2015-01-26 10:40:29 -0800 | [diff] [blame] | 253 |     # enable armv8_deprecated instruction hooks | 
 | 254 |     write /proc/sys/abi/swp 1 | 
 | 255 |  | 
| Greg Hackmann | 40a96e4 | 2016-02-01 09:59:44 -0800 | [diff] [blame] | 256 |     # Linux's execveat() syscall may construct paths containing /dev/fd | 
 | 257 |     # expecting it to point to /proc/self/fd | 
 | 258 |     symlink /proc/self/fd /dev/fd | 
 | 259 |  | 
| Yueyao (Nathan) Zhu | 60c6dac | 2016-06-21 12:04:54 -0700 | [diff] [blame] | 260 |     export DOWNLOAD_CACHE /data/cache | 
 | 261 |  | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 262 |     # set RLIMIT_NICE to allow priorities from 19 to -20 | 
| Tom Cherry | cb5fccc | 2017-08-28 12:53:56 -0700 | [diff] [blame] | 263 |     setrlimit nice 40 40 | 
 | 264 |  | 
 | 265 |     # Allow up to 32K FDs per process | 
 | 266 |     setrlimit nofile 32768 32768 | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 267 |  | 
| David Lin | 27b2c1e | 2017-03-08 17:36:18 -0800 | [diff] [blame] | 268 |     # This allows the ledtrig-transient properties to be created here so | 
 | 269 |     # that they can be chown'd to system:system later on boot | 
 | 270 |     write /sys/class/leds/vibrator/trigger "transient" | 
 | 271 |  | 
| Haibo Huang | d60a19b | 2018-11-04 09:50:05 -0800 | [diff] [blame] | 272 |     # This is used by Bionic to select optimized routines. | 
 | 273 |     write /dev/cpu_variant:${ro.bionic.arch} ${ro.bionic.cpu_variant} | 
 | 274 |     chmod 0444 /dev/cpu_variant:${ro.bionic.arch} | 
 | 275 |     write /dev/cpu_variant:${ro.bionic.2nd_arch} ${ro.bionic.2nd_cpu_variant} | 
 | 276 |     chmod 0444 /dev/cpu_variant:${ro.bionic.2nd_arch} | 
 | 277 |  | 
| Martijn Coenen | 344a91a | 2018-10-02 16:43:16 +0200 | [diff] [blame] | 278 |     # Setup APEX mount point and its security context | 
 | 279 |     mount tmpfs tmpfs /apex nodev noexec nosuid | 
 | 280 |     chmod 0755 /apex | 
 | 281 |     chown root root /apex | 
 | 282 |     restorecon /apex | 
 | 283 |  | 
| Tom Cherry | f18b748 | 2018-10-17 13:14:55 -0700 | [diff] [blame] | 284 |     # Start logd before any other services run to ensure we capture all of their logs. | 
 | 285 |     start logd | 
 | 286 |     # Start essential services. | 
 | 287 |     start servicemanager | 
 | 288 |     start hwservicemanager | 
 | 289 |     start vndservicemanager | 
 | 290 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 291 | # Healthd can trigger a full boot from charger mode by signaling this | 
 | 292 | # property when the power button is held. | 
 | 293 | on property:sys.boot_from_charger_mode=1 | 
 | 294 |     class_stop charger | 
 | 295 |     trigger late-init | 
 | 296 |  | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 297 | on load_persist_props_action | 
 | 298 |     load_persist_props | 
| Mark Salyzyn | 5c39e0a | 2015-04-20 08:55:02 -0700 | [diff] [blame] | 299 |     start logd | 
| Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 300 |     start logd-reinit | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 301 |  | 
| Riley Andrews | 80c7a5e | 2014-07-11 15:05:23 -0700 | [diff] [blame] | 302 | # Indicate to fw loaders that the relevant mounts are up. | 
 | 303 | on firmware_mounts_complete | 
 | 304 |     rm /dev/.booting | 
 | 305 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 306 | # Mount filesystems and start core system services. | 
 | 307 | on late-init | 
 | 308 |     trigger early-fs | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 309 |  | 
 | 310 |     # Mount fstab in init.{$device}.rc by mount_all command. Optional parameter | 
 | 311 |     # '--early' can be specified to skip entries with 'latemount'. | 
 | 312 |     # /system and /vendor must be mounted by the end of the fs stage, | 
 | 313 |     # while /data is optional. | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 314 |     trigger fs | 
 | 315 |     trigger post-fs | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 316 |  | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 317 |     # Mount fstab in init.{$device}.rc by mount_all with '--late' parameter | 
 | 318 |     # to only mount entries with 'latemount'. This is needed if '--early' is | 
 | 319 |     # specified in the previous mount_all command on the fs stage. | 
 | 320 |     # With /system mounted and properties form /system + /factory available, | 
 | 321 |     # some services can be started. | 
 | 322 |     trigger late-fs | 
 | 323 |  | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 324 |     # Now we can mount /data. File encryption requires keymaster to decrypt | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 325 |     # /data, which in turn can only be loaded when system properties are present. | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 326 |     trigger post-fs-data | 
| Wei Wang | abfbec3 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 327 |  | 
 | 328 |     # Load persist properties and override properties (if enabled) from /data. | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 329 |     trigger load_persist_props_action | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 330 |  | 
| Wei Wang | fa14d21 | 2018-09-05 10:12:40 -0700 | [diff] [blame] | 331 |     # Now we can start zygote for devices with file based encryption | 
 | 332 |     trigger zygote-start | 
 | 333 |  | 
| Riley Andrews | 67cb1ae | 2014-07-15 20:39:41 -0700 | [diff] [blame] | 334 |     # Remove a file to wake up anything waiting for firmware. | 
 | 335 |     trigger firmware_mounts_complete | 
 | 336 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 337 |     trigger early-boot | 
 | 338 |     trigger boot | 
 | 339 |  | 
| Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 340 | on post-fs | 
| Mark Salyzyn | 82a395d | 2017-04-18 08:13:06 -0700 | [diff] [blame] | 341 |     # Load properties from | 
 | 342 |     #     /system/build.prop, | 
 | 343 |     #     /odm/build.prop, | 
 | 344 |     #     /vendor/build.prop and | 
 | 345 |     #     /factory/factory.prop | 
 | 346 |     load_system_props | 
| Daniel Rosenberg | 6156b9b | 2018-10-11 15:35:07 -0700 | [diff] [blame] | 347 |     start vold | 
 | 348 |     exec - system system -- /system/bin/vdc checkpoint markBootAttempt | 
| Steven Moreland | d627502 | 2017-03-24 16:23:07 +0000 | [diff] [blame] | 349 |  | 
| Luis Hector Chavez | 30780a7 | 2018-02-14 08:36:16 -0800 | [diff] [blame] | 350 |     # Once everything is setup, no need to modify /. | 
| Luis Hector Chavez | d07d094 | 2018-07-11 08:13:34 -0700 | [diff] [blame] | 351 |     # The bind+remount combination allows this to work in containers. | 
 | 352 |     mount rootfs rootfs / remount bind ro nodev | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 353 |     # Mount shared so changes propagate into child namespaces | 
| Jeff Sharkey | 885342a | 2012-08-14 21:00:22 -0700 | [diff] [blame] | 354 |     mount rootfs rootfs / shared rec | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 355 |     # Mount default storage into root namespace | 
| Hidehiko Abe | ec8637e | 2016-03-09 16:41:50 +0900 | [diff] [blame] | 356 |     mount none /mnt/runtime/default /storage bind rec | 
 | 357 |     mount none none /storage slave rec | 
| Brian Swetland | 56de7a1 | 2010-09-08 15:06:45 -0700 | [diff] [blame] | 358 |  | 
| Nick Kralevich | 715c4dc | 2015-12-07 16:57:08 -0800 | [diff] [blame] | 359 |     # Make sure /sys/kernel/debug (if present) is labeled properly | 
| Paul Lawrence | a8d8434 | 2016-11-14 15:40:18 -0800 | [diff] [blame] | 360 |     # Note that tracefs may be mounted under debug, so we need to cross filesystems | 
 | 361 |     restorecon --recursive --cross-filesystems /sys/kernel/debug | 
| Paul Lawrence | d2abcbd | 2016-11-02 14:23:31 -0700 | [diff] [blame] | 362 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 363 |     # We chown/chmod /cache again so because mount is run as root + defaults | 
 | 364 |     chown system cache /cache | 
 | 365 |     chmod 0770 /cache | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 366 |     # We restorecon /cache in case the cache partition has been reset. | 
| Nick Kralevich | e169591 | 2014-07-09 12:39:21 -0700 | [diff] [blame] | 367 |     restorecon_recursive /cache | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 368 |  | 
| Tao Bao | e48aed0 | 2015-05-11 14:08:18 -0700 | [diff] [blame] | 369 |     # Create /cache/recovery in case it's not there. It'll also fix the odd | 
 | 370 |     # permissions if created by the recovery system. | 
 | 371 |     mkdir /cache/recovery 0770 system cache | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 372 |  | 
| Christopher Tate | 63c463f | 2016-01-28 17:09:42 -0800 | [diff] [blame] | 373 |     # Backup/restore mechanism uses the cache partition | 
 | 374 |     mkdir /cache/backup_stage 0700 system system | 
 | 375 |     mkdir /cache/backup 0700 system system | 
 | 376 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 377 |     #change permissions on vmallocinfo so we can grab it from bugreports | 
 | 378 |     chown root log /proc/vmallocinfo | 
 | 379 |     chmod 0440 /proc/vmallocinfo | 
 | 380 |  | 
| Dima Zavin | 9481266 | 2012-09-25 14:22:02 -0700 | [diff] [blame] | 381 |     chown root log /proc/slabinfo | 
 | 382 |     chmod 0440 /proc/slabinfo | 
 | 383 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 384 |     #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks | 
 | 385 |     chown root system /proc/kmsg | 
 | 386 |     chmod 0440 /proc/kmsg | 
 | 387 |     chown root system /proc/sysrq-trigger | 
 | 388 |     chmod 0220 /proc/sysrq-trigger | 
| Colin Cross | b35e36e | 2012-08-02 18:14:33 -0700 | [diff] [blame] | 389 |     chown system log /proc/last_kmsg | 
 | 390 |     chmod 0440 /proc/last_kmsg | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 391 |  | 
| dcashman | 5822a4a | 2014-03-25 16:31:07 -0700 | [diff] [blame] | 392 |     # make the selinux kernel policy world-readable | 
 | 393 |     chmod 0444 /sys/fs/selinux/policy | 
 | 394 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 395 |     # create the lost+found directories, so as to enforce our permissions | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 396 |     mkdir /cache/lost+found 0770 root root | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 397 |  | 
| Paul Crowley | fe305ab | 2018-05-17 10:12:34 -0700 | [diff] [blame] | 398 |     restorecon_recursive /metadata | 
 | 399 |     mkdir /metadata/vold | 
 | 400 |     chmod 0700 /metadata/vold | 
 | 401 |  | 
| Janis Danisevskis | 1ad8d21 | 2017-04-06 12:44:59 -0700 | [diff] [blame] | 402 | on late-fs | 
| Joel Galenson | d48c4cf | 2017-06-13 10:15:05 -0700 | [diff] [blame] | 403 |     # Ensure that tracefs has the correct permissions. | 
 | 404 |     # This does not work correctly if it is called in post-fs. | 
 | 405 |     chmod 0755 /sys/kernel/debug/tracing | 
 | 406 |  | 
| Janis Danisevskis | 1ad8d21 | 2017-04-06 12:44:59 -0700 | [diff] [blame] | 407 |     # HALs required before storage encryption can get unlocked (FBE/FDE) | 
 | 408 |     class_start early_hal | 
 | 409 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 410 | on post-fs-data | 
| Paul Lawrence | b920cb4 | 2018-10-04 08:37:17 -0700 | [diff] [blame] | 411 |     # Start checkpoint before we touch data | 
 | 412 |     start vold | 
 | 413 |     exec - system system -- /system/bin/vdc checkpoint prepareCheckpoint | 
 | 414 |  | 
| Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 415 |     # 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] | 416 |     chown system system /data | 
 | 417 |     chmod 0771 /data | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 418 |     # We restorecon /data in case the userdata partition has been reset. | 
 | 419 |     restorecon /data | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 420 |  | 
| Elliott Hughes | 2f74a5d | 2016-02-02 09:15:59 -0800 | [diff] [blame] | 421 |     # Make sure we have the device encryption key. | 
| Paul Lawrence | 806d10b | 2015-04-28 22:07:10 +0000 | [diff] [blame] | 422 |     installkey /data | 
 | 423 |  | 
| Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 424 |     # Start bootcharting as soon as possible after the data partition is | 
 | 425 |     # mounted to collect more data. | 
 | 426 |     mkdir /data/bootchart 0755 shell shell | 
| Elliott Hughes | a3641af | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 427 |     bootchart start | 
| Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 428 |  | 
| Martijn Coenen | 3848e1b | 2018-08-17 13:52:25 +0200 | [diff] [blame] | 429 |     # Start apexd as soon as we can | 
 | 430 |     start apexd | 
 | 431 |  | 
| Nick Kralevich | b410eb1 | 2013-09-17 16:18:23 -0700 | [diff] [blame] | 432 |     # Avoid predictable entropy pool. Carry over entropy from previous boot. | 
 | 433 |     copy /data/system/entropy.dat /dev/urandom | 
 | 434 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 435 |     # create basic filesystem structure | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 436 |     mkdir /data/misc 01771 system misc | 
| Mark Salyzyn | 9339403 | 2017-07-14 10:37:57 -0700 | [diff] [blame] | 437 |     mkdir /data/misc/recovery 0770 system log | 
| Siqi Lin | b9b76de | 2017-07-26 13:18:15 -0700 | [diff] [blame] | 438 |     copy /data/misc/recovery/ro.build.fingerprint /data/misc/recovery/ro.build.fingerprint.1 | 
 | 439 |     chmod 0440 /data/misc/recovery/ro.build.fingerprint.1 | 
 | 440 |     chown system log /data/misc/recovery/ro.build.fingerprint.1 | 
 | 441 |     write /data/misc/recovery/ro.build.fingerprint ${ro.build.fingerprint} | 
 | 442 |     chmod 0440 /data/misc/recovery/ro.build.fingerprint | 
 | 443 |     chown system log /data/misc/recovery/ro.build.fingerprint | 
| Mark Salyzyn | 9339403 | 2017-07-14 10:37:57 -0700 | [diff] [blame] | 444 |     mkdir /data/misc/recovery/proc 0770 system log | 
 | 445 |     copy /data/misc/recovery/proc/version /data/misc/recovery/proc/version.1 | 
 | 446 |     chmod 0440 /data/misc/recovery/proc/version.1 | 
 | 447 |     chown system log /data/misc/recovery/proc/version.1 | 
 | 448 |     copy /proc/version /data/misc/recovery/proc/version | 
 | 449 |     chmod 0440 /data/misc/recovery/proc/version | 
 | 450 |     chown system log /data/misc/recovery/proc/version | 
| Ajay Panicker | 604208e | 2016-09-20 11:52:14 -0700 | [diff] [blame] | 451 |     mkdir /data/misc/bluedroid 02770 bluetooth bluetooth | 
| Pavlin Radoslavov | 8175bb2 | 2015-06-19 19:12:46 -0700 | [diff] [blame] | 452 |     # Fix the access permissions and group ownership for 'bt_config.conf' | 
 | 453 |     chmod 0660 /data/misc/bluedroid/bt_config.conf | 
| Ajay Panicker | 604208e | 2016-09-20 11:52:14 -0700 | [diff] [blame] | 454 |     chown bluetooth bluetooth /data/misc/bluedroid/bt_config.conf | 
 | 455 |     mkdir /data/misc/bluetooth 0770 bluetooth bluetooth | 
 | 456 |     mkdir /data/misc/bluetooth/logs 0770 bluetooth bluetooth | 
| Chia-chi Yeh | 9b4f1ff | 2009-09-18 10:35:26 +0800 | [diff] [blame] | 457 |     mkdir /data/misc/keystore 0700 keystore keystore | 
| Andres Morales | 6a49c2f | 2015-04-16 13:16:24 -0700 | [diff] [blame] | 458 |     mkdir /data/misc/gatekeeper 0700 system system | 
| Brian Carlstrom | 0491893 | 2011-06-30 22:50:29 -0700 | [diff] [blame] | 459 |     mkdir /data/misc/keychain 0771 system system | 
| Sreeram Ramachandran | b46efdb | 2014-07-07 22:09:54 -0700 | [diff] [blame] | 460 |     mkdir /data/misc/net 0750 root shell | 
| Robert Greenwalt | 2aa33a3 | 2013-07-16 09:46:17 -0700 | [diff] [blame] | 461 |     mkdir /data/misc/radio 0770 system radio | 
| Robert Greenwalt | d6d4780 | 2012-09-26 16:04:27 -0700 | [diff] [blame] | 462 |     mkdir /data/misc/sms 0770 system radio | 
| fionaxu | 06b8e2e | 2017-11-21 12:31:57 -0800 | [diff] [blame] | 463 |     mkdir /data/misc/carrierid 0770 system radio | 
| Niklas Lindgren | fd66538 | 2018-05-21 16:53:00 +0200 | [diff] [blame] | 464 |     mkdir /data/misc/apns 0770 system radio | 
| Elliott Hughes | f820e85 | 2012-10-19 18:10:05 -0700 | [diff] [blame] | 465 |     mkdir /data/misc/zoneinfo 0775 system system | 
| Ricky Wai | 88d5dcb | 2017-10-27 16:35:35 +0100 | [diff] [blame] | 466 |     mkdir /data/misc/network_watchlist 0774 system system | 
| Abodunrinwa Toki | d6ab645 | 2017-04-27 18:46:59 +0100 | [diff] [blame] | 467 |     mkdir /data/misc/textclassifier 0771 system system | 
| Chia-chi Yeh | 9bb4d41 | 2011-07-08 20:03:03 -0700 | [diff] [blame] | 468 |     mkdir /data/misc/vpn 0770 system vpn | 
| Torne (Richard Coles) | 234f696 | 2014-05-22 18:40:21 +0100 | [diff] [blame] | 469 |     mkdir /data/misc/shared_relro 0771 shared_relro shared_relro | 
| Oscar Montemayor | d0aa32c | 2010-01-06 13:18:12 -0800 | [diff] [blame] | 470 |     mkdir /data/misc/systemkeys 0700 system system | 
| Mike Lockwood | 48d116e | 2009-07-08 18:42:08 -0400 | [diff] [blame] | 471 |     mkdir /data/misc/wifi 0770 wifi wifi | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 472 |     mkdir /data/misc/wifi/sockets 0770 wifi wifi | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 473 |     mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi | 
| Jaewan Kim | 373d9fa | 2014-03-10 17:13:07 +0900 | [diff] [blame] | 474 |     mkdir /data/misc/ethernet 0770 system system | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 475 |     mkdir /data/misc/dhcp 0770 dhcp dhcp | 
| Robin Lee | 3094f82 | 2014-04-25 15:21:35 +0100 | [diff] [blame] | 476 |     mkdir /data/misc/user 0771 root root | 
| Dehao Chen | ac725c1 | 2015-05-05 15:05:39 -0700 | [diff] [blame] | 477 |     mkdir /data/misc/perfprofd 0775 root root | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 478 |     # give system access to wpa_supplicant.conf for backup and restore | 
| Amith Yamasani | eefef32 | 2009-07-02 12:08:13 -0700 | [diff] [blame] | 479 |     chmod 0660 /data/misc/wifi/wpa_supplicant.conf | 
| Chia-chi Yeh | 5ebced3 | 2012-03-07 14:52:10 -0800 | [diff] [blame] | 480 |     mkdir /data/local 0751 root root | 
| Glenn Kasten | b0f908a | 2013-02-22 14:54:45 -0800 | [diff] [blame] | 481 |     mkdir /data/misc/media 0700 media media | 
| Glenn Kasten | 845a4ff | 2016-02-23 15:23:46 -0800 | [diff] [blame] | 482 |     mkdir /data/misc/audioserver 0700 audioserver audioserver | 
| Keun Soo Yim | be54c54 | 2016-03-01 12:45:27 -0800 | [diff] [blame] | 483 |     mkdir /data/misc/cameraserver 0700 cameraserver cameraserver | 
| Paul Crowley | f8a6fa5 | 2015-06-03 13:33:43 +0100 | [diff] [blame] | 484 |     mkdir /data/misc/vold 0700 root root | 
| Yasuhiro Matsuda | f93db4b | 2015-06-15 18:49:35 +0900 | [diff] [blame] | 485 |     mkdir /data/misc/boottrace 0771 system shell | 
| David Zeuthen | 1591478 | 2015-10-07 14:00:55 -0400 | [diff] [blame] | 486 |     mkdir /data/misc/update_engine 0700 root root | 
| Tianjie Xu | 74fa3ca | 2017-11-03 10:59:36 -0700 | [diff] [blame] | 487 |     mkdir /data/misc/update_engine_log 02750 root log | 
| Calin Juravle | 9b3e5d5 | 2015-11-10 19:16:43 +0000 | [diff] [blame] | 488 |     mkdir /data/misc/trace 0700 root root | 
| Vishnu Nair | d09ab7a | 2017-11-27 09:54:31 -0800 | [diff] [blame] | 489 |     # create location to store surface and window trace files | 
 | 490 |     mkdir /data/misc/wmtrace 0700 system system | 
| Calin Juravle | 807f23a | 2016-02-01 19:27:01 +0000 | [diff] [blame] | 491 |     # profile file layout | 
 | 492 |     mkdir /data/misc/profiles 0771 system system | 
 | 493 |     mkdir /data/misc/profiles/cur 0771 system system | 
 | 494 |     mkdir /data/misc/profiles/ref 0771 system system | 
| David Sehr | 0eb24e1 | 2016-05-28 14:10:38 -0700 | [diff] [blame] | 495 |     mkdir /data/misc/profman 0770 system shell | 
| Ryan Campbell | 0b36473 | 2017-02-21 17:27:02 -0800 | [diff] [blame] | 496 |     mkdir /data/misc/gcov 0770 root root | 
| Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 497 |  | 
| Anton Hansson | c38a636 | 2018-10-24 15:29:16 +0100 | [diff] [blame] | 498 |     mkdir /data/preloads 0775 system system | 
 | 499 |  | 
| Jeff Vander Stoep | 61efb0d | 2017-03-23 09:23:50 -0700 | [diff] [blame] | 500 |     mkdir /data/vendor 0771 root root | 
| Andreas Huber | a03134e | 2018-01-22 12:14:51 -0800 | [diff] [blame] | 501 |     mkdir /data/vendor_ce 0771 root root | 
 | 502 |     mkdir /data/vendor_de 0771 root root | 
| Jeff Vander Stoep | 61efb0d | 2017-03-23 09:23:50 -0700 | [diff] [blame] | 503 |     mkdir /data/vendor/hardware 0771 root root | 
 | 504 |  | 
| Nick Kralevich | f3ef127 | 2012-03-14 15:22:54 -0700 | [diff] [blame] | 505 |     # For security reasons, /data/local/tmp should always be empty. | 
 | 506 |     # 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] | 507 |     mkdir /data/local/tmp 0771 shell shell | 
| Max Bires | 181d11c | 2018-01-18 14:23:51 -0800 | [diff] [blame] | 508 |     mkdir /data/local/traces 0777 shell shell | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 509 |     mkdir /data/data 0771 system system | 
 | 510 |     mkdir /data/app-private 0771 system system | 
| Todd Kennedy | 0a27335 | 2015-11-23 15:24:13 -0800 | [diff] [blame] | 511 |     mkdir /data/app-ephemeral 0771 system system | 
| Kenny Root | f8bbaba | 2012-04-12 15:01:52 -0700 | [diff] [blame] | 512 |     mkdir /data/app-asec 0700 root root | 
| Kenny Root | 5054417 | 2012-09-08 22:39:25 -0700 | [diff] [blame] | 513 |     mkdir /data/app-lib 0771 system system | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 514 |     mkdir /data/app 0771 system system | 
 | 515 |     mkdir /data/property 0700 root root | 
| Nick Kralevich | 0359d77 | 2015-01-30 17:38:06 -0800 | [diff] [blame] | 516 |     mkdir /data/tombstones 0771 system system | 
| xshu | 9a7a5b6 | 2017-12-18 11:26:06 -0800 | [diff] [blame] | 517 |     mkdir /data/vendor/tombstones 0771 root root | 
 | 518 |     mkdir /data/vendor/tombstones/wifi 0771 wifi wifi | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 519 |  | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 520 |     # create dalvik-cache, so as to enforce our permissions | 
| Alex Light | 3878ebd | 2014-08-27 15:40:05 -0700 | [diff] [blame] | 521 |     mkdir /data/dalvik-cache 0771 root root | 
| Andreas Gampe | 7dfcc92 | 2015-12-08 09:33:07 -0800 | [diff] [blame] | 522 |     # create the A/B OTA directory, so as to enforce our permissions | 
 | 523 |     mkdir /data/ota 0771 root root | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 524 |  | 
| Tao Bao | 380d6b1 | 2016-05-25 16:41:08 -0700 | [diff] [blame] | 525 |     # create the OTA package directory. It will be accessed by GmsCore (cache | 
 | 526 |     # group), update_engine and update_verifier. | 
 | 527 |     mkdir /data/ota_package 0770 system cache | 
 | 528 |  | 
| MÃ¥rten Kongstad | b45280d | 2011-05-30 10:24:54 +0200 | [diff] [blame] | 529 |     # create resource-cache and double-check the perms | 
 | 530 |     mkdir /data/resource-cache 0771 system system | 
 | 531 |     chown system system /data/resource-cache | 
 | 532 |     chmod 0771 /data/resource-cache | 
 | 533 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 534 |     # create the lost+found directories, so as to enforce our permissions | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 535 |     mkdir /data/lost+found 0770 root root | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 536 |  | 
| James Dong | 09cdc0e | 2012-01-06 15:19:26 -0800 | [diff] [blame] | 537 |     # create directory for DRM plug-ins - give drm the read/write access to | 
 | 538 |     # the following directory. | 
 | 539 |     mkdir /data/drm 0770 drm drm | 
| aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 540 |  | 
| Jeff Tinker | 08d6430 | 2013-04-23 19:54:17 -0700 | [diff] [blame] | 541 |     # create directory for MediaDrm plug-ins - give drm the read/write access to | 
 | 542 |     # the following directory. | 
 | 543 |     mkdir /data/mediadrm 0770 mediadrm mediadrm | 
 | 544 |  | 
| Nick Kralevich | c2ea70a | 2015-07-25 21:06:20 -0700 | [diff] [blame] | 545 |     mkdir /data/anr 0775 system system | 
| Nick Kralevich | 89252ce | 2014-10-20 21:53:56 -0700 | [diff] [blame] | 546 |  | 
| Martijn Coenen | 344a91a | 2018-10-02 16:43:16 +0200 | [diff] [blame] | 547 |     mkdir /data/apex 0770 root root | 
 | 548 |  | 
| Tom Cherry | c319310 | 2017-11-21 10:40:25 -0800 | [diff] [blame] | 549 |     # NFC: create data/nfc for nv storage | 
 | 550 |     mkdir /data/nfc 0770 nfc nfc | 
 | 551 |     mkdir /data/nfc/param 0770 nfc nfc | 
 | 552 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 553 |     # Create all remaining /data root dirs so that they are made through init | 
 | 554 |     # and get proper encryption policy installed | 
 | 555 |     mkdir /data/backup 0700 system system | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 556 |     mkdir /data/ss 0700 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 557 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 558 |     mkdir /data/system 0775 system system | 
| Jeff Vander Stoep | 148dea7 | 2018-04-16 16:04:38 -0700 | [diff] [blame] | 559 |     mkdir /data/system/dropbox 0700 system system | 
| Nick Kralevich | 9c0437f | 2015-04-07 16:44:08 -0700 | [diff] [blame] | 560 |     mkdir /data/system/heapdump 0700 system system | 
| Jeff Sharkey | c9b84a3 | 2016-04-14 21:09:34 -0600 | [diff] [blame] | 561 |     mkdir /data/system/users 0775 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 562 |  | 
 | 563 |     mkdir /data/system_de 0770 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 564 |     mkdir /data/system_ce 0770 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 565 |  | 
 | 566 |     mkdir /data/misc_de 01771 system misc | 
 | 567 |     mkdir /data/misc_ce 01771 system misc | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 568 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 569 |     mkdir /data/user 0711 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 570 |     mkdir /data/user_de 0711 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 571 |     symlink /data/data /data/user/0 | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 572 |  | 
| Jeff Sharkey | d78b55f | 2016-01-13 09:37:08 -0700 | [diff] [blame] | 573 |     mkdir /data/media 0770 media_rw media_rw | 
| Jeff Sharkey | d78b55f | 2016-01-13 09:37:08 -0700 | [diff] [blame] | 574 |     mkdir /data/media/obb 0770 media_rw media_rw | 
 | 575 |  | 
| Yueyao (Nathan) Zhu | 60c6dac | 2016-06-21 12:04:54 -0700 | [diff] [blame] | 576 |     mkdir /data/cache 0770 system cache | 
 | 577 |     mkdir /data/cache/recovery 0770 system cache | 
 | 578 |     mkdir /data/cache/backup_stage 0700 system system | 
 | 579 |     mkdir /data/cache/backup 0700 system system | 
 | 580 |  | 
| Paul Crowley | 5949745 | 2016-02-01 16:37:13 +0000 | [diff] [blame] | 581 |     init_user0 | 
 | 582 |  | 
| Stephen Smalley | f2b7ee7 | 2014-02-06 13:52:52 -0500 | [diff] [blame] | 583 |     # Set SELinux security contexts on upgrade or policy update. | 
| Paul Lawrence | a8d8434 | 2016-11-14 15:40:18 -0800 | [diff] [blame] | 584 |     restorecon --recursive --skip-ce /data | 
| Stephen Smalley | f2b7ee7 | 2014-02-06 13:52:52 -0500 | [diff] [blame] | 585 |  | 
| Neil Fuller | 0891322 | 2015-03-31 18:24:29 +0100 | [diff] [blame] | 586 |     # Check any timezone data in /data is newer than the copy in /system, delete if not. | 
| Nick Kralevich | 221fca7 | 2015-06-03 13:05:28 -0700 | [diff] [blame] | 587 |     exec - system system -- /system/bin/tzdatacheck /system/usr/share/zoneinfo /data/misc/zoneinfo | 
| Neil Fuller | 0891322 | 2015-03-31 18:24:29 +0100 | [diff] [blame] | 588 |  | 
| Steven Moreland | f38aab4 | 2017-01-25 10:52:15 -0800 | [diff] [blame] | 589 |     # If there is no post-fs-data action in the init.<device>.rc file, you | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 590 |     # must uncomment this line, otherwise encrypted filesystems | 
 | 591 |     # won't work. | 
 | 592 |     # Set indication (checked by vold) that we have finished this action | 
 | 593 |     #setprop vold.post_fs_data_done 1 | 
 | 594 |  | 
| Wei Wang | 53842e7 | 2017-04-20 14:37:55 -0700 | [diff] [blame] | 595 | # It is recommended to put unnecessary data/ initialization from post-fs-data | 
 | 596 | # to start-zygote in device's init.rc to unblock zygote start. | 
 | 597 | on zygote-start && property:ro.crypto.state=unencrypted | 
 | 598 |     # A/B update verifier that marks a successful boot. | 
 | 599 |     exec_start update_verifier_nonencrypted | 
 | 600 |     start netd | 
 | 601 |     start zygote | 
 | 602 |     start zygote_secondary | 
 | 603 |  | 
 | 604 | on zygote-start && property:ro.crypto.state=unsupported | 
 | 605 |     # A/B update verifier that marks a successful boot. | 
 | 606 |     exec_start update_verifier_nonencrypted | 
 | 607 |     start netd | 
 | 608 |     start zygote | 
 | 609 |     start zygote_secondary | 
 | 610 |  | 
| Wei Wang | bae9ba3 | 2017-03-09 12:35:02 -0800 | [diff] [blame] | 611 | on zygote-start && property:ro.crypto.state=encrypted && property:ro.crypto.type=file | 
| Wei Wang | 53842e7 | 2017-04-20 14:37:55 -0700 | [diff] [blame] | 612 |     # A/B update verifier that marks a successful boot. | 
 | 613 |     exec_start update_verifier_nonencrypted | 
 | 614 |     start netd | 
 | 615 |     start zygote | 
 | 616 |     start zygote_secondary | 
| Wei Wang | bae9ba3 | 2017-03-09 12:35:02 -0800 | [diff] [blame] | 617 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 618 | on boot | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 619 |     # basic network init | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 620 |     ifup lo | 
 | 621 |     hostname localhost | 
 | 622 |     domainname localdomain | 
 | 623 |  | 
| Benedict Wong | 00308f8 | 2018-03-12 19:00:50 -0700 | [diff] [blame] | 624 |     # IPsec SA default expiration length | 
 | 625 |     write /proc/sys/net/core/xfrm_acq_expires 3600 | 
 | 626 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 627 |     # Memory management.  Basic kernel parameters, and allow the high | 
 | 628 |     # level system server to be able to adjust the kernel OOM driver | 
 | 629 |     # parameters to match how it is managing things. | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 630 |     write /proc/sys/vm/overcommit_memory 1 | 
| The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 631 |     write /proc/sys/vm/min_free_order_shift 4 | 
| Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 632 |     chown root system /sys/module/lowmemorykiller/parameters/adj | 
| Daniel Cardenas | 429e742 | 2015-03-20 00:07:57 +0000 | [diff] [blame] | 633 |     chmod 0664 /sys/module/lowmemorykiller/parameters/adj | 
| Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 634 |     chown root system /sys/module/lowmemorykiller/parameters/minfree | 
| Daniel Cardenas | 429e742 | 2015-03-20 00:07:57 +0000 | [diff] [blame] | 635 |     chmod 0664 /sys/module/lowmemorykiller/parameters/minfree | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 636 |  | 
| San Mehat | 831d8e1 | 2009-10-13 12:24:47 -0700 | [diff] [blame] | 637 |     # Tweak background writeout | 
 | 638 |     write /proc/sys/vm/dirty_expire_centisecs 200 | 
 | 639 |     write /proc/sys/vm/dirty_background_ratio  5 | 
 | 640 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 641 |     # Permissions for System Server and daemons. | 
 | 642 |     chown radio system /sys/android_power/state | 
 | 643 |     chown radio system /sys/android_power/request_state | 
 | 644 |     chown radio system /sys/android_power/acquire_full_wake_lock | 
 | 645 |     chown radio system /sys/android_power/acquire_partial_wake_lock | 
 | 646 |     chown radio system /sys/android_power/release_wake_lock | 
| Arve Hjønnevåg | 70a163f | 2012-05-02 17:57:50 -0700 | [diff] [blame] | 647 |     chown system system /sys/power/autosleep | 
| Arve Hjønnevåg | 1670f83 | 2012-03-20 20:33:09 -0700 | [diff] [blame] | 648 |     chown system system /sys/power/state | 
 | 649 |     chown system system /sys/power/wakeup_count | 
| Pavlin Radoslavov | 0eca107 | 2015-11-23 17:18:31 -0800 | [diff] [blame] | 650 |     chown radio wakelock /sys/power/wake_lock | 
 | 651 |     chown radio wakelock /sys/power/wake_unlock | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 652 |     chmod 0660 /sys/power/state | 
 | 653 |     chmod 0660 /sys/power/wake_lock | 
 | 654 |     chmod 0660 /sys/power/wake_unlock | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 655 |  | 
 | 656 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_rate | 
 | 657 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_rate | 
| Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 658 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_slack | 
 | 659 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_slack | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 660 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/min_sample_time | 
 | 661 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/min_sample_time | 
 | 662 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq | 
 | 663 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq | 
| Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 664 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/target_loads | 
 | 665 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/target_loads | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 666 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load | 
 | 667 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load | 
| Todd Poynor | f35c203 | 2012-04-19 13:17:24 -0700 | [diff] [blame] | 668 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay | 
 | 669 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay | 
| Todd Poynor | 8d3ea1d | 2012-04-24 15:37:13 -0700 | [diff] [blame] | 670 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/boost | 
 | 671 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boost | 
| Todd Poynor | 4ff10e6 | 2012-05-03 15:20:48 -0700 | [diff] [blame] | 672 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse | 
| Todd Poynor | 33045a6 | 2012-04-27 20:21:18 -0700 | [diff] [blame] | 673 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/input_boost | 
 | 674 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/input_boost | 
| Todd Poynor | 4f247d7 | 2012-12-19 17:43:06 -0800 | [diff] [blame] | 675 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration | 
 | 676 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration | 
| Todd Poynor | 6b5de1c | 2013-03-25 13:17:13 -0700 | [diff] [blame] | 677 |     chown system system /sys/devices/system/cpu/cpufreq/interactive/io_is_busy | 
 | 678 |     chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/io_is_busy | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 679 |  | 
 | 680 |     # Assume SMP uses shared cpufreq policy for all CPUs | 
 | 681 |     chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq | 
 | 682 |     chmod 0660 /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq | 
 | 683 |  | 
| David Lin | 27b2c1e | 2017-03-08 17:36:18 -0800 | [diff] [blame] | 684 |     chown system system /sys/class/leds/vibrator/trigger | 
 | 685 |     chown system system /sys/class/leds/vibrator/activate | 
 | 686 |     chown system system /sys/class/leds/vibrator/brightness | 
 | 687 |     chown system system /sys/class/leds/vibrator/duration | 
 | 688 |     chown system system /sys/class/leds/vibrator/state | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 689 |     chown system system /sys/class/timed_output/vibrator/enable | 
 | 690 |     chown system system /sys/class/leds/keyboard-backlight/brightness | 
 | 691 |     chown system system /sys/class/leds/lcd-backlight/brightness | 
 | 692 |     chown system system /sys/class/leds/button-backlight/brightness | 
| The Android Open Source Project | f614d64 | 2009-03-18 17:39:49 -0700 | [diff] [blame] | 693 |     chown system system /sys/class/leds/jogball-backlight/brightness | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 694 |     chown system system /sys/class/leds/red/brightness | 
 | 695 |     chown system system /sys/class/leds/green/brightness | 
 | 696 |     chown system system /sys/class/leds/blue/brightness | 
 | 697 |     chown system system /sys/class/leds/red/device/grpfreq | 
 | 698 |     chown system system /sys/class/leds/red/device/grppwm | 
 | 699 |     chown system system /sys/class/leds/red/device/blink | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 700 |     chown system system /sys/module/sco/parameters/disable_esco | 
 | 701 |     chown system system /sys/kernel/ipv4/tcp_wmem_min | 
 | 702 |     chown system system /sys/kernel/ipv4/tcp_wmem_def | 
 | 703 |     chown system system /sys/kernel/ipv4/tcp_wmem_max | 
 | 704 |     chown system system /sys/kernel/ipv4/tcp_rmem_min | 
 | 705 |     chown system system /sys/kernel/ipv4/tcp_rmem_def | 
 | 706 |     chown system system /sys/kernel/ipv4/tcp_rmem_max | 
 | 707 |     chown root radio /proc/cmdline | 
 | 708 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 709 |     # Define default initial receive window size in segments. | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 710 |     setprop net.tcp.default_init_rwnd 60 | 
 | 711 |  | 
| Steven Moreland | d627502 | 2017-03-24 16:23:07 +0000 | [diff] [blame] | 712 |     # Start standard binderized HAL daemons | 
 | 713 |     class_start hal | 
 | 714 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 715 |     class_start core | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 716 |  | 
 | 717 | on nonencrypted | 
| Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 718 |     class_start main | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 719 |     class_start late_start | 
 | 720 |  | 
| Riley Andrews | 1bbef88 | 2014-06-26 13:55:03 -0700 | [diff] [blame] | 721 | on property:sys.init_log_level=* | 
 | 722 |     loglevel ${sys.init_log_level} | 
 | 723 |  | 
| Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 724 | on charger | 
 | 725 |     class_start charger | 
 | 726 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 727 | on property:vold.decrypt=trigger_reset_main | 
 | 728 |     class_reset main | 
 | 729 |  | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 730 | on property:vold.decrypt=trigger_load_persist_props | 
 | 731 |     load_persist_props | 
| Mark Salyzyn | 5c39e0a | 2015-04-20 08:55:02 -0700 | [diff] [blame] | 732 |     start logd | 
| Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 733 |     start logd-reinit | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 734 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 735 | on property:vold.decrypt=trigger_post_fs_data | 
 | 736 |     trigger post-fs-data | 
| Paul Lawrence | 7fdcbdf | 2018-04-13 12:28:42 -0700 | [diff] [blame] | 737 |     trigger zygote-start | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 738 |  | 
| Ken Sumrall | e434915 | 2011-01-17 14:26:34 -0800 | [diff] [blame] | 739 | on property:vold.decrypt=trigger_restart_min_framework | 
| Tao Bao | 97df395 | 2015-12-04 17:45:43 -0800 | [diff] [blame] | 740 |     # A/B update verifier that marks a successful boot. | 
| Tom Cherry | aaeb792 | 2017-03-28 13:28:38 -0700 | [diff] [blame] | 741 |     exec_start update_verifier | 
| Ken Sumrall | e434915 | 2011-01-17 14:26:34 -0800 | [diff] [blame] | 742 |     class_start main | 
 | 743 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 744 | on property:vold.decrypt=trigger_restart_framework | 
| Tao Bao | 97df395 | 2015-12-04 17:45:43 -0800 | [diff] [blame] | 745 |     # A/B update verifier that marks a successful boot. | 
| Tom Cherry | aaeb792 | 2017-03-28 13:28:38 -0700 | [diff] [blame] | 746 |     exec_start update_verifier | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 747 |     class_start main | 
 | 748 |     class_start late_start | 
| Isaac Lee | f32c201 | 2018-07-26 17:07:25 +0800 | [diff] [blame] | 749 |     setprop service.bootanim.exit 0 | 
 | 750 |     start bootanim | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 751 |  | 
 | 752 | on property:vold.decrypt=trigger_shutdown_framework | 
 | 753 |     class_reset late_start | 
 | 754 |     class_reset main | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 755 |  | 
| Elliott Hughes | a3641af | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 756 | on property:sys.boot_completed=1 | 
 | 757 |     bootchart stop | 
 | 758 |  | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 759 | # system server cannot write to /proc/sys files, | 
 | 760 | # and chown/chmod does not work for /proc/sys/ entries. | 
 | 761 | # So proxy writes through init. | 
| Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 762 | on property:sys.sysctl.extra_free_kbytes=* | 
 | 763 |     write /proc/sys/vm/extra_free_kbytes ${sys.sysctl.extra_free_kbytes} | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 764 |  | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 765 | # "tcp_default_init_rwnd" Is too long! | 
 | 766 | on property:sys.sysctl.tcp_def_init_rwnd=* | 
 | 767 |     write /proc/sys/net/ipv4/tcp_default_init_rwnd ${sys.sysctl.tcp_def_init_rwnd} | 
 | 768 |  | 
| Daniel Micay | 2b22a66 | 2015-09-04 16:23:01 -0400 | [diff] [blame] | 769 | on property:security.perf_harden=0 | 
 | 770 |     write /proc/sys/kernel/perf_event_paranoid 1 | 
| Yabin Cui | 4f0da7c | 2018-06-29 14:52:47 -0700 | [diff] [blame] | 771 |     write /proc/sys/kernel/perf_event_max_sample_rate ${debug.perf_event_max_sample_rate:-100000} | 
 | 772 |     write /proc/sys/kernel/perf_cpu_time_max_percent ${debug.perf_cpu_time_max_percent:-25} | 
 | 773 |     write /proc/sys/kernel/perf_event_mlock_kb ${debug.perf_event_mlock_kb:-516} | 
| Daniel Micay | 2b22a66 | 2015-09-04 16:23:01 -0400 | [diff] [blame] | 774 |  | 
 | 775 | on property:security.perf_harden=1 | 
 | 776 |     write /proc/sys/kernel/perf_event_paranoid 3 | 
| Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 777 |  | 
| Wei Wang | eeab491 | 2017-06-27 22:08:45 -0700 | [diff] [blame] | 778 | # on shutdown | 
 | 779 | # In device's init.rc, this trigger can be used to do device-specific actions | 
 | 780 | # before shutdown. e.g disable watchdog and mask error handling | 
 | 781 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 782 | ## Daemon processes to be run by init. | 
 | 783 | ## | 
| Tom Cherry | 3143848 | 2018-07-20 14:57:00 -0700 | [diff] [blame] | 784 | service ueventd /system/bin/ueventd | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 785 |     class core | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 786 |     critical | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 787 |     seclabel u:r:ueventd:s0 | 
| Keun-young Park | cccb34f | 2017-07-05 11:38:44 -0700 | [diff] [blame] | 788 |     shutdown critical | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 789 |  | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 790 | service console /system/bin/sh | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 791 |     class core | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 792 |     console | 
 | 793 |     disabled | 
 | 794 |     user shell | 
| Nick Kralevich | c39ba5a | 2015-11-07 16:52:17 -0800 | [diff] [blame] | 795 |     group shell log readproc | 
| Stephen Smalley | 610653f | 2013-12-23 14:11:02 -0500 | [diff] [blame] | 796 |     seclabel u:r:shell:s0 | 
| Dmitry Shmidt | d0fb251 | 2017-10-11 11:18:51 -0700 | [diff] [blame] | 797 |     setenv HOSTNAME console | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 798 |  | 
| Mike Lockwood | d49b4ef | 2010-11-19 09:12:27 -0500 | [diff] [blame] | 799 | on property:ro.debuggable=1 | 
| Calin Juravle | 9b3e5d5 | 2015-11-10 19:16:43 +0000 | [diff] [blame] | 800 |     # Give writes to anyone for the trace folder on debug builds. | 
 | 801 |     # The folder is used to store method traces. | 
 | 802 |     chmod 0773 /data/misc/trace | 
| Vishnu Nair | d09ab7a | 2017-11-27 09:54:31 -0800 | [diff] [blame] | 803 |     # Give reads to anyone for the window trace folder on debug builds. | 
 | 804 |     chmod 0775 /data/misc/wmtrace | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 805 |     start console | 
 | 806 |  | 
| Doug Zongker | 9526202 | 2014-02-04 12:15:14 -0800 | [diff] [blame] | 807 | service flash_recovery /system/bin/install-recovery.sh | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 808 |     class main | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 809 |     oneshot | 
| Jiyong Park | c240440 | 2018-11-08 17:14:35 +0900 | [diff] [blame] | 810 |  | 
 | 811 | on property:apexd.status=ready | 
 | 812 |     parse_apex_configs |