blob: b798932faf66aa0e68a8bb4095f9daf74dc26b2b [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Bernhard Reutner-Fischer7547a6e2005-10-15 20:56:31 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Rob Landley53437472006-07-16 08:14:35 +00006 * Copyright (C) 2005 by Rob Landley <rob@landley.net>
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersenaad1a882001-03-16 22:47:14 +00009 */
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020011#include <linux/version.h>
12
13#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Eric Andersenef8cd3b2004-02-06 07:16:36 +000014
Rob Landley6a6798b2005-08-10 20:35:54 +000015/* For 2.6, use the cleaned up header to get the 64 bit API. */
Denys Vlasenko98f1dc12010-03-18 14:38:21 +010016// Commented out per Rob's request
17//# include "fix_u32.h" /* some old toolchains need __u64 for linux/loop.h */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020018# include <linux/loop.h>
Rob Landley6a6798b2005-08-10 20:35:54 +000019typedef struct loop_info64 bb_loop_info;
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020020# define BB_LOOP_SET_STATUS LOOP_SET_STATUS64
21# define BB_LOOP_GET_STATUS LOOP_GET_STATUS64
22
23#else
Eric Andersenef8cd3b2004-02-06 07:16:36 +000024
Rob Landley6a6798b2005-08-10 20:35:54 +000025/* For 2.4 and earlier, use the 32 bit API (and don't trust the headers) */
Denys Vlasenko9b1b62a2009-07-05 03:34:12 +020026/* Stuff stolen from linux/loop.h for 2.4 and earlier kernels */
27# include <linux/posix_types.h>
28# define LO_NAME_SIZE 64
29# define LO_KEY_SIZE 32
30# define LOOP_SET_FD 0x4C00
31# define LOOP_CLR_FD 0x4C01
32# define BB_LOOP_SET_STATUS 0x4C02
33# define BB_LOOP_GET_STATUS 0x4C03
Rob Landley6a6798b2005-08-10 20:35:54 +000034typedef struct {
Eric Andersenef8cd3b2004-02-06 07:16:36 +000035 int lo_number;
Rob Landley6a6798b2005-08-10 20:35:54 +000036 __kernel_dev_t lo_device;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000037 unsigned long lo_inode;
Rob Landley6a6798b2005-08-10 20:35:54 +000038 __kernel_dev_t lo_rdevice;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000039 int lo_offset;
40 int lo_encrypt_type;
41 int lo_encrypt_key_size;
42 int lo_flags;
Rob Landley6a6798b2005-08-10 20:35:54 +000043 char lo_file_name[LO_NAME_SIZE];
Eric Andersenef8cd3b2004-02-06 07:16:36 +000044 unsigned char lo_encrypt_key[LO_KEY_SIZE];
45 unsigned long lo_init[2];
46 char reserved[4];
Rob Landley6a6798b2005-08-10 20:35:54 +000047} bb_loop_info;
48#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000049
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000050char* FAST_FUNC query_loop(const char *device)
Eric Andersenaad1a882001-03-16 22:47:14 +000051{
Rob Landley1d589b22005-11-29 23:47:10 +000052 int fd;
53 bb_loop_info loopinfo;
Denys Vlasenko44fbfa72010-03-05 13:20:28 +010054 char *dev = NULL;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000055
Denis Vlasenko13858992006-10-08 12:49:22 +000056 fd = open(device, O_RDONLY);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +010057 if (fd >= 0) {
58 if (ioctl(fd, BB_LOOP_GET_STATUS, &loopinfo) == 0) {
Denys Vlasenko92510142010-05-19 00:39:17 +020059 dev = xasprintf("%"OFF_FMT"u %s", (off_t) loopinfo.lo_offset,
Denys Vlasenko44fbfa72010-03-05 13:20:28 +010060 (char *)loopinfo.lo_file_name);
61 }
62 close(fd);
63 }
Eric Andersenaad1a882001-03-16 22:47:14 +000064
Rob Landley1d589b22005-11-29 23:47:10 +000065 return dev;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000066}
Rob Landley1d589b22005-11-29 23:47:10 +000067
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000068int FAST_FUNC del_loop(const char *device)
Rob Landley1d589b22005-11-29 23:47:10 +000069{
70 int fd, rc;
71
Denis Vlasenko13858992006-10-08 12:49:22 +000072 fd = open(device, O_RDONLY);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +010073 if (fd < 0)
74 return 1;
Denis Vlasenko13858992006-10-08 12:49:22 +000075 rc = ioctl(fd, LOOP_CLR_FD, 0);
Rob Landley1d589b22005-11-29 23:47:10 +000076 close(fd);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000077
Rob Landley6a6798b2005-08-10 20:35:54 +000078 return rc;
Eric Andersenaad1a882001-03-16 22:47:14 +000079}
80
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000081/* Returns 0 if mounted RW, 1 if mounted read-only, <0 for error.
82 *device is loop device to use, or if *device==NULL finds a loop device to
83 mount it on and sets *device to a strdup of that loop device name. This
84 search will re-use an existing loop device already bound to that
85 file/offset if it finds one.
86 */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000087int FAST_FUNC set_loop(char **device, const char *file, unsigned long long offset)
Eric Andersenaad1a882001-03-16 22:47:14 +000088{
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +000089 char dev[LOOP_NAMESIZE];
90 char *try;
Rob Landley6a6798b2005-08-10 20:35:54 +000091 bb_loop_info loopinfo;
Eric Andersenaad1a882001-03-16 22:47:14 +000092 struct stat statbuf;
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000093 int i, dfd, ffd, mode, rc = -1;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000094
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000095 /* Open the file. Barf if this doesn't work. */
Denis Vlasenko13858992006-10-08 12:49:22 +000096 mode = O_RDWR;
97 ffd = open(file, mode);
98 if (ffd < 0) {
99 mode = O_RDONLY;
100 ffd = open(file, mode);
101 if (ffd < 0)
102 return -errno;
103 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000104
105 /* Find a loop device. */
Denys Vlasenko90a99042009-09-06 02:36:23 +0200106 try = *device ? *device : dev;
Denys Vlasenkob9dd5ab2010-04-14 13:52:41 -0700107 /* 1048575 is a max possible minor number in Linux circa 2010 */
108 for (i = 0; rc && i < 1048576; i++) {
Rob Landleyb70ccd92006-01-22 23:17:18 +0000109 sprintf(dev, LOOP_FORMAT, i);
Rob Landleyaae8b342006-03-18 02:38:10 +0000110
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700111 IF_FEATURE_MOUNT_LOOP_CREATE(errno = 0;)
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100112 if (stat(try, &statbuf) != 0 || !S_ISBLK(statbuf.st_mode)) {
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700113 if (ENABLE_FEATURE_MOUNT_LOOP_CREATE
114 && errno == ENOENT
115 && try == dev
116 ) {
117 /* Node doesn't exist, try to create it. */
118 if (mknod(dev, S_IFBLK|0644, makedev(7, i)) == 0)
119 goto try_to_open;
120 }
121 /* Ran out of block devices, return failure. */
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000122 rc = -ENOENT;
Rob Landley6a6798b2005-08-10 20:35:54 +0000123 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000124 }
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700125 try_to_open:
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000126 /* Open the sucker and check its loopiness. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000127 dfd = open(try, mode);
128 if (dfd < 0 && errno == EROFS) {
129 mode = O_RDONLY;
130 dfd = open(try, mode);
131 }
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000132 if (dfd < 0)
133 goto try_again;
Eric Andersenaad1a882001-03-16 22:47:14 +0000134
Denis Vlasenko13858992006-10-08 12:49:22 +0000135 rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000136
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000137 /* If device is free, claim it. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000138 if (rc && errno == ENXIO) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000139 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000140 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000141 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000142 /* Associate free loop device with file. */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100143 if (ioctl(dfd, LOOP_SET_FD, ffd) == 0) {
144 if (ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo) == 0)
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000145 rc = 0;
146 else
147 ioctl(dfd, LOOP_CLR_FD, 0);
Rob Landley934da822006-06-25 15:29:12 +0000148 }
Rob Landleyaae8b342006-03-18 02:38:10 +0000149
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000150 /* If this block device already set up right, re-use it.
151 (Yes this is racy, but associating two loop devices with the same
152 file isn't pretty either. In general, mounting the same file twice
153 without using losetup manually is problematic.)
154 */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100155 } else
156 if (strcmp(file, (char *)loopinfo.lo_file_name) != 0
157 || offset != loopinfo.lo_offset
158 ) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000159 rc = -1;
160 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000161 close(dfd);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000162 try_again:
Denis Vlasenko13858992006-10-08 12:49:22 +0000163 if (*device) break;
Rob Landley6a6798b2005-08-10 20:35:54 +0000164 }
165 close(ffd);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100166 if (rc == 0) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000167 if (!*device)
168 *device = xstrdup(dev);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000169 return (mode == O_RDONLY); /* 1:ro, 0:rw */
Denis Vlasenko13858992006-10-08 12:49:22 +0000170 }
171 return rc;
Rob Landley6a6798b2005-08-10 20:35:54 +0000172}