Loop.cpp 6.12 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * 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.
 */

#include <stdio.h>
18
#include <stdlib.h>
19 20 21 22 23
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>

24 25
#include <sys/types.h>
#include <sys/stat.h>
26
#include <sys/ioctl.h>
27

San Mehat's avatar
San Mehat committed
28 29
#include <linux/kdev_t.h>

30 31 32 33
#define LOG_TAG "Vold"

#include <cutils/log.h>

San Mehat's avatar
San Mehat committed
34
#include <sysutils/SocketClient.h>
35 36
#include "Loop.h"

San Mehat's avatar
San Mehat committed
37 38 39 40 41 42
int Loop::dumpState(SocketClient *c) {
    int i;
    int fd;
    char filename[256];

    for (i = 0; i < LOOP_MAX; i++) {
Kenny Root's avatar
Kenny Root committed
43
        struct loop_info64 li;
San Mehat's avatar
San Mehat committed
44 45 46 47 48 49
        int rc;

        sprintf(filename, "/dev/block/loop%d", i);

        if ((fd = open(filename, O_RDWR)) < 0) {
            if (errno != ENOENT) {
San Mehat's avatar
San Mehat committed
50
                SLOGE("Unable to open %s (%s)", filename, strerror(errno));
San Mehat's avatar
San Mehat committed
51 52 53 54 55 56
            } else {
                continue;
            }
            return -1;
        }

Kenny Root's avatar
Kenny Root committed
57
        rc = ioctl(fd, LOOP_GET_STATUS64, &li);
San Mehat's avatar
San Mehat committed
58 59 60 61 62 63
        close(fd);
        if (rc < 0 && errno == ENXIO) {
            continue;
        }

        if (rc < 0) {
San Mehat's avatar
San Mehat committed
64
            SLOGE("Unable to get loop status for %s (%s)", filename,
San Mehat's avatar
San Mehat committed
65 66 67 68
                 strerror(errno));
            return -1;
        }
        char *tmp = NULL;
Kenny Root's avatar
Kenny Root committed
69
        asprintf(&tmp, "%s %d %lld:%lld %llu %lld:%lld %lld 0x%x {%s} {%s}", filename, li.lo_number,
San Mehat's avatar
San Mehat committed
70
                MAJOR(li.lo_device), MINOR(li.lo_device), li.lo_inode, MAJOR(li.lo_rdevice),
Kenny Root's avatar
Kenny Root committed
71 72
                        MINOR(li.lo_rdevice), li.lo_offset, li.lo_flags, li.lo_crypt_name,
                        li.lo_file_name);
San Mehat's avatar
San Mehat committed
73 74 75 76 77 78 79
        c->sendMsg(0, tmp, false);
        free(tmp);
    }
    return 0;
}

int Loop::lookupActive(const char *id, char *buffer, size_t len) {
80 81 82 83 84 85 86
    int i;
    int fd;
    char filename[256];

    memset(buffer, 0, len);

    for (i = 0; i < LOOP_MAX; i++) {
Kenny Root's avatar
Kenny Root committed
87
        struct loop_info64 li;
88 89 90 91 92
        int rc;

        sprintf(filename, "/dev/block/loop%d", i);

        if ((fd = open(filename, O_RDWR)) < 0) {
93
            if (errno != ENOENT) {
San Mehat's avatar
San Mehat committed
94
                SLOGE("Unable to open %s (%s)", filename, strerror(errno));
San Mehat's avatar
San Mehat committed
95 96
            } else {
                continue;
97
            }
98 99 100
            return -1;
        }

Kenny Root's avatar
Kenny Root committed
101
        rc = ioctl(fd, LOOP_GET_STATUS64, &li);
102 103 104 105 106 107
        close(fd);
        if (rc < 0 && errno == ENXIO) {
            continue;
        }

        if (rc < 0) {
San Mehat's avatar
San Mehat committed
108
            SLOGE("Unable to get loop status for %s (%s)", filename,
109 110 111
                 strerror(errno));
            return -1;
        }
Kenny Root's avatar
Kenny Root committed
112
        if (!strncmp((const char*) li.lo_crypt_name, id, LO_NAME_SIZE)) {
113 114 115 116 117 118 119 120 121 122 123 124
            break;
        }
    }

    if (i == LOOP_MAX) {
        errno = ENOENT;
        return -1;
    }
    strncpy(buffer, filename, len -1);
    return 0;
}

