blob: 6b171d7102d068e927903398c4a8b125f1eb16b5 [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 Vlasenko4eed2c62017-07-18 22:01:24 +020010//config: bool "losetup (5.4 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
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080023//usage: "[-r] [-o OFS] {-f|LOOPDEV} FILE - associate loop devices\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020024//usage: " losetup -d LOOPDEV - disassociate\n"
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020025//usage: " losetup -a - show status\n"
26//usage: " losetup -f - show next free loop device"
Pere Orga5bc8c002011-04-11 03:29:49 +020027//usage:#define losetup_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020028//usage: " -o OFS Start OFS bytes into FILE"
Denys Vlasenko13e709c2011-09-12 02:13:47 +020029//usage: "\n -r Read-only"
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020030//usage: "\n -f Show/use next free loop device"
Pere Orga5bc8c002011-04-11 03:29:49 +020031//usage:
32//usage:#define losetup_notes_usage
Pere Orga5bc8c002011-04-11 03:29:49 +020033//usage: "One argument (losetup /dev/loop1) will display the current association\n"
34//usage: "(if any), or disassociate it (with -d). The display shows the offset\n"
35//usage: "and filename of the file the loop device is currently bound to.\n\n"
36//usage: "Two arguments (losetup /dev/loop1 file.img) create a new association,\n"
37//usage: "with an optional offset (-o 12345). Encryption is not yet supported.\n"
38//usage: "losetup -f will show the first loop free loop device\n\n"
39
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000040#include "libbb.h"
Matt Kraai83788da2002-03-20 17:38:37 +000041
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020042/* 1048575 is a max possible minor number in Linux circa 2010 */
43/* for now use something less extreme */
44#define MAX_LOOP_NUM 1023
45
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000046int losetup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko92510142010-05-19 00:39:17 +020047int losetup_main(int argc UNUSED_PARAM, char **argv)
Matt Kraai83788da2002-03-20 17:38:37 +000048{
Denis Vlasenko67b23e62006-10-03 21:00:06 +000049 unsigned opt;
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000050 char *opt_o;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080051 char dev[LOOP_NAMESIZE];
Denys Vlasenko92510142010-05-19 00:39:17 +020052 enum {
53 OPT_d = (1 << 0),
54 OPT_o = (1 << 1),
55 OPT_f = (1 << 2),
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080056 OPT_a = (1 << 3),
57 OPT_r = (1 << 4), /* must be last */
Denys Vlasenko92510142010-05-19 00:39:17 +020058 };
Matt Kraai83788da2002-03-20 17:38:37 +000059
Denys Vlasenko22542ec2017-08-08 21:55:02 +020060 opt = getopt32(argv, "^" "do:far" "\0" "?2:d--ofar:a--ofr", &opt_o);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000061 argv += optind;
Matt Kraai83788da2002-03-20 17:38:37 +000062
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080063 /* LOOPDEV */
64 if (!opt && argv[0] && !argv[1]) {
Denys Vlasenko92510142010-05-19 00:39:17 +020065 char *s;
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000066
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000067 s = query_loop(argv[0]);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000068 if (!s)
Denis Vlasenko94e33652007-12-22 15:44:23 +000069 bb_simple_perror_msg_and_die(argv[0]);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000070 printf("%s: %s\n", argv[0], s);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000071 if (ENABLE_FEATURE_CLEAN_UP)
72 free(s);
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000073 return EXIT_SUCCESS;
74 }
75
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080076 /* -d LOOPDEV */
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020077 if (opt == OPT_d && argv[0]) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080078 if (del_loop(argv[0]))
79 bb_simple_perror_msg_and_die(argv[0]);
80 return EXIT_SUCCESS;
81 }
Denys Vlasenko92510142010-05-19 00:39:17 +020082
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080083 /* -a */
84 if (opt == OPT_a) {
85 int n;
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020086 for (n = 0; n < MAX_LOOP_NUM; n++) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080087 char *s;
88
89 sprintf(dev, LOOP_FORMAT, n);
90 s = query_loop(dev);
91 if (s) {
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000092 printf("%s: %s\n", dev, s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020093 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080094 }
95 }
96 return EXIT_SUCCESS;
97 }
98
99 /* contains -f */
100 if (opt & OPT_f) {
101 char *s;
102 int n = 0;
103
104 do {
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200105 if (n > MAX_LOOP_NUM)
106 bb_error_msg_and_die("no free loop devices");
107 sprintf(dev, LOOP_FORMAT, n++);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800108 s = query_loop(dev);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200109 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800110 } while (s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200111 /* now: dev is next free "/dev/loopN" */
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800112 if ((opt == OPT_f) && !argv[0]) {
113 puts(dev);
114 return EXIT_SUCCESS;
Denis Vlasenko956a5692006-09-27 14:51:27 +0000115 }
116 }
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800117
118 /* [-r] [-o OFS] {-f|LOOPDEV} FILE */
119 if (argv[0] && ((opt & OPT_f) || argv[1])) {
120 unsigned long long offset = 0;
121 char *d = dev;
122
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200123 if (opt & OPT_o)
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800124 offset = xatoull(opt_o);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200125 if (!(opt & OPT_f))
126 d = *argv++;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800127
128 if (argv[0]) {
Denys Vlasenkoab518ee2017-03-16 16:49:37 +0100129 if (set_loop(&d, argv[0], offset, (opt & OPT_r) ? BB_LO_FLAGS_READ_ONLY : 0) < 0)
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800130 bb_simple_perror_msg_and_die(argv[0]);
131 return EXIT_SUCCESS;
132 }
133 }
134
Denys Vlasenkoab518ee2017-03-16 16:49:37 +0100135 /* TODO: util-linux 2.28 shows this when run w/o params:
136 * NAME SIZELIMIT OFFSET AUTOCLEAR RO BACK-FILE DIO
137 * /dev/loop0 0 0 1 0 /PATH/TO/FILE 0
138 *
139 * implemented by reading /sys:
140 *
141 * open("/sys/block", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
142 * newfstatat(3, "loop0/loop/backing_file", {st_mode=S_IFREG|0444, st_size=4096, ...}, 0) = 0
143 * stat("/dev/loop0", {st_mode=S_IFBLK|0660, st_rdev=makedev(7, 0), ...}) = 0
144 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
145 * read(5, "0\n", 4096) = 2
146 * open("/sys/dev/block/7:0/loop/sizelimit", O_RDONLY|O_CLOEXEC) = 5
147 * read(5, "0\n", 4096) = 2
148 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
149 * read(5, "0\n", 4096) = 2
150 * open("/sys/dev/block/7:0/loop/autoclear", O_RDONLY|O_CLOEXEC) = 5
151 * read(5, "1\n", 4096) = 2
152 * open("/sys/dev/block/7:0/ro", O_RDONLY|O_CLOEXEC) = 5
153 * read(5, "0\n", 4096) = 2
154 * open("/sys/dev/block/7:0/loop/backing_file", O_RDONLY|O_CLOEXEC) = 5
155 * read(5, "/PATH/TO/FILE", 4096) = 37
156 * open("/sys/dev/block/7:0/loop/dio", O_RDONLY|O_CLOEXEC) = 5
157 * read(5, "0\n", 4096) = 2
158 */
159
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200160 bb_show_usage(); /* does not return */
161 /*return EXIT_FAILURE;*/
Matt Kraai83788da2002-03-20 17:38:37 +0000162}