License: Wrap GPL block to 80 characters
[csit.git] / GPL / traffic_profiles / trex / trex-stl-3n-ethip4-macsrc10kip4src10k.py
1 # Copyright (c) 2021 Cisco and/or its affiliates.
2 #
3 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
4 #
5 # Licensed under the Apache License 2.0 or
6 # GNU General Public License v2.0 or later;  you may not use this file
7 # except in compliance with one of these Licenses. You
8 # may obtain a copy of the Licenses at:
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #     https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
12 #
13 # Note: If this file is linked with Scapy, which is GPLv2+, your use of it
14 # must be under GPLv2+.  If at any point in the future it is no longer linked
15 # with Scapy (or other GPLv2+ licensed software), you are free to choose
16 # Apache 2.
17 #
18 # Unless required by applicable law or agreed to in writing, software
19 # distributed under the License is distributed on an "AS IS" BASIS,
20 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
21 # See the License for the specific language governing permissions and
22 # limitations under the License.
23
24 """Stream profile for T-rex traffic generator.
25
26 Stream profile:
27  - Two streams sent in directions 0 --> 1 and 1 --> 0 at the same time.
28  - Packet: | ETH | IP |
29  - Direction 0 --> 1:
30    - Source MAC address range:     ca:fe:00:00:00:00 - ca:fe:00:00:27:0f
31    - Source IP address range:      10.0.0.2 - 10.0.39.17
32    - Destination IP address range: 20.0.0.1
33  - Direction 1 --> 0:
34    - Source MAC address range:     fa:ce:00:00:00:00 - fa:ce:00:00:27:0f
35    - Source IP address range:      20.0.0.2 - 20.0.39.17
36    - Destination IP address range: 10.0.0.1
37 """
38
39 from trex.stl.api import *
40 from profile_trex_stateless_base_class import TrafficStreamsBaseClass
41
42
43 class TrafficStreams(TrafficStreamsBaseClass):
44     """Stream profile."""
45
46     def __init__(self):
47         """Initialization and setting of streams' parameters."""
48
49         super(TrafficStreamsBaseClass, self).__init__()
50
51         self.clients = 10000
52
53         # MACs used in packet headers.
54         self.p1_src_start_mac = u"ca:fe:00:00:00:00"  # mask: 00:00:FF:FF:FF:FF
55
56         self.p2_src_start_mac = u"fa:ce:00:00:00:00"  # mask: 00:00:FF:FF:FF:FF
57
58         # IPs used in packet headers.
59         self.p1_src_start_ip = u"10.0.0.2"
60         self.p1_src_end_ip = u"10.0.39.17"
61         self.p1_dst_start_ip = u"20.0.0.1"
62
63         self.p2_src_start_ip = u"20.0.0.2"
64         self.p2_src_end_ip = u"20.0.39.17"
65         self.p2_dst_start_ip = u"10.0.0.1"
66
67     def define_packets(self):
68         """Defines the packets to be sent from the traffic generator.
69
70         Packet definition: | ETH | IP |
71
72         :returns: Packets to be sent from the traffic generator.
73         :rtype: tuple
74         """
75
76         # Direction 0 --> 1
77         base_pkt_a = (
78             Ether(
79                 src=self.p1_src_start_mac
80             ) /
81             IP(
82                 src=self.p1_src_start_ip,
83                 dst=self.p1_dst_start_ip,
84                 proto=61
85             )
86         )
87         # Direction 1 --> 0
88         base_pkt_b = (
89             Ether(
90                 src=self.p2_src_start_mac
91             ) /
92             IP(
93                 src=self.p2_src_start_ip,
94                 dst=self.p2_dst_start_ip,
95                 proto=61
96             )
97         )
98
99         # Direction 0 --> 1
100         vm1 = STLScVmRaw(
101             [
102                 STLVmFlowVar(
103                     name=u"mac_src",
104                     min_value=0,
105                     max_value=self.clients-1,
106                     size=4,
107                     op=u"inc"
108                 ),
109                 STLVmWrFlowVar(
110                     fv_name=u"mac_src",
111                     pkt_offset=8
112                 ),
113                 STLVmFlowVar(
114                     name=u"src",
115                     min_value=self.p1_src_start_ip,
116                     max_value=self.p1_src_end_ip,
117                     size=4,
118                     op=u"inc"
119                 ),
120                 STLVmWrFlowVar(
121                     fv_name=u"src",
122                     pkt_offset=u"IP.src"
123                 ),
124                 STLVmFixIpv4(
125                     offset=u"IP"
126                 )
127             ]
128         )
129         # Direction 1 --> 0
130         vm2 = STLScVmRaw(
131             [
132                 STLVmFlowVar(
133                     name=u"mac_src",
134                     min_value=0,
135                     max_value=self.clients-1,
136                     size=4,
137                     op=u"inc"
138                 ),
139                 STLVmWrFlowVar(
140                     fv_name=u"mac_src",
141                     pkt_offset=8
142                 ),
143                 STLVmFlowVar(
144                     name=u"src",
145                     min_value=self.p2_src_start_ip,
146                     max_value=self.p2_src_end_ip,
147                     size=4,
148                     op=u"inc"
149                 ),
150                 STLVmWrFlowVar(
151                     fv_name=u"src",
152                     pkt_offset=u"IP.src"
153                 ),
154                 STLVmFixIpv4(
155                     offset=u"IP"
156                 )
157             ]
158         )
159
160         return base_pkt_a, base_pkt_b, vm1, vm2
161
162
163 def register():
164     """Register this traffic profile to T-rex.
165
166     Do not change this function.
167
168     :returns: Traffic streams.
169     :rtype: Object
170     """
171     return TrafficStreams()