-
Notifications
You must be signed in to change notification settings - Fork 0
/
NetworkInformation.cs
290 lines (235 loc) · 8.73 KB
/
NetworkInformation.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
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
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Net.NetworkInformation;
using System.Runtime.InteropServices;
using System.Net.Sockets;
namespace MTorrent
{
public enum IpVersion : uint
{
IPv4 = 2,
IPv6 = 23
}
public static class NetworkInformation
{
private const int ErrorInsufficientBuffer = 122;
private const int Successfully = 0;
[DllImport("iphlpapi.dll", SetLastError = true)]
private static extern uint GetExtendedTcpTable(IntPtr pTcpTable, ref int dwOutBufLen,bool sort,
IpVersion ipVersion, TcpTableClass tblClass, int reserved);
[DllImport("iphlpapi.dll", SetLastError = true)]
private static extern uint GetExtendedUdpTable(IntPtr pTcpTable, ref int dwOutBufLen,bool sort,
IpVersion ipVersion, UdpTableClass tblClass, int reserved);
public static List<Connection> GetProcessTcpActivity(int pid)
{
Tcp6RowOwnerPid[] t6 = GetTcpConnections<Tcp6RowOwnerPid>(IpVersion.IPv6);
TcpRowOwnerPid[] t4 = GetTcpConnections<TcpRowOwnerPid>(IpVersion.IPv4);
List<Connection> list = new List<Connection>();
for (int i = 0; i < t6.Length; i++)
{
if (pid < 0 || t6[i].OwningPid == pid)
{
list.Add(new Connection(ref t6[i]));
}
}
for (int i = 0; i < t4.Length; i++)
{
if (pid < 0 || t4[i].OwningPid == pid)
{
list.Add(new Connection(ref t4[i]));
}
}
return list;
}
public static Connection[] GetTcpV6Connections()
{
Tcp6RowOwnerPid[] t = GetTcpConnections<Tcp6RowOwnerPid>(IpVersion.IPv6);
Connection[] connectInfo = new Connection[t.Length];
for (int i = 0; i < t.Length; i++)
{
connectInfo[i] = new Connection(ref t[i]);
}
return connectInfo;
}
public static Connection[] GetTcpV4Connections()
{
TcpRowOwnerPid[] t = GetTcpConnections < TcpRowOwnerPid>(IpVersion.IPv4);
Connection[] connectInfo = new Connection[t.Length];
for (int i = 0; i < t.Length; i++)
{
connectInfo[i] = new Connection(ref t[i]);
}
return connectInfo;
}
public static Connection[] GetUdpV4Connections()
{
UdpRowOwnerPid[] t = GetUdpConnections<UdpRowOwnerPid>(IpVersion.IPv4);
Connection[] connectInfo = new Connection[t.Length];
for (int i = 0; i < t.Length; i++)
{
connectInfo[i] = new Connection(ref t[i]);
}
return connectInfo;
}
public static Connection[] GetUdpV6Connections()
{
Udp6RowOwnerPid[] t = GetUdpConnections<Udp6RowOwnerPid>(IpVersion.IPv6);
Connection[] connectInfo = new Connection[t.Length];
for (int i = 0; i < t.Length; i++)
{
connectInfo[i] = new Connection(ref t[i]);
}
return connectInfo;
}
private static void ReadData<T>(IntPtr buffer, out T[] tTable)
{
Type rowType = typeof(T);
int sizeRow = Marshal.SizeOf(rowType);
long buffAddress = buffer.ToInt64();
int count = Marshal.ReadInt32(buffer);
int offcet = Marshal.SizeOf(typeof(Int32));
tTable = new T[count];
for (int i = 0; i < tTable.Length; i++)
{
//calc position for next array element
var memoryPos = new IntPtr(buffAddress + offcet);
//read element
tTable[i] = (T)Marshal.PtrToStructure(memoryPos, rowType);
offcet += sizeRow;
}
}
private static T[] GetUdpConnections<T>(IpVersion ipVersion)
{
T[] tTable;
int buffSize = 0;
// how much memory do we need?
GetExtendedUdpTable(IntPtr.Zero, ref buffSize, false, ipVersion, UdpTableClass.UdpTableOwnerPid, 0);
IntPtr buffer = Marshal.AllocHGlobal(buffSize);
try
{
uint retVal = GetExtendedUdpTable(buffer, ref buffSize, false, ipVersion,
UdpTableClass.UdpTableOwnerPid, 0);
while (retVal == ErrorInsufficientBuffer) //buffer should be greater?
{
buffer = Marshal.ReAllocHGlobal(buffer, new IntPtr(buffSize));
retVal = GetExtendedUdpTable(buffer, ref buffSize, false, ipVersion,UdpTableClass.UdpTableOwnerPid, 0);
}
if (retVal != Successfully)
return null;
ReadData(buffer, out tTable);
}
catch (Exception)
{
return null;
}
finally
{
// Free the Memory
Marshal.FreeHGlobal(buffer);
}
return tTable;
}
private static T[] GetTcpConnections<T>(IpVersion ipVersion)
{
T[] tTable;
int buffSize = 0;
// how much memory do we need?
GetExtendedTcpTable(IntPtr.Zero, ref buffSize, false, ipVersion, TcpTableClass.TcpTableOwnerPidAll, 0);
IntPtr buffer = Marshal.AllocHGlobal(buffSize);
try
{
uint retVal = GetExtendedTcpTable(buffer, ref buffSize, false, ipVersion,
TcpTableClass.TcpTableOwnerPidAll, 0);
while (retVal == ErrorInsufficientBuffer) //buffer should be greater?
{
buffer = Marshal.ReAllocHGlobal(buffer, new IntPtr(buffSize));
retVal = GetExtendedTcpTable(buffer, ref buffSize, false, ipVersion,
TcpTableClass.TcpTableOwnerPidAll, 0);
}
if (retVal != Successfully) return null;
ReadData(buffer, out tTable);
}
catch (Exception)
{
return null;
}
finally
{
// Free the Memory
Marshal.FreeHGlobal(buffer);
}
return tTable;
}
#region Nested type: Tcp6RowOwnerPid
[StructLayout(LayoutKind.Sequential)]
public struct Tcp6RowOwnerPid
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public byte[] LocalAddr;
public uint LocalScopeId;
public uint LocalPort;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public byte[] RemoteAddr;
public uint RemoteScopeId;
public uint RemotePort;
public TcpState State;
public uint OwningPid;
}
#endregion
#region Nested type: TcpRowOwnerPid
[StructLayout(LayoutKind.Sequential)]
public struct TcpRowOwnerPid
{
public TcpState State;
public uint LocalAddr;
public uint LocalPort;
public uint RemoteAddr;
public uint RemotePort;
public uint OwningPid;
}
#endregion
#region Nested type: TcpTableClass
private enum TcpTableClass
{
TcpTableBasicListener,
TcpTableBasicConnections,
TcpTableBasicAll,
TcpTableOwnerPidListener,
TcpTableOwnerPidConnections,
TcpTableOwnerPidAll,
TcpTableOwnerModuleListener,
TcpTableOwnerModuleConnections,
TcpTableOwnerModuleAll
}
#endregion
#region Nested type: Udp6RowOwnerPid
[StructLayout(LayoutKind.Sequential)]
public struct Udp6RowOwnerPid
{
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)]
public byte[] LocalAddr;
public uint LocalScopeId;
public uint LocalPort;
public uint OwningPid;
}
#endregion
#region Nested type: UdpRowOwnerPid
[StructLayout(LayoutKind.Sequential)]
public struct UdpRowOwnerPid
{
public uint LocalAddr;
public uint LocalPort;
public uint OwningPid;
}
#endregion
#region Nested type: UdpTableClass
internal enum UdpTableClass
{
UdpTableBasic,
UdpTableOwnerPid,
UdpTableOwnerModule
}
#endregion
}
}