blob: 5c8768c1fe81a6dba080dd8f31c777ead201abb6 [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):
Zack Williams0ad0a392018-11-14 10:41:08 -0700245 log.debug('send-proxied-message',
246 proxy_address=proxy_address,
247 proxied_msg=msg)
Shad Ansari2825d012018-02-22 23:57:46 +0000248 handler = self.devices[proxy_address.device_id]
249 handler.send_proxied_message(proxy_address, msg)
250
251 def receive_proxied_message(self, proxy_address, msg):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400252 log.debug('receive_proxied_message - Not implemented',
253 proxy_address=proxy_address,
Zack Williams0ad0a392018-11-14 10:41:08 -0700254 proxied_msg=msg)
Shad Ansari2825d012018-02-22 23:57:46 +0000255 raise NotImplementedError()
256
257 def receive_packet_out(self, logical_device_id, egress_port_no, msg):
258 log.debug('packet-out', logical_device_id=logical_device_id,
259 egress_port_no=egress_port_no, msg_len=len(msg))
Shad Ansarif9d2d102018-06-13 02:15:26 +0000260
Shad Ansari42db7342018-04-25 21:39:46 +0000261 def ldi_to_di(ldi):
262 di = self.logical_device_id_to_root_device_id.get(ldi)
263 if di is None:
264 logical_device = self.adapter_agent.get_logical_device(ldi)
265 di = logical_device.root_device_id
266 self.logical_device_id_to_root_device_id[ldi] = di
267 return di
268
Matteo Scandoloa171b6e2018-09-14 16:48:24 -0700269 try:
270 device_id = ldi_to_di(logical_device_id)
271 handler = self.devices[device_id]
272 handler.packet_out(egress_port_no, msg)
273 except Exception as e:
274 log.error('packet-out:exception', e=e.message)
Shad Ansari2825d012018-02-22 23:57:46 +0000275
276 def receive_inter_adapter_message(self, msg):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400277 log.info('rx_inter_adapter_msg - Not implemented')
Shad Ansari2825d012018-02-22 23:57:46 +0000278 raise NotImplementedError()
279
280 def suppress_alarm(self, filter):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400281 log.info('suppress_alarm - Not implemented yet', filter=filter)
Shad Ansari2825d012018-02-22 23:57:46 +0000282 raise NotImplementedError()
283
284 def unsuppress_alarm(self, filter):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400285 log.info('unsuppress_alarm - Not implemented yet', filter=filter)
Shad Ansari2825d012018-02-22 23:57:46 +0000286 raise NotImplementedError()
287
288 # PON Mgnt APIs #
289 def create_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400290 log.debug('create-interface - Not implemented - We do not use this',
291 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000292 raise NotImplementedError()
293
294 def update_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400295 log.debug('update-interface - Not implemented - We do not use this',
296 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000297 raise NotImplementedError()
298
299 def remove_interface(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400300 log.debug('remove-interface - Not implemented - We do not use this',
301 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000302 raise NotImplementedError()
303
304 def receive_onu_detect_state(self, proxy_address, state):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400305 log.debug('receive-onu-detect-state - Not implemented - We do not '
306 'use this', proxy_address=proxy_address,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000307 state=state)
Shad Ansari2825d012018-02-22 23:57:46 +0000308 raise NotImplementedError()
309
310 def create_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400311 log.info('create-tcont - Not implemented - We do not use this',
312 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000313 traffic_descriptor_data=traffic_descriptor_data)
314 raise NotImplementedError()
315
316 def update_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400317 log.info('update-tcont - Not implemented - We do not use this',
318 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000319 traffic_descriptor_data=traffic_descriptor_data)
320 raise NotImplementedError()
321
322 def remove_tcont(self, device, tcont_data, traffic_descriptor_data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400323 log.info('remove-tcont - Not implemented - We do not use this',
324 tcont_data=tcont_data,
Shad Ansari2825d012018-02-22 23:57:46 +0000325 traffic_descriptor_data=traffic_descriptor_data)
326 raise NotImplementedError()
327
328 def create_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400329 log.info('create-gemport - Not implemented - We do not use this',
330 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000331 raise NotImplementedError()
332
333 def update_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400334 log.info('update-gemport - Not implemented - We do not use this',
335 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000336 raise NotImplementedError()
337
338 def remove_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400339 log.info('remove-gemport - Not implemented - We do not use this',
340 data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000341 raise NotImplementedError()
342
343 def create_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400344 log.info('create-mcast-gemport - Not implemented - We do not use '
345 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000346 raise NotImplementedError()
347
348 def update_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400349 log.info('update-mcast-gemport - Not implemented - We do not use '
350 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000351 raise NotImplementedError()
352
353 def remove_multicast_gemport(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400354 log.info('remove-mcast-gemport - Not implemented - We do not use '
355 'this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000356 raise NotImplementedError()
357
358 def create_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400359 log.info('create-mcast-distribution-set - Not implemented - We do '
360 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000361 raise NotImplementedError()
362
363 def update_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400364 log.info('update-mcast-distribution-set - Not implemented - We do '
365 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000366 raise NotImplementedError()
367
368 def remove_multicast_distribution_set(self, device, data):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400369 log.info('remove-mcast-distribution-set - Not implemented - We do '
370 'not use this', data=data)
Shad Ansari2825d012018-02-22 23:57:46 +0000371 raise NotImplementedError()
Jonathan Davisb45bb372018-07-19 15:05:15 -0400372
Jonathan Davisb45bb372018-07-19 15:05:15 -0400373 def delete_child_device(self, parent_device_id, child_device):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400374 log.info('delete-child_device', parent_device_id=parent_device_id,
375 child_device=child_device)
Jonathan Davisb45bb372018-07-19 15:05:15 -0400376 handler = self.devices[parent_device_id]
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400377 if handler is not None:
378 handler.delete_child_device(child_device)
379 else:
380 log.error('Could not find matching handler',
Shad Ansari78de2be2018-10-12 22:13:54 +0000381 looking_for_device_id=parent_device_id,
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400382 available_handlers=self.devices.keys())
Nicolas Palpacuer30027f42018-09-06 15:55:54 -0400383
384 # This is currently not part of the Iadapter interface
385 def collect_stats(self, device_id):
386 log.info('collect_stats', device_id=device_id)
Shad Ansari78de2be2018-10-12 22:13:54 +0000387 handler = self.devices[device_id]
Nicolas Palpacuer30027f42018-09-06 15:55:54 -0400388 if handler is not None:
389 handler.trigger_statistics_collection()
390 else:
391 log.error('Could not find matching handler',
392 looking_for_device_id=device_id,
393 available_handlers=self.devices.keys())
Scott Bakerd3190952018-09-04 15:47:28 -0700394
395 def simulate_alarm(self, device, request):
396 log.info('simulate_alarm', device=device, request=request)
397
398 if device.id not in self.devices:
399 log.error("Device does not exist", device_id=device.id)
400 return OperationResp(code=OperationResp.OPERATION_FAILURE,
Shad Ansari78de2be2018-10-12 22:13:54 +0000401 additional_info="Device %s does not exist"
402 % device.id)
Scott Bakerd3190952018-09-04 15:47:28 -0700403
404 handler = self.devices[device.id]
405
406 handler.simulate_alarm(request)
407
408 return OperationResp(code=OperationResp.OPERATION_SUCCESS)