blob: d30b378d7541d5ab4bff00a0b12082f317b57486 [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;
Denys Vlasenkofa6ab562014-01-21 13:44:21 +010097 open_ffd:
Denis Vlasenko13858992006-10-08 12:49:22 +000098 ffd = open(file, mode);
99 if (ffd < 0) {
Denys Vlasenko13e709c2011-09-12 02:13:47 +0200100 if (mode != O_RDONLY) {
101 mode = O_RDONLY;
Denys Vlasenkofa6ab562014-01-21 13:44:21 +0100102 goto open_ffd;
Denys Vlasenko13e709c2011-09-12 02:13:47 +0200103 }
Denys Vlasenkofa6ab562014-01-21 13:44:21 +0100104 return -errno;
Denis Vlasenko13858992006-10-08 12:49:22 +0000105 }
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 Vlasenkofa6ab562014-01-21 13:44:21 +0100109 /* 1048575 (0xfffff) is a max possible minor number in Linux circa 2010 */
Denys Vlasenkob9dd5ab2010-04-14 13:52:41 -0700110 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. */
Denys Vlasenkofa6ab562014-01-21 13:44:21 +0100124 rc = -1;
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 }
Denys Vlasenkofa6ab562014-01-21 13:44:21 +0100134 if (dfd < 0) {
135 if (errno == ENXIO) {
136 /* Happens if loop module is not loaded */
137 rc = -1;
138 break;
139 }
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000140 goto try_again;
Denys Vlasenkofa6ab562014-01-21 13:44:21 +0100141 }
Eric Andersenaad1a882001-03-16 22:47:14 +0000142
Denis Vlasenko13858992006-10-08 12:49:22 +0000143 rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000144
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000145 /* If device is free, claim it. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000146 if (rc && errno == ENXIO) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000147 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000148 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000149 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000150 /* Associate free loop device with file. */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100151 if (ioctl(dfd, LOOP_SET_FD, ffd) == 0) {
152 if (ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo) == 0)
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000153 rc = 0;
154 else
155 ioctl(dfd, LOOP_CLR_FD, 0);
Rob Landley934da822006-06-25 15:29:12 +0000156 }
Kevin Wallace782ee2a2015-02-03 16:17:29 -0800157 } else {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000158 rc = -1;
159 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000160 close(dfd);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000161 try_again:
Denis Vlasenko13858992006-10-08 12:49:22 +0000162 if (*device) break;
Rob Landley6a6798b2005-08-10 20:35:54 +0000163 }
164 close(ffd);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100165 if (rc == 0) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000166 if (!*device)
167 *device = xstrdup(dev);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000168 return (mode == O_RDONLY); /* 1:ro, 0:rw */
Denis Vlasenko13858992006-10-08 12:49:22 +0000169 }
170 return rc;
Rob Landley6a6798b2005-08-10 20:35:54 +0000171}