2015-03-03 06:01:40 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 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_VOLUME_BASE_H
|
|
|
|
#define ANDROID_VOLD_VOLUME_BASE_H
|
|
|
|
|
|
|
|
#include "Utils.h"
|
2018-09-19 00:14:18 +02:00
|
|
|
#include "android/os/IVoldListener.h"
|
2019-11-19 10:16:03 +01:00
|
|
|
#include "android/os/IVoldMountCallback.h"
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
#include <cutils/multiuser.h>
|
2015-03-03 06:01:40 +01:00
|
|
|
#include <utils/Errors.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
|
2018-09-18 22:07:45 +02:00
|
|
|
static constexpr userid_t USER_UNKNOWN = ((userid_t)-1);
|
|
|
|
|
2015-03-03 06:01:40 +01:00
|
|
|
namespace android {
|
|
|
|
namespace vold {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Representation of a mounted volume ready for presentation.
|
|
|
|
*
|
|
|
|
* Various subclasses handle the different mounting prerequisites, such as
|
|
|
|
* encryption details, etc. Volumes can also be "stacked" above other
|
|
|
|
* volumes to help communicate dependencies. For example, an ASEC volume
|
|
|
|
* can be stacked on a vfat volume.
|
|
|
|
*
|
|
|
|
* Mounted volumes can be asked to manage bind mounts to present themselves
|
|
|
|
* to specific users on the device.
|
|
|
|
*
|
|
|
|
* When an unmount is requested, the volume recursively unmounts any stacked
|
|
|
|
* volumes and removes any bind mounts before finally unmounting itself.
|
|
|
|
*/
|
|
|
|
class VolumeBase {
|
2018-09-19 00:14:18 +02:00
|
|
|
public:
|
2015-03-03 06:01:40 +01:00
|
|
|
virtual ~VolumeBase();
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
enum class Type {
|
|
|
|
kPublic = 0,
|
|
|
|
kPrivate,
|
|
|
|
kEmulated,
|
|
|
|
kAsec,
|
|
|
|
kObb,
|
2018-10-29 00:52:56 +01:00
|
|
|
kStub,
|
2015-03-14 00:09:20 +01:00
|
|
|
};
|
|
|
|
|
2015-04-18 02:35:20 +02:00
|
|
|
enum MountFlags {
|
2015-03-14 00:09:20 +01:00
|
|
|
/* Flag that volume is primary external storage */
|
|
|
|
kPrimary = 1 << 0,
|
|
|
|
/* Flag that volume is visible to normal apps */
|
|
|
|
kVisible = 1 << 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class State {
|
|
|
|
kUnmounted = 0,
|
2015-04-18 02:35:20 +02:00
|
|
|
kChecking,
|
2015-03-14 00:09:20 +01:00
|
|
|
kMounted,
|
2015-04-18 02:35:20 +02:00
|
|
|
kMountedReadOnly,
|
2015-03-14 00:09:20 +01:00
|
|
|
kFormatting,
|
2015-04-18 02:35:20 +02:00
|
|
|
kEjecting,
|
2015-04-05 06:38:59 +02:00
|
|
|
kUnmountable,
|
2015-04-13 01:03:33 +02:00
|
|
|
kRemoved,
|
2015-04-18 02:35:20 +02:00
|
|
|
kBadRemoval,
|
2015-03-14 00:09:20 +01:00
|
|
|
};
|
|
|
|
|
2018-12-18 17:42:08 +01:00
|
|
|
const std::string& getId() const { return mId; }
|
|
|
|
const std::string& getDiskId() const { return mDiskId; }
|
|
|
|
const std::string& getPartGuid() const { return mPartGuid; }
|
|
|
|
Type getType() const { return mType; }
|
|
|
|
int getMountFlags() const { return mMountFlags; }
|
|
|
|
userid_t getMountUserId() const { return mMountUserId; }
|
|
|
|
State getState() const { return mState; }
|
|
|
|
const std::string& getPath() const { return mPath; }
|
|
|
|
const std::string& getInternalPath() const { return mInternalPath; }
|
2019-09-25 15:37:38 +02:00
|
|
|
const std::list<std::shared_ptr<VolumeBase>>& getVolumes() const { return mVolumes; }
|
2015-03-14 00:09:20 +01:00
|
|
|
|
2015-04-18 02:35:20 +02:00
|
|
|
status_t setDiskId(const std::string& diskId);
|
2015-06-18 23:25:08 +02:00
|
|
|
status_t setPartGuid(const std::string& partGuid);
|
2015-04-18 02:35:20 +02:00
|
|
|
status_t setMountFlags(int mountFlags);
|
|
|
|
status_t setMountUserId(userid_t mountUserId);
|
2019-11-19 10:16:03 +01:00
|
|
|
status_t setMountCallback(const android::sp<android::os::IVoldMountCallback>& callback);
|
2015-04-09 06:07:21 +02:00
|
|
|
status_t setSilent(bool silent);
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
void addVolume(const std::shared_ptr<VolumeBase>& volume);
|
|
|
|
void removeVolume(const std::shared_ptr<VolumeBase>& volume);
|
|
|
|
|
|
|
|
std::shared_ptr<VolumeBase> findVolume(const std::string& id);
|
|
|
|
|
2018-09-18 22:07:45 +02:00
|
|
|
bool isEmulated() { return mType == Type::kEmulated; }
|
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
status_t create();
|
|
|
|
status_t destroy();
|
2015-03-03 06:01:40 +01:00
|
|
|
status_t mount();
|
|
|
|
status_t unmount();
|
2015-05-22 07:35:42 +02:00
|
|
|
status_t format(const std::string& fsType);
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2020-01-31 15:23:09 +01:00
|
|
|
virtual std::string getRootPath() const;
|
|
|
|
|
2018-09-18 22:07:45 +02:00
|
|
|
std::ostream& operator<<(std::ostream& stream) const;
|
|
|
|
|
2018-09-19 00:14:18 +02:00
|
|
|
protected:
|
2015-03-14 00:09:20 +01:00
|
|
|
explicit VolumeBase(Type type);
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2015-03-31 19:35:33 +02:00
|
|
|
virtual status_t doCreate();
|
|
|
|
virtual status_t doDestroy();
|
2015-03-03 06:01:40 +01:00
|
|
|
virtual status_t doMount() = 0;
|
2020-05-04 14:57:35 +02:00
|
|
|
virtual void doPostMount();
|
2015-03-03 06:01:40 +01:00
|
|
|
virtual status_t doUnmount() = 0;
|
2015-05-22 07:35:42 +02:00
|
|
|
virtual status_t doFormat(const std::string& fsType);
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
status_t setId(const std::string& id);
|
|
|
|
status_t setPath(const std::string& path);
|
2015-04-25 01:00:03 +02:00
|
|
|
status_t setInternalPath(const std::string& internalPath);
|
2015-03-14 00:09:20 +01:00
|
|
|
|
2018-12-18 17:42:08 +01:00
|
|
|
android::sp<android::os::IVoldListener> getListener() const;
|
2019-11-19 10:16:03 +01:00
|
|
|
android::sp<android::os::IVoldMountCallback> getMountCallback() const;
|
2017-09-13 19:49:44 +02:00
|
|
|
|
2018-09-19 00:14:18 +02:00
|
|
|
private:
|
2015-03-14 00:09:20 +01:00
|
|
|
/* ID that uniquely references volume while alive */
|
|
|
|
std::string mId;
|
2015-04-18 02:35:20 +02:00
|
|
|
/* ID that uniquely references parent disk while alive */
|
|
|
|
std::string mDiskId;
|
2015-06-18 23:25:08 +02:00
|
|
|
/* Partition GUID of this volume */
|
|
|
|
std::string mPartGuid;
|
2015-03-03 06:01:40 +01:00
|
|
|
/* Volume type */
|
2015-03-14 00:09:20 +01:00
|
|
|
Type mType;
|
2015-04-18 02:35:20 +02:00
|
|
|
/* Flags used when mounting this volume */
|
|
|
|
int mMountFlags;
|
2015-03-14 00:09:20 +01:00
|
|
|
/* User that owns this volume, otherwise -1 */
|
2015-04-18 02:35:20 +02:00
|
|
|
userid_t mMountUserId;
|
2015-03-14 00:09:20 +01:00
|
|
|
/* Flag indicating object is created */
|
|
|
|
bool mCreated;
|
2015-03-03 06:01:40 +01:00
|
|
|
/* Current state of volume */
|
2015-03-14 00:09:20 +01:00
|
|
|
State mState;
|
|
|
|
/* Path to mounted volume */
|
|
|
|
std::string mPath;
|
2015-04-25 01:00:03 +02:00
|
|
|
/* Path to internal backing storage */
|
|
|
|
std::string mInternalPath;
|
2015-04-09 06:07:21 +02:00
|
|
|
/* Flag indicating that volume should emit no events */
|
|
|
|
bool mSilent;
|
2019-11-19 10:16:03 +01:00
|
|
|
android::sp<android::os::IVoldMountCallback> mMountCallback;
|
2015-03-03 06:01:40 +01:00
|
|
|
|
|
|
|
/* Volumes stacked on top of this volume */
|
2015-03-14 00:09:20 +01:00
|
|
|
std::list<std::shared_ptr<VolumeBase>> mVolumes;
|
2015-03-03 06:01:40 +01:00
|
|
|
|
2015-03-14 00:09:20 +01:00
|
|
|
void setState(State state);
|
2015-03-03 06:01:40 +01:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(VolumeBase);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace vold
|
|
|
|
} // namespace android
|
|
|
|
|
|
|
|
#endif
|