blob: e0b0ac8c69bc636c3212a17a0ff37c4ac2916d62 [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 Sharkey36801cc2015-03-13 16:09:20 -070029
30#include <cutils/multiuser.h>
San Mehatf1b736b2009-10-10 17:22:08 -070031#include <utils/List.h>
32#include <sysutils/SocketListener.h>
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070033#include <sysutils/NetlinkEvent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070034
Jeff Sharkey36801cc2015-03-13 16:09:20 -070035#include "Disk.h"
Jeff Sharkey36801cc2015-03-13 16:09:20 -070036#include "VolumeBase.h"
San Mehatf1b736b2009-10-10 17:22:08 -070037
Kenny Rootacc9e7d2010-06-18 19:06:50 -070038/* The length of an MD5 hash when encoded into ASCII hex characters */
39#define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1)
40
Kenny Rootcbacf782010-09-24 15:11:48 -070041typedef enum { ASEC, OBB } container_type_t;
42
43class ContainerData {
44public:
45 ContainerData(char* _id, container_type_t _type)
46 : id(_id)
47 , type(_type)
48 {}
49
50 ~ContainerData() {
51 if (id != NULL) {
52 free(id);
53 id = NULL;
54 }
55 }
56
57 char *id;
58 container_type_t type;
59};
60
61typedef android::List<ContainerData*> AsecIdCollection;
San Mehat88705162010-01-15 09:26:28 -080062
San Mehatf1b736b2009-10-10 17:22:08 -070063class VolumeManager {
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070064public:
65 static const char *SEC_ASECDIR_EXT;
66 static const char *SEC_ASECDIR_INT;
67 static const char *ASECDIR;
68 static const char *LOOPDIR;
69
San Mehatf1b736b2009-10-10 17:22:08 -070070private:
71 static VolumeManager *sInstance;
72
San Mehatf1b736b2009-10-10 17:22:08 -070073 SocketListener *mBroadcaster;
San Mehatf1b736b2009-10-10 17:22:08 -070074
San Mehat88705162010-01-15 09:26:28 -080075 AsecIdCollection *mActiveContainers;
San Mehatd9a4e352010-03-12 13:32:47 -080076 bool mDebug;
San Mehatf1b736b2009-10-10 17:22:08 -070077
Mike Lockwooda28056b2010-10-28 15:21:24 -040078 // for adjusting /proc/sys/vm/dirty_ratio when UMS is active
79 int mUmsSharingCount;
80 int mSavedDirtyRatio;
81 int mUmsDirtyRatio;
82
San Mehatf1b736b2009-10-10 17:22:08 -070083public:
84 virtual ~VolumeManager();
85
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070086 // TODO: pipe all requests through VM to avoid exposing this lock
87 std::mutex& getLock() { return mLock; }
88
San Mehatf1b736b2009-10-10 17:22:08 -070089 int start();
90 int stop();
91
San Mehatfd7f5872009-10-12 11:32:47 -070092 void handleBlockEvent(NetlinkEvent *evt);
San Mehatf1b736b2009-10-10 17:22:08 -070093
Jeff Sharkey36801cc2015-03-13 16:09:20 -070094 class DiskSource {
95 public:
96 DiskSource(const std::string& sysPattern, const std::string& nickname, int flags) :
97 mSysPattern(sysPattern), mNickname(nickname), mFlags(flags) {
98 }
99
100 bool matches(const std::string& sysPath) {
101 return !fnmatch(mSysPattern.c_str(), sysPath.c_str(), 0);
102 }
103
104 const std::string& getNickname() { return mNickname; }
105 int getFlags() { return mFlags; }
106
107 private:
108 std::string mSysPattern;
109 std::string mNickname;
110 int mFlags;
111 };
112
113 void addDiskSource(const std::shared_ptr<DiskSource>& diskSource);
114
115 std::shared_ptr<android::vold::Disk> findDisk(const std::string& id);
116 std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id);
117
118 int startUser(userid_t userId);
119 int cleanupUser(userid_t userId);
120
121 int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol);
122
123 /* Reset all internal state, typically during framework boot */
124 int reset();
125 /* Prepare for device shutdown, safely unmounting all devices */
126 int shutdown();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700127 /* Unmount all volumes, usually for encryption */
128 int unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700129
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700130 /* ASEC */
Kenny Root344ca102012-04-03 17:23:01 -0700131 int findAsec(const char *id, char *asecPath = NULL, size_t asecPathLen = 0,
132 const char **directory = NULL) const;
San Mehat8b8f71b2010-01-11 09:17:25 -0800133 int createAsec(const char *id, unsigned numSectors, const char *fstype,
Kenny Root344ca102012-04-03 17:23:01 -0700134 const char *key, const int ownerUid, bool isExternal);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700135 int resizeAsec(const char *id, unsigned numSectors, const char *key);
San Mehata19b2502010-01-06 10:33:53 -0800136 int finalizeAsec(const char *id);
Kenny Root344ca102012-04-03 17:23:01 -0700137
138 /**
139 * Fixes ASEC permissions on a filesystem that has owners and permissions.
140 * This currently means EXT4-based ASEC containers.
141 *
142 * There is a single file that can be marked as "private" and will not have
143 * world-readable permission. The group for that file will be set to the gid
144 * supplied.
145 *
146 * Returns 0 on success.
147 */
148 int fixupAsecPermissions(const char *id, gid_t gid, const char* privateFilename);
San Mehat4ba89482010-02-18 09:00:18 -0800149 int destroyAsec(const char *id, bool force);
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700150 int mountAsec(const char *id, const char *key, int ownerUid, bool readOnly);
San Mehat4ba89482010-02-18 09:00:18 -0800151 int unmountAsec(const char *id, bool force);
San Mehat048b0802010-01-23 08:17:06 -0800152 int renameAsec(const char *id1, const char *id2);
San Mehata19b2502010-01-06 10:33:53 -0800153 int getAsecMountPath(const char *id, char *buffer, int maxlen);
Dianne Hackborn736910c2011-06-27 13:37:07 -0700154 int getAsecFilesystemPath(const char *id, char *buffer, int maxlen);
San Mehatf1b736b2009-10-10 17:22:08 -0700155
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700156 /* Loopback images */
Kenny Root508c0e12010-07-12 09:59:49 -0700157 int listMountedObbs(SocketClient* cli);
158 int mountObb(const char *fileName, const char *key, int ownerUid);
159 int unmountObb(const char *fileName, bool force);
160 int getObbMountPath(const char *id, char *buffer, int maxlen);
Kenny Rootfb7c4d52010-06-30 18:48:41 -0700161
162 /* Shared between ASEC and Loopback images */
163 int unmountLoopImage(const char *containerId, const char *loopId,
164 const char *fileName, const char *mountPoint, bool force);
165
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700166 int setDebug(bool enable);
San Mehatd9a4e352010-03-12 13:32:47 -0800167
San Mehatf1b736b2009-10-10 17:22:08 -0700168 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
169 SocketListener *getBroadcaster() { return mBroadcaster; }
170
171 static VolumeManager *Instance();
172
San Mehatd9a4e352010-03-12 13:32:47 -0800173 static char *asecHash(const char *id, char *buffer, size_t len);
San Mehat1a06eda2010-04-15 12:58:50 -0700174
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700175 /*
176 * Ensure that all directories along given path exist, creating parent
177 * directories as needed. Validates that given path is absolute and that
178 * it contains no relative "." or ".." paths or symlinks. Last path segment
179 * is treated as filename and ignored, unless the path ends with "/". Also
180 * ensures that path belongs to a volume managed by vold.
181 */
182 int mkdirs(char* path);
183
San Mehatf1b736b2009-10-10 17:22:08 -0700184private:
185 VolumeManager();
Mike Lockwood99635f62010-06-25 23:04:04 -0400186 void readInitialState();
San Mehata19b2502010-01-06 10:33:53 -0800187 bool isMountpointMounted(const char *mp);
Kenny Root344ca102012-04-03 17:23:01 -0700188 bool isAsecInDirectory(const char *dir, const char *asec) const;
Nick Kralevich66962602014-01-27 14:58:06 -0800189 bool isLegalAsecId(const char *id) const;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700190
191 int linkPrimary(userid_t userId);
192
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700193 std::mutex mLock;
194
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700195 std::list<std::shared_ptr<DiskSource>> mDiskSources;
196 std::list<std::shared_ptr<android::vold::Disk>> mDisks;
197
198 std::list<userid_t> mUsers;
199
200 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
201 std::shared_ptr<android::vold::VolumeBase> mPrimary;
San Mehatf1b736b2009-10-10 17:22:08 -0700202};
Ken Sumrall29d8da82011-05-18 17:20:07 -0700203
204extern "C" {
205#endif /* __cplusplus */
Ken Sumrall319b1042011-06-14 14:01:55 -0700206#define UNMOUNT_NOT_MOUNTED_ERR -2
Jeff Sharkey9c484982015-03-31 10:35:33 -0700207 int vold_unmountAll(void);
Ken Sumrall29d8da82011-05-18 17:20:07 -0700208#ifdef __cplusplus
209}
210#endif
211
San Mehatf1b736b2009-10-10 17:22:08 -0700212#endif