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 | |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 22 | #ifdef __cplusplus |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 23 | #include <utils/List.h> |
| 24 | #include <sysutils/SocketListener.h> |
| 25 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 26 | #include "Volume.h" |
| 27 | |
Kenny Root | acc9e7d | 2010-06-18 19:06:50 -0700 | [diff] [blame] | 28 | /* The length of an MD5 hash when encoded into ASCII hex characters */ |
| 29 | #define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1) |
| 30 | |
Kenny Root | cbacf78 | 2010-09-24 15:11:48 -0700 | [diff] [blame] | 31 | typedef enum { ASEC, OBB } container_type_t; |
| 32 | |
| 33 | class ContainerData { |
| 34 | public: |
| 35 | ContainerData(char* _id, container_type_t _type) |
| 36 | : id(_id) |
| 37 | , type(_type) |
| 38 | {} |
| 39 | |
| 40 | ~ContainerData() { |
| 41 | if (id != NULL) { |
| 42 | free(id); |
| 43 | id = NULL; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | char *id; |
| 48 | container_type_t type; |
| 49 | }; |
| 50 | |
| 51 | typedef android::List<ContainerData*> AsecIdCollection; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 52 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 53 | class VolumeManager { |
| 54 | private: |
| 55 | static VolumeManager *sInstance; |
| 56 | |
| 57 | private: |
| 58 | SocketListener *mBroadcaster; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 59 | |
| 60 | VolumeCollection *mVolumes; |
San Mehat | 8870516 | 2010-01-15 09:26:28 -0800 | [diff] [blame] | 61 | AsecIdCollection *mActiveContainers; |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 62 | bool mDebug; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 63 | |
Mike Lockwood | a28056b | 2010-10-28 15:21:24 -0400 | [diff] [blame] | 64 | // for adjusting /proc/sys/vm/dirty_ratio when UMS is active |
| 65 | int mUmsSharingCount; |
| 66 | int mSavedDirtyRatio; |
| 67 | int mUmsDirtyRatio; |
Ken Sumrall | 3b17005 | 2011-07-11 15:38:57 -0700 | [diff] [blame] | 68 | int mVolManagerDisabled; |
Mike Lockwood | a28056b | 2010-10-28 15:21:24 -0400 | [diff] [blame] | 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 | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 77 | |
| 78 | int addVolume(Volume *v); |
| 79 | |
JP Abgrall | 40b64a6 | 2014-07-24 18:02:16 -0700 | [diff] [blame] | 80 | int listVolumes(SocketClient *cli, bool broadcast); |
San Mehat | 49e2bce | 2009-10-12 16:29:01 -0700 | [diff] [blame] | 81 | int mountVolume(const char *label); |
Ken Sumrall | 0b8b597 | 2011-08-31 16:14:23 -0700 | [diff] [blame] | 82 | int unmountVolume(const char *label, bool force, bool revert); |
San Mehat | a2677e4 | 2009-12-13 10:40:18 -0800 | [diff] [blame] | 83 | int shareVolume(const char *label, const char *method); |
| 84 | int unshareVolume(const char *label, const char *method); |
San Mehat | eba65e9 | 2010-01-29 05:15:16 -0800 | [diff] [blame] | 85 | int shareEnabled(const char *path, const char *method, bool *enabled); |
Ken Sumrall | 9caab76 | 2013-06-11 19:10:20 -0700 | [diff] [blame] | 86 | int formatVolume(const char *label, bool wipe); |
Ken Sumrall | 3b17005 | 2011-07-11 15:38:57 -0700 | [diff] [blame] | 87 | void disableVolumeManager(void) { mVolManagerDisabled = 1; } |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 88 | |
| 89 | /* ASEC */ |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 90 | int findAsec(const char *id, char *asecPath = NULL, size_t asecPathLen = 0, |
| 91 | const char **directory = NULL) const; |
San Mehat | 8b8f71b | 2010-01-11 09:17:25 -0800 | [diff] [blame] | 92 | int createAsec(const char *id, unsigned numSectors, const char *fstype, |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 93 | const char *key, const int ownerUid, bool isExternal); |
Daniel Rosenberg | fcd34a0 | 2014-05-22 11:23:56 -0700 | [diff] [blame] | 94 | int resizeAsec(const char *id, unsigned numSectors, const char *key); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 95 | int finalizeAsec(const char *id); |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 96 | |
| 97 | /** |
| 98 | * Fixes ASEC permissions on a filesystem that has owners and permissions. |
| 99 | * This currently means EXT4-based ASEC containers. |
| 100 | * |
| 101 | * There is a single file that can be marked as "private" and will not have |
| 102 | * world-readable permission. The group for that file will be set to the gid |
| 103 | * supplied. |
| 104 | * |
| 105 | * Returns 0 on success. |
| 106 | */ |
| 107 | int fixupAsecPermissions(const char *id, gid_t gid, const char* privateFilename); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 108 | int destroyAsec(const char *id, bool force); |
Jeff Sharkey | 43ed123 | 2014-08-22 12:29:05 -0700 | [diff] [blame] | 109 | int mountAsec(const char *id, const char *key, int ownerUid, bool readOnly); |
San Mehat | 4ba8948 | 2010-02-18 09:00:18 -0800 | [diff] [blame] | 110 | int unmountAsec(const char *id, bool force); |
San Mehat | 048b080 | 2010-01-23 08:17:06 -0800 | [diff] [blame] | 111 | int renameAsec(const char *id1, const char *id2); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 112 | int getAsecMountPath(const char *id, char *buffer, int maxlen); |
Dianne Hackborn | 736910c | 2011-06-27 13:37:07 -0700 | [diff] [blame] | 113 | int getAsecFilesystemPath(const char *id, char *buffer, int maxlen); |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 114 | |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 115 | /* Loopback images */ |
Kenny Root | 508c0e1 | 2010-07-12 09:59:49 -0700 | [diff] [blame] | 116 | int listMountedObbs(SocketClient* cli); |
| 117 | int mountObb(const char *fileName, const char *key, int ownerUid); |
| 118 | int unmountObb(const char *fileName, bool force); |
| 119 | int getObbMountPath(const char *id, char *buffer, int maxlen); |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 120 | |
Kenny Root | 93ecb38 | 2012-08-09 11:28:37 -0700 | [diff] [blame] | 121 | Volume* getVolumeForFile(const char *fileName); |
| 122 | |
Kenny Root | fb7c4d5 | 2010-06-30 18:48:41 -0700 | [diff] [blame] | 123 | /* Shared between ASEC and Loopback images */ |
| 124 | int unmountLoopImage(const char *containerId, const char *loopId, |
| 125 | const char *fileName, const char *mountPoint, bool force); |
| 126 | |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 127 | void setDebug(bool enable); |
| 128 | |
San Mehat | 1a06eda | 2010-04-15 12:58:50 -0700 | [diff] [blame] | 129 | // XXX: Post froyo this should be moved and cleaned up |
| 130 | int cleanupAsec(Volume *v, bool force); |
San Mehat | 0cde53c | 2009-12-22 08:32:33 -0800 | [diff] [blame] | 131 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 132 | void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; } |
| 133 | SocketListener *getBroadcaster() { return mBroadcaster; } |
| 134 | |
| 135 | static VolumeManager *Instance(); |
| 136 | |
San Mehat | d9a4e35 | 2010-03-12 13:32:47 -0800 | [diff] [blame] | 137 | static char *asecHash(const char *id, char *buffer, size_t len); |
San Mehat | 1a06eda | 2010-04-15 12:58:50 -0700 | [diff] [blame] | 138 | |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 139 | Volume *lookupVolume(const char *label); |
| 140 | int getNumDirectVolumes(void); |
| 141 | int getDirectVolumeList(struct volume_info *vol_list); |
Ken Sumrall | 425524d | 2012-06-14 20:55:28 -0700 | [diff] [blame] | 142 | int unmountAllAsecsInDir(const char *directory); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 143 | |
Jeff Sharkey | 71ebe15 | 2013-09-17 17:24:38 -0700 | [diff] [blame] | 144 | /* |
| 145 | * Ensure that all directories along given path exist, creating parent |
| 146 | * directories as needed. Validates that given path is absolute and that |
| 147 | * it contains no relative "." or ".." paths or symlinks. Last path segment |
| 148 | * is treated as filename and ignored, unless the path ends with "/". Also |
| 149 | * ensures that path belongs to a volume managed by vold. |
| 150 | */ |
| 151 | int mkdirs(char* path); |
| 152 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 153 | private: |
| 154 | VolumeManager(); |
Mike Lockwood | 99635f6 | 2010-06-25 23:04:04 -0400 | [diff] [blame] | 155 | void readInitialState(); |
San Mehat | a19b250 | 2010-01-06 10:33:53 -0800 | [diff] [blame] | 156 | bool isMountpointMounted(const char *mp); |
Kenny Root | 344ca10 | 2012-04-03 17:23:01 -0700 | [diff] [blame] | 157 | bool isAsecInDirectory(const char *dir, const char *asec) const; |
Nick Kralevich | 6696260 | 2014-01-27 14:58:06 -0800 | [diff] [blame] | 158 | bool isLegalAsecId(const char *id) const; |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 159 | }; |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 160 | |
| 161 | extern "C" { |
| 162 | #endif /* __cplusplus */ |
Ken Sumrall | 319b104 | 2011-06-14 14:01:55 -0700 | [diff] [blame] | 163 | #define UNMOUNT_NOT_MOUNTED_ERR -2 |
Ken Sumrall | 3b17005 | 2011-07-11 15:38:57 -0700 | [diff] [blame] | 164 | int vold_disableVol(const char *label); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 165 | int vold_getNumDirectVolumes(void); |
| 166 | int vold_getDirectVolumeList(struct volume_info *v); |
Ken Sumrall | 425524d | 2012-06-14 20:55:28 -0700 | [diff] [blame] | 167 | int vold_unmountAllAsecs(void); |
Ken Sumrall | 29d8da8 | 2011-05-18 17:20:07 -0700 | [diff] [blame] | 168 | #ifdef __cplusplus |
| 169 | } |
| 170 | #endif |
| 171 | |
San Mehat | f1b736b | 2009-10-10 17:22:08 -0700 | [diff] [blame] | 172 | #endif |