Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 17 | #include "ueventd.h" |
| 18 | |
Colin Cross | 44b65d0 | 2010-04-20 14:32:50 -0700 | [diff] [blame] | 19 | #include <ctype.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 20 | #include <fcntl.h> |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 21 | #include <signal.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 22 | #include <stdio.h> |
| 23 | #include <stdlib.h> |
| 24 | #include <string.h> |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 25 | #include <sys/wait.h> |
| 26 | |
| 27 | #include <set> |
| 28 | #include <thread> |
Brian Swetland | 8d48c8e | 2011-03-24 15:45:30 -0700 | [diff] [blame] | 29 | |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 30 | #include <android-base/logging.h> |
Tom Cherry | ccf2353 | 2017-03-28 16:40:41 -0700 | [diff] [blame] | 31 | #include <android-base/properties.h> |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 32 | #include <selinux/android.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 33 | #include <selinux/selinux.h> |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 34 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 35 | #include "devices.h" |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 36 | #include "firmware_handler.h" |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 37 | #include "log.h" |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 38 | #include "uevent_listener.h" |
| 39 | #include "ueventd_parser.h" |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 40 | #include "util.h" |
Vladimir Chtchetkine | 2b99543 | 2011-09-28 09:55:31 -0700 | [diff] [blame] | 41 | |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 42 | // At a high level, ueventd listens for uevent messages generated by the kernel through a netlink |
| 43 | // socket. When ueventd receives such a message it handles it by taking appropriate actions, |
| 44 | // which can typically be creating a device node in /dev, setting file permissions, setting selinux |
| 45 | // labels, etc. |
| 46 | // Ueventd also handles loading of firmware that the kernel requests, and creates symlinks for block |
| 47 | // and character devices. |
| 48 | |
| 49 | // When ueventd starts, it regenerates uevents for all currently registered devices by traversing |
| 50 | // /sys and writing 'add' to each 'uevent' file that it finds. This causes the kernel to generate |
| 51 | // and resend uevent messages for all of the currently registered devices. This is done, because |
| 52 | // ueventd would not have been running when these devices were registered and therefore was unable |
| 53 | // to receive their uevent messages and handle them appropriately. This process is known as |
| 54 | // 'cold boot'. |
| 55 | |
| 56 | // 'init' currently waits synchronously on the cold boot process of ueventd before it continues |
| 57 | // its boot process. For this reason, cold boot should be as quick as possible. One way to achieve |
| 58 | // a speed up here is to parallelize the handling of ueventd messages, which consume the bulk of the |
| 59 | // time during cold boot. |
| 60 | |
| 61 | // Handling of uevent messages has two unique properties: |
| 62 | // 1) It can be done in isolation; it doesn't need to read or write any status once it is started. |
| 63 | // 2) It uses setegid() and setfscreatecon() so either care (aka locking) must be taken to ensure |
| 64 | // that no file system operations are done while the uevent process has an abnormal egid or |
| 65 | // fscreatecon or this handling must happen in a separate process. |
| 66 | // Given the above two properties, it is best to fork() subprocesses to handle the uevents. This |
| 67 | // reduces the overhead and complexity that would be required in a solution with threads and locks. |
| 68 | // In testing, a racy multithreaded solution has the same performance as the fork() solution, so |
| 69 | // there is no reason to deal with the complexity of the former. |
| 70 | |
| 71 | // One other important caveat during the boot process is the handling of SELinux restorecon. |
| 72 | // Since many devices have child devices, calling selinux_android_restorecon() recursively for each |
| 73 | // device when its uevent is handled, results in multiple restorecon operations being done on a |
| 74 | // given file. It is more efficient to simply do restorecon recursively on /sys during cold boot, |
| 75 | // than to do restorecon on each device as its uevent is handled. This only applies to cold boot; |
| 76 | // once that has completed, restorecon is done for each device as its uevent is handled. |
| 77 | |
| 78 | // With all of the above considered, the cold boot process has the below steps: |
| 79 | // 1) ueventd regenerates uevents by doing the /sys traversal and listens to the netlink socket for |
| 80 | // the generated uevents. It writes these uevents into a queue represented by a vector. |
| 81 | // |
| 82 | // 2) ueventd forks 'n' separate uevent handler subprocesses and has each of them to handle the |
| 83 | // uevents in the queue based on a starting offset (their process number) and a stride (the total |
| 84 | // number of processes). Note that no IPC happens at this point and only const functions from |
| 85 | // DeviceHandler should be called from this context. |
| 86 | // |
| 87 | // 3) In parallel to the subprocesses handling the uevents, the main thread of ueventd calls |
| 88 | // selinux_android_restorecon() recursively on /sys/class, /sys/block, and /sys/devices. |
| 89 | // |
| 90 | // 4) Once the restorecon operation finishes, the main thread calls waitpid() to wait for all |
| 91 | // subprocess handlers to complete and exit. Once this happens, it marks coldboot as having |
| 92 | // completed. |
| 93 | // |
| 94 | // At this point, ueventd is single threaded, poll()'s and then handles any future uevents. |
| 95 | |
| 96 | // Lastly, it should be noted that uevents that occur during the coldboot process are handled |
| 97 | // without issue after the coldboot process completes. This is because the uevent listener is |
| 98 | // paused while the uevent handler and restorecon actions take place. Once coldboot completes, |
| 99 | // the uevent listener resumes in polling mode and will handle the uevents that occurred during |
| 100 | // coldboot. |
| 101 | |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 102 | namespace android { |
| 103 | namespace init { |
| 104 | |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 105 | class ColdBoot { |
| 106 | public: |
| 107 | ColdBoot(UeventListener& uevent_listener, DeviceHandler& device_handler) |
| 108 | : uevent_listener_(uevent_listener), |
| 109 | device_handler_(device_handler), |
| 110 | num_handler_subprocesses_(std::thread::hardware_concurrency() ?: 4) {} |
| 111 | |
| 112 | void Run(); |
| 113 | |
| 114 | private: |
| 115 | void UeventHandlerMain(unsigned int process_num, unsigned int total_processes); |
| 116 | void RegenerateUevents(); |
| 117 | void ForkSubProcesses(); |
| 118 | void DoRestoreCon(); |
| 119 | void WaitForSubProcesses(); |
| 120 | |
| 121 | UeventListener& uevent_listener_; |
| 122 | DeviceHandler& device_handler_; |
| 123 | |
| 124 | unsigned int num_handler_subprocesses_; |
| 125 | std::vector<Uevent> uevent_queue_; |
| 126 | |
| 127 | std::set<pid_t> subprocess_pids_; |
| 128 | }; |
| 129 | |
| 130 | void ColdBoot::UeventHandlerMain(unsigned int process_num, unsigned int total_processes) { |
| 131 | for (unsigned int i = process_num; i < uevent_queue_.size(); i += total_processes) { |
| 132 | auto& uevent = uevent_queue_[i]; |
Sandeep Patil | cd2ba0d | 2017-06-21 12:46:41 -0700 | [diff] [blame] | 133 | device_handler_.HandleDeviceEvent(uevent); |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 134 | } |
| 135 | _exit(EXIT_SUCCESS); |
| 136 | } |
| 137 | |
| 138 | void ColdBoot::RegenerateUevents() { |
| 139 | uevent_listener_.RegenerateUevents([this](const Uevent& uevent) { |
| 140 | HandleFirmwareEvent(uevent); |
| 141 | |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 142 | uevent_queue_.emplace_back(std::move(uevent)); |
Sandeep Patil | 4cbedee | 2017-06-21 13:02:57 -0700 | [diff] [blame] | 143 | return ListenerAction::kContinue; |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 144 | }); |
| 145 | } |
| 146 | |
| 147 | void ColdBoot::ForkSubProcesses() { |
| 148 | for (unsigned int i = 0; i < num_handler_subprocesses_; ++i) { |
| 149 | auto pid = fork(); |
| 150 | if (pid < 0) { |
| 151 | PLOG(FATAL) << "fork() failed!"; |
| 152 | } |
| 153 | |
| 154 | if (pid == 0) { |
| 155 | UeventHandlerMain(i, num_handler_subprocesses_); |
| 156 | } |
| 157 | |
| 158 | subprocess_pids_.emplace(pid); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | void ColdBoot::DoRestoreCon() { |
Tom Cherry | d2fd54e | 2017-06-07 14:32:30 -0700 | [diff] [blame] | 163 | selinux_android_restorecon("/sys", SELINUX_ANDROID_RESTORECON_RECURSE); |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 164 | device_handler_.set_skip_restorecon(false); |
| 165 | } |
| 166 | |
| 167 | void ColdBoot::WaitForSubProcesses() { |
| 168 | // Treat subprocesses that crash or get stuck the same as if ueventd itself has crashed or gets |
| 169 | // stuck. |
| 170 | // |
| 171 | // When a subprocess crashes, we fatally abort from ueventd. init will restart ueventd when |
| 172 | // init reaps it, and the cold boot process will start again. If this continues to fail, then |
| 173 | // since ueventd is marked as a critical service, init will reboot to recovery. |
| 174 | // |
| 175 | // When a subprocess gets stuck, keep ueventd spinning waiting for it. init has a timeout for |
| 176 | // cold boot and will reboot to the bootloader if ueventd does not complete in time. |
| 177 | while (!subprocess_pids_.empty()) { |
| 178 | int status; |
| 179 | pid_t pid = TEMP_FAILURE_RETRY(waitpid(-1, &status, 0)); |
| 180 | if (pid == -1) { |
| 181 | PLOG(ERROR) << "waitpid() failed"; |
| 182 | continue; |
| 183 | } |
| 184 | |
| 185 | auto it = std::find(subprocess_pids_.begin(), subprocess_pids_.end(), pid); |
| 186 | if (it == subprocess_pids_.end()) continue; |
| 187 | |
| 188 | if (WIFEXITED(status)) { |
| 189 | if (WEXITSTATUS(status) == EXIT_SUCCESS) { |
| 190 | subprocess_pids_.erase(it); |
| 191 | } else { |
| 192 | LOG(FATAL) << "subprocess exited with status " << WEXITSTATUS(status); |
| 193 | } |
| 194 | } else if (WIFSIGNALED(status)) { |
| 195 | LOG(FATAL) << "subprocess killed by signal " << WTERMSIG(status); |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | void ColdBoot::Run() { |
| 201 | Timer cold_boot_timer; |
| 202 | |
| 203 | RegenerateUevents(); |
| 204 | |
| 205 | ForkSubProcesses(); |
| 206 | |
| 207 | DoRestoreCon(); |
| 208 | |
| 209 | WaitForSubProcesses(); |
| 210 | |
| 211 | close(open(COLDBOOT_DONE, O_WRONLY | O_CREAT | O_CLOEXEC, 0000)); |
| 212 | LOG(INFO) << "Coldboot took " << cold_boot_timer; |
| 213 | } |
| 214 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 215 | DeviceHandler CreateDeviceHandler() { |
| 216 | Parser parser; |
| 217 | |
| 218 | std::vector<Subsystem> subsystems; |
| 219 | parser.AddSectionParser("subsystem", std::make_unique<SubsystemParser>(&subsystems)); |
| 220 | |
| 221 | using namespace std::placeholders; |
| 222 | std::vector<SysfsPermissions> sysfs_permissions; |
| 223 | std::vector<Permissions> dev_permissions; |
| 224 | parser.AddSingleLineParser( |
| 225 | "/sys/", std::bind(ParsePermissionsLine, _1, _2, &sysfs_permissions, nullptr)); |
| 226 | parser.AddSingleLineParser("/dev/", |
| 227 | std::bind(ParsePermissionsLine, _1, _2, nullptr, &dev_permissions)); |
| 228 | |
| 229 | parser.ParseConfig("/ueventd.rc"); |
| 230 | parser.ParseConfig("/vendor/ueventd.rc"); |
| 231 | parser.ParseConfig("/odm/ueventd.rc"); |
| 232 | |
| 233 | /* |
| 234 | * keep the current product name base configuration so |
| 235 | * we remain backwards compatible and allow it to override |
| 236 | * everything |
| 237 | * TODO: cleanup platform ueventd.rc to remove vendor specific |
| 238 | * device node entries (b/34968103) |
| 239 | */ |
| 240 | std::string hardware = android::base::GetProperty("ro.hardware", ""); |
| 241 | parser.ParseConfig("/ueventd." + hardware + ".rc"); |
| 242 | |
| 243 | return DeviceHandler(std::move(dev_permissions), std::move(sysfs_permissions), |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 244 | std::move(subsystems), true); |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 247 | int ueventd_main(int argc, char** argv) { |
Nick Kralevich | 6ebf12f | 2012-03-26 09:09:11 -0700 | [diff] [blame] | 248 | /* |
| 249 | * init sets the umask to 077 for forked processes. We need to |
| 250 | * create files with exact permissions, without modification by |
| 251 | * the umask. |
| 252 | */ |
| 253 | umask(000); |
| 254 | |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 255 | InitKernelLogging(argv); |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 256 | |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 257 | LOG(INFO) << "ueventd started!"; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 258 | |
| 259 | selinux_callback cb; |
| 260 | cb.func_log = selinux_klog_callback; |
Stephen Smalley | 439224e | 2014-06-24 13:45:43 -0400 | [diff] [blame] | 261 | selinux_set_callback(SELINUX_CB_LOG, cb); |
| 262 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 263 | DeviceHandler device_handler = CreateDeviceHandler(); |
| 264 | UeventListener uevent_listener; |
Sandeep Patil | bf298e6 | 2017-02-03 07:18:36 -0800 | [diff] [blame] | 265 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 266 | if (access(COLDBOOT_DONE, F_OK) != 0) { |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 267 | ColdBoot cold_boot(uevent_listener, device_handler); |
| 268 | cold_boot.Run(); |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 269 | } |
Elliott Hughes | 2145779 | 2015-02-04 10:19:50 -0800 | [diff] [blame] | 270 | |
Tom Cherry | 0f296e0 | 2017-06-30 12:58:39 -0700 | [diff] [blame] | 271 | // We use waitpid() in ColdBoot, so we can't ignore SIGCHLD until now. |
| 272 | signal(SIGCHLD, SIG_IGN); |
| 273 | // Reap and pending children that exited between the last call to waitpid() and setting SIG_IGN |
| 274 | // for SIGCHLD above. |
| 275 | while (waitpid(-1, nullptr, WNOHANG) > 0) { |
| 276 | } |
| 277 | |
Sandeep Patil | 4cbedee | 2017-06-21 13:02:57 -0700 | [diff] [blame] | 278 | uevent_listener.Poll([&device_handler](const Uevent& uevent) { |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 279 | HandleFirmwareEvent(uevent); |
| 280 | device_handler.HandleDeviceEvent(uevent); |
Sandeep Patil | 4cbedee | 2017-06-21 13:02:57 -0700 | [diff] [blame] | 281 | return ListenerAction::kContinue; |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 282 | }); |
| 283 | |
Elliott Hughes | 2145779 | 2015-02-04 10:19:50 -0800 | [diff] [blame] | 284 | return 0; |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 285 | } |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 286 | |
| 287 | } // namespace init |
| 288 | } // namespace android |