blob: 0619c73754243e3d993f1b8e20f04c863bcc9658 [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 _VOLUMEMANAGER_H
18#define _VOLUMEMANAGER_H
19
20#include <pthread.h>
21
22#include <utils/List.h>
23#include <sysutils/SocketListener.h>
24
San Mehatf1b736b2009-10-10 17:22:08 -070025#include "Volume.h"
26
Kenny Rootacc9e7d2010-06-18 19:06:50 -070027/* 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
San Mehat88705162010-01-15 09:26:28 -080030typedef android::List<char *> AsecIdCollection;
31
San Mehatf1b736b2009-10-10 17:22:08 -070032class VolumeManager {
33private:
34 static VolumeManager *sInstance;
35
36private:
37 SocketListener *mBroadcaster;
San Mehatf1b736b2009-10-10 17:22:08 -070038
39 VolumeCollection *mVolumes;
San Mehat88705162010-01-15 09:26:28 -080040 AsecIdCollection *mActiveContainers;
Mike Lockwood99635f62010-06-25 23:04:04 -040041 bool mUsbMassStorageEnabled;
42 bool mUsbConnected;
San Mehatd9a4e352010-03-12 13:32:47 -080043 bool mDebug;
San Mehatf1b736b2009-10-10 17:22:08 -070044
45public:
46 virtual ~VolumeManager();
47
48 int start();
49 int stop();
50
San Mehatfd7f5872009-10-12 11:32:47 -070051 void handleBlockEvent(NetlinkEvent *evt);
San Mehata2677e42009-12-13 10:40:18 -080052 void handleSwitchEvent(NetlinkEvent *evt);
Mike Lockwood99635f62010-06-25 23:04:04 -040053 void handleUsbCompositeEvent(NetlinkEvent *evt);
San Mehatf1b736b2009-10-10 17:22:08 -070054
55 int addVolume(Volume *v);
56
57 int listVolumes(SocketClient *cli);
San Mehat49e2bce2009-10-12 16:29:01 -070058 int mountVolume(const char *label);
San Mehat4ba89482010-02-18 09:00:18 -080059 int unmountVolume(const char *label, bool force);
San Mehata2677e42009-12-13 10:40:18 -080060 int shareVolume(const char *label, const char *method);
61 int unshareVolume(const char *label, const char *method);
62 int shareAvailable(const char *method, bool *avail);
San Mehateba65e92010-01-29 05:15:16 -080063 int shareEnabled(const char *path, const char *method, bool *enabled);
San Mehata2677e42009-12-13 10:40:18 -080064 int simulate(const char *cmd, const char *arg);
65 int formatVolume(const char *label);
Kenny Rootfb7c4d52010-06-30 18:48:41 -070066
67 /* ASEC */
San Mehat8b8f71b2010-01-11 09:17:25 -080068 int createAsec(const char *id, unsigned numSectors, const char *fstype,
San Mehata19b2502010-01-06 10:33:53 -080069 const char *key, int ownerUid);
70 int finalizeAsec(const char *id);
San Mehat4ba89482010-02-18 09:00:18 -080071 int destroyAsec(const char *id, bool force);
San Mehata19b2502010-01-06 10:33:53 -080072 int mountAsec(const char *id, const char *key, int ownerUid);
San Mehat4ba89482010-02-18 09:00:18 -080073 int unmountAsec(const char *id, bool force);
San Mehat048b0802010-01-23 08:17:06 -080074 int renameAsec(const char *id1, const char *id2);
San Mehata19b2502010-01-06 10:33:53 -080075 int getAsecMountPath(const char *id, char *buffer, int maxlen);
San Mehatf1b736b2009-10-10 17:22:08 -070076
Kenny Rootfb7c4d52010-06-30 18:48:41 -070077 /* Loopback images */
Kenny Root508c0e12010-07-12 09:59:49 -070078 int listMountedObbs(SocketClient* cli);
79 int mountObb(const char *fileName, const char *key, int ownerUid);
80 int unmountObb(const char *fileName, bool force);
81 int getObbMountPath(const char *id, char *buffer, int maxlen);
Kenny Rootfb7c4d52010-06-30 18:48:41 -070082
83 /* Shared between ASEC and Loopback images */
84 int unmountLoopImage(const char *containerId, const char *loopId,
85 const char *fileName, const char *mountPoint, bool force);
86
San Mehatd9a4e352010-03-12 13:32:47 -080087 void setDebug(bool enable);
88
San Mehat1a06eda2010-04-15 12:58:50 -070089 // XXX: Post froyo this should be moved and cleaned up
90 int cleanupAsec(Volume *v, bool force);
San Mehat0cde53c2009-12-22 08:32:33 -080091
San Mehatf1b736b2009-10-10 17:22:08 -070092 void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
93 SocketListener *getBroadcaster() { return mBroadcaster; }
94
95 static VolumeManager *Instance();
96
San Mehatd9a4e352010-03-12 13:32:47 -080097 static char *asecHash(const char *id, char *buffer, size_t len);
San Mehat1a06eda2010-04-15 12:58:50 -070098
San Mehatf1b736b2009-10-10 17:22:08 -070099private:
100 VolumeManager();
Mike Lockwood99635f62010-06-25 23:04:04 -0400101 void readInitialState();
San Mehat49e2bce2009-10-12 16:29:01 -0700102 Volume *lookupVolume(const char *label);
San Mehata19b2502010-01-06 10:33:53 -0800103 bool isMountpointMounted(const char *mp);
Mike Lockwood99635f62010-06-25 23:04:04 -0400104
105 inline bool massStorageAvailable() const { return mUsbMassStorageEnabled && mUsbConnected; }
106 void notifyUmsAvailable(bool available);
San Mehatf1b736b2009-10-10 17:22:08 -0700107};
108#endif