2015-03-03 06:01:40 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ANDROID_VOLD_EMULATED_VOLUME_H
|
|
|
|
#define ANDROID_VOLD_EMULATED_VOLUME_H
|
|
|
|
|
|
|
|
#include "VolumeBase.h"
|
|
|
|
|
|
|
|
#include <cutils/multiuser.h>
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shared storage emulated on top of private storage.
|
|
|
|
*
|
2019-12-09 14:18:01 +01:00
|
|
|
* Knows how to spawn a sdcardfs daemon to synthesize permissions. ObbVolume
|
2015-03-03 06:01:40 +01:00
|
|
|
* can be stacked above it.
|
|
|
|
*
|
|
|
|
* This volume is always multi-user aware, but is only binds itself to
|
|
|
|
* users when its primary storage. This volume should never be presented
|
|
|
|
* as secondary storage, since we're strongly encouraging developers to
|
|
|
|
* store data local to their app.
|
|
|
|
*/
|
|
|
|
class EmulatedVolume : public VolumeBase {
|
2018-09-18 22:30:21 +02:00
|
|
|
public:
|
2019-09-25 15:37:38 +02:00
|
|
|
explicit EmulatedVolume(const std::string& rawPath, int userId);
|
|
|
|
EmulatedVolume(const std::string& rawPath, dev_t device, const std::string& fsUuid, int userId);
|
2015-03-03 06:01:40 +01:00
|
|
|
virtual ~EmulatedVolume();
|
2020-01-31 15:23:09 +01:00
|
|
|
std::string getRootPath() const override;
|
2020-02-28 17:30:47 +01:00
|
|
|
bool isFuseMounted() const { return mFuseMounted; }
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
protected:
|
2015-03-14 00:09:20 +01:00
|
|
|
status_t doMount() override;
|
|
|
|
status_t doUnmount() override;
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2018-09-18 22:30:21 +02:00
|
|
|
private:
|
2020-03-16 14:37:33 +01:00
|
|
|
status_t unmountSdcardFs();
|
2020-01-06 09:48:14 +01:00
|
|
|
status_t mountFuseBindMounts();
|
|
|
|
status_t unmountFuseBindMounts();
|
|
|
|
|
2019-11-28 11:53:53 +01:00
|
|
|
std::string getLabel();
|
2015-03-03 06:01:40 +01:00
|
|
|
std::string mRawPath;
|
2015-06-24 20:49:24 +02:00
|
|
|
std::string mLabel;
|
|
|
|
|
2019-12-09 14:18:01 +01:00
|
|
|
std::string mSdcardFsDefault;
|
|
|
|
std::string mSdcardFsRead;
|
|
|
|
std::string mSdcardFsWrite;
|
|
|
|
std::string mSdcardFsFull;
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2019-11-28 11:53:53 +01:00
|
|
|
/* Whether we mounted FUSE for this volume */
|
|
|
|
bool mFuseMounted;
|
|
|
|
|
2021-10-13 13:03:18 +02:00
|
|
|
/* Whether the FUSE BPF feature is enabled */
|
|
|
|
bool mFuseBpfEnabled;
|
|
|
|
|
2020-01-06 09:48:14 +01:00
|
|
|
/* Whether to use sdcardfs for this volume */
|
|
|
|
bool mUseSdcardFs;
|
|
|
|
|
2020-02-11 15:31:24 +01:00
|
|
|
/* Whether to use app data isolation is enabled tor this volume */
|
|
|
|
bool mAppDataIsolationEnabled;
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(EmulatedVolume);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|
|
|
|
|
|
|
|
#endif
|