Browse Source

Added database storage from PCAP file. Tests included.

bmallred 13 years ago
parent
commit
17384086cd

+ 190 - 0
WhiteNoise.Storage/DatabaseWorker.cs

@ -0,0 +1,190 @@
1
// 
2
// DatabaseWorker.cs
3
//  
4
// Author:
5
//       Bryan Allred <bryan.allred@gmail.com>
6
// 
7
// Copyright (c) 2011 Bryan Allred
8
// 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
10
// of this software and associated documentation files (the "Software"), to deal
11
// in the Software without restriction, including without limitation the rights
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
// copies of the Software, and to permit persons to whom the Software is
14
// furnished to do so, subject to the following conditions:
15
// 
16
// The above copyright notice and this permission notice shall be included in
17
// all copies or substantial portions of the Software.
18
// 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
26
using System;
27
using System.Collections.Generic;
28
using System.ComponentModel;
29
using System.Diagnostics;
30
using System.IO;
31
using SharpPcap;
32
using SharpPcap.LibPcap;
33
using WhiteNoise.Domain.Abstract;
34
using WhiteNoise.Domain.Entities;
35
36
namespace WhiteNoise.Storage
37
{
38
	/// <summary>
39
	/// Database worker.
40
	/// </summary>
41
	public class DatabaseWorker : BackgroundWorker
42
	{
43
		/// <summary>
44
		/// The packet repository.
45
		/// </summary>
46
		private static IPacketRepository _repository;
47
		
48
		/// <summary>
49
		/// Gets or sets the devices.
50
		/// </summary>
51
		/// <value>
52
		/// The devices.
53
		/// </value>
54
		private ICollection<ICaptureDevice> _deviceFiles { get; set; }
55
		
56
		/// <summary>
57
		/// Gets or sets the version.
58
		/// </summary>
59
		/// <value>
60
		/// The version.
61
		/// </value>
62
		public string Version { get; private set; }
63
		
64
		/// <summary>
65
		/// Initializes a new instance of the <see cref="WhiteNoise.Storage.DatabaseWorker"/> class.
66
		/// </summary>
67
		/// <param name='repository'>
68
		/// Repository.
69
		/// </param>
70
		public DatabaseWorker(IPacketRepository repository)
71
		{
72
			_repository = repository;
73
			this._deviceFiles = new List<ICaptureDevice>();
74
			this.Version = SharpPcap.Version.VersionString;
75
			
76
			this.WorkerReportsProgress = true;
77
			this.WorkerSupportsCancellation = true;
78
		}
79
		
80
		/// <summary>
81
		/// Captures the device file.
82
		/// </summary>
83
		/// <param name='file'>
84
		/// File.
85
		/// </param>
86
		public void CaptureDeviceFile(string file)
87
		{
88
			this.CaptureDeviceFile(new FileInfo(file));
89
		}
90
		
91
		/// <summary>
92
		/// Captures the device file.
93
		/// </summary>
94
		/// <param name='file'>
95
		/// File.
96
		/// </param>
97
		public void CaptureDeviceFile(FileInfo file)
98
		{
99
			if (file.Exists)
100
			{
101
				ICaptureDevice device = null;
102
				
103
				try
104
				{
105
					// Listen to the device file.
106
					device = new CaptureFileReaderDevice(file.FullName);
107
					
108
					// Add event handler(s).
109
					device.OnPacketArrival += new PacketArrivalEventHandler(Device_OnPacketArrival);
110
					
111
					// Open device file and start capturing.
112
					device.Open();
113
					device.StartCapture();
114
				}
115
				catch (Exception ex)
116
				{
117
					Debug.WriteLine(ex.Message);
118
				}
119
				finally
120
				{
121
					// Clean-up.
122
					if (device != null && device.Started)
123
					{
124
						this._deviceFiles.Add(device);
125
					}
126
				}
127
			}
128
		}
129
		
130
		/// <summary>
131
		/// Stop all listening devices.
132
		/// </summary>
133
		public void Stop()
134
		{
135
			foreach (ICaptureDevice device in this._deviceFiles)
136
			{
137
				if (device.Started)
138
				{
139
					device.StopCapture();
140
				}
141
			}
142
		}
143
		
144
		/// <summary>
145
		/// Raises the do work event.
146
		/// </summary>
147
		/// <param name='e'>
148
		/// Work event arguments.
149
		/// </param>
150
		protected override void OnDoWork (DoWorkEventArgs e)
151
		{
152
			// TODO: Add the working portion (possibly pull from previous areas).
153
			base.OnDoWork(e);
154
		}
155
		
156
		/// <summary>
157
		/// Device the on packet arrival.
158
		/// </summary>
159
		/// <param name='sender'>
160
		/// Sender.
161
		/// </param>
162
		/// <param name='e'>
163
		/// Capture event arguments.
164
		/// </param>
165
		private static void Device_OnPacketArrival(object sender, CaptureEventArgs e)
166
		{
167
			Debug.WriteLine("Received {0} bytes.", e.Packet.Data.Length);
168
			
169
			try
170
			{
171
				// Dump to the file.
172
				_repository.Add(new WhiteNoise.Domain.Entities.Packet() 
173
				{ 
174
					Type = e.Packet.LinkLayerType.ToString(),
175
					Data = e.Packet.Data
176
				}); 
177
			}
178
			catch (Exception ex)
179
			{
180
				// Let the developer know!!!
181
				Debug.WriteLine(ex.Message);
182
			}
183
			finally
184
			{
185
				// Clean up.
186
			}
187
		}
188
	}
189
}
190

