Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 ANDROID_VOLD_VOLUME_BASE_H |
| 18 | #define ANDROID_VOLD_VOLUME_BASE_H |
| 19 | |
| 20 | #include "Utils.h" |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 21 | #include "android/os/IVoldListener.h" |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 22 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 23 | #include <cutils/multiuser.h> |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 24 | #include <utils/Errors.h> |
| 25 | |
| 26 | #include <sys/types.h> |
| 27 | #include <list> |
| 28 | #include <string> |
| 29 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 30 | static constexpr userid_t USER_UNKNOWN = ((userid_t)-1); |
| 31 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 32 | namespace android { |
| 33 | namespace vold { |
| 34 | |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 35 | /* |
| 36 | * Representation of a mounted volume ready for presentation. |
| 37 | * |
| 38 | * Various subclasses handle the different mounting prerequisites, such as |
| 39 | * encryption details, etc. Volumes can also be "stacked" above other |
| 40 | * volumes to help communicate dependencies. For example, an ASEC volume |
| 41 | * can be stacked on a vfat volume. |
| 42 | * |
| 43 | * Mounted volumes can be asked to manage bind mounts to present themselves |
| 44 | * to specific users on the device. |
| 45 | * |
| 46 | * When an unmount is requested, the volume recursively unmounts any stacked |
| 47 | * volumes and removes any bind mounts before finally unmounting itself. |
| 48 | */ |
| 49 | class VolumeBase { |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 50 | public: |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 51 | virtual ~VolumeBase(); |
| 52 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 53 | enum class Type { |
| 54 | kPublic = 0, |
| 55 | kPrivate, |
| 56 | kEmulated, |
| 57 | kAsec, |
| 58 | kObb, |
Risan | 8c9f332 | 2018-10-29 08:52:56 +0900 | [diff] [blame] | 59 | kStub, |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 60 | }; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 61 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 62 | enum MountFlags { |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 63 | /* Flag that volume is primary external storage */ |
| 64 | kPrimary = 1 << 0, |
| 65 | /* Flag that volume is visible to normal apps */ |
| 66 | kVisible = 1 << 1, |
| 67 | }; |
| 68 | |
| 69 | enum class State { |
| 70 | kUnmounted = 0, |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 71 | kChecking, |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 72 | kMounted, |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 73 | kMountedReadOnly, |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 74 | kFormatting, |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 75 | kEjecting, |
Jeff Sharkey | 0fd9535 | 2015-04-04 21:38:59 -0700 | [diff] [blame] | 76 | kUnmountable, |
Jeff Sharkey | 3161fb3 | 2015-04-12 16:03:33 -0700 | [diff] [blame] | 77 | kRemoved, |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 78 | kBadRemoval, |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 79 | }; |
| 80 | |
Greg Kaiser | 2bc201e | 2018-12-18 08:42:08 -0800 | [diff] [blame] | 81 | const std::string& getId() const { return mId; } |
| 82 | const std::string& getDiskId() const { return mDiskId; } |
| 83 | const std::string& getPartGuid() const { return mPartGuid; } |
| 84 | Type getType() const { return mType; } |
| 85 | int getMountFlags() const { return mMountFlags; } |
| 86 | userid_t getMountUserId() const { return mMountUserId; } |
| 87 | State getState() const { return mState; } |
| 88 | const std::string& getPath() const { return mPath; } |
| 89 | const std::string& getInternalPath() const { return mInternalPath; } |
Nandana Dutt | a914cc7 | 2019-08-29 15:22:42 +0100 | [diff] [blame] | 90 | const android::base::unique_fd& getFuseFd() const { return mFuseFd; } |
Zim | a438b24 | 2019-09-25 14:37:38 +0100 | [diff] [blame^] | 91 | const std::list<std::shared_ptr<VolumeBase>>& getVolumes() const { return mVolumes; } |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 92 | |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 93 | status_t setDiskId(const std::string& diskId); |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 94 | status_t setPartGuid(const std::string& partGuid); |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 95 | status_t setMountFlags(int mountFlags); |
| 96 | status_t setMountUserId(userid_t mountUserId); |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 97 | status_t setSilent(bool silent); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 98 | |
| 99 | void addVolume(const std::shared_ptr<VolumeBase>& volume); |
| 100 | void removeVolume(const std::shared_ptr<VolumeBase>& volume); |
| 101 | |
| 102 | std::shared_ptr<VolumeBase> findVolume(const std::string& id); |
| 103 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 104 | bool isEmulated() { return mType == Type::kEmulated; } |
| 105 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 106 | status_t create(); |
| 107 | status_t destroy(); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 108 | status_t mount(); |
| 109 | status_t unmount(); |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 110 | status_t format(const std::string& fsType); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 111 | |
Sudheer Shanka | 40ab674 | 2018-09-18 13:07:45 -0700 | [diff] [blame] | 112 | std::ostream& operator<<(std::ostream& stream) const; |
| 113 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 114 | protected: |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 115 | explicit VolumeBase(Type type); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 116 | |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 117 | virtual status_t doCreate(); |
| 118 | virtual status_t doDestroy(); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 119 | virtual status_t doMount() = 0; |
| 120 | virtual status_t doUnmount() = 0; |
Jeff Sharkey | d0640f6 | 2015-05-21 22:35:42 -0700 | [diff] [blame] | 121 | virtual status_t doFormat(const std::string& fsType); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 122 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 123 | status_t setId(const std::string& id); |
| 124 | status_t setPath(const std::string& path); |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 125 | status_t setInternalPath(const std::string& internalPath); |
Nandana Dutt | 23edfac | 2019-09-03 12:44:08 +0100 | [diff] [blame] | 126 | // Takes ownership of the fd passed in. |
Nandana Dutt | a914cc7 | 2019-08-29 15:22:42 +0100 | [diff] [blame] | 127 | status_t setFuseFd(android::base::unique_fd fuseFd); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 128 | |
Greg Kaiser | 2bc201e | 2018-12-18 08:42:08 -0800 | [diff] [blame] | 129 | android::sp<android::os::IVoldListener> getListener() const; |
Jeff Sharkey | 814e9d3 | 2017-09-13 11:49:44 -0600 | [diff] [blame] | 130 | |
Paul Crowley | edf7a4e | 2018-09-18 15:14:18 -0700 | [diff] [blame] | 131 | private: |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 132 | /* ID that uniquely references volume while alive */ |
| 133 | std::string mId; |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 134 | /* ID that uniquely references parent disk while alive */ |
| 135 | std::string mDiskId; |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 136 | /* Partition GUID of this volume */ |
| 137 | std::string mPartGuid; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 138 | /* Volume type */ |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 139 | Type mType; |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 140 | /* Flags used when mounting this volume */ |
| 141 | int mMountFlags; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 142 | /* User that owns this volume, otherwise -1 */ |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 143 | userid_t mMountUserId; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 144 | /* Flag indicating object is created */ |
| 145 | bool mCreated; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 146 | /* Current state of volume */ |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 147 | State mState; |
| 148 | /* Path to mounted volume */ |
| 149 | std::string mPath; |
Jeff Sharkey | 1d6fbcc | 2015-04-24 16:00:03 -0700 | [diff] [blame] | 150 | /* Path to internal backing storage */ |
| 151 | std::string mInternalPath; |
Jeff Sharkey | ce6a913 | 2015-04-08 21:07:21 -0700 | [diff] [blame] | 152 | /* Flag indicating that volume should emit no events */ |
| 153 | bool mSilent; |
Zim | 3623a21 | 2019-07-19 16:46:53 +0100 | [diff] [blame] | 154 | /* The filedescriptor for the fuse device, if the volume uses fuse, or -1 otherwise */ |
Nandana Dutt | a914cc7 | 2019-08-29 15:22:42 +0100 | [diff] [blame] | 155 | android::base::unique_fd mFuseFd; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 156 | |
| 157 | /* Volumes stacked on top of this volume */ |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 158 | std::list<std::shared_ptr<VolumeBase>> mVolumes; |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 159 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 160 | void setState(State state); |
Jeff Sharkey | deb2405 | 2015-03-02 21:01:40 -0800 | [diff] [blame] | 161 | |
| 162 | DISALLOW_COPY_AND_ASSIGN(VolumeBase); |
| 163 | }; |
| 164 | |
| 165 | } // namespace vold |
| 166 | } // namespace android |
| 167 | |
| 168 | #endif |