-
Notifications
You must be signed in to change notification settings - Fork 399
Expand file tree
/
Copy pathIpcTransport.cs
More file actions
339 lines (291 loc) · 11.9 KB
/
Copy pathIpcTransport.cs
File metadata and controls
339 lines (291 loc) · 11.9 KB
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
using System.Diagnostics;
using System.IO;
using System.IO.Pipes;
using System.Linq;
using System.Net.Sockets;
using System.Runtime.InteropServices;
using System.Security.Principal;
using System.Threading;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
namespace Microsoft.Diagnostics.NETCore.Client
{
internal abstract class IpcEndpoint
{
/// <summary>
/// Connects to the underlying IPC transport and opens a read/write-able Stream
/// </summary>
/// <param name="timeout">The amount of time to block attempting to connect</param>
/// <returns>A stream used for writing and reading data to and from the target .NET process</returns>
public abstract Stream Connect(TimeSpan timeout);
/// <summary>
/// Connects to the underlying IPC transport and opens a read/write-able Stream
/// </summary>
/// <param name="token">The token to monitor for cancellation requests.</param>
/// <returns>
/// A task that completes with a stream used for writing and reading data to and from the target .NET process.
/// </returns>
public abstract Task<Stream> ConnectAsync(CancellationToken token);
/// <summary>
/// Wait for an available diagnostic endpoint to the runtime instance.
/// </summary>
/// <param name="timeout">The amount of time to wait before cancelling the wait for the connection.</param>
public abstract void WaitForConnection(TimeSpan timeout);
/// <summary>
/// Wait for an available diagnostic endpoint to the runtime instance.
/// </summary>
/// <param name="token">The token to monitor for cancellation requests.</param>
/// <returns>
/// A task that completes when a diagnostic endpoint to the runtime instance becomes available.
/// </returns>
public abstract Task WaitForConnectionAsync(CancellationToken token);
}
internal class IpcEndpointHelper
{
public static Stream Connect(IpcEndpointConfig config, TimeSpan timeout)
{
if (config.Transport == IpcEndpointConfig.TransportType.NamedPipe)
{
var namedPipe = new NamedPipeClientStream(
".",
config.Address,
PipeDirection.InOut,
PipeOptions.None,
TokenImpersonationLevel.Impersonation);
namedPipe.Connect((int)timeout.TotalMilliseconds);
return namedPipe;
}
else if (config.Transport == IpcEndpointConfig.TransportType.UnixDomainSocket)
{
var socket = new IpcUnixDomainSocket();
socket.Connect(new IpcUnixDomainSocketEndPoint(config.Address), timeout);
return new ExposedSocketNetworkStream(socket, ownsSocket: true);
}
#if DIAGNOSTICS_RUNTIME
else if (config.Transport == IpcEndpointConfig.TransportType.TcpSocket)
{
var tcpClient = new TcpClient ();
var endPoint = new IpcTcpSocketEndPoint(config.Address);
tcpClient.Connect(endPoint.EndPoint);
return tcpClient.GetStream();
}
#endif
else
{
throw new ArgumentException($"Unsupported IpcEndpointConfig transport type {config.Transport}");
}
}
public static async Task<Stream> ConnectAsync(IpcEndpointConfig config, CancellationToken token)
{
if (config.Transport == IpcEndpointConfig.TransportType.NamedPipe)
{
var namedPipe = new NamedPipeClientStream(
".",
config.Address,
PipeDirection.InOut,
PipeOptions.Asynchronous,
TokenImpersonationLevel.Impersonation);
// Pass non-infinite timeout in order to cause internal connection algorithm
// to check the CancellationToken periodically. Otherwise, if the named pipe
// is waited using WaitNamedPipe with an infinite timeout, then the
// CancellationToken cannot be observed.
await namedPipe.ConnectAsync(int.MaxValue, token).ConfigureAwait(false);
return namedPipe;
}
else if (config.Transport == IpcEndpointConfig.TransportType.UnixDomainSocket)
{
var socket = new IpcUnixDomainSocket();
await socket.ConnectAsync(new IpcUnixDomainSocketEndPoint(config.Address), token).ConfigureAwait(false);
return new ExposedSocketNetworkStream(socket, ownsSocket: true);
}
else
{
throw new ArgumentException($"Unsupported IpcEndpointConfig transport type {config.Transport}");
}
}
}
internal class ServerIpcEndpoint : IpcEndpoint
{
private readonly Guid _runtimeId;
private readonly ReversedDiagnosticsServer _server;
public ServerIpcEndpoint(ReversedDiagnosticsServer server, Guid runtimeId)
{
_runtimeId = runtimeId;
_server = server;
}
/// <remarks>
/// This will block until the diagnostic stream is provided. This block can happen if
/// the stream is acquired previously and the runtime instance has not yet reconnected
/// to the reversed diagnostics server.
/// </remarks>
public override Stream Connect(TimeSpan timeout)
{
return _server.Connect(_runtimeId, timeout);
}
public override Task<Stream> ConnectAsync(CancellationToken token)
{
return _server.ConnectAsync(_runtimeId, token);
}
public override void WaitForConnection(TimeSpan timeout)
{
_server.WaitForConnection(_runtimeId, timeout);
}
public override Task WaitForConnectionAsync(CancellationToken token)
{
return _server.WaitForConnectionAsync(_runtimeId, token);
}
public override bool Equals(object obj)
{
return Equals(obj as ServerIpcEndpoint);
}
public bool Equals(ServerIpcEndpoint other)
{
return other != null && other._runtimeId == _runtimeId && other._server == _server;
}
public override int GetHashCode()
{
return _runtimeId.GetHashCode() ^ _server.GetHashCode();
}
}
internal class DiagnosticPortIpcEndpoint : IpcEndpoint
{
IpcEndpointConfig _config;
public DiagnosticPortIpcEndpoint(string diagnosticPort)
{
_config = IpcEndpointConfig.Parse(diagnosticPort);
}
public DiagnosticPortIpcEndpoint(IpcEndpointConfig config)
{
_config = config;
}
public override Stream Connect(TimeSpan timeout)
{
return IpcEndpointHelper.Connect(_config, timeout);
}
public override async Task<Stream> ConnectAsync(CancellationToken token)
{
return await IpcEndpointHelper.ConnectAsync(_config, token).ConfigureAwait(false);
}
public override void WaitForConnection(TimeSpan timeout)
{
using var _ = Connect(timeout);
}
public override async Task WaitForConnectionAsync(CancellationToken token)
{
using var _ = await ConnectAsync(token).ConfigureAwait(false);
}
public override bool Equals(object obj)
{
return Equals(obj as DiagnosticPortIpcEndpoint);
}
public bool Equals(DiagnosticPortIpcEndpoint other)
{
return other != null && other._config == _config;
}
public override int GetHashCode()
{
return _config.GetHashCode();
}
}
internal class PidIpcEndpoint : IpcEndpoint
{
public static string IpcRootPath { get; } = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @"\\.\pipe\" : Path.GetTempPath();
public static string DiagnosticsPortPattern { get; } = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? @"^dotnet-diagnostic-(\d+)$" : @"^dotnet-diagnostic-(\d+)-(\d+)-socket$";
int _pid;
IpcEndpointConfig _config;
/// <summary>
/// Creates a reference to a .NET process's IPC Transport
/// using the default rules for a given pid
/// </summary>
/// <param name="pid">The pid of the target process</param>
/// <returns>A reference to the IPC Transport</returns>
public PidIpcEndpoint(int pid)
{
_pid = pid;
}
public override Stream Connect(TimeSpan timeout)
{
string address = GetDefaultAddress();
_config = IpcEndpointConfig.Parse(address + ",connect");
return IpcEndpointHelper.Connect(_config, timeout);
}
public override async Task<Stream> ConnectAsync(CancellationToken token)
{
string address = GetDefaultAddress();
_config = IpcEndpointConfig.Parse(address + ",connect");
return await IpcEndpointHelper.ConnectAsync(_config, token).ConfigureAwait(false);
}
public override void WaitForConnection(TimeSpan timeout)
{
using var _ = Connect(timeout);
}
public override async Task WaitForConnectionAsync(CancellationToken token)
{
using var _ = await ConnectAsync(token).ConfigureAwait(false);
}
private string GetDefaultAddress()
{
try
{
var process = Process.GetProcessById(_pid);
}
catch (ArgumentException)
{
throw new ServerNotAvailableException($"Process {_pid} is not running.");
}
catch (InvalidOperationException)
{
throw new ServerNotAvailableException($"Process {_pid} seems to be elevated.");
}
if (!TryGetDefaultAddress(_pid, out string transportName))
{
throw new ServerNotAvailableException($"Process {_pid} not running compatible .NET runtime.");
}
return transportName;
}
private static bool TryGetDefaultAddress(int pid, out string defaultAddress)
{
defaultAddress = null;
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
defaultAddress = $"dotnet-diagnostic-{pid}";
}
else
{
try
{
string status = File.ReadAllText($"/proc/{pid}/status");
Regex regex = new Regex(@"^NSpid:.*(\d+)$", RegexOptions.Multiline);
Match match = regex.Match(status);
int nspid = pid;
if (match.Success)
{
nspid = int.Parse(match.Groups[1].Value);
}
defaultAddress = Directory.GetFiles($"/proc/{pid}/root/tmp", $"dotnet-diagnostic-{nspid}-*-socket") // Try best match.
.OrderByDescending(f => new FileInfo(f).LastWriteTime)
.FirstOrDefault();
}
catch (InvalidOperationException)
{
}
}
return !string.IsNullOrEmpty(defaultAddress);
}
public override bool Equals(object obj)
{
return Equals(obj as PidIpcEndpoint);
}
public bool Equals(PidIpcEndpoint other)
{
return other != null && other._pid == _pid;
}
public override int GetHashCode()
{
return _pid.GetHashCode();
}
}
}