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 | |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 15 | from time import sleep |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 16 | |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 17 | import requests |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 18 | from multistructlog import create_logger |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 19 | from requests.auth import HTTPBasicAuth |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 20 | from synchronizers.new_base.syncstep import SyncStep, DeferredException |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 21 | from synchronizers.new_base.modelaccessor import OLTDevice, model_accessor |
| 22 | from xosconfig import Config |
| 23 | |
| 24 | import os, sys |
| 25 | sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) |
| 26 | |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 27 | from helpers import Helpers |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 28 | |
| 29 | log = create_logger(Config().get('logging')) |
| 30 | |
| 31 | class SyncOLTDevice(SyncStep): |
| 32 | provides = [OLTDevice] |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 33 | observes = OLTDevice |
| 34 | |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 35 | max_attempt = 120 # we give 10 minutes to the OLT to activate |
| 36 | |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 37 | @staticmethod |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 38 | def get_ids_from_logical_device(o): |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 39 | voltha = Helpers.get_voltha_info(o.volt_service) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 40 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 41 | request = requests.get("%s:%d/api/v1/logical_devices" % (voltha['url'], voltha['port'])) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 42 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 43 | if request.status_code != 200: |
| 44 | raise Exception("Failed to retrieve logical devices from VOLTHA: %s" % request.text) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 45 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 46 | response = request.json() |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 47 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 48 | for ld in response["items"]: |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 49 | if ld["root_device_id"] == o.device_id: |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 50 | o.of_id = ld["id"] |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 51 | o.dp_id = "of:%s" % (Helpers.datapath_id_to_hex(ld["datapath_id"])) # Convert to hex |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 52 | return o |
| 53 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 54 | raise Exception("Can't find a logical_device for OLT device id: %s" % o.device_id) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 55 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 56 | def pre_provision_olt_device(self, model): |
| 57 | log.info("Pre-provisioning OLT device in VOLTHA", object=str(model), **model.tologdict()) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 58 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 59 | voltha = Helpers.get_voltha_info(model.volt_service) |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 60 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 61 | data = { |
Matteo Scandolo | 2ed64b9 | 2018-06-18 10:32:56 -0700 | [diff] [blame] | 62 | "type": model.device_type |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Matteo Scandolo | 2ed64b9 | 2018-06-18 10:32:56 -0700 | [diff] [blame] | 65 | if hasattr(model, "host") and hasattr(model, "port"): |
| 66 | data["host_and_port"] = "%s:%s" % (model.host, model.port) |
| 67 | elif hasattr(model, "mac_address"): |
| 68 | data["mac_address"] = model.mac_address |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 69 | |
| 70 | log.info("Pushing OLT to Voltha", data=data) |
| 71 | |
| 72 | request = requests.post("%s:%d/api/v1/devices" % (voltha['url'], voltha['port']), json=data) |
| 73 | |
| 74 | if request.status_code != 200: |
| 75 | raise Exception("Failed to add OLT device: %s" % request.text) |
| 76 | |
| 77 | log.info("Add device response", text=request.text) |
| 78 | |
| 79 | res = request.json() |
| 80 | |
| 81 | log.info("Add device json res", res=res) |
| 82 | |
| 83 | if not res['id']: |
| 84 | raise Exception( |
| 85 | 'VOLTHA Device Id is empty. This probably means that the OLT device is already provisioned in VOLTHA') |
| 86 | else: |
Matteo Scandolo | d6fce51 | 2018-10-16 10:35:29 -0700 | [diff] [blame] | 87 | model.device_id = res['id'] |
| 88 | model.serial_number = res['serial_number'] |
| 89 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 90 | |
| 91 | return model |
| 92 | |
| 93 | def activate_olt(self, model): |
| 94 | |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 95 | attempted = 0 |
| 96 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 97 | voltha = Helpers.get_voltha_info(model.volt_service) |
| 98 | |
| 99 | # Enable device |
| 100 | request = requests.post("%s:%d/api/v1/devices/%s/enable" % (voltha['url'], voltha['port'], model.device_id)) |
| 101 | |
| 102 | if request.status_code != 200: |
| 103 | raise Exception("Failed to enable OLT device: %s" % request.text) |
| 104 | |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 105 | model.backend_status = "Waiting for device to be activated" |
| 106 | model.save(always_update_timestamp=False) # we don't want to kickoff a new loop |
| 107 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 108 | # Read state |
| 109 | request = requests.get("%s:%d/api/v1/devices/%s" % (voltha['url'], voltha['port'], model.device_id)).json() |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 110 | while request['oper_status'] == "ACTIVATING" and attempted < self.max_attempt: |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 111 | log.info("Waiting for OLT device %s (%s) to activate" % (model.name, model.device_id)) |
| 112 | sleep(5) |
| 113 | request = requests.get("%s:%d/api/v1/devices/%s" % (voltha['url'], voltha['port'], model.device_id)).json() |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 114 | attempted = attempted + 1 |
| 115 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 116 | |
| 117 | model.admin_state = request['admin_state'] |
| 118 | model.oper_status = request['oper_status'] |
Matteo Scandolo | 4587665 | 2018-10-16 16:03:17 -0700 | [diff] [blame] | 119 | model.serial_number = request['serial_number'] |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 120 | |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 121 | if model.oper_status != "ACTIVE": |
| 122 | raise Exception("It was not possible to activate OLTDevice with id %s" % model.id) |
| 123 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 124 | # Find the of_id of the device |
| 125 | model = self.get_ids_from_logical_device(model) |
| 126 | model.save() |
| 127 | |
| 128 | return model |
| 129 | |
Matteo Scandolo | a79395f | 2018-10-08 13:34:49 -0700 | [diff] [blame] | 130 | def configure_onos(self, model): |
| 131 | |
| 132 | log.info("Adding OLT device in onos-voltha", object=str(model), **model.tologdict()) |
| 133 | |
| 134 | onos_voltha = Helpers.get_onos_voltha_info(model.volt_service) |
| 135 | onos_voltha_basic_auth = HTTPBasicAuth(onos_voltha['user'], onos_voltha['pass']) |
| 136 | |
| 137 | # Add device info to onos-voltha |
| 138 | data = { |
| 139 | "devices": { |
| 140 | model.dp_id: { |
| 141 | "basic": { |
| 142 | "name": model.name |
| 143 | } |
| 144 | } |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | log.info("Calling ONOS", data=data) |
| 149 | |
| 150 | url = "%s:%d/onos/v1/network/configuration/" % (onos_voltha['url'], onos_voltha['port']) |
| 151 | request = requests.post(url, json=data, auth=onos_voltha_basic_auth) |
| 152 | |
| 153 | if request.status_code != 200: |
| 154 | log.error(request.text) |
| 155 | raise Exception("Failed to add OLT device %s into ONOS" % model.name) |
| 156 | else: |
| 157 | try: |
| 158 | print request.json() |
| 159 | except Exception: |
| 160 | print request.text |
| 161 | return model |
| 162 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 163 | def sync_record(self, model): |
| 164 | log.info("Synching device", object=str(model), **model.tologdict()) |
| 165 | |
| 166 | # If the device has feedback_state is already present in voltha |
| 167 | if not model.device_id and not model.admin_state and not model.oper_status and not model.of_id: |
| 168 | log.info("Pushing OLT device to VOLTHA", object=str(model), **model.tologdict()) |
| 169 | model = self.pre_provision_olt_device(model) |
| 170 | self.activate_olt(model) |
Matteo Scandolo | 096a3cf | 2018-06-20 13:56:13 -0700 | [diff] [blame] | 171 | elif model.oper_status != "ACTIVE": |
| 172 | raise Exception("It was not possible to activate OLTDevice with id %s" % model.id) |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 173 | else: |
| 174 | log.info("OLT device already exists in VOLTHA", object=str(model), **model.tologdict()) |
| 175 | |
Matteo Scandolo | a79395f | 2018-10-08 13:34:49 -0700 | [diff] [blame] | 176 | self.configure_onos(model) |
| 177 | |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 178 | def delete_record(self, model): |
| 179 | log.info("Deleting OLT device", object=str(model), **model.tologdict()) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 180 | |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 181 | voltha = Helpers.get_voltha_info(model.volt_service) |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 182 | |
Matteo Scandolo | 563891c | 2018-08-21 11:56:32 -0700 | [diff] [blame] | 183 | if not model.device_id or model.backend_code == 2: |
| 184 | # NOTE if the device was not synchronized, just remove it from the data model |
| 185 | log.warning("OLTDevice %s has no device_id, it was never saved in VOLTHA" % model.name) |
| 186 | return |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 187 | else: |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 188 | # Disable the OLT device |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 189 | request = requests.post("%s:%d/api/v1/devices/%s/disable" % (voltha['url'], voltha['port'], model.device_id)) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 190 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 191 | if request.status_code != 200: |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 192 | log.error("Failed to disable OLT device in VOLTHA: %s - %s" % (model.name, model.device_id), rest_response=request.text, rest_status_code=request.status_code) |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 193 | raise Exception("Failed to disable OLT device in VOLTHA") |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 194 | |
Matteo Scandolo | f7ebb11 | 2018-09-18 16:17:22 -0700 | [diff] [blame] | 195 | # NOTE [teo] wait some time after the disable to let VOLTHA doing its things |
| 196 | i = 0 |
| 197 | for i in list(reversed(range(10))): |
| 198 | sleep(1) |
| 199 | log.info("Deleting the OLT in %s seconds" % i) |
| 200 | |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 201 | # Delete the OLT device |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 202 | request = requests.delete("%s:%d/api/v1/devices/%s/delete" % (voltha['url'], voltha['port'], model.device_id)) |
Matteo Scandolo | 4a8b4d6 | 2018-03-06 17:18:46 -0800 | [diff] [blame] | 203 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 204 | if request.status_code != 200: |
Matteo Scandolo | 6be6ee9 | 2018-05-24 15:07:51 -0700 | [diff] [blame] | 205 | log.error("Failed to delete OLT device from VOLTHA: %s - %s" % (model.name, model.device_id), rest_response=request.text, rest_status_code=request.status_code) |
Matteo Scandolo | 2c14493 | 2018-05-04 14:06:24 -0700 | [diff] [blame] | 206 | raise Exception("Failed to delete OLT device from VOLTHA") |