blob: b3a520848181ab7abfe4bf97979c81bceffa8198 [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 */
Denys Vlasenko13e709c2011-09-12 02:13:47 +020087int FAST_FUNC set_loop(char **device, const char *file, unsigned long long offset, int ro)
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. */
Denys Vlasenko13e709c2011-09-12 02:13:47 +020096 mode = ro ? O_RDONLY : O_RDWR;
Denis Vlasenko13858992006-10-08 12:49:22 +000097 ffd = open(file, mode);
98 if (ffd < 0) {
Denys Vlasenko13e709c2011-09-12 02:13:47 +020099 if (mode != O_RDONLY) {
100 mode = O_RDONLY;
101 ffd = open(file, mode);
102 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000103 if (ffd < 0)
104 return -errno;
105 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000106
107 /* Find a loop device. */
Denys Vlasenko90a99042009-09-06 02:36:23 +0200108 try = *device ? *device : dev;
Denys Vlasenkob9dd5ab2010-04-14 13:52:41 -0700109 /* 1048575 is a max possible minor number in Linux circa 2010 */
110 for (i = 0; rc && i < 1048576; i++) {
Rob Landleyb70ccd92006-01-22 23:17:18 +0000111 sprintf(dev, LOOP_FORMAT, i);
Rob Landleyaae8b342006-03-18 02:38:10 +0000112
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700113 IF_FEATURE_MOUNT_LOOP_CREATE(errno = 0;)
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100114 if (stat(try, &statbuf) != 0 || !S_ISBLK(statbuf.st_mode)) {
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700115 if (ENABLE_FEATURE_MOUNT_LOOP_CREATE
116 && errno == ENOENT
117 && try == dev
118 ) {
119 /* Node doesn't exist, try to create it. */
120 if (mknod(dev, S_IFBLK|0644, makedev(7, i)) == 0)
121 goto try_to_open;
122 }
123 /* Ran out of block devices, return failure. */
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000124 rc = -ENOENT;
Rob Landley6a6798b2005-08-10 20:35:54 +0000125 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000126 }
Lauri Kasanen375a8ef2010-04-14 12:31:26 -0700127 try_to_open:
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000128 /* Open the sucker and check its loopiness. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000129 dfd = open(try, mode);
130 if (dfd < 0 && errno == EROFS) {
131 mode = O_RDONLY;
132 dfd = open(try, mode);
133 }
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000134 if (dfd < 0)
135 goto try_again;
Eric Andersenaad1a882001-03-16 22:47:14 +0000136
Denis Vlasenko13858992006-10-08 12:49:22 +0000137 rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000138
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000139 /* If device is free, claim it. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000140 if (rc && errno == ENXIO) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000141 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000142 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000143 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000144 /* Associate free loop device with file. */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100145 if (ioctl(dfd, LOOP_SET_FD, ffd) == 0) {
146 if (ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo) == 0)
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000147 rc = 0;
148 else
149 ioctl(dfd, LOOP_CLR_FD, 0);
Rob Landley934da822006-06-25 15:29:12 +0000150 }
Rob Landleyaae8b342006-03-18 02:38:10 +0000151
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000152 /* If this block device already set up right, re-use it.
153 (Yes this is racy, but associating two loop devices with the same
154 file isn't pretty either. In general, mounting the same file twice
155 without using losetup manually is problematic.)
156 */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100157 } else
158 if (strcmp(file, (char *)loopinfo.lo_file_name) != 0
159 || offset != loopinfo.lo_offset
160 ) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000161 rc = -1;
162 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000163 close(dfd);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000164 try_again:
Denis Vlasenko13858992006-10-08 12:49:22 +0000165 if (*device) break;
Rob Landley6a6798b2005-08-10 20:35:54 +0000166 }
167 close(ffd);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100168 if (rc == 0) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000169 if (!*device)
170 *device = xstrdup(dev);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000171 return (mode == O_RDONLY); /* 1:ro, 0:rw */
Denis Vlasenko13858992006-10-08 12:49:22 +0000172 }
173 return rc;
Rob Landley6a6798b2005-08-10 20:35:54 +0000174}