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