VolumeManager.h 4.99 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 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>

22
#ifdef __cplusplus
23 24 25 26 27
#include <utils/List.h>
#include <sysutils/SocketListener.h>

#include "Volume.h"

28 29 30
/* 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
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
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;
52

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

private:
    SocketListener        *mBroadcaster;

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

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

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

    int start();
    int stop();

76
    void handleBlockEvent(NetlinkEvent *evt);
77 78 79 80

    int addVolume(Volume *v);

    int listVolumes(SocketClient *cli);
81
    int mountVolume(const char *label);
82
    int unmountVolume(const char *label, bool force, bool revert);
83 84
    int shareVolume(const char *label, const char *method);
    int unshareVolume(const char *label, const char *method);
San Mehat's avatar
San Mehat committed
85
    int shareEnabled(const char *path, const char *method, bool *enabled);
86
    int formatVolume(const char *label);
87
    void disableVolumeManager(void) { mVolManagerDisabled = 1; }
88 89

    /* ASEC */
90 91
    int findAsec(const char *id, char *asecPath = NULL, size_t asecPathLen = 0,
            const char **directory = NULL) const;
92
    int createAsec(const char *id, unsigned numSectors, const char *fstype,
93
                   const char *key, const int ownerUid, bool isExternal);
94
    int finalizeAsec(const char *id);
95 96 97 98 99 100 101 102 103 104 105 106

    /**
     * Fixes ASEC permissions on a filesystem that has owners and permissions.
     * This currently means EXT4-based ASEC containers.
     *
     * There is a single file that can be marked as "private" and will not have
     * world-readable permission. The group for that file will be set to the gid
     * supplied.
     *
     * Returns 0 on success.
     */
    int fixupAsecPermissions(const char *id, gid_t gid, const char* privateFilename);
107
    int destroyAsec(const char *id, bool force);
108
    int mountAsec(const char *id, const char *key, int ownerUid);
109
    int unmountAsec(const char *id, bool force);
110
    int renameAsec(const char *id1, const char *id2);
111
    int getAsecMountPath(const char *id, char *buffer, int maxlen);
112
    int getAsecFilesystemPath(const char *id, char *buffer, int maxlen);
113

114
    /* Loopback images */
Kenny Root's avatar
Kenny Root committed
115 116 117 118
    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);
119

120 121
    Volume* getVolumeForFile(const char *fileName);

122 123 124 125
    /* 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
126 127
    void setDebug(bool enable);

128 129
    // XXX: Post froyo this should be moved and cleaned up
    int cleanupAsec(Volume *v, bool force);
130

131 132 133 134 135
    void setBroadcaster(SocketListener *sl) { mBroadcaster = sl; }
    SocketListener *getBroadcaster() { return mBroadcaster; }

    static VolumeManager *Instance();

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

138 139 140
    Volume *lookupVolume(const char *label);
    int getNumDirectVolumes(void);
    int getDirectVolumeList(struct volume_info *vol_list);
141
    int unmountAllAsecsInDir(const char *directory);
142

143 144
private:
    VolumeManager();
145
    void readInitialState();
146
    bool isMountpointMounted(const char *mp);
147
    bool isAsecInDirectory(const char *dir, const char *asec) const;
148
};
149 150 151

extern "C" {
#endif /* __cplusplus */
152
#define UNMOUNT_NOT_MOUNTED_ERR -2
153
    int vold_disableVol(const char *label);
154 155
    int vold_getNumDirectVolumes(void);
    int vold_getDirectVolumeList(struct volume_info *v);
156
    int vold_unmountAllAsecs(void);
157 158 159 160
#ifdef __cplusplus
}
#endif

161
#endif