056f32a57ca1b018c383b8e0185bfc9f795f7b95
[yardstick.git] / yardstick / network_services / traffic_profile / ixia_rfc2544.py
1 # Copyright (c) 2016-2017 Intel Corporation
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import logging
16
17 from yardstick.common import utils
18 from yardstick.network_services.traffic_profile import base as tp_base
19 from yardstick.network_services.traffic_profile import trex_traffic_profile
20
21
22 LOG = logging.getLogger(__name__)
23
24
25 class IXIARFC2544Profile(trex_traffic_profile.TrexProfile):
26
27     UPLINK = 'uplink'
28     DOWNLINK = 'downlink'
29     DROP_PERCENT_ROUND = 6
30     RATE_ROUND = 5
31
32     def __init__(self, yaml_data):
33         super(IXIARFC2544Profile, self).__init__(yaml_data)
34         self.rate = self.config.frame_rate
35         self.rate_unit = self.config.rate_unit
36
37     def _get_ip_and_mask(self, ip_range):
38         _ip_range = ip_range.split('-')
39         if len(_ip_range) == 1:
40             return _ip_range[0], None
41
42         mask = utils.get_mask_from_ip_range(_ip_range[0], _ip_range[1])
43         return _ip_range[0], mask
44
45     def _get_fixed_and_mask(self, port_range):
46         _port_range = str(port_range).split('-')
47         if len(_port_range) == 1:
48             return int(_port_range[0]), 0
49
50         return int(_port_range[0]), int(_port_range[1])
51
52     def _get_ixia_traffic_profile(self, profile_data, mac=None):
53         mac = {} if mac is None else mac
54         result = {}
55         for traffickey, values in profile_data.items():
56             if not traffickey.startswith((self.UPLINK, self.DOWNLINK)):
57                 continue
58
59             try:
60                 # values should be single-item dict, so just grab the first item
61                 try:
62                     key, value = next(iter(values.items()))
63                 except StopIteration:
64                     result[traffickey] = {}
65                     continue
66
67                 port_id = value.get('id', 1)
68                 port_index = port_id - 1
69
70                 if value.get('outer_l3v4'):
71                     ip = value['outer_l3v4']
72                     src_key, dst_key = 'srcip4', 'dstip4'
73                 else:
74                     ip = value['outer_l3v6']
75                     src_key, dst_key = 'srcip6', 'dstip6'
76
77                 srcip, srcmask = self._get_ip_and_mask(ip[src_key])
78                 dstip, dstmask = self._get_ip_and_mask(ip[dst_key])
79
80                 outer_l4 = value.get('outer_l4')
81                 src_port, src_port_mask = self._get_fixed_and_mask(outer_l4['srcport'])
82                 dst_port, dst_port_mask = self._get_fixed_and_mask(outer_l4['dstport'])
83                 result[traffickey] = {
84                     'bidir': False,
85                     'id': port_id,
86                     'rate': self.rate,
87                     'rate_unit': self.rate_unit,
88                     'outer_l2': {
89                         'framesize': value['outer_l2']['framesize'],
90                         'framesPerSecond': True,
91                         'srcmac': mac['src_mac_{}'.format(port_index)],
92                         'dstmac': mac['dst_mac_{}'.format(port_index)],
93                     },
94                     'outer_l3': {
95                         'count': ip['count'],
96                         'dscp': ip['dscp'],
97                         'ttl': ip['ttl'],
98                         'srcip': srcip,
99                         'dstip': dstip,
100                         'srcmask': srcmask,
101                         'dstmask': dstmask,
102                         'type': key,
103                         'proto': ip['proto'],
104                     },
105                     'outer_l4': {
106                         'srcport': src_port,
107                         'dstport': dst_port,
108                         'srcportmask': src_port_mask,
109                         'dstportmask': dst_port_mask,
110                         'count': outer_l4['count'],
111                         'seed': outer_l4['seed'],
112                     }
113
114                 }
115             except KeyError:
116                 continue
117
118         return result
119
120     def _ixia_traffic_generate(self, traffic, ixia_obj):
121         ixia_obj.update_frame(traffic, self.config.duration)
122         ixia_obj.update_ip_packet(traffic)
123         ixia_obj.update_l4(traffic)
124         ixia_obj.start_traffic()
125
126     def update_traffic_profile(self, traffic_generator):
127         def port_generator():
128             for vld_id, intfs in sorted(traffic_generator.networks.items()):
129                 if not vld_id.startswith((self.UPLINK, self.DOWNLINK)):
130                     continue
131                 profile_data = self.params.get(vld_id)
132                 if not profile_data:
133                     continue
134                 self.profile_data = profile_data
135                 self.full_profile.update({vld_id: self.profile_data})
136                 for intf in intfs:
137                     yield traffic_generator.vnfd_helper.port_num(intf)
138
139         self.ports = [port for port in port_generator()]
140
141     def execute_traffic(self, traffic_generator, ixia_obj=None, mac=None):
142         mac = {} if mac is None else mac
143         first_run = self.first_run
144         if self.first_run:
145             self.first_run = False
146             self.full_profile = {}
147             self.pg_id = 0
148             self.update_traffic_profile(traffic_generator)
149             self.max_rate = self.rate
150             self.min_rate = 0.0
151         else:
152             self.rate = round(float(self.max_rate + self.min_rate) / 2.0,
153                               self.RATE_ROUND)
154
155         traffic = self._get_ixia_traffic_profile(self.full_profile, mac)
156         self._ixia_traffic_generate(traffic, ixia_obj)
157         return first_run
158
159     def get_drop_percentage(self, samples, tol_min, tolerance,
160                             first_run=False):
161         completed = False
162         drop_percent = 100
163         num_ifaces = len(samples)
164         duration = self.config.duration
165         in_packets_sum = sum(
166             [samples[iface]['in_packets'] for iface in samples])
167         out_packets_sum = sum(
168             [samples[iface]['out_packets'] for iface in samples])
169         rx_throughput = sum(
170             [samples[iface]['RxThroughput'] for iface in samples])
171         rx_throughput = round(float(rx_throughput), 2)
172         tx_throughput = sum(
173             [samples[iface]['TxThroughput'] for iface in samples])
174         tx_throughput = round(float(tx_throughput), 2)
175         packet_drop = abs(out_packets_sum - in_packets_sum)
176
177         try:
178             drop_percent = round(
179                 (packet_drop / float(out_packets_sum)) * 100,
180                 self.DROP_PERCENT_ROUND)
181         except ZeroDivisionError:
182             LOG.info('No traffic is flowing')
183
184         samples['TxThroughput'] = tx_throughput
185         samples['RxThroughput'] = rx_throughput
186         samples['DropPercentage'] = drop_percent
187
188         if first_run:
189             completed = True if drop_percent <= tolerance else False
190         if (first_run and
191                 self.rate_unit == tp_base.TrafficProfileConfig.RATE_FPS):
192             self.rate = float(out_packets_sum) / duration / num_ifaces
193
194         if drop_percent > tolerance:
195             self.max_rate = self.rate
196         elif drop_percent < tol_min:
197             self.min_rate = self.rate
198         else:
199             completed = True
200
201         return completed, samples