aboutsummaryrefslogtreecommitdiff
path: root/toys/other
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2020-04-16 00:44:12 -0500
committerRob Landley <rob@landley.net>2020-04-16 00:44:12 -0500
commit68f9b8439e18aaa83f8b1db611cb858a51c2d9d6 (patch)
tree70e7f3fe75d6a52e5d072885d0368a0cde395cd4 /toys/other
parente07701ada610e6e5c1f5628a301f39d837b66fa9 (diff)
downloadtoybox-68f9b8439e18aaa83f8b1db611cb858a51c2d9d6.tar.gz
Promote blkdiscard.
Diffstat (limited to 'toys/other')
-rw-r--r--toys/other/blkdiscard.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/toys/other/blkdiscard.c b/toys/other/blkdiscard.c
new file mode 100644
index 00000000..1859fd88
--- /dev/null
+++ b/toys/other/blkdiscard.c
@@ -0,0 +1,55 @@
+/* blkdiscard - discard device sectors
+ *
+ * Copyright 2020 Patrick Oppenlander <patrick.oppenlander@gmail.com>
+ *
+ * See http://man7.org/linux/man-pages/man8/blkdiscard.8.html
+ *
+ * The -v and -p options are not supported.
+ * Size parsing does not match util-linux where MB, GB, TB are multiples of
+ * 1000 and MiB, TiB, GiB are multipes of 1024.
+
+USE_BLKDISCARD(NEWTOY(blkdiscard, "<1>1f(force)l(length):o(offset):s(secure)z(zeroout)[!sz]", TOYFLAG_BIN))
+
+config BLKDISCARD
+ bool "blkdiscard"
+ default y
+ help
+ usage: blkdiscard [-olszf] DEVICE
+
+ Discard device sectors.
+
+ -o, --offset OFF Byte offset to start discarding at (default 0)
+ -l, --length LEN Bytes to discard (default all)
+ -s, --secure Perform secure discard
+ -z, --zeroout Zero-fill rather than discard
+ -f, --force Disable check for mounted filesystem
+
+ OFF and LEN must be aligned to the device sector size.
+ By default entire device is discarded.
+ WARNING: All discarded data is permanently lost!
+*/
+
+#define FOR_blkdiscard
+#include "toys.h"
+
+#include <linux/fs.h>
+
+GLOBALS(
+ char *o, *l;
+)
+
+void blkdiscard_main(void)
+{
+ int fd = xopen(*toys.optargs, O_WRONLY|O_EXCL*!FLAG(f));
+ unsigned long long ol[2];
+
+ ol[0] = FLAG(o) ? atolx_range(TT.o, 0, LLONG_MAX) : 0;
+ if (FLAG(l)) ol[1] = atolx_range(TT.l, 0, LLONG_MAX);
+ else {
+ xioctl(fd, BLKGETSIZE64, ol+1);
+ ol[1] -= ol[0];
+ }
+ xioctl(fd, FLAG(s) ? BLKSECDISCARD : FLAG(z) ? BLKZEROOUT : BLKDISCARD, ol);
+
+ if (CFG_TOYBOX_FREE) close(fd);
+}