blob: 0712ccc1a9ac336793b5b6b1c4df354566e6812c [file] [log] [blame]
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001#
2# Copyright 2017 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"""
18Broadcom OpenOMCI OLT/ONU adapter handler.
19"""
20
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050021from __future__ import absolute_import
22import six
Devmalya Paulffc89df2019-07-31 17:43:13 -040023import arrow
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050024import structlog
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050025import json
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050026
27from collections import OrderedDict
28
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050029from twisted.internet import reactor
30from twisted.internet.defer import DeferredQueue, inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050031
32from heartbeat import HeartBeat
Devmalya Paulffc89df2019-07-31 17:43:13 -040033from pyvoltha.adapters.extensions.events.device_events.onu.onu_active_event import OnuActiveEvent
34from pyvoltha.adapters.extensions.events.kpi.onu.onu_pm_metrics import OnuPmMetrics
35from pyvoltha.adapters.extensions.events.kpi.onu.onu_omci_pm import OnuOmciPmMetrics
36from pyvoltha.adapters.extensions.events.adapter_events import AdapterEvents
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050037
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050038import pyvoltha.common.openflow.utils as fd
39from pyvoltha.common.utils.registry import registry
Matteo Scandolod8d73172019-11-26 12:15:15 -070040from pyvoltha.adapters.common.frameio.frameio import hexify
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050041from pyvoltha.common.utils.nethelpers import mac_str_to_tuple
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050042from pyvoltha.common.config.config_backend import ConsulStore
43from pyvoltha.common.config.config_backend import EtcdStore
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050044from voltha_protos.logical_device_pb2 import LogicalPort
William Kurkian8235c1e2019-03-05 12:58:28 -050045from voltha_protos.common_pb2 import OperStatus, ConnectStatus, AdminState
Matt Jeanneretc083f462019-03-11 15:02:01 -040046from voltha_protos.openflow_13_pb2 import OFPXMC_OPENFLOW_BASIC, ofp_port, OFPPS_LIVE, OFPPF_FIBER, OFPPF_1GB_FD
Matt Jeanneret3bfebff2019-04-12 18:25:03 -040047from voltha_protos.inter_container_pb2 import InterAdapterMessageType, \
Girish Gowdrae933cd32019-11-21 21:04:41 +053048 InterAdapterOmciMessage, PortCapability, InterAdapterTechProfileDownloadMessage, InterAdapterDeleteGemPortMessage, \
49 InterAdapterDeleteTcontMessage
Matt Jeannereta32441c2019-03-07 05:16:37 -050050from voltha_protos.openolt_pb2 import OnuIndication
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050051from pyvoltha.adapters.extensions.omci.onu_configuration import OMCCVersion
52from pyvoltha.adapters.extensions.omci.onu_device_entry import OnuDeviceEvents, \
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050053 OnuDeviceEntry, IN_SYNC_KEY
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050054from omci.brcm_mib_download_task import BrcmMibDownloadTask
Girish Gowdrae933cd32019-11-21 21:04:41 +053055from omci.brcm_tp_setup_task import BrcmTpSetupTask
56from omci.brcm_tp_delete_task import BrcmTpDeleteTask
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050057from omci.brcm_uni_lock_task import BrcmUniLockTask
58from omci.brcm_vlan_filter_task import BrcmVlanFilterTask
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050059from onu_gem_port import OnuGemPort
60from onu_tcont import OnuTCont
61from pon_port import PonPort
62from uni_port import UniPort, UniType
63from onu_traffic_descriptor import OnuTrafficDescriptor
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050064from pyvoltha.common.tech_profile.tech_profile import TechProfile
onkarkundargiaae99712019-09-23 15:02:52 +053065from pyvoltha.adapters.extensions.omci.tasks.omci_test_request import OmciTestRequest
66from pyvoltha.adapters.extensions.omci.omci_entities import AniG
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050067from pyvoltha.adapters.extensions.omci.omci_defs import EntityOperations, ReasonCodes
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050068
69OP = EntityOperations
70RC = ReasonCodes
71
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050072_STARTUP_RETRY_WAIT = 20
73
74
75class BrcmOpenomciOnuHandler(object):
76
77 def __init__(self, adapter, device_id):
78 self.log = structlog.get_logger(device_id=device_id)
Matteo Scandolod8d73172019-11-26 12:15:15 -070079 self.log.debug('BrcmOpenomciOnuHandler')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050080 self.adapter = adapter
Matt Jeannereta32441c2019-03-07 05:16:37 -050081 self.core_proxy = adapter.core_proxy
82 self.adapter_proxy = adapter.adapter_proxy
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050083 self.parent_adapter = None
84 self.parent_id = None
85 self.device_id = device_id
86 self.incoming_messages = DeferredQueue()
87 self.event_messages = DeferredQueue()
88 self.proxy_address = None
89 self.tx_id = 0
90 self._enabled = False
Devmalya Paulffc89df2019-07-31 17:43:13 -040091 self.events = None
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050092 self.pm_metrics = None
93 self._omcc_version = OMCCVersion.Unknown
94 self._total_tcont_count = 0 # From ANI-G ME
95 self._qos_flexibility = 0 # From ONT2_G ME
96
97 self._onu_indication = None
98 self._unis = dict() # Port # -> UniPort
99
100 self._pon = None
101 # TODO: probably shouldnt be hardcoded, determine from olt maybe?
102 self._pon_port_number = 100
103 self.logical_device_id = None
104
105 self._heartbeat = HeartBeat.create(self, device_id)
106
107 # Set up OpenOMCI environment
108 self._onu_omci_device = None
109 self._dev_info_loaded = False
110 self._deferred = None
111
112 self._in_sync_subscription = None
113 self._connectivity_subscription = None
114 self._capabilities_subscription = None
115
116 self.mac_bridge_service_profile_entity_id = 0x201
117 self.gal_enet_profile_entity_id = 0x1
118
119 self._tp_service_specific_task = dict()
120 self._tech_profile_download_done = dict()
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400121 # Stores information related to queued vlan filter tasks
122 # Dictionary with key being uni_id and value being device,uni port ,uni id and vlan id
123
124 self._queued_vlan_filter_task = dict()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500125
126 # Initialize KV store client
127 self.args = registry('main').get_args()
128 if self.args.backend == 'etcd':
129 host, port = self.args.etcd.split(':', 1)
130 self.kv_client = EtcdStore(host, port,
131 TechProfile.KV_STORE_TECH_PROFILE_PATH_PREFIX)
132 elif self.args.backend == 'consul':
133 host, port = self.args.consul.split(':', 1)
134 self.kv_client = ConsulStore(host, port,
135 TechProfile.KV_STORE_TECH_PROFILE_PATH_PREFIX)
136 else:
137 self.log.error('Invalid-backend')
138 raise Exception("Invalid-backend-for-kv-store")
139
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500140 @property
141 def enabled(self):
142 return self._enabled
143
144 @enabled.setter
145 def enabled(self, value):
146 if self._enabled != value:
147 self._enabled = value
148
149 @property
150 def omci_agent(self):
151 return self.adapter.omci_agent
152
153 @property
154 def omci_cc(self):
155 return self._onu_omci_device.omci_cc if self._onu_omci_device is not None else None
156
157 @property
158 def heartbeat(self):
159 return self._heartbeat
160
161 @property
162 def uni_ports(self):
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500163 return list(self._unis.values())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500164
165 def uni_port(self, port_no_or_name):
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500166 if isinstance(port_no_or_name, six.string_types):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500167 return next((uni for uni in self.uni_ports
168 if uni.name == port_no_or_name), None)
169
170 assert isinstance(port_no_or_name, int), 'Invalid parameter type'
171 return next((uni for uni in self.uni_ports
Girish Gowdrae933cd32019-11-21 21:04:41 +0530172 if uni.port_number == port_no_or_name), None)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500173
174 @property
175 def pon_port(self):
176 return self._pon
177
178 def receive_message(self, msg):
179 if self.omci_cc is not None:
180 self.omci_cc.receive_message(msg)
181
Matt Jeanneretc083f462019-03-11 15:02:01 -0400182 def get_ofp_port_info(self, device, port_no):
183 self.log.info('get_ofp_port_info', port_no=port_no, device_id=device.id)
184 cap = OFPPF_1GB_FD | OFPPF_FIBER
185
Girish Gowdrae933cd32019-11-21 21:04:41 +0530186 hw_addr = mac_str_to_tuple('08:%02x:%02x:%02x:%02x:%02x' %
187 ((device.parent_port_no >> 8 & 0xff),
188 device.parent_port_no & 0xff,
189 (port_no >> 16) & 0xff,
190 (port_no >> 8) & 0xff,
191 port_no & 0xff))
Matt Jeanneretc083f462019-03-11 15:02:01 -0400192
Matt Jeanneret3b7db442019-04-22 16:29:48 -0400193 uni_port = self.uni_port(int(port_no))
194 name = device.serial_number + '-' + str(uni_port.mac_bridge_port_num)
195 self.log.debug('ofp_port_name', port_no=port_no, name=name)
196
Matt Jeanneretc083f462019-03-11 15:02:01 -0400197 return PortCapability(
198 port=LogicalPort(
199 ofp_port=ofp_port(
Matt Jeanneret3b7db442019-04-22 16:29:48 -0400200 name=name,
Matt Jeanneretc083f462019-03-11 15:02:01 -0400201 hw_addr=hw_addr,
202 config=0,
203 state=OFPPS_LIVE,
204 curr=cap,
205 advertised=cap,
206 peer=cap,
207 curr_speed=OFPPF_1GB_FD,
208 max_speed=OFPPF_1GB_FD
209 ),
210 device_id=device.id,
211 device_port_no=port_no
212 )
213 )
214
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500215 # Called once when the adapter creates the device/onu instance
Matt Jeanneret84e56f62019-02-26 10:48:09 -0500216 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500217 def activate(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700218 self.log.debug('activate-device', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500219
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500220 assert device.parent_id
Matt Jeanneret0c287892019-02-28 11:48:00 -0500221 assert device.parent_port_no
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500222 assert device.proxy_address.device_id
223
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500224 self.proxy_address = device.proxy_address
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500225 self.parent_id = device.parent_id
Matt Jeanneret0c287892019-02-28 11:48:00 -0500226 self._pon_port_number = device.parent_port_no
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500227 if self.enabled is not True:
Matteo Scandolod8d73172019-11-26 12:15:15 -0700228 self.log.info('activating-new-onu', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500229 # populate what we know. rest comes later after mib sync
Matt Jeanneret0c287892019-02-28 11:48:00 -0500230 device.root = False
Matt Jeannereta32441c2019-03-07 05:16:37 -0500231 device.vendor = 'OpenONU'
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500232 device.reason = 'activating-onu'
233
Matt Jeanneret84e56f62019-02-26 10:48:09 -0500234 # TODO NEW CORE: Need to either get logical device id from core or use regular device id
Matt Jeanneret3b7db442019-04-22 16:29:48 -0400235 # pm_metrics requires a logical device id. For now set to just device_id
236 self.logical_device_id = self.device_id
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500237
Matt Jeannereta32441c2019-03-07 05:16:37 -0500238 yield self.core_proxy.device_update(device)
Matteo Scandolod8d73172019-11-26 12:15:15 -0700239 self.log.debug('device updated', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500240
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700241 yield self._init_pon_state()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500242
Matteo Scandolod8d73172019-11-26 12:15:15 -0700243 self.log.debug('pon state initialized', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500244 ############################################################################
Devmalya Paulffc89df2019-07-31 17:43:13 -0400245 # Setup Alarm handler
246 self.events = AdapterEvents(self.core_proxy, device.id, self.logical_device_id,
247 device.serial_number)
248 ############################################################################
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500249 # Setup PM configuration for this device
250 # Pass in ONU specific options
251 kwargs = {
252 OnuPmMetrics.DEFAULT_FREQUENCY_KEY: OnuPmMetrics.DEFAULT_ONU_COLLECTION_FREQUENCY,
253 'heartbeat': self.heartbeat,
254 OnuOmciPmMetrics.OMCI_DEV_KEY: self._onu_omci_device
255 }
Matteo Scandolod8d73172019-11-26 12:15:15 -0700256 self.log.debug('create-OnuPmMetrics', device_id=device.id, serial_number=device.serial_number)
Devmalya Paulffc89df2019-07-31 17:43:13 -0400257 self.pm_metrics = OnuPmMetrics(self.events, self.core_proxy, self.device_id,
Yongjie Zhang8f891ad2019-07-03 15:32:38 -0400258 self.logical_device_id, device.serial_number,
259 grouped=True, freq_override=False, **kwargs)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500260 pm_config = self.pm_metrics.make_proto()
261 self._onu_omci_device.set_pm_config(self.pm_metrics.omci_pm.openomci_interval_pm)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530262 self.log.info("initial-pm-config", device_id=device.id, serial_number=device.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500263 yield self.core_proxy.device_pm_config_update(pm_config, init=True)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500264
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500265 # Note, ONU ID and UNI intf set in add_uni_port method
Devmalya Paulffc89df2019-07-31 17:43:13 -0400266 self._onu_omci_device.alarm_synchronizer.set_alarm_params(mgr=self.events,
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500267 ani_ports=[self._pon])
aishwaryarana01a98d9fe2019-05-08 12:09:06 -0500268
Girish Gowdrae933cd32019-11-21 21:04:41 +0530269 # Start collecting stats from the device after a brief pause
aishwaryarana01a98d9fe2019-05-08 12:09:06 -0500270 reactor.callLater(10, self.pm_metrics.start_collector)
271
onkarkundargiaae99712019-09-23 15:02:52 +0530272 # Code to Run OMCI Test Action
273 kwargs_omci_test_action = {
274 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
275 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
276 }
277 serial_number = device.serial_number
278 test_request = OmciTestRequest(self.core_proxy,
279 self.omci_agent, self.device_id,
280 AniG, serial_number,
281 self.logical_device_id,
282 exclusive=False,
283 **kwargs_omci_test_action)
284 reactor.callLater(60, test_request.start_collector)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500285 self.enabled = True
286 else:
287 self.log.info('onu-already-activated')
288
289 # Called once when the adapter needs to re-create device. usually on vcore restart
William Kurkian3a206332019-04-29 11:05:47 -0400290 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500291 def reconcile(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700292 self.log.debug('reconcile-device', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500293
294 # first we verify that we got parent reference and proxy info
295 assert device.parent_id
296 assert device.proxy_address.device_id
297
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700298 self.proxy_address = device.proxy_address
299 self.parent_id = device.parent_id
300 self._pon_port_number = device.parent_port_no
301
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500302 if self.enabled is not True:
303 self.log.info('reconciling-broadcom-onu-device')
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700304 self.logical_device_id = self.device_id
305 self._init_pon_state()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500306
307 # need to restart state machines on vcore restart. there is no indication to do it for us.
308 self._onu_omci_device.start()
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700309 yield self.core_proxy.device_reason_update(self.device_id, "restarting-openomci")
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500310
311 # TODO: this is probably a bit heavy handed
312 # Force a reboot for now. We need indications to reflow to reassign tconts and gems given vcore went away
313 # This may not be necessary when mib resync actually works
314 reactor.callLater(1, self.reboot)
315
316 self.enabled = True
317 else:
318 self.log.info('onu-already-activated')
319
320 @inlineCallbacks
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700321 def _init_pon_state(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700322 self.log.debug('_init-pon-state', device_id=self.device_id, device_logical_id=self.logical_device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500323
324 self._pon = PonPort.create(self, self._pon_port_number)
Matt Jeanneret0c287892019-02-28 11:48:00 -0500325 self._pon.add_peer(self.parent_id, self._pon_port_number)
Matteo Scandolod8d73172019-11-26 12:15:15 -0700326 self.log.debug('adding-pon-port-to-agent',
327 type=self._pon.get_port().type,
328 admin_state=self._pon.get_port().admin_state,
329 oper_status=self._pon.get_port().oper_status,
330 )
Matt Jeanneret0c287892019-02-28 11:48:00 -0500331
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700332 yield self.core_proxy.port_created(self.device_id, self._pon.get_port())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500333
Matteo Scandolod8d73172019-11-26 12:15:15 -0700334 self.log.debug('added-pon-port-to-agent',
335 type=self._pon.get_port().type,
336 admin_state=self._pon.get_port().admin_state,
337 oper_status=self._pon.get_port().oper_status,
338 )
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500339
340 # Create and start the OpenOMCI ONU Device Entry for this ONU
341 self._onu_omci_device = self.omci_agent.add_device(self.device_id,
Matt Jeannereta32441c2019-03-07 05:16:37 -0500342 self.core_proxy,
343 self.adapter_proxy,
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500344 support_classes=self.adapter.broadcom_omci,
345 custom_me_map=self.adapter.custom_me_entities())
346 # Port startup
347 if self._pon is not None:
348 self._pon.enabled = True
349
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500350 def delete(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700351 self.log.info('delete-onu', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500352 if self.parent_adapter:
353 try:
354 self.parent_adapter.delete_child_device(self.parent_id, device)
355 except AttributeError:
356 self.log.debug('parent-device-delete-child-not-implemented')
357 else:
358 self.log.debug("parent-adapter-not-available")
359
360 def _create_tconts(self, uni_id, us_scheduler):
361 alloc_id = us_scheduler['alloc_id']
362 q_sched_policy = us_scheduler['q_sched_policy']
363 self.log.debug('create-tcont', us_scheduler=us_scheduler)
364
365 tcontdict = dict()
366 tcontdict['alloc-id'] = alloc_id
367 tcontdict['q_sched_policy'] = q_sched_policy
368 tcontdict['uni_id'] = uni_id
369
370 # TODO: Not sure what to do with any of this...
371 tddata = dict()
372 tddata['name'] = 'not-sure-td-profile'
373 tddata['fixed-bandwidth'] = "not-sure-fixed"
374 tddata['assured-bandwidth'] = "not-sure-assured"
375 tddata['maximum-bandwidth'] = "not-sure-max"
376 tddata['additional-bw-eligibility-indicator'] = "not-sure-additional"
377
378 td = OnuTrafficDescriptor.create(tddata)
379 tcont = OnuTCont.create(self, tcont=tcontdict, td=td)
380
381 self._pon.add_tcont(tcont)
382
383 self.log.debug('pon-add-tcont', tcont=tcont)
384
385 # Called when there is an olt up indication, providing the gem port id chosen by the olt handler
386 def _create_gemports(self, uni_id, gem_ports, alloc_id_ref, direction):
387 self.log.debug('create-gemport',
388 gem_ports=gem_ports, direction=direction)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530389 new_gem_ports = []
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500390 for gem_port in gem_ports:
391 gemdict = dict()
392 gemdict['gemport_id'] = gem_port['gemport_id']
393 gemdict['direction'] = direction
394 gemdict['alloc_id_ref'] = alloc_id_ref
395 gemdict['encryption'] = gem_port['aes_encryption']
396 gemdict['discard_config'] = dict()
397 gemdict['discard_config']['max_probability'] = \
398 gem_port['discard_config']['max_probability']
399 gemdict['discard_config']['max_threshold'] = \
400 gem_port['discard_config']['max_threshold']
401 gemdict['discard_config']['min_threshold'] = \
402 gem_port['discard_config']['min_threshold']
403 gemdict['discard_policy'] = gem_port['discard_policy']
404 gemdict['max_q_size'] = gem_port['max_q_size']
405 gemdict['pbit_map'] = gem_port['pbit_map']
406 gemdict['priority_q'] = gem_port['priority_q']
407 gemdict['scheduling_policy'] = gem_port['scheduling_policy']
408 gemdict['weight'] = gem_port['weight']
409 gemdict['uni_id'] = uni_id
410
411 gem_port = OnuGemPort.create(self, gem_port=gemdict)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530412 new_gem_ports.append(gem_port)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500413
414 self._pon.add_gem_port(gem_port)
415
416 self.log.debug('pon-add-gemport', gem_port=gem_port)
417
Girish Gowdrae933cd32019-11-21 21:04:41 +0530418 return new_gem_ports
419
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400420 def _execute_queued_vlan_filter_tasks(self, uni_id):
421 # During OLT Reboots, ONU Reboots, ONU Disable/Enable, it is seen that vlan_filter
422 # task is scheduled even before tp task. So we queue vlan-filter task if tp_task
423 # or initial-mib-download is not done. Once the tp_task is completed, we execute
424 # such queued vlan-filter tasks
425 try:
426 if uni_id in self._queued_vlan_filter_task:
427 self.log.info("executing-queued-vlan-filter-task",
428 uni_id=uni_id)
429 filter_info = self._queued_vlan_filter_task[uni_id]
430 reactor.callLater(0, self._add_vlan_filter_task, filter_info.get("device"),
431 uni_id, filter_info.get("uni_port"), filter_info.get("set_vlan_vid"))
432 # Now remove the entry from the dictionary
433 self._queued_vlan_filter_task[uni_id].clear()
434 self.log.debug("executed-queued-vlan-filter-task",
435 uni_id=uni_id)
436 except Exception as e:
437 self.log.error("vlan-filter-configuration-failed", uni_id=uni_id, error=e)
438
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500439 def _do_tech_profile_configuration(self, uni_id, tp):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500440 us_scheduler = tp['us_scheduler']
441 alloc_id = us_scheduler['alloc_id']
442 self._create_tconts(uni_id, us_scheduler)
443 upstream_gem_port_attribute_list = tp['upstream_gem_port_attribute_list']
444 self._create_gemports(uni_id, upstream_gem_port_attribute_list, alloc_id, "UPSTREAM")
445 downstream_gem_port_attribute_list = tp['downstream_gem_port_attribute_list']
446 self._create_gemports(uni_id, downstream_gem_port_attribute_list, alloc_id, "DOWNSTREAM")
447
448 def load_and_configure_tech_profile(self, uni_id, tp_path):
449 self.log.debug("loading-tech-profile-configuration", uni_id=uni_id, tp_path=tp_path)
450
451 if uni_id not in self._tp_service_specific_task:
452 self._tp_service_specific_task[uni_id] = dict()
453
454 if uni_id not in self._tech_profile_download_done:
455 self._tech_profile_download_done[uni_id] = dict()
456
457 if tp_path not in self._tech_profile_download_done[uni_id]:
458 self._tech_profile_download_done[uni_id][tp_path] = False
459
460 if not self._tech_profile_download_done[uni_id][tp_path]:
461 try:
462 if tp_path in self._tp_service_specific_task[uni_id]:
463 self.log.info("tech-profile-config-already-in-progress",
Girish Gowdrae933cd32019-11-21 21:04:41 +0530464 tp_path=tp_path)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500465 return
466
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500467 tpstored = self.kv_client[tp_path]
468 tpstring = tpstored.decode('ascii')
469 tp = json.loads(tpstring)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530470
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500471 self.log.debug("tp-instance", tp=tp)
472 self._do_tech_profile_configuration(uni_id, tp)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700473
William Kurkian3a206332019-04-29 11:05:47 -0400474 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500475 def success(_results):
476 self.log.info("tech-profile-config-done-successfully")
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700477 yield self.core_proxy.device_reason_update(self.device_id, 'tech-profile-config-download-success')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500478 if tp_path in self._tp_service_specific_task[uni_id]:
479 del self._tp_service_specific_task[uni_id][tp_path]
480 self._tech_profile_download_done[uni_id][tp_path] = True
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400481 # Now execute any vlan filter tasks that were queued for later
482 self._execute_queued_vlan_filter_tasks(uni_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530483
William Kurkian3a206332019-04-29 11:05:47 -0400484 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500485 def failure(_reason):
486 self.log.warn('tech-profile-config-failure-retrying',
Girish Gowdrae933cd32019-11-21 21:04:41 +0530487 _reason=_reason)
488 yield self.core_proxy.device_reason_update(self.device_id,
489 'tech-profile-config-download-failure-retrying')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500490 if tp_path in self._tp_service_specific_task[uni_id]:
491 del self._tp_service_specific_task[uni_id][tp_path]
492 self._deferred = reactor.callLater(_STARTUP_RETRY_WAIT, self.load_and_configure_tech_profile,
493 uni_id, tp_path)
494
495 self.log.info('downloading-tech-profile-configuration')
Girish Gowdrae933cd32019-11-21 21:04:41 +0530496 # Extract the current set of TCONT and GEM Ports from the Handler's pon_port that are
497 # relevant to this task's UNI. It won't change. But, the underlying pon_port may change
498 # due to additional tasks on different UNIs. So, it we cannot use the pon_port after
499 # this initializer
500 tconts = []
501 for tcont in list(self.pon_port.tconts.values()):
502 if tcont.uni_id is not None and tcont.uni_id != uni_id:
503 continue
504 tconts.append(tcont)
505
506 gem_ports = []
507 for gem_port in list(self.pon_port.gem_ports.values()):
508 if gem_port.uni_id is not None and gem_port.uni_id != uni_id:
509 continue
510 gem_ports.append(gem_port)
511
512 self.log.debug("tconts-gems-to-install", tconts=tconts, gem_ports=gem_ports)
513
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500514 self._tp_service_specific_task[uni_id][tp_path] = \
Girish Gowdrae933cd32019-11-21 21:04:41 +0530515 BrcmTpSetupTask(self.omci_agent, self, uni_id, tconts, gem_ports, int(tp_path.split("/")[1]))
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500516 self._deferred = \
Girish Gowdrae933cd32019-11-21 21:04:41 +0530517 self._onu_omci_device.task_runner.queue_task(self._tp_service_specific_task[uni_id][tp_path])
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500518 self._deferred.addCallbacks(success, failure)
519
520 except Exception as e:
521 self.log.exception("error-loading-tech-profile", e=e)
522 else:
523 self.log.info("tech-profile-config-already-done")
Girish Gowdrae933cd32019-11-21 21:04:41 +0530524 # Could be a case where TP exists but new gem-ports are getting added dynamically
525 tpstored = self.kv_client[tp_path]
526 tpstring = tpstored.decode('ascii')
527 tp = json.loads(tpstring)
528 upstream_gems = []
529 downstream_gems = []
530 # Find out the new Gem ports that are getting added afresh.
531 for gp in tp['upstream_gem_port_attribute_list']:
532 if self.pon_port.gem_port(gp['gemport_id'], "upstream"):
533 # gem port already exists
534 continue
535 upstream_gems.append(gp)
536 for gp in tp['downstream_gem_port_attribute_list']:
537 if self.pon_port.gem_port(gp['gemport_id'], "downstream"):
538 # gem port already exists
539 continue
540 downstream_gems.append(gp)
541
542 us_scheduler = tp['us_scheduler']
543 alloc_id = us_scheduler['alloc_id']
544
545 if len(upstream_gems) > 0 or len(downstream_gems) > 0:
546 self.log.info("installing-new-gem-ports", upstream_gems=upstream_gems, downstream_gems=downstream_gems)
547 new_upstream_gems = self._create_gemports(uni_id, upstream_gems, alloc_id, "UPSTREAM")
548 new_downstream_gems = self._create_gemports(uni_id, downstream_gems, alloc_id, "DOWNSTREAM")
549 new_gems = []
550 new_gems.extend(new_upstream_gems)
551 new_gems.extend(new_downstream_gems)
552
553 def success(_results):
554 self.log.info("new-gem-ports-successfully-installed", result=_results)
555
556 def failure(_reason):
557 self.log.warn('new-gem-port-install-failed--retrying',
558 _reason=_reason)
559 # Remove gem ports from cache. We will re-add them during the retry
560 for gp in new_gems:
561 self.pon_port.remove_gem_id(gp.gem_id, gp.direction, False)
562
563 self._deferred = reactor.callLater(_STARTUP_RETRY_WAIT, self.load_and_configure_tech_profile,
564 uni_id, tp_path)
565
566 self._tp_service_specific_task[uni_id][tp_path] = \
567 BrcmTpSetupTask(self.omci_agent, self, uni_id, [], new_gems, int(tp_path.split("/")[1]))
568 self._deferred = \
569 self._onu_omci_device.task_runner.queue_task(self._tp_service_specific_task[uni_id][tp_path])
570 self._deferred.addCallbacks(success, failure)
571
572 def delete_tech_profile(self, uni_id, tp_path, alloc_id=None, gem_port_id=None):
573 try:
Naga Manjunathe433c712020-01-02 17:27:20 +0530574 if not uni_id in self._tech_profile_download_done:
575 self.log.warn("tp-key-is-not-present", uni_id=uni_id)
576 return
577
578 if not tp_path in self._tech_profile_download_done[uni_id]:
579 self.log.warn("tp-path-is-not-present", tp_path=tp_path)
580 return
581
Girish Gowdrae933cd32019-11-21 21:04:41 +0530582 if self._tech_profile_download_done[uni_id][tp_path] is not True:
583 self.log.error("tp-download-is-not-done-in-order-to-process-tp-delete")
584 return
585
586 if alloc_id is None and gem_port_id is None:
587 self.log.error("alloc-id-and-gem-port-id-are-none")
588 return
589
590 # Extract the current set of TCONT and GEM Ports from the Handler's pon_port that are
591 # relevant to this task's UNI. It won't change. But, the underlying pon_port may change
592 # due to additional tasks on different UNIs. So, it we cannot use the pon_port affter
593 # this initializer
594 tcont = None
595 self.log.debug("tconts", tconts=list(self.pon_port.tconts.values()))
596 for tc in list(self.pon_port.tconts.values()):
597 if tc.alloc_id == alloc_id:
598 tcont = tc
599 self.pon_port.remove_tcont(tc.alloc_id, False)
600
601 gem_port = None
602 self.log.debug("gem-ports", gem_ports=list(self.pon_port.gem_ports.values()))
603 for gp in list(self.pon_port.gem_ports.values()):
604 if gp.gem_id == gem_port_id:
605 gem_port = gp
606 self.pon_port.remove_gem_id(gp.gem_id, gp.direction, False)
607
608 # tp_path is of the format <technology>/<table_id>/<uni_port_name>
609 # We need the TP Table ID
610 tp_table_id = int(tp_path.split("/")[1])
611
612 @inlineCallbacks
613 def success(_results):
614 if gem_port_id:
615 self.log.info("gem-port-delete-done-successfully")
616 if alloc_id:
617 self.log.info("tcont-delete-done-successfully")
618 # The deletion of TCONT marks the complete deletion of tech-profile
619 try:
620 del self._tech_profile_download_done[uni_id][tp_path]
621 del self._tp_service_specific_task[uni_id][tp_path]
622 except Exception as ex:
623 self.log.error("del-tp-state-info", e=ex)
624
625 # TODO: There could be multiple TP on the UNI, and also the ONU.
626 # TODO: But the below reason updates for the whole device.
627 yield self.core_proxy.device_reason_update(self.device_id, 'tech-profile-config-delete-success')
628
629 @inlineCallbacks
630 def failure(_reason, _uni_id, _tp_table_id, _tcont, _gem_port):
631 self.log.warn('tech-profile-delete-failure-retrying',
632 _reason=_reason)
633 yield self.core_proxy.device_reason_update(self.device_id,
634 'tech-profile-config-delete-failure-retrying')
635 self._deferred = \
636 self._onu_omci_device.task_runner.queue_task(self._tp_service_specific_task[uni_id][tp_path])
637 self._deferred.addCallbacks(success, failure)
638
639 self.log.info('deleting-tech-profile-configuration')
640
641 self._tp_service_specific_task[uni_id][tp_path] = \
642 BrcmTpDeleteTask(self.omci_agent, self, uni_id, tp_table_id,
643 tcont=tcont, gem_port=gem_port)
644 self._deferred = \
645 self._onu_omci_device.task_runner.queue_task(self._tp_service_specific_task[uni_id][tp_path])
646 self._deferred.addCallbacks(success, failure)
647 except Exception as e:
648 self.log.exception("failed-to-delete-tp",
649 e=e, uni_id=uni_id, tp_path=tp_path,
650 alloc_id=alloc_id, gem_port_id=gem_port_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500651
652 def update_pm_config(self, device, pm_config):
653 # TODO: This has not been tested
654 self.log.info('update_pm_config', pm_config=pm_config)
655 self.pm_metrics.update(pm_config)
656
657 # Calling this assumes the onu is active/ready and had at least an initial mib downloaded. This gets called from
658 # flow decomposition that ultimately comes from onos
659 def update_flow_table(self, device, flows):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700660 self.log.debug('update-flow-table', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500661
662 #
663 # We need to proxy through the OLT to get to the ONU
664 # Configuration from here should be using OMCI
665 #
666 # self.log.info('bulk-flow-update', device_id=device.id, flows=flows)
667
668 # no point in pushing omci flows if the device isnt reachable
669 if device.connect_status != ConnectStatus.REACHABLE or \
Girish Gowdrae933cd32019-11-21 21:04:41 +0530670 device.admin_state != AdminState.ENABLED:
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500671 self.log.warn("device-disabled-or-offline-skipping-flow-update",
672 admin=device.admin_state, connect=device.connect_status)
673 return
674
675 def is_downstream(port):
676 return port == self._pon_port_number
677
678 def is_upstream(port):
679 return not is_downstream(port)
680
681 for flow in flows:
682 _type = None
683 _port = None
684 _vlan_vid = None
685 _udp_dst = None
686 _udp_src = None
687 _ipv4_dst = None
688 _ipv4_src = None
689 _metadata = None
690 _output = None
691 _push_tpid = None
692 _field = None
693 _set_vlan_vid = None
Matt Jeanneretef06d0d2019-04-27 17:36:53 -0400694 _tunnel_id = None
695
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500696 self.log.debug('bulk-flow-update', device_id=device.id, flow=flow)
697 try:
698 _in_port = fd.get_in_port(flow)
699 assert _in_port is not None
700
701 _out_port = fd.get_out_port(flow) # may be None
702
703 if is_downstream(_in_port):
704 self.log.debug('downstream-flow', in_port=_in_port, out_port=_out_port)
705 uni_port = self.uni_port(_out_port)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530706 uni_id = _out_port & 0xF
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500707 elif is_upstream(_in_port):
708 self.log.debug('upstream-flow', in_port=_in_port, out_port=_out_port)
709 uni_port = self.uni_port(_in_port)
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400710 uni_id = _in_port & 0xF
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500711 else:
712 raise Exception('port should be 1 or 2 by our convention')
713
714 self.log.debug('flow-ports', in_port=_in_port, out_port=_out_port, uni_port=str(uni_port))
715
716 for field in fd.get_ofb_fields(flow):
717 if field.type == fd.ETH_TYPE:
718 _type = field.eth_type
719 self.log.debug('field-type-eth-type',
720 eth_type=_type)
721
722 elif field.type == fd.IP_PROTO:
723 _proto = field.ip_proto
724 self.log.debug('field-type-ip-proto',
725 ip_proto=_proto)
726
727 elif field.type == fd.IN_PORT:
728 _port = field.port
729 self.log.debug('field-type-in-port',
730 in_port=_port)
731
732 elif field.type == fd.VLAN_VID:
733 _vlan_vid = field.vlan_vid & 0xfff
734 self.log.debug('field-type-vlan-vid',
735 vlan=_vlan_vid)
736
737 elif field.type == fd.VLAN_PCP:
738 _vlan_pcp = field.vlan_pcp
739 self.log.debug('field-type-vlan-pcp',
740 pcp=_vlan_pcp)
741
742 elif field.type == fd.UDP_DST:
743 _udp_dst = field.udp_dst
744 self.log.debug('field-type-udp-dst',
745 udp_dst=_udp_dst)
746
747 elif field.type == fd.UDP_SRC:
748 _udp_src = field.udp_src
749 self.log.debug('field-type-udp-src',
750 udp_src=_udp_src)
751
752 elif field.type == fd.IPV4_DST:
753 _ipv4_dst = field.ipv4_dst
754 self.log.debug('field-type-ipv4-dst',
755 ipv4_dst=_ipv4_dst)
756
757 elif field.type == fd.IPV4_SRC:
758 _ipv4_src = field.ipv4_src
759 self.log.debug('field-type-ipv4-src',
760 ipv4_dst=_ipv4_src)
761
762 elif field.type == fd.METADATA:
763 _metadata = field.table_metadata
764 self.log.debug('field-type-metadata',
765 metadata=_metadata)
766
Matt Jeanneretef06d0d2019-04-27 17:36:53 -0400767 elif field.type == fd.TUNNEL_ID:
768 _tunnel_id = field.tunnel_id
769 self.log.debug('field-type-tunnel-id',
770 tunnel_id=_tunnel_id)
771
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500772 else:
773 raise NotImplementedError('field.type={}'.format(
774 field.type))
775
776 for action in fd.get_actions(flow):
777
778 if action.type == fd.OUTPUT:
779 _output = action.output.port
780 self.log.debug('action-type-output',
781 output=_output, in_port=_in_port)
782
783 elif action.type == fd.POP_VLAN:
784 self.log.debug('action-type-pop-vlan',
785 in_port=_in_port)
786
787 elif action.type == fd.PUSH_VLAN:
788 _push_tpid = action.push.ethertype
789 self.log.debug('action-type-push-vlan',
790 push_tpid=_push_tpid, in_port=_in_port)
791 if action.push.ethertype != 0x8100:
792 self.log.error('unhandled-tpid',
793 ethertype=action.push.ethertype)
794
795 elif action.type == fd.SET_FIELD:
796 _field = action.set_field.field.ofb_field
797 assert (action.set_field.field.oxm_class ==
798 OFPXMC_OPENFLOW_BASIC)
799 self.log.debug('action-type-set-field',
800 field=_field, in_port=_in_port)
801 if _field.type == fd.VLAN_VID:
802 _set_vlan_vid = _field.vlan_vid & 0xfff
803 self.log.debug('set-field-type-vlan-vid',
804 vlan_vid=_set_vlan_vid)
805 else:
806 self.log.error('unsupported-action-set-field-type',
807 field_type=_field.type)
808 else:
809 self.log.error('unsupported-action-type',
810 action_type=action.type, in_port=_in_port)
811
Matt Jeanneret810148b2019-09-29 12:44:01 -0400812 # OMCI set vlan task can only filter and set on vlan header attributes. Any other openflow
813 # supported match and action criteria cannot be handled by omci and must be ignored.
814 if _set_vlan_vid is None or _set_vlan_vid == 0:
815 self.log.warn('ignoring-flow-that-does-not-set-vlanid')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500816 else:
Matt Jeanneret810148b2019-09-29 12:44:01 -0400817 self.log.info('set-vlanid', uni_id=uni_id, uni_port=uni_port, set_vlan_vid=_set_vlan_vid)
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400818 self._add_vlan_filter_task(device, uni_id, uni_port, _set_vlan_vid)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500819 except Exception as e:
820 self.log.exception('failed-to-install-flow', e=e, flow=flow)
821
Girish Gowdrae933cd32019-11-21 21:04:41 +0530822 def _add_vlan_filter_task(self, device, uni_id, uni_port, _set_vlan_vid):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500823 assert uni_port is not None
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400824 if uni_id in self._tech_profile_download_done and self._tech_profile_download_done[uni_id] != {}:
825 @inlineCallbacks
826 def success(_results):
827 self.log.info('vlan-tagging-success', uni_port=uni_port, vlan=_set_vlan_vid)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700828 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-pushed')
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400829 self._vlan_filter_task = None
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500830
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400831 @inlineCallbacks
832 def failure(_reason):
833 self.log.warn('vlan-tagging-failure', uni_port=uni_port, vlan=_set_vlan_vid)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700834 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-failed-retrying')
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400835 self._vlan_filter_task = reactor.callLater(_STARTUP_RETRY_WAIT,
Girish Gowdrae933cd32019-11-21 21:04:41 +0530836 self._add_vlan_filter_task, device, uni_port.port_number,
837 uni_port, _set_vlan_vid)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500838
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400839 self.log.info('setting-vlan-tag')
Matt Jeanneret810148b2019-09-29 12:44:01 -0400840 self._vlan_filter_task = BrcmVlanFilterTask(self.omci_agent, self, uni_port, _set_vlan_vid)
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400841 self._deferred = self._onu_omci_device.task_runner.queue_task(self._vlan_filter_task)
842 self._deferred.addCallbacks(success, failure)
843 else:
844 self.log.info('tp-service-specific-task-not-done-adding-request-to-local-cache',
845 uni_id=uni_id)
Matt Jeanneret810148b2019-09-29 12:44:01 -0400846 self._queued_vlan_filter_task[uni_id] = {"device": device,
Girish Gowdrae933cd32019-11-21 21:04:41 +0530847 "uni_id": uni_id,
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400848 "uni_port": uni_port,
849 "set_vlan_vid": _set_vlan_vid}
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500850
851 def get_tx_id(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700852 self.log.debug('get-tx-id')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500853 self.tx_id += 1
854 return self.tx_id
855
Matt Jeannereta32441c2019-03-07 05:16:37 -0500856 def process_inter_adapter_message(self, request):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700857 self.log.debug('process-inter-adapter-message', type=request.header.type, from_topic=request.header.from_topic,
858 to_topic=request.header.to_topic, to_device_id=request.header.to_device_id)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500859 try:
860 if request.header.type == InterAdapterMessageType.OMCI_REQUEST:
861 omci_msg = InterAdapterOmciMessage()
862 request.body.Unpack(omci_msg)
Matteo Scandolod8d73172019-11-26 12:15:15 -0700863 self.log.debug('inter-adapter-recv-omci', omci_msg=hexify(omci_msg.message))
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500864
Matt Jeannereta32441c2019-03-07 05:16:37 -0500865 self.receive_message(omci_msg.message)
866
867 elif request.header.type == InterAdapterMessageType.ONU_IND_REQUEST:
868 onu_indication = OnuIndication()
869 request.body.Unpack(onu_indication)
Matteo Scandolod8d73172019-11-26 12:15:15 -0700870 self.log.debug('inter-adapter-recv-onu-ind', onu_id=onu_indication.onu_id,
871 oper_state=onu_indication.oper_state, admin_state=onu_indication.admin_state,
872 serial_number=onu_indication.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500873
874 if onu_indication.oper_state == "up":
875 self.create_interface(onu_indication)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530876 elif onu_indication.oper_state == "down" or onu_indication.oper_state == "unreachable":
Matt Jeannereta32441c2019-03-07 05:16:37 -0500877 self.update_interface(onu_indication)
878 else:
Matteo Scandolod8d73172019-11-26 12:15:15 -0700879 self.log.error("unknown-onu-indication", onu_id=onu_indication.onu_id,
880 serial_number=onu_indication.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500881
Matt Jeanneret3bfebff2019-04-12 18:25:03 -0400882 elif request.header.type == InterAdapterMessageType.TECH_PROFILE_DOWNLOAD_REQUEST:
883 tech_msg = InterAdapterTechProfileDownloadMessage()
884 request.body.Unpack(tech_msg)
885 self.log.debug('inter-adapter-recv-tech-profile', tech_msg=tech_msg)
886
887 self.load_and_configure_tech_profile(tech_msg.uni_id, tech_msg.path)
888
Girish Gowdrae933cd32019-11-21 21:04:41 +0530889 elif request.header.type == InterAdapterMessageType.DELETE_GEM_PORT_REQUEST:
890 del_gem_msg = InterAdapterDeleteGemPortMessage()
891 request.body.Unpack(del_gem_msg)
892 self.log.debug('inter-adapter-recv-del-gem', gem_del_msg=del_gem_msg)
893
894 self.delete_tech_profile(uni_id=del_gem_msg.uni_id,
895 gem_port_id=del_gem_msg.gem_port_id,
896 tp_path=del_gem_msg.tp_path)
897
898 elif request.header.type == InterAdapterMessageType.DELETE_TCONT_REQUEST:
899 del_tcont_msg = InterAdapterDeleteTcontMessage()
900 request.body.Unpack(del_tcont_msg)
901 self.log.debug('inter-adapter-recv-del-tcont', del_tcont_msg=del_tcont_msg)
902
903 self.delete_tech_profile(uni_id=del_tcont_msg.uni_id,
904 alloc_id=del_tcont_msg.alloc_id,
905 tp_path=del_tcont_msg.tp_path)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500906 else:
907 self.log.error("inter-adapter-unhandled-type", request=request)
908
909 except Exception as e:
910 self.log.exception("error-processing-inter-adapter-message", e=e)
911
912 # Called each time there is an onu "up" indication from the olt handler
913 @inlineCallbacks
914 def create_interface(self, onu_indication):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700915 self.log.debug('create-interface', onu_id=onu_indication.onu_id,
916 serial_number=onu_indication.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -0500917 self._onu_indication = onu_indication
918
Matt Jeanneretc083f462019-03-11 15:02:01 -0400919 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.ACTIVATING,
920 connect_status=ConnectStatus.REACHABLE)
921
Matt Jeannereta32441c2019-03-07 05:16:37 -0500922 onu_device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500923
924 self.log.debug('starting-openomci-statemachine')
925 self._subscribe_to_events()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500926 onu_device.reason = "starting-openomci"
Girish Gowdrae933cd32019-11-21 21:04:41 +0530927 reactor.callLater(1, self._onu_omci_device.start, onu_device)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700928 yield self.core_proxy.device_reason_update(self.device_id, onu_device.reason)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500929 self._heartbeat.enabled = True
930
931 # Currently called each time there is an onu "down" indication from the olt handler
932 # TODO: possibly other reasons to "update" from the olt?
Matt Jeannereta32441c2019-03-07 05:16:37 -0500933 @inlineCallbacks
934 def update_interface(self, onu_indication):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700935 self.log.debug('update-interface', onu_id=onu_indication.onu_id,
936 serial_number=onu_indication.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500937
Chaitrashree G Sd73fb9b2019-09-09 20:27:30 -0400938 if onu_indication.oper_state == 'down' or onu_indication.oper_state == "unreachable":
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500939 self.log.debug('stopping-openomci-statemachine')
940 reactor.callLater(0, self._onu_omci_device.stop)
941
942 # Let TP download happen again
943 for uni_id in self._tp_service_specific_task:
944 self._tp_service_specific_task[uni_id].clear()
945 for uni_id in self._tech_profile_download_done:
946 self._tech_profile_download_done[uni_id].clear()
947
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700948 self.disable_ports()
949 yield self.core_proxy.device_reason_update(self.device_id, "stopping-openomci")
950 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.DISCOVERED,
951 connect_status=ConnectStatus.UNREACHABLE)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500952 else:
953 self.log.debug('not-changing-openomci-statemachine')
954
955 # Not currently called by olt or anything else
William Kurkian3a206332019-04-29 11:05:47 -0400956 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500957 def remove_interface(self, data):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700958 self.log.debug('remove-interface', data=data)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500959
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500960 self.log.debug('stopping-openomci-statemachine')
961 reactor.callLater(0, self._onu_omci_device.stop)
962
963 # Let TP download happen again
964 for uni_id in self._tp_service_specific_task:
965 self._tp_service_specific_task[uni_id].clear()
966 for uni_id in self._tech_profile_download_done:
967 self._tech_profile_download_done[uni_id].clear()
968
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700969 self.disable_ports()
970 yield self.core_proxy.device_reason_update(self.device_id, "stopping-openomci")
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500971
972 # TODO: im sure there is more to do here
973
974 # Not currently called. Would be called presumably from the olt handler
William Kurkian3a206332019-04-29 11:05:47 -0400975 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500976 def remove_gemport(self, data):
977 self.log.debug('remove-gemport', data=data)
William Kurkian3a206332019-04-29 11:05:47 -0400978 device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500979 if device.connect_status != ConnectStatus.REACHABLE:
980 self.log.error('device-unreachable')
981 return
982
983 # Not currently called. Would be called presumably from the olt handler
William Kurkian3a206332019-04-29 11:05:47 -0400984 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500985 def remove_tcont(self, tcont_data, traffic_descriptor_data):
986 self.log.debug('remove-tcont', tcont_data=tcont_data, traffic_descriptor_data=traffic_descriptor_data)
William Kurkian3a206332019-04-29 11:05:47 -0400987 device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500988 if device.connect_status != ConnectStatus.REACHABLE:
989 self.log.error('device-unreachable')
990 return
991
992 # TODO: Create some omci task that encompases this what intended
993
994 # Not currently called. Would be called presumably from the olt handler
995 def create_multicast_gemport(self, data):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700996 self.log.debug('create-multicast-gem-port', data=data)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500997
998 # TODO: create objects and populate for later omci calls
999
1000 def disable(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001001 self.log.debug('disable', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001002 try:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001003 self.log.info('sending-uni-lock-towards-device', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001004
Matt Jeanneret80766692019-05-03 09:58:38 -04001005 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001006 def stop_anyway(reason):
1007 # proceed with disable regardless if we could reach the onu. for example onu is unplugged
1008 self.log.debug('stopping-openomci-statemachine')
1009 reactor.callLater(0, self._onu_omci_device.stop)
1010
Girish Gowdrae933cd32019-11-21 21:04:41 +05301011 # Note: The tech-profile states should not be cleared here.
1012 # They will be cleared if a DELETE_TCONT_REQ was triggered from openolt-adapter
1013 # as a result of all flow references for the TCONT being removed OR as a result
1014 # 'update_interface' call with oper_state as "down".
1015
1016 # for uni_id in self._tp_service_specific_task:
1017 # self._tp_service_specific_task[uni_id].clear()
1018 # for uni_id in self._tech_profile_download_done:
1019 # self._tech_profile_download_done[uni_id].clear()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001020
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001021 self.disable_ports()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001022 device.oper_status = OperStatus.UNKNOWN
1023 device.reason = "omci-admin-lock"
Matt Jeannereta8fd85f2019-05-01 12:16:45 -04001024 yield self.core_proxy.device_update(device)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001025
1026 # lock all the unis
1027 task = BrcmUniLockTask(self.omci_agent, self.device_id, lock=True)
1028 self._deferred = self._onu_omci_device.task_runner.queue_task(task)
1029 self._deferred.addCallbacks(stop_anyway, stop_anyway)
1030 except Exception as e:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001031 self.log.exception('exception-in-onu-disable', exception=e)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001032
William Kurkian3a206332019-04-29 11:05:47 -04001033 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001034 def reenable(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001035 self.log.debug('reenable', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001036 try:
1037 # Start up OpenOMCI state machines for this device
1038 # this will ultimately resync mib and unlock unis on successful redownloading the mib
1039 self.log.debug('restarting-openomci-statemachine')
1040 self._subscribe_to_events()
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001041 yield self.core_proxy.device_reason_update(self.device_id, "restarting-openomci")
serkant.uluderya2cb65f72019-09-30 14:01:51 -07001042 reactor.callLater(1, self._onu_omci_device.start, device)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001043 self._heartbeat.enabled = True
1044 except Exception as e:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001045 self.log.exception('exception-in-onu-reenable', exception=e)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001046
William Kurkian3a206332019-04-29 11:05:47 -04001047 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001048 def reboot(self):
1049 self.log.info('reboot-device')
William Kurkian3a206332019-04-29 11:05:47 -04001050 device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001051 if device.connect_status != ConnectStatus.REACHABLE:
1052 self.log.error("device-unreachable")
1053 return
1054
William Kurkian3a206332019-04-29 11:05:47 -04001055 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001056 def success(_results):
1057 self.log.info('reboot-success', _results=_results)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001058 self.disable_ports()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001059 device.connect_status = ConnectStatus.UNREACHABLE
1060 device.oper_status = OperStatus.DISCOVERED
1061 device.reason = "rebooting"
Matt Jeannereta8fd85f2019-05-01 12:16:45 -04001062 yield self.core_proxy.device_update(device)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001063
1064 def failure(_reason):
1065 self.log.info('reboot-failure', _reason=_reason)
1066
1067 self._deferred = self._onu_omci_device.reboot()
1068 self._deferred.addCallbacks(success, failure)
1069
William Kurkian3a206332019-04-29 11:05:47 -04001070 @inlineCallbacks
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001071 def disable_ports(self):
1072 self.log.info('disable-ports', device_id=self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001073
1074 # Disable all ports on that device
Matt Jeanneret80766692019-05-03 09:58:38 -04001075 yield self.core_proxy.ports_state_update(self.device_id, OperStatus.UNKNOWN)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001076
William Kurkian3a206332019-04-29 11:05:47 -04001077 @inlineCallbacks
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001078 def enable_ports(self):
1079 self.log.info('enable-ports', device_id=self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001080
Matt Jeanneret80766692019-05-03 09:58:38 -04001081 # Enable all ports on that device
1082 yield self.core_proxy.ports_state_update(self.device_id, OperStatus.ACTIVE)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001083
1084 # Called just before openomci state machine is started. These listen for events from selected state machines,
1085 # most importantly, mib in sync. Which ultimately leads to downloading the mib
1086 def _subscribe_to_events(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001087 self.log.debug('subscribe-to-events')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001088
1089 # OMCI MIB Database sync status
1090 bus = self._onu_omci_device.event_bus
1091 topic = OnuDeviceEntry.event_bus_topic(self.device_id,
1092 OnuDeviceEvents.MibDatabaseSyncEvent)
1093 self._in_sync_subscription = bus.subscribe(topic, self.in_sync_handler)
1094
1095 # OMCI Capabilities
1096 bus = self._onu_omci_device.event_bus
1097 topic = OnuDeviceEntry.event_bus_topic(self.device_id,
1098 OnuDeviceEvents.OmciCapabilitiesEvent)
1099 self._capabilities_subscription = bus.subscribe(topic, self.capabilties_handler)
1100
1101 # Called when the mib is in sync
1102 def in_sync_handler(self, _topic, msg):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001103 self.log.debug('in-sync-handler', _topic=_topic, msg=msg)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001104 if self._in_sync_subscription is not None:
1105 try:
1106 in_sync = msg[IN_SYNC_KEY]
1107
1108 if in_sync:
1109 # Only call this once
1110 bus = self._onu_omci_device.event_bus
1111 bus.unsubscribe(self._in_sync_subscription)
1112 self._in_sync_subscription = None
1113
1114 # Start up device_info load
1115 self.log.debug('running-mib-sync')
1116 reactor.callLater(0, self._mib_in_sync)
1117
1118 except Exception as e:
1119 self.log.exception('in-sync', e=e)
1120
1121 def capabilties_handler(self, _topic, _msg):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001122 self.log.debug('capabilities-handler', _topic=_topic, msg=_msg)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001123 if self._capabilities_subscription is not None:
1124 self.log.debug('capabilities-handler-done')
1125
1126 # Mib is in sync, we can now query what we learned and actually start pushing ME (download) to the ONU.
1127 # Currently uses a basic mib download task that create a bridge with a single gem port and uni, only allowing EAP
1128 # Implement your own MibDownloadTask if you wish to setup something different by default
Matt Jeanneretc083f462019-03-11 15:02:01 -04001129 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001130 def _mib_in_sync(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001131 self.log.debug('mib-in-sync')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001132
1133 omci = self._onu_omci_device
1134 in_sync = omci.mib_db_in_sync
1135
Matt Jeanneretc083f462019-03-11 15:02:01 -04001136 device = yield self.core_proxy.get_device(self.device_id)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001137 yield self.core_proxy.device_reason_update(self.device_id, 'discovery-mibsync-complete')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001138
1139 if not self._dev_info_loaded:
1140 self.log.info('loading-device-data-from-mib', in_sync=in_sync, already_loaded=self._dev_info_loaded)
1141
1142 omci_dev = self._onu_omci_device
1143 config = omci_dev.configuration
1144
1145 # TODO: run this sooner somehow. shouldnt have to wait for mib sync to push an initial download
1146 # In Sync, we can register logical ports now. Ideally this could occur on
1147 # the first time we received a successful (no timeout) OMCI Rx response.
1148 try:
1149
1150 # sort the lists so we get consistent port ordering.
1151 ani_list = sorted(config.ani_g_entities) if config.ani_g_entities else []
1152 uni_list = sorted(config.uni_g_entities) if config.uni_g_entities else []
1153 pptp_list = sorted(config.pptp_entities) if config.pptp_entities else []
1154 veip_list = sorted(config.veip_entities) if config.veip_entities else []
1155
1156 if ani_list is None or (pptp_list is None and veip_list is None):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001157 self.log.warn("no-ani-or-unis")
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001158 yield self.core_proxy.device_reason_update(self.device_id, 'onu-missing-required-elements')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001159 raise Exception("onu-missing-required-elements")
1160
1161 # Currently logging the ani, pptp, veip, and uni for information purposes.
1162 # Actually act on the veip/pptp as its ME is the most correct one to use in later tasks.
1163 # And in some ONU the UNI-G list is incomplete or incorrect...
1164 for entity_id in ani_list:
1165 ani_value = config.ani_g_entities[entity_id]
1166 self.log.debug("discovered-ani", entity_id=entity_id, value=ani_value)
1167 # TODO: currently only one OLT PON port/ANI, so this works out. With NGPON there will be 2..?
1168 self._total_tcont_count = ani_value.get('total-tcont-count')
1169 self.log.debug("set-total-tcont-count", tcont_count=self._total_tcont_count)
1170
1171 for entity_id in uni_list:
1172 uni_value = config.uni_g_entities[entity_id]
1173 self.log.debug("discovered-uni", entity_id=entity_id, value=uni_value)
1174
1175 uni_entities = OrderedDict()
1176 for entity_id in pptp_list:
1177 pptp_value = config.pptp_entities[entity_id]
1178 self.log.debug("discovered-pptp", entity_id=entity_id, value=pptp_value)
1179 uni_entities[entity_id] = UniType.PPTP
1180
1181 for entity_id in veip_list:
1182 veip_value = config.veip_entities[entity_id]
1183 self.log.debug("discovered-veip", entity_id=entity_id, value=veip_value)
1184 uni_entities[entity_id] = UniType.VEIP
1185
1186 uni_id = 0
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -05001187 for entity_id, uni_type in uni_entities.items():
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001188 try:
Matt Jeanneretc083f462019-03-11 15:02:01 -04001189 yield self._add_uni_port(device, entity_id, uni_id, uni_type)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001190 uni_id += 1
1191 except AssertionError as e:
1192 self.log.warn("could not add UNI", entity_id=entity_id, uni_type=uni_type, e=e)
1193
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001194 self._qos_flexibility = config.qos_configuration_flexibility or 0
1195 self._omcc_version = config.omcc_version or OMCCVersion.Unknown
1196
1197 if self._unis:
1198 self._dev_info_loaded = True
1199 else:
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001200 yield self.core_proxy.device_reason_update(self.device_id, 'no-usable-unis')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001201 self.log.warn("no-usable-unis")
1202 raise Exception("no-usable-unis")
1203
1204 except Exception as e:
1205 self.log.exception('device-info-load', e=e)
1206 self._deferred = reactor.callLater(_STARTUP_RETRY_WAIT, self._mib_in_sync)
1207
1208 else:
1209 self.log.info('device-info-already-loaded', in_sync=in_sync, already_loaded=self._dev_info_loaded)
1210
1211 if self._dev_info_loaded:
Matt Jeanneretad9a0f12019-05-09 14:05:49 -04001212 if device.admin_state == AdminState.PREPROVISIONED or device.admin_state == AdminState.ENABLED:
Matt Jeanneretc083f462019-03-11 15:02:01 -04001213
1214 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001215 def success(_results):
1216 self.log.info('mib-download-success', _results=_results)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001217 yield self.enable_ports()
Matt Jeanneretc083f462019-03-11 15:02:01 -04001218 yield self.core_proxy.device_state_update(device.id,
Girish Gowdrae933cd32019-11-21 21:04:41 +05301219 oper_status=OperStatus.ACTIVE,
1220 connect_status=ConnectStatus.REACHABLE)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001221 yield self.core_proxy.device_reason_update(self.device_id, 'initial-mib-downloaded')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001222 self._mib_download_task = None
Devmalya Paulffc89df2019-07-31 17:43:13 -04001223 yield self.onu_active_event()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001224
Matt Jeanneretc083f462019-03-11 15:02:01 -04001225 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001226 def failure(_reason):
1227 self.log.warn('mib-download-failure-retrying', _reason=_reason)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001228 yield self.core_proxy.device_reason_update(self.device_id, 'initial-mib-download-failure-retrying')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001229 self._deferred = reactor.callLater(_STARTUP_RETRY_WAIT, self._mib_in_sync)
1230
1231 # Download an initial mib that creates simple bridge that can pass EAP. On success (above) finally set
1232 # the device to active/reachable. This then opens up the handler to openflow pushes from outside
1233 self.log.info('downloading-initial-mib-configuration')
1234 self._mib_download_task = BrcmMibDownloadTask(self.omci_agent, self)
1235 self._deferred = self._onu_omci_device.task_runner.queue_task(self._mib_download_task)
1236 self._deferred.addCallbacks(success, failure)
1237 else:
1238 self.log.info('admin-down-disabling')
1239 self.disable(device)
1240 else:
1241 self.log.info('device-info-not-loaded-skipping-mib-download')
1242
Matt Jeanneretc083f462019-03-11 15:02:01 -04001243 @inlineCallbacks
1244 def _add_uni_port(self, device, entity_id, uni_id, uni_type=UniType.PPTP):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001245 self.log.debug('add-uni-port')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001246
Matt Jeanneretc083f462019-03-11 15:02:01 -04001247 uni_no = self.mk_uni_port_num(self._onu_indication.intf_id, self._onu_indication.onu_id, uni_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001248
1249 # TODO: Some or parts of this likely need to move to UniPort. especially the format stuff
1250 uni_name = "uni-{}".format(uni_no)
1251
Girish Gowdrae933cd32019-11-21 21:04:41 +05301252 mac_bridge_port_num = uni_id + 1 # TODO +1 is only to test non-zero index
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001253
1254 self.log.debug('uni-port-inputs', uni_no=uni_no, uni_id=uni_id, uni_name=uni_name, uni_type=uni_type,
Yongjie Zhang286099c2019-08-06 13:39:07 -04001255 entity_id=entity_id, mac_bridge_port_num=mac_bridge_port_num, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001256
1257 uni_port = UniPort.create(self, uni_name, uni_id, uni_no, uni_name, uni_type)
1258 uni_port.entity_id = entity_id
1259 uni_port.enabled = True
1260 uni_port.mac_bridge_port_num = mac_bridge_port_num
1261
1262 self.log.debug("created-uni-port", uni=uni_port)
1263
Matt Jeanneretc083f462019-03-11 15:02:01 -04001264 yield self.core_proxy.port_created(device.id, uni_port.get_port())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001265
1266 self._unis[uni_port.port_number] = uni_port
1267
1268 self._onu_omci_device.alarm_synchronizer.set_alarm_params(onu_id=self._onu_indication.onu_id,
Girish Gowdrae933cd32019-11-21 21:04:41 +05301269 uni_ports=self.uni_ports,
1270 serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001271
Matt Jeanneretc083f462019-03-11 15:02:01 -04001272 # TODO NEW CORE: Figure out how to gain this knowledge from the olt. for now cheat terribly.
1273 def mk_uni_port_num(self, intf_id, onu_id, uni_id):
Amit Ghosh65400f12019-11-21 12:04:12 +00001274 MAX_PONS_PER_OLT = 256
1275 MAX_ONUS_PER_PON = 256
Matt Jeanneretc083f462019-03-11 15:02:01 -04001276 MAX_UNIS_PER_ONU = 16
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001277
Matt Jeanneretc083f462019-03-11 15:02:01 -04001278 assert intf_id < MAX_PONS_PER_OLT
1279 assert onu_id < MAX_ONUS_PER_PON
1280 assert uni_id < MAX_UNIS_PER_ONU
Amit Ghosh65400f12019-11-21 12:04:12 +00001281 return intf_id << 12 | onu_id << 4 | uni_id
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04001282
1283 @inlineCallbacks
Devmalya Paulffc89df2019-07-31 17:43:13 -04001284 def onu_active_event(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001285 self.log.debug('onu-active-event')
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04001286 try:
1287 device = yield self.core_proxy.get_device(self.device_id)
1288 parent_device = yield self.core_proxy.get_device(self.parent_id)
1289 olt_serial_number = parent_device.serial_number
Devmalya Paulffc89df2019-07-31 17:43:13 -04001290 raised_ts = arrow.utcnow().timestamp
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04001291
1292 self.log.debug("onu-indication-context-data",
Girish Gowdrae933cd32019-11-21 21:04:41 +05301293 pon_id=self._onu_indication.intf_id,
1294 onu_id=self._onu_indication.onu_id,
1295 registration_id=self.device_id,
1296 device_id=self.device_id,
1297 onu_serial_number=device.serial_number,
1298 olt_serial_number=olt_serial_number,
1299 raised_ts=raised_ts)
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04001300
Devmalya Paulffc89df2019-07-31 17:43:13 -04001301 self.log.debug("Trying-to-raise-onu-active-event")
1302 OnuActiveEvent(self.events, self.device_id,
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04001303 self._onu_indication.intf_id,
1304 device.serial_number,
1305 str(self.device_id),
Girish Gowdrae933cd32019-11-21 21:04:41 +05301306 olt_serial_number, raised_ts,
Devmalya Paulffc89df2019-07-31 17:43:13 -04001307 onu_id=self._onu_indication.onu_id).send(True)
1308 except Exception as active_event_error:
1309 self.log.exception('onu-activated-event-error',
1310 errmsg=active_event_error.message)