Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * Support functions for mounting devices by label/uuid |
| 4 | * |
| 5 | * Copyright (C) 2006 by Jason Schoon <floydpink@gmail.com> |
| 6 | * Some portions cribbed from e2fsprogs, util-linux, dosfstools |
| 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 9 | */ |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 10 | //config:config FINDFS |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame^] | 11 | //config: bool "findfs (11 kb)" |
Denys Vlasenko | dd898c9 | 2016-11-23 11:46:32 +0100 | [diff] [blame] | 12 | //config: default y |
| 13 | //config: select PLATFORM_LINUX |
| 14 | //config: select VOLUMEID |
| 15 | //config: help |
| 16 | //config: Prints the name of a filesystem with given label or UUID. |
| 17 | //config: WARNING: |
| 18 | //config: With all submodules selected, it will add ~8k to busybox. |
| 19 | |
| 20 | /* Benefits from suid root: better access to /dev/BLOCKDEVs: */ |
| 21 | //applet:IF_FINDFS(APPLET(findfs, BB_DIR_SBIN, BB_SUID_MAYBE)) |
| 22 | |
| 23 | //kbuild:lib-$(CONFIG_FINDFS) += findfs.o |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 24 | |
Pere Orga | 5bc8c00 | 2011-04-11 03:29:49 +0200 | [diff] [blame] | 25 | //usage:#define findfs_trivial_usage |
| 26 | //usage: "LABEL=label or UUID=uuid" |
| 27 | //usage:#define findfs_full_usage "\n\n" |
| 28 | //usage: "Find a filesystem device based on a label or UUID" |
| 29 | //usage: |
| 30 | //usage:#define findfs_example_usage |
| 31 | //usage: "$ findfs LABEL=MyDevice" |
| 32 | |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 33 | #include "libbb.h" |
| 34 | #include "volume_id.h" |
| 35 | |
| 36 | int findfs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 37 | int findfs_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 38 | { |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 39 | char *dev = *++argv; |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 40 | |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 41 | if (!dev) |
Denis Vlasenko | 53ce7f0 | 2008-02-19 11:29:46 +0000 | [diff] [blame] | 42 | bb_show_usage(); |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 43 | |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 44 | if (is_prefixed_with(dev, "/dev/")) { |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 45 | /* Just pass any /dev/xxx name right through. |
| 46 | * This might aid in some scripts being able |
| 47 | * to call this unconditionally */ |
| 48 | dev = NULL; |
| 49 | } else { |
| 50 | /* Otherwise, handle LABEL=xxx and UUID=xxx, |
| 51 | * fail on anything else */ |
| 52 | if (!resolve_mount_spec(argv)) |
| 53 | bb_show_usage(); |
| 54 | } |
Denis Vlasenko | 53ce7f0 | 2008-02-19 11:29:46 +0000 | [diff] [blame] | 55 | |
Natanael Copa | 9aff299 | 2009-09-20 04:28:22 +0200 | [diff] [blame] | 56 | if (*argv != dev) { |
| 57 | puts(*argv); |
Denis Vlasenko | de7684a | 2008-02-18 21:08:49 +0000 | [diff] [blame] | 58 | return 0; |
| 59 | } |
| 60 | return 1; |
Denis Vlasenko | 53ce7f0 | 2008-02-19 11:29:46 +0000 | [diff] [blame] | 61 | } |