+ 11 - 4
WhiteNoise.Storage/WhiteNoise.Storage.csproj

@ -30,15 +30,22 @@
30 30
  </PropertyGroup>
31 31
  <ItemGroup>
32 32
    <Reference Include="System" />
33
    <Reference Include="Iesi.Collections">
34
      <HintPath>..\Resources\Iesi.Collections.dll</HintPath>
33
    <Reference Include="PacketDotNet">
34
      <HintPath>..\Resources\PacketDotNet.dll</HintPath>
35 35
    </Reference>
36
    <Reference Include="NHibernate">
37
      <HintPath>..\Resources\NHibernate.dll</HintPath>
36
    <Reference Include="SharpPcap">
37
      <HintPath>..\Resources\SharpPcap.dll</HintPath>
38 38
    </Reference>
39 39
  </ItemGroup>
40 40
  <ItemGroup>
41 41
    <Compile Include="AssemblyInfo.cs" />
42
    <Compile Include="DatabaseWorker.cs" />
42 43
  </ItemGroup>
43 44
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
45
  <ItemGroup>
46
    <ProjectReference Include="..\WhiteNoise.Domain\WhiteNoise.Domain.csproj">
47
      <Project>{0686B6EA-7782-45FE-A990-A06EAD8A57C6}</Project>
48
      <Name>WhiteNoise.Domain</Name>
49
    </ProjectReference>
50
  </ItemGroup>
44 51
</Project>

+ 184 - 0
WhiteNoise.Test/Listen/DeviceWorkerTests.cs

