-
Notifications
You must be signed in to change notification settings - Fork 0
/
DumpFileParserTest.cs
276 lines (230 loc) · 8.8 KB
/
DumpFileParserTest.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
// This file is part of bugreport.
// Copyright (c) 2006-2009 The bugreport Developers.
// See AUTHORS.txt for details.
// Licensed under the GNU General Public License, Version 3 (GPLv3).
// See LICENSE.txt for details.
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using NUnit.Framework;
namespace bugreport
{
[SuppressMessage("Microsoft.Design", "CA1001:TypesThatOwnDisposableFieldsShouldBeDisposable")]
public abstract class DumpFileParserFixture
{
protected DumpFileParser parser;
protected MemoryStream stream;
protected StreamWriter writer;
public virtual void SetUp()
{
stream = new MemoryStream();
writer = new StreamWriter(stream);
}
[TearDown]
public void TearDown()
{
if (parser == null)
{
return;
}
parser.Dispose();
parser = null;
}
}
[TestFixture]
public class WithNothingElseTest : DumpFileParserFixture
{
#region Setup/Teardown
[SetUp]
public override void SetUp()
{
base.SetUp();
}
#endregion
[Test]
public void EmptyLine()
{
writer.WriteLine(String.Empty);
writer.Flush();
parser = new DumpFileParser(stream, "main");
Assert.IsNull(parser.GetBytes());
}
[Test]
public void NoLines()
{
parser = new DumpFileParser(stream, "main");
Assert.IsNull(parser.GetBytes());
}
}
[TestFixture]
public class MainAfterNonMainTest : DumpFileParserFixture
{
#region Setup/Teardown
[SetUp]
public override void SetUp()
{
base.SetUp();
writer.WriteLine("0804837c <_start>:");
writer.WriteLine(" 804837c: c9 leave ");
writer.WriteLine();
writer.WriteLine("0804837d <main>:");
}
#endregion
[Test]
public void GetBytesReturnAllInstructions()
{
writer.WriteLine(" 804837d: c3 ret ");
writer.WriteLine(" 804837e: 90 nop ");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var code = parser.GetBytes();
CollectionAssert.AreEqual(new Byte[] {0xc9, 0xc3, 0x90}, code);
}
[Test]
public void HasColonButNoHex()
{
writer.WriteLine(" : ");
writer.Flush();
parser = new DumpFileParser(stream, "main");
CollectionAssert.AreEqual(new Byte[] {0xc9}, parser.GetBytes());
}
[Test]
public void HasColonInWrongPlace()
{
writer.WriteLine(":");
writer.Flush();
parser = new DumpFileParser(stream, "main");
CollectionAssert.AreEqual(new Byte[] {0xc9}, parser.GetBytes());
}
[Test]
[ExpectedException(typeof(FormatException))]
public void LineWithBadHex()
{
writer.WriteLine(" 8048385: 83 ej 10 sub esp,0x10");
writer.Flush();
parser = new DumpFileParser(stream, "main");
}
[Test]
public void LineWithMuchoHex()
{
writer.WriteLine(" 8048388: c7 04 24 10 00 00 00 mov DWORD PTR [esp],0x10");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var expectedResult = new Byte[] {0xc9, 0xc7, 0x04, 0x24, 0x10, 0x00, 0x00, 0x00};
CollectionAssert.AreEqual(expectedResult, parser.GetBytes());
}
[Test]
public void LineWithMultipleHex()
{
writer.WriteLine(" 8048385: 83 ec 10 sub esp,0x10");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var expectedResult = new Byte[] {0xc9, 0x83, 0xec, 0x10};
CollectionAssert.AreEqual(expectedResult, parser.GetBytes());
}
[Test]
public void LineWithSingleHex()
{
writer.WriteLine(" 804837c: 55 push ebp");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var expectedResult = new Byte[] {0xc9, 0x55};
CollectionAssert.AreEqual(expectedResult, parser.GetBytes());
}
[Test]
public void LineWithSpaceTab()
{
writer.WriteLine(" 8048388: c7 04 24 10 00 00 00 \tmov DWORD PTR [esp],0x10");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var expectedResult = new Byte[] {0xc9, 0xc7, 0x04, 0x24, 0x10, 0x00, 0x00, 0x00};
CollectionAssert.AreEqual(expectedResult, parser.GetBytes());
}
[Test]
public void MainIsLastFunction()
{
writer.WriteLine(" 804837d: c3 ret ");
writer.Flush();
parser = new DumpFileParser(stream, "main");
Assert.AreEqual(0x0804837c, parser.BaseAddress);
Assert.AreEqual(0x0804837d, parser.EntryPointAddress);
var code = parser.GetBytes();
CollectionAssert.AreEqual(new Byte[] {0xc9, 0xc3}, code);
Assert.AreEqual(2, code.Length);
Assert.AreEqual(0, parser.ExpectedReportItems.Count);
}
[Test]
public void MainIsNotLastFunction()
{
writer.WriteLine(" 804837d: c3 ret ");
writer.WriteLine();
writer.WriteLine("0804837e <nonmain2>:");
writer.WriteLine(" 804837e: 90 nop ");
writer.Flush();
parser = new DumpFileParser(stream, "main");
Assert.AreEqual(0x0804837c, parser.BaseAddress);
Assert.AreEqual(0x0804837d, parser.EntryPointAddress);
var code = parser.GetBytes();
CollectionAssert.AreEqual(new Byte[] {0xc9, 0xc3, 0x90}, code);
Assert.AreEqual(3, code.Length);
Assert.AreEqual(0, parser.ExpectedReportItems.Count);
}
[Test]
public void NextLineSkipsBadLines()
{
writer.WriteLine("BADLINE");
writer.WriteLine(" 8048385: 83 ec 10 sub esp,0x10");
writer.Flush();
parser = new DumpFileParser(stream, "main");
var expectedResult = new Byte[] {0xc9, 0x83, 0xec, 0x10};
CollectionAssert.AreEqual(expectedResult, parser.GetBytes());
}
[Test]
public void ParseNonMain()
{
writer.WriteLine(" 804837d: c3 ret ");
writer.WriteLine();
writer.Flush();
parser = new DumpFileParser(stream, "_start");
Assert.AreEqual(0x0804837c, parser.BaseAddress);
Assert.AreEqual(0x0804837c, parser.EntryPointAddress);
var code = parser.GetBytes();
Assert.AreEqual(0xc9, code[0]);
}
[Test]
public void WithExpectedReportItmes()
{
writer.WriteLine(" //<OutOfBoundsMemoryAccess Location=0x8000ffff Exploitable=True/>");
writer.WriteLine(" //<OutOfBoundsMemoryAccess Location=0x8000FFFA Exploitable=False/>");
writer.Flush();
parser = new DumpFileParser(stream, "main");
Assert.AreEqual(2, parser.ExpectedReportItems.Count);
Assert.AreEqual(0x8000ffff, parser.ExpectedReportItems[0].InstructionPointer);
Assert.AreEqual(true, parser.ExpectedReportItems[0].IsTainted);
Assert.AreEqual(0x8000FFFA, parser.ExpectedReportItems[1].InstructionPointer);
Assert.AreEqual(false, parser.ExpectedReportItems[1].IsTainted);
}
}
[TestFixture]
public class WithNoStartTest : DumpFileParserFixture
{
#region Setup/Teardown
[SetUp]
public override void SetUp()
{
base.SetUp();
writer.WriteLine("0804837f <nostart>:");
}
#endregion
[Test]
public void GetBytesIsNull()
{
writer.WriteLine(" 804837f: 55 push ebp");
writer.Flush();
parser = new DumpFileParser(stream, "main");
Assert.IsNull(parser.GetBytes());
Assert.AreEqual(0, parser.BaseAddress);
Assert.AreEqual(0, parser.EntryPointAddress);
}
}
}