blob: fb455d85db7c10db05bf143fa9536b63bcf5fe72 [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
Jeff Sharkey36801cc2015-03-13 16:09:20 -070024#include <list>
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070025#include <mutex>
26#include <string>
Jeff Sharkeybd3038d2015-06-10 09:42:01 -070027#include <unordered_map>
28#include <unordered_set>
Jeff Sharkey36801cc2015-03-13 16:09:20 -070029
Jeff Sharkey11c2d382017-09-11 10:32:01 -060030#include <android-base/unique_fd.h>
Jeff Sharkey36801cc2015-03-13 16:09:20 -070031#include <cutils/multiuser.h>
San Mehatf1b736b2009-10-10 17:22:08 -070032#include <utils/List.h>
Jeff Sharkey5a6bfca2015-05-14 20:33:55 -070033#include <utils/Timers.h>
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070034#include <sysutils/NetlinkEvent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070035
Jeff Sharkey814e9d32017-09-13 11:49:44 -060036#include "android/os/IVoldListener.h"
37
Jeff Sharkey11c2d382017-09-11 10:32:01 -060038#include "model/Disk.h"
39#include "model/VolumeBase.h"
San Mehatf1b736b2009-10-10 17:22:08 -070040
Jeff Sharkey11c2d382017-09-11 10:32:01 -060041#define DEBUG_APPFUSE 0
42
San Mehatf1b736b2009-10-10 17:22:08 -070043class VolumeManager {
44private:
45 static VolumeManager *sInstance;
46
San Mehatd9a4e352010-03-12 13:32:47 -080047 bool mDebug;
San Mehatf1b736b2009-10-10 17:22:08 -070048
49public:
50 virtual ~VolumeManager();
51
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070052 // TODO: pipe all requests through VM to avoid exposing this lock
53 std::mutex& getLock() { return mLock; }
Jeff Sharkey83b559c2017-09-12 16:30:52 -060054 std::mutex& getCryptLock() { return mCryptLock; }
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070055
Jeff Sharkey814e9d32017-09-13 11:49:44 -060056 void setListener(android::sp<android::os::IVoldListener> listener) { mListener = listener; }
57 android::sp<android::os::IVoldListener> getListener() { return mListener; }
58
San Mehatf1b736b2009-10-10 17:22:08 -070059 int start();
60 int stop();
61
San Mehatfd7f5872009-10-12 11:32:47 -070062 void handleBlockEvent(NetlinkEvent *evt);
San Mehatf1b736b2009-10-10 17:22:08 -070063
Jeff Sharkey36801cc2015-03-13 16:09:20 -070064 class DiskSource {
65 public:
66 DiskSource(const std::string& sysPattern, const std::string& nickname, int flags) :
67 mSysPattern(sysPattern), mNickname(nickname), mFlags(flags) {
68 }
69
70 bool matches(const std::string& sysPath) {
71 return !fnmatch(mSysPattern.c_str(), sysPath.c_str(), 0);
72 }
73
74 const std::string& getNickname() { return mNickname; }
75 int getFlags() { return mFlags; }
76
77 private:
78 std::string mSysPattern;
79 std::string mNickname;
80 int mFlags;
81 };
82
83 void addDiskSource(const std::shared_ptr<DiskSource>& diskSource);
84
85 std::shared_ptr<android::vold::Disk> findDisk(const std::string& id);
86 std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id);
87
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070088 void listVolumes(android::vold::VolumeBase::Type type, std::list<std::string>& list);
89
Jeff Sharkey3ce18252017-10-24 11:08:45 -060090 int forgetPartition(const std::string& partGuid, const std::string& fsUuid);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070091
Jeff Sharkeybd3038d2015-06-10 09:42:01 -070092 int onUserAdded(userid_t userId, int userSerialNumber);
93 int onUserRemoved(userid_t userId);
94 int onUserStarted(userid_t userId);
95 int onUserStopped(userid_t userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -070096
Jeff Sharkey401b2602017-12-14 22:15:20 -070097 int onSecureKeyguardStateChanged(bool isShowing);
98
Jeff Sharkey36801cc2015-03-13 16:09:20 -070099 int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol);
100
Jeff Sharkey66270a22015-06-24 11:49:24 -0700101 int remountUid(uid_t uid, const std::string& mode);
102
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700103 /* Reset all internal state, typically during framework boot */
104 int reset();
105 /* Prepare for device shutdown, safely unmounting all devices */
106 int shutdown();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700107 /* Unmount all volumes, usually for encryption */
108 int unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700109
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600110 int updateVirtualDisk();
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700111 int setDebug(bool enable);
San Mehatd9a4e352010-03-12 13:32:47 -0800112
San Mehatf1b736b2009-10-10 17:22:08 -0700113 static VolumeManager *Instance();
114
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700115 /*
116 * Ensure that all directories along given path exist, creating parent
117 * directories as needed. Validates that given path is absolute and that
118 * it contains no relative "." or ".." paths or symlinks. Last path segment
119 * is treated as filename and ignored, unless the path ends with "/". Also
120 * ensures that path belongs to a volume managed by vold.
121 */
Jeff Sharkey3472e522017-10-06 18:02:53 -0600122 int mkdirs(const std::string& path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700123
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600124 int createObb(const std::string& path, const std::string& key, int32_t ownerGid,
125 std::string* outVolId);
126 int destroyObb(const std::string& volId);
127
128 int mountAppFuse(uid_t uid, pid_t pid, int mountId, android::base::unique_fd* device_fd);
129 int unmountAppFuse(uid_t uid, pid_t pid, int mountId);
130
San Mehatf1b736b2009-10-10 17:22:08 -0700131private:
132 VolumeManager();
Mike Lockwood99635f62010-06-25 23:04:04 -0400133 void readInitialState();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700134
135 int linkPrimary(userid_t userId);
136
Jeff Sharkey401b2602017-12-14 22:15:20 -0700137 void handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk);
138 void handleDiskChanged(dev_t device);
139 void handleDiskRemoved(dev_t device);
140
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700141 std::mutex mLock;
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600142 std::mutex mCryptLock;
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700143
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600144 android::sp<android::os::IVoldListener> mListener;
145
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700146 std::list<std::shared_ptr<DiskSource>> mDiskSources;
147 std::list<std::shared_ptr<android::vold::Disk>> mDisks;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700148 std::list<std::shared_ptr<android::vold::Disk>> mPendingDisks;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600149 std::list<std::shared_ptr<android::vold::VolumeBase>> mObbVolumes;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700150
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700151 std::unordered_map<userid_t, int> mAddedUsers;
152 std::unordered_set<userid_t> mStartedUsers;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700153
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600154 std::string mVirtualDiskPath;
155 std::shared_ptr<android::vold::Disk> mVirtualDisk;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700156 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
157 std::shared_ptr<android::vold::VolumeBase> mPrimary;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600158
159 int mNextObbId;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700160 bool mSecureKeyguardShowing;
San Mehatf1b736b2009-10-10 17:22:08 -0700161};
Ken Sumrall29d8da82011-05-18 17:20:07 -0700162
San Mehatf1b736b2009-10-10 17:22:08 -0700163#endif