blob: 7dc69f3d6a41f06b0fe34e76f92744b87c9149f4 [file] [log] [blame]
San Mehatf1b736b2009-10-10 17:22:08 -07001/*
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 Sharkey36801cc2015-03-13 16:09:20 -070017#ifndef ANDROID_VOLD_VOLUME_MANAGER_H
18#define ANDROID_VOLD_VOLUME_MANAGER_H
San Mehatf1b736b2009-10-10 17:22:08 -070019
20#include <pthread.h>
Jeff Sharkey36801cc2015-03-13 16:09:20 -070021#include <fnmatch.h>
22#include <stdlib.h>
San Mehatf1b736b2009-10-10 17:22:08 -070023
Ken Sumrall29d8da82011-05-18 17:20:07 -070024#ifdef __cplusplus
Jeff Sharkey36801cc2015-03-13 16:09:20 -070025
Jeff Sharkey36801cc2015-03-13 16:09:20 -070026#include <list>
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070027#include <mutex>
28#include <string>
Jeff Sharkeybd3038d2015-06-10 09:42:01 -070029#include <unordered_map>
30#include <unordered_set>
Jeff Sharkey36801cc2015-03-13 16:09:20 -070031
Jeff Sharkey11c2d382017-09-11 10:32:01 -060032#include <android-base/unique_fd.h>
Jeff Sharkey36801cc2015-03-13 16:09:20 -070033#include <cutils/multiuser.h>
San Mehatf1b736b2009-10-10 17:22:08 -070034#include <utils/List.h>
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070035#include <utils/Timers.h>
San Mehatf1b736b2009-10-10 17:22:08 -070036#include <sysutils/SocketListener.h>
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070037#include <sysutils/NetlinkEvent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070038
Jeff Sharkey11c2d382017-09-11 10:32:01 -060039#include "model/Disk.h"
40#include "model/VolumeBase.h"
San Mehatf1b736b2009-10-10 17:22:08 -070041
Kenny Rootacc9e7d2010-06-18 19:06:50 -070042/* 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 Sharkey11c2d382017-09-11 10:32:01 -060045#define DEBUG_APPFUSE 0
46
Kenny Rootcbacf782010-09-24 15:11:48 -070047typedef enum { ASEC, OBB } container_type_t;
48
49class ContainerData {
50public:
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
67typedef android::List<ContainerData*> AsecIdCollection;
San Mehat88705162010-01-15 09:26:28 -080068
San Mehatf1b736b2009-10-10 17:22:08 -070069class VolumeManager {
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070070public:
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 Park375ac252017-08-02 17:45:48 -070076 //TODO remove this with better solution, b/64143519
77 static bool shutting_down;
78
San Mehatf1b736b2009-10-10 17:22:08 -070079private:
80 static VolumeManager *sInstance;
81
San Mehatf1b736b2009-10-10 17:22:08 -070082 SocketListener *mBroadcaster;
San Mehatf1b736b2009-10-10 17:22:08 -070083
San Mehat88705162010-01-15 09:26:28 -080084 AsecIdCollection *mActiveContainers;
San Mehatd9a4e352010-03-12 13:32:47 -080085 bool mDebug;
San Mehatf1b736b2009-10-10 17:22:08 -070086
Mike Lockwooda28056b2010-10-28 15:21:24 -040087 // for adjusting /proc/sys/vm/dirty_ratio when UMS is active
88 int mUmsSharingCount;
89 int mSavedDirtyRatio;
90 int mUmsDirtyRatio;
91
San Mehatf1b736b2009-10-10 17:22:08 -070092public:
93 virtual ~VolumeManager();
94
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070095 // TODO: pipe all requests through VM to avoid exposing this lock
96 std::mutex& getLock() { return mLock; }
Jeff Sharkey83b559c2017-09-12 16:30:52 -060097 std::mutex& getCryptLock() { return mCryptLock; }
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070098
San Mehatf1b736b2009-10-10 17:22:08 -070099 int start();
100 int stop();
101
San Mehatfd7f5872009-10-12 11:32:47 -0700102 void handleBlockEvent(NetlinkEvent *evt);
San Mehatf1b736b2009-10-10 17:22:08 -0700103
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700104 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 Sharkeyc86ab6f2015-06-26 14:02:09 -0700128 void listVolumes(android::vold::VolumeBase::Type type, std::list<std::string>& list);
129
130 nsecs_t benchmarkPrivate(const std::string& id);
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -0700131
Jeff Sharkeybc40cc82015-06-18 14:25:08 -0700132 int forgetPartition(const std::string& partGuid);
133
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700134 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 Sharkey36801cc2015-03-13 16:09:20 -0700138
139 int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol);
140
Jeff Sharkey66270a22015-06-24 11:49:24 -0700141 int remountUid(uid_t uid, const std::string& mode);
142
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700143 /* Reset all internal state, typically during framework boot */
144 int reset();
145 /* Prepare for device shutdown, safely unmounting all devices */
146 int shutdown();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700147 /* Unmount all volumes, usually for encryption */
148 int unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700149
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700150 /* ASEC */
Kenny Root344ca102012-04-03 17:23:01 -0700151 int findAsec(const char *id, char *asecPath = NULL, size_t asecPathLen = 0,
152 const char **directory = NULL) const;
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200153 int createAsec(const char *id, unsigned long numSectors, const char *fstype,
Kenny Root344ca102012-04-03 17:23:01 -0700154 const char *key, const int ownerUid, bool isExternal);
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200155 int resizeAsec(const char *id, unsigned long numSectors, const char *key);
San Mehata19b2502010-01-06 10:33:53 -0800156 int finalizeAsec(const char *id);
Kenny Root344ca102012-04-03 17:23:01 -0700157
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 Mehat4ba89482010-02-18 09:00:18 -0800169 int destroyAsec(const char *id, bool force);
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700170 int mountAsec(const char *id, const char *key, int ownerUid, bool readOnly);
San Mehat4ba89482010-02-18 09:00:18 -0800171 int unmountAsec(const char *id, bool force);
San Mehat048b0802010-01-23 08:17:06 -0800172 int renameAsec(const char *id1, const char *id2);
San Mehata19b2502010-01-06 10:33:53 -0800173 int getAsecMountPath(const char *id, char *buffer, int maxlen);
Dianne Hackborn736910c2011-06-27 13:37:07 -0700174 int getAsecFilesystemPath(const char *id, char *buffer, int maxlen);
San Mehatf1b736b2009-10-10 17:22:08 -0700175
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700176 /* Loopback images */
Kenny Root508c0e12010-07-12 09:59:49 -0700177 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 Rootfb7c4d52010-06-30 18:48:41 -0700181
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 Sharkeyfa1c6772017-03-25 22:49:13 -0600186 int updateVirtualDisk();
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700187 int setDebug(bool enable);
San Mehatd9a4e352010-03-12 13:32:47 -0800188
San Mehatf1b736b2009-10-10 17:22:08 -0700189 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
190 SocketListener *getBroadcaster() { return mBroadcaster; }
191
192 static VolumeManager *Instance();
193
San Mehatd9a4e352010-03-12 13:32:47 -0800194 static char *asecHash(const char *id, char *buffer, size_t len);
San Mehat1a06eda2010-04-15 12:58:50 -0700195
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700196 /*
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 Sharkey9462bdd2017-09-07 15:27:28 -0600203 int mkdirs(const char* path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700204
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600205 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 Mehatf1b736b2009-10-10 17:22:08 -0700212private:
213 VolumeManager();
Mike Lockwood99635f62010-06-25 23:04:04 -0400214 void readInitialState();
San Mehata19b2502010-01-06 10:33:53 -0800215 bool isMountpointMounted(const char *mp);
Kenny Root344ca102012-04-03 17:23:01 -0700216 bool isAsecInDirectory(const char *dir, const char *asec) const;
Nick Kralevich66962602014-01-27 14:58:06 -0800217 bool isLegalAsecId(const char *id) const;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700218
219 int linkPrimary(userid_t userId);
220
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700221 std::mutex mLock;
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600222 std::mutex mCryptLock;
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700223
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700224 std::list<std::shared_ptr<DiskSource>> mDiskSources;
225 std::list<std::shared_ptr<android::vold::Disk>> mDisks;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600226 std::list<std::shared_ptr<android::vold::VolumeBase>> mObbVolumes;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700227
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700228 std::unordered_map<userid_t, int> mAddedUsers;
229 std::unordered_set<userid_t> mStartedUsers;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700230
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600231 std::string mVirtualDiskPath;
232 std::shared_ptr<android::vold::Disk> mVirtualDisk;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700233 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
234 std::shared_ptr<android::vold::VolumeBase> mPrimary;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600235
236 int mNextObbId;
San Mehatf1b736b2009-10-10 17:22:08 -0700237};
Ken Sumrall29d8da82011-05-18 17:20:07 -0700238
239extern "C" {
240#endif /* __cplusplus */
Chih-Hung Hsiehaae79382016-06-10 14:13:59 -0700241#define UNMOUNT_NOT_MOUNTED_ERR (-2)
Jeff Sharkey9c484982015-03-31 10:35:33 -0700242 int vold_unmountAll(void);
Ken Sumrall29d8da82011-05-18 17:20:07 -0700243#ifdef __cplusplus
244}
245#endif
246
San Mehatf1b736b2009-10-10 17:22:08 -0700247#endif