source: MondoRescue/branches/3.2/mindi-busybox/libbb/find_mount_point.c@ 3232

Last change on this file since 3232 was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 1.7 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
[821]8 */
9
10#include "libbb.h"
[1765]11#include <mntent.h>
[821]12
13/*
14 * Given a block device, find the mount table entry if that block device
15 * is mounted.
16 *
17 * Given any other file (or directory), find the mount table entry for its
18 * filesystem.
19 */
[2725]20struct mntent* FAST_FUNC find_mount_point(const char *name, int subdir_too)
[821]21{
22 struct stat s;
[2725]23 FILE *mtab_fp;
[821]24 struct mntent *mountEntry;
[2725]25 dev_t devno_of_name;
26 bool block_dev;
[821]27
28 if (stat(name, &s) != 0)
[2725]29 return NULL;
[821]30
[2725]31 devno_of_name = s.st_dev;
32 block_dev = 0;
[3232]33 /* Why S_ISCHR? - UBI volumes use char devices, not block */
34 if (S_ISBLK(s.st_mode) || S_ISCHR(s.st_mode)) {
[2725]35 devno_of_name = s.st_rdev;
36 block_dev = 1;
37 }
[821]38
[2725]39 mtab_fp = setmntent(bb_path_mtab_file, "r");
40 if (!mtab_fp)
41 return NULL;
[821]42
[2725]43 while ((mountEntry = getmntent(mtab_fp)) != NULL) {
44 /* rootfs mount in Linux 2.6 exists always,
45 * and it makes sense to always ignore it.
46 * Otherwise people can't reference their "real" root! */
[3232]47 if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(mountEntry->mnt_fsname, "rootfs") == 0)
[2725]48 continue;
[821]49
[1765]50 if (strcmp(name, mountEntry->mnt_dir) == 0
51 || strcmp(name, mountEntry->mnt_fsname) == 0
52 ) { /* String match. */
[821]53 break;
[1765]54 }
[2725]55
56 if (!(subdir_too || block_dev))
57 continue;
58
59 /* Is device's dev_t == name's dev_t? */
60 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == devno_of_name)
[821]61 break;
[2725]62 /* Match the directory's mount point. */
63 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == devno_of_name)
[821]64 break;
65 }
[2725]66 endmntent(mtab_fp);
67
[821]68 return mountEntry;
69}
Note: See TracBrowser for help on using the repository browser.