forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fstype.cpp
175 lines (160 loc) · 5.16 KB
/
fstype.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/* Copyright 2014-present Facebook, Inc.
* Licensed under the Apache License, Version 2.0 */
#include "watchman.h"
#ifdef HAVE_SYS_VFS_H
#include <sys/vfs.h>
#endif
#ifdef HAVE_SYS_STATVFS_H
#include <sys/statvfs.h>
#endif
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_SYS_MOUNT_H
#include <sys/mount.h>
#endif
#ifdef __linux__
#include <linux/magic.h>
#endif
#include <folly/FileUtil.h>
#include <folly/String.h>
#include "FileDescriptor.h"
// This function is used to return the fstype for a given path
// based on the linux style /proc/mounts data provided.
// It will return nullptr for paths that don't have a match.
w_string find_fstype_in_linux_proc_mounts(
folly::StringPiece path,
folly::StringPiece procMountsData) {
std::vector<folly::StringPiece> lines;
folly::StringPiece bestMountPoint, bestVfsType;
folly::split("\n", procMountsData, lines);
for (auto& line : lines) {
folly::StringPiece device, mountPoint, vfstype, opts, freq, passno;
if (folly::split(
" ", line, device, mountPoint, vfstype, opts, freq, passno)) {
// Look for the mountPoint that matches the longest prefix of path
if (mountPoint.size() > bestMountPoint.size() &&
path.startsWith(mountPoint)) {
if (
// mount point matches path exactly
path.size() == mountPoint.size() ||
// prefix ends with a slash
mountPoint.endsWith('/') ||
// the byte after the mount point prefix is a slash and thus is
// not an ambiguous prefix match
(path.size() > mountPoint.size() &&
path[mountPoint.size()] == '/')) {
// This is a better match than any prior mount point
bestMountPoint = mountPoint;
if (vfstype == "fuse") {
// For example: edenfs registers with fstype "fuse"
// and device "edenfs", so we take the device node
// as the filesystem type
bestVfsType = device;
} else {
// Most other fuse filesystems use libfuse which registers
// with fstype names like "fuse.something", or we're working
// with non-fuse filesystems and have a more meaningful
// fstype reported anyway
bestVfsType = vfstype;
}
}
}
}
}
if (bestVfsType.empty()) {
return nullptr;
}
return w_string(bestVfsType.data(), bestVfsType.size());
}
// The primary purpose of checking the filesystem type is to prevent
// watching filesystems that are known to be problematic, such as
// network or remote mounted filesystems. As such, we don't strictly
// need to have a fully comprehensive mapping of the underlying filesystem
// type codes to names, just the known problematic types
w_string w_fstype(const char* path) {
#ifdef __linux__
// If possible, we prefer to read the filesystem type names from
// `/proc/self/mounts`
std::string mounts;
if (folly::readFile("/proc/self/mounts", mounts)) {
auto fstype = find_fstype_in_linux_proc_mounts(path, mounts);
if (fstype) {
return fstype;
}
}
// Reading the mount table can fail for the simple reason that `/proc` isn't
// mounted, so fall back to some slightly manual code that looks at known
// filesystem type ids.
struct statfs sfs;
const char* name = "unknown";
// Unfortunately the FUSE magic number is not defined in linux/magic.h,
// and is only available in the Linux source code in fs/fuse/inode.c
constexpr __fsword_t FUSE_MAGIC_NUMBER = 0x65735546;
if (statfs(path, &sfs) == 0) {
switch (sfs.f_type) {
#ifdef CIFS_MAGIC_NUMBER
case CIFS_MAGIC_NUMBER:
name = "cifs";
break;
#endif
#ifdef NFS_SUPER_MAGIC
case NFS_SUPER_MAGIC:
name = "nfs";
break;
#endif
#ifdef SMB_SUPER_MAGIC
case SMB_SUPER_MAGIC:
name = "smb";
break;
#endif
case FUSE_MAGIC_NUMBER:
name = "fuse";
break;
default:
name = "unknown";
}
}
return w_string(name, W_STRING_UNICODE);
#elif STATVFS_HAS_FSTYPE_AS_STRING
struct statvfs sfs;
if (statvfs(path, &sfs) == 0) {
#ifdef HAVE_STRUCT_STATVFS_F_FSTYPENAME
return w_string(sfs.f_fstypename, W_STRING_UNICODE);
#endif
#ifdef HAVE_STRUCT_STATVFS_F_BASETYPE
return w_string(sfs.f_basetype, W_STRING_UNICODE);
#endif
}
#elif HAVE_STATFS
struct statfs sfs;
if (statfs(path, &sfs) == 0) {
return w_string(sfs.f_fstypename, W_STRING_UNICODE);
}
#endif
#ifdef _WIN32
auto wpath = w_string_piece(path).asWideUNC();
WCHAR fstype[MAX_PATH + 1];
watchman::FileDescriptor h(
intptr_t(CreateFileW(
wpath.c_str(),
GENERIC_READ,
FILE_SHARE_DELETE | FILE_SHARE_READ | FILE_SHARE_WRITE,
nullptr,
OPEN_EXISTING,
FILE_FLAG_BACKUP_SEMANTICS,
nullptr)),
watchman::FileDescriptor::FDType::Generic);
if (h &&
GetVolumeInformationByHandleW(
(HANDLE)h.handle(), nullptr, 0, 0, 0, 0, fstype, MAX_PATH + 1)) {
return w_string(fstype, wcslen(fstype));
}
return w_string("unknown", W_STRING_UNICODE);
#else
unused_parameter(path);
return w_string("unknown", W_STRING_UNICODE);
#endif
}
/* vim:ts=2:sw=2:et:
*/