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
|
# Copyright (c) 2022 Intel and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys, getopt
import packetforge
def Main(argv):
file_flag = False
operation = None
try:
opts, args = getopt.getopt(
argv,
"hf:p:a:i:I:",
[
"help",
"show",
"file=",
"pattern=",
],
)
except getopt.GetoptError:
print("flow_parse.py --show -f <file> -p <pattern>")
sys.exit()
for opt, arg in opts:
if opt == "-h":
print("flow_parse.py --show -f <file> -p <pattern>")
sys.exit()
elif opt == "--show":
operation = "show"
elif opt in ("-f", "--file"):
json_file = arg
file_flag = True
elif opt in ("-p", "--pattern") and not file_flag:
pattern = arg
if operation == None:
print("Error: Please choose the operation: show")
sys.exit()
if not file_flag:
result = packetforge.Forge(pattern, None, False, True)
else:
result = packetforge.Forge(json_file, None, True, True)
return result
if __name__ == "__main__":
# Parse the arguments
my_flow = Main(sys.argv[1:])
print(my_flow)
# command example:
# python flow_parse.py --show -p "mac()/ipv4(src=1.1.1.1,dst=2.2.2.2)/udp()"
|