Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | from synchronizers.new_base.pullstep import PullStep |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 16 | from synchronizers.new_base.modelaccessor import model_accessor, OLTDevice, VOLTService, PONPort, NNIPort |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 17 | |
| 18 | from xosconfig import Config |
| 19 | from multistructlog import create_logger |
| 20 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 21 | import requests |
| 22 | from requests import ConnectionError |
| 23 | from requests.models import InvalidURL |
| 24 | |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 25 | import os, sys |
| 26 | sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
| 27 | |
| 28 | from helpers import Helpers |
| 29 | |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 30 | log = create_logger(Config().get('logging')) |
| 31 | |
| 32 | class OLTDevicePullStep(PullStep): |
| 33 | def __init__(self): |
| 34 | super(OLTDevicePullStep, self).__init__(observed_model=OLTDevice) |
| 35 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 36 | @staticmethod |
| 37 | def get_ids_from_logical_device(o): |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 38 | voltha_url = Helpers.get_voltha_info(o.volt_service)['url'] |
| 39 | voltha_port = Helpers.get_voltha_info(o.volt_service)['port'] |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 40 | |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 41 | r = requests.get("%s:%s/api/v1/logical_devices" % (voltha_url, voltha_port), timeout=1) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 42 | |
| 43 | if r.status_code != 200: |
| 44 | raise Exception("Failed to retrieve logical devices from VOLTHA: %s" % r.text) |
| 45 | |
| 46 | res = r.json() |
| 47 | |
| 48 | for ld in res["items"]: |
| 49 | if ld["root_device_id"] == o.device_id: |
| 50 | o.of_id = ld["id"] |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 51 | o.dp_id = "of:" + Helpers.datapath_id_to_hex(ld["datapath_id"]) # convert to hex |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 52 | return o |
| 53 | |
| 54 | raise Exception("Can't find a logical device for device id: %s" % o.device_id) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 55 | |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 56 | def pull_records(self): |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 57 | log.debug("[OLT pull step] pulling OLT devices from VOLTHA") |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 58 | |
| 59 | try: |
| 60 | self.volt_service = VOLTService.objects.all()[0] |
| 61 | except IndexError: |
| 62 | log.warn('VOLTService not found') |
| 63 | return |
| 64 | |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 65 | voltha_url = Helpers.get_voltha_info(self.volt_service)['url'] |
| 66 | voltha_port = Helpers.get_voltha_info(self.volt_service)['port'] |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 67 | |
| 68 | try: |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 69 | r = requests.get("%s:%s/api/v1/devices" % (voltha_url, voltha_port), timeout=1) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 70 | |
| 71 | if r.status_code != 200: |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 72 | log.debug("[OLT pull step] It was not possible to fetch devices from VOLTHA") |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 73 | |
| 74 | # keeping only OLTs |
| 75 | devices = [d for d in r.json()["items"] if "olt" in d["type"]] |
| 76 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 77 | log.trace("[OLT pull step] received devices", olts=devices) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 78 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 79 | olts_in_voltha = self.create_or_update_olts(devices) |
| 80 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 81 | self.delete_olts(olts_in_voltha) |
| 82 | |
| 83 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 84 | except ConnectionError, e: |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 85 | log.warn("[OLT pull step] It was not possible to connect to VOLTHA", reason=e) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 86 | return |
| 87 | except InvalidURL, e: |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 88 | log.warn("[OLT pull step] VOLTHA url is invalid, is it configured in the VOLTService?", reason=e) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 89 | return |
| 90 | |
| 91 | def create_or_update_olts(self, olts): |
| 92 | |
| 93 | updated_olts = [] |
| 94 | |
| 95 | for olt in olts: |
| 96 | try: |
| 97 | if olt["type"] == "simulated_olt": |
| 98 | [host, port] = ["172.17.0.1", "50060"] |
| 99 | else: |
| 100 | [host, port] = olt["host_and_port"].split(":") |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 101 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 102 | model = OLTDevice.objects.filter(device_type=olt["type"], host=host, port=port)[0] |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 103 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 104 | log.trace("[OLT pull step] OLTDevice already exists, updating it", device_type=olt["type"], host=host, port=port) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 105 | |
| 106 | if model.enacted < model.updated: |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 107 | log.debug("[OLT pull step] Skipping pull on OLTDevice %s as enacted < updated" % model.name, name=model.name, id=model.id, enacted=model.enacted, updated=model.updated) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 108 | # if we are not updating the device we still need to pull ports |
| 109 | self.fetch_olt_ports(model) |
Matteo Scandolo | a0291a1 | 2018-08-21 10:13:18 -0700 | [diff] [blame] | 110 | updated_olts.append(model) |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 111 | continue |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 112 | |
| 113 | except IndexError: |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 114 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 115 | model = OLTDevice() |
| 116 | model.device_type = olt["type"] |
| 117 | |
| 118 | if olt["type"] == "simulated_olt": |
| 119 | model.host = "172.17.0.1" |
| 120 | model.port = 50060 |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 121 | else: |
| 122 | [host, port] = olt["host_and_port"].split(":") |
| 123 | model.host = host |
| 124 | model.port = int(port) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 125 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 126 | log.debug("[OLT pull step] OLTDevice is new, creating it", device_type=olt["type"], host=host, port=port) |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 127 | |
| 128 | # Adding feedback state to the device |
| 129 | model.device_id = olt["id"] |
| 130 | model.admin_state = olt["admin_state"] |
| 131 | model.oper_status = olt["oper_status"] |
Matteo Scandolo | d6fce51 | 2018-10-16 10:35:29 -0700 | [diff] [blame] | 132 | model.serial_number = olt['serial_number'] |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 133 | |
| 134 | model.volt_service = self.volt_service |
| 135 | model.volt_service_id = self.volt_service.id |
| 136 | |
| 137 | # get logical device |
| 138 | OLTDevicePullStep.get_ids_from_logical_device(model) |
| 139 | |
| 140 | model.save() |
| 141 | |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 142 | self.fetch_olt_ports(model) |
| 143 | |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 144 | updated_olts.append(model) |
| 145 | |
| 146 | return updated_olts |
| 147 | |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 148 | def fetch_olt_ports(self, olt): |
| 149 | voltha_url = Helpers.get_voltha_info(self.volt_service)['url'] |
| 150 | voltha_port = Helpers.get_voltha_info(self.volt_service)['port'] |
| 151 | |
| 152 | try: |
Matteo Scandolo | 10928dd | 2018-10-16 17:49:03 -0700 | [diff] [blame] | 153 | r = requests.get("%s:%s/api/v1/devices/%s/ports" % (voltha_url, voltha_port, olt.device_id), timeout=1) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 154 | |
| 155 | if r.status_code != 200: |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 156 | log.warn("[OLT pull step] It was not possible to fetch ports from VOLTHA for device %s" % olt.device_id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 157 | |
| 158 | ports = r.json()['items'] |
| 159 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 160 | log.trace("[OLT pull step] received ports", ports=ports, olt=olt.device_id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 161 | |
| 162 | self.create_or_update_ports(ports, olt) |
| 163 | |
| 164 | except ConnectionError, e: |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 165 | log.warn("[OLT pull step] It was not possible to connect to VOLTHA", reason=e) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 166 | return |
| 167 | except InvalidURL, e: |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 168 | log.warn("[OLT pull step] VOLTHA url is invalid, is it configured in the VOLTService?", reason=e) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 169 | return |
| 170 | return |
| 171 | |
| 172 | def create_or_update_ports(self, ports, olt): |
| 173 | nni_ports = [p for p in ports if "ETHERNET_NNI" in p["type"]] |
| 174 | pon_ports = [p for p in ports if "PON_OLT" in p["type"]] |
| 175 | |
| 176 | self.create_or_update_nni_port(nni_ports, olt) |
| 177 | self.create_or_update_pon_port(pon_ports, olt) |
| 178 | |
| 179 | def create_or_update_pon_port(self, pon_ports, olt): |
| 180 | |
| 181 | update_ports = [] |
| 182 | |
| 183 | for port in pon_ports: |
| 184 | try: |
| 185 | model = PONPort.objects.filter(port_no=port["port_no"], olt_device_id=olt.id)[0] |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 186 | log.trace("[OLT pull step] PONPort already exists, updating it", port_no=port["port_no"], olt_device_id=olt.id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 187 | except IndexError: |
| 188 | model = PONPort() |
| 189 | model.port_no = port["port_no"] |
| 190 | model.olt_device_id = olt.id |
| 191 | model.name = port["label"] |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 192 | log.debug("[OLT pull step] PONPort is new, creating it", port_no=port["port_no"], olt_device_id=olt.id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 193 | |
| 194 | model.admin_state = port["admin_state"] |
| 195 | model.oper_status = port["oper_status"] |
| 196 | model.save() |
| 197 | update_ports.append(model) |
| 198 | return update_ports |
| 199 | |
| 200 | def create_or_update_nni_port(self, nni_ports, olt): |
| 201 | update_ports = [] |
| 202 | |
| 203 | for port in nni_ports: |
| 204 | try: |
| 205 | model = NNIPort.objects.filter(port_no=port["port_no"], olt_device_id=olt.id)[0] |
| 206 | model.xos_managed = False |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 207 | log.trace("[OLT pull step] NNIPort already exists, updating it", port_no=port["port_no"], olt_device_id=olt.id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 208 | except IndexError: |
| 209 | model = NNIPort() |
| 210 | model.port_no = port["port_no"] |
| 211 | model.olt_device_id = olt.id |
| 212 | model.name = port["label"] |
| 213 | model.xos_managed = False |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 214 | log.debug("[OLT pull step] NNIPort is new, creating it", port_no=port["port_no"], olt_device_id=olt.id) |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 215 | |
| 216 | model.admin_state = port["admin_state"] |
| 217 | model.oper_status = port["oper_status"] |
| 218 | model.save() |
| 219 | update_ports.append(model) |
| 220 | return update_ports |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 221 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 222 | def delete_olts(self, olts_in_voltha): |
Matteo Scandolo | a0291a1 | 2018-08-21 10:13:18 -0700 | [diff] [blame] | 223 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 224 | olts_id_in_voltha = [m.device_id for m in olts_in_voltha] |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 225 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 226 | xos_olts = OLTDevice.objects.all() |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 227 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 228 | deleted_in_voltha = [o for o in xos_olts if o.device_id not in olts_id_in_voltha] |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 229 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 230 | for model in deleted_in_voltha: |
Matteo Scandolo | 3352341 | 2018-04-12 15:21:13 -0700 | [diff] [blame] | 231 | |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 232 | if model.enacted < model.updated: |
| 233 | # DO NOT delete a model that is being processed |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 234 | log.debug("[OLT pull step] device is not present in VOLTHA, skipping deletion as sync is in progress", device_id=o.device_id, |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 235 | name=o.name) |
| 236 | continue |
| 237 | |
Matteo Scandolo | 27d2fbb | 2018-09-07 14:02:53 -0700 | [diff] [blame] | 238 | log.debug("[OLT pull step] deleting device as it's not present in VOLTHA", device_id=o.device_id, name=o.name) |
Matteo Scandolo | a4fb032 | 2018-08-20 17:35:29 -0700 | [diff] [blame] | 239 | model.delete() |