Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | import requests |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 17 | import urllib |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 18 | from requests.auth import HTTPBasicAuth |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 19 | from xossynchronizer.steps.syncstep import SyncStep |
| 20 | from xossynchronizer.modelaccessor import SwitchPort, PortInterface, FabricIpAddress, model_accessor |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 21 | |
| 22 | from xosconfig import Config |
| 23 | from multistructlog import create_logger |
| 24 | |
Matteo Scandolo | 04e5e12 | 2018-05-04 16:21:53 -0700 | [diff] [blame] | 25 | from helpers import Helpers |
| 26 | |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 27 | log = create_logger(Config().get('logging')) |
| 28 | |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 29 | |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 30 | class SyncFabricPort(SyncStep): |
| 31 | provides = [SwitchPort] |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 32 | observes = [SwitchPort, PortInterface, FabricIpAddress] |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 33 | |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 34 | def sync_record(self, model): |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 35 | |
| 36 | if model.leaf_model_name == "PortInterface": |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 37 | log.info("Received update for PortInterface", port=model.port.portId, interface=model) |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 38 | return self.sync_record(model.port) |
| 39 | |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 40 | if model.leaf_model_name == "FabricIpAddress": |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 41 | log.info("Received update for FabricIpAddress", |
| 42 | port=model.interface.port.portId, |
| 43 | interface=model.interface.name, |
| 44 | ip=model.ip) |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 45 | return self.sync_record(model.interface.port) |
| 46 | |
Matteo Scandolo | 6739b51 | 2018-05-30 18:55:29 -0700 | [diff] [blame] | 47 | log.info("Adding port %s/%s to onos-fabric" % (model.switch.ofId, model.portId)) |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 48 | interfaces = [] |
| 49 | for intf in model.interfaces.all(): |
| 50 | i = { |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 51 | "name": intf.name, |
| 52 | "ips": [i.ip for i in intf.ips.all()] |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 53 | } |
| 54 | if intf.vlanUntagged: |
| 55 | i["vlan-untagged"] = intf.vlanUntagged |
| 56 | interfaces.append(i) |
| 57 | |
| 58 | # Send port config to onos-fabric netcfg |
| 59 | data = { |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 60 | "ports": { |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 61 | "%s/%s" % (model.switch.ofId, model.portId): { |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 62 | "interfaces": interfaces, |
| 63 | "hostLearning": { |
| 64 | "enabled": model.host_learning |
| 65 | } |
| 66 | } |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 67 | } |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 68 | } |
| 69 | |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 70 | log.debug("Port %s/%s data" % (model.switch.ofId, model.portId), data=data) |
| 71 | |
Scott Baker | 382366d | 2019-02-04 10:58:43 -0800 | [diff] [blame] | 72 | onos = Helpers.get_onos_fabric_service(self.model_accessor) |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 73 | |
| 74 | url = 'http://%s:%s/onos/v1/network/configuration/' % (onos.rest_hostname, onos.rest_port) |
Matteo Scandolo | 6739b51 | 2018-05-30 18:55:29 -0700 | [diff] [blame] | 75 | |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 76 | r = requests.post(url, json=data, auth=HTTPBasicAuth(onos.rest_username, onos.rest_password)) |
| 77 | |
| 78 | if r.status_code != 200: |
| 79 | log.error(r.text) |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 80 | raise Exception("Failed to add port %s/%s into ONOS" % (model.switch.ofId, model.portId)) |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 81 | else: |
| 82 | try: |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 83 | log.info("Port %s/%s response" % (model.switch.ofId, model.portId), json=r.json()) |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 84 | except Exception: |
Matteo Scandolo | dfe75ff | 2018-06-15 10:52:09 -0700 | [diff] [blame] | 85 | log.info("Port %s/%s response" % (model.switch.ofId, model.portId), text=r.text) |
Luca Prete | b601c38 | 2018-04-30 16:10:43 -0700 | [diff] [blame] | 86 | |
Scott Baker | 91bf91b | 2019-03-15 16:13:51 -0700 | [diff] [blame^] | 87 | # Now set the port's administrative state. |
| 88 | # TODO(smbaker): See if netcfg allows us to specify the portstate instead of using a separate REST call |
| 89 | |
| 90 | url = 'http://%s:%s/onos/v1/devices/%s/portstate/%s' % (onos.rest_hostname, |
| 91 | onos.rest_port, |
| 92 | model.switch.ofId, |
| 93 | model.portId) |
| 94 | data = {"enabled": True if model.admin_state == "enabled" else False} |
| 95 | log.debug("Sending portstate %s to %s/%s" % (data, model.switch.ofId, model.portId)) |
| 96 | r = requests.post(url, json=data, auth=HTTPBasicAuth(onos.rest_username, onos.rest_password)) |
| 97 | |
| 98 | if r.status_code != 200: |
| 99 | log.error(r.text) |
| 100 | raise Exception("Failed to set portstate %s/%s into ONOS" % (model.switch.ofId, model.portId)) |
| 101 | else: |
| 102 | try: |
| 103 | log.info("Portstate %s/%s response" % (model.switch.ofId, model.portId), json=r.json()) |
| 104 | except Exception: |
| 105 | log.info("Portstate %s/%s response" % (model.switch.ofId, model.portId), text=r.text) |
| 106 | |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 107 | def delete_netcfg_item(self, partial_url): |
Scott Baker | 382366d | 2019-02-04 10:58:43 -0800 | [diff] [blame] | 108 | onos = Helpers.get_onos_fabric_service(self.model_accessor) |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 109 | url = 'http://%s:%s/onos/v1/network/configuration/ports/%s' % (onos.rest_hostname, onos.rest_port, partial_url) |
Matteo Scandolo | 6739b51 | 2018-05-30 18:55:29 -0700 | [diff] [blame] | 110 | |
| 111 | r = requests.delete(url, auth=HTTPBasicAuth(onos.rest_username, onos.rest_password)) |
| 112 | |
| 113 | if r.status_code != 204: |
| 114 | log.error(r.text) |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 115 | raise Exception("Failed to %s port %s from ONOS" % url) |
| 116 | |
| 117 | def delete_record(self, model): |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 118 | if model.leaf_model_name == "PortInterface": |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 119 | log.info("Received update for PortInterface", port=model.port.portId, interface=model.name) |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 120 | log.info("Removing port interface %s from port %s/%s in onos-fabric" % (model.name, model.port.switch.ofId, model.port.portId)) |
| 121 | |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 122 | # resync the existing interfaces |
| 123 | return self.sync_record(model.port) |
| 124 | |
Luca Prete | 1537787 | 2018-09-11 17:32:55 -0700 | [diff] [blame] | 125 | if model.leaf_model_name == "FabricIpAddress": |
| 126 | # TODO add unit tests |
| 127 | log.info("Received update for FabricIpAddress", port=model.interface.port.portId, interface=model.interface.name, ip=model.ip) |
| 128 | log.info("Removing IP %s from interface %s, on port %s/%s in onos-fabric" % (model.ip, model.interface.name, model.interface.port.switch.ofId, model.interface.port.portId)) |
| 129 | |
| 130 | # resync the existing interfaces |
| 131 | return self.sync_record(model.interface.port) |
| 132 | |
Matteo Scandolo | db7adc3 | 2018-06-15 16:05:19 -0700 | [diff] [blame] | 133 | log.info("Removing port %s/%s from onos-fabric" % (model.switch.ofId, model.portId)) |
| 134 | |
| 135 | key = "%s/%s" % (model.switch.ofId, model.portId) |
| 136 | key = urllib.quote(key, safe='') |
| 137 | |
| 138 | # deleting the port |
| 139 | self.delete_netcfg_item(key) |