blob: 11278170b6bfed5bc23a0d7a2327611de0d648d8 [file] [log] [blame]
San Mehata19b2502010-01-06 10:33:53 -08001/*
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#include <stdio.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080018#include <stdlib.h>
San Mehata19b2502010-01-06 10:33:53 -080019#include <fcntl.h>
20#include <unistd.h>
21#include <errno.h>
22#include <string.h>
23
Kenny Root344ca102012-04-03 17:23:01 -070024#include <sys/mount.h>
San Mehat8da6bcb2010-01-09 12:24:05 -080025#include <sys/types.h>
26#include <sys/stat.h>
Olivier Bailly37dcda62010-11-16 10:41:53 -080027#include <sys/ioctl.h>
San Mehat8da6bcb2010-01-09 12:24:05 -080028
San Mehatd9a4e352010-03-12 13:32:47 -080029#include <linux/kdev_t.h>
30
San Mehata19b2502010-01-06 10:33:53 -080031#define LOG_TAG "Vold"
32
33#include <cutils/log.h>
34
San Mehatd9a4e352010-03-12 13:32:47 -080035#include <sysutils/SocketClient.h>
San Mehata19b2502010-01-06 10:33:53 -080036#include "Loop.h"
Kenny Root344ca102012-04-03 17:23:01 -070037#include "Asec.h"
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +090038#include "VoldUtil.h"
Stephen Smalley684e6622014-09-30 10:29:24 -040039#include "sehandle.h"
San Mehata19b2502010-01-06 10:33:53 -080040
San Mehatd9a4e352010-03-12 13:32:47 -080041int Loop::dumpState(SocketClient *c) {
42 int i;
43 int fd;
44 char filename[256];
45
46 for (i = 0; i < LOOP_MAX; i++) {
Kenny Root508c0e12010-07-12 09:59:49 -070047 struct loop_info64 li;
San Mehatd9a4e352010-03-12 13:32:47 -080048 int rc;
49
George Burgess IV605d7ae2016-02-29 13:39:17 -080050 snprintf(filename, sizeof(filename), "/dev/block/loop%d", i);
San Mehatd9a4e352010-03-12 13:32:47 -080051
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070052 if ((fd = open(filename, O_RDWR | O_CLOEXEC)) < 0) {
San Mehatd9a4e352010-03-12 13:32:47 -080053 if (errno != ENOENT) {
San Mehat97ac40e2010-03-24 10:24:19 -070054 SLOGE("Unable to open %s (%s)", filename, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -080055 } else {
56 continue;
57 }
58 return -1;
59 }
60
Kenny Root508c0e12010-07-12 09:59:49 -070061 rc = ioctl(fd, LOOP_GET_STATUS64, &li);
San Mehatd9a4e352010-03-12 13:32:47 -080062 close(fd);
63 if (rc < 0 && errno == ENXIO) {
64 continue;
65 }
66
67 if (rc < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -070068 SLOGE("Unable to get loop status for %s (%s)", filename,
San Mehatd9a4e352010-03-12 13:32:47 -080069 strerror(errno));
70 return -1;
71 }
72 char *tmp = NULL;
Kenny Root508c0e12010-07-12 09:59:49 -070073 asprintf(&tmp, "%s %d %lld:%lld %llu %lld:%lld %lld 0x%x {%s} {%s}", filename, li.lo_number,
San Mehatd9a4e352010-03-12 13:32:47 -080074 MAJOR(li.lo_device), MINOR(li.lo_device), li.lo_inode, MAJOR(li.lo_rdevice),
Kenny Root508c0e12010-07-12 09:59:49 -070075 MINOR(li.lo_rdevice), li.lo_offset, li.lo_flags, li.lo_crypt_name,
76 li.lo_file_name);
San Mehatd9a4e352010-03-12 13:32:47 -080077 c->sendMsg(0, tmp, false);
78 free(tmp);
79 }
80 return 0;
81}
82
83int Loop::lookupActive(const char *id, char *buffer, size_t len) {
San Mehata19b2502010-01-06 10:33:53 -080084 int i;
85 int fd;
86 char filename[256];
87
88 memset(buffer, 0, len);
89
90 for (i = 0; i < LOOP_MAX; i++) {
Kenny Root508c0e12010-07-12 09:59:49 -070091 struct loop_info64 li;
San Mehata19b2502010-01-06 10:33:53 -080092 int rc;
93
George Burgess IV605d7ae2016-02-29 13:39:17 -080094 snprintf(filename, sizeof(filename), "/dev/block/loop%d", i);
San Mehata19b2502010-01-06 10:33:53 -080095
Jeff Sharkeyce6a9132015-04-08 21:07:21 -070096 if ((fd = open(filename, O_RDWR | O_CLOEXEC)) < 0) {
San Mehatb78a32c2010-01-10 13:02:12 -080097 if (errno != ENOENT) {
San Mehat97ac40e2010-03-24 10:24:19 -070098 SLOGE("Unable to open %s (%s)", filename, strerror(errno));
San Mehatd9a4e352010-03-12 13:32:47 -080099 } else {
100 continue;
San Mehatb78a32c2010-01-10 13:02:12 -0800101 }
San Mehata19b2502010-01-06 10:33:53 -0800102 return -1;
103 }
104
Kenny Root508c0e12010-07-12 09:59:49 -0700105 rc = ioctl(fd, LOOP_GET_STATUS64, &li);
San Mehata19b2502010-01-06 10:33:53 -0800106 if (rc < 0 && errno == ENXIO) {
tao.peia1038a92015-08-17 20:18:49 +0800107 close(fd);
San Mehata19b2502010-01-06 10:33:53 -0800108 continue;
San Mehata19b2502010-01-06 10:33:53 -0800109 }
tao.peia1038a92015-08-17 20:18:49 +0800110 close(fd);
San Mehata19b2502010-01-06 10:33:53 -0800111
112 if (rc < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700113 SLOGE("Unable to get loop status for %s (%s)", filename,
San Mehata19b2502010-01-06 10:33:53 -0800114 strerror(errno));
115 return -1;
116 }
Kenny Root508c0e12010-07-12 09:59:49 -0700117 if (!strncmp((const char*) li.lo_crypt_name, id, LO_NAME_SIZE)) {
San Mehata19b2502010-01-06 10:33:53 -0800118 break;
119 }
120 }
121
122 if (i == LOOP_MAX) {
123 errno = ENOENT;
124 return -1;
125 }
Henrik Baard21522662015-02-06 09:24:14 +0100126 strlcpy(buffer, filename, len);
San Mehata19b2502010-01-06 10:33:53 -0800127 return 0;
128}
129
San Mehatd9a4e352010-03-12 13:32:47 -0800130int Loop::create(const char *id, const char *loopFile, char *loopDeviceBuffer, size_t len) {
San Mehata19b2502010-01-06 10:33:53 -0800131 int i;
132 int fd;
133 char filename[256];
134
San Mehata19b2502010-01-06 10:33:53 -0800135 for (i = 0; i < LOOP_MAX; i++) {
Kenny Root7c165022011-02-01 15:58:25 -0800136 struct loop_info64 li;
San Mehata19b2502010-01-06 10:33:53 -0800137 int rc;
Stephen Smalley684e6622014-09-30 10:29:24 -0400138 char *secontext = NULL;
San Mehata19b2502010-01-06 10:33:53 -0800139
George Burgess IV605d7ae2016-02-29 13:39:17 -0800140 snprintf(filename, sizeof(filename), "/dev/block/loop%d", i);
San Mehata19b2502010-01-06 10:33:53 -0800141
San Mehat8da6bcb2010-01-09 12:24:05 -0800142 /*
143 * The kernel starts us off with 8 loop nodes, but more
144 * are created on-demand if needed.
145 */
146 mode_t mode = 0660 | S_IFBLK;
San Mehatb78a32c2010-01-10 13:02:12 -0800147 unsigned int dev = (0xff & i) | ((i << 12) & 0xfff00000) | (7 << 8);
Stephen Smalley684e6622014-09-30 10:29:24 -0400148
149 if (sehandle) {
150 rc = selabel_lookup(sehandle, &secontext, filename, S_IFBLK);
151 if (rc == 0)
152 setfscreatecon(secontext);
153 }
154
San Mehat8da6bcb2010-01-09 12:24:05 -0800155 if (mknod(filename, mode, dev) < 0) {
156 if (errno != EEXIST) {
Stephen Smalley684e6622014-09-30 10:29:24 -0400157 int sverrno = errno;
San Mehat97ac40e2010-03-24 10:24:19 -0700158 SLOGE("Error creating loop device node (%s)", strerror(errno));
Stephen Smalley684e6622014-09-30 10:29:24 -0400159 if (secontext) {
160 freecon(secontext);
161 setfscreatecon(NULL);
162 }
163 errno = sverrno;
San Mehat8da6bcb2010-01-09 12:24:05 -0800164 return -1;
165 }
166 }
Stephen Smalley684e6622014-09-30 10:29:24 -0400167 if (secontext) {
168 freecon(secontext);
169 setfscreatecon(NULL);
170 }
San Mehat8da6bcb2010-01-09 12:24:05 -0800171
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700172 if ((fd = open(filename, O_RDWR | O_CLOEXEC)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700173 SLOGE("Unable to open %s (%s)", filename, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800174 return -1;
175 }
176
Kenny Root7c165022011-02-01 15:58:25 -0800177 rc = ioctl(fd, LOOP_GET_STATUS64, &li);
San Mehata19b2502010-01-06 10:33:53 -0800178 if (rc < 0 && errno == ENXIO)
179 break;
180
San Mehat8da6bcb2010-01-09 12:24:05 -0800181 close(fd);
182
San Mehata19b2502010-01-06 10:33:53 -0800183 if (rc < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700184 SLOGE("Unable to get loop status for %s (%s)", filename,
San Mehata19b2502010-01-06 10:33:53 -0800185 strerror(errno));
186 return -1;
187 }
188 }
189
190 if (i == LOOP_MAX) {
San Mehat97ac40e2010-03-24 10:24:19 -0700191 SLOGE("Exhausted all loop devices");
San Mehata19b2502010-01-06 10:33:53 -0800192 errno = ENOSPC;
193 return -1;
194 }
San Mehata19b2502010-01-06 10:33:53 -0800195
Henrik Baard21522662015-02-06 09:24:14 +0100196 strlcpy(loopDeviceBuffer, filename, len);
San Mehat8da6bcb2010-01-09 12:24:05 -0800197
San Mehata19b2502010-01-06 10:33:53 -0800198 int file_fd;
199
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700200 if ((file_fd = open(loopFile, O_RDWR | O_CLOEXEC)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700201 SLOGE("Unable to open %s (%s)", loopFile, strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800202 close(fd);
203 return -1;
204 }
205
206 if (ioctl(fd, LOOP_SET_FD, file_fd) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700207 SLOGE("Error setting up loopback interface (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800208 close(file_fd);
209 close(fd);
210 return -1;
211 }
212
Kenny Root508c0e12010-07-12 09:59:49 -0700213 struct loop_info64 li;
San Mehata19b2502010-01-06 10:33:53 -0800214
215 memset(&li, 0, sizeof(li));
Peter Bohm092aa1c2011-04-01 12:35:25 +0200216 strlcpy((char*) li.lo_crypt_name, id, LO_NAME_SIZE);
217 strlcpy((char*) li.lo_file_name, loopFile, LO_NAME_SIZE);
San Mehata19b2502010-01-06 10:33:53 -0800218
Kenny Root508c0e12010-07-12 09:59:49 -0700219 if (ioctl(fd, LOOP_SET_STATUS64, &li) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700220 SLOGE("Error setting loopback status (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800221 close(file_fd);
222 close(fd);
223 return -1;
224 }
225
226 close(fd);
227 close(file_fd);
228
229 return 0;
230}
231
232int Loop::destroyByDevice(const char *loopDevice) {
233 int device_fd;
234
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700235 device_fd = open(loopDevice, O_RDONLY | O_CLOEXEC);
San Mehata19b2502010-01-06 10:33:53 -0800236 if (device_fd < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700237 SLOGE("Failed to open loop (%d)", errno);
San Mehata19b2502010-01-06 10:33:53 -0800238 return -1;
239 }
240
241 if (ioctl(device_fd, LOOP_CLR_FD, 0) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700242 SLOGE("Failed to destroy loop (%d)", errno);
San Mehata19b2502010-01-06 10:33:53 -0800243 close(device_fd);
244 return -1;
245 }
246
247 close(device_fd);
248 return 0;
249}
250
Mark Salyzyn3e971272014-01-21 13:27:04 -0800251int Loop::destroyByFile(const char * /*loopFile*/) {
San Mehata19b2502010-01-06 10:33:53 -0800252 errno = ENOSYS;
253 return -1;
254}
255
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200256int Loop::createImageFile(const char *file, unsigned long numSectors) {
San Mehata19b2502010-01-06 10:33:53 -0800257 int fd;
258
San Mehata19b2502010-01-06 10:33:53 -0800259 if ((fd = creat(file, 0600)) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700260 SLOGE("Error creating imagefile (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800261 return -1;
262 }
263
San Mehat8b8f71b2010-01-11 09:17:25 -0800264 if (ftruncate(fd, numSectors * 512) < 0) {
San Mehat97ac40e2010-03-24 10:24:19 -0700265 SLOGE("Error truncating imagefile (%s)", strerror(errno));
San Mehata19b2502010-01-06 10:33:53 -0800266 close(fd);
267 return -1;
268 }
269 close(fd);
270 return 0;
271}
Kenny Root344ca102012-04-03 17:23:01 -0700272
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200273int Loop::resizeImageFile(const char *file, unsigned long numSectors) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700274 int fd;
275
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700276 if ((fd = open(file, O_RDWR | O_CLOEXEC)) < 0) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700277 SLOGE("Error opening imagefile (%s)", strerror(errno));
278 return -1;
279 }
280
Mateusz Nowaka4f48d02015-08-03 18:06:39 +0200281 SLOGD("Attempting to increase size of %s to %lu sectors.", file, numSectors);
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700282
283 if (fallocate(fd, 0, 0, numSectors * 512)) {
Jeff Sharkey43ed1232014-08-22 12:29:05 -0700284 if (errno == ENOSYS || errno == ENOTSUP) {
Daniel Rosenbergfcd34a02014-05-22 11:23:56 -0700285 SLOGW("fallocate not found. Falling back to ftruncate.");
286 if (ftruncate(fd, numSectors * 512) < 0) {
287 SLOGE("Error truncating imagefile (%s)", strerror(errno));
288 close(fd);
289 return -1;
290 }
291 } else {
292 SLOGE("Error allocating space (%s)", strerror(errno));
293 close(fd);
294 return -1;
295 }
296 }
297 close(fd);
298 return 0;
299}
300
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +0900301int Loop::lookupInfo(const char *loopDevice, struct asec_superblock *sb, unsigned long *nr_sec) {
Kenny Root344ca102012-04-03 17:23:01 -0700302 int fd;
303 struct asec_superblock buffer;
304
Jeff Sharkeyce6a9132015-04-08 21:07:21 -0700305 if ((fd = open(loopDevice, O_RDONLY | O_CLOEXEC)) < 0) {
Kenny Root344ca102012-04-03 17:23:01 -0700306 SLOGE("Failed to open loopdevice (%s)", strerror(errno));
307 destroyByDevice(loopDevice);
308 return -1;
309 }
310
Hiroaki Miyazawa14eab552015-02-04 13:29:15 +0900311 get_blkdev_size(fd, nr_sec);
312 if (*nr_sec == 0) {
Kenny Root344ca102012-04-03 17:23:01 -0700313 SLOGE("Failed to get loop size (%s)", strerror(errno));
314 destroyByDevice(loopDevice);
315 close(fd);
316 return -1;
317 }
318
319 /*
320 * Try to read superblock.
321 */
322 memset(&buffer, 0, sizeof(struct asec_superblock));
323 if (lseek(fd, ((*nr_sec - 1) * 512), SEEK_SET) < 0) {
324 SLOGE("lseek failed (%s)", strerror(errno));
325 close(fd);
326 destroyByDevice(loopDevice);
327 return -1;
328 }
329 if (read(fd, &buffer, sizeof(struct asec_superblock)) != sizeof(struct asec_superblock)) {
330 SLOGE("superblock read failed (%s)", strerror(errno));
331 close(fd);
332 destroyByDevice(loopDevice);
333 return -1;
334 }
335 close(fd);
336
337 /*
338 * Superblock successfully read. Copy to caller's struct.
339 */
340 memcpy(sb, &buffer, sizeof(struct asec_superblock));
341 return 0;
342}