blob: b541ce28c35d1cb05c911fb8b631d8bb6805895a [file] [log] [blame]
Rob Landleyd00b3a52005-08-20 05:07:08 +00001/* vi: set sw=4 ts=4: */
2/*
3 * mountpoint implementation for busybox
4 *
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00005 * Copyright (C) 2005 Bernhard Reutner-Fischer
Rob Landleyd00b3a52005-08-20 05:07:08 +00006 *
Mike Frysingerf284c762006-04-16 20:38:26 +00007 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Rob Landleyd00b3a52005-08-20 05:07:08 +00008 *
9 * Based on sysvinit's mountpoint
10 */
11
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Rob Landleyd00b3a52005-08-20 05:07:08 +000013
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000014int mountpoint_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000015int mountpoint_main(int argc UNUSED_PARAM, char **argv)
Rob Landleyd00b3a52005-08-20 05:07:08 +000016{
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000017 struct stat st;
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000018 const char *msg;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000019 char *arg;
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000020 int rc, opt;
21
22 opt_complementary = "=1"; /* must have one argument */
23 opt = getopt32(argv, "qdxn");
Rob Landleyd00b3a52005-08-20 05:07:08 +000024#define OPT_q (1)
25#define OPT_d (2)
26#define OPT_x (4)
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000027#define OPT_n (8)
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000028 arg = argv[optind];
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000029 msg = "%s";
Tim Rikerc1ef7bd2006-01-25 00:08:53 +000030
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000031 rc = (opt & OPT_x) ? stat(arg, &st) : lstat(arg, &st);
32 if (rc != 0)
33 goto err;
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000034
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000035 if (opt & OPT_x) {
36 if (S_ISBLK(st.st_mode)) {
37 printf("%u:%u\n", major(st.st_rdev),
38 minor(st.st_rdev));
39 return EXIT_SUCCESS;
Rob Landleyd00b3a52005-08-20 05:07:08 +000040 }
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000041 errno = 0; /* make perror_msg work as error_msg */
42 msg = "%s: not a block device";
43 goto err;
Rob Landleyd00b3a52005-08-20 05:07:08 +000044 }
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000045
46 errno = ENOTDIR;
47 if (S_ISDIR(st.st_mode)) {
48 dev_t st_dev = st.st_dev;
49 ino_t st_ino = st.st_ino;
50 char *p = xasprintf("%s/..", arg);
51
52 if (stat(p, &st) == 0) {
53 //int is_mnt = (st_dev != st.st_dev) || (st_dev == st.st_dev && st_ino == st.st_ino);
54 int is_not_mnt = (st_dev == st.st_dev) && (st_ino != st.st_ino);
55
56 if (opt & OPT_d)
57 printf("%u:%u\n", major(st_dev), minor(st_dev));
58 if (opt & OPT_n)
59 printf("%s %s\n", find_block_device(arg), arg);
60 if (!(opt & (OPT_q | OPT_d | OPT_n)))
61 printf("%s is %sa mountpoint\n", arg, is_not_mnt ? "not " : "");
62 return is_not_mnt;
63 }
64 arg = p;
65 /* else: stat had set errno, just fall through */
66 }
67
68 err:
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000069 if (!(opt & OPT_q))
Denis Vlasenko7a1ddf22008-11-29 12:54:16 +000070 bb_perror_msg(msg, arg);
Denis Vlasenkof0ed3762006-10-26 23:21:47 +000071 return EXIT_FAILURE;
Rob Landleyd00b3a52005-08-20 05:07:08 +000072}