Bladeren bron

Restructure along with first draft of refactoring.

bmallred 13 jaren geleden
bovenliggende
commit
ef2c08971b
3 gewijzigde bestanden met toevoegingen van 263 en 105 verwijderingen
  1. 217 0
      WhiteNoise/DeviceWorker.cs
  2. 45 105
      WhiteNoise/Main.cs
  3. 1 0
      WhiteNoise/WhiteNoise.csproj

+ 217 - 0
WhiteNoise/DeviceWorker.cs

@ -0,0 +1,217 @@
1
using System;
2
using System.Collections.Generic;
3
using System.Diagnostics;
4
using System.IO;
5
using SharpPcap;
6
using SharpPcap.AirPcap;
7
using SharpPcap.LibPcap;
8
using SharpPcap.WinPcap;
9
10
namespace WhiteNoise
11
{
12
	/// <summary>
13
	/// Device worker.
14
	/// </summary>
15
	public class DeviceWorker
16
	{
17
		private static FileInfo _file;
18
		private CaptureDeviceList _devices;
19
		
20
		/// <summary>
21
		/// Gets or sets the devices.
22
		/// </summary>
23
		/// <value>
24
		/// The devices.
25
		/// </value>
26
		public ICollection<string> Devices { get; private set; }
27
		
28
		/// <summary>
29
		/// Gets or sets the name of the file.
30
		/// </summary>
31
		/// <value>
32
		/// The name of the file.
33
		/// </value>
34
		public string FileName 
35
		{ 
36
			get
37
			{
38
				return _file.FullName;
39
			}
40
			
41
			set
42
			{
43
				if (string.IsNullOrWhiteSpace(value))
44
				{
45
					throw new NullReferenceException();
46
				}
47
				
48
				_file = new FileInfo(value);
49
			}
50
		}
51
		
52
		/// <summary>
53
		/// Gets or sets the filter.
54
		/// </summary>
55
		/// <value>
56
		/// The filter.
57
		/// </value>
58
		public string Filter { get; set; }
59
		
60
		/// <summary>
61
		/// Gets or sets the timeout.
62
		/// </summary>
63
		/// <value>
64
		/// The timeout.
65
		/// </value>
66
		public int Timeout { get; set; }
67
		
68
		/// <summary>
69
		/// Gets or sets the version.
70
		/// </summary>
71
		/// <value>
72
		/// The version.
73
		/// </value>
74
		public string Version { get; private set; }
75
		
76
		/// <summary>
77
		/// Initializes a new instance of the <see cref="WhiteNoise.DeviceWorker"/> class.
78
		/// </summary>
79
		/// <param name='lazyLoad'>
80
		/// Bypass loading of device list on loading.
81
		/// </param>
82
		public DeviceWorker(bool lazyLoad = false)
83
		{
84
			_file = new FileInfo("results.pcap");
85
			
86
			if (!lazyLoad)
87
			{
88
				this._devices = CaptureDeviceList.Instance;
89
			}
90
			
91
			this.Devices = new List<string>();
92
			this.Filter = "ip and tcp";
93
			this.Timeout = 1000;
94
			this.Version = SharpPcap.Version.VersionString;
95
			
96
			// Make a pretty list of devices.
97
			for (int i = 0; i < this._devices.Count; i++)
98
			{
99
				this.Devices.Add(
100
					string.Format("{1}. {2}{0}", 
101
						Environment.NewLine, 
102
						i + 1, 
103
						this._devices[i].Description)
104
					);
105
			}
106
		}
107
		
108
		/// <summary>
109
		/// Captures the device.
110
		/// </summary>
111
		/// <param name='deviceNumber'>
112
		/// Device number.
113
		/// </param>
114
		public void CaptureDevice(int deviceNumber)
115
		{
116
			var device = this._devices[deviceNumber - 1];
117
			
118
			//// NOTE: This may need to be placed elsewhere.
119
			//if (!this._captureDevices.Contains(device))
120
			//{
121
			//	this._captureDevices.Add(device);
122
			//}
123
			
124
			// Apply filter and event handler(s).
125
			device.OnPacketArrival += new PacketArrivalEventHandler(Device_OnPacketArrival);
126
			device.Filter = this.Filter;
127
						
128
			// Open each device requested for scan.
129
			if (device is AirPcapDevice)
130
			{
131
				// NOTE: AirPcap devices cannot disable local capture.
132
				var airDevice = device as AirPcapDevice;
133
				airDevice.Open(OpenFlags.DataTransferUdp, this.Timeout);
134
			}
135
			else if (device is WinPcapDevice)
136
			{
137
				var winDevice = device as WinPcapDevice;
138
				winDevice.Open(OpenFlags.DataTransferUdp | OpenFlags.NoCaptureLocal, this.Timeout);
139
			}
140
			else
141
			{
142
				device.Open(DeviceMode.Promiscuous, this.Timeout);
143
			}
144
			
145
			// Start capturing.
146
			device.StartCapture();
147
		}
148
		
149
		/// <summary>
150
		/// Stop all listening devices.
151
		/// </summary>
152
		public void Stop()
153
		{
154
			foreach (ICaptureDevice device in this._devices)
155
			{
156
				if (device.Started)
157
				{
158
					device.StopCapture();
159
				}
160
			}
161
		}
162
		
163
		/// <summary>
164
		/// Refresh the device list.
165
		/// </summary>
166
		public void Refresh()
167
		{
168
			this._devices.Refresh();
169
			
170
			// Make a pretty list of devices.
171
			this.Devices.Clear();
172
			for (int i = 0; i < this._devices.Count; i++)
173
			{
174
				this.Devices.Add(
175
					string.Format("{1}. {2}{0}", 
176
						Environment.NewLine, 
177
						i + 1, 
178
						this._devices[i].Description)
179
					);
180
			}
181
		}
182
		
183
		/// <summary>
184
		/// Device_s the on packet arrival.
185
		/// </summary>
186
		/// <param name='sender'>
187
		/// Sender.
188
		/// </param>
189
		/// <param name='e'>
190
		/// Capture event arguments.
191
		/// </param>
192
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
193
		{
194
			CaptureFileWriterDevice writer = null;
195
			
196
			try
197
			{
198
				// Dump to the file.
199
				writer = new CaptureFileWriterDevice(_file.FullName, FileMode.Append);
200
				writer.Write(e.Packet);
201
			}
202
			catch (Exception ex)
203
			{
204
				// Let the developer know!!!
205
				Debug.WriteLine(ex.Message);
206
			}
207
			finally
208
			{
209
				// Clean up.
210
				if (writer != null)
211
				{
212
					writer.Close();
213
				}
214
			}
215
		}
216
	}
217
}

