blob: abf05dc4f0113f5dad372c2a75d6ac9a85c3158a [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 *
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +00008 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
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) {
59 dev = xasprintf("%lu %s", (long) loopinfo.lo_offset,
60 (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;
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000107 for (i = 0; rc; i++) {
Rob Landleyb70ccd92006-01-22 23:17:18 +0000108 sprintf(dev, LOOP_FORMAT, i);
Rob Landleyaae8b342006-03-18 02:38:10 +0000109
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000110 /* Ran out of block devices, return failure. */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100111 if (stat(try, &statbuf) != 0 || !S_ISBLK(statbuf.st_mode)) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000112 rc = -ENOENT;
Rob Landley6a6798b2005-08-10 20:35:54 +0000113 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000114 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000115 /* Open the sucker and check its loopiness. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000116 dfd = open(try, mode);
117 if (dfd < 0 && errno == EROFS) {
118 mode = O_RDONLY;
119 dfd = open(try, mode);
120 }
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000121 if (dfd < 0)
122 goto try_again;
Eric Andersenaad1a882001-03-16 22:47:14 +0000123
Denis Vlasenko13858992006-10-08 12:49:22 +0000124 rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000125
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000126 /* If device is free, claim it. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000127 if (rc && errno == ENXIO) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000128 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000129 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000130 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000131 /* Associate free loop device with file. */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100132 if (ioctl(dfd, LOOP_SET_FD, ffd) == 0) {
133 if (ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo) == 0)
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000134 rc = 0;
135 else
136 ioctl(dfd, LOOP_CLR_FD, 0);
Rob Landley934da822006-06-25 15:29:12 +0000137 }
Rob Landleyaae8b342006-03-18 02:38:10 +0000138
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000139 /* If this block device already set up right, re-use it.
140 (Yes this is racy, but associating two loop devices with the same
141 file isn't pretty either. In general, mounting the same file twice
142 without using losetup manually is problematic.)
143 */
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100144 } else
145 if (strcmp(file, (char *)loopinfo.lo_file_name) != 0
146 || offset != loopinfo.lo_offset
147 ) {
Denis Vlasenko7039a662006-10-08 17:54:47 +0000148 rc = -1;
149 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000150 close(dfd);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000151 try_again:
Denis Vlasenko13858992006-10-08 12:49:22 +0000152 if (*device) break;
Rob Landley6a6798b2005-08-10 20:35:54 +0000153 }
154 close(ffd);
Denys Vlasenko44fbfa72010-03-05 13:20:28 +0100155 if (rc == 0) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000156 if (!*device)
157 *device = xstrdup(dev);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000158 return (mode == O_RDONLY); /* 1:ro, 0:rw */
Denis Vlasenko13858992006-10-08 12:49:22 +0000159 }
160 return rc;
Rob Landley6a6798b2005-08-10 20:35:54 +0000161}