Skip to content

Commit 13f94a2

Browse files
authored
Merge pull request #1899 from c65722/strip_ipv4_header
Add Strip IPv4 header operation
2 parents 592e660 + 8cd875d commit 13f94a2

File tree

4 files changed

+185
-0
lines changed

4 files changed

+185
-0
lines changed

src/core/config/Categories.json

+1
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@
235235
"Parse IP range",
236236
"Parse IPv6 address",
237237
"Parse IPv4 header",
238+
"Strip IPv4 header",
238239
"Parse TCP",
239240
"Strip TCP header",
240241
"Parse TLS record",
+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/**
2+
* @author c65722 []
3+
* @copyright Crown Copyright 2024
4+
* @license Apache-2.0
5+
*/
6+
7+
import Operation from "../Operation.mjs";
8+
import OperationError from "../errors/OperationError.mjs";
9+
import Stream from "../lib/Stream.mjs";
10+
11+
/**
12+
* Strip IPv4 header operation
13+
*/
14+
class StripIPv4Header extends Operation {
15+
16+
/**
17+
* StripIPv4Header constructor
18+
*/
19+
constructor() {
20+
super();
21+
22+
this.name = "Strip IPv4 header";
23+
this.module = "Default";
24+
this.description = "Strips the IPv4 header from an IPv4 packet, outputting the payload.";
25+
this.infoURL = "https://wikipedia.org/wiki/IPv4";
26+
this.inputType = "ArrayBuffer";
27+
this.outputType = "ArrayBuffer";
28+
this.args = [];
29+
}
30+
31+
/**
32+
* @param {ArrayBuffer} input
33+
* @param {Object[]} args
34+
* @returns {ArrayBuffer}
35+
*/
36+
run(input, args) {
37+
const MIN_HEADER_LEN = 20;
38+
39+
const s = new Stream(new Uint8Array(input));
40+
if (s.length < MIN_HEADER_LEN) {
41+
throw new OperationError("Input length is less than minimum IPv4 header length");
42+
}
43+
44+
const ihl = s.readInt(1) & 0x0f;
45+
const dataOffsetBytes = ihl * 4;
46+
if (s.length < dataOffsetBytes) {
47+
throw new OperationError("Input length is less than IHL");
48+
}
49+
50+
s.moveTo(dataOffsetBytes);
51+
52+
return s.getBytes().buffer;
53+
}
54+
55+
}
56+
57+
export default StripIPv4Header;

tests/operations/index.mjs

+1
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ import "./tests/SIGABA.mjs";
143143
import "./tests/SM4.mjs";
144144
// import "./tests/SplitColourChannels.mjs"; // Cannot test operations that use the File type yet
145145
import "./tests/StrUtils.mjs";
146+
import "./tests/StripIPv4Header.mjs";
146147
import "./tests/StripTCPHeader.mjs";
147148
import "./tests/StripUDPHeader.mjs";
148149
import "./tests/Subsection.mjs";
+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
/**
2+
* Strip IPv4 header tests.
3+
*
4+
* @author c65722 []
5+
* @copyright Crown Copyright 2024
6+
* @license Apache-2.0
7+
*/
8+
9+
import TestRegister from "../../lib/TestRegister.mjs";
10+
11+
TestRegister.addTests([
12+
{
13+
name: "Strip IPv4 header: No options, No payload",
14+
input: "450000140005400080060000c0a80001c0a80002",
15+
expectedOutput: "",
16+
recipeConfig: [
17+
{
18+
op: "From Hex",
19+
args: ["None"]
20+
},
21+
{
22+
op: "Strip IPv4 header",
23+
args: [],
24+
},
25+
{
26+
op: "To Hex",
27+
args: ["None", 0]
28+
}
29+
]
30+
},
31+
{
32+
name: "Strip IPv4 header: No options, Payload",
33+
input: "450000140005400080060000c0a80001c0a80002ffffffffffffffff",
34+
expectedOutput: "ffffffffffffffff",
35+
recipeConfig: [
36+
{
37+
op: "From Hex",
38+
args: ["None"]
39+
},
40+
{
41+
op: "Strip IPv4 header",
42+
args: [],
43+
},
44+
{
45+
op: "To Hex",
46+
args: ["None", 0]
47+
}
48+
]
49+
},
50+
{
51+
name: "Strip IPv4 header: Options, No payload",
52+
input: "460000140005400080060000c0a80001c0a8000207000000",
53+
expectedOutput: "",
54+
recipeConfig: [
55+
{
56+
op: "From Hex",
57+
args: ["None"]
58+
},
59+
{
60+
op: "Strip IPv4 header",
61+
args: [],
62+
},
63+
{
64+
op: "To Hex",
65+
args: ["None", 0]
66+
}
67+
]
68+
},
69+
{
70+
name: "Strip IPv4 header: Options, Payload",
71+
input: "460000140005400080060000c0a80001c0a8000207000000ffffffffffffffff",
72+
expectedOutput: "ffffffffffffffff",
73+
recipeConfig: [
74+
{
75+
op: "From Hex",
76+
args: ["None"]
77+
},
78+
{
79+
op: "Strip IPv4 header",
80+
args: [],
81+
},
82+
{
83+
op: "To Hex",
84+
args: ["None", 0]
85+
}
86+
]
87+
},
88+
{
89+
name: "Strip IPv4 header: Input length lesss than minimum header length",
90+
input: "450000140005400080060000c0a80001c0a800",
91+
expectedOutput: "Input length is less than minimum IPv4 header length",
92+
recipeConfig: [
93+
{
94+
op: "From Hex",
95+
args: ["None"]
96+
},
97+
{
98+
op: "Strip IPv4 header",
99+
args: [],
100+
},
101+
{
102+
op: "To Hex",
103+
args: ["None", 0]
104+
}
105+
]
106+
},
107+
{
108+
name: "Strip IPv4 header: Input length less than IHL",
109+
input: "460000140005400080060000c0a80001c0a80000",
110+
expectedOutput: "Input length is less than IHL",
111+
recipeConfig: [
112+
{
113+
op: "From Hex",
114+
args: ["None"]
115+
},
116+
{
117+
op: "Strip IPv4 header",
118+
args: [],
119+
},
120+
{
121+
op: "To Hex",
122+
args: ["None", 0]
123+
}
124+
]
125+
}
126+
]);

0 commit comments

Comments
 (0)