blob: c69763335c166f68fe59880345d100492c7c4e2f [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 */
9
Pere Orga5bc8c002011-04-11 03:29:49 +020010//usage:#define losetup_trivial_usage
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080011//usage: "[-r] [-o OFS] {-f|LOOPDEV} FILE - associate loop devices\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020012//usage: " losetup -d LOOPDEV - disassociate\n"
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080013//usage: " losetup -a - show status of all\n"
14//usage: " losetup -f - show next available"
Pere Orga5bc8c002011-04-11 03:29:49 +020015//usage:#define losetup_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020016//usage: " -o OFS Start OFS bytes into FILE"
Denys Vlasenko13e709c2011-09-12 02:13:47 +020017//usage: "\n -r Read-only"
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080018//usage: "\n -f Show/find first free loop device"
Pere Orga5bc8c002011-04-11 03:29:49 +020019//usage:
20//usage:#define losetup_notes_usage
Pere Orga5bc8c002011-04-11 03:29:49 +020021//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 Vlasenkob6adbf12007-05-26 19:00:18 +000028#include "libbb.h"
Matt Kraai83788da2002-03-20 17:38:37 +000029
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000030int losetup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko92510142010-05-19 00:39:17 +020031int losetup_main(int argc UNUSED_PARAM, char **argv)
Matt Kraai83788da2002-03-20 17:38:37 +000032{
Denis Vlasenko67b23e62006-10-03 21:00:06 +000033 unsigned opt;
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000034 char *opt_o;
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080035 char dev[LOOP_NAMESIZE];
Denys Vlasenko92510142010-05-19 00:39:17 +020036 enum {
37 OPT_d = (1 << 0),
38 OPT_o = (1 << 1),
39 OPT_f = (1 << 2),
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080040 OPT_a = (1 << 3),
41 OPT_r = (1 << 4), /* must be last */
Denys Vlasenko92510142010-05-19 00:39:17 +020042 };
Matt Kraai83788da2002-03-20 17:38:37 +000043
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080044 opt_complementary = "?2:d--ofar:a--ofr";
45 opt = getopt32(argv, "do:far", &opt_o);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000046 argv += optind;
Matt Kraai83788da2002-03-20 17:38:37 +000047
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080048 /* LOOPDEV */
49 if (!opt && argv[0] && !argv[1]) {
Denys Vlasenko92510142010-05-19 00:39:17 +020050 char *s;
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000051
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000052 s = query_loop(argv[0]);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000053 if (!s)
Denis Vlasenko94e33652007-12-22 15:44:23 +000054 bb_simple_perror_msg_and_die(argv[0]);
Denis Vlasenko27ee7ba2006-09-22 14:53:41 +000055 printf("%s: %s\n", argv[0], s);
Denis Vlasenkoc34d3552007-04-19 00:09:34 +000056 if (ENABLE_FEATURE_CLEAN_UP)
57 free(s);
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000058 return EXIT_SUCCESS;
59 }
60
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080061 /* -d LOOPDEV */
62 if (opt == OPT_d) {
63 if (del_loop(argv[0]))
64 bb_simple_perror_msg_and_die(argv[0]);
65 return EXIT_SUCCESS;
66 }
Denys Vlasenko92510142010-05-19 00:39:17 +020067
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080068 /* -a */
69 if (opt == OPT_a) {
70 int n;
71 for (n = 0; n < 10; n++) {
72 char *s;
73
74 sprintf(dev, LOOP_FORMAT, n);
75 s = query_loop(dev);
76 if (s) {
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000077 printf("%s: %s\n", dev, s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080078 if (ENABLE_FEATURE_CLEAN_UP)
79 free(s);
80 }
81 }
82 return EXIT_SUCCESS;
83 }
84
85 /* contains -f */
86 if (opt & OPT_f) {
87 char *s;
88 int n = 0;
89
90 do {
91 sprintf(dev, LOOP_FORMAT, n);
92 s = query_loop(dev);
93 if (s && ENABLE_FEATURE_CLEAN_UP)
Denis Vlasenko7ae209c2007-09-26 17:54:18 +000094 free(s);
Mandeep Singh Baines7991d452013-03-04 16:33:12 -080095 } while (s);
96 if ((opt == OPT_f) && !argv[0]) {
97 puts(dev);
98 return EXIT_SUCCESS;
Denis Vlasenko956a5692006-09-27 14:51:27 +000099 }
100 }
Mandeep Singh Baines7991d452013-03-04 16:33:12 -0800101
102 /* [-r] [-o OFS] {-f|LOOPDEV} FILE */
103 if (argv[0] && ((opt & OPT_f) || argv[1])) {
104 unsigned long long offset = 0;
105 char *d = dev;
106
107 if (opt == OPT_o)
108 offset = xatoull(opt_o);
109 if (opt != OPT_f)
110 d = *(argv++);
111
112 if (argv[0]) {
113 if (set_loop(&d, argv[0], offset, (opt / OPT_r)) < 0)
114 bb_simple_perror_msg_and_die(argv[0]);
115 return EXIT_SUCCESS;
116 }
117 }
118
119 bb_show_usage();
120 return EXIT_FAILURE;
Matt Kraai83788da2002-03-20 17:38:37 +0000121}