CSIT-748 vnf-agent integration
[csit.git] / resources / libraries / python / L2Util.py
1 # Copyright (c) 2016 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 """L2 Utilities Library."""
15
16 from textwrap import wrap
17
18 from robot.api.deco import keyword
19
20 from resources.libraries.python.topology import Topology
21 from resources.libraries.python.VatExecutor import VatExecutor, VatTerminal
22 from resources.libraries.python.ssh import exec_cmd_no_error
23
24
25 class L2Util(object):
26     """Utilities for l2 configuration."""
27
28     @staticmethod
29     def mac_to_int(mac_str):
30         """Convert MAC address from string format (e.g. 01:02:03:04:05:06) to
31         integer representation (1108152157446).
32
33         :param mac_str: MAC address in string representation.
34         :type mac_str: str
35         :returns: Integer representation of MAC address.
36         :rtype: int
37         """
38         return int(mac_str.replace(':', ''), 16)
39
40     @staticmethod
41     def int_to_mac(mac_int):
42         """Convert MAC address from integer representation (e.g. 1108152157446)
43         to string format (01:02:03:04:05:06).
44
45         :param mac_int: MAC address in integer representation.
46         :type mac_int: str
47         :returns: String representation of MAC address.
48         :rtype: int
49         """
50         return ':'.join(wrap("{:012x}".format(mac_int), width=2))
51
52     @staticmethod
53     def vpp_add_l2fib_entry(node, mac, interface, bd_id):
54         """ Create a static L2FIB entry on a vpp node.
55
56         :param node: Node to add L2FIB entry on.
57         :param mac: Destination mac address.
58         :param interface: Interface name or sw_if_index.
59         :param bd_id: Bridge domain id.
60         :type node: dict
61         :type mac: str
62         :type interface: str or int
63         :type bd_id: int
64         """
65         if isinstance(interface, basestring):
66             sw_if_index = Topology.get_interface_sw_index(node, interface)
67         else:
68             sw_if_index = interface
69         VatExecutor.cmd_from_template(node, "add_l2_fib_entry.vat",
70                                       mac=mac, bd=bd_id,
71                                       interface=sw_if_index)
72
73     @staticmethod
74     def create_l2_bd(node, bd_id, flood=1, uu_flood=1, forward=1, learn=1,
75                      arp_term=0):
76         """Create a l2 bridge domain on the chosen VPP node
77
78         Execute "bridge_domain_add_del bd_id {bd_id} flood {flood} uu-flood 1
79         forward {forward} learn {learn} arp-term {arp_term}" VAT command on
80         the node.
81
82         :param node: Node where we wish to crate the l2 bridge domain.
83         :param bd_id: Bridge domain index number.
84         :param flood: Enable flooding.
85         :param uu_flood: Enable uu_flood.
86         :param forward: Enable forwarding.
87         :param learn: Enable mac address learning to fib.
88         :param arp_term: Enable arp_termination.
89         :type node: dict
90         :type bd_id: int
91         :type flood: bool
92         :type uu_flood: bool
93         :type forward: bool
94         :type learn: bool
95         :type arp_term:bool
96         """
97         VatExecutor.cmd_from_template(node, "l2_bd_create.vat",
98                                       bd_id=bd_id, flood=flood,
99                                       uu_flood=uu_flood, forward=forward,
100                                       learn=learn, arp_term=arp_term)
101
102     @staticmethod
103     def add_interface_to_l2_bd(node, interface, bd_id, shg=0):
104         """Add a interface to the l2 bridge domain.
105
106         Get SW IF ID and add it to the bridge domain.
107
108         :param node: Node where we want to execute the command that does this.
109         :param interface: Interface name.
110         :param bd_id: Bridge domain index number to add Interface name to.
111         :param shg: Split horizon group.
112         :type node: dict
113         :type interface: str
114         :type bd_id: int
115         :type shg: int
116         """
117         sw_if_index = Topology.get_interface_sw_index(node, interface)
118         L2Util.add_sw_if_index_to_l2_bd(node, sw_if_index, bd_id, shg)
119
120     @staticmethod
121     def add_sw_if_index_to_l2_bd(node, sw_if_index, bd_id, shg=0):
122         """Add interface with sw_if_index to l2 bridge domain.
123
124         Execute the "sw_interface_set_l2_bridge sw_if_index {sw_if_index}
125         bd_id {bd_id} shg {shg} enable" VAT command on the given node.
126
127         :param node: Node where we want to execute the command that does this.
128         :param sw_if_index: Interface index.
129         :param bd_id: Bridge domain index number to add SW IF ID to.
130         :param shg: Split horizon group.
131         :type node: dict
132         :type sw_if_index: int
133         :type bd_id: int
134         :type shg: int
135         :return:
136         """
137         VatExecutor.cmd_from_template(node, "l2_bd_add_sw_if_index.vat",
138                                       bd_id=bd_id, sw_if_index=sw_if_index,
139                                       shg=shg)
140
141     @staticmethod
142     @keyword('Create dict used in bridge domain template file for node '
143              '"${node}" with links "${link_names}" and bd_id "${bd_id}"')
144     def create_bridge_domain_vat_dict(node, link_names, bd_id):
145         """Create dictionary that can be used in l2 bridge domain template.
146
147         The resulting dictionary looks like this:
148         'interface1': interface name of first interface
149         'interface2': interface name of second interface
150         'bd_id': bridge domain index
151
152         :param node: Node data dictionary.
153         :param link_names: List of names of links the bridge domain should be
154         connecting.
155         :param bd_id: Bridge domain index number.
156         :type node: dict
157         :type link_names: list
158         :return: Dictionary used to generate l2 bridge domain VAT configuration
159         from template file.
160         :rtype: dict
161         """
162         bd_dict = Topology().get_interfaces_by_link_names(node, link_names)
163         bd_dict['bd_id'] = bd_id
164         return bd_dict
165
166     @staticmethod
167     def vpp_add_l2_bridge_domain(node, bd_id, port_1, port_2, learn=True):
168         """Add L2 bridge domain with 2 interfaces to the VPP node.
169
170         :param node: Node to add L2BD on.
171         :param bd_id: Bridge domain ID.
172         :param port_1: First interface name added to L2BD.
173         :param port_2: Second interface name added to L2BD.
174         :param learn: Enable/disable MAC learn.
175         :type node: dict
176         :type bd_id: int
177         :type port_1: str
178         :type port_2: str
179         :type learn: bool
180         """
181         sw_if_index1 = Topology.get_interface_sw_index(node, port_1)
182         sw_if_index2 = Topology.get_interface_sw_index(node, port_2)
183         VatExecutor.cmd_from_template(node,
184                                       'l2_bridge_domain.vat',
185                                       sw_if_id1=sw_if_index1,
186                                       sw_if_id2=sw_if_index2,
187                                       bd_id=bd_id,
188                                       learn=int(learn))
189
190     @staticmethod
191     def vpp_setup_bidirectional_cross_connect(node, interface1, interface2):
192         """Create bidirectional cross-connect between 2 interfaces on vpp node.
193
194         :param node: Node to add bidirectional cross-connect.
195         :param interface1: First interface name or sw_if_index.
196         :param interface2: Second interface name or sw_if_index.
197         :type node: dict
198         :type interface1: str or int
199         :type interface2: str or int
200         """
201
202         if isinstance(interface1, basestring):
203             sw_iface1 = Topology().get_interface_sw_index(node, interface1)
204         else:
205             sw_iface1 = interface1
206
207         if isinstance(interface2, basestring):
208             sw_iface2 = Topology().get_interface_sw_index(node, interface2)
209         else:
210             sw_iface2 = interface2
211
212         with VatTerminal(node) as vat:
213             vat.vat_terminal_exec_cmd_from_template('l2_xconnect.vat',
214                                                     interface1=sw_iface1,
215                                                     interface2=sw_iface2)
216             vat.vat_terminal_exec_cmd_from_template('l2_xconnect.vat',
217                                                     interface1=sw_iface2,
218                                                     interface2=sw_iface1)
219
220     @staticmethod
221     def linux_add_bridge(node, br_name, if_1, if_2, set_up=True):
222         """Bridge two interfaces on linux node.
223
224         :param node: Node to add bridge on.
225         :param br_name: Bridge name.
226         :param if_1: First interface to be added to the bridge.
227         :param if_2: Second interface to be added to the bridge.
228         :param set_up: Change bridge interface state to up after create bridge.
229         Optional. Default: True.
230         :type node: dict
231         :type br_name: str
232         :type if_1: str
233         :type if_2: str
234         :type set_up: bool
235         """
236         cmd = 'brctl addbr {0}'.format(br_name)
237         exec_cmd_no_error(node, cmd, sudo=True)
238         cmd = 'brctl addif {0} {1}'.format(br_name, if_1)
239         exec_cmd_no_error(node, cmd, sudo=True)
240         cmd = 'brctl addif {0} {1}'.format(br_name, if_2)
241         exec_cmd_no_error(node, cmd, sudo=True)
242         if set_up:
243             cmd = 'ip link set dev {0} up'.format(br_name)
244             exec_cmd_no_error(node, cmd, sudo=True)
245
246     @staticmethod
247     def linux_del_bridge(node, br_name, set_down=True):
248         """Delete bridge from linux node.
249
250         :param node: Node to delete bridge from.
251         :param br_name: Bridge name.
252         :param set_down: Change bridge interface state to down before delbr
253         command. Optional. Default: True.
254         :type node: str
255         :type br_name: str
256         :type set_down: bool
257         ..note:: The network interface corresponding to the bridge must be
258         down before it can be deleted!
259         """
260         if set_down:
261             cmd = 'ip link set dev {0} down'.format(br_name)
262             exec_cmd_no_error(node, cmd, sudo=True)
263         cmd = 'brctl delbr {0}'.format(br_name)
264         exec_cmd_no_error(node, cmd, sudo=True)
265
266     @staticmethod
267     def vpp_get_bridge_domain_data(node, bd_id=None):
268         """Get all bridge domain data from a VPP node. If a domain ID number is
269         provided, return only data for the matching bridge domain.
270
271         :param node: VPP node to get bridge domain data from.
272         :param bd_id: Numeric ID of a specific bridge domain.
273         :type node: dict
274         :type bd_id: int
275         :return: List of dictionaries containing data for each bridge domain, or
276          a single dictionary for the specified bridge domain.
277         :rtype: list or dict
278         """
279         with VatTerminal(node) as vat:
280             response = vat.vat_terminal_exec_cmd_from_template("l2_bd_dump.vat")
281
282         data = response[0]
283
284         if bd_id is not None:
285             for bridge_domain in data:
286                 if bridge_domain["bd_id"] == bd_id:
287
288                     return bridge_domain
289
290         return data
291
292     @staticmethod
293     def l2_vlan_tag_rewrite(node, interface, tag_rewrite_method,
294                             push_dot1q=True, tag1_id=None, tag2_id=None):
295         """Rewrite tags in ethernet frame.
296
297         :param node: Node to rewrite tags.
298         :param interface: Interface on which rewrite tags.
299         :param tag_rewrite_method: Method of tag rewrite.
300         :param push_dot1q: Optional parameter to disable to push dot1q tag
301          instead of dot1ad.
302         :param tag1_id: Optional tag1 ID for VLAN.
303         :param tag2_id: Optional tag2 ID for VLAN.
304         :type node: dict
305         :type interface: str or int
306         :type tag_rewrite_method: str
307         :type push_dot1q: bool
308         :type tag1_id: int
309         :type tag2_id: int
310         """
311         push_dot1q = 'push_dot1q 0' if not push_dot1q else ''
312
313         tag1_id = 'tag1 {0}'.format(tag1_id) if tag1_id else ''
314         tag2_id = 'tag2 {0}'.format(tag2_id) if tag2_id else ''
315
316         if isinstance(interface, basestring):
317             iface_key = Topology.get_interface_by_name(node, interface)
318             sw_if_index = Topology.get_interface_sw_index(node, iface_key)
319         else:
320             sw_if_index = interface
321
322         with VatTerminal(node) as vat:
323             vat.vat_terminal_exec_cmd_from_template("l2_vlan_tag_rewrite.vat",
324                                                     sw_if_index=sw_if_index,
325                                                     tag_rewrite_method=
326                                                     tag_rewrite_method,
327                                                     push_dot1q=push_dot1q,
328                                                     tag1_optional=tag1_id,
329                                                     tag2_optional=tag2_id)
330
331     @staticmethod
332     def delete_bridge_domain_vat(node, bd_id):
333         """Delete the specified bridge domain from the node.
334
335         :param node: VPP node to delete a bridge domain from.
336         :param bd_id: Bridge domain ID.
337         :type node: dict
338         :type bd_id: int
339         """
340
341         with VatTerminal(node) as vat:
342             vat.vat_terminal_exec_cmd_from_template(
343                 "l2_bridge_domain_delete.vat", bd_id=bd_id)
344
345     @staticmethod
346     def delete_l2_fib_entry(node, bd_id, mac):
347         """Delete the specified L2 FIB entry.
348
349         :param node: VPP node.
350         :param bd_id: Bridge domain ID.
351         :param mac: MAC address used as the key in L2 FIB entry.
352         :type node: dict
353         :type bd_id: int
354         :type mac: str
355         """
356
357         with VatTerminal(node) as vat:
358             vat.vat_terminal_exec_cmd_from_template("l2_fib_entry_delete.vat",
359                                                     mac=mac,
360                                                     bd_id=bd_id)
361
362     @staticmethod
363     def get_l2_fib_table_vat(node, bd_index):
364         """Retrieves the L2 FIB table using VAT.
365
366         :param node: VPP node.
367         :param bd_index: Index of the bridge domain.
368         :type node: dict
369         :type bd_index: int
370         :return: L2 FIB table.
371         :rtype: list
372         """
373
374         bd_data = L2Util.vpp_get_bridge_domain_data(node)
375         bd_id = bd_data[bd_index-1]["bd_id"]
376
377         try:
378             with VatTerminal(node) as vat:
379                 table = vat.vat_terminal_exec_cmd_from_template(
380                     "l2_fib_table_dump.vat", bd_id=bd_id)
381
382             return table[0]
383         except ValueError:
384             return []
385
386     @staticmethod
387     def get_l2_fib_entry_vat(node, bd_index, mac):
388         """Retrieves the L2 FIB entry specified by MAC address using VAT.
389
390         :param node: VPP node.
391         :param bd_index: Index of the bridge domain.
392         :param mac: MAC address used as the key in L2 FIB data structure.
393         :type node: dict
394         :type bd_index: int
395         :type mac: str
396         :return: L2 FIB entry
397         :rtype: dict
398         """
399
400         table = L2Util.get_l2_fib_table_vat(node, bd_index)
401         for entry in table:
402             if entry["mac"] == mac:
403                 return entry
404         return {}