blob: 1eb5dc9429cc2c8a6cb1fa240474bd2c50d89603 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.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 */
35extern struct mntent *find_mount_point(const char *name, const char *table)
36{
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
51 if ((mountTable = setmntent(table, "r")) == 0)
52 return 0;
53
54 while ((mountEntry = getmntent(mountTable)) != 0) {
55 if (strcmp(name, mountEntry->mnt_dir) == 0
56 || strcmp(name, mountEntry->mnt_fsname) == 0) /* String match. */
57 break;
58 if (stat(mountEntry->mnt_fsname, &s) == 0 && s.st_rdev == mountDevice) /* Match the device. */
59 break;
60 if (stat(mountEntry->mnt_dir, &s) == 0 && s.st_dev == mountDevice) /* Match the directory's mount point. */
61 break;
62 }
63 endmntent(mountTable);
64 return mountEntry;
65}
66
67
68/* END CODE */
69/*
70Local Variables:
71c-file-style: "linux"
72c-basic-offset: 4
73tab-width: 4
74End:
75*/