2005-08-20 05:07:08 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* mountpoint implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 Bernhard Fischer
|
|
|
|
*
|
2006-04-16 20:38:26 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2005-08-20 05:07:08 +00:00
|
|
|
*
|
|
|
|
* Based on sysvinit's mountpoint
|
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2005-08-20 05:07:08 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int mountpoint_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2005-08-20 05:07:08 +00:00
|
|
|
int mountpoint_main(int argc, char **argv)
|
|
|
|
{
|
2006-10-26 23:21:47 +00:00
|
|
|
struct stat st;
|
|
|
|
char *arg;
|
2007-08-18 15:32:12 +00:00
|
|
|
int opt = getopt32(argv, "qdx");
|
2005-08-20 05:07:08 +00:00
|
|
|
#define OPT_q (1)
|
|
|
|
#define OPT_d (2)
|
|
|
|
#define OPT_x (4)
|
|
|
|
|
|
|
|
if (optind != argc - 1)
|
|
|
|
bb_show_usage();
|
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
arg = argv[optind];
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
if ( (opt & OPT_x && stat(arg, &st) == 0) || (lstat(arg, &st) == 0) ) {
|
|
|
|
if (opt & OPT_x) {
|
|
|
|
if (S_ISBLK(st.st_mode)) {
|
|
|
|
printf("%u:%u\n", major(st.st_rdev),
|
|
|
|
minor(st.st_rdev));
|
|
|
|
return EXIT_SUCCESS;
|
2005-08-20 05:07:08 +00:00
|
|
|
} else {
|
2006-10-26 23:21:47 +00:00
|
|
|
if (opt & OPT_q)
|
2007-09-27 10:20:47 +00:00
|
|
|
bb_putchar('\n');
|
2006-10-26 23:21:47 +00:00
|
|
|
else
|
|
|
|
bb_error_msg("%s: not a block device", arg);
|
2005-08-20 05:07:08 +00:00
|
|
|
}
|
2006-10-26 23:21:47 +00:00
|
|
|
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 = xasprintf("%s/..", arg);
|
|
|
|
|
|
|
|
if (stat(p, &st) == 0) {
|
|
|
|
int ret = (st_dev != st.st_dev) ||
|
|
|
|
(st_dev == st.st_dev && st_ino == st.st_ino);
|
|
|
|
if (opt & OPT_d)
|
|
|
|
printf("%u:%u\n", major(st_dev), minor(st_dev));
|
|
|
|
else if (!(opt & OPT_q))
|
|
|
|
printf("%s is %sa mountpoint\n", arg, ret?"":"not ");
|
|
|
|
return !ret;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!(opt & OPT_q))
|
|
|
|
bb_error_msg("%s: not a directory", arg);
|
|
|
|
return EXIT_FAILURE;
|
2005-08-20 05:07:08 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-26 23:21:47 +00:00
|
|
|
if (!(opt & OPT_q))
|
2007-10-01 11:58:38 +00:00
|
|
|
bb_simple_perror_msg(arg);
|
2006-10-26 23:21:47 +00:00
|
|
|
return EXIT_FAILURE;
|
2005-08-20 05:07:08 +00:00
|
|
|
}
|