blob: 6934b7a3bd518114a9b186deb5a29ab920d5b8c8 [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 */
10
Eric Andersenaad1a882001-03-16 22:47:14 +000011#include "libbb.h"
Eric Andersenef8cd3b2004-02-06 07:16:36 +000012
Rob Landley6a6798b2005-08-10 20:35:54 +000013/* For 2.6, use the cleaned up header to get the 64 bit API. */
Eric Andersenef8cd3b2004-02-06 07:16:36 +000014#include <linux/version.h>
Eric Andersencf6ef052004-08-16 08:29:44 +000015#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
Rob Landley6a6798b2005-08-10 20:35:54 +000016#include <linux/loop.h>
17typedef struct loop_info64 bb_loop_info;
18#define BB_LOOP_SET_STATUS LOOP_SET_STATUS64
19#define BB_LOOP_GET_STATUS LOOP_GET_STATUS64
Eric Andersenef8cd3b2004-02-06 07:16:36 +000020
Rob Landley6a6798b2005-08-10 20:35:54 +000021/* For 2.4 and earlier, use the 32 bit API (and don't trust the headers) */
22#else
23/* Stuff stolen from linux/loop.h for 2.4 and earlier kernels*/
24#include <linux/posix_types.h>
Eric Andersenef8cd3b2004-02-06 07:16:36 +000025#define LO_NAME_SIZE 64
26#define LO_KEY_SIZE 32
27#define LOOP_SET_FD 0x4C00
28#define LOOP_CLR_FD 0x4C01
Rob Landley6a6798b2005-08-10 20:35:54 +000029#define BB_LOOP_SET_STATUS 0x4C02
30#define BB_LOOP_GET_STATUS 0x4C03
31typedef struct {
Eric Andersenef8cd3b2004-02-06 07:16:36 +000032 int lo_number;
Rob Landley6a6798b2005-08-10 20:35:54 +000033 __kernel_dev_t lo_device;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000034 unsigned long lo_inode;
Rob Landley6a6798b2005-08-10 20:35:54 +000035 __kernel_dev_t lo_rdevice;
Eric Andersenef8cd3b2004-02-06 07:16:36 +000036 int lo_offset;
37 int lo_encrypt_type;
38 int lo_encrypt_key_size;
39 int lo_flags;
Rob Landley6a6798b2005-08-10 20:35:54 +000040 char lo_file_name[LO_NAME_SIZE];
Eric Andersenef8cd3b2004-02-06 07:16:36 +000041 unsigned char lo_encrypt_key[LO_KEY_SIZE];
42 unsigned long lo_init[2];
43 char reserved[4];
Rob Landley6a6798b2005-08-10 20:35:54 +000044} bb_loop_info;
45#endif
Eric Andersenaad1a882001-03-16 22:47:14 +000046
Rob Landley1d589b22005-11-29 23:47:10 +000047char *query_loop(const char *device)
Eric Andersenaad1a882001-03-16 22:47:14 +000048{
Rob Landley1d589b22005-11-29 23:47:10 +000049 int fd;
50 bb_loop_info loopinfo;
Denis Vlasenko13858992006-10-08 12:49:22 +000051 char *dev = 0;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000052
Denis Vlasenko13858992006-10-08 12:49:22 +000053 fd = open(device, O_RDONLY);
54 if (fd < 0) return 0;
Rob Landley1d589b22005-11-29 23:47:10 +000055 if (!ioctl(fd, BB_LOOP_GET_STATUS, &loopinfo))
Denis Vlasenko13858992006-10-08 12:49:22 +000056 dev = xasprintf("%ld %s", (long) loopinfo.lo_offset,
Eric Andersen76b24272006-01-30 17:30:22 +000057 (char *)loopinfo.lo_file_name);
Rob Landley1d589b22005-11-29 23:47:10 +000058 close(fd);
Eric Andersenaad1a882001-03-16 22:47:14 +000059
Rob Landley1d589b22005-11-29 23:47:10 +000060 return dev;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000061}
Rob Landley1d589b22005-11-29 23:47:10 +000062
63
64int del_loop(const char *device)
65{
66 int fd, rc;
67
Denis Vlasenko13858992006-10-08 12:49:22 +000068 fd = open(device, O_RDONLY);
69 if (fd < 0) return 1;
70 rc = ioctl(fd, LOOP_CLR_FD, 0);
Rob Landley1d589b22005-11-29 23:47:10 +000071 close(fd);
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000072
Rob Landley6a6798b2005-08-10 20:35:54 +000073 return rc;
Eric Andersenaad1a882001-03-16 22:47:14 +000074}
75
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000076/* Returns 0 if mounted RW, 1 if mounted read-only, <0 for error.
77 *device is loop device to use, or if *device==NULL finds a loop device to
78 mount it on and sets *device to a strdup of that loop device name. This
79 search will re-use an existing loop device already bound to that
80 file/offset if it finds one.
81 */
Denis Vlasenko13858992006-10-08 12:49:22 +000082int set_loop(char **device, const char *file, unsigned long long offset)
Eric Andersenaad1a882001-03-16 22:47:14 +000083{
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +000084 char dev[LOOP_NAMESIZE];
85 char *try;
Rob Landley6a6798b2005-08-10 20:35:54 +000086 bb_loop_info loopinfo;
Eric Andersenaad1a882001-03-16 22:47:14 +000087 struct stat statbuf;
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000088 int i, dfd, ffd, mode, rc = -1;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000089
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000090 /* Open the file. Barf if this doesn't work. */
Denis Vlasenko13858992006-10-08 12:49:22 +000091 mode = O_RDWR;
92 ffd = open(file, mode);
93 if (ffd < 0) {
94 mode = O_RDONLY;
95 ffd = open(file, mode);
96 if (ffd < 0)
97 return -errno;
98 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +000099
100 /* Find a loop device. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000101 try = *device ? : dev;
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000102 for (i = 0; rc; i++) {
Rob Landleyb70ccd92006-01-22 23:17:18 +0000103 sprintf(dev, LOOP_FORMAT, i);
Rob Landleyaae8b342006-03-18 02:38:10 +0000104
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000105 /* Ran out of block devices, return failure. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000106 if (stat(try, &statbuf) || !S_ISBLK(statbuf.st_mode)) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000107 rc = -ENOENT;
Rob Landley6a6798b2005-08-10 20:35:54 +0000108 break;
Eric Andersenaad1a882001-03-16 22:47:14 +0000109 }
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000110 /* Open the sucker and check its loopiness. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000111 dfd = open(try, mode);
112 if (dfd < 0 && errno == EROFS) {
113 mode = O_RDONLY;
114 dfd = open(try, mode);
115 }
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000116 if (dfd < 0)
117 goto try_again;
Eric Andersenaad1a882001-03-16 22:47:14 +0000118
Denis Vlasenko13858992006-10-08 12:49:22 +0000119 rc = ioctl(dfd, BB_LOOP_GET_STATUS, &loopinfo);
Rob Landley1d589b22005-11-29 23:47:10 +0000120
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000121 /* If device is free, claim it. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000122 if (rc && errno == ENXIO) {
Rob Landley6a6798b2005-08-10 20:35:54 +0000123 memset(&loopinfo, 0, sizeof(loopinfo));
Eric Andersen76b24272006-01-30 17:30:22 +0000124 safe_strncpy((char *)loopinfo.lo_file_name, file, LO_NAME_SIZE);
Rob Landley6a6798b2005-08-10 20:35:54 +0000125 loopinfo.lo_offset = offset;
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000126 /* Associate free loop device with file. */
Denis Vlasenko13858992006-10-08 12:49:22 +0000127 if (!ioctl(dfd, LOOP_SET_FD, ffd)) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000128 if (!ioctl(dfd, BB_LOOP_SET_STATUS, &loopinfo))
129 rc = 0;
130 else
131 ioctl(dfd, LOOP_CLR_FD, 0);
Rob Landley934da822006-06-25 15:29:12 +0000132 }
Rob Landleyaae8b342006-03-18 02:38:10 +0000133
Bernhard Reutner-Fischer94c33312005-10-15 14:13:09 +0000134 /* If this block device already set up right, re-use it.
135 (Yes this is racy, but associating two loop devices with the same
136 file isn't pretty either. In general, mounting the same file twice
137 without using losetup manually is problematic.)
138 */
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000139 } else if (strcmp(file, (char *)loopinfo.lo_file_name) != 0
Denis Vlasenko7039a662006-10-08 17:54:47 +0000140 || offset != loopinfo.lo_offset) {
141 rc = -1;
142 }
Rob Landley6a6798b2005-08-10 20:35:54 +0000143 close(dfd);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000144 try_again:
Denis Vlasenko13858992006-10-08 12:49:22 +0000145 if (*device) break;
Rob Landley6a6798b2005-08-10 20:35:54 +0000146 }
147 close(ffd);
Denis Vlasenko13858992006-10-08 12:49:22 +0000148 if (!rc) {
Denis Vlasenkoc34d3552007-04-19 00:09:34 +0000149 if (!*device)
150 *device = xstrdup(dev);
Denis Vlasenko0e2c9fb2007-08-03 14:16:24 +0000151 return (mode == O_RDONLY); /* 1:ro, 0:rw */
Denis Vlasenko13858992006-10-08 12:49:22 +0000152 }
153 return rc;
Rob Landley6a6798b2005-08-10 20:35:54 +0000154}