+ 45 - 105
WhiteNoise/Main.cs

@ -1,136 +1,76 @@
1 1
using System;
2
using System.Collections.Generic;
3 2
using System.Diagnostics;
4
using System.IO;
5
using SharpPcap;
6
using SharpPcap.AirPcap;
7
using SharpPcap.LibPcap;
8
using SharpPcap.WinPcap;
9 3
10 4
namespace WhiteNoise
11 5
{
12 6
	public static class MainClass
13 7
	{
14
		public static string LIBRARY_VERSION = SharpPcap.Version.VersionString;
15
		public static CaptureFileWriterDevice OUTPUT_STREAM;
16
		
17
		public const string DEFAULT_FILE = @"results.pcap";
18
		public const string DEFAULT_FILTER = @"ip and tcp";
19
		public const int TIMEOUT = 1000;
20
		
21 8
		public static void Main (string[] args)
22 9
		{
23
			ICollection<ICaptureDevice> captureDevices = new List<ICaptureDevice>();
10
			DeviceWorker devWorker = null;
24 11
			
25 12
			try
26 13
			{
27
				CaptureDeviceList deviceList = CaptureDeviceList.New();
28
				
29
				if (deviceList.Count < 1)
14
				// Initialize a new worker (this will throw an exception if no PCAP libraries are found).
15
				devWorker = new DeviceWorker(lazyLoad: true);
16
			
17
				if (devWorker.Devices.Count < 1)
30 18
				{
31 19
					Console.WriteLine("No devices found. Please press any key to continue.");
20
					return;
32 21
				}
33
				else
22
				
23
				Console.WriteLine("Available devices:");
24
				Console.WriteLine();
25
				
26
				foreach (var item in devWorker.Devices)
34 27
				{
35
					// Feed a dog a bone.
36
					foreach (ICaptureDevice dev in deviceList)
37
					{
38
						string.Format("{1}{0}", Environment.NewLine, dev.Description);
39
					}
40
					
41
					Console.Write ("Device(s) to be captured (comma separated): ");
42
					string input = Console.ReadLine();
43
					
44
					// Pull apart the request in an attempt to find the devices.
45
					foreach (string segment in input.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
46
					{
47
						int deviceNumber;
48
						
49
						if (int.TryParse(segment.Trim(), out deviceNumber))
50
						{
51
							ICaptureDevice device = deviceList[deviceNumber];
52
							
53
							if (!captureDevices.Contains(device))
54
							{
55
								captureDevices.Add(device);
56
							}
57
						}
58
					}
59
					
60
					Console.Write("Filter [{0}]: ", DEFAULT_FILTER);
61
					string filter = Console.ReadLine().Trim();
62
					
63
					// Apply the default filter if none was given.
64
					if (!string.IsNullOrEmpty(filter))
65
					{
66
						filter = DEFAULT_FILTER;
67
					}
28
					Console.WriteLine(item);
29
				}
30
				
31
				Console.Write ("Device(s) to be captured (comma separated): ");
32
				string inputDevices = Console.ReadLine();
33
				
34
				Console.Write("Filter [{0}]: ", devWorker.Filter);
35
				string filter = Console.ReadLine().Trim();
36
				
37
				if (!string.IsNullOrWhiteSpace(filter))
38
				{
39
					devWorker.Filter = filter;
40
				}
41
				
42
				// Pull apart the request in an attempt to find the devices.
43
				foreach (string segment in inputDevices.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries))
44
				{
45
					int deviceNumber;
68 46
					
69
					// Open each device requested for scan.
70
					foreach (ICaptureDevice device in captureDevices)
47
					if (int.TryParse(segment.Trim(), out deviceNumber))
71 48
					{
72
						// Apply filter and event handler(s).
73
						device.OnPacketArrival += new PacketArrivalEventHandler(device_OnPacketArrival);
74
						device.Filter = filter;
75
						
76
						if (device is AirPcapDevice)
77
						{
78
							// NOTE: AirPcap devices cannot disable local capture.
79
							var airDevice = device as AirPcapDevice;
80
							airDevice.Open(OpenFlags.DataTransferUdp, TIMEOUT);
81
						}
82
						else if (device is WinPcapDevice)
83
						{
84
							var winDevice = device as WinPcapDevice;
85
							winDevice.Open(OpenFlags.DataTransferUdp | OpenFlags.NoCaptureLocal, TIMEOUT);
86
						}
87
						else
88
						{
89
							device.Open(DeviceMode.Promiscuous, TIMEOUT);
90
						}
91
						
92
						// Start capturing.
93
						device.StartCapture();
49
						devWorker.CaptureDevice(deviceNumber);
94 50
					}
95 51
				}
52
				
53
				// Waiting for 1630.
54
				Console.ReadKey();
96 55
			}
97 56
			catch (Exception ex)
98 57
			{
99 58
				Debug.WriteLine(ex.Message);
100
				Console.WriteLine("TcpDump or WinPcap is not installed! Press any key to continue.");
101
			}
102
			
103
			// Waiting for 1630.
104
			Console.ReadKey();
105
			
106
			// Close any open devices.
107
			foreach (ICaptureDevice device in captureDevices)
108
			{
109
				device.Close();
110
			}
111
		}
112
		
113
		private static void device_OnPacketArrival(object sender, CaptureEventArgs e)
114
		{
115
			CaptureFileWriterDevice writer = null;
116
			
117
			try
118
			{
119
				// Dump to the file.
120
				writer = new CaptureFileWriterDevice(DEFAULT_FILE, FileMode.Append);
121
				writer.Write(e.Packet);
122
			}
123
			catch (Exception ex)
124
			{
125
				// Let the developer know!!!
126
				Debug.WriteLine(ex.Message);
59
				
60
				// Inform the user where to get the prize.
61
				Console.WriteLine("TcpDump or WinPcap is not installed!");
62
				Console.WriteLine("Please download the appropriate libraries.");
63
				Console.WriteLine();
64
				Console.WriteLine("\t{0}{1}", "Windows:".PadRight(20), @"http://www.winpcap.org");
65
				Console.WriteLine("\t{0}{1}", "Linux or MacOS:".PadRight(20), @"http://www.tcpdump.org");
66
				Console.WriteLine();
127 67
			}
128 68
			finally
129 69
			{
130
				// Clean up.
131
				if (writer != null)
70
				// Close any open devices.
71
				if (devWorker != null)
132 72
				{
133
					writer.Close();
73
					devWorker.Stop();
134 74
				}
135 75
			}
136 76
		}

+ 1 - 0
WhiteNoise/WhiteNoise.csproj

@ -42,6 +42,7 @@
42 42
  <ItemGroup>
43 43
    <Compile Include="Main.cs" />
44 44
    <Compile Include="AssemblyInfo.cs" />
45
    <Compile Include="DeviceWorker.cs" />
45 46
  </ItemGroup>
46 47
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
47 48
  <ItemGroup>