blob: 8341612d4034fa5d9e38767f1ba4629437eacb67 [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 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
10#include <stdio.h>
Eric Andersen08ff8a42001-03-23 17:02:05 +000011#include <string.h>
Eric Andersenaad1a882001-03-16 22:47:14 +000012#include "libbb.h"
13
14
15#include <mntent.h>
16/*
17 * Given a block device, find the mount table entry if that block device
18 * is mounted.
19 *
20 * Given any other file (or directory), find the mount table entry for its
21 * filesystem.
22 */
Rob Landleydfba7412006-03-06 20:47:33 +000023struct mntent *find_mount_point(const char *name, const char *table)
Eric Andersenaad1a882001-03-16 22:47:14 +000024{
25 struct stat s;
26 dev_t mountDevice;
27 FILE *mountTable;
28 struct mntent *mountEntry;
29
30 if (stat(name, &s) != 0)
31 return 0;
32
33 if ((s.st_mode & S_IFMT) == S_IFBLK)
34 mountDevice = s.st_rdev;
35 else
36 mountDevice = s.st_dev;
37
38
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000039 if ((mountTable = setmntent(table ? table : bb_path_mtab_file, "r")) == 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000040 return 0;
41
42 while ((mountEntry = getmntent(mountTable)) != 0) {
Bernhard Reutner-Fischer7ca61b62006-01-15 14:04:57 +000043
44 if(strcmp(name, mountEntry->mnt_dir) == 0
Eric Andersenaad1a882001-03-16 22:47:14 +000045 || strcmp(name, mountEntry->mnt_fsname) == 0) /* String match. */
46 break;
47 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice) /* Match the device. */
48 break;
49 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice) /* Match the directory's mount point. */
50 break;
51 }
52 endmntent(mountTable);
53 return mountEntry;
54}