blob: 50c84af21816aa1f6955057f4ed7f1ba89027f83 [file] [log] [blame]
Shad Ansari2825d012018-02-22 23:57:46 +00001#
2# Copyright 2018 the original author or authors.
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
17"""
18Openolt adapter.
19"""
Shad Ansari2825d012018-02-22 23:57:46 +000020from zope.interface import implementer
Shad Ansarif9d2d102018-06-13 02:15:26 +000021import structlog
Shad Ansari2825d012018-02-22 23:57:46 +000022
23from openolt_device import OpenoltDevice
24from voltha.adapters.interface import IAdapterInterface
25from voltha.protos import third_party
26from voltha.protos.adapter_pb2 import Adapter
27from voltha.protos.adapter_pb2 import AdapterConfig
28from voltha.protos.common_pb2 import LogLevel
Scott Bakerd3190952018-09-04 15:47:28 -070029from voltha.protos.common_pb2 import OperationResp
Shad Ansari2825d012018-02-22 23:57:46 +000030from voltha.protos.device_pb2 import DeviceType, DeviceTypes
Shad Ansari2825d012018-02-22 23:57:46 +000031from voltha.registry import registry
Shad Ansaricd20a6d2018-10-02 14:36:33 +000032from voltha.adapters.openolt.openolt_flow_mgr import OpenOltFlowMgr
33from voltha.adapters.openolt.openolt_alarms import OpenOltAlarmMgr
34from voltha.adapters.openolt.openolt_statistics import OpenOltStatisticsMgr
35from voltha.adapters.openolt.openolt_bw import OpenOltBW
36from voltha.adapters.openolt.openolt_platform import OpenOltPlatform
Girish Gowdru1e77ea02018-09-24 09:10:35 -070037from voltha.adapters.openolt.openolt_resource_manager import OpenOltResourceMgr
Shad Ansari2825d012018-02-22 23:57:46 +000038
39_ = third_party
40log = structlog.get_logger()
41
Shad Ansarif9d2d102018-06-13 02:15:26 +000042
Shad Ansaricd20a6d2018-10-02 14:36:33 +000043OpenOltDefaults = {
44 'support_classes': {
45 'platform': OpenOltPlatform,
Girish Gowdru1e77ea02018-09-24 09:10:35 -070046 'resource_mgr': OpenOltResourceMgr,
Shad Ansaricd20a6d2018-10-02 14:36:33 +000047 'flow_mgr': OpenOltFlowMgr,
48 'alarm_mgr': OpenOltAlarmMgr,
49 'stats_mgr': OpenOltStatisticsMgr,
50 'bw_mgr': OpenOltBW
51 }
52}
53
Shad Ansari78de2be2018-10-12 22:13:54 +000054
Shad Ansari2825d012018-02-22 23:57:46 +000055@implementer(IAdapterInterface)
56class OpenoltAdapter(object):
57 name = 'openolt'
58
59 supported_device_types = [
60 DeviceType(
61 id=name,
62 adapter=name,
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -040063 accepts_bulk_flow_update=True,
64 accepts_direct_logical_flows_update=True
Shad Ansari2825d012018-02-22 23:57:46 +000065 )
66 ]
67
68 def __init__(self, adapter_agent, config):
69 self.adapter_agent = adapter_agent
70 self.config = config
71 self.descriptor = Adapter(
72 id=self.name,
73 vendor='OLT white box vendor',
74 version='0.1',
75 config=AdapterConfig(log_level=LogLevel.INFO)
76 )
77 log.debug('openolt.__init__', adapter_agent=adapter_agent)
78 self.devices = dict() # device_id -> OpenoltDevice()
79 self.interface = registry('main').get_args().interface
80 self.logical_device_id_to_root_device_id = dict()
Shad Ansari5dbc9c82018-05-10 03:29:31 +000081 self.num_devices = 0
Shad Ansari2825d012018-02-22 23:57:46 +000082
83 def start(self):
84 log.info('started', interface=self.interface)
85
86 def stop(self):
87 log.info('stopped', interface=self.interface)
88
89 def adapter_descriptor(self):
90 log.debug('get descriptor', interface=self.interface)
91 return self.descriptor
92
93 def device_types(self):
Shad Ansarif9d2d102018-06-13 02:15:26 +000094 log.debug('get device_types', interface=self.interface,
95 items=self.supported_device_types)
Shad Ansari2825d012018-02-22 23:57:46 +000096 return DeviceTypes(items=self.supported_device_types)
97
98 def health(self):
99 log.debug('get health', interface=self.interface)
100 raise NotImplementedError()
101
102 def change_master_state(self, master):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000103 log.debug('change_master_state', interface=self.interface,
104 master=master)
Shad Ansari2825d012018-02-22 23:57:46 +0000105 raise NotImplementedError()
106
107 def adopt_device(self, device):
108 log.info('adopt-device', device=device)
Shad Ansaricd20a6d2018-10-02 14:36:33 +0000109
Shad Ansari2825d012018-02-22 23:57:46 +0000110 kwargs = {
Shad Ansaricd20a6d2018-10-02 14:36:33 +0000111 'support_classes': OpenOltDefaults['support_classes'],
Shad Ansari2825d012018-02-22 23:57:46 +0000112 'adapter_agent': self.adapter_agent,
Shad Ansari5dbc9c82018-05-10 03:29:31 +0000113 'device': device,
114 'device_num': self.num_devices + 1
Shad Ansari2825d012018-02-22 23:57:46 +0000115 }
116 try:
117 self.devices[device.id] = OpenoltDevice(**kwargs)
118 except Exception as e:
119 log.error('Failed to adopt OpenOLT device', error=e)
120 del self.devices[device.id]
121 raise
Shad Ansari5dbc9c82018-05-10 03:29:31 +0000122 else:
123 self.num_devices += 1
Shad Ansari2825d012018-02-22 23:57:46 +0000124
125 def reconcile_device(self, device):
126 log.info('reconcile-device', device=device)
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400127 kwargs = {
Girish Gowdru1e77ea02018-09-24 09:10:35 -0700128 'support_classes': OpenOltDefaults['support_classes'],
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400129 'adapter_agent': self.adapter_agent,
130 'device': device,
131 'device_num': self.num_devices + 1,
132 'reconciliation': True
133 }
134 try:
135 reconciled_device = OpenoltDevice(**kwargs)
Shad Ansarif9d2d102018-06-13 02:15:26 +0000136 log.debug('reconciled-device-recreated',
137 device_id=reconciled_device.device_id)
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400138 self.devices[device.id] = reconciled_device
139 except Exception as e:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000140 log.error('Failed to reconcile OpenOLT device', error=e,
141 exception_type=type(e).__name__)
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400142 del self.devices[device.id]
143 raise
144 else:
145 self.num_devices += 1
146 # Invoke the children reconciliation which would setup the
147 # basic children data structures
148 self.adapter_agent.reconcile_child_devices(device.id)
149 return device
Shad Ansari2825d012018-02-22 23:57:46 +0000150
151 def abandon_device(self, device):
152 log.info('abandon-device', device=device)
153 raise NotImplementedError()
154
155 def disable_device(self, device):
156 log.info('disable-device', device=device)
Jonathan Davis0f917a22018-05-30 14:39:45 -0400157 handler = self.devices[device.id]
158 handler.disable()
Shad Ansari2825d012018-02-22 23:57:46 +0000159
160 def reenable_device(self, device):
161 log.info('reenable-device', device=device)
Jonathan Davis0f917a22018-05-30 14:39:45 -0400162 handler = self.devices[device.id]
163 handler.reenable()
Shad Ansari2825d012018-02-22 23:57:46 +0000164
165 def reboot_device(self, device):
166 log.info('reboot_device', device=device)
Nicolas Palpacuerfd365ac2018-08-02 11:37:37 -0400167 handler = self.devices[device.id]
168 handler.reboot()
Shad Ansari2825d012018-02-22 23:57:46 +0000169
170 def download_image(self, device, request):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400171 log.info('image_download - Not implemented yet', device=device,
172 request=request)
Shad Ansari2825d012018-02-22 23:57:46 +0000173 raise NotImplementedError()
174
175 def get_image_download_status(self, device, request):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400176 log.info('get_image_download - Not implemented yet', device=device,
177 request=request)
Shad Ansari2825d012018-02-22 23:57:46 +0000178 raise NotImplementedError()
179
180 def cancel_image_download(self, device, request):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400181 log.info('cancel_image_download - Not implemented yet', device=device)
Shad Ansari2825d012018-02-22 23:57:46 +0000182 raise NotImplementedError()
183
184 def activate_image_update(self, device, request):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400185 log.info('activate_image_update - Not implemented yet',
186 device=device, request=request)
Shad Ansari2825d012018-02-22 23:57:46 +0000187 raise NotImplementedError()
188
189 def revert_image_update(self, device, request):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400190 log.info('revert_image_update - Not implemented yet',
191 device=device, request=request)
Shad Ansari2825d012018-02-22 23:57:46 +0000192 raise NotImplementedError()
193
194 def self_test_device(self, device):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000195 # from voltha.protos.voltha_pb2 import SelfTestResponse
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400196 log.info('Not implemented yet')
Shad Ansari2825d012018-02-22 23:57:46 +0000197 raise NotImplementedError()
198
199 def delete_device(self, device):
200 log.info('delete-device', device=device)
Jonathan Davis0f917a22018-05-30 14:39:45 -0400201 handler = self.devices[device.id]
202 handler.delete()
203 del self.devices[device.id]
Matteo Scandoloa171b6e2018-09-14 16:48:24 -0700204 del self.logical_device_id_to_root_device_id[device.parent_id]
Nicolas Palpacuer0d44e682018-08-06 10:30:26 -0400205 return device
Shad Ansari2825d012018-02-22 23:57:46 +0000206
207 def get_device_details(self, device):
208 log.debug('get_device_details', device=device)
209 raise NotImplementedError()
210
211 def update_flows_bulk(self, device, flows, groups):
212 log.info('bulk-flow-update', device_id=device.id,
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400213 number_of_flows=len(flows.items), number_of_groups=len(
Shad Ansari78de2be2018-10-12 22:13:54 +0000214 groups.items))
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400215 log.debug('flows and grousp details', flows=flows, groups=groups)
Shad Ansari2825d012018-02-22 23:57:46 +0000216 assert len(groups.items) == 0, "Cannot yet deal with groups"
217 handler = self.devices[device.id]
218 return handler.update_flow_table(flows.items)
219
220 def update_flows_incrementally(self, device, flow_changes, group_changes):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000221 log.debug('update_flows_incrementally', device=device,
222 flow_changes=flow_changes, group_changes=group_changes)
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400223 log.info('This device does not allow this, therefore it is Not '
224 'implemented')
Shad Ansari2825d012018-02-22 23:57:46 +0000225 raise NotImplementedError()
226
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400227 def update_logical_flows(self, device_id, flows_to_add, flows_to_remove,
228 groups, device_rules_map):
229
230 log.info('logical-flows-update', flows_to_add=len(flows_to_add),
Shad Ansari78de2be2018-10-12 22:13:54 +0000231 flows_to_remove=len(flows_to_remove))
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400232 log.debug('logical-flows-details', flows_to_add=flows_to_add,
233 flows_to_remove=flows_to_remove)
234 assert len(groups) == 0, "Cannot yet deal with groups"
235 handler = self.devices[device_id]
236 handler.update_logical_flows(flows_to_add, flows_to_remove,
237 device_rules_map)
238
Shad Ansari2825d012018-02-22 23:57:46 +0000239 def update_pm_config(self, device, pm_configs):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400240 log.info('update_pm_config - Not implemented yet', device=device,
Shad Ansari78de2be2018-10-12 22:13:54 +0000241 pm_configs=pm_configs)
Shad Ansari2825d012018-02-22 23:57:46 +0000242 raise NotImplementedError()
243
244 def send_proxied_message(self, proxy_address, msg):
245 log.debug('send-proxied-message', proxy_address=proxy_address, msg=msg)
246 handler = self.devices[proxy_address.device_id]
247 handler.send_proxied_message(proxy_address, msg)
248
249 def receive_proxied_message(self, proxy_address, msg):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400250 log.debug('receive_proxied_message - Not implemented',
251 proxy_address=proxy_address,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000252 msg=msg)
Shad Ansari2825d012018-02-22 23:57:46 +0000253 raise NotImplementedError()
254
255 def receive_packet_out(self, logical_device_id, egress_port_no, msg):
256 log.debug('packet-out', logical_device_id=logical_device_id,
257 egress_port_no=egress_port_no, msg_len=len(msg))
Shad Ansarif9d2d102018-06-13 02:15:26 +0000258
Shad Ansari42db7342018-04-25 21:39:46 +0000259 def ldi_to_di(ldi):
260 di = self.logical_device_id_to_root_device_id.get(ldi)
261 if di is None:
262 logical_device = self.adapter_agent.get_logical_device(ldi)
263 di = logical_device.root_device_id
264 self.logical_device_id_to_root_device_id[ldi] = di
265 return di
266
Matteo Scandoloa171b6e2018-09-14 16:48:24 -0700267 try:
268 device_id = ldi_to_di(logical_device_id)
269 handler = self.devices[device_id]
270 handler.packet_out(egress_port_no, msg)
271 except Exception as e:
272 log.error('packet-out:exception', e=e.message)
Shad Ansari2825d012018-02-22 23:57:46 +0000273
274 def receive_inter_adapter_message(self, msg):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400275 log.info('rx_inter_adapter_msg - Not implemented')
Shad Ansari2825d012018-02-22 23:57:46 +0000276 raise NotImplementedError()
277
278 def suppress_alarm(self, filter):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400279 log.info('suppress_alarm - Not implemented yet', filter=filter)
Shad Ansari2825d012018-02-22 23:57:46 +0000280 raise NotImplementedError()
281
282 def unsuppress_alarm(self, filter):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400283 log.info('unsuppress_alarm - Not implemented yet', filter=filter)
Shad Ansari2825d012018-02-22 23:57:46 +0000284 raise NotImplementedError()
285
286 # PON Mgnt APIs #
287 def create_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400288 log.debug('create-interface - Not implemented - We do not use this',
289 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000290 raise NotImplementedError()
291
292 def update_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400293 log.debug('update-interface - Not implemented - We do not use this',
294 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000295 raise NotImplementedError()
296
297 def remove_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400298 log.debug('remove-interface - Not implemented - We do not use this',
299 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000300 raise NotImplementedError()
301
302 def receive_onu_detect_state(self, proxy_address, state):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400303 log.debug('receive-onu-detect-state - Not implemented - We do not '
304 'use this', proxy_address=proxy_address,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000305 state=state)
Shad Ansari2825d012018-02-22 23:57:46 +0000306 raise NotImplementedError()
307
308 def create_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400309 log.info('create-tcont - Not implemented - We do not use this',
310 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000311 traffic_descriptor_data=traffic_descriptor_data)
312 raise NotImplementedError()
313
314 def update_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400315 log.info('update-tcont - Not implemented - We do not use this',
316 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000317 traffic_descriptor_data=traffic_descriptor_data)
318 raise NotImplementedError()
319
320 def remove_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400321 log.info('remove-tcont - Not implemented - We do not use this',
322 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000323 traffic_descriptor_data=traffic_descriptor_data)
324 raise NotImplementedError()
325
326 def create_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400327 log.info('create-gemport - Not implemented - We do not use this',
328 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000329 raise NotImplementedError()
330
331 def update_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400332 log.info('update-gemport - Not implemented - We do not use this',
333 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000334 raise NotImplementedError()
335
336 def remove_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400337 log.info('remove-gemport - Not implemented - We do not use this',
338 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000339 raise NotImplementedError()
340
341 def create_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400342 log.info('create-mcast-gemport - Not implemented - We do not use '
343 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000344 raise NotImplementedError()
345
346 def update_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400347 log.info('update-mcast-gemport - Not implemented - We do not use '
348 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000349 raise NotImplementedError()
350
351 def remove_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400352 log.info('remove-mcast-gemport - Not implemented - We do not use '
353 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000354 raise NotImplementedError()
355
356 def create_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400357 log.info('create-mcast-distribution-set - Not implemented - We do '
358 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000359 raise NotImplementedError()
360
361 def update_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400362 log.info('update-mcast-distribution-set - Not implemented - We do '
363 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000364 raise NotImplementedError()
365
366 def remove_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400367 log.info('remove-mcast-distribution-set - Not implemented - We do '
368 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000369 raise NotImplementedError()
Jonathan Davisb45bb372018-07-19 15:05:15 -0400370
Jonathan Davisb45bb372018-07-19 15:05:15 -0400371 def delete_child_device(self, parent_device_id, child_device):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400372 log.info('delete-child_device', parent_device_id=parent_device_id,
373 child_device=child_device)
Jonathan Davisb45bb372018-07-19 15:05:15 -0400374 handler = self.devices[parent_device_id]
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400375 if handler is not None:
376 handler.delete_child_device(child_device)
377 else:
378 log.error('Could not find matching handler',
Shad Ansari78de2be2018-10-12 22:13:54 +0000379 looking_for_device_id=parent_device_id,
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400380 available_handlers=self.devices.keys())
Nicolas Palpacuer30027f42018-09-06 15:55:54 -0400381
382 # This is currently not part of the Iadapter interface
383 def collect_stats(self, device_id):
384 log.info('collect_stats', device_id=device_id)
Shad Ansari78de2be2018-10-12 22:13:54 +0000385 handler = self.devices[device_id]
Nicolas Palpacuer30027f42018-09-06 15:55:54 -0400386 if handler is not None:
387 handler.trigger_statistics_collection()
388 else:
389 log.error('Could not find matching handler',
390 looking_for_device_id=device_id,
391 available_handlers=self.devices.keys())
Scott Bakerd3190952018-09-04 15:47:28 -0700392
393 def simulate_alarm(self, device, request):
394 log.info('simulate_alarm', device=device, request=request)
395
396 if device.id not in self.devices:
397 log.error("Device does not exist", device_id=device.id)
398 return OperationResp(code=OperationResp.OPERATION_FAILURE,
Shad Ansari78de2be2018-10-12 22:13:54 +0000399 additional_info="Device %s does not exist"
400 % device.id)
Scott Bakerd3190952018-09-04 15:47:28 -0700401
402 handler = self.devices[device.id]
403
404 handler.simulate_alarm(request)
405
406 return OperationResp(code=OperationResp.OPERATION_SUCCESS)