VolumeManager.h 4.08 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright (C) 2008 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef _VOLUMEMANAGER_H
#define _VOLUMEMANAGER_H

#include <pthread.h>

#include <utils/List.h>
#include <sysutils/SocketListener.h>

#include "Volume.h"

27 28 29
/* The length of an MD5 hash when encoded into ASCII hex characters */
#define MD5_ASCII_LENGTH_PLUS_NULL ((MD5_DIGEST_LENGTH*2)+1)

Kenny Root's avatar
Kenny Root committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
typedef enum { ASEC, OBB } container_type_t;

class ContainerData {
public:
    ContainerData(char* _id, container_type_t _type)
            : id(_id)
            , type(_type)
    {}

    ~ContainerData() {
        if (id != NULL) {
            free(id);
            id = NULL;
        }
    }

    char *id;
    container_type_t type;
};

typedef android::List<ContainerData*> AsecIdCollection;
51

52 53 54 55 56 57 58 59
class VolumeManager {
private:
    static VolumeManager *sInstance;

private:
    SocketListener        *mBroadcaster;

    VolumeCollection      *mVolumes;
60
    AsecIdCollection      *mActiveContainers;
61 62
    bool                   mUsbMassStorageEnabled;
    bool                   mUsbConnected;
San Mehat's avatar
San Mehat committed
63
    bool                   mDebug;
64

65 66 67 68 69
    // for adjusting /proc/sys/vm/dirty_ratio when UMS is active
    int                    mUmsSharingCount;
    int                    mSavedDirtyRatio;
    int                    mUmsDirtyRatio;

70 71 72 73 74 75
public:
    virtual ~VolumeManager();

    int start();
    int stop();

76
    void handleBlockEvent(NetlinkEvent *evt);
77
    void handleSwitchEvent(NetlinkEvent *evt);
78
    void handleUsbCompositeEvent(NetlinkEvent *evt);
79 80 81 82

    int addVolume(Volume *v);

    int listVolumes(SocketClient *cli);
83
    int mountVolume(const char *label);
84
    int unmountVolume(const char *label, bool force);
85 86 87
    int shareVolume(const char *label, const char *method);
    int unshareVolume(const char *label, const char *method);
    int shareAvailable(const char *method, bool *avail);
San Mehat's avatar
San Mehat committed
88
    int shareEnabled(const char *path, const char *method, bool *enabled);
89 90
    int simulate(const char *cmd, const char *arg);
    int formatVolume(const char *label);
91 92

    /* ASEC */
93
    int createAsec(const char *id, unsigned numSectors, const char *fstype,
94 95
                   const char *key, int ownerUid);
    int finalizeAsec(const char *id);
96
    int destroyAsec(const char *id, bool force);
97
    int mountAsec(const char *id, const char *key, int ownerUid);
98
    int unmountAsec(const char *id, bool force);
99
    int renameAsec(const char *id1, const char *id2);
100
    int getAsecMountPath(const char *id, char *buffer, int maxlen);
101

102
    /* Loopback images */
Kenny Root's avatar
Kenny Root committed
103 104 105 106
    int listMountedObbs(SocketClient* cli);
    int mountObb(const char *fileName, const char *key, int ownerUid);
    int unmountObb(const char *fileName, bool force);
    int getObbMountPath(const char *id, char *buffer, int maxlen);
107 108 109 110 111

    /* Shared between ASEC and Loopback images */
    int unmountLoopImage(const char *containerId, const char *loopId,
            const char *fileName, const char *mountPoint, bool force);

San Mehat's avatar
San Mehat committed
112 113
    void setDebug(bool enable);

114 115
    // XXX: Post froyo this should be moved and cleaned up
    int cleanupAsec(Volume *v, bool force);
116

117 118 119 120 121
    void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
    SocketListener *getBroadcaster() { return mBroadcaster; }

    static VolumeManager *Instance();

San Mehat's avatar
San Mehat committed
122
    static char *asecHash(const char *id, char *buffer, size_t len);
123

124 125
private:
    VolumeManager();
126
    void readInitialState();
127
    Volume *lookupVolume(const char *label);
128
    bool isMountpointMounted(const char *mp);
129 130 131

    inline bool massStorageAvailable() const { return mUsbMassStorageEnabled && mUsbConnected; }
    void notifyUmsAvailable(bool available);
132 133
};
#endif