@ -0,0 +1,184 @@
1
// 
2
// DeviceWorkerTests.cs
3
//  
4
// Author:
5
//       Bryan Allred <bryan.allred@gmail.com>
6
// 
7
// Copyright (c) 2011 Bryan Allred
8
// 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
10
// of this software and associated documentation files (the "Software"), to deal
11
// in the Software without restriction, including without limitation the rights
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
// copies of the Software, and to permit persons to whom the Software is
14
// furnished to do so, subject to the following conditions:
15
// 
16
// The above copyright notice and this permission notice shall be included in
17
// all copies or substantial portions of the Software.
18
// 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
26
using System;
27
using NUnit.Framework;
28
using WhiteNoise.Listen;
29
30
namespace WhiteNoise.Test.Listen
31
{
32
	/// <summary>
33
	/// Device worker tests.
34
	/// </summary>
35
	[TestFixture]
36
	public class DeviceWorkerTests
37
	{
38
		/// <summary>
39
		/// The device worker with lazy loading.
40
		/// </summary>
41
		private DeviceWorker _lazyWorker;
42
		
43
		/// <summary>
44
		/// The device worker.
45
		/// </summary>
46
		private DeviceWorker _worker;
47
		
48
		/// <summary>
49
		/// Test fixture setup.
50
		/// </summary>
51
		[TestFixtureSetUp]
52
		public void TestFixtureSetup()
53
		{
54
			this._lazyWorker = new DeviceWorker(lazyLoad: true);
55
			
56
			try
57
			{
58
				this._worker = new DeviceWorker();
59
			}
60
			catch
61
			{
62
				this._worker = null;
63
			}
64
		}
65
		
66
		/// <summary>
67
		/// Checks for the dependecies to be installed.
68
		/// </summary>
69
		[Test]
70
		public void AreDependeciesInstalled()
71
		{
72
			Assert.That(this._worker, Is.Not.Null, "TcpDump or WinPcap is not installed (run as root on *nix systems)!");
73
		}
74
		
75
		/// <summary>
76
		/// Determines whether this instance has devices.
77
		/// </summary>
78
		/// <returns>
79
		/// <c>true</c> if this instance has devices; otherwise, <c>false</c>.
80
		/// </returns>
81
		[Test]
82
		public void HasDevices()
83
		{
84
			Assert.That(this._worker, Is.Not.Null);
85
			Assert.That(this._worker.Devices.Count, Is.GreaterThan(0));
86
		}
87
		
88
		/// <summary>
89
		/// Determines whether this instance has version.
90
		/// </summary>
91
		/// <returns>
92
		/// <c>true</c> if this instance has version; otherwise, <c>false</c>.
93
		/// </returns>
94
		[Test]
95
		public void HasVersion()
96
		{
97
			Assert.That(!string.IsNullOrWhiteSpace(this._lazyWorker.Version));
98
		}
99
		
100
		/// <summary>
101
		/// Determines whether this instance has defaults.
102
		/// </summary>
103
		/// <returns>
104
		/// <c>true</c> if this instance has defaults; otherwise, <c>false</c>.
105
		/// </returns>
106
		[Test]
107
		public void HasDefaults()
108
		{
109
			Assert.That(!string.IsNullOrWhiteSpace(this._lazyWorker.FileName));
110
			Assert.That(this._lazyWorker.Timeout, Is.EqualTo(1000));
111
			Assert.That(this._lazyWorker.Filter, Is.EqualTo("ip and tcp"));
112
		}
113
		
114
		/// <summary>
115
		/// Determines whether this instance can refresh.
116
		/// </summary>
117
		/// <returns>
118
		/// <c>true</c> if this instance can refresh; otherwise, <c>false</c>.
119
		/// </returns>
120
		[Test]
121
		public void CanRefresh()
122
		{
123
			bool refreshed = true;
124
			
125
			try
126
			{
127
				this._worker.Refresh();
128
			}
129
			catch
130
			{
131
				refreshed = false;
132
			}
133
			
134
			Assert.That(refreshed, Is.EqualTo(true));
135
		}
136
		
137
		/// <summary>
138
		/// Determines whether this instance can capture device.
139
		/// </summary>
140
		/// <returns>
141
		/// <c>true</c> if this instance can capture device; otherwise, <c>false</c>.
142
		/// </returns>
143
		[Test]
144
		public void CanCaptureDevice()
145
		{
146
			bool captured = true;
147
			
148
			try
149
			{
150
				this._worker.CaptureDevice(1);
151
			}
152
			catch
153
			{
154
				captured = false;
155
			}
156
			
157
			Assert.That(captured, Is.EqualTo(true));
158
		}
159
		
160
		/// <summary>
161
		/// Determines whether this instance can stop captures.
162
		/// </summary>
163
		/// <returns>
164
		/// <c>true</c> if this instance can stop captures; otherwise, <c>false</c>.
165
		/// </returns>
166
		[Test]
167
		public void CanStopCaptures()
168
		{
169
			bool stopped = true;
170
			
171
			try
172
			{
173
				this._worker.Stop();
174
			}
175
			catch
176
			{
177
				stopped = false;
178
			}
179
			
180
			Assert.That(stopped, Is.EqualTo(true));
181
		}
182
	}
183
}
184

+ 118 - 0
WhiteNoise.Test/Storage/DatabaseWorkerTests.cs

