]> git.ipfire.org Git - thirdparty/util-linux.git/blame - sys-utils/mountpoint.c
rev: be careful with close()
[thirdparty/util-linux.git] / sys-utils / mountpoint.c
CommitLineData
2a1d943d
KZ
1/*
2 * mountpoint(1) - see if a directory is a mountpoint
3 *
9e930041 4 * This is libmount based reimplementation of the mountpoint(1)
2a1d943d
KZ
5 * from sysvinit project.
6 *
7 *
8 * Copyright (C) 2011 Red Hat, Inc. All rights reserved.
9 * Written by Karel Zak <kzak@redhat.com>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it would be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
7cebf0bb
SK
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2a1d943d
KZ
24 */
25
26#include <stdio.h>
27#include <stdlib.h>
28#include <errno.h>
29#include <string.h>
30#include <getopt.h>
31#include <unistd.h>
32#include <sys/types.h>
33#include <sys/stat.h>
2a1d943d
KZ
34
35#include <libmount.h>
36
37#include "nls.h"
38#include "xalloc.h"
39#include "c.h"
efb8854f 40#include "closestream.h"
39edf681 41#include "pathnames.h"
2a1d943d 42
f112f41e
SK
43struct mountpoint_control {
44 char *path;
45 dev_t dev;
46 struct stat st;
47 unsigned int
48 dev_devno:1,
49 fs_devno:1,
50 quiet:1;
51};
2a1d943d 52
f112f41e 53static int dir_to_device(struct mountpoint_control *ctl)
2a1d943d 54{
39edf681 55 struct libmnt_table *tb = mnt_new_table_from_file(_PATH_PROC_MOUNTINFO);
2a1d943d 56 struct libmnt_fs *fs;
eb9d3706 57 struct libmnt_cache *cache;
eac83fbc 58 int rc = -1;
2a1d943d 59
dfd2c714
KZ
60 if (!tb) {
61 /*
62 * Fallback. Traditional way to detect mountpoints. This way
63 * is independent on /proc, but not able to detect bind mounts.
64 */
f112f41e 65 struct stat pst;
eb9d3706 66 char buf[PATH_MAX], *cn;
dfd2c714
KZ
67 int len;
68
f112f41e 69 cn = mnt_resolve_path(ctl->path, NULL); /* canonicalize */
eb9d3706 70
f112f41e 71 len = snprintf(buf, sizeof(buf), "%s/..", cn ? cn : ctl->path);
eb9d3706
KZ
72 free(cn);
73
06fa5817 74 if (len < 0 || (size_t) len >= sizeof(buf))
04f087ec 75 return -1;
dfd2c714 76 if (stat(buf, &pst) !=0)
04f087ec 77 return -1;
dfd2c714 78
8d69fd43 79 if (ctl->st.st_dev != pst.st_dev || ctl->st.st_ino == pst.st_ino) {
f112f41e 80 ctl->dev = ctl->st.st_dev;
04f087ec
ZL
81 return 0;
82 }
dfd2c714 83
04f087ec 84 return -1;
dfd2c714 85 }
2a1d943d 86
eb9d3706
KZ
87 /* to canonicalize all necessary paths */
88 cache = mnt_new_cache();
89 mnt_table_set_cache(tb, cache);
6195f9e6 90 mnt_unref_cache(cache);
eb9d3706 91
f112f41e 92 fs = mnt_table_find_target(tb, ctl->path, MNT_ITER_BACKWARD);
eac83fbc 93 if (fs && mnt_fs_get_target(fs)) {
f112f41e 94 ctl->dev = mnt_fs_get_devno(fs);
eac83fbc
DR
95 rc = 0;
96 }
2a1d943d 97
50fccba1 98 mnt_unref_table(tb);
eac83fbc 99 return rc;
2a1d943d
KZ
100}
101
f112f41e 102static int print_devno(const struct mountpoint_control *ctl)
2a1d943d 103{
f112f41e
SK
104 if (!S_ISBLK(ctl->st.st_mode)) {
105 if (!ctl->quiet)
106 warnx(_("%s: not a block device"), ctl->path);
2a1d943d
KZ
107 return -1;
108 }
f112f41e 109 printf("%u:%u\n", major(ctl->st.st_rdev), minor(ctl->st.st_rdev));
2a1d943d
KZ
110 return 0;
111}
112
6e1eda6f 113static void __attribute__((__noreturn__)) usage(void)
2a1d943d 114{
6e1eda6f 115 FILE *out = stdout;
30b61b7b 116 fputs(USAGE_HEADER, out);
4f92adb6
KZ
117 fprintf(out,
118 _(" %1$s [-qd] /path/to/directory\n"
119 " %1$s -x /dev/device\n"), program_invocation_short_name);
120
451dbcfa
BS
121 fputs(USAGE_SEPARATOR, out);
122 fputs(_("Check whether a directory or file is a mountpoint.\n"), out);
123
30b61b7b 124 fputs(USAGE_OPTIONS, out);
4f92adb6
KZ
125 fputs(_(" -q, --quiet quiet mode - don't print anything\n"
126 " -d, --fs-devno print maj:min device number of the filesystem\n"
30b61b7b
SK
127 " -x, --devno print maj:min device number of the block device\n"), out);
128 fputs(USAGE_SEPARATOR, out);
f45f3ec3
RM
129 printf(USAGE_HELP_OPTIONS(20));
130 printf(USAGE_MAN_TAIL("mountpoint(1)"));
2a1d943d 131
6e1eda6f 132 exit(EXIT_SUCCESS);
2a1d943d
KZ
133}
134
135int main(int argc, char **argv)
136{
ee5de88c 137 int c;
87918040 138 struct mountpoint_control ctl = { NULL };
2a1d943d
KZ
139
140 static const struct option longopts[] = {
87918040
SK
141 { "quiet", no_argument, NULL, 'q' },
142 { "fs-devno", no_argument, NULL, 'd' },
143 { "devno", no_argument, NULL, 'x' },
144 { "help", no_argument, NULL, 'h' },
145 { "version", no_argument, NULL, 'V' },
146 { NULL, 0, NULL, 0 }
2a1d943d
KZ
147 };
148
149 setlocale(LC_ALL, "");
150 bindtextdomain(PACKAGE, LOCALEDIR);
151 textdomain(PACKAGE);
2c308875 152 close_stdout_atexit();
2a1d943d
KZ
153
154 mnt_init_debug(0);
155
30b61b7b 156 while ((c = getopt_long(argc, argv, "qdxhV", longopts, NULL)) != -1) {
2a1d943d
KZ
157
158 switch(c) {
159 case 'q':
f112f41e 160 ctl.quiet = 1;
2a1d943d
KZ
161 break;
162 case 'd':
f112f41e 163 ctl.fs_devno = 1;
2a1d943d
KZ
164 break;
165 case 'x':
f112f41e 166 ctl.dev_devno = 1;
2a1d943d 167 break;
2c308875 168
2a1d943d 169 case 'h':
6e1eda6f 170 usage();
30b61b7b 171 case 'V':
2c308875 172 print_version(EXIT_SUCCESS);
2a1d943d 173 default:
677ec86c 174 errtryhelp(EXIT_FAILURE);
2a1d943d
KZ
175 }
176 }
177
6e1eda6f
RM
178 if (optind + 1 != argc) {
179 warnx(_("bad usage"));
180 errtryhelp(EXIT_FAILURE);
181 }
2a1d943d 182
f112f41e 183 ctl.path = argv[optind];
2a1d943d 184
f112f41e
SK
185 if (stat(ctl.path, &ctl.st)) {
186 if (!ctl.quiet)
187 err(EXIT_FAILURE, "%s", ctl.path);
b031befc 188 return EXIT_FAILURE;
2a1d943d 189 }
f112f41e 190 if (ctl.dev_devno)
ee5de88c
SK
191 return print_devno(&ctl) ? EXIT_FAILURE : EXIT_SUCCESS;
192 if (dir_to_device(&ctl)) {
193 if (!ctl.quiet)
194 printf(_("%s is not a mountpoint\n"), ctl.path);
195 return EXIT_FAILURE;
2a1d943d 196 }
ee5de88c
SK
197 if (ctl.fs_devno)
198 printf("%u:%u\n", major(ctl.dev), minor(ctl.dev));
199 else if (!ctl.quiet)
200 printf(_("%s is a mountpoint\n"), ctl.path);
201 return EXIT_SUCCESS;
2a1d943d 202}