blob: 83527a8c888ed93a526bc7975a132a7c12b4b2dd [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Eric Andersenaad1a882001-03-16 22:47:14 +000020 */
21
22#include <stdio.h>
Eric Andersen08ff8a42001-03-23 17:02:05 +000023#include <string.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000024#include "libbb.h"
25
26
27#include <mntent.h>
28/*
29 * Given a block device, find the mount table entry if that block device
30 * is mounted.
31 *
32 * Given any other file (or directory), find the mount table entry for its
33 * filesystem.
34 */
Rob Landleydfba7412006-03-06 20:47:33 +000035struct mntent *find_mount_point(const char *name, const char *table)
Eric Andersenaad1a882001-03-16 22:47:14 +000036{
37 struct stat s;
38 dev_t mountDevice;
39 FILE *mountTable;
40 struct mntent *mountEntry;
41
42 if (stat(name, &s) != 0)
43 return 0;
44
45 if ((s.st_mode & S_IFMT) == S_IFBLK)
46 mountDevice = s.st_rdev;
47 else
48 mountDevice = s.st_dev;
49
50
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000051 if ((mountTable = setmntent(table ? table : bb_path_mtab_file, "r")) == 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000052 return 0;
53
54 while ((mountEntry = getmntent(mountTable)) != 0) {
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000055
56 if(strcmp(name, mountEntry->mnt_dir) == 0
Eric Andersenaad1a882001-03-16 22:47:14 +000057 || strcmp(name, mountEntry->mnt_fsname) == 0) /* String match. */
58 break;
59 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice) /* Match the device. */
60 break;
61 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice) /* Match the directory's mount point. */
62 break;
63 }
64 endmntent(mountTable);
65 return mountEntry;
66}
67
68
69/* END CODE */
70/*
71Local Variables:
72c-file-style: "linux"
73c-basic-offset: 4
74tab-width: 4
75End:
76*/