-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSymLinkUtils.cs
235 lines (203 loc) · 9.83 KB
/
SymLinkUtils.cs
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
using System;
using System.Runtime.InteropServices;
using System.Text;
using System.ComponentModel;
using Abuksigun.UnityGitUI;
using System.IO;
public static class SymLinkUtils
{
const uint IO_REPARSE_TAG_MOUNT_POINT = 0xA0000003;
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
struct ReparseDataBuffer
{
public uint ReparseTag;
public ushort ReparseDataLength;
public ushort Reserved;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
struct ReparseDataBufferJunction
{
public ReparseDataBuffer reparseDataBuffer;
public ushort SubstituteNameOffset;
public ushort SubstituteNameLength;
public ushort PrintNameOffset;
public ushort PrintNameLength;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x3FF0)]
public byte[] PathBuffer;
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
struct ReparseDataBufferSymLink
{
public ReparseDataBuffer reparseDataBuffer;
public ushort SubstituteNameOffset;
public ushort SubstituteNameLength;
public ushort PrintNameOffset;
public ushort PrintNameLength;
public uint Flags;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 0x3FF0)]
public byte[] PathBuffer;
}
#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
static void CreateJunction(string junctionPath, string targetPath)
{
const uint GENERIC_WRITE = 0x40000000;
const uint OPEN_EXISTING = 3;
const int FILE_FLAG_BACKUP_SEMANTICS = 0x02000000;
const int FILE_FLAG_REPARSE_POINT = 0x00400000;
const uint FSCTL_SET_REPARSE_POINT = 0x000900A4;
[DllImport("kernel32.dll", SetLastError = true)]
static extern int CreateDirectory(string lpPathName, IntPtr lpSecurityAttributes);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool DeviceIoControl(IntPtr hDevice, uint dwIoControlCode, IntPtr lpInBuffer, uint nInBufferSize, IntPtr lpOutBuffer, uint nOutBufferSize, out uint lpBytesReturned, IntPtr lpOverlapped);
[DllImport("kernel32.dll", SetLastError = true)]
static extern IntPtr CreateFile(string lpFileName, uint dwDesiredAccess, uint dwShareMode, IntPtr lpSecurityAttributes, uint dwCreationDisposition, uint dwFlagsAndAttributes, IntPtr hTemplateFile);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool CloseHandle(IntPtr hObject);
int result = CreateDirectory(junctionPath, IntPtr.Zero);
if (result == 0)
throw new Win32Exception(Marshal.GetLastWin32Error());
IntPtr handle = CreateFile(junctionPath, GENERIC_WRITE, 0, IntPtr.Zero, OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS | FILE_FLAG_REPARSE_POINT, IntPtr.Zero);
if (handle.ToInt64() == -1)
throw new Win32Exception(Marshal.GetLastWin32Error());
const string NonInterpretedPathPrefix = @"\??\";
byte[] targetDirBytes = Encoding.Unicode.GetBytes(NonInterpretedPathPrefix + targetPath);
ReparseDataBufferJunction buffer = new() {
reparseDataBuffer = new()
{
ReparseTag = IO_REPARSE_TAG_MOUNT_POINT,
ReparseDataLength = (ushort)(targetDirBytes.Length + 12),
},
SubstituteNameLength = (ushort)targetDirBytes.Length,
PrintNameOffset = (ushort)(targetDirBytes.Length + 2),
PathBuffer = new byte[0x3ff0]
};
Array.Copy(targetDirBytes, buffer.PathBuffer, targetDirBytes.Length);
IntPtr inBuffer = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(ReparseDataBufferJunction)));
try
{
Marshal.StructureToPtr(buffer, inBuffer, false);
uint bytesReturned;
bool success = DeviceIoControl(handle, FSCTL_SET_REPARSE_POINT, inBuffer, (uint)(targetDirBytes.Length + 20), IntPtr.Zero, 0, out bytesReturned, IntPtr.Zero);
CloseHandle(handle);
if (!success)
throw new Win32Exception(Marshal.GetLastWin32Error());
}
finally
{
Marshal.FreeHGlobal(inBuffer);
}
}
#endif
public static void CreateDirectoryLink(string sourceDirPath, string linkDirPath)
{
#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
CreateJunction(linkDirPath, sourceDirPath.Replace('/', '\\'));
#else
[DllImport("libc", SetLastError = true)]
static extern int symlink(string path1, string path2);
if (symlink(sourceDirPath, linkDirPath) != 0)
{
string errorMessage = GetUnixErrorMessage(Marshal.GetLastWin32Error());
throw new Exception($"Error creating symbolic link: {errorMessage}");
}
#endif
}
public static bool IsLink(string path)
{
var attributes = System.IO.File.GetAttributes(path);
return (attributes & System.IO.FileAttributes.ReparsePoint) == System.IO.FileAttributes.ReparsePoint;
}
public static string ResolveLink(string symlinkPath)
{
if (!IsLink(symlinkPath))
return symlinkPath;
#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
return ResolveJunctionWindows(symlinkPath).NormalizeSlashes();
#else
return ResolveSymbolicLinkUnix(symlinkPath).NormalizeSlashes();
#endif
}
#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
private static string ResolveJunctionWindows(string symlinkPath)
{
// Constants and external function definitions
const uint FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000;
const uint FILE_FLAG_BACKUP_SEMANTICS = 0x02000000;
const uint GENERIC_READ = 0x80000000;
const uint FILE_SHARE_READ = 0x1;
const uint OPEN_EXISTING = 0x3;
const uint FSCTL_GET_REPARSE_POINT = 0x000900A8;
const uint IO_REPARSE_TAG_SYMLINK = 0xA000000C;
const uint SYMLINK_FLAG_RELATIVE = 1;
[DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
static extern IntPtr CreateFile(string lpFileName, uint dwDesiredAccess, uint dwShareMode, IntPtr lpSecurityAttributes, uint dwCreationDisposition, uint dwFlagsAndAttributes, IntPtr hTemplateFile);
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool CloseHandle(IntPtr hObject);
[DllImport("kernel32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool DeviceIoControl(IntPtr hDevice, uint dwIoControlCode, IntPtr lpInBuffer, uint nInBufferSize, IntPtr lpOutBuffer, uint nOutBufferSize, out uint lpBytesReturned, IntPtr lpOverlapped);
IntPtr fileHandle = CreateFile(symlinkPath, GENERIC_READ, FILE_SHARE_READ, IntPtr.Zero, OPEN_EXISTING, FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS, IntPtr.Zero);
if (fileHandle == IntPtr.Zero)
{
throw new Win32Exception(Marshal.GetLastWin32Error());
}
int bufferSize = Marshal.SizeOf<ReparseDataBufferJunction>();
IntPtr reparseDataBufferPtr = Marshal.AllocHGlobal(bufferSize);
try
{
if (!DeviceIoControl(fileHandle, FSCTL_GET_REPARSE_POINT, IntPtr.Zero, 0, reparseDataBufferPtr, (uint)bufferSize, out uint bytesReturned, IntPtr.Zero))
{
Marshal.FreeHGlobal(reparseDataBufferPtr);
CloseHandle(fileHandle);
throw new Win32Exception(Marshal.GetLastWin32Error());
}
var reparseDataBuffer = (ReparseDataBuffer)Marshal.PtrToStructure(reparseDataBufferPtr, typeof(ReparseDataBuffer));
if (reparseDataBuffer.ReparseTag == IO_REPARSE_TAG_SYMLINK)
{
var symLinkBuffer = (ReparseDataBufferSymLink)Marshal.PtrToStructure(reparseDataBufferPtr, typeof(ReparseDataBufferSymLink));
string targetPath = Encoding.Unicode.GetString(symLinkBuffer.PathBuffer, symLinkBuffer.SubstituteNameOffset, symLinkBuffer.SubstituteNameLength);
return symLinkBuffer.Flags == SYMLINK_FLAG_RELATIVE ? Path.GetFullPath(Path.Combine(Path.GetDirectoryName(symlinkPath), targetPath)) : targetPath;
}
else if (reparseDataBuffer.ReparseTag == IO_REPARSE_TAG_MOUNT_POINT)
{
var junnctionBuffer = (ReparseDataBufferJunction)Marshal.PtrToStructure(reparseDataBufferPtr, typeof(ReparseDataBufferJunction));
string targetPath = Encoding.Unicode.GetString(junnctionBuffer.PathBuffer, junnctionBuffer.SubstituteNameOffset, junnctionBuffer.SubstituteNameLength);
if (targetPath.StartsWith(@"\??\") || targetPath.StartsWith(@"\\?\"))
targetPath = targetPath.Substring(4);
return targetPath;
}
else
{
return symlinkPath;
}
}
finally
{
Marshal.FreeHGlobal(reparseDataBufferPtr);
CloseHandle(fileHandle);
}
}
#else
private static string ResolveSymbolicLinkUnix(string symlinkPath)
{
[DllImport("libc", SetLastError = true)]
static extern int readlink([MarshalAs(UnmanagedType.LPTStr)] string pathname, [MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 2)] byte[] buf, int bufsiz);
byte[] buffer = new byte[8192];
int bytesRead = readlink(symlinkPath, buffer, buffer.Length);
if (bytesRead < 0)
{
string errorMessage = GetUnixErrorMessage(Marshal.GetLastWin32Error());
throw new Exception($"Error resolving symbolic link: {errorMessage}");
}
return System.Text.Encoding.UTF8.GetString(buffer, 0, bytesRead);
}
private static string GetUnixErrorMessage(int errorCode)
{
[DllImport("libc")]
static extern IntPtr strerror(int errnum);
IntPtr errorMsgPtr = strerror(errorCode);
return Marshal.PtrToStringAnsi(errorMsgPtr);
}
#endif
}