-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDNSHeaderParserDecorator.java
More file actions
224 lines (195 loc) · 6 KB
/
DNSHeaderParserDecorator.java
File metadata and controls
224 lines (195 loc) · 6 KB
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
import java.nio.ByteBuffer;
/**
* A decorator for DNSHeader that parses a byte buffer to create a
* DNSHeader.
*
* @author Chris Blades
* @version 20/3/10
*/
public class DNSHeaderParserDecorator implements DNSHeader {
/** The DNSHeader object this object wraps */
private DNSHeader header;
/** byte buffer to parse and pass to other objects */
private IndexedArrayList<Byte> bytes;
/**
* Creates a new DNSHeaderParserDecorator with the given byte
* buffer.
*
* @param bytes the byte buffer to parse.
*/
public DNSHeaderParserDecorator(IndexedArrayList<Byte> bytes) {
this.bytes = bytes;
this.header = new DNSHeaderImpl();
}
/**
* Parses the byte buffer to form a DNSHeader object.
*
*/
public void parse() {
// translate identifier
ByteBuffer translator = ByteBuffer.allocate(4);
translator.put((byte)0x00);
translator.put((byte)0x00);
translator.put(bytes.getNext());
translator.put(bytes.getNext());
header.setIdentifier(translator.getInt(0));
// parse flags
DNSFlagsFieldParserDecorator flags =
new DNSFlagsFieldParserDecorator(bytes);
flags.parse();
header.setFlags(flags);
// translate num questions
translator = ByteBuffer.allocate(4);
translator.put((byte)0x00);
translator.put((byte)0x00);
translator.put(bytes.getNext());
translator.put(bytes.getNext());
header.setNumQuestions(translator.getInt(0));
// translate num answers
translator = ByteBuffer.allocate(4);
translator.put((byte)0x00);
translator.put((byte)0x00);
translator.put(bytes.getNext());
translator.put(bytes.getNext());
header.setNumAnswers(translator.getInt(0));
// translate num authoritative answers
translator = ByteBuffer.allocate(4);
translator.put((byte)0x00);
translator.put((byte)0x00);
translator.put(bytes.getNext());
translator.put(bytes.getNext());
header.setNumAuthorityAnswers(translator.getInt(0));
// translate num additional answers
translator = ByteBuffer.allocate(4);
translator.put((byte)0x00);
translator.put((byte)0x00);
translator.put(bytes.getNext());
translator.put(bytes.getNext());
header.setNumAdditionalAnswers(translator.getInt(0));
}
//
// DNSHeader
//
/**
* Returns the identifier of this header.
*
* @return this headers identifier
*/
public int getIdentifier() {
return header.getIdentifier();
}
/**
* Returns the flags field of this header.
*
* @return the flags field of this header.
*/
public DNSFlagsField getFlags() {
return header.getFlags();
}
/**
* Returns the number of questions in a packet with this header.
*
* @return the number of questions field
*/
public int getNumQuestions() {
return header.getNumQuestions();
}
/**
* Returns the number of answers in a packet with this header.
*
* @return the number of answers field
*/
public int getNumAnswers() {
return header.getNumAnswers();
}
/**
* Returns the number of authority answers in a packet with this header.
*
* @return the number of authority answers field
*/
public int getNumAuthorityAnswers() {
return header.getNumAuthorityAnswers();
}
/**
* Returns the number of additional answers in a packet with this header.
*
* @return the number of additional answers field
*/
public int getNumAdditionalAnswers() {
return header.getNumAdditionalAnswers();
}
/**
* Sets the identifier of this header.
*
* @param identifier the new identifier of this header
*/
public void setIdentifier(int identifier) {
header.setIdentifier(identifier);
}
/**
* Sets the flags field of this header
*
* @param flags the new flags field of this header.
*/
public void setFlags(DNSFlagsField flags) {
header.setFlags(flags);
}
/**
* Sets the number of questions field of this header.
*
* @param numQuestions the new number of questions
*/
public void setNumQuestions(int numQuestions) {
header.setNumQuestions(numQuestions);
}
/**
* Sets the number of answers field of this header.
*
* @param numAnswers the new number of answers
*/
public void setNumAnswers(int numAnswers) {
header.setNumAnswers(numAnswers);
}
/**
* Sets the number of authority answers field of this header.
*
* @param numAuthorityAnswers the new number of authority answers
*/
public void setNumAuthorityAnswers(int numAuthorityAnswers) {
header.setNumAuthorityAnswers(numAuthorityAnswers);
}
/**
* Sets the number of additional answers field of this header.
*
* @param numAdditionalAnswers the new number of additional answers
*/
public void setNumAdditionalAnswers(int numAdditionalAnswers) {
header.setNumAdditionalAnswers(numAdditionalAnswers);
}
/**
* Returns the length of the parsed DNSHeader object.
*
* @return the length of the parsed DNSHeader object.
*/
public int getLength() {
return header.getLength();
}
/**
* returns the serialized version of the parsed dnsanswer object.
* can't just return the byte buffer because we don't know what else is in
* it.
*
* @return the serialized version of the parsed dnsanswer object.
*/
public byte[] serialize() {
return header.serialize();
}
/**
* Returns a mapping of the state values of the parsed DNSHeader object.
*
* @return the state values of the parsed DNSHeader object.
*/
public Map stateValues() {
return header.stateValues();
}
}