| 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 | 
| Badhri Jagan Sridharan | e180186 | 2015-08-28 19:32:45 -0700 | [diff] [blame] | 10 | import /init.usb.configfs.rc | 
| Narayan Kamath | 4456a55 | 2014-03-31 11:08:02 +0100 | [diff] [blame] | 11 | import /init.${ro.zygote}.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 |  | 
| Nick Kralevich | d28a535 | 2015-10-09 17:09:10 -0700 | [diff] [blame] | 17 | # Disable sysrq from keyboard | 
|  | 18 | write /proc/sys/kernel/sysrq 0 | 
|  | 19 |  | 
| Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 20 | # Set the security context of /adb_keys if present. | 
|  | 21 | restorecon /adb_keys | 
|  | 22 |  | 
| Elliott Hughes | 04b2022 | 2015-07-18 10:34:53 -0700 | [diff] [blame] | 23 | # Shouldn't be necessary, but sdcard won't start without it. http://b/22568628. | 
|  | 24 | mkdir /mnt 0775 root system | 
|  | 25 |  | 
| Alex Deymo | bb968fb | 2016-02-29 17:23:36 -0800 | [diff] [blame] | 26 | # Set the security context of /postinstall if present. | 
|  | 27 | restorecon /postinstall | 
|  | 28 |  | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 29 | start ueventd | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 30 |  | 
|  | 31 | on init | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 32 | sysclktz 0 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 33 |  | 
| Nick Kralevich | 27cb410 | 2016-01-22 18:02:29 -0800 | [diff] [blame] | 34 | # Mix device-specific information into the entropy pool | 
|  | 35 | copy /proc/cmdline /dev/urandom | 
|  | 36 | copy /default.prop /dev/urandom | 
|  | 37 |  | 
| Elliott Hughes | 3a5d71a | 2015-02-13 16:47:02 -0800 | [diff] [blame] | 38 | # Backward compatibility. | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 39 | symlink /system/etc /etc | 
| Brian Swetland | bb6f68c | 2009-09-18 15:31:23 -0700 | [diff] [blame] | 40 | symlink /sys/kernel/debug /d | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 41 |  | 
| Elliott Hughes | 3a5d71a | 2015-02-13 16:47:02 -0800 | [diff] [blame] | 42 | # Link /vendor to /system/vendor for devices without a vendor partition. | 
| Daniel Rosenberg | f67d6bd | 2014-06-26 14:55:04 -0700 | [diff] [blame] | 43 | symlink /system/vendor /vendor | 
|  | 44 |  | 
| Daniel Rosenberg | 64dffd3 | 2015-07-08 16:30:22 -0700 | [diff] [blame] | 45 | # Mount cgroup mount point for cpu accounting | 
| Mike Chan | 89f235c | 2010-03-01 11:36:10 -0800 | [diff] [blame] | 46 | mount cgroup none /acct cpuacct | 
|  | 47 | mkdir /acct/uid | 
|  | 48 |  | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 49 | # Create energy-aware scheduler tuning nodes | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 50 | mkdir /dev/stune | 
|  | 51 | mount cgroup none /dev/stune schedtune | 
|  | 52 | mkdir /dev/stune/foreground | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 53 | mkdir /dev/stune/background | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 54 | mkdir /dev/stune/top-app | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 55 | chown system system /dev/stune | 
|  | 56 | chown system system /dev/stune/foreground | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 57 | chown system system /dev/stune/background | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 58 | chown system system /dev/stune/top-app | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 59 | chown system system /dev/stune/tasks | 
|  | 60 | chown system system /dev/stune/foreground/tasks | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 61 | chown system system /dev/stune/background/tasks | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 62 | chown system system /dev/stune/top-app/tasks | 
| Todd Kjos | 11cde56 | 2016-02-23 09:00:36 -0800 | [diff] [blame] | 63 | chmod 0664 /dev/stune/tasks | 
|  | 64 | chmod 0664 /dev/stune/foreground/tasks | 
| Tim Murray | 5dcff8f | 2016-07-11 13:57:31 -0700 | [diff] [blame] | 65 | chmod 0664 /dev/stune/background/tasks | 
| Tim Murray | 955694b | 2016-07-11 11:40:15 -0700 | [diff] [blame] | 66 | chmod 0664 /dev/stune/top-app/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 67 |  | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 68 | # Mount staging areas for devices managed by vold | 
| Jeff Sharkey | bfcd810 | 2012-08-22 13:57:25 -0700 | [diff] [blame] | 69 | # See storage config details at http://source.android.com/tech/storage/ | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 70 | mount tmpfs tmpfs /mnt mode=0755,uid=0,gid=1000 | 
|  | 71 | restorecon_recursive /mnt | 
| Jeff Sharkey | 5dd0f86 | 2012-08-17 16:01:16 -0700 | [diff] [blame] | 72 |  | 
| Daniel Rosenberg | 4edec25 | 2016-02-18 19:48:31 -0800 | [diff] [blame] | 73 | mount configfs none /config | 
|  | 74 | chmod 0775 /config/sdcardfs | 
|  | 75 | chown system package_info /config/sdcardfs | 
|  | 76 |  | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 77 | mkdir /mnt/secure 0700 root root | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 78 | mkdir /mnt/secure/asec 0700 root root | 
|  | 79 | mkdir /mnt/asec 0755 root system | 
|  | 80 | mkdir /mnt/obb 0755 root system | 
|  | 81 | mkdir /mnt/media_rw 0750 root media_rw | 
|  | 82 | mkdir /mnt/user 0755 root root | 
|  | 83 | mkdir /mnt/user/0 0755 root root | 
| Jeff Sharkey | ae0a5ac | 2015-04-06 14:08:54 -0700 | [diff] [blame] | 84 | mkdir /mnt/expand 0771 system system | 
| Daichi Hirono | 7abc71e | 2015-12-11 13:29:04 +0900 | [diff] [blame] | 85 | mkdir /mnt/appfuse 0711 root root | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 86 |  | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 87 | # Storage views to support runtime permissions | 
| Jeff Sharkey | b9f438f | 2015-08-06 11:39:44 -0700 | [diff] [blame] | 88 | mkdir /mnt/runtime 0700 root root | 
|  | 89 | mkdir /mnt/runtime/default 0755 root root | 
|  | 90 | mkdir /mnt/runtime/default/self 0755 root root | 
|  | 91 | mkdir /mnt/runtime/read 0755 root root | 
|  | 92 | mkdir /mnt/runtime/read/self 0755 root root | 
|  | 93 | mkdir /mnt/runtime/write 0755 root root | 
|  | 94 | mkdir /mnt/runtime/write/self 0755 root root | 
| San Mehat | 6ea3cc6 | 2010-02-19 18:25:22 -0800 | [diff] [blame] | 95 |  | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 96 | # Symlink to keep legacy apps working in multi-user world | 
| Jeff Sharkey | fc00048 | 2015-03-16 10:17:47 -0700 | [diff] [blame] | 97 | symlink /storage/self/primary /sdcard | 
| Nick Kralevich | d2f0a2c | 2016-04-12 20:36:01 -0700 | [diff] [blame] | 98 | symlink /storage/self/primary /mnt/sdcard | 
| Jeff Sharkey | b9f438f | 2015-08-06 11:39:44 -0700 | [diff] [blame] | 99 | symlink /mnt/user/0/primary /mnt/runtime/default/self/primary | 
| Kenny Root | c7858a3 | 2010-07-15 12:14:44 -0700 | [diff] [blame] | 100 |  | 
| Martijn Coenen | b82bab6 | 2016-01-20 16:39:16 -0800 | [diff] [blame] | 101 | # root memory control cgroup, used by lmkd | 
| Todd Poynor | aacded7 | 2013-07-10 15:19:44 -0700 | [diff] [blame] | 102 | mkdir /dev/memcg 0700 root system | 
|  | 103 | mount cgroup none /dev/memcg memory | 
| Martijn Coenen | 623b56a | 2016-02-08 11:42:25 +0100 | [diff] [blame] | 104 | # app mem cgroups, used by activity manager, lmkd and zygote | 
| Martijn Coenen | b82bab6 | 2016-01-20 16:39:16 -0800 | [diff] [blame] | 105 | mkdir /dev/memcg/apps/ 0755 system system | 
| Todd Poynor | aacded7 | 2013-07-10 15:19:44 -0700 | [diff] [blame] | 106 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 107 | write /proc/sys/kernel/panic_on_oops 1 | 
|  | 108 | write /proc/sys/kernel/hung_task_timeout_secs 0 | 
|  | 109 | write /proc/cpu/alignment 4 | 
| Riley Andrews | e850f57 | 2015-07-20 16:01:48 -0700 | [diff] [blame] | 110 |  | 
|  | 111 | # scheduler tunables | 
|  | 112 | # Disable auto-scaling of scheduler tunables with hotplug. The tunables | 
|  | 113 | # will vary across devices in unpredictable ways if allowed to scale with | 
|  | 114 | # cpu cores. | 
|  | 115 | write /proc/sys/kernel/sched_tunable_scaling 0 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 116 | write /proc/sys/kernel/sched_latency_ns 10000000 | 
|  | 117 | write /proc/sys/kernel/sched_wakeup_granularity_ns 2000000 | 
| San Mehat | 7baff71 | 2009-09-16 13:32:23 -0700 | [diff] [blame] | 118 | write /proc/sys/kernel/sched_child_runs_first 0 | 
| Riley Andrews | e850f57 | 2015-07-20 16:01:48 -0700 | [diff] [blame] | 119 |  | 
| Nick Kralevich | d707fb3 | 2011-10-06 11:47:11 -0700 | [diff] [blame] | 120 | write /proc/sys/kernel/randomize_va_space 2 | 
| Nick Kralevich | 27cca21 | 2011-12-05 14:48:08 -0800 | [diff] [blame] | 121 | write /proc/sys/vm/mmap_min_addr 32768 | 
| Nick Kralevich | be341cc | 2013-02-21 18:36:43 -0800 | [diff] [blame] | 122 | write /proc/sys/net/ipv4/ping_group_range "0 2147483647" | 
| Mark Salyzyn | 39944c8 | 2015-09-08 11:24:07 -0700 | [diff] [blame] | 123 | write /proc/sys/net/unix/max_dgram_qlen 600 | 
| Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 124 | write /proc/sys/kernel/sched_rt_runtime_us 950000 | 
|  | 125 | write /proc/sys/kernel/sched_rt_period_us 1000000 | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 126 |  | 
| Sandeep Patil | 5fee496 | 2016-12-07 10:55:45 -0800 | [diff] [blame] | 127 | # Assign reasonable ceiling values for socket rcv/snd buffers. | 
|  | 128 | # These should almost always be overridden by the target per the | 
|  | 129 | # the corresponding technology maximums. | 
|  | 130 | write /proc/sys/net/core/rmem_max  262144 | 
|  | 131 | write /proc/sys/net/core/wmem_max  262144 | 
|  | 132 |  | 
| Sreeram Ramachandran | fd94922 | 2014-04-09 17:44:56 -0700 | [diff] [blame] | 133 | # reflect fwmark from incoming packets onto generated replies | 
|  | 134 | write /proc/sys/net/ipv4/fwmark_reflect 1 | 
|  | 135 | write /proc/sys/net/ipv6/fwmark_reflect 1 | 
|  | 136 |  | 
|  | 137 | # set fwmark on accepted sockets | 
|  | 138 | write /proc/sys/net/ipv4/tcp_fwmark_accept 1 | 
|  | 139 |  | 
| Greg Hackmann | f3fd122 | 2014-12-03 09:57:00 -0800 | [diff] [blame] | 140 | # disable icmp redirects | 
|  | 141 | write /proc/sys/net/ipv4/conf/all/accept_redirects 0 | 
|  | 142 | write /proc/sys/net/ipv6/conf/all/accept_redirects 0 | 
|  | 143 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 144 | # Create cgroup mount points for process groups | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 145 | mkdir /dev/cpuctl | 
| San Mehat | b91bf4b | 2010-02-27 08:20:11 -0800 | [diff] [blame] | 146 | mount cgroup none /dev/cpuctl cpu | 
| San Mehat | 92175e0 | 2010-01-17 12:21:42 -0800 | [diff] [blame] | 147 | chown system system /dev/cpuctl | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 148 | chown system system /dev/cpuctl/tasks | 
| Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 149 | chmod 0666 /dev/cpuctl/tasks | 
| Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 150 | write /dev/cpuctl/cpu.rt_period_us 1000000 | 
| Tim Murray | 3a29e34 | 2016-06-17 14:02:16 -0700 | [diff] [blame] | 151 | write /dev/cpuctl/cpu.rt_runtime_us 950000 | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 152 |  | 
| Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 153 | mkdir /dev/cpuctl/bg_non_interactive | 
|  | 154 | chown system system /dev/cpuctl/bg_non_interactive/tasks | 
|  | 155 | chmod 0666 /dev/cpuctl/bg_non_interactive/tasks | 
| San Mehat | 529520e | 2009-10-06 11:22:55 -0700 | [diff] [blame] | 156 | # 5.0 % | 
| Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 157 | write /dev/cpuctl/bg_non_interactive/cpu.shares 52 | 
| Riley Andrews | 522d72b | 2014-10-03 17:02:53 -0700 | [diff] [blame] | 158 | write /dev/cpuctl/bg_non_interactive/cpu.rt_period_us 1000000 | 
| Tim Murray | 3a29e34 | 2016-06-17 14:02:16 -0700 | [diff] [blame] | 159 | # active FIFO threads will never be in BG | 
|  | 160 | write /dev/cpuctl/bg_non_interactive/cpu.rt_runtime_us 10000 | 
| Glenn Kasten | b91bd9f | 2012-04-19 16:18:37 -0700 | [diff] [blame] | 161 |  | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 162 | # sets up initial cpusets for ActivityManager | 
|  | 163 | mkdir /dev/cpuset | 
|  | 164 | mount cpuset none /dev/cpuset | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 165 |  | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 166 | # this ensures that the cpusets are present and usable, but the device's | 
|  | 167 | # init.rc must actually set the correct cpus | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 168 | mkdir /dev/cpuset/foreground | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 169 | write /dev/cpuset/foreground/cpus 0 | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 170 | write /dev/cpuset/foreground/mems 0 | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 171 | mkdir /dev/cpuset/foreground/boost | 
|  | 172 | write /dev/cpuset/foreground/boost/cpus 0 | 
| Tim Murray | 3985dda | 2015-08-25 00:30:55 -0700 | [diff] [blame] | 173 | write /dev/cpuset/foreground/boost/mems 0 | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 174 | mkdir /dev/cpuset/background | 
|  | 175 | write /dev/cpuset/background/cpus 0 | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 176 | write /dev/cpuset/background/mems 0 | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 177 |  | 
|  | 178 | # system-background is for system tasks that should only run on | 
|  | 179 | # little cores, not on bigs | 
|  | 180 | # to be used only by init, so don't change system-bg permissions | 
|  | 181 | mkdir /dev/cpuset/system-background | 
|  | 182 | write /dev/cpuset/system-background/cpus 0 | 
| Tim Murray | cba6ad7 | 2015-09-18 13:18:49 -0700 | [diff] [blame] | 183 | write /dev/cpuset/system-background/mems 0 | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 184 |  | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 185 | mkdir /dev/cpuset/top-app | 
|  | 186 | write /dev/cpuset/top-app/cpus 0 | 
|  | 187 | write /dev/cpuset/top-app/mems 0 | 
|  | 188 |  | 
| Tim Murray | f429d37 | 2015-10-15 12:38:15 -0700 | [diff] [blame] | 189 | # change permissions for all cpusets we'll touch at runtime | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 190 | chown system system /dev/cpuset | 
|  | 191 | chown system system /dev/cpuset/foreground | 
| Tim Murray | 3985dda | 2015-08-25 00:30:55 -0700 | [diff] [blame] | 192 | chown system system /dev/cpuset/foreground/boost | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 193 | chown system system /dev/cpuset/background | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 194 | chown system system /dev/cpuset/system-background | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 195 | chown system system /dev/cpuset/top-app | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 196 | chown system system /dev/cpuset/tasks | 
|  | 197 | chown system system /dev/cpuset/foreground/tasks | 
| Tim Murray | 3985dda | 2015-08-25 00:30:55 -0700 | [diff] [blame] | 198 | chown system system /dev/cpuset/foreground/boost/tasks | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 199 | chown system system /dev/cpuset/background/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 200 | chown system system /dev/cpuset/system-background/tasks | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 201 | chown system system /dev/cpuset/top-app/tasks | 
| Tim Murray | 4284f9f | 2015-11-10 14:31:09 -0800 | [diff] [blame] | 202 |  | 
|  | 203 | # set system-background to 0775 so SurfaceFlinger can touch it | 
|  | 204 | chmod 0775 /dev/cpuset/system-background | 
|  | 205 |  | 
| Jeff Vander Stoep | 3f62a02 | 2015-07-23 15:18:36 -0700 | [diff] [blame] | 206 | chmod 0664 /dev/cpuset/foreground/tasks | 
| Tim Murray | 3985dda | 2015-08-25 00:30:55 -0700 | [diff] [blame] | 207 | chmod 0664 /dev/cpuset/foreground/boost/tasks | 
| Jeff Vander Stoep | 3f62a02 | 2015-07-23 15:18:36 -0700 | [diff] [blame] | 208 | chmod 0664 /dev/cpuset/background/tasks | 
| Todd Kjos | ba8a475 | 2015-10-26 16:22:11 -0700 | [diff] [blame] | 209 | chmod 0664 /dev/cpuset/system-background/tasks | 
| Tim Murray | 6647bb5 | 2016-01-11 16:16:35 -0800 | [diff] [blame] | 210 | chmod 0664 /dev/cpuset/top-app/tasks | 
| Jeff Vander Stoep | 3f62a02 | 2015-07-23 15:18:36 -0700 | [diff] [blame] | 211 | chmod 0664 /dev/cpuset/tasks | 
| Tim Murray | b769c8d | 2015-06-08 14:56:29 -0700 | [diff] [blame] | 212 |  | 
|  | 213 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 214 | # qtaguid will limit access to specific data based on group memberships. | 
|  | 215 | #   net_bw_acct grants impersonation of socket owners. | 
|  | 216 | #   net_bw_stats grants access to other apps' detailed tagged-socket stats. | 
| JP Abgrall | 3e54aab | 2013-01-04 14:34:58 -0800 | [diff] [blame] | 217 | chown root net_bw_acct /proc/net/xt_qtaguid/ctrl | 
|  | 218 | chown root net_bw_stats /proc/net/xt_qtaguid/stats | 
|  | 219 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 220 | # Allow everybody to read the xt_qtaguid resource tracking misc dev. | 
|  | 221 | # This is needed by any process that uses socket tagging. | 
| JP Abgrall | 8e3ff70 | 2011-09-11 16:12:27 -0700 | [diff] [blame] | 222 | chmod 0644 /dev/xt_qtaguid | 
|  | 223 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 224 | # Create location for fs_mgr to store abbreviated output from filesystem | 
|  | 225 | # checker programs. | 
| Ken Sumrall | 4eaf905 | 2013-09-18 17:49:21 -0700 | [diff] [blame] | 226 | mkdir /dev/fscklogs 0770 root system | 
|  | 227 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 228 | # pstore/ramoops previous console log | 
| Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 229 | mount pstore pstore /sys/fs/pstore | 
|  | 230 | chown system log /sys/fs/pstore/console-ramoops | 
|  | 231 | chmod 0440 /sys/fs/pstore/console-ramoops | 
| Mark Salyzyn | 4b0313e | 2014-12-15 07:52:19 -0800 | [diff] [blame] | 232 | chown system log /sys/fs/pstore/pmsg-ramoops-0 | 
|  | 233 | chmod 0440 /sys/fs/pstore/pmsg-ramoops-0 | 
| Todd Poynor | 479efb5 | 2013-11-21 20:23:54 -0800 | [diff] [blame] | 234 |  | 
| Greg Hackmann | cee8757 | 2015-01-26 10:40:29 -0800 | [diff] [blame] | 235 | # enable armv8_deprecated instruction hooks | 
|  | 236 | write /proc/sys/abi/swp 1 | 
|  | 237 |  | 
| Greg Hackmann | 40a96e4 | 2016-02-01 09:59:44 -0800 | [diff] [blame] | 238 | # Linux's execveat() syscall may construct paths containing /dev/fd | 
|  | 239 | # expecting it to point to /proc/self/fd | 
|  | 240 | symlink /proc/self/fd /dev/fd | 
|  | 241 |  | 
| Yueyao (Nathan) Zhu | 60c6dac | 2016-06-21 12:04:54 -0700 | [diff] [blame] | 242 | export DOWNLOAD_CACHE /data/cache | 
|  | 243 |  | 
| Wei Wang | d61a7e2 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 244 | # set RLIMIT_NICE to allow priorities from 19 to -20 | 
|  | 245 | setrlimit 13 40 40 | 
|  | 246 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 247 | # Healthd can trigger a full boot from charger mode by signaling this | 
|  | 248 | # property when the power button is held. | 
|  | 249 | on property:sys.boot_from_charger_mode=1 | 
|  | 250 | class_stop charger | 
|  | 251 | trigger late-init | 
|  | 252 |  | 
|  | 253 | # Load properties from /system/ + /factory after fs mount. | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 254 | on load_system_props_action | 
|  | 255 | load_system_props | 
|  | 256 |  | 
|  | 257 | on load_persist_props_action | 
|  | 258 | load_persist_props | 
| Mark Salyzyn | 5c39e0a | 2015-04-20 08:55:02 -0700 | [diff] [blame] | 259 | start logd | 
| Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 260 | start logd-reinit | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 261 |  | 
| Riley Andrews | 80c7a5e | 2014-07-11 15:05:23 -0700 | [diff] [blame] | 262 | # Indicate to fw loaders that the relevant mounts are up. | 
|  | 263 | on firmware_mounts_complete | 
|  | 264 | rm /dev/.booting | 
|  | 265 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 266 | # Mount filesystems and start core system services. | 
|  | 267 | on late-init | 
|  | 268 | trigger early-fs | 
| Wei Wang | d61a7e2 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 269 |  | 
|  | 270 | # Mount fstab in init.{$device}.rc by mount_all command. Optional parameter | 
|  | 271 | # '--early' can be specified to skip entries with 'latemount'. | 
|  | 272 | # /system and /vendor must be mounted by the end of the fs stage, | 
|  | 273 | # while /data is optional. | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 274 | trigger fs | 
|  | 275 | trigger post-fs | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 276 |  | 
|  | 277 | # Load properties from /system/ + /factory after fs mount. Place | 
|  | 278 | # this in another action so that the load will be scheduled after the prior | 
|  | 279 | # issued fs triggers have completed. | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 280 | trigger load_system_props_action | 
|  | 281 |  | 
| Wei Wang | d61a7e2 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 282 | # Mount fstab in init.{$device}.rc by mount_all with '--late' parameter | 
|  | 283 | # to only mount entries with 'latemount'. This is needed if '--early' is | 
|  | 284 | # specified in the previous mount_all command on the fs stage. | 
|  | 285 | # With /system mounted and properties form /system + /factory available, | 
|  | 286 | # some services can be started. | 
|  | 287 | trigger late-fs | 
|  | 288 |  | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 289 | # Now we can mount /data. File encryption requires keymaster to decrypt | 
| Wei Wang | d61a7e2 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 290 | # /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] | 291 | trigger post-fs-data | 
| Wei Wang | d61a7e2 | 2016-08-23 11:58:09 -0700 | [diff] [blame] | 292 |  | 
|  | 293 | # Load persist properties and override properties (if enabled) from /data. | 
| Paul Lawrence | 948410a | 2015-07-01 14:40:56 -0700 | [diff] [blame] | 294 | trigger load_persist_props_action | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 295 |  | 
| Riley Andrews | 67cb1ae | 2014-07-15 20:39:41 -0700 | [diff] [blame] | 296 | # Remove a file to wake up anything waiting for firmware. | 
|  | 297 | trigger firmware_mounts_complete | 
|  | 298 |  | 
| Riley Andrews | e4b7b29 | 2014-06-16 15:06:21 -0700 | [diff] [blame] | 299 | trigger early-boot | 
|  | 300 | trigger boot | 
|  | 301 |  | 
| Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 302 | on post-fs | 
| Mark Salyzyn | 124ff15 | 2015-04-07 15:32:12 -0700 | [diff] [blame] | 303 | start logd | 
| Brian Swetland | 56de7a1 | 2010-09-08 15:06:45 -0700 | [diff] [blame] | 304 | # once everything is setup, no need to modify / | 
|  | 305 | mount rootfs rootfs / ro remount | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 306 | # Mount shared so changes propagate into child namespaces | 
| Jeff Sharkey | 885342a | 2012-08-14 21:00:22 -0700 | [diff] [blame] | 307 | mount rootfs rootfs / shared rec | 
| Jeff Sharkey | f38f29c | 2015-06-23 14:30:37 -0700 | [diff] [blame] | 308 | # Mount default storage into root namespace | 
| Jeff Sharkey | b9f438f | 2015-08-06 11:39:44 -0700 | [diff] [blame] | 309 | mount none /mnt/runtime/default /storage slave bind rec | 
| Brian Swetland | 56de7a1 | 2010-09-08 15:06:45 -0700 | [diff] [blame] | 310 |  | 
| Nick Kralevich | 715c4dc | 2015-12-07 16:57:08 -0800 | [diff] [blame] | 311 | # Make sure /sys/kernel/debug (if present) is labeled properly | 
| Paul Lawrence | a8d8434 | 2016-11-14 15:40:18 -0800 | [diff] [blame] | 312 | # Note that tracefs may be mounted under debug, so we need to cross filesystems | 
|  | 313 | restorecon --recursive --cross-filesystems /sys/kernel/debug | 
| Paul Lawrence | 3d8ade3 | 2017-01-11 15:45:53 -0800 | [diff] [blame] | 314 | chmod 0755 /sys/kernel/debug/tracing | 
| Paul Lawrence | d2abcbd | 2016-11-02 14:23:31 -0700 | [diff] [blame] | 315 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 316 | # We chown/chmod /cache again so because mount is run as root + defaults | 
|  | 317 | chown system cache /cache | 
|  | 318 | chmod 0770 /cache | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 319 | # We restorecon /cache in case the cache partition has been reset. | 
| Nick Kralevich | e169591 | 2014-07-09 12:39:21 -0700 | [diff] [blame] | 320 | restorecon_recursive /cache | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 321 |  | 
| Tao Bao | e48aed0 | 2015-05-11 14:08:18 -0700 | [diff] [blame] | 322 | # Create /cache/recovery in case it's not there. It'll also fix the odd | 
|  | 323 | # permissions if created by the recovery system. | 
|  | 324 | mkdir /cache/recovery 0770 system cache | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 325 |  | 
| Christopher Tate | 63c463f | 2016-01-28 17:09:42 -0800 | [diff] [blame] | 326 | # Backup/restore mechanism uses the cache partition | 
|  | 327 | mkdir /cache/backup_stage 0700 system system | 
|  | 328 | mkdir /cache/backup 0700 system system | 
|  | 329 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 330 | #change permissions on vmallocinfo so we can grab it from bugreports | 
|  | 331 | chown root log /proc/vmallocinfo | 
|  | 332 | chmod 0440 /proc/vmallocinfo | 
|  | 333 |  | 
| Dima Zavin | 9481266 | 2012-09-25 14:22:02 -0700 | [diff] [blame] | 334 | chown root log /proc/slabinfo | 
|  | 335 | chmod 0440 /proc/slabinfo | 
|  | 336 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 337 | #change permissions on kmsg & sysrq-trigger so bugreports can grab kthread stacks | 
|  | 338 | chown root system /proc/kmsg | 
|  | 339 | chmod 0440 /proc/kmsg | 
|  | 340 | chown root system /proc/sysrq-trigger | 
|  | 341 | chmod 0220 /proc/sysrq-trigger | 
| Colin Cross | b35e36e | 2012-08-02 18:14:33 -0700 | [diff] [blame] | 342 | chown system log /proc/last_kmsg | 
|  | 343 | chmod 0440 /proc/last_kmsg | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 344 |  | 
| dcashman | 5822a4a | 2014-03-25 16:31:07 -0700 | [diff] [blame] | 345 | # make the selinux kernel policy world-readable | 
|  | 346 | chmod 0444 /sys/fs/selinux/policy | 
|  | 347 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 348 | # create the lost+found directories, so as to enforce our permissions | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 349 | mkdir /cache/lost+found 0770 root root | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 350 |  | 
|  | 351 | on post-fs-data | 
| Colin Cross | 31712be | 2010-04-09 12:26:06 -0700 | [diff] [blame] | 352 | # 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] | 353 | chown system system /data | 
|  | 354 | chmod 0771 /data | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 355 | # We restorecon /data in case the userdata partition has been reset. | 
|  | 356 | restorecon /data | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 357 |  | 
| Elliott Hughes | 2f74a5d | 2016-02-02 09:15:59 -0800 | [diff] [blame] | 358 | # Make sure we have the device encryption key. | 
| Paul Lawrence | 806d10b | 2015-04-28 22:07:10 +0000 | [diff] [blame] | 359 | start vold | 
|  | 360 | installkey /data | 
|  | 361 |  | 
| Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 362 | # Start bootcharting as soon as possible after the data partition is | 
|  | 363 | # mounted to collect more data. | 
|  | 364 | mkdir /data/bootchart 0755 shell shell | 
| Elliott Hughes | a3641af | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 365 | bootchart start | 
| Yongqin Liu | a197ff1 | 2014-12-05 13:45:02 +0800 | [diff] [blame] | 366 |  | 
| Nick Kralevich | b410eb1 | 2013-09-17 16:18:23 -0700 | [diff] [blame] | 367 | # Avoid predictable entropy pool. Carry over entropy from previous boot. | 
|  | 368 | copy /data/system/entropy.dat /dev/urandom | 
|  | 369 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 370 | # create basic filesystem structure | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 371 | mkdir /data/misc 01771 system misc | 
| Ajay Panicker | 604208e | 2016-09-20 11:52:14 -0700 | [diff] [blame] | 372 | mkdir /data/misc/bluedroid 02770 bluetooth bluetooth | 
| Pavlin Radoslavov | 8175bb2 | 2015-06-19 19:12:46 -0700 | [diff] [blame] | 373 | # Fix the access permissions and group ownership for 'bt_config.conf' | 
|  | 374 | chmod 0660 /data/misc/bluedroid/bt_config.conf | 
| Ajay Panicker | 604208e | 2016-09-20 11:52:14 -0700 | [diff] [blame] | 375 | chown bluetooth bluetooth /data/misc/bluedroid/bt_config.conf | 
|  | 376 | mkdir /data/misc/bluetooth 0770 bluetooth bluetooth | 
|  | 377 | mkdir /data/misc/bluetooth/logs 0770 bluetooth bluetooth | 
| Chia-chi Yeh | 9b4f1ff | 2009-09-18 10:35:26 +0800 | [diff] [blame] | 378 | mkdir /data/misc/keystore 0700 keystore keystore | 
| Andres Morales | 6a49c2f | 2015-04-16 13:16:24 -0700 | [diff] [blame] | 379 | mkdir /data/misc/gatekeeper 0700 system system | 
| Brian Carlstrom | 0491893 | 2011-06-30 22:50:29 -0700 | [diff] [blame] | 380 | mkdir /data/misc/keychain 0771 system system | 
| Sreeram Ramachandran | b46efdb | 2014-07-07 22:09:54 -0700 | [diff] [blame] | 381 | mkdir /data/misc/net 0750 root shell | 
| Robert Greenwalt | 2aa33a3 | 2013-07-16 09:46:17 -0700 | [diff] [blame] | 382 | mkdir /data/misc/radio 0770 system radio | 
| Robert Greenwalt | d6d4780 | 2012-09-26 16:04:27 -0700 | [diff] [blame] | 383 | mkdir /data/misc/sms 0770 system radio | 
| Elliott Hughes | f820e85 | 2012-10-19 18:10:05 -0700 | [diff] [blame] | 384 | mkdir /data/misc/zoneinfo 0775 system system | 
| Chia-chi Yeh | 9bb4d41 | 2011-07-08 20:03:03 -0700 | [diff] [blame] | 385 | mkdir /data/misc/vpn 0770 system vpn | 
| Torne (Richard Coles) | 234f696 | 2014-05-22 18:40:21 +0100 | [diff] [blame] | 386 | mkdir /data/misc/shared_relro 0771 shared_relro shared_relro | 
| Oscar Montemayor | d0aa32c | 2010-01-06 13:18:12 -0800 | [diff] [blame] | 387 | mkdir /data/misc/systemkeys 0700 system system | 
| Mike Lockwood | 48d116e | 2009-07-08 18:42:08 -0400 | [diff] [blame] | 388 | mkdir /data/misc/wifi 0770 wifi wifi | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 389 | mkdir /data/misc/wifi/sockets 0770 wifi wifi | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 390 | mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi | 
| Jaewan Kim | 373d9fa | 2014-03-10 17:13:07 +0900 | [diff] [blame] | 391 | mkdir /data/misc/ethernet 0770 system system | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 392 | mkdir /data/misc/dhcp 0770 dhcp dhcp | 
| Robin Lee | 3094f82 | 2014-04-25 15:21:35 +0100 | [diff] [blame] | 393 | mkdir /data/misc/user 0771 root root | 
| Dehao Chen | ac725c1 | 2015-05-05 15:05:39 -0700 | [diff] [blame] | 394 | mkdir /data/misc/perfprofd 0775 root root | 
| Stephen Smalley | 82e87ed | 2014-01-29 13:53:03 -0500 | [diff] [blame] | 395 | # give system access to wpa_supplicant.conf for backup and restore | 
| Amith Yamasani | eefef32 | 2009-07-02 12:08:13 -0700 | [diff] [blame] | 396 | chmod 0660 /data/misc/wifi/wpa_supplicant.conf | 
| Chia-chi Yeh | 5ebced3 | 2012-03-07 14:52:10 -0800 | [diff] [blame] | 397 | mkdir /data/local 0751 root root | 
| Glenn Kasten | b0f908a | 2013-02-22 14:54:45 -0800 | [diff] [blame] | 398 | mkdir /data/misc/media 0700 media media | 
| Glenn Kasten | 845a4ff | 2016-02-23 15:23:46 -0800 | [diff] [blame] | 399 | mkdir /data/misc/audioserver 0700 audioserver audioserver | 
| Keun Soo Yim | be54c54 | 2016-03-01 12:45:27 -0800 | [diff] [blame] | 400 | mkdir /data/misc/cameraserver 0700 cameraserver cameraserver | 
| Paul Crowley | f8a6fa5 | 2015-06-03 13:33:43 +0100 | [diff] [blame] | 401 | mkdir /data/misc/vold 0700 root root | 
| Yasuhiro Matsuda | f93db4b | 2015-06-15 18:49:35 +0900 | [diff] [blame] | 402 | mkdir /data/misc/boottrace 0771 system shell | 
| David Zeuthen | 1591478 | 2015-10-07 14:00:55 -0400 | [diff] [blame] | 403 | mkdir /data/misc/update_engine 0700 root root | 
| Calin Juravle | 9b3e5d5 | 2015-11-10 19:16:43 +0000 | [diff] [blame] | 404 | mkdir /data/misc/trace 0700 root root | 
| Todd Poynor | 44ee2b0 | 2017-02-07 20:03:04 -0800 | [diff] [blame] | 405 | mkdir /data/misc/reboot 0700 root root | 
| Calin Juravle | 807f23a | 2016-02-01 19:27:01 +0000 | [diff] [blame] | 406 | # profile file layout | 
|  | 407 | mkdir /data/misc/profiles 0771 system system | 
|  | 408 | mkdir /data/misc/profiles/cur 0771 system system | 
|  | 409 | mkdir /data/misc/profiles/ref 0771 system system | 
| David Sehr | 0eb24e1 | 2016-05-28 14:10:38 -0700 | [diff] [blame] | 410 | mkdir /data/misc/profman 0770 system shell | 
| Stephen Smalley | deb41e5 | 2013-10-01 09:21:47 -0400 | [diff] [blame] | 411 |  | 
| Nick Kralevich | f3ef127 | 2012-03-14 15:22:54 -0700 | [diff] [blame] | 412 | # For security reasons, /data/local/tmp should always be empty. | 
|  | 413 | # 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] | 414 | mkdir /data/local/tmp 0771 shell shell | 
|  | 415 | mkdir /data/data 0771 system system | 
|  | 416 | mkdir /data/app-private 0771 system system | 
| Todd Kennedy | 0a27335 | 2015-11-23 15:24:13 -0800 | [diff] [blame] | 417 | mkdir /data/app-ephemeral 0771 system system | 
| Kenny Root | f8bbaba | 2012-04-12 15:01:52 -0700 | [diff] [blame] | 418 | mkdir /data/app-asec 0700 root root | 
| Kenny Root | 5054417 | 2012-09-08 22:39:25 -0700 | [diff] [blame] | 419 | mkdir /data/app-lib 0771 system system | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 420 | mkdir /data/app 0771 system system | 
|  | 421 | mkdir /data/property 0700 root root | 
| Nick Kralevich | 0359d77 | 2015-01-30 17:38:06 -0800 | [diff] [blame] | 422 | mkdir /data/tombstones 0771 system system | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 423 |  | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 424 | # create dalvik-cache, so as to enforce our permissions | 
| Alex Light | 3878ebd | 2014-08-27 15:40:05 -0700 | [diff] [blame] | 425 | mkdir /data/dalvik-cache 0771 root root | 
| Andreas Gampe | 7dfcc92 | 2015-12-08 09:33:07 -0800 | [diff] [blame] | 426 | # create the A/B OTA directory, so as to enforce our permissions | 
|  | 427 | mkdir /data/ota 0771 root root | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 428 |  | 
| Tao Bao | 380d6b1 | 2016-05-25 16:41:08 -0700 | [diff] [blame] | 429 | # create the OTA package directory. It will be accessed by GmsCore (cache | 
|  | 430 | # group), update_engine and update_verifier. | 
|  | 431 | mkdir /data/ota_package 0770 system cache | 
|  | 432 |  | 
| MÃ¥rten Kongstad | b45280d | 2011-05-30 10:24:54 +0200 | [diff] [blame] | 433 | # create resource-cache and double-check the perms | 
|  | 434 | mkdir /data/resource-cache 0771 system system | 
|  | 435 | chown system system /data/resource-cache | 
|  | 436 | chmod 0771 /data/resource-cache | 
|  | 437 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 438 | # create the lost+found directories, so as to enforce our permissions | 
| Chia-chi Yeh | ea74414 | 2011-07-08 16:52:18 -0700 | [diff] [blame] | 439 | mkdir /data/lost+found 0770 root root | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 440 |  | 
| James Dong | 09cdc0e | 2012-01-06 15:19:26 -0800 | [diff] [blame] | 441 | # create directory for DRM plug-ins - give drm the read/write access to | 
|  | 442 | # the following directory. | 
|  | 443 | mkdir /data/drm 0770 drm drm | 
| aimitakeshi | e572d59 | 2010-07-27 08:38:35 +0900 | [diff] [blame] | 444 |  | 
| Jeff Tinker | 08d6430 | 2013-04-23 19:54:17 -0700 | [diff] [blame] | 445 | # create directory for MediaDrm plug-ins - give drm the read/write access to | 
|  | 446 | # the following directory. | 
|  | 447 | mkdir /data/mediadrm 0770 mediadrm mediadrm | 
|  | 448 |  | 
| Nick Kralevich | c2ea70a | 2015-07-25 21:06:20 -0700 | [diff] [blame] | 449 | mkdir /data/anr 0775 system system | 
| Nick Kralevich | 89252ce | 2014-10-20 21:53:56 -0700 | [diff] [blame] | 450 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 451 | # Create all remaining /data root dirs so that they are made through init | 
|  | 452 | # and get proper encryption policy installed | 
|  | 453 | mkdir /data/backup 0700 system system | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 454 | mkdir /data/ss 0700 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 455 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 456 | mkdir /data/system 0775 system system | 
| Nick Kralevich | 9c0437f | 2015-04-07 16:44:08 -0700 | [diff] [blame] | 457 | mkdir /data/system/heapdump 0700 system system | 
| Jeff Sharkey | c9b84a3 | 2016-04-14 21:09:34 -0600 | [diff] [blame] | 458 | mkdir /data/system/users 0775 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 459 |  | 
|  | 460 | mkdir /data/system_de 0770 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 461 | mkdir /data/system_ce 0770 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 462 |  | 
|  | 463 | mkdir /data/misc_de 01771 system misc | 
|  | 464 | mkdir /data/misc_ce 01771 system misc | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 465 |  | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 466 | mkdir /data/user 0711 system system | 
| Jeff Sharkey | 1170586 | 2015-11-09 17:07:35 -0800 | [diff] [blame] | 467 | mkdir /data/user_de 0711 system system | 
| Jeff Sharkey | 3b9c83a | 2016-02-03 14:44:44 -0700 | [diff] [blame] | 468 | symlink /data/data /data/user/0 | 
| Paul Lawrence | c410b3b | 2015-03-26 15:49:42 +0000 | [diff] [blame] | 469 |  | 
| Jeff Sharkey | d78b55f | 2016-01-13 09:37:08 -0700 | [diff] [blame] | 470 | mkdir /data/media 0770 media_rw media_rw | 
| Jeff Sharkey | d78b55f | 2016-01-13 09:37:08 -0700 | [diff] [blame] | 471 | mkdir /data/media/obb 0770 media_rw media_rw | 
|  | 472 |  | 
| Yueyao (Nathan) Zhu | 60c6dac | 2016-06-21 12:04:54 -0700 | [diff] [blame] | 473 | mkdir /data/cache 0770 system cache | 
|  | 474 | mkdir /data/cache/recovery 0770 system cache | 
|  | 475 | mkdir /data/cache/backup_stage 0700 system system | 
|  | 476 | mkdir /data/cache/backup 0700 system system | 
|  | 477 |  | 
| Paul Crowley | 5949745 | 2016-02-01 16:37:13 +0000 | [diff] [blame] | 478 | init_user0 | 
|  | 479 |  | 
| Stephen Smalley | f2b7ee7 | 2014-02-06 13:52:52 -0500 | [diff] [blame] | 480 | # Set SELinux security contexts on upgrade or policy update. | 
| Paul Lawrence | a8d8434 | 2016-11-14 15:40:18 -0800 | [diff] [blame] | 481 | restorecon --recursive --skip-ce /data | 
| Stephen Smalley | f2b7ee7 | 2014-02-06 13:52:52 -0500 | [diff] [blame] | 482 |  | 
| Neil Fuller | 0891322 | 2015-03-31 18:24:29 +0100 | [diff] [blame] | 483 | # 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] | 484 | 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] | 485 |  | 
| Steven Moreland | f38aab4 | 2017-01-25 10:52:15 -0800 | [diff] [blame] | 486 | # 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] | 487 | # must uncomment this line, otherwise encrypted filesystems | 
|  | 488 | # won't work. | 
|  | 489 | # Set indication (checked by vold) that we have finished this action | 
|  | 490 | #setprop vold.post_fs_data_done 1 | 
|  | 491 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 492 | on boot | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 493 | # basic network init | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 494 | ifup lo | 
|  | 495 | hostname localhost | 
|  | 496 | domainname localdomain | 
|  | 497 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 498 | # Memory management.  Basic kernel parameters, and allow the high | 
|  | 499 | # level system server to be able to adjust the kernel OOM driver | 
|  | 500 | # parameters to match how it is managing things. | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 501 | write /proc/sys/vm/overcommit_memory 1 | 
| The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 502 | write /proc/sys/vm/min_free_order_shift 4 | 
| Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 503 | chown root system /sys/module/lowmemorykiller/parameters/adj | 
| Daniel Cardenas | 429e742 | 2015-03-20 00:07:57 +0000 | [diff] [blame] | 504 | chmod 0664 /sys/module/lowmemorykiller/parameters/adj | 
| Dianne Hackborn | 06787f4 | 2011-08-07 16:30:24 -0700 | [diff] [blame] | 505 | chown root system /sys/module/lowmemorykiller/parameters/minfree | 
| Daniel Cardenas | 429e742 | 2015-03-20 00:07:57 +0000 | [diff] [blame] | 506 | chmod 0664 /sys/module/lowmemorykiller/parameters/minfree | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 507 |  | 
| San Mehat | 831d8e1 | 2009-10-13 12:24:47 -0700 | [diff] [blame] | 508 | # Tweak background writeout | 
|  | 509 | write /proc/sys/vm/dirty_expire_centisecs 200 | 
|  | 510 | write /proc/sys/vm/dirty_background_ratio  5 | 
|  | 511 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 512 | # Permissions for System Server and daemons. | 
|  | 513 | chown radio system /sys/android_power/state | 
|  | 514 | chown radio system /sys/android_power/request_state | 
|  | 515 | chown radio system /sys/android_power/acquire_full_wake_lock | 
|  | 516 | chown radio system /sys/android_power/acquire_partial_wake_lock | 
|  | 517 | chown radio system /sys/android_power/release_wake_lock | 
| Arve Hjønnevåg | 70a163f | 2012-05-02 17:57:50 -0700 | [diff] [blame] | 518 | chown system system /sys/power/autosleep | 
| Arve Hjønnevåg | 1670f83 | 2012-03-20 20:33:09 -0700 | [diff] [blame] | 519 | chown system system /sys/power/state | 
|  | 520 | chown system system /sys/power/wakeup_count | 
| Pavlin Radoslavov | 0eca107 | 2015-11-23 17:18:31 -0800 | [diff] [blame] | 521 | chown radio wakelock /sys/power/wake_lock | 
|  | 522 | chown radio wakelock /sys/power/wake_unlock | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 523 | chmod 0660 /sys/power/state | 
|  | 524 | chmod 0660 /sys/power/wake_lock | 
|  | 525 | chmod 0660 /sys/power/wake_unlock | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 526 |  | 
|  | 527 | chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_rate | 
|  | 528 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_rate | 
| Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 529 | chown system system /sys/devices/system/cpu/cpufreq/interactive/timer_slack | 
|  | 530 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/timer_slack | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 531 | chown system system /sys/devices/system/cpu/cpufreq/interactive/min_sample_time | 
|  | 532 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/min_sample_time | 
|  | 533 | chown system system /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq | 
|  | 534 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/hispeed_freq | 
| Todd Poynor | 2b5b3bb | 2012-12-20 18:52:03 -0800 | [diff] [blame] | 535 | chown system system /sys/devices/system/cpu/cpufreq/interactive/target_loads | 
|  | 536 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/target_loads | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 537 | chown system system /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load | 
|  | 538 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/go_hispeed_load | 
| Todd Poynor | f35c203 | 2012-04-19 13:17:24 -0700 | [diff] [blame] | 539 | chown system system /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay | 
|  | 540 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/above_hispeed_delay | 
| Todd Poynor | 8d3ea1d | 2012-04-24 15:37:13 -0700 | [diff] [blame] | 541 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boost | 
|  | 542 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boost | 
| Todd Poynor | 4ff10e6 | 2012-05-03 15:20:48 -0700 | [diff] [blame] | 543 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse | 
| Todd Poynor | 33045a6 | 2012-04-27 20:21:18 -0700 | [diff] [blame] | 544 | chown system system /sys/devices/system/cpu/cpufreq/interactive/input_boost | 
|  | 545 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/input_boost | 
| Todd Poynor | 4f247d7 | 2012-12-19 17:43:06 -0800 | [diff] [blame] | 546 | chown system system /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration | 
|  | 547 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/boostpulse_duration | 
| Todd Poynor | 6b5de1c | 2013-03-25 13:17:13 -0700 | [diff] [blame] | 548 | chown system system /sys/devices/system/cpu/cpufreq/interactive/io_is_busy | 
|  | 549 | chmod 0660 /sys/devices/system/cpu/cpufreq/interactive/io_is_busy | 
| Todd Poynor | 0653b97 | 2012-04-11 14:48:51 -0700 | [diff] [blame] | 550 |  | 
|  | 551 | # Assume SMP uses shared cpufreq policy for all CPUs | 
|  | 552 | chown system system /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq | 
|  | 553 | chmod 0660 /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq | 
|  | 554 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 555 | chown system system /sys/class/timed_output/vibrator/enable | 
|  | 556 | chown system system /sys/class/leds/keyboard-backlight/brightness | 
|  | 557 | chown system system /sys/class/leds/lcd-backlight/brightness | 
|  | 558 | chown system system /sys/class/leds/button-backlight/brightness | 
| The Android Open Source Project | f614d64 | 2009-03-18 17:39:49 -0700 | [diff] [blame] | 559 | chown system system /sys/class/leds/jogball-backlight/brightness | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 560 | chown system system /sys/class/leds/red/brightness | 
|  | 561 | chown system system /sys/class/leds/green/brightness | 
|  | 562 | chown system system /sys/class/leds/blue/brightness | 
|  | 563 | chown system system /sys/class/leds/red/device/grpfreq | 
|  | 564 | chown system system /sys/class/leds/red/device/grppwm | 
|  | 565 | chown system system /sys/class/leds/red/device/blink | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 566 | chown system system /sys/class/timed_output/vibrator/enable | 
|  | 567 | chown system system /sys/module/sco/parameters/disable_esco | 
|  | 568 | chown system system /sys/kernel/ipv4/tcp_wmem_min | 
|  | 569 | chown system system /sys/kernel/ipv4/tcp_wmem_def | 
|  | 570 | chown system system /sys/kernel/ipv4/tcp_wmem_max | 
|  | 571 | chown system system /sys/kernel/ipv4/tcp_rmem_min | 
|  | 572 | chown system system /sys/kernel/ipv4/tcp_rmem_def | 
|  | 573 | chown system system /sys/kernel/ipv4/tcp_rmem_max | 
|  | 574 | chown root radio /proc/cmdline | 
|  | 575 |  | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 576 | # Define default initial receive window size in segments. | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 577 | setprop net.tcp.default_init_rwnd 60 | 
|  | 578 |  | 
| Iliyan Malchev | 57d66b8 | 2016-09-19 15:08:38 -0700 | [diff] [blame] | 579 | # Start all binderized HAL daemons | 
|  | 580 | start hwservicemanager | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 581 | class_start core | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 582 |  | 
|  | 583 | on nonencrypted | 
| Tao Bao | 97df395 | 2015-12-04 17:45:43 -0800 | [diff] [blame] | 584 | # A/B update verifier that marks a successful boot. | 
| Tianjie Xu | 1e4635f | 2016-07-12 18:31:17 -0700 | [diff] [blame] | 585 | exec - root cache -- /system/bin/update_verifier nonencrypted | 
| Paul Lawrence | 13d5bb4 | 2014-01-30 10:43:52 -0800 | [diff] [blame] | 586 | class_start main | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 587 | class_start late_start | 
|  | 588 |  | 
| Riley Andrews | 1bbef88 | 2014-06-26 13:55:03 -0700 | [diff] [blame] | 589 | on property:sys.init_log_level=* | 
|  | 590 | loglevel ${sys.init_log_level} | 
|  | 591 |  | 
| Dima Zavin | ca47cef | 2011-08-24 15:28:23 -0700 | [diff] [blame] | 592 | on charger | 
|  | 593 | class_start charger | 
|  | 594 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 595 | on property:vold.decrypt=trigger_reset_main | 
|  | 596 | class_reset main | 
|  | 597 |  | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 598 | on property:vold.decrypt=trigger_load_persist_props | 
|  | 599 | load_persist_props | 
| Mark Salyzyn | 5c39e0a | 2015-04-20 08:55:02 -0700 | [diff] [blame] | 600 | start logd | 
| Mark Salyzyn | 48d0606 | 2015-03-11 14:45:05 -0700 | [diff] [blame] | 601 | start logd-reinit | 
| Ken Sumrall | c5c5103 | 2011-03-08 17:01:29 -0800 | [diff] [blame] | 602 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 603 | on property:vold.decrypt=trigger_post_fs_data | 
|  | 604 | trigger post-fs-data | 
|  | 605 |  | 
| Ken Sumrall | e434915 | 2011-01-17 14:26:34 -0800 | [diff] [blame] | 606 | on property:vold.decrypt=trigger_restart_min_framework | 
| Tao Bao | 97df395 | 2015-12-04 17:45:43 -0800 | [diff] [blame] | 607 | # A/B update verifier that marks a successful boot. | 
| Tianjie Xu | 1e4635f | 2016-07-12 18:31:17 -0700 | [diff] [blame] | 608 | exec - root cache -- /system/bin/update_verifier trigger_restart_min_framework | 
| Ken Sumrall | e434915 | 2011-01-17 14:26:34 -0800 | [diff] [blame] | 609 | class_start main | 
|  | 610 |  | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 611 | on property:vold.decrypt=trigger_restart_framework | 
| Tao Bao | 97df395 | 2015-12-04 17:45:43 -0800 | [diff] [blame] | 612 | # A/B update verifier that marks a successful boot. | 
| Tianjie Xu | 1e4635f | 2016-07-12 18:31:17 -0700 | [diff] [blame] | 613 | exec - root cache -- /system/bin/update_verifier trigger_restart_framework | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 614 | class_start main | 
|  | 615 | class_start late_start | 
|  | 616 |  | 
|  | 617 | on property:vold.decrypt=trigger_shutdown_framework | 
|  | 618 | class_reset late_start | 
|  | 619 | class_reset main | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 620 |  | 
| Nick Kralevich | ca8e66a | 2013-04-18 12:20:02 -0700 | [diff] [blame] | 621 | on property:sys.powerctl=* | 
|  | 622 | powerctl ${sys.powerctl} | 
|  | 623 |  | 
| Elliott Hughes | a3641af | 2016-11-10 17:43:47 -0800 | [diff] [blame] | 624 | on property:sys.boot_completed=1 | 
|  | 625 | bootchart stop | 
|  | 626 |  | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 627 | # system server cannot write to /proc/sys files, | 
|  | 628 | # and chown/chmod does not work for /proc/sys/ entries. | 
|  | 629 | # So proxy writes through init. | 
| Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 630 | on property:sys.sysctl.extra_free_kbytes=* | 
|  | 631 | write /proc/sys/vm/extra_free_kbytes ${sys.sysctl.extra_free_kbytes} | 
| Riley Andrews | 6dfdc7c | 2014-06-18 20:35:40 -0700 | [diff] [blame] | 632 |  | 
| JP Abgrall | 7c862c8 | 2014-02-21 12:05:01 -0800 | [diff] [blame] | 633 | # "tcp_default_init_rwnd" Is too long! | 
|  | 634 | on property:sys.sysctl.tcp_def_init_rwnd=* | 
|  | 635 | write /proc/sys/net/ipv4/tcp_default_init_rwnd ${sys.sysctl.tcp_def_init_rwnd} | 
|  | 636 |  | 
| Daniel Micay | 2b22a66 | 2015-09-04 16:23:01 -0400 | [diff] [blame] | 637 | on property:security.perf_harden=0 | 
|  | 638 | write /proc/sys/kernel/perf_event_paranoid 1 | 
|  | 639 |  | 
|  | 640 | on property:security.perf_harden=1 | 
|  | 641 | write /proc/sys/kernel/perf_event_paranoid 3 | 
| Colin Cross | 57fdb5c | 2013-07-25 10:34:30 -0700 | [diff] [blame] | 642 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 643 | ## Daemon processes to be run by init. | 
|  | 644 | ## | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 645 | service ueventd /sbin/ueventd | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 646 | class core | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 647 | critical | 
| Stephen Smalley | 1eee419 | 2012-01-13 08:54:34 -0500 | [diff] [blame] | 648 | seclabel u:r:ueventd:s0 | 
| Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 649 |  | 
| Todd Poynor | 13f4c9f | 2013-06-19 15:09:35 -0700 | [diff] [blame] | 650 | service healthd /sbin/healthd | 
|  | 651 | class core | 
|  | 652 | critical | 
|  | 653 | seclabel u:r:healthd:s0 | 
| Pavlin Radoslavov | 0eca107 | 2015-11-23 17:18:31 -0800 | [diff] [blame] | 654 | group root system wakelock | 
| Todd Poynor | 13f4c9f | 2013-06-19 15:09:35 -0700 | [diff] [blame] | 655 |  | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 656 | service console /system/bin/sh | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 657 | class core | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 658 | console | 
|  | 659 | disabled | 
|  | 660 | user shell | 
| Nick Kralevich | c39ba5a | 2015-11-07 16:52:17 -0800 | [diff] [blame] | 661 | group shell log readproc | 
| Stephen Smalley | 610653f | 2013-12-23 14:11:02 -0500 | [diff] [blame] | 662 | seclabel u:r:shell:s0 | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 663 |  | 
| Mike Lockwood | d49b4ef | 2010-11-19 09:12:27 -0500 | [diff] [blame] | 664 | on property:ro.debuggable=1 | 
| Calin Juravle | 9b3e5d5 | 2015-11-10 19:16:43 +0000 | [diff] [blame] | 665 | # Give writes to anyone for the trace folder on debug builds. | 
|  | 666 | # The folder is used to store method traces. | 
|  | 667 | chmod 0773 /data/misc/trace | 
| Brian Swetland | b4d6539 | 2010-10-27 15:40:23 -0700 | [diff] [blame] | 668 | start console | 
|  | 669 |  | 
| Doug Zongker | 9526202 | 2014-02-04 12:15:14 -0800 | [diff] [blame] | 670 | service flash_recovery /system/bin/install-recovery.sh | 
| Ken Sumrall | 752923c | 2010-12-03 16:33:31 -0800 | [diff] [blame] | 671 | class main | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 672 | oneshot |