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