-
Notifications
You must be signed in to change notification settings - Fork 0
/
AbstractValue.cs
executable file
·232 lines (188 loc) · 6.08 KB
/
AbstractValue.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
// 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.Text;
namespace bugreport
{
public sealed class AbstractValue
{
public const UInt32 MAX_BUFFER_SIZE = 25600000;
public const UInt32 UNKNOWN = 0xb4dc0d3d;
private static readonly AbstractValue zero = new AbstractValue(0);
private readonly AbstractBuffer pointsTo;
private readonly UInt32 storage;
private Boolean tainted;
public AbstractValue()
{
storage = UNKNOWN;
}
public AbstractValue(AbstractValue[] willPointTo)
{
if (willPointTo.Length == 0)
{
throw new ArgumentException("Empty buffer is not allowed", "willPointTo");
}
storage = 0xdeadbeef;
pointsTo = new AbstractBuffer(willPointTo);
}
public AbstractValue(AbstractBuffer willPointTo)
{
if (willPointTo.Length == 0)
{
throw new ArgumentException("Empty buffer is not allowed", "willPointTo");
}
storage = 0xdeadbeef;
pointsTo = new AbstractBuffer(willPointTo);
}
public AbstractValue(AbstractValue other)
{
if (other == null)
{
throw new ArgumentNullException("other");
}
storage = other.Value;
tainted = other.IsTainted;
IsOutOfBounds = other.IsOutOfBounds;
if (other.PointsTo != null)
{
pointsTo = new AbstractBuffer(other.PointsTo);
}
}
public AbstractValue(UInt32 value)
{
storage = value;
}
public AbstractBuffer PointsTo
{
get { return pointsTo; }
}
public Boolean IsTainted
{
get { return tainted; }
private set { tainted = value; }
}
public Boolean IsOutOfBounds { get; set; }
public Boolean IsInitialized
{
get { return storage != UNKNOWN; }
}
public UInt32 Value
{
get { return storage; }
}
public Boolean IsPointer
{
get { return pointsTo != null; }
}
public static AbstractValue Zero
{
get { return zero; }
}
public static AbstractValue[] GetNewBuffer(UInt32 size)
{
if (size > MAX_BUFFER_SIZE)
{
throw new ArgumentOutOfRangeException(
"size", "Size specified larger than maximum allowed: " + MAX_BUFFER_SIZE);
}
var buffer = new AbstractValue[size];
for (UInt32 i = 0; i < size; i++)
{
buffer[i] = new AbstractValue();
}
return buffer;
}
public override Boolean Equals(object obj)
{
var other = obj as AbstractValue;
if (null == other)
{
return false;
}
return Value == other.Value &&
IsOutOfBounds == other.IsOutOfBounds &&
IsTainted == other.IsTainted &&
PointsTo == other.PointsTo;
}
public override Int32 GetHashCode()
{
var hashCode = Value.GetHashCode() ^ IsOutOfBounds.GetHashCode() ^
IsTainted.GetHashCode();
if (PointsTo != null)
{
hashCode ^= PointsTo.GetHashCode();
}
return hashCode;
}
public AbstractValue TruncateValueToByte()
{
var byteValue = Value & 0xff;
var truncatedValue = new AbstractValue(byteValue);
truncatedValue.IsTainted = IsTainted;
return truncatedValue;
}
public AbstractValue AddTaint()
{
if (PointsTo != null)
{
throw new InvalidOperationException("Cannot AddTaint to a pointer");
}
var taintedValue = new AbstractValue(this)
{
IsTainted = true
};
return taintedValue;
}
public AbstractValue AddTaintIf(Boolean condition)
{
if (condition)
{
return AddTaint();
}
return this;
}
public override String ToString()
{
var result = String.Empty;
if (tainted)
{
result += "t";
}
var valueToPrint = Value;
if (pointsTo != null)
{
var pointer = pointsTo[0];
var newResult = new StringBuilder(result);
const Byte MAXIMUM_DISPLAYED_POINTER_DEPTH = 100;
Int32 count = MAXIMUM_DISPLAYED_POINTER_DEPTH;
while ((pointer != null) &&
(count-- > 0))
{
newResult.Append("*");
if (pointer.PointsTo != null)
{
pointer = pointer.PointsTo[0];
}
else
{
valueToPrint = pointer.Value;
pointer = null;
}
}
result = newResult.ToString();
}
if (valueToPrint != UNKNOWN)
{
result += String.Format("0x{0:x8}", valueToPrint);
}
else
{
result += "?";
}
return result;
}
}
}