forked from facebook/watchman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fstype.cpp
98 lines (90 loc) · 2.36 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
/* 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 "FileDescriptor.h"
// 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__
struct statfs sfs;
const char *name = "unknown";
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
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)));
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:
*/