blob: 274fb54b1aa2122023eb2d848339703c142b8ae5 [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>
21
San Mehatfd7f5872009-10-12 11:32:47 -070022class NetlinkEvent;
San Mehata2677e42009-12-13 10:40:18 -080023class VolumeManager;
San Mehatfd7f5872009-10-12 11:32:47 -070024
San Mehatf1b736b2009-10-10 17:22:08 -070025class Volume {
26private:
27 int mState;
28
29public:
30 static const int State_Init = -1;
San Mehata2677e42009-12-13 10:40:18 -080031 static const int State_NoMedia = 0;
San Mehatf1b736b2009-10-10 17:22:08 -070032 static const int State_Idle = 1;
33 static const int State_Pending = 2;
San Mehata2677e42009-12-13 10:40:18 -080034 static const int State_Checking = 3;
35 static const int State_Mounted = 4;
36 static const int State_Unmounting = 5;
37 static const int State_Formatting = 6;
38 static const int State_Shared = 7;
39 static const int State_SharedMnt = 8;
San Mehatf1b736b2009-10-10 17:22:08 -070040
San Mehat3bb60202010-02-19 18:14:36 -080041 static const char *SECDIR;
42 static const char *SEC_STGDIR;
43 static const char *SEC_STG_SECIMGDIR;
44 static const char *SEC_ASECDIR;
45 static const char *ASECDIR;
46
Kenny Rootfb7c4d52010-06-30 18:48:41 -070047 static const char *LOOPDIR;
48
San Mehatf1b736b2009-10-10 17:22:08 -070049protected:
50 char *mLabel;
51 char *mMountpoint;
San Mehata2677e42009-12-13 10:40:18 -080052 VolumeManager *mVm;
San Mehatd9a4e352010-03-12 13:32:47 -080053 bool mDebug;
Mike Lockwooda4886f12010-09-21 13:56:35 -040054 int mPartIdx;
Ken Sumrall0b8b5972011-08-31 16:14:23 -070055 int mOrigPartIdx;
Joseph Lehrer507d31b2011-04-11 15:02:50 -070056 bool mRetryMount;
San Mehata2677e42009-12-13 10:40:18 -080057
58 /*
59 * The major/minor tuple of the currently mounted filesystem.
60 */
61 dev_t mCurrentlyMountedKdev;
San Mehatf1b736b2009-10-10 17:22:08 -070062
63public:
San Mehata2677e42009-12-13 10:40:18 -080064 Volume(VolumeManager *vm, const char *label, const char *mount_point);
San Mehatf1b736b2009-10-10 17:22:08 -070065 virtual ~Volume();
66
San Mehata2677e42009-12-13 10:40:18 -080067 int mountVol();
Ken Sumrall0b8b5972011-08-31 16:14:23 -070068 int unmountVol(bool force, bool revert);
San Mehata2677e42009-12-13 10:40:18 -080069 int formatVol();
San Mehat49e2bce2009-10-12 16:29:01 -070070
San Mehatf1b736b2009-10-10 17:22:08 -070071 const char *getLabel() { return mLabel; }
72 const char *getMountpoint() { return mMountpoint; }
73 int getState() { return mState; }
74
San Mehatfd7f5872009-10-12 11:32:47 -070075 virtual int handleBlockEvent(NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080076 virtual dev_t getDiskDevice();
Mike Lockwood2dfe2972010-09-17 18:50:51 -040077 virtual dev_t getShareDevice();
San Mehata2677e42009-12-13 10:40:18 -080078 virtual void handleVolumeShared();
79 virtual void handleVolumeUnshared();
San Mehatf1b736b2009-10-10 17:22:08 -070080
San Mehatd9a4e352010-03-12 13:32:47 -080081 void setDebug(bool enable);
Ken Sumrall29d8da82011-05-18 17:20:07 -070082 virtual int getVolInfo(struct volume_info *v) = 0;
San Mehatd9a4e352010-03-12 13:32:47 -080083
San Mehatf1b736b2009-10-10 17:22:08 -070084protected:
85 void setState(int state);
San Mehat49e2bce2009-10-12 16:29:01 -070086
San Mehata2677e42009-12-13 10:40:18 -080087 virtual int getDeviceNodes(dev_t *devs, int max) = 0;
Ken Sumrall29d8da82011-05-18 17:20:07 -070088 virtual int updateDeviceInfo(char *new_path, int new_major, int new_minor) = 0;
Ken Sumrall0b8b5972011-08-31 16:14:23 -070089 virtual void revertDeviceInfo(void) = 0;
Ken Sumrall29d8da82011-05-18 17:20:07 -070090 virtual int isDecrypted(void) = 0;
91 virtual int getFlags(void) = 0;
San Mehat49e2bce2009-10-12 16:29:01 -070092
San Mehatdd9b8e92009-10-21 11:06:52 -070093 int createDeviceNode(const char *path, int major, int minor);
94
San Mehat49e2bce2009-10-12 16:29:01 -070095private:
San Mehata2677e42009-12-13 10:40:18 -080096 int initializeMbr(const char *deviceNode);
97 bool isMountpointMounted(const char *path);
San Mehat3bb60202010-02-19 18:14:36 -080098 int createBindMounts();
99 int doUnmount(const char *path, bool force);
100 int doMoveMount(const char *src, const char *dst, bool force);
San Mehatcb4dac82010-03-14 13:41:54 -0700101 void protectFromAutorunStupidity();
San Mehatf1b736b2009-10-10 17:22:08 -0700102};
103
104typedef android::List<Volume *> VolumeCollection;
105
106#endif