blob: 50f49fc1093fca7f25c6cd639ce192ade10eda7e [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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 Crossf83d0b92010-04-21 12:04:20 -070020#include <sys/stat.h>
Tom Cherrycc054c92017-04-05 17:55:46 -070021#include <sys/types.h>
Colin Crossf83d0b92010-04-21 12:04:20 -070022
Tom Cherryed506f72017-05-25 15:58:59 -070023#include <algorithm>
Tom Cherry2e344f92017-04-04 17:53:45 -070024#include <string>
25#include <vector>
Tom Cherry3f5eaae52017-04-06 16:30:22 -070026
Tom Cherryed506f72017-05-25 15:58:59 -070027#include <android-base/file.h>
28#include <selinux/label.h>
Tom Cherryfe062052017-04-24 16:59:05 -070029
Tom Cherryed506f72017-05-25 15:58:59 -070030#include "uevent.h"
Sandeep Patil957e4ab2017-02-07 18:11:37 -080031
Tom Cherrycc054c92017-04-05 17:55:46 -070032class Permissions {
33 public:
34 Permissions(const std::string& name, mode_t perm, uid_t uid, gid_t gid);
35
36 bool Match(const std::string& path) const;
37
38 mode_t perm() const { return perm_; }
39 uid_t uid() const { return uid_; }
40 gid_t gid() const { return gid_; }
41
42 protected:
43 const std::string& name() const { return name_; }
44
45 private:
46 std::string name_;
47 mode_t perm_;
48 uid_t uid_;
49 gid_t gid_;
50 bool prefix_;
51 bool wildcard_;
52};
53
54class SysfsPermissions : public Permissions {
55 public:
56 SysfsPermissions(const std::string& name, const std::string& attribute, mode_t perm, uid_t uid,
57 gid_t gid)
58 : Permissions(name, perm, uid, gid), attribute_(attribute) {}
59
60 bool MatchWithSubsystem(const std::string& path, const std::string& subsystem) const;
61 void SetPermissions(const std::string& path) const;
62
63 private:
64 const std::string attribute_;
65};
66
Tom Cherryfe062052017-04-24 16:59:05 -070067class Subsystem {
68 public:
69 friend class SubsystemParser;
Tom Cherrycc054c92017-04-05 17:55:46 -070070
Tom Cherryfe062052017-04-24 16:59:05 -070071 Subsystem() {}
72
73 // Returns the full path for a uevent of a device that is a member of this subsystem,
74 // according to the rules parsed from ueventd.rc
Tom Cherryed506f72017-05-25 15:58:59 -070075 std::string ParseDevPath(const Uevent& uevent) const {
76 std::string devname = devname_source_ == DevnameSource::DEVNAME_UEVENT_DEVNAME
77 ? uevent.device_name
78 : android::base::Basename(uevent.path);
Tom Cherryfe062052017-04-24 16:59:05 -070079
Tom Cherryed506f72017-05-25 15:58:59 -070080 return dir_name_ + "/" + devname;
81 }
82
83 bool operator==(const std::string& string_name) const { return name_ == string_name; }
Tom Cherryfe062052017-04-24 16:59:05 -070084
85 private:
86 enum class DevnameSource {
87 DEVNAME_UEVENT_DEVNAME,
88 DEVNAME_UEVENT_DEVPATH,
89 };
90
91 std::string name_;
92 std::string dir_name_ = "/dev";
93 DevnameSource devname_source_;
94};
95
Tom Cherryed506f72017-05-25 15:58:59 -070096class PlatformDeviceList {
Tom Cherryfe062052017-04-24 16:59:05 -070097 public:
Tom Cherryed506f72017-05-25 15:58:59 -070098 void Add(const std::string& path) { platform_devices_.emplace_back(path); }
99 void Remove(const std::string& path) {
100 auto it = std::find(platform_devices_.begin(), platform_devices_.end(), path);
101 if (it != platform_devices_.end()) platform_devices_.erase(it);
102 }
103 bool Find(const std::string& path, std::string* out_path) const;
104 auto size() const { return platform_devices_.size(); }
Tom Cherryfe062052017-04-24 16:59:05 -0700105
106 private:
Tom Cherryed506f72017-05-25 15:58:59 -0700107 std::vector<std::string> platform_devices_;
Tom Cherryfe062052017-04-24 16:59:05 -0700108};
109
Tom Cherryed506f72017-05-25 15:58:59 -0700110class DeviceHandler {
111 public:
112 friend class DeviceHandlerTester;
113
114 DeviceHandler();
115 DeviceHandler(std::vector<Permissions> dev_permissions,
116 std::vector<SysfsPermissions> sysfs_permissions,
117 std::vector<Subsystem> subsystems);
118 ~DeviceHandler(){};
119
120 void HandleDeviceEvent(const Uevent& uevent);
121 std::vector<std::string> GetBlockDeviceSymlinks(const Uevent& uevent) const;
122
123 private:
124 void FixupSysPermissions(const std::string& upath, const std::string& subsystem) const;
125 std::tuple<mode_t, uid_t, gid_t> GetDevicePermissions(
126 const std::string& path, const std::vector<std::string>& links) const;
127 void MakeDevice(const std::string& path, int block, int major, int minor,
128 const std::vector<std::string>& links) const;
129 std::vector<std::string> GetCharacterDeviceSymlinks(const Uevent& uevent) const;
130 void HandleDevice(const std::string& action, const std::string& devpath, int block, int major,
131 int minor, const std::vector<std::string>& links) const;
132 void HandlePlatformDeviceEvent(const Uevent& uevent);
133 void HandleBlockDeviceEvent(const Uevent& uevent) const;
134 void HandleGenericDeviceEvent(const Uevent& uevent) const;
135
136 std::vector<Permissions> dev_permissions_;
137 std::vector<SysfsPermissions> sysfs_permissions_;
138 std::vector<Subsystem> subsystems_;
139 PlatformDeviceList platform_devices_;
140 selabel_handle* sehandle_;
141};
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800142
Tom Cherryc44f6a42017-04-05 15:58:31 -0700143// Exposed for testing
Tom Cherryed506f72017-05-25 15:58:59 -0700144void SanitizePartitionName(std::string* string);
Tom Cherryc44f6a42017-04-05 15:58:31 -0700145
Tom Cherryed506f72017-05-25 15:58:59 -0700146#endif