blob: 5997de5040405b73052f48275fd692846e472375 [file] [log] [blame]
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -08001# 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 Scandolo4a8b4d62018-03-06 17:18:46 -080015from time import sleep
Matteo Scandolod44ca992018-05-17 15:02:10 -070016
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080017import requests
Matteo Scandolod44ca992018-05-17 15:02:10 -070018from multistructlog import create_logger
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080019from requests.auth import HTTPBasicAuth
Matteo Scandolod44ca992018-05-17 15:02:10 -070020from synchronizers.new_base.SyncInstanceUsingAnsible import SyncStep
21from synchronizers.new_base.modelaccessor import OLTDevice, model_accessor
22from xosconfig import Config
23
24import os, sys
25sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
26
Matteo Scandolof6337eb2018-04-05 15:58:37 -070027from helpers import Helpers
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080028
29log = create_logger(Config().get('logging'))
30
31class SyncOLTDevice(SyncStep):
32 provides = [OLTDevice]
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080033 observes = OLTDevice
34
35 @staticmethod
Matteo Scandolof6337eb2018-04-05 15:58:37 -070036 def get_ids_from_logical_device(o):
Luca Preteca974c82018-05-01 18:06:16 -070037 voltha = Helpers.get_voltha_info(o.volt_service)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080038
Luca Preteca974c82018-05-01 18:06:16 -070039 request = requests.get("%s:%d/api/v1/logical_devices" % (voltha['url'], voltha['port']))
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080040
Luca Preteca974c82018-05-01 18:06:16 -070041 if request.status_code != 200:
42 raise Exception("Failed to retrieve logical devices from VOLTHA: %s" % request.text)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080043
Luca Preteca974c82018-05-01 18:06:16 -070044 response = request.json()
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080045
Luca Preteca974c82018-05-01 18:06:16 -070046 for ld in response["items"]:
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080047 if ld["root_device_id"] == o.device_id:
Matteo Scandolof6337eb2018-04-05 15:58:37 -070048 o.of_id = ld["id"]
Luca Preteca974c82018-05-01 18:06:16 -070049 o.dp_id = "of:%s" % (Helpers.datapath_id_to_hex(ld["datapath_id"])) # Convert to hex
Matteo Scandolof6337eb2018-04-05 15:58:37 -070050 return o
51
Matteo Scandolo2c144932018-05-04 14:06:24 -070052 raise Exception("Can't find a logical_device for OLT device id: %s" % o.device_id)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080053
Matteo Scandolo2c144932018-05-04 14:06:24 -070054 def pre_provision_olt_device(self, model):
55 log.info("Pre-provisioning OLT device in VOLTHA", object=str(model), **model.tologdict())
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -080056
Matteo Scandolo2c144932018-05-04 14:06:24 -070057 voltha = Helpers.get_voltha_info(model.volt_service)
Luca Preteca974c82018-05-01 18:06:16 -070058
Matteo Scandolo2c144932018-05-04 14:06:24 -070059 data = {
60 "type": model.device_type,
61 "host_and_port": "%s:%s" % (model.host, model.port)
62 }
63
64 if model.device_type == 'simulated_olt':
65 # Simulated devices won't accept host and port. This is to enable tests in voltha without having a real olt or ponsim
66 data.pop('host_and_port')
67 data['mac_address'] = "00:0c:e2:31:40:00"
68
69 log.info("Pushing OLT to Voltha", data=data)
70
71 request = requests.post("%s:%d/api/v1/devices" % (voltha['url'], voltha['port']), json=data)
72
73 if request.status_code != 200:
74 raise Exception("Failed to add OLT device: %s" % request.text)
75
76 log.info("Add device response", text=request.text)
77
78 res = request.json()
79
80 log.info("Add device json res", res=res)
81
82 if not res['id']:
83 raise Exception(
84 'VOLTHA Device Id is empty. This probably means that the OLT device is already provisioned in VOLTHA')
85 else:
86 model.device_id = res['id'];
87
88 return model
89
90 def activate_olt(self, model):
91
92 voltha = Helpers.get_voltha_info(model.volt_service)
93
94 # Enable device
95 request = requests.post("%s:%d/api/v1/devices/%s/enable" % (voltha['url'], voltha['port'], model.device_id))
96
97 if request.status_code != 200:
98 raise Exception("Failed to enable OLT device: %s" % request.text)
99
100 # Read state
101 request = requests.get("%s:%d/api/v1/devices/%s" % (voltha['url'], voltha['port'], model.device_id)).json()
102 while request['oper_status'] == "ACTIVATING":
103 log.info("Waiting for OLT device %s (%s) to activate" % (model.name, model.device_id))
104 sleep(5)
105 request = requests.get("%s:%d/api/v1/devices/%s" % (voltha['url'], voltha['port'], model.device_id)).json()
106
107 model.admin_state = request['admin_state']
108 model.oper_status = request['oper_status']
109
110 # Find the of_id of the device
111 model = self.get_ids_from_logical_device(model)
112 model.save()
113
114 return model
115
116 def configure_onos(self, model):
117
118 onos_voltha = Helpers.get_onos_voltha_info(model.volt_service)
Luca Preteca974c82018-05-01 18:06:16 -0700119 onos_voltha_basic_auth = HTTPBasicAuth(onos_voltha['user'], onos_voltha['pass'])
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800120
Luca Preteca974c82018-05-01 18:06:16 -0700121 # For now, we assume that each OLT has only one port
Matteo Scandolo2c144932018-05-04 14:06:24 -0700122 vlan = model.ports.all()[0].s_tag
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800123
Luca Preteca974c82018-05-01 18:06:16 -0700124 # Add device info to onos-voltha
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800125 data = {
126 "devices": {
Matteo Scandolo2c144932018-05-04 14:06:24 -0700127 model.dp_id: {
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800128 "basic": {
Matteo Scandolo2c144932018-05-04 14:06:24 -0700129 "driver": model.driver
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800130 },
131 "accessDevice": {
Matteo Scandolo2c144932018-05-04 14:06:24 -0700132 "uplink": model.uplink,
Matteo Scandolob8621cd2018-04-04 17:12:37 -0700133 "vlan": vlan
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800134 }
135 }
136 }
137 }
138
Matteo Scandolo2c144932018-05-04 14:06:24 -0700139 url = "%s:%d/onos/v1/network/configuration/" % (onos_voltha['url'], onos_voltha['port'])
140 request = requests.post(url, json=data, auth=onos_voltha_basic_auth)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800141
Luca Preteca974c82018-05-01 18:06:16 -0700142 if request.status_code != 200:
143 log.error(request.text)
Matteo Scandolo2c144932018-05-04 14:06:24 -0700144 raise Exception("Failed to add OLT device %s into ONOS" % model.name)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800145 else:
146 try:
Luca Preteca974c82018-05-01 18:06:16 -0700147 print request.json()
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800148 except Exception:
Luca Preteca974c82018-05-01 18:06:16 -0700149 print request.text
Matteo Scandolo2c144932018-05-04 14:06:24 -0700150 return model
151
Matteo Scandolo2c144932018-05-04 14:06:24 -0700152 def sync_record(self, model):
153 log.info("Synching device", object=str(model), **model.tologdict())
154
155 # If the device has feedback_state is already present in voltha
156 if not model.device_id and not model.admin_state and not model.oper_status and not model.of_id:
157 log.info("Pushing OLT device to VOLTHA", object=str(model), **model.tologdict())
158 model = self.pre_provision_olt_device(model)
159 self.activate_olt(model)
160 else:
161 log.info("OLT device already exists in VOLTHA", object=str(model), **model.tologdict())
162
163 self.configure_onos(model)
164
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800165 def delete_record(self, o):
Matteo Scandolo2c144932018-05-04 14:06:24 -0700166 log.info("Deleting OLT device", object=str(o), **o.tologdict())
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800167
Luca Preteca974c82018-05-01 18:06:16 -0700168 voltha = Helpers.get_voltha_info(o.volt_service)
169 onos_voltha = Helpers.get_onos_voltha_info(o.volt_service)
170 onos_voltha_basic_auth = HTTPBasicAuth(onos_voltha['user'], onos_voltha['pass'])
171
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800172 if not o.device_id:
Matteo Scandolo2c144932018-05-04 14:06:24 -0700173 log.error("OLTDevice %s has no device_id" % o.name)
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800174 else:
Matteo Scandolo2c144932018-05-04 14:06:24 -0700175 # Disable the OLT device
Luca Preteca974c82018-05-01 18:06:16 -0700176 request = requests.post("%s:%d/api/v1/devices/%s/disable" % (voltha['url'], voltha['port'], o.device_id))
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800177
Luca Preteca974c82018-05-01 18:06:16 -0700178 if request.status_code != 200:
Matteo Scandolo2c144932018-05-04 14:06:24 -0700179 log.error("Failed to disable OLT device in VOLTHA: %s - %s" % (o.name, o.device_id), rest_response=request.text, rest_status_code=request.status_code)
180 raise Exception("Failed to disable OLT device in VOLTHA")
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800181
Matteo Scandolo2c144932018-05-04 14:06:24 -0700182 # Delete the OLT device
Luca Preteca974c82018-05-01 18:06:16 -0700183 request = requests.delete("%s:%d/api/v1/devices/%s/delete" % (voltha['url'], voltha['port'], o.device_id))
Matteo Scandolo4a8b4d62018-03-06 17:18:46 -0800184
Luca Preteca974c82018-05-01 18:06:16 -0700185 if request.status_code != 200:
Matteo Scandolo2c144932018-05-04 14:06:24 -0700186 log.error("Failed to delete OLT device from VOLTHA: %s - %s" % (o.name, o.device_id), rest_response=request.text, rest_status_code=request.status_code)
187 raise Exception("Failed to delete OLT device from VOLTHA")
188
189 # Remove the device from ONOS
190 request = requests.delete("%s:%d/onos/v1/network/configuration/devices/%s" % (
191 onos_voltha['url'], onos_voltha['port'], o.of_id), auth=onos_voltha_basic_auth)
192
193 if request.status_code != 204:
194 log.error("Failed to remove OLT device from ONOS: %s - %s" % (o.name, o.of_id), rest_response=request.text, rest_status_code=request.status_code)
195 raise Exception("Failed to remove OLT device from ONOS")