blob: d356f49c22a729fd045f98a92ff71805b60f3175 [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
10//config: bool "losetup"
11//config: default y
12//config: select PLATFORM_LINUX
13//config: help
14//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.
17
18//kbuild:lib-$(CONFIG_LOSETUP) += losetup.o
19
20//applet:IF_LOSETUP(APPLET(losetup, BB_DIR_SBIN, BB_SUID_DROP))
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
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080060 opt_complementary = "?2:d--ofar:a--ofr";
61 opt = getopt32(argv, "do:far", &opt_o);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000062 argv += optind;
Matt Kraai83788da2002-03-20 17:38:37 +000063
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080064 /* LOOPDEV */
65 if (!opt && argv[0] && !argv[1]) {
Denys Vlasenko92510142010-05-19 00:39:17 +020066 char *s;
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000067
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000068 s = query_loop(argv[0]);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000069 if (!s)
Denis Vlasenko94e33652007-12-22 15:44:23 +000070 bb_simple_perror_msg_and_die(argv[0]);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000071 printf("%s: %s\n", argv[0], s);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000072 if (ENABLE_FEATURE_CLEAN_UP)
73 free(s);
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000074 return EXIT_SUCCESS;
75 }
76
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080077 /* -d LOOPDEV */
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020078 if (opt == OPT_d && argv[0]) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080079 if (del_loop(argv[0]))
80 bb_simple_perror_msg_and_die(argv[0]);
81 return EXIT_SUCCESS;
82 }
Denys Vlasenko92510142010-05-19 00:39:17 +020083
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080084 /* -a */
85 if (opt == OPT_a) {
86 int n;
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020087 for (n = 0; n < MAX_LOOP_NUM; n++) {
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080088 char *s;
89
90 sprintf(dev, LOOP_FORMAT, n);
91 s = query_loop(dev);
92 if (s) {
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000093 printf("%s: %s\n", dev, s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +020094 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080095 }
96 }
97 return EXIT_SUCCESS;
98 }
99
100 /* contains -f */
101 if (opt & OPT_f) {
102 char *s;
103 int n = 0;
104
105 do {
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200106 if (n > MAX_LOOP_NUM)
107 bb_error_msg_and_die("no free loop devices");
108 sprintf(dev, LOOP_FORMAT, n++);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800109 s = query_loop(dev);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200110 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800111 } while (s);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200112 /* now: dev is next free "/dev/loopN" */
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800113 if ((opt == OPT_f) && !argv[0]) {
114 puts(dev);
115 return EXIT_SUCCESS;
Denis Vlasenko956a5692006-09-27 14:51:27 +0000116 }
117 }
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800118
119 /* [-r] [-o OFS] {-f|LOOPDEV} FILE */
120 if (argv[0] && ((opt & OPT_f) || argv[1])) {
121 unsigned long long offset = 0;
122 char *d = dev;
123
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200124 if (opt & OPT_o)
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800125 offset = xatoull(opt_o);
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200126 if (!(opt & OPT_f))
127 d = *argv++;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800128
129 if (argv[0]) {
Denys Vlasenkoab518ee2017-03-16 16:49:37 +0100130 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 -0800131 bb_simple_perror_msg_and_die(argv[0]);
132 return EXIT_SUCCESS;
133 }
134 }
135
Denys Vlasenkoab518ee2017-03-16 16:49:37 +0100136 /* TODO: util-linux 2.28 shows this when run w/o params:
137 * NAME SIZELIMIT OFFSET AUTOCLEAR RO BACK-FILE DIO
138 * /dev/loop0 0 0 1 0 /PATH/TO/FILE 0
139 *
140 * implemented by reading /sys:
141 *
142 * open("/sys/block", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
143 * newfstatat(3, "loop0/loop/backing_file", {st_mode=S_IFREG|0444, st_size=4096, ...}, 0) = 0
144 * stat("/dev/loop0", {st_mode=S_IFBLK|0660, st_rdev=makedev(7, 0), ...}) = 0
145 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
146 * read(5, "0\n", 4096) = 2
147 * open("/sys/dev/block/7:0/loop/sizelimit", O_RDONLY|O_CLOEXEC) = 5
148 * read(5, "0\n", 4096) = 2
149 * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5
150 * read(5, "0\n", 4096) = 2
151 * open("/sys/dev/block/7:0/loop/autoclear", O_RDONLY|O_CLOEXEC) = 5
152 * read(5, "1\n", 4096) = 2
153 * open("/sys/dev/block/7:0/ro", O_RDONLY|O_CLOEXEC) = 5
154 * read(5, "0\n", 4096) = 2
155 * open("/sys/dev/block/7:0/loop/backing_file", O_RDONLY|O_CLOEXEC) = 5
156 * read(5, "/PATH/TO/FILE", 4096) = 37
157 * open("/sys/dev/block/7:0/loop/dio", O_RDONLY|O_CLOEXEC) = 5
158 * read(5, "0\n", 4096) = 2
159 */
160
Denys Vlasenko4928e9f2013-06-27 03:45:16 +0200161 bb_show_usage(); /* does not return */
162 /*return EXIT_FAILURE;*/
Matt Kraai83788da2002-03-20 17:38:37 +0000163}