From: Steven Van Rossem Date: Mon, 20 Nov 2017 13:14:13 +0000 (+0100) Subject: fix bidirectional chaining bug X-Git-Tag: v3.1~1^2~1 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=ed9baf5dd3d3ad65712c21a5aa1b81c1bb36a8ae;p=osm%2Fvim-emu.git fix bidirectional chaining bug --- diff --git a/src/emuvim/dcemulator/net.py b/src/emuvim/dcemulator/net.py index 2cc005e..92f32f0 100755 --- a/src/emuvim/dcemulator/net.py +++ b/src/emuvim/dcemulator/net.py @@ -34,7 +34,7 @@ import re import requests import os import json -import copy +import distutils from mininet.net import Containernet from mininet.node import Controller, DefaultController, OVSSwitch, OVSKernelSwitch, Docker, RemoteController @@ -557,6 +557,7 @@ class DCNetwork(Containernet): :param tag: vlan tag to be used for this chain (pre-defined or new one if none is specified) :param skip_vlan_tag: boolean to indicate if a vlan tag should be appointed to this flow or not :param path: custom path between the two VNFs (list of switches) + :param bidirectional: setup the chain in two directions or only one-way (src <-> dst) :return: output log string """ @@ -590,7 +591,10 @@ class DCNetwork(Containernet): cmd = kwargs.get('cmd', 'add-flow') if cmd == 'add-flow' or cmd == 'del-flows': ret = self._chainAddFlow(vnf_src_name, vnf_dst_name, vnf_src_interface, vnf_dst_interface, **kwargs) - if kwargs.get('bidirectional'): + # this can be a boolean or a string value, as returned by the rest api + bidirectional = kwargs.get('bidirectional') + true_list = ['true', 'True', True, 1] + if bidirectional in true_list: if kwargs.get('path') is not None: kwargs['path'] = list(reversed(kwargs.get('path'))) ret = ret +'\n' + self._chainAddFlow(vnf_dst_name, vnf_src_name, vnf_dst_interface, vnf_src_interface, **kwargs) @@ -740,6 +744,7 @@ class DCNetwork(Containernet): return "success: {2} between {0} and {1} with options: {3}".format(vnf_src_name, vnf_dst_name, cmd, flow_options_str) def _set_flow_entry_ryu_rest(self, node, switch_inport_nr, switch_outport_nr, **kwargs): + match = 'in_port=%s' % switch_inport_nr cookie = kwargs.get('cookie') @@ -798,7 +803,7 @@ class DCNetwork(Containernet): action['value'] = vlan | 0x1000 flow['actions'].append(action) - if index == len(path) - 1: # last node + elif index == len(path) - 1: # last node # set vlan tag in ovs instance (to isolate from E-LANs) if not skip_vlan_tag: out_port_name = kwargs.get('switch_outport_name') @@ -833,6 +838,7 @@ class DCNetwork(Containernet): action['port'] = switch_outport_nr flow['actions'].append(action) + flow['match'] = self._parse_match(match) self.ryu_REST(prefix, data=flow)