[BusyBox] [patch] new applet mountpoint

Bernhard Fischer rep.nop at aon.at
Thu Aug 18 19:16:42 UTC 2005


Hi,

Attached patch adds a mountpoint(1) applet.

$ size miscutils/mountpoint.o
   text	   data	    bss	    dec	    hex	filename
    614	      0	      0	    614	    266	miscutils/mountpoint.o

It's relatively big but feature complete.
Ok?

thank you,
Bernhard
-------------- next part --------------
diff -X excl -ruNpd busybox.oorig/include/applets.h busybox/include/applets.h
--- busybox.oorig/include/applets.h	2005-08-09 19:04:12.000000000 +0200
+++ busybox/include/applets.h	2005-08-18 15:56:14.849532024 +0200
@@ -435,6 +435,9 @@
 #ifdef CONFIG_MOUNT
 	APPLET(mount, mount_main, _BB_DIR_BIN, _BB_SUID_NEVER)
 #endif
+#ifdef CONFIG_MOUNTPOINT
+	APPLET(mountpoint, mountpoint_main, _BB_DIR_BIN, _BB_SUID_NEVER)
+#endif
 #ifdef CONFIG_MSH
 	APPLET_NOUSAGE("msh", msh_main, _BB_DIR_BIN, _BB_SUID_NEVER)
 #endif
diff -X excl -ruNpd busybox.oorig/include/usage.h busybox/include/usage.h
--- busybox.oorig/include/usage.h	2005-08-09 19:04:12.000000000 +0200
+++ busybox/include/usage.h	2005-08-18 20:57:42.948727302 +0200
@@ -1922,6 +1922,20 @@
 	"$ mount /dev/fd0 /mnt -t msdos -o ro\n" \
 	"$ mount /tmp/diskimage /opt -t ext2 -o loop\n"
 
+#define mountpoint_trivial_usage \
+	"[-q] <[-d] DIR | -x DEVICE>"
+#define mountpoint_full_usage \
+	"mountpoint checks if the directory is a mountpoint\n\n" \
+	"Options:\n"  \
+	"\t-q:\t\tBe more quiet\n" \
+	"\t-d:\t\tPrint major/minor device number of the filesystem\n" \
+	"\t-x:\t\tPrint major/minor device number of the blockdevice"
+#define mountpoint_example_usage \
+	"$ mountpoint /proc\n" \
+	"/proc is not a mountpoint\n" \
+	"$ mountpoint /sys\n" \
+	"/sys is a mountpoint\n"
+
 #define mt_trivial_usage \
 	"[-f device] opcode value"
 #define mt_full_usage \
diff -X excl -ruNpd busybox.oorig/miscutils/Config.in busybox/miscutils/Config.in
--- busybox.oorig/miscutils/Config.in	2005-08-09 19:04:11.000000000 +0200
+++ busybox/miscutils/Config.in	2005-08-18 15:32:34.066449876 +0200
@@ -194,6 +194,12 @@ config CONFIG_FEATURE_MAKEDEVS_TABLE
 
 endchoice
 
+config CONFIG_MOUNTPOINT
+	bool "mountpoint"
+	default n
+	help
+	  mountpoint checks if the directory is a mountpoint.
+
 config CONFIG_MT
 	bool "mt"
 	default n
diff -X excl -ruNpd busybox.oorig/miscutils/Makefile.in busybox/miscutils/Makefile.in
--- busybox.oorig/miscutils/Makefile.in	2005-08-09 19:04:11.000000000 +0200
+++ busybox/miscutils/Makefile.in	2005-08-18 13:58:35.593964158 +0200
@@ -34,6 +34,7 @@ MISCUTILS-$(CONFIG_EJECT)       += eject
 MISCUTILS-$(CONFIG_HDPARM)      += hdparm.o
 MISCUTILS-$(CONFIG_LAST)        += last.o
 MISCUTILS-$(CONFIG_MAKEDEVS)    += makedevs.o
+MISCUTILS-$(CONFIG_MOUNTPOINT)	+= mountpoint.o
 MISCUTILS-$(CONFIG_MT)          += mt.o
 MISCUTILS-$(CONFIG_RX)          += rx.o
 MISCUTILS-$(CONFIG_SETSID)      += setsid.o
diff -X excl -ruNpd busybox.oorig/miscutils/mountpoint.c busybox/miscutils/mountpoint.c
--- busybox.oorig/miscutils/mountpoint.c	1970-01-01 01:00:00.000000000 +0100
+++ busybox/miscutils/mountpoint.c	2005-08-18 20:01:18.796042942 +0200
@@ -0,0 +1,89 @@
+/* vi: set sw=4 ts=4: */
+/*
+ * mountpoint implementation for busybox
+ *
+ * Copyright (C) 2005 Bernhard Fischer
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * Based on sysvinit's mountpoint
+ */
+
+#include <sys/stat.h>
+#include <errno.h> /* errno */
+#include <string.h> /* strerror */
+#include <getopt.h> /* optind */
+#include "busybox.h"
+
+int mountpoint_main(int argc, char **argv)
+{
+	int opt = bb_getopt_ulflags(argc, argv, "qdx");
+#define OPT_q (1)
+#define OPT_d (2)
+#define OPT_x (4)
+
+	if (optind != argc - 1)
+		bb_show_usage();
+	{
+		char *arg = argv[optind];
+		struct stat st;
+
+		if ( (opt & OPT_x && stat(arg, &st) == 0) || (lstat(arg, &st) == 0)) {
+			if (opt & OPT_x) {
+#ifdef __linux__
+				if (S_ISBLK(st.st_mode))
+#else
+				if (S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode))
+#endif
+				{
+						bb_printf("%u:%u\n", major(st.st_rdev),
+									minor(st.st_rdev));
+						return EXIT_SUCCESS;
+				} else {
+					if (opt & OPT_q)
+						bb_printf("\n");
+					else
+						bb_fprintf(stderr, "mountpoint: %s: not a block device\n",
+							arg);
+				}
+				return EXIT_FAILURE;
+
+			} else
+			if (S_ISDIR(st.st_mode)) {
+				dev_t st_dev = st.st_dev;
+				ino_t st_ino = st.st_ino;
+				char *p;
+				bb_xasprintf(&p, "%s/..", arg);
+				if (stat(p, &st) == 0) {
+					short ret = (st_dev != st.st_dev) ||
+						(st_dev == st.st_dev && st_ino == st.st_ino);
+					if (opt & OPT_d)
+						bb_printf("%u:%u\n", major(st_dev), minor(st_dev));
+					else if (!(opt & OPT_q))
+						bb_printf("%s is %sa mountpoint\n", arg, ret?"":"not ");
+					return !ret;
+				}
+			} else {
+				if (!(opt & OPT_q))
+					bb_fprintf(stderr, "mountpoint: %s: not a directory\n",
+							arg);
+				return EXIT_FAILURE;
+			}
+		}
+		if (!(opt & OPT_q))
+			 bb_fprintf(stderr, "mountpoint: %s: %s\n", arg, strerror(errno));
+		return EXIT_FAILURE;
+	}
+}



More information about the busybox mailing list