"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini losetup implementation for busybox |
| 4 | * |
| 5 | * Copyright (C) 2002 Matt Kraai. |
| 6 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 8 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 9 | //config:config LOSETUP |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 10 | //config: bool "losetup (5.5 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 11 | //config: default y |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 12 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 13 | //config: losetup is used to associate or detach a loop device with a regular |
| 14 | //config: file or block device, and to query the status of a loop device. This |
| 15 | //config: version does not currently support enabling data encryption. |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 16 | |
Denys Vlasenko | ae84418 | 2017-08-07 23:14:49 +0200 | [diff] [blame] | 17 | //applet:IF_LOSETUP(APPLET_NOEXEC(losetup, losetup, BB_DIR_SBIN, BB_SUID_DROP, losetup)) |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 18 | |
Denys Vlasenko | ae84418 | 2017-08-07 23:14:49 +0200 | [diff] [blame] | 19 | //kbuild:lib-$(CONFIG_LOSETUP) += losetup.o |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 20 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 21 | //usage:#define losetup_trivial_usage |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 22 | //usage: "[-rP] [-o OFS] {-f|LOOPDEV} FILE: associate loop devices\n" |
Denys Vlasenko | 309f5e3 | 2019-05-23 16:11:42 +0200 | [diff] [blame] | 23 | //usage: " losetup -c LOOPDEV: reread file size\n" |
| 24 | //usage: " losetup -d LOOPDEV: disassociate\n" |
| 25 | //usage: " losetup -a: show status\n" |
| 26 | //usage: " losetup -f: show next free loop device" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 27 | //usage:#define losetup_full_usage "\n\n" |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 28 | //usage: " -o OFS Start OFS bytes into FILE" |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 29 | //usage: "\n -P Scan for partitions" |
Denys Vlasenko | 13e709c | 2011-09-12 02:13:47 +0200 | [diff] [blame] | 30 | //usage: "\n -r Read-only" |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 31 | //usage: "\n -f Show/use next free loop device" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 32 | //usage: |
| 33 | //usage:#define losetup_notes_usage |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 34 | //usage: "One argument (losetup /dev/loop1) will display the current association\n" |
| 35 | //usage: "(if any), or disassociate it (with -d). The display shows the offset\n" |
| 36 | //usage: "and filename of the file the loop device is currently bound to.\n\n" |
| 37 | //usage: "Two arguments (losetup /dev/loop1 file.img) create a new association,\n" |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 38 | //usage: "with optional partition scanning (creates /dev/loop1p1, /dev/loop1p2\n" |
| 39 | //usage: "etc. with -P) and with an optional offset (-o 12345). Encryption is\n" |
| 40 | //usage: "not yet supported. losetup -f will show the first free loop device\n\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 41 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 42 | #include "libbb.h" |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 43 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 44 | /* 1048575 is a max possible minor number in Linux circa 2010 */ |
| 45 | /* for now use something less extreme */ |
| 46 | #define MAX_LOOP_NUM 1023 |
| 47 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 48 | int losetup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 49 | int losetup_main(int argc UNUSED_PARAM, char **argv) |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 50 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 51 | unsigned opt; |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 52 | char *opt_o; |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 53 | char dev[LOOP_NAMESIZE]; |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 54 | enum { |
Denys Vlasenko | 309f5e3 | 2019-05-23 16:11:42 +0200 | [diff] [blame] | 55 | OPT_c = (1 << 0), |
| 56 | OPT_d = (1 << 1), |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 57 | OPT_P = (1 << 2), |
| 58 | OPT_o = (1 << 3), |
| 59 | OPT_f = (1 << 4), |
| 60 | OPT_a = (1 << 5), |
| 61 | OPT_r = (1 << 6), |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 62 | }; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 63 | |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 64 | opt = getopt32(argv, "^" "cdPo:far" "\0" "?2:d--Pofar:a--Pofr", &opt_o); |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 65 | argv += optind; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 66 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 67 | /* LOOPDEV */ |
| 68 | if (!opt && argv[0] && !argv[1]) { |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 69 | char *s; |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 70 | |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 71 | s = query_loop(argv[0]); |
Denis Vlasenko | c34d355 | 2007-04-19 00:09:34 +0000 | [diff] [blame] | 72 | if (!s) |
Denis Vlasenko | 94e3365 | 2007-12-22 15:44:23 +0000 | [diff] [blame] | 73 | bb_simple_perror_msg_and_die(argv[0]); |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 74 | printf("%s: %s\n", argv[0], s); |
Denis Vlasenko | c34d355 | 2007-04-19 00:09:34 +0000 | [diff] [blame] | 75 | if (ENABLE_FEATURE_CLEAN_UP) |
| 76 | free(s); |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 77 | return EXIT_SUCCESS; |
| 78 | } |
| 79 | |
Denys Vlasenko | 309f5e3 | 2019-05-23 16:11:42 +0200 | [diff] [blame] | 80 | /* -c LOOPDEV */ |
| 81 | if (opt == OPT_c && argv[0]) { |
| 82 | int fd = xopen(argv[0], O_RDONLY); |
| 83 | #ifndef LOOP_SET_CAPACITY |
| 84 | # define LOOP_SET_CAPACITY 0x4C07 |
| 85 | #endif |
| 86 | xioctl(fd, LOOP_SET_CAPACITY, /*ignored:*/0); |
| 87 | return EXIT_SUCCESS; |
| 88 | } |
| 89 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 90 | /* -d LOOPDEV */ |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 91 | if (opt == OPT_d && argv[0]) { |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 92 | if (del_loop(argv[0])) |
| 93 | bb_simple_perror_msg_and_die(argv[0]); |
| 94 | return EXIT_SUCCESS; |
| 95 | } |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 96 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 97 | /* -a */ |
| 98 | if (opt == OPT_a) { |
| 99 | int n; |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 100 | for (n = 0; n < MAX_LOOP_NUM; n++) { |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 101 | char *s; |
| 102 | |
| 103 | sprintf(dev, LOOP_FORMAT, n); |
| 104 | s = query_loop(dev); |
| 105 | if (s) { |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 106 | printf("%s: %s\n", dev, s); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 107 | free(s); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 108 | } |
| 109 | } |
| 110 | return EXIT_SUCCESS; |
| 111 | } |
| 112 | |
| 113 | /* contains -f */ |
| 114 | if (opt & OPT_f) { |
| 115 | char *s; |
Denys Vlasenko | 3b69ba7 | 2019-06-09 23:20:49 +0200 | [diff] [blame] | 116 | int n; |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 117 | |
Denys Vlasenko | 3b69ba7 | 2019-06-09 23:20:49 +0200 | [diff] [blame] | 118 | n = get_free_loop(); |
| 119 | if (n == -1) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 120 | bb_simple_error_msg_and_die("no free loop devices"); |
Denys Vlasenko | 3b69ba7 | 2019-06-09 23:20:49 +0200 | [diff] [blame] | 121 | if (n < 0) /* n == -2: no /dev/loop-control, use legacy method */ |
| 122 | n = 0; |
| 123 | /* or: n >= 0: the number of next free loopdev, just verify it */ |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 124 | do { |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 125 | if (n > MAX_LOOP_NUM) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 126 | bb_simple_error_msg_and_die("no free loop devices"); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 127 | sprintf(dev, LOOP_FORMAT, n++); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 128 | s = query_loop(dev); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 129 | free(s); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 130 | } while (s); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 131 | /* now: dev is next free "/dev/loopN" */ |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 132 | if ((opt == OPT_f) && !argv[0]) { |
| 133 | puts(dev); |
| 134 | return EXIT_SUCCESS; |
Denis Vlasenko | 956a569 | 2006-09-27 14:51:27 +0000 | [diff] [blame] | 135 | } |
| 136 | } |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 137 | |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 138 | /* [-rP] [-o OFS] {-f|LOOPDEV} FILE */ |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 139 | if (argv[0] && ((opt & OPT_f) || argv[1])) { |
| 140 | unsigned long long offset = 0; |
| 141 | char *d = dev; |
| 142 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 143 | if (opt & OPT_o) |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 144 | offset = xatoull(opt_o); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 145 | if (!(opt & OPT_f)) |
| 146 | d = *argv++; |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 147 | |
| 148 | if (argv[0]) { |
Jack O'Sullivan | 726cbb1 | 2019-05-28 15:28:27 +0100 | [diff] [blame] | 149 | unsigned flags = (opt & OPT_r) ? BB_LO_FLAGS_READ_ONLY : 0; |
| 150 | if (opt & OPT_P) { |
| 151 | flags |= BB_LO_FLAGS_PARTSCAN; |
| 152 | } |
Steffen Trumtrar | 6561e07 | 2020-07-29 10:43:53 +0200 | [diff] [blame] | 153 | if (set_loop(&d, argv[0], offset, 0, flags) < 0) |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 154 | bb_simple_perror_msg_and_die(argv[0]); |
| 155 | return EXIT_SUCCESS; |
| 156 | } |
| 157 | } |
| 158 | |
Denys Vlasenko | ab518ee | 2017-03-16 16:49:37 +0100 | [diff] [blame] | 159 | /* TODO: util-linux 2.28 shows this when run w/o params: |
| 160 | * NAME SIZELIMIT OFFSET AUTOCLEAR RO BACK-FILE DIO |
| 161 | * /dev/loop0 0 0 1 0 /PATH/TO/FILE 0 |
| 162 | * |
| 163 | * implemented by reading /sys: |
| 164 | * |
| 165 | * open("/sys/block", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3 |
| 166 | * newfstatat(3, "loop0/loop/backing_file", {st_mode=S_IFREG|0444, st_size=4096, ...}, 0) = 0 |
| 167 | * stat("/dev/loop0", {st_mode=S_IFBLK|0660, st_rdev=makedev(7, 0), ...}) = 0 |
| 168 | * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5 |
| 169 | * read(5, "0\n", 4096) = 2 |
| 170 | * open("/sys/dev/block/7:0/loop/sizelimit", O_RDONLY|O_CLOEXEC) = 5 |
| 171 | * read(5, "0\n", 4096) = 2 |
| 172 | * open("/sys/dev/block/7:0/loop/offset", O_RDONLY|O_CLOEXEC) = 5 |
| 173 | * read(5, "0\n", 4096) = 2 |
| 174 | * open("/sys/dev/block/7:0/loop/autoclear", O_RDONLY|O_CLOEXEC) = 5 |
| 175 | * read(5, "1\n", 4096) = 2 |
| 176 | * open("/sys/dev/block/7:0/ro", O_RDONLY|O_CLOEXEC) = 5 |
| 177 | * read(5, "0\n", 4096) = 2 |
| 178 | * open("/sys/dev/block/7:0/loop/backing_file", O_RDONLY|O_CLOEXEC) = 5 |
| 179 | * read(5, "/PATH/TO/FILE", 4096) = 37 |
| 180 | * open("/sys/dev/block/7:0/loop/dio", O_RDONLY|O_CLOEXEC) = 5 |
| 181 | * read(5, "0\n", 4096) = 2 |
| 182 | */ |
| 183 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 184 | bb_show_usage(); /* does not return */ |
| 185 | /*return EXIT_FAILURE;*/ |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 186 | } |