The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007 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 | |
| 17 | #ifndef _INIT_DEVICES_H |
| 18 | #define _INIT_DEVICES_H |
| 19 | |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 20 | #include <sys/stat.h> |
Tom Cherry | cc054c9 | 2017-04-05 17:55:46 -0700 | [diff] [blame] | 21 | #include <sys/types.h> |
Colin Cross | f83d0b9 | 2010-04-21 12:04:20 -0700 | [diff] [blame] | 22 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 23 | #include <algorithm> |
Tom Cherry | 2e344f9 | 2017-04-04 17:53:45 -0700 | [diff] [blame] | 24 | #include <string> |
| 25 | #include <vector> |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame] | 26 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 27 | #include <android-base/file.h> |
| 28 | #include <selinux/label.h> |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 29 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 30 | #include "uevent.h" |
Sandeep Patil | 957e4ab | 2017-02-07 18:11:37 -0800 | [diff] [blame] | 31 | |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 32 | namespace android { |
| 33 | namespace init { |
| 34 | |
Tom Cherry | cc054c9 | 2017-04-05 17:55:46 -0700 | [diff] [blame] | 35 | class Permissions { |
| 36 | public: |
| 37 | Permissions(const std::string& name, mode_t perm, uid_t uid, gid_t gid); |
| 38 | |
| 39 | bool Match(const std::string& path) const; |
| 40 | |
| 41 | mode_t perm() const { return perm_; } |
| 42 | uid_t uid() const { return uid_; } |
| 43 | gid_t gid() const { return gid_; } |
| 44 | |
| 45 | protected: |
| 46 | const std::string& name() const { return name_; } |
| 47 | |
| 48 | private: |
| 49 | std::string name_; |
| 50 | mode_t perm_; |
| 51 | uid_t uid_; |
| 52 | gid_t gid_; |
| 53 | bool prefix_; |
| 54 | bool wildcard_; |
| 55 | }; |
| 56 | |
| 57 | class SysfsPermissions : public Permissions { |
| 58 | public: |
| 59 | SysfsPermissions(const std::string& name, const std::string& attribute, mode_t perm, uid_t uid, |
| 60 | gid_t gid) |
| 61 | : Permissions(name, perm, uid, gid), attribute_(attribute) {} |
| 62 | |
| 63 | bool MatchWithSubsystem(const std::string& path, const std::string& subsystem) const; |
| 64 | void SetPermissions(const std::string& path) const; |
| 65 | |
| 66 | private: |
| 67 | const std::string attribute_; |
| 68 | }; |
| 69 | |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 70 | class Subsystem { |
| 71 | public: |
| 72 | friend class SubsystemParser; |
Tom Cherry | cc054c9 | 2017-04-05 17:55:46 -0700 | [diff] [blame] | 73 | |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 74 | Subsystem() {} |
Tom Cherry | 9c8d6dd | 2017-08-17 09:38:01 -0700 | [diff] [blame] | 75 | Subsystem(std::string name) : name_(std::move(name)) {} |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 76 | |
| 77 | // Returns the full path for a uevent of a device that is a member of this subsystem, |
| 78 | // according to the rules parsed from ueventd.rc |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 79 | std::string ParseDevPath(const Uevent& uevent) const { |
| 80 | std::string devname = devname_source_ == DevnameSource::DEVNAME_UEVENT_DEVNAME |
| 81 | ? uevent.device_name |
| 82 | : android::base::Basename(uevent.path); |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 83 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 84 | return dir_name_ + "/" + devname; |
| 85 | } |
| 86 | |
| 87 | bool operator==(const std::string& string_name) const { return name_ == string_name; } |
Tom Cherry | fe06205 | 2017-04-24 16:59:05 -0700 | [diff] [blame] | 88 | |
| 89 | private: |
| 90 | enum class DevnameSource { |
| 91 | DEVNAME_UEVENT_DEVNAME, |
| 92 | DEVNAME_UEVENT_DEVPATH, |
| 93 | }; |
| 94 | |
| 95 | std::string name_; |
| 96 | std::string dir_name_ = "/dev"; |
| 97 | DevnameSource devname_source_; |
| 98 | }; |
| 99 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 100 | class DeviceHandler { |
| 101 | public: |
| 102 | friend class DeviceHandlerTester; |
| 103 | |
| 104 | DeviceHandler(); |
| 105 | DeviceHandler(std::vector<Permissions> dev_permissions, |
| 106 | std::vector<SysfsPermissions> sysfs_permissions, |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 107 | std::vector<Subsystem> subsystems, bool skip_restorecon); |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 108 | ~DeviceHandler(){}; |
| 109 | |
| 110 | void HandleDeviceEvent(const Uevent& uevent); |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 111 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 112 | std::vector<std::string> GetBlockDeviceSymlinks(const Uevent& uevent) const; |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 113 | void set_skip_restorecon(bool value) { skip_restorecon_ = value; } |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 114 | |
| 115 | private: |
Sandeep Patil | cd2ba0d | 2017-06-21 12:46:41 -0700 | [diff] [blame] | 116 | bool FindPlatformDevice(std::string path, std::string* platform_device_path) const; |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 117 | std::tuple<mode_t, uid_t, gid_t> GetDevicePermissions( |
| 118 | const std::string& path, const std::vector<std::string>& links) const; |
Tom Cherry | b4dd881 | 2017-06-23 12:43:48 -0700 | [diff] [blame] | 119 | void MakeDevice(const std::string& path, bool block, int major, int minor, |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 120 | const std::vector<std::string>& links) const; |
Tom Cherry | b4dd881 | 2017-06-23 12:43:48 -0700 | [diff] [blame] | 121 | void HandleDevice(const std::string& action, const std::string& devpath, bool block, int major, |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 122 | int minor, const std::vector<std::string>& links) const; |
Sandeep Patil | cd2ba0d | 2017-06-21 12:46:41 -0700 | [diff] [blame] | 123 | void FixupSysPermissions(const std::string& upath, const std::string& subsystem) const; |
| 124 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 125 | std::vector<Permissions> dev_permissions_; |
| 126 | std::vector<SysfsPermissions> sysfs_permissions_; |
| 127 | std::vector<Subsystem> subsystems_; |
Tom Cherry | c583305 | 2017-05-16 15:35:41 -0700 | [diff] [blame] | 128 | bool skip_restorecon_; |
Sandeep Patil | cd2ba0d | 2017-06-21 12:46:41 -0700 | [diff] [blame] | 129 | std::string sysfs_mount_point_; |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 130 | }; |
Elliott Hughes | f3cf438 | 2015-02-03 17:12:07 -0800 | [diff] [blame] | 131 | |
Tom Cherry | c44f6a4 | 2017-04-05 15:58:31 -0700 | [diff] [blame] | 132 | // Exposed for testing |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 133 | void SanitizePartitionName(std::string* string); |
Tom Cherry | c44f6a4 | 2017-04-05 15:58:31 -0700 | [diff] [blame] | 134 | |
Tom Cherry | 81f5d3e | 2017-06-22 12:53:17 -0700 | [diff] [blame] | 135 | } // namespace init |
| 136 | } // namespace android |
| 137 | |
Tom Cherry | ed506f7 | 2017-05-25 15:58:59 -0700 | [diff] [blame] | 138 | #endif |