blob: 362c38cb8050a952783dff229f1fd7ad3cdd4ad1 [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 DeviceHandler {
97 public:
98 friend class DeviceHandlerTester;
99
100 DeviceHandler();
101 DeviceHandler(std::vector<Permissions> dev_permissions,
102 std::vector<SysfsPermissions> sysfs_permissions,
Tom Cherryc5833052017-05-16 15:35:41 -0700103 std::vector<Subsystem> subsystems, bool skip_restorecon);
Tom Cherryed506f72017-05-25 15:58:59 -0700104 ~DeviceHandler(){};
105
106 void HandleDeviceEvent(const Uevent& uevent);
Tom Cherryc5833052017-05-16 15:35:41 -0700107
Tom Cherryed506f72017-05-25 15:58:59 -0700108 std::vector<std::string> GetBlockDeviceSymlinks(const Uevent& uevent) const;
Tom Cherryc5833052017-05-16 15:35:41 -0700109 void set_skip_restorecon(bool value) { skip_restorecon_ = value; }
Tom Cherryed506f72017-05-25 15:58:59 -0700110
111 private:
Sandeep Patilcd2ba0d2017-06-21 12:46:41 -0700112 bool FindPlatformDevice(std::string path, std::string* platform_device_path) const;
Tom Cherryed506f72017-05-25 15:58:59 -0700113 std::tuple<mode_t, uid_t, gid_t> GetDevicePermissions(
114 const std::string& path, const std::vector<std::string>& links) const;
115 void MakeDevice(const std::string& path, int block, int major, int minor,
116 const std::vector<std::string>& links) const;
117 std::vector<std::string> GetCharacterDeviceSymlinks(const Uevent& uevent) const;
118 void HandleDevice(const std::string& action, const std::string& devpath, int block, int major,
119 int minor, const std::vector<std::string>& links) const;
Sandeep Patilcd2ba0d2017-06-21 12:46:41 -0700120 void FixupSysPermissions(const std::string& upath, const std::string& subsystem) const;
121
122 void HandleBlockDeviceEvent(const Uevent& uevent) const;
123 void HandleGenericDeviceEvent(const Uevent& uevent) const;
Tom Cherryed506f72017-05-25 15:58:59 -0700124
125 std::vector<Permissions> dev_permissions_;
126 std::vector<SysfsPermissions> sysfs_permissions_;
127 std::vector<Subsystem> subsystems_;
Tom Cherryed506f72017-05-25 15:58:59 -0700128 selabel_handle* sehandle_;
Tom Cherryc5833052017-05-16 15:35:41 -0700129 bool skip_restorecon_;
Sandeep Patilcd2ba0d2017-06-21 12:46:41 -0700130 std::string sysfs_mount_point_;
Tom Cherryed506f72017-05-25 15:58:59 -0700131};
Elliott Hughesf3cf4382015-02-03 17:12:07 -0800132
Tom Cherryc44f6a42017-04-05 15:58:31 -0700133// Exposed for testing
Tom Cherryed506f72017-05-25 15:58:59 -0700134void SanitizePartitionName(std::string* string);
Tom Cherryc44f6a42017-04-05 15:58:31 -0700135
Tom Cherryed506f72017-05-25 15:58:59 -0700136#endif