Merge "Update the dummy-scenario-heat-context testcase"
[yardstick.git] / yardstick / benchmark / contexts / standalone / sriov.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 from __future__ import absolute_import
16 import os
17 import logging
18 import collections
19
20 from yardstick import ssh
21 from yardstick.network_services.utils import get_nsb_option
22 from yardstick.benchmark.contexts.base import Context
23 from yardstick.benchmark.contexts.standalone import model
24 from yardstick.network_services.utils import PciAddress
25
26 LOG = logging.getLogger(__name__)
27
28
29 class SriovContext(Context):
30     """ This class handles SRIOV standalone nodes - VM running on Non-Managed NFVi
31     Configuration: sr-iov
32     """
33
34     __context_type__ = "StandaloneSriov"
35
36     def __init__(self):
37         self.file_path = None
38         self.sriov = []
39         self.first_run = True
40         self.dpdk_devbind = os.path.join(get_nsb_option('bin_path'),
41                                          'dpdk-devbind.py')
42         self.vm_names = []
43         self.nfvi_host = []
44         self.nodes = []
45         self.networks = {}
46         self.attrs = {}
47         self.vm_flavor = None
48         self.servers = None
49         self.helper = model.StandaloneContextHelper()
50         self.vnf_node = model.Server()
51         self.drivers = []
52         super(SriovContext, self).__init__()
53
54     def init(self, attrs):
55         """initializes itself from the supplied arguments"""
56         super(SriovContext, self).init(attrs)
57
58         self.file_path = attrs.get("file", "pod.yaml")
59
60         self.nodes, self.nfvi_host, self.host_mgmt = \
61             self.helper.parse_pod_file(self.file_path, 'Sriov')
62
63         self.attrs = attrs
64         self.vm_flavor = attrs.get('flavor', {})
65         self.servers = attrs.get('servers', {})
66         self.vm_deploy = attrs.get("vm_deploy", True)
67         # add optional static network definition
68         self.networks = attrs.get("networks", {})
69
70         LOG.debug("Nodes: %r", self.nodes)
71         LOG.debug("NFVi Node: %r", self.nfvi_host)
72         LOG.debug("Networks: %r", self.networks)
73
74     def deploy(self):
75         """don't need to deploy"""
76
77         # Todo: NFVi deploy (sriov, vswitch, ovs etc) based on the config.
78         if not self.vm_deploy:
79             return
80
81         self.connection = ssh.SSH.from_node(self.host_mgmt)
82
83         #    Todo: NFVi deploy (sriov, vswitch, ovs etc) based on the config.
84         model.StandaloneContextHelper.install_req_libs(self.connection)
85         self.networks = model.StandaloneContextHelper.get_nic_details(
86             self.connection, self.networks, self.dpdk_devbind)
87         self.nodes = self.setup_sriov_context()
88
89         LOG.debug("Waiting for VM to come up...")
90         self.nodes = model.StandaloneContextHelper.wait_for_vnfs_to_start(
91             self.connection, self.servers, self.nodes)
92
93     def undeploy(self):
94         """don't need to undeploy"""
95
96         if not self.vm_deploy:
97             return
98
99         # Todo: NFVi undeploy (sriov, vswitch, ovs etc) based on the config.
100         for vm in self.vm_names:
101             model.Libvirt.check_if_vm_exists_and_delete(vm, self.connection)
102
103         # Bind nics back to kernel
104         for ports in self.networks.values():
105             # enable VFs for given...
106             build_vfs = "echo 0 > /sys/bus/pci/devices/{0}/sriov_numvfs"
107             self.connection.execute(build_vfs.format(ports.get('phy_port')))
108
109     def _get_server(self, attr_name):
110         """lookup server info by name from context
111
112         Keyword arguments:
113         attr_name -- A name for a server listed in nodes config file
114         """
115         node_name, name = self.split_name(attr_name)
116         if name is None or self.name != name:
117             return None
118
119         matching_nodes = (n for n in self.nodes if n["name"] == node_name)
120         try:
121             # A clone is created in order to avoid affecting the
122             # original one.
123             node = dict(next(matching_nodes))
124         except StopIteration:
125             return None
126
127         try:
128             duplicate = next(matching_nodes)
129         except StopIteration:
130             pass
131         else:
132             raise ValueError("Duplicate nodes!!! Nodes: %s %s"
133                              % (node, duplicate))
134
135         node["name"] = attr_name
136         return node
137
138     def _get_network(self, attr_name):
139         if not isinstance(attr_name, collections.Mapping):
140             network = self.networks.get(attr_name)
141
142         else:
143             # Don't generalize too much  Just support vld_id
144             vld_id = attr_name.get('vld_id', {})
145             # for standalone context networks are dicts
146             iter1 = (n for n in self.networks.values() if n.get('vld_id') == vld_id)
147             network = next(iter1, None)
148
149         if network is None:
150             return None
151
152         result = {
153             # name is required
154             "name": network["name"],
155             "vld_id": network.get("vld_id"),
156             "segmentation_id": network.get("segmentation_id"),
157             "network_type": network.get("network_type"),
158             "physical_network": network.get("physical_network"),
159         }
160         return result
161
162     def configure_nics_for_sriov(self):
163         vf_cmd = "ip link set {0} vf 0 mac {1}"
164         for ports in self.networks.values():
165             host_driver = ports.get('driver')
166             if host_driver not in self.drivers:
167                 self.connection.execute("rmmod %svf" % host_driver)
168                 self.drivers.append(host_driver)
169
170             # enable VFs for given...
171             build_vfs = "echo 1 > /sys/bus/pci/devices/{0}/sriov_numvfs"
172             self.connection.execute(build_vfs.format(ports.get('phy_port')))
173
174             # configure VFs...
175             mac = model.StandaloneContextHelper.get_mac_address()
176             interface = ports.get('interface')
177             if interface is not None:
178                 self.connection.execute(vf_cmd.format(interface, mac))
179
180             vf_pci = self._get_vf_data(ports.get('phy_port'), mac, interface)
181             ports.update({
182                 'vf_pci': vf_pci,
183                 'mac': mac
184             })
185
186         LOG.info('Ports %s', self.networks)
187
188     def _enable_interfaces(self, index, idx, vfs, cfg):
189         vf_spoofchk = "ip link set {0} vf 0 spoofchk off"
190
191         vf = self.networks[vfs[0]]
192         vpci = PciAddress(vf['vpci'].strip())
193         # Generate the vpci for the interfaces
194         slot = index + idx + 10
195         vf['vpci'] = \
196             "{}:{}:{:02x}.{}".format(vpci.domain, vpci.bus, slot, vpci.function)
197         model.Libvirt.add_sriov_interfaces(
198             vf['vpci'], vf['vf_pci']['vf_pci'], vf['mac'], str(cfg))
199         self.connection.execute("ifconfig %s up" % vf['interface'])
200         self.connection.execute(vf_spoofchk.format(vf['interface']))
201
202     def setup_sriov_context(self):
203         nodes = []
204
205         #   1 : modprobe host_driver with num_vfs
206         self.configure_nics_for_sriov()
207
208         for index, (key, vnf) in enumerate(collections.OrderedDict(
209                 self.servers).items()):
210             cfg = '/tmp/vm_sriov_%s.xml' % str(index)
211             vm_name = "vm_%s" % str(index)
212
213             # 1. Check and delete VM if already exists
214             model.Libvirt.check_if_vm_exists_and_delete(vm_name,
215                                                         self.connection)
216             xml_str, mac = model.Libvirt.build_vm_xml(
217                 self.connection, self.vm_flavor, vm_name, index)
218
219             # 2: Cleanup already available VMs
220             network_ports = collections.OrderedDict(
221                 {k: v for k, v in vnf["network_ports"].items() if k != 'mgmt'})
222             for idx, vfs in enumerate(network_ports.values()):
223                 self._enable_interfaces(index, idx, vfs, cfg)
224
225             # copy xml to target...
226             model.Libvirt.write_file(cfg, xml_str)
227             self.connection.put(cfg, cfg)
228
229             # NOTE: launch through libvirt
230             LOG.info("virsh create ...")
231             model.Libvirt.virsh_create_vm(self.connection, cfg)
232
233             self.vm_names.append(vm_name)
234
235             # build vnf node details
236             nodes.append(self.vnf_node.generate_vnf_instance(
237                 self.vm_flavor, self.networks, self.host_mgmt.get('ip'),
238                 key, vnf, mac))
239
240         return nodes
241
242     def _get_vf_data(self, value, vfmac, pfif):
243         vf_data = {
244             "mac": vfmac,
245             "pf_if": pfif
246         }
247         vfs = model.StandaloneContextHelper.get_virtual_devices(
248             self.connection, value)
249         for k, v in vfs.items():
250             m = PciAddress(k.strip())
251             m1 = PciAddress(value.strip())
252             if m.bus == m1.bus:
253                 vf_data.update({"vf_pci": str(v)})
254                 break
255
256         return vf_data