Initial code drop from Cisco
[nfvbench.git] / nfvbench / chain_managers.py
1 #!/usr/bin/env python
2 # Copyright 2016 Cisco Systems, Inc.  All rights reserved.
3 #
4 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
5 #    not use this file except in compliance with the License. You may obtain
6 #    a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #    Unless required by applicable law or agreed to in writing, software
11 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 #    License for the specific language governing permissions and limitations
14 #    under the License.
15 #
16
17 from log import LOG
18 from network import Network
19 from packet_analyzer import PacketAnalyzer
20 from specs import ChainType
21 from stats_collector import IntervalCollector
22 import time
23
24
25 class StageManager(object):
26
27     def __init__(self, config, cred, factory):
28         self.config = config
29         self.client = None
30         # conditions due to EXT chain special cases
31         if (config.vlan_tagging and not config.vlans) or not config.no_int_config:
32             VM_CLASS = factory.get_stage_class(config.service_chain)
33             self.client = VM_CLASS(config, cred)
34             self.client.setup()
35
36     def get_vlans(self):
37         return self.client.get_vlans() if self.client else []
38
39     def get_host_ips(self):
40         return self.client.get_host_ips()
41
42     def get_networks_uuids(self):
43         return self.client.get_networks_uuids()
44
45     def disable_port_security(self):
46         self.client.disable_port_security()
47
48     def get_vms(self):
49         return self.client.vms
50
51     def get_nets(self):
52         return self.client.nets
53
54     def get_ports(self):
55         return self.client.ports
56
57     def get_compute_nodes(self):
58         return self.client.compute_nodes
59
60     def set_vm_macs(self):
61         if self.client and self.config.service_chain != ChainType.EXT:
62             self.config.generator_config.set_vm_mac_list(self.client.get_end_port_macs())
63
64     def close(self):
65         if not self.config.no_cleanup and self.client:
66             self.client.dispose()
67
68
69 class StatsManager(object):
70
71     def __init__(self, config, clients, specs, factory, vlans, notifier=None):
72         self.config = config
73         self.clients = clients
74         self.specs = specs
75         self.notifier = notifier
76         self.interval_collector = None
77         self.vlans = vlans
78         self.factory = factory
79         self._setup()
80
81     def set_vlan_tag(self, device, vlan):
82         self.worker.set_vlan_tag(device, vlan)
83
84     def _setup(self):
85         WORKER_CLASS = self.factory.get_chain_worker(self.specs.openstack.encaps,
86                                                      self.config.service_chain)
87         self.worker = WORKER_CLASS(self.config, self.clients, self.specs)
88         self.worker.set_vlans(self.vlans)
89         self._config_interfaces()
90
91     def _get_data(self):
92         return self.worker.get_data()
93
94     def _get_network(self, traffic_port, index=None, reverse=False):
95         interfaces = [self.clients['traffic'].get_interface(traffic_port)]
96         interfaces.extend(self.worker.get_network_interfaces(index))
97         return Network(interfaces, reverse)
98
99     def _config_interfaces(self):
100         if self.config.service_chain != ChainType.EXT:
101             self.clients['vm'].disable_port_security()
102
103         self.worker.config_interfaces()
104
105     def _generate_traffic(self):
106         if self.config.no_traffic:
107             return
108
109         self.interval_collector = IntervalCollector(time.time())
110         self.interval_collector.attach_notifier(self.notifier)
111         LOG.info('Starting to generate traffic...')
112         stats = {}
113         for stats in self.clients['traffic'].run_traffic():
114             self.interval_collector.add(stats)
115
116         LOG.info('...traffic generating ended.')
117         return stats
118
119     def get_stats(self):
120         return self.interval_collector.get() if self.interval_collector else []
121
122     def get_version(self):
123         return self.worker.get_version()
124
125     def run(self):
126         """
127         Run analysis in both direction and return the analysis
128         """
129         self.worker.run()
130
131         stats = self._generate_traffic()
132         result = {
133             'raw_data': self._get_data(),
134             'packet_analysis': {},
135             'stats': stats
136         }
137
138         LOG.info('Requesting packet analysis on the forward direction...')
139         result['packet_analysis']['direction-forward'] = \
140             self.get_analysis([self._get_network(0, 0),
141                                self._get_network(0, 1, reverse=True)])
142         LOG.info('Packet analysis on the forward direction completed')
143
144         LOG.info('Requesting packet analysis on the reverse direction...')
145         result['packet_analysis']['direction-reverse'] = \
146             self.get_analysis([self._get_network(1, 1),
147                                self._get_network(1, 0, reverse=True)])
148
149         LOG.info('Packet analysis on the reverse direction completed')
150         return result
151
152     def get_compute_nodes_bios(self):
153         return self.worker.get_compute_nodes_bios()
154
155     @staticmethod
156     def get_analysis(nets):
157         LOG.info('Starting traffic analysis...')
158
159         packet_analyzer = PacketAnalyzer()
160         # Traffic types are assumed to always alternate in every chain. Add a no stats interface in
161         # between if that is not the case.
162         tx = True
163         for network in nets:
164             for interface in network.get_interfaces():
165                 packet_analyzer.record(interface, 'tx' if tx else 'rx')
166                 tx = not tx
167
168         LOG.info('...traffic analysis completed')
169         return packet_analyzer.get_analysis()
170
171     def close(self):
172         self.worker.close()
173
174
175 class PVPStatsManager(StatsManager):
176
177     def __init__(self, config, clients, specs, factory, vlans, notifier=None):
178         StatsManager.__init__(self, config, clients, specs, factory, vlans, notifier)
179
180
181 class PVVPStatsManager(StatsManager):
182
183     def __init__(self, config, clients, specs, factory, vlans, notifier=None):
184         StatsManager.__init__(self, config, clients, specs, factory, vlans, notifier)
185
186     def run(self):
187         """
188         Run analysis in both direction and return the analysis
189         """
190         fwd_v2v_net, rev_v2v_net = self.worker.run()
191
192         stats = self._generate_traffic()
193         result = {
194             'raw_data': self._get_data(),
195             'packet_analysis': {},
196             'stats': stats
197         }
198
199         fwd_nets = [self._get_network(0, 0)]
200         if fwd_v2v_net:
201             fwd_nets.append(fwd_v2v_net)
202         fwd_nets.append(self._get_network(0, 1, reverse=True))
203
204         rev_nets = [self._get_network(1, 1)]
205         if rev_v2v_net:
206             rev_nets.append(rev_v2v_net)
207         rev_nets.append(self._get_network(1, 0, reverse=True))
208
209         LOG.info('Requesting packet analysis on the forward direction...')
210         result['packet_analysis']['direction-forward'] = self.get_analysis(fwd_nets)
211         LOG.info('Packet analysis on the forward direction completed')
212
213         LOG.info('Requesting packet analysis on the reverse direction...')
214         result['packet_analysis']['direction-reverse'] = self.get_analysis(rev_nets)
215
216         LOG.info('Packet analysis on the reverse direction completed')
217         return result
218
219
220 class EXTStatsManager(StatsManager):
221     def __init__(self, config, clients, specs, factory, vlans, notifier=None):
222         StatsManager.__init__(self, config, clients, specs, factory, vlans, notifier)
223
224     def _setup(self):
225         WORKER_CLASS = self.factory.get_chain_worker(self.specs.openstack.encaps,
226                                                      self.config.service_chain)
227         self.worker = WORKER_CLASS(self.config, self.clients, self.specs)
228         self.worker.set_vlans(self.vlans)
229
230         if not self.config.no_int_config:
231             self._config_interfaces()