blob: fa9eee45238aaa224e26c12decd811c01be2a45f [file] [log] [blame]
Jeff Sharkeydeb24052015-03-02 21:01:40 -08001/*
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 Crowleyedf7a4e2018-09-18 15:14:18 -070021#include "android/os/IVoldListener.h"
Jeff Sharkeydeb24052015-03-02 21:01:40 -080022
Jeff Sharkey36801cc2015-03-13 16:09:20 -070023#include <cutils/multiuser.h>
Jeff Sharkeydeb24052015-03-02 21:01:40 -080024#include <utils/Errors.h>
25
26#include <sys/types.h>
27#include <list>
28#include <string>
29
Sudheer Shanka40ab6742018-09-18 13:07:45 -070030static constexpr userid_t USER_UNKNOWN = ((userid_t)-1);
31
Jeff Sharkeydeb24052015-03-02 21:01:40 -080032namespace android {
33namespace vold {
34
Jeff Sharkeydeb24052015-03-02 21:01:40 -080035/*
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 */
49class VolumeBase {
Paul Crowleyedf7a4e2018-09-18 15:14:18 -070050 public:
Jeff Sharkeydeb24052015-03-02 21:01:40 -080051 virtual ~VolumeBase();
52
Jeff Sharkey36801cc2015-03-13 16:09:20 -070053 enum class Type {
54 kPublic = 0,
55 kPrivate,
56 kEmulated,
57 kAsec,
58 kObb,
Risan8c9f3322018-10-29 08:52:56 +090059 kStub,
Jeff Sharkey36801cc2015-03-13 16:09:20 -070060 };
Jeff Sharkeydeb24052015-03-02 21:01:40 -080061
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070062 enum MountFlags {
Jeff Sharkey36801cc2015-03-13 16:09:20 -070063 /* 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 Sharkeyf1b996d2015-04-17 17:35:20 -070071 kChecking,
Jeff Sharkey36801cc2015-03-13 16:09:20 -070072 kMounted,
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070073 kMountedReadOnly,
Jeff Sharkey36801cc2015-03-13 16:09:20 -070074 kFormatting,
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070075 kEjecting,
Jeff Sharkey0fd95352015-04-04 21:38:59 -070076 kUnmountable,
Jeff Sharkey3161fb32015-04-12 16:03:33 -070077 kRemoved,
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070078 kBadRemoval,
Jeff Sharkey36801cc2015-03-13 16:09:20 -070079 };
80
Greg Kaiser2bc201e2018-12-18 08:42:08 -080081 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; }
Zim3623a212019-07-19 16:46:53 +010090 int getDeviceFd() const { return dup(mDeviceFd.get()); }
Jeff Sharkey36801cc2015-03-13 16:09:20 -070091
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070092 status_t setDiskId(const std::string& diskId);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070093 status_t setPartGuid(const std::string& partGuid);
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -070094 status_t setMountFlags(int mountFlags);
95 status_t setMountUserId(userid_t mountUserId);
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070096 status_t setSilent(bool silent);
Jeff Sharkey36801cc2015-03-13 16:09:20 -070097
98 void addVolume(const std::shared_ptr<VolumeBase>& volume);
99 void removeVolume(const std::shared_ptr<VolumeBase>& volume);
100
101 std::shared_ptr<VolumeBase> findVolume(const std::string& id);
102
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700103 bool isEmulated() { return mType == Type::kEmulated; }
104
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700105 status_t create();
106 status_t destroy();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800107 status_t mount();
108 status_t unmount();
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700109 status_t format(const std::string& fsType);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800110
Sudheer Shanka40ab6742018-09-18 13:07:45 -0700111 std::ostream& operator<<(std::ostream& stream) const;
112
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700113 protected:
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700114 explicit VolumeBase(Type type);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800115
Jeff Sharkey9c484982015-03-31 10:35:33 -0700116 virtual status_t doCreate();
117 virtual status_t doDestroy();
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800118 virtual status_t doMount() = 0;
119 virtual status_t doUnmount() = 0;
Jeff Sharkeyd0640f62015-05-21 22:35:42 -0700120 virtual status_t doFormat(const std::string& fsType);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800121
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700122 status_t setId(const std::string& id);
123 status_t setPath(const std::string& path);
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700124 status_t setInternalPath(const std::string& internalPath);
Zim3623a212019-07-19 16:46:53 +0100125 status_t setDeviceFd(int deviceFd);
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700126
Greg Kaiser2bc201e2018-12-18 08:42:08 -0800127 android::sp<android::os::IVoldListener> getListener() const;
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600128
Paul Crowleyedf7a4e2018-09-18 15:14:18 -0700129 private:
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700130 /* ID that uniquely references volume while alive */
131 std::string mId;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700132 /* ID that uniquely references parent disk while alive */
133 std::string mDiskId;
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700134 /* Partition GUID of this volume */
135 std::string mPartGuid;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800136 /* Volume type */
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700137 Type mType;
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700138 /* Flags used when mounting this volume */
139 int mMountFlags;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700140 /* User that owns this volume, otherwise -1 */
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700141 userid_t mMountUserId;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700142 /* Flag indicating object is created */
143 bool mCreated;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800144 /* Current state of volume */
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700145 State mState;
146 /* Path to mounted volume */
147 std::string mPath;
Jeff Sharkey1d6fbcc2015-04-24 16:00:03 -0700148 /* Path to internal backing storage */
149 std::string mInternalPath;
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700150 /* Flag indicating that volume should emit no events */
151 bool mSilent;
Zim3623a212019-07-19 16:46:53 +0100152 /* The filedescriptor for the fuse device, if the volume uses fuse, or -1 otherwise */
153 android::base::unique_fd mDeviceFd;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800154
155 /* Volumes stacked on top of this volume */
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700156 std::list<std::shared_ptr<VolumeBase>> mVolumes;
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800157
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700158 void setState(State state);
Jeff Sharkeydeb24052015-03-02 21:01:40 -0800159
160 DISALLOW_COPY_AND_ASSIGN(VolumeBase);
161};
162
163} // namespace vold
164} // namespace android
165
166#endif