blob: 8a780c4f008055dd0d2313ff55e2f4b3ec53945f [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>
Jeff Sharkey9f18fe72015-04-01 23:32:18 -070036#include <sysutils/NetlinkEvent.h>
San Mehatf1b736b2009-10-10 17:22:08 -070037
Jeff Sharkey814e9d32017-09-13 11:49:44 -060038#include "android/os/IVoldListener.h"
39
Jeff Sharkey11c2d382017-09-11 10:32:01 -060040#include "model/Disk.h"
41#include "model/VolumeBase.h"
San Mehatf1b736b2009-10-10 17:22:08 -070042
Jeff Sharkey11c2d382017-09-11 10:32:01 -060043#define DEBUG_APPFUSE 0
44
San Mehatf1b736b2009-10-10 17:22:08 -070045class VolumeManager {
46private:
47 static VolumeManager *sInstance;
48
San Mehatd9a4e352010-03-12 13:32:47 -080049 bool mDebug;
San Mehatf1b736b2009-10-10 17:22:08 -070050
51public:
52 virtual ~VolumeManager();
53
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070054 // TODO: pipe all requests through VM to avoid exposing this lock
55 std::mutex& getLock() { return mLock; }
Jeff Sharkey83b559c2017-09-12 16:30:52 -060056 std::mutex& getCryptLock() { return mCryptLock; }
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -070057
Jeff Sharkey814e9d32017-09-13 11:49:44 -060058 void setListener(android::sp<android::os::IVoldListener> listener) { mListener = listener; }
59 android::sp<android::os::IVoldListener> getListener() { return mListener; }
60
San Mehatf1b736b2009-10-10 17:22:08 -070061 int start();
62 int stop();
63
San Mehatfd7f5872009-10-12 11:32:47 -070064 void handleBlockEvent(NetlinkEvent *evt);
San Mehatf1b736b2009-10-10 17:22:08 -070065
Jeff Sharkey36801cc2015-03-13 16:09:20 -070066 class DiskSource {
67 public:
68 DiskSource(const std::string& sysPattern, const std::string& nickname, int flags) :
69 mSysPattern(sysPattern), mNickname(nickname), mFlags(flags) {
70 }
71
72 bool matches(const std::string& sysPath) {
73 return !fnmatch(mSysPattern.c_str(), sysPath.c_str(), 0);
74 }
75
76 const std::string& getNickname() { return mNickname; }
77 int getFlags() { return mFlags; }
78
79 private:
80 std::string mSysPattern;
81 std::string mNickname;
82 int mFlags;
83 };
84
85 void addDiskSource(const std::shared_ptr<DiskSource>& diskSource);
86
87 std::shared_ptr<android::vold::Disk> findDisk(const std::string& id);
88 std::shared_ptr<android::vold::VolumeBase> findVolume(const std::string& id);
89
Jeff Sharkeyc86ab6f2015-06-26 14:02:09 -070090 void listVolumes(android::vold::VolumeBase::Type type, std::list<std::string>& list);
91
Jeff Sharkey3ce18252017-10-24 11:08:45 -060092 int forgetPartition(const std::string& partGuid, const std::string& fsUuid);
Jeff Sharkeybc40cc82015-06-18 14:25:08 -070093
Jeff Sharkeybd3038d2015-06-10 09:42:01 -070094 int onUserAdded(userid_t userId, int userSerialNumber);
95 int onUserRemoved(userid_t userId);
96 int onUserStarted(userid_t userId);
97 int onUserStopped(userid_t userId);
Jeff Sharkey36801cc2015-03-13 16:09:20 -070098
99 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 Sharkeyc8e04c52015-04-21 12:14:17 -0700137 std::mutex mLock;
Jeff Sharkey83b559c2017-09-12 16:30:52 -0600138 std::mutex mCryptLock;
Jeff Sharkeyc8e04c52015-04-21 12:14:17 -0700139
Jeff Sharkey814e9d32017-09-13 11:49:44 -0600140 android::sp<android::os::IVoldListener> mListener;
141
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700142 std::list<std::shared_ptr<DiskSource>> mDiskSources;
143 std::list<std::shared_ptr<android::vold::Disk>> mDisks;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600144 std::list<std::shared_ptr<android::vold::VolumeBase>> mObbVolumes;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700145
Jeff Sharkeybd3038d2015-06-10 09:42:01 -0700146 std::unordered_map<userid_t, int> mAddedUsers;
147 std::unordered_set<userid_t> mStartedUsers;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700148
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -0600149 std::string mVirtualDiskPath;
150 std::shared_ptr<android::vold::Disk> mVirtualDisk;
Jeff Sharkey36801cc2015-03-13 16:09:20 -0700151 std::shared_ptr<android::vold::VolumeBase> mInternalEmulated;
152 std::shared_ptr<android::vold::VolumeBase> mPrimary;
Jeff Sharkey11c2d382017-09-11 10:32:01 -0600153
154 int mNextObbId;
San Mehatf1b736b2009-10-10 17:22:08 -0700155};
Ken Sumrall29d8da82011-05-18 17:20:07 -0700156
157extern "C" {
158#endif /* __cplusplus */
Chih-Hung Hsiehaae79382016-06-10 14:13:59 -0700159#define UNMOUNT_NOT_MOUNTED_ERR (-2)
Jeff Sharkey9c484982015-03-31 10:35:33 -0700160 int vold_unmountAll(void);
Ken Sumrall29d8da82011-05-18 17:20:07 -0700161#ifdef __cplusplus
162}
163#endif
164
San Mehatf1b736b2009-10-10 17:22:08 -0700165#endif