blob: cc6c2b1d54e67a263ac3af91dd0684fbf84fc77f [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Matt Kraai83788da2002-03-20 17:38:37 +00002/*
3 * Mini losetup implementation for busybox
4 *
5 * Copyright (C) 2002 Matt Kraai.
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Matt Kraai83788da2002-03-20 17:38:37 +00008 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +01009//config:config LOSETUP
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "losetup (5.5 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010011//config: default y
12//config: select PLATFORM_LINUX
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: losetup is used to associate or detach a loop device with a regular
15//config: file or block device, and to query the status of a loop device. This
16//config: version does not currently support enabling data encryption.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010017
Denys Vlasenkoae844182017-08-07 23:14:49 +020018//applet:IF_LOSETUP(APPLET_NOEXEC(losetup, losetup, BB_DIR_SBIN, BB_SUID_DROP, losetup))
Denys Vlasenkodd898c92016-11-23 11:46:32 +010019
Denys Vlasenkoae844182017-08-07 23:14:49 +020020//kbuild:lib-$(CONFIG_LOSETUP) += losetup.o
Matt Kraai83788da2002-03-20 17:38:37 +000021
Pere Orga5bc8c002011-04-11 03:29:49 +020022//usage:#define losetup_trivial_usage
Jack O'Sullivan726cbb12019-05-28 15:28:27 +010023//usage: "[-rP] [-o OFS] {-f|LOOPDEV} FILE: associate loop devices\n"
Denys Vlasenko309f5e32019-05-23 16:11:42 +020024//usage: " losetup -c LOOPDEV: reread file size\n"
25//usage: " losetup -d LOOPDEV: disassociate\n"
26//usage: " losetup -a: show status\n"
27//usage: " losetup -f: show next free loop device"
Pere Orga5bc8c002011-04-11 03:29:49 +020028//usage:#define losetup_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020029//usage: " -o OFS Start OFS bytes into FILE"
Jack O'Sullivan726cbb12019-05-28 15:28:27 +010030//usage: "\n -P Scan for partitions"
Denys Vlasenko13e709c2011-09-12 02:13:47 +020031//usage: "\n -r Read-only"
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020032//usage: "\n -f Show/use next free loop device"
Pere Orga5bc8c002011-04-11 03:29:49 +020033//usage:
34//usage:#define losetup_notes_usage
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage: "One argument (losetup /dev/loop1) will display the current association\n"
36//usage: "(if any), or disassociate it (with -d). The display shows the offset\n"
37//usage: "and filename of the file the loop device is currently bound to.\n\n"
38//usage: "Two arguments (losetup /dev/loop1 file.img) create a new association,\n"
Jack O'Sullivan726cbb12019-05-28 15:28:27 +010039//usage: "with optional partition scanning (creates /dev/loop1p1, /dev/loop1p2\n"
40//usage: "etc. with -P) and with an optional offset (-o 12345). Encryption is\n"
41//usage: "not yet supported. losetup -f will show the first free loop device\n\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020042
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000043#include "libbb.h"
Matt Kraai83788da2002-03-20 17:38:37 +000044
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020045/* 1048575 is a max possible minor number in Linux circa 2010 */
46/* for now use something less extreme */
47#define MAX_LOOP_NUM 1023
48
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000049int losetup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko92510142010-05-19 00:39:17 +020050int losetup_main(int argc UNUSED_PARAM, char **argv)
Matt Kraai83788da2002-03-20 17:38:37 +000051{
Denis Vlasenko67b23e62006-10-03 21:00:06 +000052 unsigned opt;
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000053 char *opt_o;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080054 char dev[LOOP_NAMESIZE];
Denys Vlasenko92510142010-05-19 00:39:17 +020055 enum {
Denys Vlasenko309f5e32019-05-23 16:11:42 +020056 OPT_c = (1 << 0),
57 OPT_d = (1 << 1),
Jack O'Sullivan726cbb12019-05-28 15:28:27 +010058 OPT_P = (1 << 2),
59 OPT_o = (1 << 3),
60 OPT_f = (1 << 4),
61 OPT_a = (1 << 5),
62 OPT_r = (1 << 6),
Denys Vlasenko92510142010-05-19 00:39:17 +020063 };
Matt Kraai83788da2002-03-20 17:38:37 +000064
Jack O'Sullivan726cbb12019-05-28 15:28:27 +010065 opt = getopt32(argv, "^" "cdPo:far" "\0" "?2:d--Pofar:a--Pofr", &opt_o);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000066 argv += optind;
Matt Kraai83788da2002-03-20 17:38:37 +000067
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080068 /* LOOPDEV */
69 if (!opt && argv[0] && !argv[1]) {
Denys Vlasenko92510142010-05-19 00:39:17 +020070 char *s;
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000071
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000072 s = query_loop(argv[0]);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000073 if (!s)
Denis Vlasenko94e33652007-12-22 15:44:23 +000074 bb_simple_perror_msg_and_die(argv[0]);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000075 printf("%s: %s\n", argv[0], s);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000076 if (ENABLE_FEATURE_CLEAN_UP)
77 free(s);
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000078 return EXIT_SUCCESS;
79 }
80
Denys Vlasenko309f5e32019-05-23 16:11:42 +020081 /* -c LOOPDEV */
82 if (opt == OPT_c && argv[0]) {
83 int fd = xopen(argv[0], O_RDONLY);
84#ifndef LOOP_SET_CAPACITY
85# define LOOP_SET_CAPACITY 0x4C07
86#endif
87 xioctl(fd, LOOP_SET_CAPACITY, /*ignored:*/0);
88 return EXIT_SUCCESS;
89 }
90
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080091 /* -d LOOPDEV */
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020092 if (opt == OPT_d && argv[0]) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080093 if (del_loop(argv[0]))
94 bb_simple_perror_msg_and_die(argv[0]);
95 return EXIT_SUCCESS;
96 }
Denys Vlasenko92510142010-05-19 00:39:17 +020097
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080098 /* -a */
99 if (opt == OPT_a) {
100 int n;
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200101 for (n = 0; n < MAX_LOOP_NUM; n++) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800102 char *s;
103
104 sprintf(dev, LOOP_FORMAT, n);
105 s = query_loop(dev);
106 if (s) {
Denis Vlasenko7ae209c2007-09-26 17:54:18 +0000107 printf("%s: %s\n", dev, s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200108 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800109 }
110 }
111 return EXIT_SUCCESS;
112 }
113
114 /* contains -f */
115 if (opt & OPT_f) {
116 char *s;
Denys Vlasenko3b69ba72019-06-09 23:20:49 +0200117 int n;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800118
Denys Vlasenko3b69ba72019-06-09 23:20:49 +0200119 n = get_free_loop();
120 if (n == -1)
James Byrne69374872019-07-02 11:35:03 +0200121 bb_simple_error_msg_and_die("no free loop devices");
Denys Vlasenko3b69ba72019-06-09 23:20:49 +0200122 if (n < 0) /* n == -2: no /dev/loop-control, use legacy method */
123 n = 0;
124 /* or: n >= 0: the number of next free loopdev, just verify it */
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800125 do {
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200126 if (n > MAX_LOOP_NUM)
James Byrne69374872019-07-02 11:35:03 +0200127 bb_simple_error_msg_and_die("no free loop devices");
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200128 sprintf(dev, LOOP_FORMAT, n++);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800129 s = query_loop(dev);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200130 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800131 } while (s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200132 /* now: dev is next free "/dev/loopN" */
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800133 if ((opt == OPT_f) && !argv[0]) {
134 puts(dev);
135 return EXIT_SUCCESS;
Denis Vlasenko956a5692006-09-27 14:51:27 +0000136 }
137 }
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800138
Jack O'Sullivan726cbb12019-05-28 15:28:27 +0100139 /* [-rP] [-o OFS] {-f|LOOPDEV} FILE */
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800140 if (argv[0] && ((opt & OPT_f) || argv[1])) {
141 unsigned long long offset = 0;
142 char *d = dev;
143
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200144 if (opt & OPT_o)
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800145 offset = xatoull(opt_o);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200146 if (!(opt & OPT_f))
147 d = *argv++;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800148
149 if (argv[0]) {
Jack O'Sullivan726cbb12019-05-28 15:28:27 +0100150 unsigned flags = (opt & OPT_r) ? BB_LO_FLAGS_READ_ONLY : 0;
151 if (opt & OPT_P) {
152 flags |= BB_LO_FLAGS_PARTSCAN;
153 }
154 if (set_loop(&d, argv[0], offset, flags) < 0)
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800155 bb_simple_perror_msg_and_die(argv[0]);
156 return EXIT_SUCCESS;
157 }
158 }
159
Denys Vlasenkoab518ee2017-03-16 16:49:37 +0100160 /* TODO: util-linux 2.28 shows this when run w/o params:
161 * NAME SIZELIMIT OFFSET AUTOCLEAR RO BACK-FILE DIO
162 * /dev/loop0 0 0 1 0 /PATH/TO/FILE 0
163 *
164 * implemented by reading /sys:
165 *
166 * open("/sys/block", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
167 * newfstatat(3, "loop0/loop/backing_file", {st_mode=S_IFREG|0444, st_size=4096, ...}, 0) = 0
168 * stat("/dev/loop0", {st_mode=S_IFBLK|0660, st_rdev=makedev(7, 0), ...}) = 0
169 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
170 * read(5, "0\n", 4096) = 2
171 * open("/sys/dev/block/7:0/loop/sizelimit", O_RDONLY|O_CLOEXEC) = 5
172 * read(5, "0\n", 4096) = 2
173 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
174 * read(5, "0\n", 4096) = 2
175 * open("/sys/dev/block/7:0/loop/autoclear", O_RDONLY|O_CLOEXEC) = 5
176 * read(5, "1\n", 4096) = 2
177 * open("/sys/dev/block/7:0/ro", O_RDONLY|O_CLOEXEC) = 5
178 * read(5, "0\n", 4096) = 2
179 * open("/sys/dev/block/7:0/loop/backing_file", O_RDONLY|O_CLOEXEC) = 5
180 * read(5, "/PATH/TO/FILE", 4096) = 37
181 * open("/sys/dev/block/7:0/loop/dio", O_RDONLY|O_CLOEXEC) = 5
182 * read(5, "0\n", 4096) = 2
183 */
184
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200185 bb_show_usage(); /* does not return */
186 /*return EXIT_FAILURE;*/
Matt Kraai83788da2002-03-20 17:38:37 +0000187}