Add: AVF into trace group
[csit.git] / resources / libraries / python / VPPUtil.py
1 # Copyright (c) 2019 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """VPP util library."""
15
16 from robot.api import logger
17
18 from resources.libraries.python.Constants import Constants
19 from resources.libraries.python.DUTSetup import DUTSetup
20 from resources.libraries.python.L2Util import L2Util
21 from resources.libraries.python.PapiExecutor import PapiSocketExecutor
22 from resources.libraries.python.ssh import exec_cmd_no_error
23 from resources.libraries.python.topology import NodeType
24
25
26 class VPPUtil(object):
27     """General class for any VPP related methods/functions."""
28
29     @staticmethod
30     def show_vpp_settings(node, *additional_cmds):
31         """Print default VPP settings. In case others are needed, can be
32         accepted as next parameters (each setting one parameter), preferably
33         in form of a string.
34
35         :param node: VPP node.
36         :param additional_cmds: Additional commands that the vpp should print
37             settings for.
38         :type node: dict
39         :type additional_cmds: tuple
40         """
41         def_setting_tb_displayed = {
42             'IPv6 FIB': 'ip6 fib',
43             'IPv4 FIB': 'ip fib',
44             'Interface IP': 'int addr',
45             'Interfaces': 'int',
46             'ARP': 'ip arp',
47             'Errors': 'err'
48         }
49
50         if additional_cmds:
51             for cmd in additional_cmds:
52                 def_setting_tb_displayed['Custom Setting: {}'.format(cmd)] = cmd
53
54         for _, cmd in def_setting_tb_displayed.items():
55             command = 'vppctl sh {cmd}'.format(cmd=cmd)
56             exec_cmd_no_error(node, command, timeout=30, sudo=True)
57
58     @staticmethod
59     def restart_vpp_service(node):
60         """Restart VPP service on the specified topology node.
61
62         :param node: Topology node.
63         :type node: dict
64         """
65         DUTSetup.restart_service(node, Constants.VPP_UNIT)
66
67     @staticmethod
68     def restart_vpp_service_on_all_duts(nodes):
69         """Restart VPP service on all DUT nodes.
70
71         :param nodes: Topology nodes.
72         :type nodes: dict
73         """
74         for node in nodes.values():
75             if node['type'] == NodeType.DUT:
76                 VPPUtil.restart_vpp_service(node)
77
78     @staticmethod
79     def stop_vpp_service(node):
80         """Stop VPP service on the specified topology node.
81
82         :param node: Topology node.
83         :type node: dict
84         """
85         DUTSetup.stop_service(node, Constants.VPP_UNIT)
86
87     @staticmethod
88     def stop_vpp_service_on_all_duts(nodes):
89         """Stop VPP service on all DUT nodes.
90
91         :param nodes: Topology nodes.
92         :type nodes: dict
93         """
94         for node in nodes.values():
95             if node['type'] == NodeType.DUT:
96                 VPPUtil.stop_vpp_service(node)
97
98     @staticmethod
99     def verify_vpp_installed(node):
100         """Verify that VPP is installed on the specified topology node.
101
102         :param node: Topology node.
103         :type node: dict
104         """
105         cmd = 'command -v vpp'
106         exec_cmd_no_error(
107             node, cmd, message='VPP is not installed!')
108
109     @staticmethod
110     def verify_vpp_started(node):
111         """Verify that VPP is started on the specified topology node.
112
113         :param node: Topology node.
114         :type node: dict
115         """
116         cmd = ('vppctl show pci 2>&1 | '
117                'fgrep -v "Connection refused" | '
118                'fgrep -v "No such file or directory"')
119         exec_cmd_no_error(
120             node, cmd, sudo=True, message='VPP failed to start!', retries=120)
121
122     @staticmethod
123     def verify_vpp(node):
124         """Verify that VPP is installed and started on the specified topology
125         node.
126
127         :param node: Topology node.
128         :type node: dict
129         :raises RuntimeError: If VPP service fails to start.
130         """
131         VPPUtil.verify_vpp_installed(node)
132         try:
133             # Verify responsivness of vppctl.
134             VPPUtil.verify_vpp_started(node)
135             # Verify responsivness of PAPI.
136             VPPUtil.show_log(node)
137             VPPUtil.vpp_show_version(node)
138         finally:
139             DUTSetup.get_service_logs(node, Constants.VPP_UNIT)
140
141     @staticmethod
142     def verify_vpp_on_all_duts(nodes):
143         """Verify that VPP is installed and started on all DUT nodes.
144
145         :param nodes: Nodes in the topology.
146         :type nodes: dict
147         """
148         for node in nodes.values():
149             if node['type'] == NodeType.DUT:
150                 VPPUtil.verify_vpp(node)
151
152     @staticmethod
153     def vpp_show_version(node, verbose=True):
154         """Run "show_version" PAPI command.
155
156         :param node: Node to run command on.
157         :param verbose: Show version, compile date and compile location if True
158             otherwise show only version.
159         :type node: dict
160         :type verbose: bool
161         :returns: VPP version.
162         :rtype: str
163         """
164         with PapiSocketExecutor(node) as papi_exec:
165             reply = papi_exec.add('show_version').get_reply()
166         return_version = reply['version'].rstrip('\0x00')
167         version = 'VPP version:      {ver}\n'.format(ver=return_version)
168         if verbose:
169             version += ('Compile date:     {date}\n'
170                         'Compile location: {cl}\n'.
171                         format(date=reply['build_date'].rstrip('\0x00'),
172                                cl=reply['build_directory'].rstrip('\0x00')))
173         logger.info(version)
174         return return_version
175
176     @staticmethod
177     def show_vpp_version_on_all_duts(nodes):
178         """Show VPP version verbose on all DUTs.
179
180         :param nodes: Nodes in the topology.
181         :type nodes: dict
182         """
183         for node in nodes.values():
184             if node['type'] == NodeType.DUT:
185                 VPPUtil.vpp_show_version(node)
186
187     @staticmethod
188     def vpp_show_interfaces(node):
189         """Run "show interface" CLI command.
190
191         :param node: Node to run command on.
192         :type node: dict
193         """
194
195         cmd = 'sw_interface_dump'
196         args = dict(name_filter_valid=0, name_filter='')
197         err_msg = 'Failed to get interface dump on host {host}'.format(
198             host=node['host'])
199         with PapiSocketExecutor(node) as papi_exec:
200             details = papi_exec.add(cmd, **args).get_details(err_msg)
201
202         for if_dump in details:
203             if_dump['interface_name'] = if_dump['interface_name'].rstrip('\x00')
204             if_dump['tag'] = if_dump['tag'].rstrip('\x00')
205             if_dump['l2_address'] = L2Util.bin_to_mac(if_dump['l2_address'])
206         # TODO: return only base data
207         logger.trace('Interface data of host {host}:\n{details}'.format(
208             host=node['host'], details=details))
209
210     @staticmethod
211     def vpp_enable_traces_on_dut(node, fail_on_error=False):
212         """Enable vpp packet traces on the DUT node.
213
214         :param node: DUT node to set up.
215         :param fail_on_error: If True, keyword fails if an error occurs,
216             otherwise passes.
217         :type node: dict
218         :type fail_on_error: bool
219         """
220         cmds = [
221             "trace add dpdk-input 50",
222             "trace add vhost-user-input 50",
223             "trace add memif-input 50",
224             "trace add avf-input 50"
225         ]
226
227         for cmd in cmds:
228             try:
229                 PapiSocketExecutor.run_cli_cmd(node, cmd)
230             except AssertionError:
231                 if fail_on_error:
232                     raise
233
234     @staticmethod
235     def vpp_enable_traces_on_all_duts(nodes, fail_on_error=False):
236         """Enable vpp packet traces on all DUTs in the given topology.
237
238         :param nodes: Nodes in the topology.
239         :param fail_on_error: If True, keyword fails if an error occurs,
240             otherwise passes.
241         :type nodes: dict
242         :type fail_on_error: bool
243         """
244         for node in nodes.values():
245             if node['type'] == NodeType.DUT:
246                 VPPUtil.vpp_enable_traces_on_dut(node, fail_on_error)
247
248     @staticmethod
249     def vpp_enable_elog_traces_on_dut(node):
250         """Enable API/CLI/Barrier traces on the DUT node.
251
252         :param node: DUT node to set up.
253         :type node: dict
254         """
255         PapiSocketExecutor.run_cli_cmd(node, "elog trace api cli barrier")
256
257     @staticmethod
258     def vpp_enable_elog_traces_on_all_duts(nodes):
259         """Enable API/CLI/Barrier traces on all DUTs in the given topology.
260
261         :param nodes: Nodes in the topology.
262         :type nodes: dict
263         """
264         for node in nodes.values():
265             if node['type'] == NodeType.DUT:
266                 VPPUtil.vpp_enable_elog_traces_on_dut(node)
267
268     @staticmethod
269     def show_event_logger_on_dut(node):
270         """Show event logger on the DUT node.
271
272         :param node: DUT node to show traces on.
273         :type node: dict
274         """
275         PapiSocketExecutor.run_cli_cmd(node, "show event-logger")
276
277     @staticmethod
278     def show_event_logger_on_all_duts(nodes):
279         """Show event logger on all DUTs in the given topology.
280
281         :param nodes: Nodes in the topology.
282         :type nodes: dict
283         """
284         for node in nodes.values():
285             if node['type'] == NodeType.DUT:
286                 VPPUtil.show_event_logger_on_dut(node)
287
288     @staticmethod
289     def show_log(node):
290         """Show log on the specified topology node.
291
292         :param node: Topology node.
293         :type node: dict
294         :returns: VPP log data.
295         :rtype: list
296         """
297         return PapiSocketExecutor.run_cli_cmd(node, "show log")
298
299     @staticmethod
300     def vpp_show_threads(node):
301         """Show VPP threads on node.
302
303         :param node: Node to run command on.
304         :type node: dict
305         :returns: VPP thread data.
306         :rtype: list
307         """
308         with PapiSocketExecutor(node) as papi_exec:
309             reply = papi_exec.add('show_threads').get_reply()
310
311         threads_data = list()
312         for thread in reply["thread_data"]:
313             thread_data = list()
314             for item in thread:
315                 if isinstance(item, unicode):
316                     item = item.rstrip('\x00')
317                 thread_data.append(item)
318             threads_data.append(thread_data)
319
320         logger.info("show threads:\n{threads}".format(threads=threads_data))
321
322         return threads_data