blob: bd70653e4adb73a00ac54494a9e04116b1943ad9 [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);
Sudheer Shankaebaad1c2018-07-31 16:39:59 -070094 int onUserStarted(userid_t userId, const std::vector<std::string>& packageNames);
Jeff Sharkeybd3038d2015-06-10 09:42:01 -070095 int onUserStopped(userid_t userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -070096
Sudheer Shankad484aa92018-07-31 10:07:34 -070097 int addAppIds(const std::vector<std::string>& packageNames, const std::vector<int32_t>& appIds);
98 int addSandboxIds(const std::vector<int32_t>& appIds,
99 const std::vector<std::string>& sandboxIds);
100
Jeff Sharkey401b2602017-12-14 22:15:20 -0700101 int onSecureKeyguardStateChanged(bool isShowing);
102
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700103 int setPrimary(const std::shared_ptr<android::vold::VolumeBase>& vol);
104
Jeff Sharkey66270a22015-06-24 11:49:24 -0700105 int remountUid(uid_t uid, const std::string& mode);
106
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700107 /* Reset all internal state, typically during framework boot */
108 int reset();
109 /* Prepare for device shutdown, safely unmounting all devices */
110 int shutdown();
Jeff Sharkey9c484982015-03-31 10:35:33 -0700111 /* Unmount all volumes, usually for encryption */
112 int unmountAll();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700113
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600114 int updateVirtualDisk();
Jeff Sharkeyf1b996d2015-04-17 17:35:20 -0700115 int setDebug(bool enable);
San Mehatd9a4e352010-03-12 13:32:47 -0800116
San Mehatf1b736b2009-10-10 17:22:08 -0700117 static VolumeManager *Instance();
118
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700119 /*
120 * Ensure that all directories along given path exist, creating parent
121 * directories as needed. Validates that given path is absolute and that
122 * it contains no relative "." or ".." paths or symlinks. Last path segment
123 * is treated as filename and ignored, unless the path ends with "/". Also
124 * ensures that path belongs to a volume managed by vold.
125 */
Jeff Sharkey3472e522017-10-06 18:02:53 -0600126 int mkdirs(const std::string& path);
Jeff Sharkey71ebe152013-09-17 17:24:38 -0700127
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600128 int createObb(const std::string& path, const std::string& key, int32_t ownerGid,
129 std::string* outVolId);
130 int destroyObb(const std::string& volId);
131
132 int mountAppFuse(uid_t uid, pid_t pid, int mountId, android::base::unique_fd* device_fd);
133 int unmountAppFuse(uid_t uid, pid_t pid, int mountId);
134
San Mehatf1b736b2009-10-10 17:22:08 -0700135private:
136 VolumeManager();
Mike Lockwood99635f62010-06-25 23:04:04 -0400137 void readInitialState();
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700138
139 int linkPrimary(userid_t userId);
140
Jeff Sharkey401b2602017-12-14 22:15:20 -0700141 void handleDiskAdded(const std::shared_ptr<android::vold::Disk>& disk);
142 void handleDiskChanged(dev_t device);
143 void handleDiskRemoved(dev_t device);
144
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700145 std::mutex mLock;
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600146 std::mutex mCryptLock;
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700147
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600148 android::sp<android::os::IVoldListener> mListener;
149
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700150 std::list<std::shared_ptr<DiskSource>> mDiskSources;
151 std::list<std::shared_ptr<android::vold::Disk>> mDisks;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700152 std::list<std::shared_ptr<android::vold::Disk>> mPendingDisks;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600153 std::list<std::shared_ptr<android::vold::VolumeBase>> mObbVolumes;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700154
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700155 std::unordered_map<userid_t, int> mAddedUsers;
156 std::unordered_set<userid_t> mStartedUsers;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700157
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600158 std::string mVirtualDiskPath;
159 std::shared_ptr<android::vold::Disk> mVirtualDisk;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700160 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
161 std::shared_ptr<android::vold::VolumeBase> mPrimary;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600162
163 int mNextObbId;
Jeff Sharkey401b2602017-12-14 22:15:20 -0700164 bool mSecureKeyguardShowing;
San Mehatf1b736b2009-10-10 17:22:08 -0700165};
Ken Sumrall29d8da82011-05-18 17:20:07 -0700166
San Mehatf1b736b2009-10-10 17:22:08 -0700167#endif