@ -0,0 +1,118 @@
1
// 
2
// DatabaseWorkerTests.cs
3
//  
4
// Author:
5
//       Bryan Allred <bryan.allred@gmail.com>
6
// 
7
// Copyright (c) 2011 Bryan Allred
8
// 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
10
// of this software and associated documentation files (the "Software"), to deal
11
// in the Software without restriction, including without limitation the rights
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
// copies of the Software, and to permit persons to whom the Software is
14
// furnished to do so, subject to the following conditions:
15
// 
16
// The above copyright notice and this permission notice shall be included in
17
// all copies or substantial portions of the Software.
18
// 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
26
using System;
27
using NUnit.Framework;
28
using WhiteNoise.Storage;
29
using WhiteNoise.Test.TestHelpers;
30
31
namespace WhiteNoise.Test.Storage
32
{
33
	/// <summary>
34
	/// Database worker tests.
35
	/// </summary>
36
	[TestFixture]
37
	public class DatabaseWorkerTests
38
	{
39
		/// <summary>
40
		/// The database worker.
41
		/// </summary>
42
		private DatabaseWorker _worker;
43
		
44
		/// <summary>
45
		/// Test fixture setup.
46
		/// </summary>
47
		[TestFixtureSetUp]
48
		public void TestFixtureSetup()
49
		{
50
			this._worker = new DatabaseWorker(null);
51
		}
52
		
53
		/// <summary>
54
		/// Determines whether this instance has version.
55
		/// </summary>
56
		/// <returns>
57
		/// <c>true</c> if this instance has version; otherwise, <c>false</c>.
58
		/// </returns>
59
		[Test]
60
		public void HasVersion()
61
		{
62
			Assert.That(!string.IsNullOrWhiteSpace(this._worker.Version));
63
		}
64
		
65
		/// <summary>
66
		/// Determines whether this instance can capture device file.
67
		/// </summary>
68
		/// <returns>
69
		/// <c>true</c> if this instance can capture device file; otherwise, <c>false</c>.
70
		/// </returns>
71
		[Test]
72
		public void CanCaptureDeviceFile()
73
		{
74
			bool started = true;
75
			
76
			try
77
			{
78
				this._worker.CaptureDeviceFile(Global.CaptureFile);
79
			}
80
			catch
81
			{
82
				started = false;
83
			}
84
			
85
			// Clean up if necessary.
86
			if (started)
87
			{
88
				this._worker.Stop();
89
			}
90
			
91
			Assert.That(started, Is.EqualTo(true));
92
		}
93
		
94
		/// <summary>
95
		/// Determines whether this instance can stop captures.
96
		/// </summary>
97
		/// <returns>
98
		/// <c>true</c> if this instance can stop captures; otherwise, <c>false</c>.
99
		/// </returns>
100
		[Test]
101
		public void CanStopCaptures()
102
		{
103
			bool stopped = true;
104
			
105
			try
106
			{
107
				this._worker.Stop();
108
			}
109
			catch
110
			{
111
				stopped = false;
112
			}
113
			
114
			Assert.That(stopped, Is.EqualTo(true));
115
		}
116
	}
117
}
118

+ 5 - 0
WhiteNoise.Test/TestHelpers/Global.cs

@ -31,6 +31,11 @@ namespace WhiteNoise.Test.TestHelpers
31 31
	/// </summary>
32 32
	public static class Global
33 33
	{
34
		/// <summary>
35
		/// Constant capture file.
36
		/// </summary>
37
		public const string CaptureFile = @"results.pcap";
38
		
34 39
		/// <summary>
35 40
		/// Constant connection string.
36 41
		/// </summary>

+ 2 - 0
WhiteNoise.Test/WhiteNoise.Test.csproj

@ -68,6 +68,8 @@
68 68
    <Compile Include="Domain\Concrete\DbRepositoryTests.cs" />
69 69
    <Compile Include="Domain\Concrete\DbPacketRepositoryTests.cs" />
70 70
    <Compile Include="TestHelpers\Global.cs" />
71
    <Compile Include="Listen\DeviceWorkerTests.cs" />
72
    <Compile Include="Storage\DatabaseWorkerTests.cs" />
71 73
  </ItemGroup>
72 74
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
73 75
  <ItemGroup>