San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [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 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 17 | #ifndef ANDROID_VOLD_VOLUME_MANAGER_H |
| 18 | #define ANDROID_VOLD_VOLUME_MANAGER_H |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 19 | |
| 20 | #include <pthread.h> |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 21 | #include <fnmatch.h> |
| 22 | #include <stdlib.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 23 | |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 24 | #ifdef __cplusplus |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 25 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 26 | #include <list> |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 27 | #include <mutex> |
| 28 | #include <string> |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 29 | #include <unordered_map> |
| 30 | #include <unordered_set> |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 31 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 32 | #include <android-base/unique_fd.h> |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 33 | #include <cutils/multiuser.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 34 | #include <utils/List.h> |
Jeff Sharkey | 5a6bfca | 2015-05-14 20:33:55 -0700 | [diff] [blame] | 35 | #include <utils/Timers.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 36 | #include <sysutils/SocketListener.h> |
Jeff Sharkey | 9f18fe7 | 2015-04-01 23:32:18 -0700 | [diff] [blame] | 37 | #include <sysutils/NetlinkEvent.h> |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 38 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 39 | #include "model/Disk.h" |
| 40 | #include "model/VolumeBase.h" |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 41 | |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 42 | /* The length of an MD5 hash when encoded into ASCII hex characters */ |
| 43 | #define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1) |
| 44 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 45 | #define DEBUG_APPFUSE 0 |
| 46 | |
Kenny Root | cbacf78 | 2010-09-24 15:11:48 -0700 | [diff] [blame] | 47 | typedef enum { ASEC, OBB } container_type_t; |
| 48 | |
| 49 | class ContainerData { |
| 50 | public: |
| 51 | ContainerData(char* _id, container_type_t _type) |
| 52 | : id(_id) |
| 53 | , type(_type) |
| 54 | {} |
| 55 | |
| 56 | ~ContainerData() { |
| 57 | if (id != NULL) { |
| 58 | free(id); |
| 59 | id = NULL; |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | char *id; |
| 64 | container_type_t type; |
| 65 | }; |
| 66 | |
| 67 | typedef android::List<ContainerData*> AsecIdCollection; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 68 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 69 | class VolumeManager { |
Jeff Sharkey | 9f18fe7 | 2015-04-01 23:32:18 -0700 | [diff] [blame] | 70 | public: |
| 71 | static const char *SEC_ASECDIR_EXT; |
| 72 | static const char *SEC_ASECDIR_INT; |
| 73 | static const char *ASECDIR; |
| 74 | static const char *LOOPDIR; |
| 75 | |
Keun-young Park | 375ac25 | 2017-08-02 17:45:48 -0700 | [diff] [blame] | 76 | //TODO remove this with better solution, b/64143519 |
| 77 | static bool shutting_down; |
| 78 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 79 | private: |
| 80 | static VolumeManager *sInstance; |
| 81 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 82 | SocketListener *mBroadcaster; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 83 | |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 84 | AsecIdCollection *mActiveContainers; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 85 | bool mDebug; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 86 | |
Mike Lockwood | a28056b | 2010-10-28 15:21:24 -0400 | [diff] [blame] | 87 | // for adjusting /proc/sys/vm/dirty_ratio when UMS is active |
| 88 | int mUmsSharingCount; |
| 89 | int mSavedDirtyRatio; |
| 90 | int mUmsDirtyRatio; |
| 91 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 92 | public: |
| 93 | virtual ~VolumeManager(); |
| 94 | |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 95 | // TODO: pipe all requests through VM to avoid exposing this lock |
| 96 | std::mutex& getLock() { return mLock; } |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame^] | 97 | std::mutex& getCryptLock() { return mCryptLock; } |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 98 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 99 | int start(); |
| 100 | int stop(); |
| 101 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 102 | void handleBlockEvent(NetlinkEvent *evt); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 103 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 104 | class DiskSource { |
| 105 | public: |
| 106 | DiskSource(const std::string& sysPattern, const std::string& nickname, int flags) : |
| 107 | mSysPattern(sysPattern), mNickname(nickname), mFlags(flags) { |
| 108 | } |
| 109 | |
| 110 | bool matches(const std::string& sysPath) { |
| 111 | return !fnmatch(mSysPattern.c_str(), sysPath.c_str(), 0); |
| 112 | } |
| 113 | |
| 114 | const std::string& getNickname() { return mNickname; } |
| 115 | int getFlags() { return mFlags; } |
| 116 | |
| 117 | private: |
| 118 | std::string mSysPattern; |
| 119 | std::string mNickname; |
| 120 | int mFlags; |
| 121 | }; |
| 122 | |
| 123 | void addDiskSource(const std::shared_ptr<DiskSource>& diskSource); |
| 124 | |
| 125 | std::shared_ptr<android::vold::Disk> findDisk(const std::string& id); |
| 126 | std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id); |
| 127 | |
Jeff Sharkey | c86ab6f | 2015-06-26 14:02:09 -0700 | [diff] [blame] | 128 | void listVolumes(android::vold::VolumeBase::Type type, std::list<std::string>& list); |
| 129 | |
| 130 | nsecs_t benchmarkPrivate(const std::string& id); |
Jeff Sharkey | 5a6bfca | 2015-05-14 20:33:55 -0700 | [diff] [blame] | 131 | |
Jeff Sharkey | bc40cc8 | 2015-06-18 14:25:08 -0700 | [diff] [blame] | 132 | int forgetPartition(const std::string& partGuid); |
| 133 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 134 | int onUserAdded(userid_t userId, int userSerialNumber); |
| 135 | int onUserRemoved(userid_t userId); |
| 136 | int onUserStarted(userid_t userId); |
| 137 | int onUserStopped(userid_t userId); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 138 | |
| 139 | int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol); |
| 140 | |
Jeff Sharkey | 66270a2 | 2015-06-24 11:49:24 -0700 | [diff] [blame] | 141 | int remountUid(uid_t uid, const std::string& mode); |
| 142 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 143 | /* Reset all internal state, typically during framework boot */ |
| 144 | int reset(); |
| 145 | /* Prepare for device shutdown, safely unmounting all devices */ |
| 146 | int shutdown(); |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 147 | /* Unmount all volumes, usually for encryption */ |
| 148 | int unmountAll(); |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 149 | |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 150 | /* ASEC */ |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 151 | int findAsec(const char *id, char *asecPath = NULL, size_t asecPathLen = 0, |
| 152 | const char **directory = NULL) const; |
Mateusz Nowak | a4f48d0 | 2015-08-03 18:06:39 +0200 | [diff] [blame] | 153 | int createAsec(const char *id, unsigned long numSectors, const char *fstype, |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 154 | const char *key, const int ownerUid, bool isExternal); |
Mateusz Nowak | a4f48d0 | 2015-08-03 18:06:39 +0200 | [diff] [blame] | 155 | int resizeAsec(const char *id, unsigned long numSectors, const char *key); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 156 | int finalizeAsec(const char *id); |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 157 | |
| 158 | /** |
| 159 | * Fixes ASEC permissions on a filesystem that has owners and permissions. |
| 160 | * This currently means EXT4-based ASEC containers. |
| 161 | * |
| 162 | * There is a single file that can be marked as "private" and will not have |
| 163 | * world-readable permission. The group for that file will be set to the gid |
| 164 | * supplied. |
| 165 | * |
| 166 | * Returns 0 on success. |
| 167 | */ |
| 168 | int fixupAsecPermissions(const char *id, gid_t gid, const char* privateFilename); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 169 | int destroyAsec(const char *id, bool force); |
Jeff Sharkey | 43ed123 | 2014-08-22 12:29:05 -0700 | [diff] [blame] | 170 | int mountAsec(const char *id, const char *key, int ownerUid, bool readOnly); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 171 | int unmountAsec(const char *id, bool force); |
San Mehat | 048b080 | 2010-01-23 08:17:06 -0800 | [diff] [blame] | 172 | int renameAsec(const char *id1, const char *id2); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 173 | int getAsecMountPath(const char *id, char *buffer, int maxlen); |
Dianne Hackborn | 736910c | 2011-06-27 13:37:07 -0700 | [diff] [blame] | 174 | int getAsecFilesystemPath(const char *id, char *buffer, int maxlen); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 175 | |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 176 | /* Loopback images */ |
Kenny Root | 508c0e1 | 2010-07-12 09:59:49 -0700 | [diff] [blame] | 177 | int listMountedObbs(SocketClient* cli); |
| 178 | int mountObb(const char *fileName, const char *key, int ownerUid); |
| 179 | int unmountObb(const char *fileName, bool force); |
| 180 | int getObbMountPath(const char *id, char *buffer, int maxlen); |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 181 | |
| 182 | /* Shared between ASEC and Loopback images */ |
| 183 | int unmountLoopImage(const char *containerId, const char *loopId, |
| 184 | const char *fileName, const char *mountPoint, bool force); |
| 185 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 186 | int updateVirtualDisk(); |
Jeff Sharkey | f1b996d | 2015-04-17 17:35:20 -0700 | [diff] [blame] | 187 | int setDebug(bool enable); |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 188 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 189 | void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; } |
| 190 | SocketListener *getBroadcaster() { return mBroadcaster; } |
| 191 | |
| 192 | static VolumeManager *Instance(); |
| 193 | |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 194 | static char *asecHash(const char *id, char *buffer, size_t len); |
San Mehat | 1a06eda | 2010-04-15 12:58:50 -0700 | [diff] [blame] | 195 | |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 196 | /* |
| 197 | * Ensure that all directories along given path exist, creating parent |
| 198 | * directories as needed. Validates that given path is absolute and that |
| 199 | * it contains no relative "." or ".." paths or symlinks. Last path segment |
| 200 | * is treated as filename and ignored, unless the path ends with "/". Also |
| 201 | * ensures that path belongs to a volume managed by vold. |
| 202 | */ |
Jeff Sharkey | 9462bdd | 2017-09-07 15:27:28 -0600 | [diff] [blame] | 203 | int mkdirs(const char* path); |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 204 | |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 205 | int createObb(const std::string& path, const std::string& key, int32_t ownerGid, |
| 206 | std::string* outVolId); |
| 207 | int destroyObb(const std::string& volId); |
| 208 | |
| 209 | int mountAppFuse(uid_t uid, pid_t pid, int mountId, android::base::unique_fd* device_fd); |
| 210 | int unmountAppFuse(uid_t uid, pid_t pid, int mountId); |
| 211 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 212 | private: |
| 213 | VolumeManager(); |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 214 | void readInitialState(); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 215 | bool isMountpointMounted(const char *mp); |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 216 | bool isAsecInDirectory(const char *dir, const char *asec) const; |
Nick Kralevich | 6696260 | 2014-01-27 14:58:06 -0800 | [diff] [blame] | 217 | bool isLegalAsecId(const char *id) const; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 218 | |
| 219 | int linkPrimary(userid_t userId); |
| 220 | |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 221 | std::mutex mLock; |
Jeff Sharkey | 83b559c | 2017-09-12 16:30:52 -0600 | [diff] [blame^] | 222 | std::mutex mCryptLock; |
Jeff Sharkey | c8e04c5 | 2015-04-21 12:14:17 -0700 | [diff] [blame] | 223 | |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 224 | std::list<std::shared_ptr<DiskSource>> mDiskSources; |
| 225 | std::list<std::shared_ptr<android::vold::Disk>> mDisks; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 226 | std::list<std::shared_ptr<android::vold::VolumeBase>> mObbVolumes; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 227 | |
Jeff Sharkey | bd3038d | 2015-06-10 09:42:01 -0700 | [diff] [blame] | 228 | std::unordered_map<userid_t, int> mAddedUsers; |
| 229 | std::unordered_set<userid_t> mStartedUsers; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 230 | |
Jeff Sharkey | fa1c677 | 2017-03-25 22:49:13 -0600 | [diff] [blame] | 231 | std::string mVirtualDiskPath; |
| 232 | std::shared_ptr<android::vold::Disk> mVirtualDisk; |
Jeff Sharkey | 36801cc | 2015-03-13 16:09:20 -0700 | [diff] [blame] | 233 | std::shared_ptr<android::vold::VolumeBase> mInternalEmulated; |
| 234 | std::shared_ptr<android::vold::VolumeBase> mPrimary; |
Jeff Sharkey | 11c2d38 | 2017-09-11 10:32:01 -0600 | [diff] [blame] | 235 | |
| 236 | int mNextObbId; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 237 | }; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 238 | |
| 239 | extern "C" { |
| 240 | #endif /* __cplusplus */ |
Chih-Hung Hsieh | aae7938 | 2016-06-10 14:13:59 -0700 | [diff] [blame] | 241 | #define UNMOUNT_NOT_MOUNTED_ERR (-2) |
Jeff Sharkey | 9c48498 | 2015-03-31 10:35:33 -0700 | [diff] [blame] | 242 | int vold_unmountAll(void); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 243 | #ifdef __cplusplus |
| 244 | } |
| 245 | #endif |
| 246 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 247 | #endif |