1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
14 * Given a block device, find the mount table entry if that block device
17 * Given any other file (or directory), find the mount table entry for its
20 struct mntent* FAST_FUNC find_mount_point(const char *name, const char *table)
25 struct mntent *mountEntry;
27 if (stat(name, &s) != 0)
30 if ((s.st_mode & S_IFMT) == S_IFBLK)
31 mountDevice = s.st_rdev;
33 mountDevice = s.st_dev;
36 mountTable = setmntent(table ? table : bb_path_mtab_file, "r");
40 while ((mountEntry = getmntent(mountTable)) != 0) {
41 if (strcmp(name, mountEntry->mnt_dir) == 0
42 || strcmp(name, mountEntry->mnt_fsname) == 0
43 ) { /* String match. */
46 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice) /* Match the device. */
48 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice) /* Match the directory's mount point. */
51 endmntent(mountTable);