aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios/networking/vsperf_dpdk.py
blob: d5c8a3bfed8a984ed0f9cc07956e1949d281b979 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
# Copyright 2016 Intel Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
""" VsperfDPDK specific scenario definition """

from __future__ import absolute_import
import pkg_resources
import logging
import os
import subprocess
import csv
import time

import yardstick.ssh as ssh
import yardstick.common.utils as utils
from yardstick.benchmark.scenarios import base

LOG = logging.getLogger(__name__)


class VsperfDPDK(base.Scenario):
    """Execute vsperf with defined parameters

  Parameters:
    traffic_type - to specify the type of traffic executed by traffic generator
    the valid values are "rfc2544", "continuous", "back2back"
        type:    string
        default: "rfc2544"
    frame_size - a frame size for which test should be executed;
        Multiple frame sizes can be tested by modification of sequence runner
        section inside TC YAML definition.
        type:    string
        default: "64"
    bidirectional - speficies if traffic will be uni (False) or bi-directional
        (True)
        type:    string
        default: False
    iload - specifies frame rate
        type:    string
        default: 100
    multistream - the number of simulated streams
        type:    string
        default: 0 (disabled)
    stream_type - specifies network layer used for multistream simulation
        the valid values are "L4", "L3" and "L2"
        type:    string
        default: "L4"
    test_params - specifies a string with a list of vsperf configuration
        parameters, which will be passed to the '--test-params' CLI argument;
        Parameters should be stated in the form of 'param=value' and separated
        by a semicolon. Please check VSPERF documentation for details about
        available configuration parameters and their data types.
        In case that both 'test_params' and 'conf_file' are specified,
        then values from 'test_params' will override values defined
        in the configuration file.
        type:    string
        default: NA
    conf_file - path to the vsperf configuration file, which will be uploaded
        to the VM;
        In case that both 'test_params' and 'conf_file' are specified,
        then values from 'test_params' will override values defined
        in configuration file.
        type:   string
        default: NA
    setup_script - path to the setup script, which will be executed during
        setup and teardown phases
        type:   string
        default: NA
    trafficgen_port1 - specifies device name of 1st interface connected to
        the trafficgen
        type:   string
        default: NA
    trafficgen_port2 - specifies device name of 2nd interface connected to
        the trafficgen
        type:   string
        default: NA
    external_bridge - specifies name of external bridge configured in OVS
        type:   string
        default: "br-ex"

    """
    __scenario_type__ = "VsperfDPDK"

    TESTPMD_SCRIPT = 'testpmd_vsperf.bash'

    def __init__(self, scenario_cfg, context_cfg):
        self.scenario_cfg = scenario_cfg
        self.context_cfg = context_cfg
        self.moongen_host_ip = \
            scenario_cfg['options'].get('moongen_host_ip', "127.0.0.1")
        self.moongen_port1_mac = \
            scenario_cfg['options'].get('moongen_port1_mac', None)
        self.moongen_port2_mac = \
            scenario_cfg['options'].get('moongen_port2_mac', None)
        self.dpdk_setup_done = False
        self.setup_done = False
        self.client = None
        self.tg_port1 = \
            self.scenario_cfg['options'].get('trafficgen_port1', None)
        self.tg_port2 = \
            self.scenario_cfg['options'].get('trafficgen_port2', None)
        self.tgen_port1_mac = None
        self.tgen_port2_mac = None
        self.br_ex = self.scenario_cfg['options'].get('external_bridge',
                                                      'br-ex')
        self.vsperf_conf = self.scenario_cfg['options'].get('conf_file', None)
        if self.vsperf_conf:
            self.vsperf_conf = os.path.expanduser(self.vsperf_conf)

        self.moongen_helper = \
            self.scenario_cfg['options'].get('moongen_helper_file', None)
        if self.moongen_helper:
            self.moongen_helper = os.path.expanduser(self.moongen_helper)

        self.setup_script = self.scenario_cfg['options'].get('setup_script',
                                                             None)
        if self.setup_script:
            self.setup_script = os.path.expanduser(self.setup_script)

        self.test_params = self.scenario_cfg['options'].get('test-params',
                                                            None)

    def setup(self):
        """scenario setup"""
        vsperf = self.context_cfg['host']

        task_id = self.scenario_cfg['task_id']
        context_number = task_id.split('-')[0]
        self.tg_port1_nw = vsperf.get('name', 'demo') + \
            "-" + context_number + "-" + \
            self.scenario_cfg['options'].get('trafficgen_port1_nw', 'test2')
        self.tg_port2_nw = vsperf.get('name', 'demo') + \
            "-" + context_number + "-" + \
            self.scenario_cfg['options'].get('trafficgen_port2_nw', 'test3')

        # copy vsperf conf to VM
        self.client = ssh.SSH.from_node(vsperf, defaults={
            "user": "ubuntu", "password": "ubuntu"
        })
        # traffic generation could last long
        self.client.wait(timeout=1800)

        # copy script to host
        self.client._put_file_shell(self.vsperf_conf, '~/vsperf.conf')

        self.client._put_file_shell(
            self.moongen_helper,
            '~/vswitchperf/tools/pkt_gen/moongen/moongen.py')

        # execute external setup script
        if self.setup_script:
            cmd = "%s setup" % (self.setup_script)
            LOG.info("Execute setup script \"%s\"", cmd)
            subprocess.call(cmd, shell=True)

        self.setup_done = True

    def dpdk_setup(self):
        """dpdk setup"""

        # setup dpdk loopback in VM
        self.testpmd_script = pkg_resources.resource_filename(
            'yardstick.benchmark.scenarios.networking',
            VsperfDPDK.TESTPMD_SCRIPT)

        self.client._put_file_shell(self.testpmd_script,
                                    '~/testpmd_vsperf.sh')

        # disable Address Space Layout Randomization (ASLR)
        cmd = "echo 0 | sudo tee /proc/sys/kernel/randomize_va_space"
        self.client.send_command(cmd)

        if not self._is_dpdk_setup():
            self.tgen_port1_ip = \
                utils.get_port_ip(self.client, self.tg_port1)
            self.tgen_port1_mac = \
                utils.get_port_mac(self.client, self.tg_port1)
            self.client.run("tee ~/.testpmd.ipaddr.port1 > /dev/null",
                            stdin=self.tgen_port1_ip)
            self.client.run("tee ~/.testpmd.macaddr.port1 > /dev/null",
                            stdin=self.tgen_port1_mac)
            self.tgen_port2_ip = \
                utils.get_port_ip(self.client, self.tg_port2)
            self.tgen_port2_mac = \
                utils.get_port_mac(self.client, self.tg_port2)
            self.client.run("tee ~/.testpmd.ipaddr.port2 > /dev/null",
                            stdin=self.tgen_port2_ip)
            self.client.run("tee ~/.testpmd.macaddr.port2 > /dev/null",
                            stdin=self.tgen_port2_mac)
            cmd = "ip link set %s down" % (self.tg_port1)
            LOG.debug("Executing command: %s", cmd)
            self.client.send_command(cmd)
            cmd = "ip link set %s down" % (self.tg_port2)
            LOG.debug("Executing command: %s", cmd)
            self.client.send_command(cmd)
        else:
            cmd = "cat ~/.testpmd.macaddr.port1"
            _, stdout, _ = self.client.execute(cmd, raise_on_error=True)
            self.tgen_port1_mac = stdout

            cmd = "cat ~/.testpmd.macaddr.port2"
            _, stdout, _ = self.client.execute(cmd, raise_on_error=True)
            self.tgen_port2_mac = stdout

        cmd = "screen -d -m sudo -E bash ~/testpmd_vsperf.sh %s %s" % \
            (self.moongen_port1_mac, self.moongen_port2_mac)
        LOG.debug("Executing command: %s", cmd)
        self.client.run(cmd)

        time.sleep(1)

        self.dpdk_setup_done = True

    def _is_dpdk_setup(self):
        """Is dpdk already setup in the host?"""
        is_run = True
        cmd = "ip a | grep %s 2>/dev/null" % (self.tg_port1)
        LOG.debug("Executing command: %s", cmd)
        _, stdout, _ = self.client.execute(cmd)
        if stdout:
            is_run = False
        return is_run

    def run(self, result):
        """ execute the vsperf benchmark and return test results
            within result dictionary
        """

        if not self.setup_done:
            self.setup()

        # remove results from previous tests
        self.client.run("rm -rf /tmp/results*", raise_on_error=False)

        # get vsperf options
        options = self.scenario_cfg['options']
        test_params = []
        traffic_type = self.scenario_cfg['options'].\
            get("traffic_type", "rfc2544_throughput")
        multistream = self.scenario_cfg['options'].get("multistream", 1)

        if not self.dpdk_setup_done:
            self.dpdk_setup()

        if 'frame_size' in options:
            test_params.append("%s=(%s,)" % ('TRAFFICGEN_PKT_SIZES',
                                             options['frame_size']))

        cmd = "openstack network show %s | grep segmentation_id | " \
              "cut -d '|' -f 3" % (self.tg_port1_nw)
        LOG.debug("Executing command: %s", cmd)
        tg_port1_vlan = subprocess.check_output(cmd, shell=True)

        cmd = "openstack network show %s | grep segmentation_id | " \
              "cut -d '|' -f 3" % (self.tg_port2_nw)
        LOG.debug("Executing command: %s", cmd)
        tg_port2_vlan = subprocess.check_output(cmd, shell=True)

        additional_params = \
            'TRAFFIC={"traffic_type":"%s", "multistream":%d, ' \
            '"l2":{"srcmac":"{\'%s\',\'%s\'}", "dstmac":"{\'%s\',\'%s\'}"}, ' \
            '"vlan":{"enabled":"True", "id":"{%d,%d}"}}' \
            % (traffic_type, multistream,
               self.moongen_port1_mac, self.moongen_port2_mac,
               self.tgen_port1_mac, self.tgen_port2_mac,
               int(tg_port1_vlan), int(tg_port2_vlan))

        if 'test_params' in options:
            test_params.append(options['test_params'] + additional_params)

        # filter empty parameters and escape quotes and double quotes
        test_params = [tp.replace('"', '\\"').replace("'", "\\'")
                       for tp in test_params if tp]

        # Set password less access to MoonGen
        cmd = "sshpass -p yardstick ssh-copy-id -o StrictHostKeyChecking=no " \
              "root@%s -p 22" % (self.moongen_host_ip)
        LOG.debug("Executing command: %s", cmd)
        self.client.run(cmd)

        # execute vsperf
        cmd = "source ~/vsperfenv/bin/activate ; cd vswitchperf ; "
        cmd += "./vsperf --mode trafficgen "
        if self.vsperf_conf:
            cmd += "--conf-file ~/vsperf.conf "
        cmd += "--test-params=\"%s\"" % (';'.join(test_params))
        LOG.debug("Executing command: %s", cmd)
        self.client.run(cmd)

        # get test results
        cmd = "cat /tmp/results*/result.csv"
        LOG.debug("Executing command: %s", cmd)
        _, stdout, _ = self.client.execute(cmd, raise_on_error=True)

        # convert result.csv to JSON format
        reader = csv.DictReader(stdout.split('\r\n'))
        try:
            result.update(next(reader))
        except StopIteration:
            pass
        result['nrFlows'] = multistream

        # sla check; go through all defined SLAs and check if values measured
        # by VSPERF are higher then those defined by SLAs
        if 'sla' in self.scenario_cfg and \
           'metrics' in self.scenario_cfg['sla']:
            for metric in self.scenario_cfg['sla']['metrics'].split(','):
                self.verify_SLA(metric in result,
                                '%s was not collected by VSPERF' % metric)
                self.verify_SLA(metric in self.scenario_cfg['sla'],
                                '%s is not defined in SLA' % metric)
                vs_res = float(result[metric])
                sla_res = float(self.scenario_cfg['sla'][metric])
                self.verify_SLA(vs_res >= sla_res,
                                'VSPERF_%s(%f) < SLA_%s(%f)'
                                % (metric, vs_res, metric, sla_res))

    def teardown(self):
        """cleanup after the test execution"""

        # execute external setup script
        if self.setup_script:
            cmd = "%s teardown" % (self.setup_script)
            LOG.info("Execute setup script \"%s\"", cmd)
            subprocess.call(cmd, shell=True)

        self.setup_done = False