"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 | */ |
| 9 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 10 | //usage:#define losetup_trivial_usage |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 11 | //usage: "[-r] [-o OFS] {-f|LOOPDEV} FILE - associate loop devices\n" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 12 | //usage: " losetup -d LOOPDEV - disassociate\n" |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 13 | //usage: " losetup -a - show status\n" |
| 14 | //usage: " losetup -f - show next free loop device" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 15 | //usage:#define losetup_full_usage "\n\n" |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 16 | //usage: " -o OFS Start OFS bytes into FILE" |
Denys Vlasenko | 13e709c | 2011-09-12 02:13:47 +0200 | [diff] [blame] | 17 | //usage: "\n -r Read-only" |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 18 | //usage: "\n -f Show/use next free loop device" |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 19 | //usage: |
| 20 | //usage:#define losetup_notes_usage |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 21 | //usage: "One argument (losetup /dev/loop1) will display the current association\n" |
| 22 | //usage: "(if any), or disassociate it (with -d). The display shows the offset\n" |
| 23 | //usage: "and filename of the file the loop device is currently bound to.\n\n" |
| 24 | //usage: "Two arguments (losetup /dev/loop1 file.img) create a new association,\n" |
| 25 | //usage: "with an optional offset (-o 12345). Encryption is not yet supported.\n" |
| 26 | //usage: "losetup -f will show the first loop free loop device\n\n" |
| 27 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 28 | #include "libbb.h" |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 29 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 30 | /* 1048575 is a max possible minor number in Linux circa 2010 */ |
| 31 | /* for now use something less extreme */ |
| 32 | #define MAX_LOOP_NUM 1023 |
| 33 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 34 | int losetup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 35 | int losetup_main(int argc UNUSED_PARAM, char **argv) |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 36 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 37 | unsigned opt; |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 38 | char *opt_o; |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 39 | char dev[LOOP_NAMESIZE]; |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 40 | enum { |
| 41 | OPT_d = (1 << 0), |
| 42 | OPT_o = (1 << 1), |
| 43 | OPT_f = (1 << 2), |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 44 | OPT_a = (1 << 3), |
| 45 | OPT_r = (1 << 4), /* must be last */ |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 46 | }; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 47 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 48 | opt_complementary = "?2:d--ofar:a--ofr"; |
| 49 | opt = getopt32(argv, "do:far", &opt_o); |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 50 | argv += optind; |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 51 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 52 | /* LOOPDEV */ |
| 53 | if (!opt && argv[0] && !argv[1]) { |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 54 | char *s; |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 55 | |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 56 | s = query_loop(argv[0]); |
Denis Vlasenko | c34d355 | 2007-04-19 00:09:34 +0000 | [diff] [blame] | 57 | if (!s) |
Denis Vlasenko | 94e3365 | 2007-12-22 15:44:23 +0000 | [diff] [blame] | 58 | bb_simple_perror_msg_and_die(argv[0]); |
Denis Vlasenko | 27ee7ba | 2006-09-22 14:53:41 +0000 | [diff] [blame] | 59 | printf("%s: %s\n", argv[0], s); |
Denis Vlasenko | c34d355 | 2007-04-19 00:09:34 +0000 | [diff] [blame] | 60 | if (ENABLE_FEATURE_CLEAN_UP) |
| 61 | free(s); |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 62 | return EXIT_SUCCESS; |
| 63 | } |
| 64 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 65 | /* -d LOOPDEV */ |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 66 | if (opt == OPT_d && argv[0]) { |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 67 | if (del_loop(argv[0])) |
| 68 | bb_simple_perror_msg_and_die(argv[0]); |
| 69 | return EXIT_SUCCESS; |
| 70 | } |
Denys Vlasenko | 9251014 | 2010-05-19 00:39:17 +0200 | [diff] [blame] | 71 | |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 72 | /* -a */ |
| 73 | if (opt == OPT_a) { |
| 74 | int n; |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 75 | for (n = 0; n < MAX_LOOP_NUM; n++) { |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 76 | char *s; |
| 77 | |
| 78 | sprintf(dev, LOOP_FORMAT, n); |
| 79 | s = query_loop(dev); |
| 80 | if (s) { |
Denis Vlasenko | 7ae209c | 2007-09-26 17:54:18 +0000 | [diff] [blame] | 81 | printf("%s: %s\n", dev, s); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 82 | free(s); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 83 | } |
| 84 | } |
| 85 | return EXIT_SUCCESS; |
| 86 | } |
| 87 | |
| 88 | /* contains -f */ |
| 89 | if (opt & OPT_f) { |
| 90 | char *s; |
| 91 | int n = 0; |
| 92 | |
| 93 | do { |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 94 | if (n > MAX_LOOP_NUM) |
| 95 | bb_error_msg_and_die("no free loop devices"); |
| 96 | sprintf(dev, LOOP_FORMAT, n++); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 97 | s = query_loop(dev); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 98 | free(s); |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 99 | } while (s); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 100 | /* now: dev is next free "/dev/loopN" */ |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 101 | if ((opt == OPT_f) && !argv[0]) { |
| 102 | puts(dev); |
| 103 | return EXIT_SUCCESS; |
Denis Vlasenko | 956a569 | 2006-09-27 14:51:27 +0000 | [diff] [blame] | 104 | } |
| 105 | } |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 106 | |
| 107 | /* [-r] [-o OFS] {-f|LOOPDEV} FILE */ |
| 108 | if (argv[0] && ((opt & OPT_f) || argv[1])) { |
| 109 | unsigned long long offset = 0; |
| 110 | char *d = dev; |
| 111 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 112 | if (opt & OPT_o) |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 113 | offset = xatoull(opt_o); |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 114 | if (!(opt & OPT_f)) |
| 115 | d = *argv++; |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 116 | |
| 117 | if (argv[0]) { |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 118 | if (set_loop(&d, argv[0], offset, (opt & OPT_r)) < 0) |
Mandeep Singh Baines | 7991d45 | 2013-03-04 16:33:12 -0800 | [diff] [blame] | 119 | bb_simple_perror_msg_and_die(argv[0]); |
| 120 | return EXIT_SUCCESS; |
| 121 | } |
| 122 | } |
| 123 | |
Denys Vlasenko | 4928e9f | 2013-06-27 03:45:16 +0200 | [diff] [blame] | 124 | bb_show_usage(); /* does not return */ |
| 125 | /*return EXIT_FAILURE;*/ |
Matt Kraai | 83788da | 2002-03-20 17:38:37 +0000 | [diff] [blame] | 126 | } |