San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 1 | /* |
| 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 _VOLUMEMANAGER_H |
| 18 | #define _VOLUMEMANAGER_H |
| 19 | |
| 20 | #include <pthread.h> |
| 21 | |
| 22 | #include <utils/List.h> |
| 23 | #include <sysutils/SocketListener.h> |
| 24 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 25 | #include "Volume.h" |
| 26 | |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 27 | /* The length of an MD5 hash when encoded into ASCII hex characters */ |
| 28 | #define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1) |
| 29 | |
Kenny Root | cbacf78 | 2010-09-24 15:11:48 -0700 | [diff] [blame] | 30 | typedef enum { ASEC, OBB } container_type_t; |
| 31 | |
| 32 | class ContainerData { |
| 33 | public: |
| 34 | ContainerData(char* _id, container_type_t _type) |
| 35 | : id(_id) |
| 36 | , type(_type) |
| 37 | {} |
| 38 | |
| 39 | ~ContainerData() { |
| 40 | if (id != NULL) { |
| 41 | free(id); |
| 42 | id = NULL; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | char *id; |
| 47 | container_type_t type; |
| 48 | }; |
| 49 | |
| 50 | typedef android::List<ContainerData*> AsecIdCollection; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 51 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 52 | class VolumeManager { |
| 53 | private: |
| 54 | static VolumeManager *sInstance; |
| 55 | |
| 56 | private: |
| 57 | SocketListener *mBroadcaster; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 58 | |
| 59 | VolumeCollection *mVolumes; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 60 | AsecIdCollection *mActiveContainers; |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 61 | bool mUsbMassStorageEnabled; |
| 62 | bool mUsbConnected; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 63 | bool mDebug; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 64 | |
Mike Lockwood | a28056b | 2010-10-28 15:21:24 -0400 | [diff] [blame] | 65 | // for adjusting /proc/sys/vm/dirty_ratio when UMS is active |
| 66 | int mUmsSharingCount; |
| 67 | int mSavedDirtyRatio; |
| 68 | int mUmsDirtyRatio; |
| 69 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 70 | public: |
| 71 | virtual ~VolumeManager(); |
| 72 | |
| 73 | int start(); |
| 74 | int stop(); |
| 75 | |
San Mehat | fd7f587 | 2009-10-12 11:32:47 -0700 | [diff] [blame] | 76 | void handleBlockEvent(NetlinkEvent *evt); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 77 | void handleSwitchEvent(NetlinkEvent *evt); |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 78 | void handleUsbCompositeEvent(NetlinkEvent *evt); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 79 | |
| 80 | int addVolume(Volume *v); |
| 81 | |
| 82 | int listVolumes(SocketClient *cli); |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 83 | int mountVolume(const char *label); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 84 | int unmountVolume(const char *label, bool force); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 85 | int shareVolume(const char *label, const char *method); |
| 86 | int unshareVolume(const char *label, const char *method); |
| 87 | int shareAvailable(const char *method, bool *avail); |
San Mehat | eba65e9 | 2010-01-29 05:15:16 -0800 | [diff] [blame] | 88 | int shareEnabled(const char *path, const char *method, bool *enabled); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 89 | int simulate(const char *cmd, const char *arg); |
| 90 | int formatVolume(const char *label); |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 91 | |
| 92 | /* ASEC */ |
San Mehat | 8b8f71b | 2010-01-11 09:17:25 -0800 | [diff] [blame] | 93 | int createAsec(const char *id, unsigned numSectors, const char *fstype, |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 94 | const char *key, int ownerUid); |
| 95 | int finalizeAsec(const char *id); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 96 | int destroyAsec(const char *id, bool force); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 97 | int mountAsec(const char *id, const char *key, int ownerUid); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 98 | int unmountAsec(const char *id, bool force); |
San Mehat | 048b080 | 2010-01-23 08:17:06 -0800 | [diff] [blame] | 99 | int renameAsec(const char *id1, const char *id2); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 100 | int getAsecMountPath(const char *id, char *buffer, int maxlen); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 101 | |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 102 | /* Loopback images */ |
Kenny Root | 508c0e1 | 2010-07-12 09:59:49 -0700 | [diff] [blame] | 103 | int listMountedObbs(SocketClient* cli); |
| 104 | int mountObb(const char *fileName, const char *key, int ownerUid); |
| 105 | int unmountObb(const char *fileName, bool force); |
| 106 | int getObbMountPath(const char *id, char *buffer, int maxlen); |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 107 | |
| 108 | /* Shared between ASEC and Loopback images */ |
| 109 | int unmountLoopImage(const char *containerId, const char *loopId, |
| 110 | const char *fileName, const char *mountPoint, bool force); |
| 111 | |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 112 | void setDebug(bool enable); |
| 113 | |
San Mehat | 1a06eda | 2010-04-15 12:58:50 -0700 | [diff] [blame] | 114 | // XXX: Post froyo this should be moved and cleaned up |
| 115 | int cleanupAsec(Volume *v, bool force); |
San Mehat | 0cde53c | 2009-12-22 08:32:33 -0800 | [diff] [blame] | 116 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 117 | void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; } |
| 118 | SocketListener *getBroadcaster() { return mBroadcaster; } |
| 119 | |
| 120 | static VolumeManager *Instance(); |
| 121 | |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 122 | static char *asecHash(const char *id, char *buffer, size_t len); |
San Mehat | 1a06eda | 2010-04-15 12:58:50 -0700 | [diff] [blame] | 123 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 124 | private: |
| 125 | VolumeManager(); |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 126 | void readInitialState(); |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 127 | Volume *lookupVolume(const char *label); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 128 | bool isMountpointMounted(const char *mp); |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 129 | |
| 130 | inline bool massStorageAvailable() const { return mUsbMassStorageEnabled && mUsbConnected; } |
| 131 | void notifyUmsAvailable(bool available); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 132 | }; |
| 133 | #endif |