blob: 1444ed3a3f2b73972364ecf035232644eb63b392 [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
17#ifndef _VOLUME_H
18#define _VOLUME_H
19
20#include <utils/List.h>
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070021#include <fs_mgr.h>
San Mehatf1b736b2009-10-10 17:22:08 -070022
San Mehatfd7f5872009-10-12 11:32:47 -070023class NetlinkEvent;
San Mehata2677e42009-12-13 10:40:18 -080024class VolumeManager;
San Mehatfd7f5872009-10-12 11:32:47 -070025
San Mehatf1b736b2009-10-10 17:22:08 -070026class Volume {
27private:
28 int mState;
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070029 int mFlags;
San Mehatf1b736b2009-10-10 17:22:08 -070030
31public:
32 static const int State_Init = -1;
San Mehata2677e42009-12-13 10:40:18 -080033 static const int State_NoMedia = 0;
San Mehatf1b736b2009-10-10 17:22:08 -070034 static const int State_Idle = 1;
35 static const int State_Pending = 2;
San Mehata2677e42009-12-13 10:40:18 -080036 static const int State_Checking = 3;
37 static const int State_Mounted = 4;
38 static const int State_Unmounting = 5;
39 static const int State_Formatting = 6;
40 static const int State_Shared = 7;
41 static const int State_SharedMnt = 8;
San Mehatf1b736b2009-10-10 17:22:08 -070042
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070043 static const char *MEDIA_DIR;
44 static const char *FUSE_DIR;
Kenny Root344ca102012-04-03 17:23:01 -070045 static const char *SEC_ASECDIR_EXT;
46 static const char *SEC_ASECDIR_INT;
San Mehat3bb60202010-02-19 18:14:36 -080047 static const char *ASECDIR;
Kenny Rootfb7c4d52010-06-30 18:48:41 -070048 static const char *LOOPDIR;
Jeff Sharkey0de365f2013-10-16 16:24:19 -070049 static const char *BLKID_PATH;
Kenny Rootfb7c4d52010-06-30 18:48:41 -070050
San Mehatf1b736b2009-10-10 17:22:08 -070051protected:
Jeff Sharkey0de365f2013-10-16 16:24:19 -070052 char* mLabel;
53 char* mUuid;
54 char* mUserLabel;
San Mehata2677e42009-12-13 10:40:18 -080055 VolumeManager *mVm;
San Mehatd9a4e352010-03-12 13:32:47 -080056 bool mDebug;
Mike Lockwooda4886f12010-09-21 13:56:35 -040057 int mPartIdx;
Ken Sumrall0b8b5972011-08-31 16:14:23 -070058 int mOrigPartIdx;
Joseph Lehrer507d31b2011-04-11 15:02:50 -070059 bool mRetryMount;
San Mehata2677e42009-12-13 10:40:18 -080060
61 /*
62 * The major/minor tuple of the currently mounted filesystem.
63 */
64 dev_t mCurrentlyMountedKdev;
San Mehatf1b736b2009-10-10 17:22:08 -070065
66public:
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070067 Volume(VolumeManager *vm, const fstab_rec* rec, int flags);
San Mehatf1b736b2009-10-10 17:22:08 -070068 virtual ~Volume();
69
San Mehata2677e42009-12-13 10:40:18 -080070 int mountVol();
Ken Sumrall0b8b5972011-08-31 16:14:23 -070071 int unmountVol(bool force, bool revert);
Ken Sumrall9caab762013-06-11 19:10:20 -070072 int formatVol(bool wipe);
San Mehat49e2bce2009-10-12 16:29:01 -070073
Jeff Sharkey0de365f2013-10-16 16:24:19 -070074 const char* getLabel() { return mLabel; }
75 const char* getUuid() { return mUuid; }
76 const char* getUserLabel() { return mUserLabel; }
San Mehatf1b736b2009-10-10 17:22:08 -070077 int getState() { return mState; }
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -070078 int getFlags() { return mFlags; };
79
80 /* Mountpoint of the raw volume */
81 virtual const char *getMountpoint() = 0;
82 virtual const char *getFuseMountpoint() = 0;
San Mehatf1b736b2009-10-10 17:22:08 -070083
San Mehatfd7f5872009-10-12 11:32:47 -070084 virtual int handleBlockEvent(NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080085 virtual dev_t getDiskDevice();
Mike Lockwood2dfe2972010-09-17 18:50:51 -040086 virtual dev_t getShareDevice();
San Mehata2677e42009-12-13 10:40:18 -080087 virtual void handleVolumeShared();
88 virtual void handleVolumeUnshared();
San Mehatf1b736b2009-10-10 17:22:08 -070089
San Mehatd9a4e352010-03-12 13:32:47 -080090 void setDebug(bool enable);
Ken Sumrall29d8da82011-05-18 17:20:07 -070091 virtual int getVolInfo(struct volume_info *v) = 0;
San Mehatd9a4e352010-03-12 13:32:47 -080092
San Mehatf1b736b2009-10-10 17:22:08 -070093protected:
Jeff Sharkey0de365f2013-10-16 16:24:19 -070094 void setUuid(const char* uuid);
95 void setUserLabel(const char* userLabel);
San Mehatf1b736b2009-10-10 17:22:08 -070096 void setState(int state);
San Mehat49e2bce2009-10-12 16:29:01 -070097
San Mehata2677e42009-12-13 10:40:18 -080098 virtual int getDeviceNodes(dev_t *devs, int max) = 0;
Ken Sumrall29d8da82011-05-18 17:20:07 -070099 virtual int updateDeviceInfo(char *new_path, int new_major, int new_minor) = 0;
Ken Sumrall0b8b5972011-08-31 16:14:23 -0700100 virtual void revertDeviceInfo(void) = 0;
Ken Sumrall29d8da82011-05-18 17:20:07 -0700101 virtual int isDecrypted(void) = 0;
San Mehat49e2bce2009-10-12 16:29:01 -0700102
San Mehatdd9b8e92009-10-21 11:06:52 -0700103 int createDeviceNode(const char *path, int major, int minor);
104
San Mehat49e2bce2009-10-12 16:29:01 -0700105private:
San Mehata2677e42009-12-13 10:40:18 -0800106 int initializeMbr(const char *deviceNode);
107 bool isMountpointMounted(const char *path);
Jeff Sharkeyba6ae8d2013-07-15 18:14:25 -0700108 int mountAsecExternal();
San Mehat3bb60202010-02-19 18:14:36 -0800109 int doUnmount(const char *path, bool force);
Jeff Sharkey0de365f2013-10-16 16:24:19 -0700110 int extractMetadata(const char* devicePath);
San Mehatf1b736b2009-10-10 17:22:08 -0700111};
112
113typedef android::List<Volume *> VolumeCollection;
114
115#endif