diff options
| author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-20 05:07:08 +0000 |
|---|---|---|
| committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-08-20 05:07:08 +0000 |
| commit | 43b6f06165941bdbdce8e200a63ac6341c09ec23 (patch) | |
| tree | 2bec1c6e32716bf8bc204ed411e6287ee728e3f9 /miscutils | |
| parent | d136244c97872e53d0d474c61d928b549226b1d5 (diff) | |
| download | busybox-w32-43b6f06165941bdbdce8e200a63ac6341c09ec23.tar.gz busybox-w32-43b6f06165941bdbdce8e200a63ac6341c09ec23.tar.bz2 busybox-w32-43b6f06165941bdbdce8e200a63ac6341c09ec23.zip | |
Bernhard Fischer provided a mountpoint(1) applet. This is apparently something
sysvinit provides, and which is used by the debian init scripts.
git-svn-id: svn://busybox.net/trunk/busybox@11219 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/Config.in | 6 | ||||
| -rw-r--r-- | miscutils/Makefile.in | 1 | ||||
| -rw-r--r-- | miscutils/mountpoint.c | 70 |
3 files changed, 77 insertions, 0 deletions
diff --git a/miscutils/Config.in b/miscutils/Config.in index 6c68cd08e..1f14d212f 100644 --- a/miscutils/Config.in +++ b/miscutils/Config.in | |||
| @@ -194,6 +194,12 @@ config CONFIG_FEATURE_MAKEDEVS_TABLE | |||
| 194 | 194 | ||
| 195 | endchoice | 195 | endchoice |
| 196 | 196 | ||
| 197 | config CONFIG_MOUNTPOINT | ||
| 198 | bool "mountpoint" | ||
| 199 | default n | ||
| 200 | help | ||
| 201 | mountpoint checks if the directory is a mountpoint. | ||
| 202 | |||
| 197 | config CONFIG_MT | 203 | config CONFIG_MT |
| 198 | bool "mt" | 204 | bool "mt" |
| 199 | default n | 205 | default n |
diff --git a/miscutils/Makefile.in b/miscutils/Makefile.in index 8c53104ed..ee1cc7519 100644 --- a/miscutils/Makefile.in +++ b/miscutils/Makefile.in | |||
| @@ -34,6 +34,7 @@ MISCUTILS-$(CONFIG_EJECT) += eject.o | |||
| 34 | MISCUTILS-$(CONFIG_HDPARM) += hdparm.o | 34 | MISCUTILS-$(CONFIG_HDPARM) += hdparm.o |
| 35 | MISCUTILS-$(CONFIG_LAST) += last.o | 35 | MISCUTILS-$(CONFIG_LAST) += last.o |
| 36 | MISCUTILS-$(CONFIG_MAKEDEVS) += makedevs.o | 36 | MISCUTILS-$(CONFIG_MAKEDEVS) += makedevs.o |
| 37 | MISCUTILS-$(CONFIG_MOUNTPOINT) += mountpoint.o | ||
| 37 | MISCUTILS-$(CONFIG_MT) += mt.o | 38 | MISCUTILS-$(CONFIG_MT) += mt.o |
| 38 | MISCUTILS-$(CONFIG_RX) += rx.o | 39 | MISCUTILS-$(CONFIG_RX) += rx.o |
| 39 | MISCUTILS-$(CONFIG_SETSID) += setsid.o | 40 | MISCUTILS-$(CONFIG_SETSID) += setsid.o |
diff --git a/miscutils/mountpoint.c b/miscutils/mountpoint.c new file mode 100644 index 000000000..46b2d4e26 --- /dev/null +++ b/miscutils/mountpoint.c | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | /* vi: set sw=4 ts=4: */ | ||
| 2 | /* | ||
| 3 | * mountpoint implementation for busybox | ||
| 4 | * | ||
| 5 | * Copyright (C) 2005 Bernhard Fischer | ||
| 6 | * | ||
| 7 | * Licensed under the GPL v2, see the file LICENSE in this tarball. | ||
| 8 | * | ||
| 9 | * Based on sysvinit's mountpoint | ||
| 10 | */ | ||
| 11 | |||
| 12 | #include <sys/stat.h> | ||
| 13 | #include <errno.h> /* errno */ | ||
| 14 | #include <string.h> /* strerror */ | ||
| 15 | #include <getopt.h> /* optind */ | ||
| 16 | #include "busybox.h" | ||
| 17 | |||
| 18 | int mountpoint_main(int argc, char **argv) | ||
| 19 | { | ||
| 20 | int opt = bb_getopt_ulflags(argc, argv, "qdx"); | ||
| 21 | #define OPT_q (1) | ||
| 22 | #define OPT_d (2) | ||
| 23 | #define OPT_x (4) | ||
| 24 | |||
| 25 | if (optind != argc - 1) | ||
| 26 | bb_show_usage(); | ||
| 27 | { | ||
| 28 | char *arg = argv[optind]; | ||
| 29 | struct stat st; | ||
| 30 | |||
| 31 | if ( (opt & OPT_x && stat(arg, &st) == 0) || (lstat(arg, &st) == 0) ) { | ||
| 32 | if (opt & OPT_x) { | ||
| 33 | if (S_ISBLK(st.st_mode)) | ||
| 34 | { | ||
| 35 | bb_printf("%u:%u\n", major(st.st_rdev), | ||
| 36 | minor(st.st_rdev)); | ||
| 37 | return EXIT_SUCCESS; | ||
| 38 | } else { | ||
| 39 | if (opt & OPT_q) | ||
| 40 | putchar('\n'); | ||
| 41 | else | ||
| 42 | bb_error_msg("%s: not a block device", arg); | ||
| 43 | } | ||
| 44 | return EXIT_FAILURE; | ||
| 45 | } else | ||
| 46 | if (S_ISDIR(st.st_mode)) { | ||
| 47 | dev_t st_dev = st.st_dev; | ||
| 48 | ino_t st_ino = st.st_ino; | ||
| 49 | char *p; | ||
| 50 | bb_xasprintf(&p, "%s/..", arg); | ||
| 51 | if (stat(p, &st) == 0) { | ||
| 52 | short ret = (st_dev != st.st_dev) || | ||
| 53 | (st_dev == st.st_dev && st_ino == st.st_ino); | ||
| 54 | if (opt & OPT_d) | ||
| 55 | bb_printf("%u:%u\n", major(st_dev), minor(st_dev)); | ||
| 56 | else if (!(opt & OPT_q)) | ||
| 57 | bb_printf("%s is %sa mountpoint\n", arg, ret?"":"not "); | ||
| 58 | return !ret; | ||
| 59 | } | ||
| 60 | } else { | ||
| 61 | if (!(opt & OPT_q)) | ||
| 62 | bb_error_msg("%s: not a directory", arg); | ||
| 63 | return EXIT_FAILURE; | ||
| 64 | } | ||
| 65 | } | ||
| 66 | if (!(opt & OPT_q)) | ||
| 67 | bb_perror_msg(arg); | ||
| 68 | return EXIT_FAILURE; | ||
| 69 | } | ||
| 70 | } | ||