San Mehat's avatar
San Mehat committed
125
int Loop::create(const char *id, const char *loopFile, char *loopDeviceBuffer, size_t len) {
126 127 128 129 130
    int i;
    int fd;
    char filename[256];

    for (i = 0; i < LOOP_MAX; i++) {
131
        struct loop_info64 li;
132 133 134 135
        int rc;

        sprintf(filename, "/dev/block/loop%d", i);

136 137 138 139 140
        /*
         * The kernel starts us off with 8 loop nodes, but more
         * are created on-demand if needed.
         */
        mode_t mode = 0660 | S_IFBLK;
141
        unsigned int dev = (0xff & i) | ((i << 12) & 0xfff00000) | (7 << 8);
142 143
        if (mknod(filename, mode, dev) < 0) {
            if (errno != EEXIST) {
San Mehat's avatar
San Mehat committed
144
                SLOGE("Error creating loop device node (%s)", strerror(errno));
145 146 147 148
                return -1;
            }
        }

149
        if ((fd = open(filename, O_RDWR)) < 0) {
San Mehat's avatar
San Mehat committed
150
            SLOGE("Unable to open %s (%s)", filename, strerror(errno));
151 152 153
            return -1;
        }

154
        rc = ioctl(fd, LOOP_GET_STATUS64, &li);
155 156 157
        if (rc < 0 && errno == ENXIO)
            break;

158 159
        close(fd);

160
        if (rc < 0) {
San Mehat's avatar
San Mehat committed
161
            SLOGE("Unable to get loop status for %s (%s)", filename,
162 163 164 165 166 167
                 strerror(errno));
            return -1;
        }
    }

    if (i == LOOP_MAX) {
San Mehat's avatar
San Mehat committed
168
        SLOGE("Exhausted all loop devices");
169 170 171 172
        errno = ENOSPC;
        return -1;
    }

173
    strncpy(loopDeviceBuffer, filename, len -1);
174

175
    int file_fd;
176 177

    if ((file_fd = open(loopFile, O_RDWR)) < 0) {
San Mehat's avatar
San Mehat committed
178
        SLOGE("Unable to open %s (%s)", loopFile, strerror(errno));
179 180 181 182 183
        close(fd);
        return -1;
    }

    if (ioctl(fd, LOOP_SET_FD, file_fd) < 0) {
San Mehat's avatar
San Mehat committed
184
        SLOGE("Error setting up loopback interface (%s)", strerror(errno));
185 186 187 188 189
        close(file_fd);
        close(fd);
        return -1;
    }

Kenny Root's avatar
Kenny Root committed
190
    struct loop_info64 li;
191 192

    memset(&li, 0, sizeof(li));
Peter Bohm's avatar
Peter Bohm committed
193 194
    strlcpy((char*) li.lo_crypt_name, id, LO_NAME_SIZE);
    strlcpy((char*) li.lo_file_name, loopFile, LO_NAME_SIZE);
195

Kenny Root's avatar
Kenny Root committed
196
    if (ioctl(fd, LOOP_SET_STATUS64, &li) < 0) {
San Mehat's avatar
San Mehat committed
197
        SLOGE("Error setting loopback status (%s)", strerror(errno));
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
        close(file_fd);
        close(fd);
        return -1;
    }

    close(fd);
    close(file_fd);

    return 0;
}

int Loop::destroyByDevice(const char *loopDevice) {
    int device_fd;

    device_fd = open(loopDevice, O_RDONLY);
    if (device_fd < 0) {
San Mehat's avatar
San Mehat committed
214
        SLOGE("Failed to open loop (%d)", errno);
215 216 217 218
        return -1;
    }

    if (ioctl(device_fd, LOOP_CLR_FD, 0) < 0) {
San Mehat's avatar
San Mehat committed
219
        SLOGE("Failed to destroy loop (%d)", errno);
220 221 222 223 224 225 226 227 228 229 230 231 232
        close(device_fd);
        return -1;
    }

    close(device_fd);
    return 0;
}

int Loop::destroyByFile(const char *loopFile) {
    errno = ENOSYS;
    return -1;
}

233
int Loop::createImageFile(const char *file, unsigned int numSectors) {
234 235 236
    int fd;

    if ((fd = creat(file, 0600)) < 0) {
San Mehat's avatar
San Mehat committed
237
        SLOGE("Error creating imagefile (%s)", strerror(errno));
238 239 240
        return -1;
    }

241
    if (ftruncate(fd, numSectors * 512) < 0) {
San Mehat's avatar
San Mehat committed
242
        SLOGE("Error truncating imagefile (%s)", strerror(errno));
243 244 245 246 247 248
        close(fd);
        return -1;
    }
    close(fd);
    return 0;
}