1 # Copyright (c) 2016-2017 Intel Corporation
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
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
15 from __future__ import absolute_import
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
26 LOG = logging.getLogger(__name__)
29 class SriovContext(Context):
30 """ This class handles SRIOV standalone nodes - VM running on Non-Managed NFVi
34 __context_type__ = "StandaloneSriov"
40 self.dpdk_devbind = os.path.join(get_nsb_option('bin_path'),
49 self.helper = model.StandaloneContextHelper()
50 self.vnf_node = model.Server()
52 super(SriovContext, self).__init__()
54 def init(self, attrs):
55 """initializes itself from the supplied arguments"""
56 super(SriovContext, self).init(attrs)
58 self.file_path = attrs.get("file", "pod.yaml")
60 self.nodes, self.nfvi_host, self.host_mgmt = \
61 self.helper.parse_pod_file(self.file_path, 'Sriov')
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", {})
70 LOG.debug("Nodes: %r", self.nodes)
71 LOG.debug("NFVi Node: %r", self.nfvi_host)
72 LOG.debug("Networks: %r", self.networks)
75 """don't need to deploy"""
77 # Todo: NFVi deploy (sriov, vswitch, ovs etc) based on the config.
78 if not self.vm_deploy:
81 self.connection = ssh.SSH.from_node(self.host_mgmt)
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()
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)
94 """don't need to undeploy"""
96 if not self.vm_deploy:
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)
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')))
109 def _get_server(self, attr_name):
110 """lookup server info by name from context
113 attr_name -- A name for a server listed in nodes config file
115 node_name, name = self.split_name(attr_name)
116 if name is None or self.name != name:
119 matching_nodes = (n for n in self.nodes if n["name"] == node_name)
121 # A clone is created in order to avoid affecting the
123 node = dict(next(matching_nodes))
124 except StopIteration:
128 duplicate = next(matching_nodes)
129 except StopIteration:
132 raise ValueError("Duplicate nodes!!! Nodes: %s %s"
135 node["name"] = attr_name
138 def _get_network(self, attr_name):
139 if not isinstance(attr_name, collections.Mapping):
140 network = self.networks.get(attr_name)
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)
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"),
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)
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')))
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))
180 vf_pci = self._get_vf_data(ports.get('phy_port'), mac, interface)
186 LOG.info('Ports %s', self.networks)
188 def _enable_interfaces(self, index, idx, vfs, cfg):
189 vf_spoofchk = "ip link set {0} vf 0 spoofchk off"
191 vf = self.networks[vfs[0]]
192 vpci = PciAddress(vf['vpci'].strip())
193 # Generate the vpci for the interfaces
194 slot = index + idx + 10
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']))
202 def setup_sriov_context(self):
205 # 1 : modprobe host_driver with num_vfs
206 self.configure_nics_for_sriov()
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)
213 # 1. Check and delete VM if already exists
214 model.Libvirt.check_if_vm_exists_and_delete(vm_name,
216 xml_str, mac = model.Libvirt.build_vm_xml(
217 self.connection, self.vm_flavor, vm_name, index)
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)
225 # copy xml to target...
226 model.Libvirt.write_file(cfg, xml_str)
227 self.connection.put(cfg, cfg)
229 # NOTE: launch through libvirt
230 LOG.info("virsh create ...")
231 model.Libvirt.virsh_create_vm(self.connection, cfg)
233 self.vm_names.append(vm_name)
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'),
242 def _get_vf_data(self, value, vfmac, pfif):
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())
253 vf_data.update({"vf_pci": str(v)})