blob: d2486feab751c5611200e4f91f66829a9576388f [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
Girish Gowdra5b499342020-06-16 14:45:51 -070022
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050023import json
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -050024import random
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050025from collections import OrderedDict
26
Girish Gowdra5b499342020-06-16 14:45:51 -070027import arrow
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050028import pyvoltha.common.openflow.utils as fd
Girish Gowdra5b499342020-06-16 14:45:51 -070029import six
30import structlog
31from heartbeat import HeartBeat
32from omci.brcm_mcast_task import BrcmMcastTask
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050033from omci.brcm_mib_download_task import BrcmMibDownloadTask
Girish Gowdrae933cd32019-11-21 21:04:41 +053034from omci.brcm_tp_delete_task import BrcmTpDeleteTask
Girish Gowdra5b499342020-06-16 14:45:51 -070035from omci.brcm_tp_setup_task import BrcmTpSetupTask
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050036from omci.brcm_uni_lock_task import BrcmUniLockTask
kesavand5a2f61d2020-11-23 21:49:50 -050037from omci.brcm_uni_status import BrcmUniStatusTask
Matt Jeanneret72f96fc2019-02-11 10:53:05 -050038from omci.brcm_vlan_filter_task import BrcmVlanFilterTask
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050039from onu_gem_port import OnuGemPort
40from onu_tcont import OnuTCont
41from pon_port import PonPort
Girish Gowdrac5117452020-08-03 11:20:53 -070042from tp_state import TpState
Girish Gowdra5b499342020-06-16 14:45:51 -070043from pyvoltha.adapters.common.frameio.frameio import hexify
44from pyvoltha.adapters.common.kvstore.twisted_etcd_store import TwistedEtcdStore
45from pyvoltha.adapters.extensions.events.adapter_events import AdapterEvents
46from pyvoltha.adapters.extensions.events.device_events.onu.onu_active_event import OnuActiveEvent
47from pyvoltha.adapters.extensions.events.device_events.onu.onu_deleted_event import OnuDeletedEvent
48from pyvoltha.adapters.extensions.events.device_events.onu.onu_disabled_event import OnuDisabledEvent
49from pyvoltha.adapters.extensions.events.kpi.onu.onu_omci_pm import OnuOmciPmMetrics
50from pyvoltha.adapters.extensions.events.kpi.onu.onu_pm_metrics import OnuPmMetrics
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -050051from pyvoltha.adapters.extensions.omci.omci_defs import EntityOperations, ReasonCodes
Girish Gowdra5b499342020-06-16 14:45:51 -070052from pyvoltha.adapters.extensions.omci.omci_entities import AniG, Tcont, MacBridgeServiceProfile
53from pyvoltha.adapters.extensions.omci.onu_device_entry import OnuDeviceEvents, \
54 OnuDeviceEntry, IN_SYNC_KEY
55from pyvoltha.adapters.extensions.omci.tasks.omci_test_request import OmciTestRequest
56from pyvoltha.common.tech_profile.tech_profile import TechProfile
57from pyvoltha.common.utils.registry import registry
58from twisted.internet import reactor
kesavand5a2f61d2020-11-23 21:49:50 -050059from twisted.internet.defer import inlineCallbacks, returnValue, DeferredQueue
Girish Gowdra5b499342020-06-16 14:45:51 -070060from uni_port import RESERVED_TRANSPARENT_VLAN
61from uni_port import UniPort, UniType
62from voltha_protos.common_pb2 import OperStatus, ConnectStatus, AdminState
63from voltha_protos.device_pb2 import Port
64from voltha_protos.inter_container_pb2 import InterAdapterMessageType, \
65 InterAdapterOmciMessage, InterAdapterTechProfileDownloadMessage, InterAdapterDeleteGemPortMessage, \
66 InterAdapterDeleteTcontMessage
67from voltha_protos.openflow_13_pb2 import OFPXMC_OPENFLOW_BASIC
68from voltha_protos.openolt_pb2 import OnuIndication
onkarkundargia1e2af22020-01-27 11:51:43 +053069from voltha_protos.voltha_pb2 import TestResponse
kesavand5a2f61d2020-11-23 21:49:50 -050070from voltha_protos.extensions_pb2 import SingleGetValueResponse, GetValueResponse
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050071
72OP = EntityOperations
73RC = ReasonCodes
74
Girish Gowdradc98d812020-03-20 13:04:58 -070075IS_MULTICAST = 'is_multicast'
Mahir Gunyel5de33fe2020-03-03 22:38:44 -080076GEM_PORT_ID = 'gemport_id'
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -050077_STARTUP_RETRY_WAIT = 10
Mahir Gunyele9110a32020-02-20 14:56:50 -080078_PATH_SEPERATOR = "/"
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050079
80
81class BrcmOpenomciOnuHandler(object):
82
83 def __init__(self, adapter, device_id):
84 self.log = structlog.get_logger(device_id=device_id)
Matt Jeanneret08a8e862019-12-20 14:02:32 -050085 self.log.debug('starting-handler')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050086 self.adapter = adapter
Matt Jeannereta32441c2019-03-07 05:16:37 -050087 self.core_proxy = adapter.core_proxy
88 self.adapter_proxy = adapter.adapter_proxy
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050089 self.parent_id = None
90 self.device_id = device_id
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050091 self.proxy_address = None
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -050092 self._enabled = False
Girish Gowdra322cca12020-08-09 15:55:54 -070093 self._is_device_active_and_reachable = False
Devmalya Paulffc89df2019-07-31 17:43:13 -040094 self.events = None
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -050095 self._pm_metrics = None
96 self._pm_metrics_started = False
97 self._test_request = None
98 self._test_request_started = False
Girish Gowdradc98d812020-03-20 13:04:58 -070099 self._tp = dict() # tp_id -> technology profile definition in KV Store.
Matt Jeanneret5e331892019-12-07 21:31:45 -0500100 self._reconciling = False
kesavand86a0fcf2020-08-25 08:25:28 +0530101 self.olt_serial_number = ""
kesavand5a2f61d2020-11-23 21:49:50 -0500102 self.uni_status_response_queue = DeferredQueue()
103 self._results = SingleGetValueResponse()
Matt Jeanneret5e331892019-12-07 21:31:45 -0500104
105 # Persisted onu configuration needed in case of reconciliation.
106 self._onu_persisted_state = {
107 'onu_id': None,
108 'intf_id': None,
109 'serial_number': None,
110 'admin_state': None,
111 'oper_state': None,
112 'uni_config': list()
113 }
114
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500115 self._unis = dict() # Port # -> UniPort
116
117 self._pon = None
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500118 self._pon_port_number = 100
119 self.logical_device_id = None
120
121 self._heartbeat = HeartBeat.create(self, device_id)
122
123 # Set up OpenOMCI environment
124 self._onu_omci_device = None
125 self._dev_info_loaded = False
126 self._deferred = None
127
128 self._in_sync_subscription = None
Matt Jeanneretf4113222019-08-14 19:44:34 -0400129 self._port_state_subscription = None
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500130 self._connectivity_subscription = None
131 self._capabilities_subscription = None
132
133 self.mac_bridge_service_profile_entity_id = 0x201
134 self.gal_enet_profile_entity_id = 0x1
135
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400136 # Stores information related to queued vlan filter tasks
137 # Dictionary with key being uni_id and value being device,uni port ,uni id and vlan id
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400138 self._queued_vlan_filter_task = dict()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500139
Girish Gowdra6dd965a2020-08-13 19:13:33 -0700140 self._multicast_task = None
141
Girish Gowdradc98d812020-03-20 13:04:58 -0700142 self._set_vlan = dict() # uni_id, tp_id -> set_vlan_id
Girish Gowdrac5117452020-08-03 11:20:53 -0700143 self._tp_state_map_per_uni = dict() # uni_id -> {dictionary tp_id->TpState}
Matt Jeanneret5e331892019-12-07 21:31:45 -0500144
145 # Paths from kv store
146 ONU_PATH = 'service/voltha/openonu'
147
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500148 # Initialize KV store client
149 self.args = registry('main').get_args()
Matt Jeanneret5e331892019-12-07 21:31:45 -0500150 host, port = self.args.etcd.split(':', 1)
151 self.tp_kv_client = TwistedEtcdStore(host, port, TechProfile.KV_STORE_TECH_PROFILE_PATH_PREFIX)
152 self.onu_kv_client = TwistedEtcdStore(host, port, ONU_PATH)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500153
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500154 @property
155 def enabled(self):
156 return self._enabled
157
158 @enabled.setter
159 def enabled(self, value):
160 if self._enabled != value:
161 self._enabled = value
162
163 @property
164 def omci_agent(self):
165 return self.adapter.omci_agent
166
167 @property
168 def omci_cc(self):
169 return self._onu_omci_device.omci_cc if self._onu_omci_device is not None else None
170
171 @property
172 def heartbeat(self):
173 return self._heartbeat
174
175 @property
176 def uni_ports(self):
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500177 return list(self._unis.values())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500178
Girish Gowdra322cca12020-08-09 15:55:54 -0700179 @property
180 def is_device_active_and_reachable(self):
181 return self._is_device_active_and_reachable
182
183 @is_device_active_and_reachable.setter
184 def is_device_active_and_reachable(self, value):
185 self._is_device_active_and_reachable = value
186
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500187 def uni_port(self, port_no_or_name):
Matt Jeanneret2e3cb8d2019-11-16 09:22:41 -0500188 if isinstance(port_no_or_name, six.string_types):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500189 return next((uni for uni in self.uni_ports
190 if uni.name == port_no_or_name), None)
191
192 assert isinstance(port_no_or_name, int), 'Invalid parameter type'
193 return next((uni for uni in self.uni_ports
Girish Gowdrae933cd32019-11-21 21:04:41 +0530194 if uni.port_number == port_no_or_name), None)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500195
196 @property
197 def pon_port(self):
198 return self._pon
199
Girish Gowdraa73ee452019-12-20 18:52:17 +0530200 @property
201 def onu_omci_device(self):
202 return self._onu_omci_device
203
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500204 def receive_message(self, msg):
205 if self.omci_cc is not None:
206 self.omci_cc.receive_message(msg)
207
208 # Called once when the adapter creates the device/onu instance
Matt Jeanneret84e56f62019-02-26 10:48:09 -0500209 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500210 def activate(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700211 self.log.debug('activate-device', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500212
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500213 assert device.parent_id
Matt Jeanneret0c287892019-02-28 11:48:00 -0500214 assert device.parent_port_no
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500215 assert device.proxy_address.device_id
216
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500217 self.proxy_address = device.proxy_address
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500218 self.parent_id = device.parent_id
Matt Jeanneret0c287892019-02-28 11:48:00 -0500219 self._pon_port_number = device.parent_port_no
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500220 if self.enabled is not True:
Matteo Scandolod8d73172019-11-26 12:15:15 -0700221 self.log.info('activating-new-onu', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500222 # populate what we know. rest comes later after mib sync
Matt Jeanneret0c287892019-02-28 11:48:00 -0500223 device.root = False
Matt Jeannereta32441c2019-03-07 05:16:37 -0500224 device.vendor = 'OpenONU'
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500225 device.reason = 'activating-onu'
226
Matt Jeanneret84e56f62019-02-26 10:48:09 -0500227 # TODO NEW CORE: Need to either get logical device id from core or use regular device id
Matt Jeanneret3b7db442019-04-22 16:29:48 -0400228 # pm_metrics requires a logical device id. For now set to just device_id
229 self.logical_device_id = self.device_id
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500230
Matt Jeanneret5e331892019-12-07 21:31:45 -0500231 self._onu_persisted_state['serial_number'] = device.serial_number
232 try:
233 self.log.debug('updating-onu-state', device_id=self.device_id,
234 onu_persisted_state=self._onu_persisted_state)
235 yield self.onu_kv_client.set(self.device_id, json.dumps(self._onu_persisted_state))
236 except Exception as e:
237 self.log.error('could-not-store-onu-state', device_id=self.device_id,
238 onu_persisted_state=self._onu_persisted_state, e=e)
239 # if we cannot write to storage we can proceed, for now.
240 # later onu indications from the olt will have another chance
241
Matt Jeannereta32441c2019-03-07 05:16:37 -0500242 yield self.core_proxy.device_update(device)
Matt Jeanneret08a8e862019-12-20 14:02:32 -0500243 self.log.debug('device-updated', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500244
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700245 yield self._init_pon_state()
Matteo Scandolod8d73172019-11-26 12:15:15 -0700246 self.log.debug('pon state initialized', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500247
Matt Jeanneret5e331892019-12-07 21:31:45 -0500248 yield self._init_metrics()
249 self.log.debug('metrics initialized', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -0500250
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500251 self.enabled = True
252 else:
253 self.log.info('onu-already-activated')
254
255 # Called once when the adapter needs to re-create device. usually on vcore restart
William Kurkian3a206332019-04-29 11:05:47 -0400256 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500257 def reconcile(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700258 self.log.debug('reconcile-device', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500259
Matt Jeanneret5e331892019-12-07 21:31:45 -0500260 if self._reconciling:
261 self.log.debug('already-running-reconcile-device', device_id=device.id, serial_number=device.serial_number)
262 return
263
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500264 # first we verify that we got parent reference and proxy info
265 assert device.parent_id
266 assert device.proxy_address.device_id
267
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700268 self.proxy_address = device.proxy_address
269 self.parent_id = device.parent_id
270 self._pon_port_number = device.parent_port_no
271
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500272 if self.enabled is not True:
Matt Jeanneret5e331892019-12-07 21:31:45 -0500273 self._reconciling = True
274 self.log.info('reconciling-openonu-device')
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700275 self.logical_device_id = self.device_id
Matt Jeanneret5e331892019-12-07 21:31:45 -0500276
277 try:
278 query_data = yield self.onu_kv_client.get(device.id)
279 self._onu_persisted_state = json.loads(query_data)
280 self.log.debug('restored-onu-state', device_id=self.device_id,
281 onu_persisted_state=self._onu_persisted_state)
282 except Exception as e:
283 self.log.error('no-stored-onu-state', device_id=device.id, e=e)
284 # there is nothing we can do without data. flag the device as UNKNOWN and cannot reconcile
285 # likely it will take manual steps to delete/re-add this onu
286 yield self.core_proxy.device_reason_update(self.device_id, "cannot-reconcile")
287 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.UNKNOWN)
288 return
289
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700290 self._init_pon_state()
Matt Jeanneret5e331892019-12-07 21:31:45 -0500291 self.log.debug('pon state initialized', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500292
Matt Jeanneret5e331892019-12-07 21:31:45 -0500293 self._init_metrics()
294 self.log.debug('metrics initialized', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500295
Matt Jeanneret5e331892019-12-07 21:31:45 -0500296 self._subscribe_to_events()
297 # need to restart omci start machines and reload mib database. once db is loaded we can finish reconcile
298 self._onu_omci_device.start(device)
299 self._heartbeat.enabled = True
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500300
301 self.enabled = True
302 else:
303 self.log.info('onu-already-activated')
304
305 @inlineCallbacks
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700306 def _init_pon_state(self):
Matt Jeanneret08a8e862019-12-20 14:02:32 -0500307 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 -0500308
309 self._pon = PonPort.create(self, self._pon_port_number)
Matt Jeanneret0c287892019-02-28 11:48:00 -0500310 self._pon.add_peer(self.parent_id, self._pon_port_number)
Matteo Scandolod8d73172019-11-26 12:15:15 -0700311 self.log.debug('adding-pon-port-to-agent',
312 type=self._pon.get_port().type,
313 admin_state=self._pon.get_port().admin_state,
314 oper_status=self._pon.get_port().oper_status,
315 )
Matt Jeanneret0c287892019-02-28 11:48:00 -0500316
Matt Jeanneret5e331892019-12-07 21:31:45 -0500317 if not self._reconciling:
318 yield self.core_proxy.port_created(self.device_id, self._pon.get_port())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500319
Matteo Scandolod8d73172019-11-26 12:15:15 -0700320 self.log.debug('added-pon-port-to-agent',
321 type=self._pon.get_port().type,
322 admin_state=self._pon.get_port().admin_state,
323 oper_status=self._pon.get_port().oper_status,
324 )
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500325
326 # Create and start the OpenOMCI ONU Device Entry for this ONU
327 self._onu_omci_device = self.omci_agent.add_device(self.device_id,
Matt Jeannereta32441c2019-03-07 05:16:37 -0500328 self.core_proxy,
329 self.adapter_proxy,
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500330 support_classes=self.adapter.broadcom_omci,
331 custom_me_map=self.adapter.custom_me_entities())
332 # Port startup
333 if self._pon is not None:
334 self._pon.enabled = True
335
Matt Jeanneret5e331892019-12-07 21:31:45 -0500336 @inlineCallbacks
337 def _init_metrics(self):
338 self.log.debug('init-metrics', device_id=self.device_id, device_logical_id=self.logical_device_id)
339
340 serial_number = self._onu_persisted_state.get('serial_number')
341
342 ############################################################################
343 # Setup Alarm handler
344 self.events = AdapterEvents(self.core_proxy, self.device_id, self.logical_device_id,
345 serial_number)
346 ############################################################################
347 # Setup PM configuration for this device
348 # Pass in ONU specific options
349 kwargs = {
350 OnuPmMetrics.DEFAULT_FREQUENCY_KEY: OnuPmMetrics.DEFAULT_ONU_COLLECTION_FREQUENCY,
351 'heartbeat': self.heartbeat,
352 OnuOmciPmMetrics.OMCI_DEV_KEY: self._onu_omci_device
353 }
354 self.log.debug('create-pm-metrics', device_id=self.device_id, serial_number=serial_number)
355 self._pm_metrics = OnuPmMetrics(self.events, self.core_proxy, self.device_id,
356 self.logical_device_id, serial_number,
357 grouped=True, freq_override=False, **kwargs)
358 pm_config = self._pm_metrics.make_proto()
359 self._onu_omci_device.set_pm_config(self._pm_metrics.omci_pm.openomci_interval_pm)
360 self.log.debug("initial-pm-config", device_id=self.device_id, serial_number=serial_number)
361
362 if not self._reconciling:
363 yield self.core_proxy.device_pm_config_update(pm_config, init=True)
364
365 # Note, ONU ID and UNI intf set in add_uni_port method
366 self._onu_omci_device.alarm_synchronizer.set_alarm_params(mgr=self.events,
367 ani_ports=[self._pon])
368
369 # Code to Run OMCI Test Action
370 kwargs_omci_test_action = {
371 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
372 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
373 }
374 self._test_request = OmciTestRequest(self.core_proxy,
375 self.omci_agent, self.device_id,
376 AniG, serial_number,
377 self.logical_device_id,
378 exclusive=False,
379 **kwargs_omci_test_action)
380
381 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500382 def delete(self, device):
Matteo Scandolod8d73172019-11-26 12:15:15 -0700383 self.log.info('delete-onu', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneret5e331892019-12-07 21:31:45 -0500384 try:
385 yield self.onu_kv_client.delete(device.id)
386 except Exception as e:
387 self.log.error('could-not-delete-onu-state', device_id=device.id, e=e)
388
Devmalya Paul1e1b1722020-05-07 02:51:15 -0400389 try:
390 self._deferred.cancel()
391 self._test_request.stop_collector()
392 self._pm_metrics.stop_collector()
393 self.log.debug('removing-openomci-statemachine')
394 self.omci_agent.remove_device(device.id, cleanup=True)
395 yield self.onu_deleted_event()
396 except Exception as e:
397 self.log.error('could-not-delete-onu', device_id=device.id, e=e)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500398
399 def _create_tconts(self, uni_id, us_scheduler):
400 alloc_id = us_scheduler['alloc_id']
401 q_sched_policy = us_scheduler['q_sched_policy']
402 self.log.debug('create-tcont', us_scheduler=us_scheduler)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800403 # TODO: revisit for multi tconts support
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800404 new_tconts = []
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500405 tcontdict = dict()
406 tcontdict['alloc-id'] = alloc_id
407 tcontdict['q_sched_policy'] = q_sched_policy
408 tcontdict['uni_id'] = uni_id
409
Matt Jeanneret3789d0d2020-01-19 09:03:42 -0500410 tcont = OnuTCont.create(self, tcont=tcontdict)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500411
Girish Gowdra7c1240c2020-07-15 15:06:42 -0700412 success = self._pon.add_tcont(tcont, True)
Matt Jeanneret2ca384f2020-03-06 13:49:31 -0500413 if success:
414 new_tconts.append(tcont)
415 self.log.debug('pon-add-tcont', tcont=tcont)
416
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800417 return new_tconts
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500418
419 # Called when there is an olt up indication, providing the gem port id chosen by the olt handler
420 def _create_gemports(self, uni_id, gem_ports, alloc_id_ref, direction):
421 self.log.debug('create-gemport',
422 gem_ports=gem_ports, direction=direction)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530423 new_gem_ports = []
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500424 for gem_port in gem_ports:
425 gemdict = dict()
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800426 if gem_port[IS_MULTICAST] == 'True':
427 gemdict[GEM_PORT_ID] = gem_port['multicast_gem_id']
428 gemdict[IS_MULTICAST] = True
429 else:
430 gemdict[GEM_PORT_ID] = gem_port[GEM_PORT_ID]
431 gemdict[IS_MULTICAST] = False
432
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500433 gemdict['direction'] = direction
434 gemdict['alloc_id_ref'] = alloc_id_ref
435 gemdict['encryption'] = gem_port['aes_encryption']
436 gemdict['discard_config'] = dict()
437 gemdict['discard_config']['max_probability'] = \
438 gem_port['discard_config']['max_probability']
439 gemdict['discard_config']['max_threshold'] = \
440 gem_port['discard_config']['max_threshold']
441 gemdict['discard_config']['min_threshold'] = \
442 gem_port['discard_config']['min_threshold']
443 gemdict['discard_policy'] = gem_port['discard_policy']
444 gemdict['max_q_size'] = gem_port['max_q_size']
445 gemdict['pbit_map'] = gem_port['pbit_map']
446 gemdict['priority_q'] = gem_port['priority_q']
447 gemdict['scheduling_policy'] = gem_port['scheduling_policy']
448 gemdict['weight'] = gem_port['weight']
449 gemdict['uni_id'] = uni_id
450
451 gem_port = OnuGemPort.create(self, gem_port=gemdict)
452
Matt Jeanneret2ca384f2020-03-06 13:49:31 -0500453 success = self._pon.add_gem_port(gem_port, True)
454 if success:
455 new_gem_ports.append(gem_port)
456 self.log.debug('pon-add-gemport', gem_port=gem_port)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500457
Girish Gowdrae933cd32019-11-21 21:04:41 +0530458 return new_gem_ports
459
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800460 def _execute_queued_vlan_filter_tasks(self, uni_id, tp_id):
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400461 # During OLT Reboots, ONU Reboots, ONU Disable/Enable, it is seen that vlan_filter
462 # task is scheduled even before tp task. So we queue vlan-filter task if tp_task
463 # or initial-mib-download is not done. Once the tp_task is completed, we execute
464 # such queued vlan-filter tasks
465 try:
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800466 if uni_id in self._queued_vlan_filter_task and tp_id in self._queued_vlan_filter_task[uni_id]:
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400467 self.log.info("executing-queued-vlan-filter-task",
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800468 uni_id=uni_id, tp_id=tp_id)
Mahir Gunyela982ec32020-02-25 12:30:37 -0800469 for filter_info in self._queued_vlan_filter_task[uni_id][tp_id]:
470 reactor.callLater(0, self._add_vlan_filter_task, filter_info.get("device"),
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800471 uni_id=uni_id, uni_port=filter_info.get("uni_port"),
472 match_vlan=filter_info.get("match_vlan"),
473 _set_vlan_vid=filter_info.get("set_vlan_vid"),
474 _set_vlan_pcp=filter_info.get("set_vlan_pcp"),
475 tp_id=filter_info.get("tp_id"))
Girish Gowdraaf98a082020-03-05 16:40:51 -0800476 # Now remove the entry from the dictionary
Girish Gowdraaf98a082020-03-05 16:40:51 -0800477 self.log.debug("executed-queued-vlan-filter-task",
478 uni_id=uni_id, tp_id=tp_id)
Girish Gowdraa63eda82020-05-12 13:40:04 -0700479
480 # Now delete the key entry for the tp_id once we have handled the
481 # queued vlan filter tasks for that tp_id
482 del self._queued_vlan_filter_task[uni_id][tp_id]
483 # If the queued vlan filter tasks for all the tp_ids on a given
484 # uni_id is handled, then delete the uni_id key
485 if len(self._queued_vlan_filter_task[uni_id]) == 0:
486 del self._queued_vlan_filter_task[uni_id]
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400487 except Exception as e:
488 self.log.error("vlan-filter-configuration-failed", uni_id=uni_id, error=e)
489
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500490 def _do_tech_profile_configuration(self, uni_id, tp):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500491 us_scheduler = tp['us_scheduler']
492 alloc_id = us_scheduler['alloc_id']
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800493 new_tconts = self._create_tconts(uni_id, us_scheduler)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500494 upstream_gem_port_attribute_list = tp['upstream_gem_port_attribute_list']
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800495 new_upstream_gems = self._create_gemports(uni_id, upstream_gem_port_attribute_list, alloc_id, "UPSTREAM")
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500496 downstream_gem_port_attribute_list = tp['downstream_gem_port_attribute_list']
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800497 new_downstream_gems = self._create_gemports(uni_id, downstream_gem_port_attribute_list, alloc_id, "DOWNSTREAM")
498
499 new_gems = []
500 new_gems.extend(new_upstream_gems)
501 new_gems.extend(new_downstream_gems)
502
503 return new_tconts, new_gems
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500504
Matt Jeanneret5e331892019-12-07 21:31:45 -0500505 @inlineCallbacks
Girish Gowdrab3895a02020-06-12 15:34:20 -0700506 def _get_tp_instance_from_kv_store(self, tp_path):
507 _max_tp_load_retry_count = 5
508 _curr_retry_cnt = 0
509 _tp_instance = None
510 while _curr_retry_cnt < _max_tp_load_retry_count:
511 _curr_retry_cnt += 1
512 try:
513 _tp_instance = yield self.tp_kv_client.get(tp_path)
514 except Exception as e:
515 pass
516 if _tp_instance is None:
517 self.log.error("failed-to-load-tp--retrying", retry_cnt=_curr_retry_cnt)
518 continue
519 # if we have got a valid tp instance, break from loop
520 break
521
522 returnValue(_tp_instance)
523
524 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500525 def load_and_configure_tech_profile(self, uni_id, tp_path):
526 self.log.debug("loading-tech-profile-configuration", uni_id=uni_id, tp_path=tp_path)
Mahir Gunyele9110a32020-02-20 14:56:50 -0800527 tp_id = self.extract_tp_id_from_path(tp_path)
Girish Gowdrac5117452020-08-03 11:20:53 -0700528 if tp_id not in self._tp_state_map_per_uni[uni_id]:
529 self._tp_state_map_per_uni[uni_id][tp_id] = TpState(self, uni_id, tp_path)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500530
Girish Gowdrac5117452020-08-03 11:20:53 -0700531 if not self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done:
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500532 try:
Girish Gowdrac5117452020-08-03 11:20:53 -0700533 if self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref is not None:
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500534 self.log.info("tech-profile-config-already-in-progress",
Girish Gowdrae933cd32019-11-21 21:04:41 +0530535 tp_path=tp_path)
Matt Jeanneret5e331892019-12-07 21:31:45 -0500536 returnValue(None)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500537
Girish Gowdrab3895a02020-06-12 15:34:20 -0700538 if tp_path in self._tp:
539 tp = self._tp[tp_path]
540 else:
541 tpstored = yield self._get_tp_instance_from_kv_store(tp_path)
542 if tpstored is None:
543 self.log.error("failed-to-load-tp-instance", tp_path=tp_path)
544 returnValue(None)
545 tpstring = tpstored.decode('ascii')
546 tp = json.loads(tpstring)
547 self._tp[tp_id] = tp
548
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500549 self.log.debug("tp-instance", tp=tp)
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800550 tconts, gem_ports = self._do_tech_profile_configuration(uni_id, tp)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -0700551
William Kurkian3a206332019-04-29 11:05:47 -0400552 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500553 def success(_results):
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800554 self.log.info("tech-profile-config-done-successfully", uni_id=uni_id, tp_id=tp_id)
Girish Gowdrac5117452020-08-03 11:20:53 -0700555 if tp_id in self._tp_state_map_per_uni[uni_id]:
556 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = None
557 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done = True
Chaitrashree G S8fb96782019-08-19 00:10:49 -0400558 # Now execute any vlan filter tasks that were queued for later
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800559 reactor.callInThread(self._execute_queued_vlan_filter_tasks, uni_id, tp_id)
Matt Jeanneretd84c9072020-01-31 06:33:27 -0500560 yield self.core_proxy.device_reason_update(self.device_id, 'tech-profile-config-download-success')
Girish Gowdrae933cd32019-11-21 21:04:41 +0530561
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800562 # Execute mcast task
563 for gem in gem_ports:
Girish Gowdradc98d812020-03-20 13:04:58 -0700564 self.log.debug("checking-multicast-service-for-gem ", gem=gem)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800565 if gem.mcast is True:
Girish Gowdradc98d812020-03-20 13:04:58 -0700566 self.log.info("found-multicast-service-for-gem ", gem=gem, uni_id=uni_id, tp_id=tp_id)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800567 reactor.callInThread(self.start_multicast_service, uni_id, tp_path)
568 self.log.debug("started_multicast_service-successfully", tconts=tconts, gems=gem_ports)
569 break
570
William Kurkian3a206332019-04-29 11:05:47 -0400571 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500572 def failure(_reason):
Mahir Gunyel5afa9542020-02-23 22:54:04 -0800573 self.log.warn('tech-profile-config-failure-retrying', uni_id=uni_id, tp_id=tp_id,
Girish Gowdrae933cd32019-11-21 21:04:41 +0530574 _reason=_reason)
Girish Gowdrac5117452020-08-03 11:20:53 -0700575 if tp_id in self._tp_state_map_per_uni[uni_id]:
576 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = None
577 retry = random.randint(1, 5)
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -0500578 reactor.callLater(retry, self.load_and_configure_tech_profile,
579 uni_id, tp_path)
Matt Jeanneretd84c9072020-01-31 06:33:27 -0500580 yield self.core_proxy.device_reason_update(self.device_id,
581 'tech-profile-config-download-failure-retrying')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500582
Mahir Gunyela982ec32020-02-25 12:30:37 -0800583 self.log.info('downloading-tech-profile-configuration', uni_id=uni_id, tp_id=tp_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530584 self.log.debug("tconts-gems-to-install", tconts=tconts, gem_ports=gem_ports)
585
Matt Jeanneret2ca384f2020-03-06 13:49:31 -0500586 self.log.debug("current-cached-tconts", tconts=list(self.pon_port.tconts.values()))
587 self.log.debug("current-cached-gem-ports", gem_ports=list(self.pon_port.gem_ports.values()))
588
Girish Gowdrac5117452020-08-03 11:20:53 -0700589 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = \
Mahir Gunyele9110a32020-02-20 14:56:50 -0800590 BrcmTpSetupTask(self.omci_agent, self, uni_id, tconts, gem_ports, tp_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500591 self._deferred = \
Girish Gowdrac5117452020-08-03 11:20:53 -0700592 self._onu_omci_device.task_runner.queue_task(self._tp_state_map_per_uni[uni_id][tp_id].
593 tp_task_ref)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500594 self._deferred.addCallbacks(success, failure)
595
596 except Exception as e:
597 self.log.exception("error-loading-tech-profile", e=e)
598 else:
Girish Gowdradc98d812020-03-20 13:04:58 -0700599 # There is an active tech-profile task ongoing on this UNI port. So, reschedule this task
600 # after a short interval
Girish Gowdrac5117452020-08-03 11:20:53 -0700601 for tpid in self._tp_state_map_per_uni[uni_id]:
602 if self._tp_state_map_per_uni[uni_id][tpid].tp_task_ref is not None:
603 self.log.debug("active-tp-tasks-in-progress-for-uni--scheduling-this-task-for-later",
604 uni_id=uni_id, tp_id=tpid)
605 retry = random.randint(1, 5)
606 reactor.callLater(retry, self.load_and_configure_tech_profile,
607 uni_id, tp_path)
608 return
Girish Gowdradc98d812020-03-20 13:04:58 -0700609
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500610 self.log.info("tech-profile-config-already-done")
Girish Gowdradc98d812020-03-20 13:04:58 -0700611
Girish Gowdrae933cd32019-11-21 21:04:41 +0530612 # Could be a case where TP exists but new gem-ports are getting added dynamically
Matt Jeanneret5e331892019-12-07 21:31:45 -0500613 tpstored = yield self.tp_kv_client.get(tp_path)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530614 tpstring = tpstored.decode('ascii')
615 tp = json.loads(tpstring)
616 upstream_gems = []
617 downstream_gems = []
618 # Find out the new Gem ports that are getting added afresh.
619 for gp in tp['upstream_gem_port_attribute_list']:
620 if self.pon_port.gem_port(gp['gemport_id'], "upstream"):
621 # gem port already exists
622 continue
623 upstream_gems.append(gp)
624 for gp in tp['downstream_gem_port_attribute_list']:
625 if self.pon_port.gem_port(gp['gemport_id'], "downstream"):
626 # gem port already exists
627 continue
628 downstream_gems.append(gp)
629
630 us_scheduler = tp['us_scheduler']
631 alloc_id = us_scheduler['alloc_id']
632
633 if len(upstream_gems) > 0 or len(downstream_gems) > 0:
634 self.log.info("installing-new-gem-ports", upstream_gems=upstream_gems, downstream_gems=downstream_gems)
635 new_upstream_gems = self._create_gemports(uni_id, upstream_gems, alloc_id, "UPSTREAM")
636 new_downstream_gems = self._create_gemports(uni_id, downstream_gems, alloc_id, "DOWNSTREAM")
637 new_gems = []
638 new_gems.extend(new_upstream_gems)
639 new_gems.extend(new_downstream_gems)
640
641 def success(_results):
642 self.log.info("new-gem-ports-successfully-installed", result=_results)
Girish Gowdra865776d2020-08-12 14:59:03 -0700643 if tp_id in self._tp_state_map_per_uni[uni_id]:
644 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = None
Girish Gowdra6dd965a2020-08-13 19:13:33 -0700645 # Execute mcast task
646 for gem in downstream_gems:
647 self.log.debug("checking-multicast-service-for-gem ", gem=gem)
648 if gem.mcast:
649 self.log.info("found-multicast-service-for-gem ", gem=gem, uni_id=uni_id, tp_id=tp_id)
650 reactor.callInThread(self.start_multicast_service, uni_id, tp_path)
651 self.log.debug("started_multicast_service-successfully", gem=gem)
652 break
Girish Gowdrae933cd32019-11-21 21:04:41 +0530653
654 def failure(_reason):
655 self.log.warn('new-gem-port-install-failed--retrying',
656 _reason=_reason)
Girish Gowdra865776d2020-08-12 14:59:03 -0700657 if tp_id in self._tp_state_map_per_uni[uni_id]:
658 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = None
Girish Gowdrae933cd32019-11-21 21:04:41 +0530659 # Remove gem ports from cache. We will re-add them during the retry
660 for gp in new_gems:
661 self.pon_port.remove_gem_id(gp.gem_id, gp.direction, False)
662
Girish Gowdrac5117452020-08-03 11:20:53 -0700663 retry = random.randint(1, 5)
Matt Jeanneret04ebe8f2020-01-26 01:05:23 -0500664 reactor.callLater(retry, self.load_and_configure_tech_profile,
665 uni_id, tp_path)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530666
Girish Gowdra8777c852020-07-23 12:00:23 -0700667 if self._pon.get_tcont(alloc_id) is None:
668 self.log.error("no-valid-tcont-reference-for-tp-id--not-installing-gem", alloc_id=alloc_id, tp_id=tp_id)
669 return
670
Girish Gowdrac5117452020-08-03 11:20:53 -0700671 self._tp_state_map_per_uni[uni_id][tp_id].tp_task_ref = \
Girish Gowdra8777c852020-07-23 12:00:23 -0700672 BrcmTpSetupTask(self.omci_agent, self, uni_id, [self._pon.get_tcont(alloc_id)], new_gems, tp_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530673 self._deferred = \
Girish Gowdrac5117452020-08-03 11:20:53 -0700674 self._onu_omci_device.task_runner.queue_task(self._tp_state_map_per_uni[uni_id][tp_id].
675 tp_task_ref)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530676 self._deferred.addCallbacks(success, failure)
Girish Gowdradc98d812020-03-20 13:04:58 -0700677
Matt Jeanneret5e331892019-12-07 21:31:45 -0500678 @inlineCallbacks
Girish Gowdradc98d812020-03-20 13:04:58 -0700679 def start_multicast_service(self, uni_id, tp_path, retry_count=0):
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800680 self.log.debug("starting-multicast-service", uni_id=uni_id, tp_path=tp_path)
681 tp_id = self.extract_tp_id_from_path(tp_path)
682 if uni_id in self._set_vlan and tp_id in self._set_vlan[uni_id]:
683 try:
684 tp = self._tp[tp_id]
685 if tp is None:
Matt Jeanneret5e331892019-12-07 21:31:45 -0500686 tpstored = yield self.tp_kv_client.get(tp_path)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800687 tpstring = tpstored.decode('ascii')
688 tp = json.loads(tpstring)
689 if tp is None:
690 self.log.error("cannot-find-tp-to-start-multicast-service", uni_id=uni_id, tp_path=tp_path)
691 return
692 else:
693 self._tp[tp_id] = tp
694
695 self.log.debug("mcast-vlan-learned-before", self._set_vlan[uni_id][tp_id], uni_id=uni_id, tp_id=tp_id)
Girish Gowdradc98d812020-03-20 13:04:58 -0700696
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800697 def success(_results):
698 self.log.debug('multicast-success', uni_id=uni_id)
699 self._multicast_task = None
700
701 def failure(_reason):
702 self.log.warn('multicast-failure', _reason=_reason)
Girish Gowdrac5117452020-08-03 11:20:53 -0700703 retry = random.randint(1, 5)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800704 reactor.callLater(retry, self.start_multicast_service,
Girish Gowdradc98d812020-03-20 13:04:58 -0700705 uni_id, tp_path)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800706
707 self.log.debug('starting-multicast-task', mcast_vlan_id=self._set_vlan[uni_id][tp_id])
708 downstream_gem_port_attribute_list = tp['downstream_gem_port_attribute_list']
709 for i in range(len(downstream_gem_port_attribute_list)):
710 if IS_MULTICAST in downstream_gem_port_attribute_list[i] and \
711 downstream_gem_port_attribute_list[i][IS_MULTICAST] == 'True':
Girish Gowdradc98d812020-03-20 13:04:58 -0700712 dynamic_access_control_list_table = downstream_gem_port_attribute_list[i][
713 'dynamic_access_control_list'].split("-")
714 static_access_control_list_table = downstream_gem_port_attribute_list[i][
715 'static_access_control_list'].split("-")
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800716 multicast_gem_id = downstream_gem_port_attribute_list[i]['multicast_gem_id']
Girish Gowdra6dd965a2020-08-13 19:13:33 -0700717 self._multicast_task = BrcmMcastTask(self.omci_agent, self, self.device_id, uni_id, tp_id,
718 self._set_vlan[uni_id][tp_id],
719 dynamic_access_control_list_table,
720 static_access_control_list_table, multicast_gem_id)
721 self._deferred = self._onu_omci_device.task_runner.queue_task(self._multicast_task)
722 self._deferred.addCallbacks(success, failure)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800723 break
724
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800725 except Exception as e:
726 self.log.exception("error-loading-multicast", e=e)
727 else:
Girish Gowdradc98d812020-03-20 13:04:58 -0700728 if retry_count < 30:
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800729 retry_count = +1
Girish Gowdradc98d812020-03-20 13:04:58 -0700730 self.log.debug("going-to-wait-for-flow-to-learn-mcast-vlan", uni_id=uni_id, tp_id=tp_id,
731 retry=retry_count)
Mahir Gunyel5de33fe2020-03-03 22:38:44 -0800732 reactor.callLater(0.5, self.start_multicast_service, uni_id, tp_path, retry_count)
733 else:
Girish Gowdradc98d812020-03-20 13:04:58 -0700734 self.log.error("mcast-vlan-not-configured-yet-failing-mcast-service-conf", uni_id=uni_id, tp_id=tp_id,
735 retry=retry_count)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530736
Girish Gowdraba4b1812020-07-17 12:21:26 -0700737 def _clear_alloc_id_gem_port_from_internal_cache(self, alloc_id=None, gem_port_id=None):
738 tcont = None
739 gem_port = None
740 if alloc_id is not None:
741 self.log.debug("current-cached-tconts", tconts=list(self.pon_port.tconts.values()))
742 for tc in list(self.pon_port.tconts.values()):
743 if tc.alloc_id == alloc_id:
744 self.log.info("removing-tcont-from-internal-cache",
745 alloc_id=alloc_id)
746 tcont = tc
747 self.pon_port.remove_tcont(tc.alloc_id, False)
748
749 if gem_port_id is not None:
750 self.log.debug("current-cached-gem-ports", gem_ports=list(self.pon_port.gem_ports.values()))
751 for gp in list(self.pon_port.gem_ports.values()):
752 if gp.gem_id == gem_port_id:
753 self.log.info("removing-gem-from-internal-cache",
754 gem_port_id=gem_port_id, direction=gp.direction)
755 gem_port = gp
756 self.pon_port.remove_gem_id(gp.gem_id, gp.direction, False)
757
758 return tcont, gem_port
759
Girish Gowdrac5117452020-08-03 11:20:53 -0700760 def _tcont_delete_complete(self, uni_id, tp_id):
761 if not self._tp_state_map_per_uni[uni_id][tp_id].is_all_pon_resource_delete_complete():
762 self.log.info("waiting-for-gem-port-delete-to-complete-before-clearing-tp-states")
763 retry = random.randint(1, 5)
764 reactor.callLater(retry, self._tcont_delete_complete, uni_id, tp_id)
765 return
766 self.log.info("tp-delete-complete")
767 # Clear TP states
768 self._tp_state_map_per_uni[uni_id][tp_id].reset_tp_state()
769 del self._tp_state_map_per_uni[uni_id][tp_id]
770
771 def delete_tech_profile(self, uni_id, tp_path, tcont=None, gem_port=None):
772 alloc_id = None
773 gem_port_id = None
Girish Gowdrae933cd32019-11-21 21:04:41 +0530774 try:
Mahir Gunyele9110a32020-02-20 14:56:50 -0800775 tp_table_id = self.extract_tp_id_from_path(tp_path)
Girish Gowdraba4b1812020-07-17 12:21:26 -0700776 # Extract the current set of TCONT and GEM Ports from the Handler's pon_port that are
777 # relevant to this task's UNI. It won't change. But, the underlying pon_port may change
778 # due to additional tasks on different UNIs. So, it we cannot use the pon_port affter
779 # this initializer
Girish Gowdrac5117452020-08-03 11:20:53 -0700780 alloc_id = tcont.alloc_id if tcont is not None else None
781 gem_port_id = gem_port.gem_id if gem_port is not None else None
782 self._clear_alloc_id_gem_port_from_internal_cache(alloc_id, gem_port_id)
Girish Gowdraba4b1812020-07-17 12:21:26 -0700783
Girish Gowdrac5117452020-08-03 11:20:53 -0700784 if tp_table_id not in self._tp_state_map_per_uni[uni_id]:
Mahir Gunyele9110a32020-02-20 14:56:50 -0800785 self.log.warn("tp-id-is-not-present", uni_id=uni_id, tp_id=tp_table_id)
Naga Manjunathe433c712020-01-02 17:27:20 +0530786 return
787
Girish Gowdrac5117452020-08-03 11:20:53 -0700788 if self._tp_state_map_per_uni[uni_id][tp_table_id].tp_setup_done is not True:
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800789 self.log.error("tp-download-is-not-done-in-order-to-process-tp-delete", uni_id=uni_id,
790 tp_id=tp_table_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530791 return
792
793 if alloc_id is None and gem_port_id is None:
Mahir Gunyele9110a32020-02-20 14:56:50 -0800794 self.log.error("alloc-id-and-gem-port-id-are-none", uni_id=uni_id, tp_id=tp_table_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530795 return
796
Girish Gowdrae933cd32019-11-21 21:04:41 +0530797 @inlineCallbacks
798 def success(_results):
799 if gem_port_id:
800 self.log.info("gem-port-delete-done-successfully")
Girish Gowdrac5117452020-08-03 11:20:53 -0700801 self._tp_state_map_per_uni[uni_id][tp_table_id].pon_resource_delete_complete(TpState.GEM_ID,
802 gem_port_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530803 if alloc_id:
804 self.log.info("tcont-delete-done-successfully")
805 # The deletion of TCONT marks the complete deletion of tech-profile
Girish Gowdrac5117452020-08-03 11:20:53 -0700806 self._tp_state_map_per_uni[uni_id][tp_table_id].pon_resource_delete_complete(TpState.ALLOC_ID,
807 alloc_id)
808 self._tcont_delete_complete(uni_id, tp_table_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530809
810 # TODO: There could be multiple TP on the UNI, and also the ONU.
811 # TODO: But the below reason updates for the whole device.
812 yield self.core_proxy.device_reason_update(self.device_id, 'tech-profile-config-delete-success')
813
814 @inlineCallbacks
Girish Gowdraa73ee452019-12-20 18:52:17 +0530815 def failure(_reason):
Girish Gowdrae933cd32019-11-21 21:04:41 +0530816 self.log.warn('tech-profile-delete-failure-retrying',
817 _reason=_reason)
Girish Gowdrac5117452020-08-03 11:20:53 -0700818 retry = random.randint(1, 5)
819 _tcont = self._tp_state_map_per_uni[uni_id][tp_table_id].get_queued_resource_for_delete(TpState.ALLOC_ID, alloc_id)
820 _gem_port = self._tp_state_map_per_uni[uni_id][tp_table_id].get_queued_resource_for_delete(TpState.GEM_ID, gem_port_id)
821 reactor.callLater(retry, self.delete_tech_profile, uni_id, tp_path, _tcont, _gem_port)
Matt Jeanneretd84c9072020-01-31 06:33:27 -0500822 yield self.core_proxy.device_reason_update(self.device_id,
823 'tech-profile-config-delete-failure-retrying')
Girish Gowdrae933cd32019-11-21 21:04:41 +0530824
825 self.log.info('deleting-tech-profile-configuration')
826
Girish Gowdraa73ee452019-12-20 18:52:17 +0530827 if tcont is None and gem_port is None:
828 if alloc_id is not None:
829 self.log.error("tcont-info-corresponding-to-alloc-id-not-found", alloc_id=alloc_id)
830 if gem_port_id is not None:
831 self.log.error("gem-port-info-corresponding-to-gem-port-id-not-found", gem_port_id=gem_port_id)
832 return
833
Girish Gowdrac5117452020-08-03 11:20:53 -0700834 self._tp_state_map_per_uni[uni_id][tp_table_id].tp_task_ref = \
Girish Gowdrae933cd32019-11-21 21:04:41 +0530835 BrcmTpDeleteTask(self.omci_agent, self, uni_id, tp_table_id,
836 tcont=tcont, gem_port=gem_port)
837 self._deferred = \
Girish Gowdrac5117452020-08-03 11:20:53 -0700838 self._onu_omci_device.task_runner.queue_task(self._tp_state_map_per_uni[uni_id][tp_table_id].
839 tp_task_ref)
Girish Gowdrae933cd32019-11-21 21:04:41 +0530840 self._deferred.addCallbacks(success, failure)
841 except Exception as e:
842 self.log.exception("failed-to-delete-tp",
843 e=e, uni_id=uni_id, tp_path=tp_path,
844 alloc_id=alloc_id, gem_port_id=gem_port_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500845
Rohan Agrawalf0f8c292020-06-01 09:30:55 +0000846 def update_pm_config(self, device, pm_configs):
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500847 # TODO: This has not been tested
Rohan Agrawalf0f8c292020-06-01 09:30:55 +0000848 self.log.info('update_pm_config', pm_configs=pm_configs)
849 self._pm_metrics.update(pm_configs)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -0500850
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800851 def remove_onu_flows(self, device, flows):
Matt Jeanneret2ca384f2020-03-06 13:49:31 -0500852 self.log.debug('remove-onu-flows')
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800853
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800854 # no point in removing omci flows if the device isnt reachable
855 if device.connect_status != ConnectStatus.REACHABLE or \
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800856 device.admin_state != AdminState.ENABLED:
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800857 self.log.warn("device-disabled-or-offline-skipping-remove-flow",
858 admin=device.admin_state, connect=device.connect_status)
859 return
860
861 for flow in flows:
862 # if incoming flow contains cookie, then remove from ONU
863 if flow.cookie:
864 self.log.debug("remove-flow", device_id=device.id, flow=flow)
865
866 def is_downstream(port):
867 return port == self._pon_port_number
868
869 def is_upstream(port):
870 return not is_downstream(port)
871
872 try:
873 _in_port = fd.get_in_port(flow)
874 assert _in_port is not None
875
876 _out_port = fd.get_out_port(flow) # may be None
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800877
878 if is_downstream(_in_port):
879 self.log.debug('downstream-flow-no-need-to-remove', in_port=_in_port, out_port=_out_port,
880 device_id=device.id)
881 # extended vlan tagging operation will handle it
882 continue
883 elif is_upstream(_in_port):
884 self.log.debug('upstream-flow', in_port=_in_port, out_port=_out_port)
885 if fd.is_dhcp_flow(flow):
886 self.log.debug('The dhcp trap-to-host flow will be discarded', device_id=device.id)
887 return
888
Mahir Gunyel45610b42020-03-16 17:29:01 -0700889 _match_vlan_vid = None
890 for field in fd.get_ofb_fields(flow):
891 if field.type == fd.VLAN_VID:
892 if field.vlan_vid == RESERVED_TRANSPARENT_VLAN and field.vlan_vid_mask == RESERVED_TRANSPARENT_VLAN:
893 _match_vlan_vid = RESERVED_TRANSPARENT_VLAN
894 else:
895 _match_vlan_vid = field.vlan_vid & 0xfff
896 self.log.debug('field-type-vlan-vid',
897 vlan=_match_vlan_vid)
898
899 _set_vlan_vid = None
900 _set_vlan_pcp = None
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800901 # Retrieve the VLAN_VID that needs to be removed from the EVTO rule on the ONU.
902 for action in fd.get_actions(flow):
903 if action.type == fd.SET_FIELD:
904 _field = action.set_field.field.ofb_field
905 assert (action.set_field.field.oxm_class ==
906 OFPXMC_OPENFLOW_BASIC)
907 if _field.type == fd.VLAN_VID:
Mahir Gunyel45610b42020-03-16 17:29:01 -0700908 _set_vlan_vid = _field.vlan_vid & 0xfff
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800909 self.log.debug('vlan-vid-to-remove',
Mahir Gunyel45610b42020-03-16 17:29:01 -0700910 _vlan_vid=_set_vlan_vid, in_port=_in_port)
911 elif _field.type == fd.VLAN_PCP:
912 _set_vlan_pcp = _field.vlan_pcp
913 self.log.debug('set-field-type-vlan-pcp',
914 vlan_pcp=_set_vlan_pcp)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800915
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800916 uni_port = self.uni_port(_in_port)
917 uni_id = _in_port & 0xF
918 else:
919 raise Exception('port should be 1 or 2 by our convention')
920
921 self.log.debug('flow-ports', in_port=_in_port, out_port=_out_port, uni_port=str(uni_port))
922
923 tp_id = self.get_tp_id_in_flow(flow)
Girish Gowdradc98d812020-03-20 13:04:58 -0700924 # The vlan filter remove should be followed by a TP deleted for that TP ID.
925 # Use this information to re-schedule any vlan filter add tasks for the same TP ID again.
926 # First check if the TP download was done, before we access that TP delete is necessary
Girish Gowdrac5117452020-08-03 11:20:53 -0700927 if tp_id in self._tp_state_map_per_uni[uni_id] and \
928 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done is True:
929 self._tp_state_map_per_uni[uni_id][tp_id].is_tp_delete_pending = True
930
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800931 # Deleting flow from ONU.
Mahir Gunyel45610b42020-03-16 17:29:01 -0700932 self._remove_vlan_filter_task(device, uni_id, uni_port=uni_port,
933 _set_vlan_pcp=_set_vlan_pcp,
934 _set_vlan_vid=_set_vlan_vid,
935 match_vlan=_match_vlan_vid,
936 tp_id=tp_id)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800937 # TODO:Delete TD task.
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800938 except Exception as e:
939 self.log.exception('failed-to-remove-flow', e=e)
940
941 def add_onu_flows(self, device, flows):
Matt Jeanneret2ca384f2020-03-06 13:49:31 -0500942 self.log.debug('add-onu-flows')
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800943
944 # no point in pushing omci flows if the device isnt reachable
945 if device.connect_status != ConnectStatus.REACHABLE or \
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800946 device.admin_state != AdminState.ENABLED:
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800947 self.log.warn("device-disabled-or-offline-skipping-flow-update",
948 admin=device.admin_state, connect=device.connect_status)
949 return
Girish Gowdra4c11ddb2020-03-03 11:33:24 -0800950
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800951 def is_downstream(port):
952 return port == self._pon_port_number
953
954 def is_upstream(port):
955 return not is_downstream(port)
956
957 for flow in flows:
958 # if incoming flow contains cookie, then add to ONU
959 if flow.cookie:
960 _type = None
961 _port = None
962 _vlan_vid = None
963 _udp_dst = None
964 _udp_src = None
965 _ipv4_dst = None
966 _ipv4_src = None
967 _metadata = None
968 _output = None
969 _push_tpid = None
970 _field = None
971 _set_vlan_vid = None
Mahir Gunyel45610b42020-03-16 17:29:01 -0700972 _set_vlan_pcp = None
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800973 _tunnel_id = None
Girish Gowdra6a73ad62020-06-11 13:40:16 -0700974 _proto = -1
Mahir Gunyeld680cb62020-02-18 10:28:12 -0800975 self.log.debug("add-flow", device_id=device.id, flow=flow)
976
977 try:
978 _in_port = fd.get_in_port(flow)
979 assert _in_port is not None
980
981 _out_port = fd.get_out_port(flow) # may be None
982 tp_id = self.get_tp_id_in_flow(flow)
983 if is_downstream(_in_port):
984 self.log.debug('downstream-flow', in_port=_in_port, out_port=_out_port)
985 # NOTE: We don't care downstream flow because we will copy vlan_id to upstream flow
986 # uni_port = self.uni_port(_out_port)
987 # uni_id = _out_port & 0xF
988 continue
989 elif is_upstream(_in_port):
990 self.log.debug('upstream-flow', in_port=_in_port, out_port=_out_port)
991 uni_port = self.uni_port(_in_port)
992 uni_id = _in_port & 0xF
993 else:
994 raise Exception('port should be 1 or 2 by our convention')
995
996 self.log.debug('flow-ports', in_port=_in_port, out_port=_out_port, uni_port=str(uni_port))
997
998 for field in fd.get_ofb_fields(flow):
999 if field.type == fd.ETH_TYPE:
1000 _type = field.eth_type
1001 self.log.debug('field-type-eth-type',
1002 eth_type=_type)
1003
1004 elif field.type == fd.IP_PROTO:
1005 _proto = field.ip_proto
Girish Gowdra6a73ad62020-06-11 13:40:16 -07001006 if _proto == 2:
1007 # Workaround for TT workflow - avoids installing invalid EVTO rule
1008 self.log.debug("igmp-trap-flow")
1009 break
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001010 self.log.debug('field-type-ip-proto',
1011 ip_proto=_proto)
1012
1013 elif field.type == fd.IN_PORT:
1014 _port = field.port
1015 self.log.debug('field-type-in-port',
1016 in_port=_port)
1017 elif field.type == fd.TUNNEL_ID:
1018 self.log.debug('field-type-tunnel-id')
1019
1020 elif field.type == fd.VLAN_VID:
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001021 if field.vlan_vid == RESERVED_TRANSPARENT_VLAN and field.vlan_vid_mask == RESERVED_TRANSPARENT_VLAN:
1022 _vlan_vid = RESERVED_TRANSPARENT_VLAN
1023 else:
1024 _vlan_vid = field.vlan_vid & 0xfff
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001025 self.log.debug('field-type-vlan-vid',
1026 vlan=_vlan_vid)
1027
1028 elif field.type == fd.VLAN_PCP:
1029 _vlan_pcp = field.vlan_pcp
1030 self.log.debug('field-type-vlan-pcp',
1031 pcp=_vlan_pcp)
1032
1033 elif field.type == fd.UDP_DST:
1034 _udp_dst = field.udp_dst
1035 self.log.debug('field-type-udp-dst',
1036 udp_dst=_udp_dst)
1037
1038 elif field.type == fd.UDP_SRC:
1039 _udp_src = field.udp_src
1040 self.log.debug('field-type-udp-src',
1041 udp_src=_udp_src)
1042
1043 elif field.type == fd.IPV4_DST:
1044 _ipv4_dst = field.ipv4_dst
1045 self.log.debug('field-type-ipv4-dst',
1046 ipv4_dst=_ipv4_dst)
1047
1048 elif field.type == fd.IPV4_SRC:
1049 _ipv4_src = field.ipv4_src
1050 self.log.debug('field-type-ipv4-src',
1051 ipv4_dst=_ipv4_src)
1052
1053 elif field.type == fd.METADATA:
1054 _metadata = field.table_metadata
1055 self.log.debug('field-type-metadata',
1056 metadata=_metadata)
1057
1058 else:
1059 raise NotImplementedError('field.type={}'.format(
1060 field.type))
1061
Girish Gowdra6a73ad62020-06-11 13:40:16 -07001062 if _proto == 2:
1063 # Workaround for TT workflow - avoids installing invalid EVTO rule
1064 self.log.warn("skipping-igmp-trap-flow")
1065 continue
1066
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001067 for action in fd.get_actions(flow):
1068
1069 if action.type == fd.OUTPUT:
1070 _output = action.output.port
1071 self.log.debug('action-type-output',
1072 output=_output, in_port=_in_port)
1073
1074 elif action.type == fd.POP_VLAN:
1075 self.log.debug('action-type-pop-vlan',
1076 in_port=_in_port)
1077
1078 elif action.type == fd.PUSH_VLAN:
1079 _push_tpid = action.push.ethertype
1080 self.log.debug('action-type-push-vlan',
1081 push_tpid=_push_tpid, in_port=_in_port)
1082 if action.push.ethertype != 0x8100:
1083 self.log.error('unhandled-tpid',
1084 ethertype=action.push.ethertype)
1085
1086 elif action.type == fd.SET_FIELD:
1087 _field = action.set_field.field.ofb_field
1088 assert (action.set_field.field.oxm_class ==
1089 OFPXMC_OPENFLOW_BASIC)
1090 self.log.debug('action-type-set-field',
1091 field=_field, in_port=_in_port)
1092 if _field.type == fd.VLAN_VID:
1093 _set_vlan_vid = _field.vlan_vid & 0xfff
1094 self.log.debug('set-field-type-vlan-vid',
1095 vlan_vid=_set_vlan_vid)
1096 elif _field.type == fd.VLAN_PCP:
1097 _set_vlan_pcp = _field.vlan_pcp
1098 self.log.debug('set-field-type-vlan-pcp',
1099 vlan_pcp=_set_vlan_pcp)
1100 else:
1101 self.log.error('unsupported-action-set-field-type',
1102 field_type=_field.type)
1103 else:
1104 self.log.error('unsupported-action-type',
1105 action_type=action.type, in_port=_in_port)
1106
Mahir Gunyel5de33fe2020-03-03 22:38:44 -08001107 if self._set_vlan is not None:
1108 if uni_id not in self._set_vlan:
1109 self._set_vlan[uni_id] = dict()
1110 self._set_vlan[uni_id][tp_id] = _set_vlan_vid
1111 self.log.debug("set_vlan_id-for-tp", _set_vlan_vid=_set_vlan_vid, tp_id=tp_id)
1112
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001113 # OMCI set vlan task can only filter and set on vlan header attributes. Any other openflow
1114 # supported match and action criteria cannot be handled by omci and must be ignored.
1115 if (_set_vlan_vid is None or _set_vlan_vid == 0) and _vlan_vid != RESERVED_TRANSPARENT_VLAN:
1116 self.log.warn('ignoring-flow-that-does-not-set-vlanid', set_vlan_vid=_set_vlan_vid)
1117 elif (_set_vlan_vid is None or _set_vlan_vid == 0) and _vlan_vid == RESERVED_TRANSPARENT_VLAN:
1118 self.log.info('set-vlanid-any', uni_id=uni_id, uni_port=uni_port,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001119 _set_vlan_vid=_vlan_vid,
1120 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1121 tp_id=tp_id)
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001122 self._add_vlan_filter_task(device, uni_id=uni_id, uni_port=uni_port,
1123 _set_vlan_vid=_vlan_vid,
1124 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1125 tp_id=tp_id)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001126 else:
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001127 self.log.info('set-vlanid', uni_id=uni_id, uni_port=uni_port, match_vlan=_vlan_vid,
1128 set_vlan_vid=_set_vlan_vid, _set_vlan_pcp=_set_vlan_pcp, ethType=_type)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001129 self._add_vlan_filter_task(device, uni_id=uni_id, uni_port=uni_port,
1130 _set_vlan_vid=_set_vlan_vid,
1131 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1132 tp_id=tp_id)
1133
1134 except Exception as e:
1135 self.log.exception('failed-to-install-flow', e=e, flow=flow)
1136
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001137 # Calling this assumes the onu is active/ready and had at least an initial mib downloaded. This gets called from
1138 # flow decomposition that ultimately comes from onos
1139 def update_flow_table(self, device, flows):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001140 self.log.debug('update-flow-table', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001141
1142 #
1143 # We need to proxy through the OLT to get to the ONU
1144 # Configuration from here should be using OMCI
1145 #
1146 # self.log.info('bulk-flow-update', device_id=device.id, flows=flows)
1147
1148 # no point in pushing omci flows if the device isnt reachable
1149 if device.connect_status != ConnectStatus.REACHABLE or \
Girish Gowdrae933cd32019-11-21 21:04:41 +05301150 device.admin_state != AdminState.ENABLED:
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001151 self.log.warn("device-disabled-or-offline-skipping-flow-update",
1152 admin=device.admin_state, connect=device.connect_status)
1153 return
1154
1155 def is_downstream(port):
1156 return port == self._pon_port_number
1157
1158 def is_upstream(port):
1159 return not is_downstream(port)
1160
1161 for flow in flows:
1162 _type = None
1163 _port = None
1164 _vlan_vid = None
1165 _udp_dst = None
1166 _udp_src = None
1167 _ipv4_dst = None
1168 _ipv4_src = None
1169 _metadata = None
1170 _output = None
1171 _push_tpid = None
1172 _field = None
1173 _set_vlan_vid = None
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001174 _set_vlan_pcp = None
Matt Jeanneretef06d0d2019-04-27 17:36:53 -04001175 _tunnel_id = None
1176
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001177 try:
Girish Gowdraa73ee452019-12-20 18:52:17 +05301178 write_metadata = fd.get_write_metadata(flow)
1179 if write_metadata is None:
1180 self.log.error("do-not-process-flow-without-write-metadata")
1181 return
1182
1183 # extract tp id from flow
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001184 tp_id = self.get_tp_id_in_flow(flow)
Matt Jeanneret08a8e862019-12-20 14:02:32 -05001185 self.log.debug("tp-id-in-flow", tp_id=tp_id)
Girish Gowdraa73ee452019-12-20 18:52:17 +05301186
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001187 _in_port = fd.get_in_port(flow)
1188 assert _in_port is not None
1189
1190 _out_port = fd.get_out_port(flow) # may be None
1191
1192 if is_downstream(_in_port):
1193 self.log.debug('downstream-flow', in_port=_in_port, out_port=_out_port)
1194 uni_port = self.uni_port(_out_port)
Girish Gowdrae933cd32019-11-21 21:04:41 +05301195 uni_id = _out_port & 0xF
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001196 elif is_upstream(_in_port):
1197 self.log.debug('upstream-flow', in_port=_in_port, out_port=_out_port)
1198 uni_port = self.uni_port(_in_port)
Chaitrashree G S8fb96782019-08-19 00:10:49 -04001199 uni_id = _in_port & 0xF
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001200 else:
1201 raise Exception('port should be 1 or 2 by our convention')
1202
1203 self.log.debug('flow-ports', in_port=_in_port, out_port=_out_port, uni_port=str(uni_port))
1204
1205 for field in fd.get_ofb_fields(flow):
1206 if field.type == fd.ETH_TYPE:
1207 _type = field.eth_type
1208 self.log.debug('field-type-eth-type',
1209 eth_type=_type)
1210
1211 elif field.type == fd.IP_PROTO:
1212 _proto = field.ip_proto
1213 self.log.debug('field-type-ip-proto',
1214 ip_proto=_proto)
1215
1216 elif field.type == fd.IN_PORT:
1217 _port = field.port
1218 self.log.debug('field-type-in-port',
1219 in_port=_port)
1220
1221 elif field.type == fd.VLAN_VID:
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001222 if field.vlan_vid == RESERVED_TRANSPARENT_VLAN and field.vlan_vid_mask == RESERVED_TRANSPARENT_VLAN:
1223 _vlan_vid = RESERVED_TRANSPARENT_VLAN
1224 else:
1225 _vlan_vid = field.vlan_vid & 0xfff
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001226 self.log.debug('field-type-vlan-vid',
1227 vlan=_vlan_vid)
1228
1229 elif field.type == fd.VLAN_PCP:
1230 _vlan_pcp = field.vlan_pcp
1231 self.log.debug('field-type-vlan-pcp',
1232 pcp=_vlan_pcp)
1233
1234 elif field.type == fd.UDP_DST:
1235 _udp_dst = field.udp_dst
1236 self.log.debug('field-type-udp-dst',
1237 udp_dst=_udp_dst)
1238
1239 elif field.type == fd.UDP_SRC:
1240 _udp_src = field.udp_src
1241 self.log.debug('field-type-udp-src',
1242 udp_src=_udp_src)
1243
1244 elif field.type == fd.IPV4_DST:
1245 _ipv4_dst = field.ipv4_dst
1246 self.log.debug('field-type-ipv4-dst',
1247 ipv4_dst=_ipv4_dst)
1248
1249 elif field.type == fd.IPV4_SRC:
1250 _ipv4_src = field.ipv4_src
1251 self.log.debug('field-type-ipv4-src',
1252 ipv4_dst=_ipv4_src)
1253
1254 elif field.type == fd.METADATA:
1255 _metadata = field.table_metadata
1256 self.log.debug('field-type-metadata',
1257 metadata=_metadata)
1258
Matt Jeanneretef06d0d2019-04-27 17:36:53 -04001259 elif field.type == fd.TUNNEL_ID:
1260 _tunnel_id = field.tunnel_id
1261 self.log.debug('field-type-tunnel-id',
1262 tunnel_id=_tunnel_id)
1263
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001264
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001265 else:
1266 raise NotImplementedError('field.type={}'.format(
1267 field.type))
1268
1269 for action in fd.get_actions(flow):
1270
1271 if action.type == fd.OUTPUT:
1272 _output = action.output.port
1273 self.log.debug('action-type-output',
1274 output=_output, in_port=_in_port)
1275
1276 elif action.type == fd.POP_VLAN:
1277 self.log.debug('action-type-pop-vlan',
1278 in_port=_in_port)
1279
1280 elif action.type == fd.PUSH_VLAN:
1281 _push_tpid = action.push.ethertype
1282 self.log.debug('action-type-push-vlan',
1283 push_tpid=_push_tpid, in_port=_in_port)
1284 if action.push.ethertype != 0x8100:
1285 self.log.error('unhandled-tpid',
1286 ethertype=action.push.ethertype)
1287
1288 elif action.type == fd.SET_FIELD:
1289 _field = action.set_field.field.ofb_field
1290 assert (action.set_field.field.oxm_class ==
1291 OFPXMC_OPENFLOW_BASIC)
1292 self.log.debug('action-type-set-field',
1293 field=_field, in_port=_in_port)
1294 if _field.type == fd.VLAN_VID:
1295 _set_vlan_vid = _field.vlan_vid & 0xfff
1296 self.log.debug('set-field-type-vlan-vid',
1297 vlan_vid=_set_vlan_vid)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001298 elif _field.type == fd.VLAN_PCP:
1299 _set_vlan_pcp = _field.vlan_pcp
1300 self.log.debug('set-field-type-vlan-pcp',
1301 vlan_pcp=_set_vlan_pcp)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001302 else:
1303 self.log.error('unsupported-action-set-field-type',
1304 field_type=_field.type)
1305 else:
1306 self.log.error('unsupported-action-type',
1307 action_type=action.type, in_port=_in_port)
1308
Mahir Gunyel5de33fe2020-03-03 22:38:44 -08001309 if self._set_vlan is not None:
1310 if uni_id not in self._set_vlan:
1311 self._set_vlan[uni_id] = dict()
1312 self._set_vlan[uni_id][tp_id] = _set_vlan_vid
1313 self.log.debug("set_vlan_id-for-tp", _set_vlan_vid=_set_vlan_vid, tp_id=tp_id)
Matt Jeanneret810148b2019-09-29 12:44:01 -04001314 # OMCI set vlan task can only filter and set on vlan header attributes. Any other openflow
1315 # supported match and action criteria cannot be handled by omci and must be ignored.
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001316 if (_set_vlan_vid is None or _set_vlan_vid == 0) and _vlan_vid != RESERVED_TRANSPARENT_VLAN:
1317 self.log.warn('ignoring-flow-that-does-not-set-vlanid', set_vlan_vid=_set_vlan_vid)
1318 elif (_set_vlan_vid is None or _set_vlan_vid == 0) and _vlan_vid == RESERVED_TRANSPARENT_VLAN:
1319 self.log.info('set-vlanid-any', uni_id=uni_id, uni_port=uni_port,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001320 _set_vlan_vid=_vlan_vid,
1321 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1322 tp_id=tp_id)
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001323 self._add_vlan_filter_task(device, uni_id=uni_id, uni_port=uni_port,
1324 _set_vlan_vid=_vlan_vid,
1325 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1326 tp_id=tp_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001327 else:
Andrea Campanellacf916ea2020-02-14 10:03:58 +01001328 self.log.info('set-vlanid', uni_id=uni_id, uni_port=uni_port, match_vlan=_vlan_vid,
1329 set_vlan_vid=_set_vlan_vid, _set_vlan_pcp=_set_vlan_pcp, ethType=_type)
1330 self._add_vlan_filter_task(device, uni_id=uni_id, uni_port=uni_port,
1331 _set_vlan_vid=_set_vlan_vid,
1332 _set_vlan_pcp=_set_vlan_pcp, match_vlan=_vlan_vid,
1333 tp_id=tp_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001334 except Exception as e:
1335 self.log.exception('failed-to-install-flow', e=e, flow=flow)
1336
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001337 def _add_vlan_filter_task(self, device, uni_id, uni_port=None, match_vlan=0,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001338 _set_vlan_vid=None, _set_vlan_pcp=8, tp_id=0):
Girish Gowdrac5117452020-08-03 11:20:53 -07001339 if tp_id in self._tp_state_map_per_uni[uni_id] and \
1340 self._tp_state_map_per_uni[uni_id][tp_id].is_tp_delete_pending is True:
Girish Gowdradc98d812020-03-20 13:04:58 -07001341 self.log.debug("pending-del-tp--scheduling-add-vlan-filter-task-for-later")
Girish Gowdrac5117452020-08-03 11:20:53 -07001342 retry = random.randint(1, 5)
1343 reactor.callLater(retry, self._add_vlan_filter_task, device, uni_id, uni_port, match_vlan,
Girish Gowdradc98d812020-03-20 13:04:58 -07001344 _set_vlan_vid, _set_vlan_pcp, tp_id)
1345 return
1346
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001347 self.log.info('_adding_vlan_filter_task', uni_port=uni_port, uni_id=uni_id, tp_id=tp_id, match_vlan=match_vlan,
1348 vlan=_set_vlan_vid, vlan_pcp=_set_vlan_pcp)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001349 assert uni_port is not None
Girish Gowdrac5117452020-08-03 11:20:53 -07001350 if tp_id in self._tp_state_map_per_uni[uni_id] and \
1351 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done is True:
Chaitrashree G S8fb96782019-08-19 00:10:49 -04001352 @inlineCallbacks
1353 def success(_results):
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001354 self.log.info('vlan-tagging-success', uni_port=uni_port, vlan=_set_vlan_vid, tp_id=tp_id,
1355 set_vlan_pcp=_set_vlan_pcp)
Matt Jeanneretd84c9072020-01-31 06:33:27 -05001356 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-pushed')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001357
Chaitrashree G S8fb96782019-08-19 00:10:49 -04001358 @inlineCallbacks
1359 def failure(_reason):
Girish Gowdraa73ee452019-12-20 18:52:17 +05301360 self.log.warn('vlan-tagging-failure', uni_port=uni_port, vlan=_set_vlan_vid, tp_id=tp_id)
Girish Gowdrac5117452020-08-03 11:20:53 -07001361 retry = random.randint(1, 5)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001362 reactor.callLater(retry,
1363 self._add_vlan_filter_task, device, uni_id, uni_port=uni_port,
1364 match_vlan=match_vlan, _set_vlan_vid=_set_vlan_vid,
1365 _set_vlan_pcp=_set_vlan_pcp, tp_id=tp_id)
Matt Jeanneretd84c9072020-01-31 06:33:27 -05001366 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-failed-retrying')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001367
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001368 self.log.info('setting-vlan-tag', uni_port=uni_port, uni_id=uni_id, tp_id=tp_id, match_vlan=match_vlan,
1369 vlan=_set_vlan_vid, vlan_pcp=_set_vlan_pcp)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001370 vlan_filter_add_task = BrcmVlanFilterTask(self.omci_agent, self, uni_port, _set_vlan_vid,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001371 match_vlan, _set_vlan_pcp, add_tag=True,
1372 tp_id=tp_id)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001373 self._deferred = self._onu_omci_device.task_runner.queue_task(vlan_filter_add_task)
Chaitrashree G S8fb96782019-08-19 00:10:49 -04001374 self._deferred.addCallbacks(success, failure)
1375 else:
1376 self.log.info('tp-service-specific-task-not-done-adding-request-to-local-cache',
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001377 uni_id=uni_id, tp_id=tp_id)
1378 if uni_id not in self._queued_vlan_filter_task:
1379 self._queued_vlan_filter_task[uni_id] = dict()
Mahir Gunyela982ec32020-02-25 12:30:37 -08001380 if tp_id not in self._queued_vlan_filter_task[uni_id]:
1381 self._queued_vlan_filter_task[uni_id][tp_id] = []
1382 self._queued_vlan_filter_task[uni_id][tp_id].append({"device": device,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001383 "uni_id": uni_id,
1384 "uni_port": uni_port,
1385 "match_vlan": match_vlan,
1386 "set_vlan_vid": _set_vlan_vid,
1387 "set_vlan_pcp": _set_vlan_pcp,
1388 "tp_id": tp_id})
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001389
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001390 def get_tp_id_in_flow(self, flow):
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001391 flow_metadata = fd.get_metadata_from_write_metadata(flow)
1392 tp_id = fd.get_tp_id_from_metadata(flow_metadata)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001393 return tp_id
1394
1395 def _remove_vlan_filter_task(self, device, uni_id, uni_port=None, match_vlan=0,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001396 _set_vlan_vid=None, _set_vlan_pcp=8, tp_id=0):
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001397 assert uni_port is not None
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001398
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001399 @inlineCallbacks
1400 def success(_results):
1401 self.log.info('vlan-untagging-success', _results=_results)
1402 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-deleted')
1403
1404 @inlineCallbacks
1405 def failure(_reason):
1406 self.log.warn('vlan-untagging-failure', _reason=_reason)
1407 yield self.core_proxy.device_reason_update(self.device_id, 'omci-flows-deletion-failed-retrying')
Girish Gowdrac5117452020-08-03 11:20:53 -07001408 retry = random.randint(1, 5)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001409 reactor.callLater(retry,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001410 self._remove_vlan_filter_task, device, uni_id,
ozgecanetsiace4e37f2020-07-20 10:16:00 +03001411 uni_port=uni_port, match_vlan=match_vlan, _set_vlan_vid=_set_vlan_vid,
1412 _set_vlan_pcp=_set_vlan_pcp, tp_id=tp_id)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001413
1414 self.log.info("remove_vlan_filter_task", tp_id=tp_id)
1415 vlan_remove_task = BrcmVlanFilterTask(self.omci_agent, self, uni_port, _set_vlan_vid,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001416 match_vlan, _set_vlan_pcp, add_tag=False,
1417 tp_id=tp_id)
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001418 self._deferred = self._onu_omci_device.task_runner.queue_task(vlan_remove_task)
1419 self._deferred.addCallbacks(success, failure)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001420
Matt Jeanneret5e331892019-12-07 21:31:45 -05001421 @inlineCallbacks
Matt Jeannereta32441c2019-03-07 05:16:37 -05001422 def process_inter_adapter_message(self, request):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001423 self.log.debug('process-inter-adapter-message', type=request.header.type, from_topic=request.header.from_topic,
1424 to_topic=request.header.to_topic, to_device_id=request.header.to_device_id)
Matt Jeanneret2101f3d2020-03-12 10:13:06 -04001425
1426 if not self.enabled:
1427 self.log.warn('device-not-activated')
1428 reactor.callLater(0.5, self.process_inter_adapter_message, request)
1429 return
1430
Matt Jeannereta32441c2019-03-07 05:16:37 -05001431 try:
Matt Jeanneret5e331892019-12-07 21:31:45 -05001432
1433 update_onu_state = False
Chip Boling1d714e42021-01-20 14:57:38 -06001434 # Note: VOLTHA v2.6 and ealier OLTs would send an OMCI_REQUEST instead of an
1435 # OMCI_RESPONSE. Both have identical formats outside of type. So accept
1436 # both.
1437 if request.header.type in (InterAdapterMessageType.OMCI_RESPONSE,
1438 InterAdapterMessageType.OMCI_REQUEST:
Matt Jeannereta32441c2019-03-07 05:16:37 -05001439 omci_msg = InterAdapterOmciMessage()
1440 request.body.Unpack(omci_msg)
Matteo Scandolod8d73172019-11-26 12:15:15 -07001441 self.log.debug('inter-adapter-recv-omci', omci_msg=hexify(omci_msg.message))
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001442
Matt Jeannereta32441c2019-03-07 05:16:37 -05001443 self.receive_message(omci_msg.message)
1444
1445 elif request.header.type == InterAdapterMessageType.ONU_IND_REQUEST:
1446 onu_indication = OnuIndication()
1447 request.body.Unpack(onu_indication)
Matteo Scandolod8d73172019-11-26 12:15:15 -07001448 self.log.debug('inter-adapter-recv-onu-ind', onu_id=onu_indication.onu_id,
1449 oper_state=onu_indication.oper_state, admin_state=onu_indication.admin_state,
1450 serial_number=onu_indication.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -05001451
Matt Jeanneret5e331892019-12-07 21:31:45 -05001452 update_onu_state = True
1453 self._onu_persisted_state['onu_id'] = onu_indication.onu_id
1454 self._onu_persisted_state['intf_id'] = onu_indication.intf_id
1455 self._onu_persisted_state['admin_state'] = onu_indication.admin_state
Mahir Gunyel45610b42020-03-16 17:29:01 -07001456 self._onu_persisted_state['oper_state'] = onu_indication.oper_state
Matt Jeanneret5e331892019-12-07 21:31:45 -05001457
Matt Jeannereta32441c2019-03-07 05:16:37 -05001458 if onu_indication.oper_state == "up":
Matt Jeanneret5e331892019-12-07 21:31:45 -05001459 yield self.create_interface(onu_indication)
Girish Gowdrae933cd32019-11-21 21:04:41 +05301460 elif onu_indication.oper_state == "down" or onu_indication.oper_state == "unreachable":
Matt Jeanneret5e331892019-12-07 21:31:45 -05001461 yield self.update_interface(onu_indication)
Matt Jeannereta32441c2019-03-07 05:16:37 -05001462 else:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001463 self.log.error("unknown-onu-indication", onu_id=onu_indication.onu_id,
1464 serial_number=onu_indication.serial_number)
Matt Jeannereta32441c2019-03-07 05:16:37 -05001465
Matt Jeanneret3bfebff2019-04-12 18:25:03 -04001466 elif request.header.type == InterAdapterMessageType.TECH_PROFILE_DOWNLOAD_REQUEST:
1467 tech_msg = InterAdapterTechProfileDownloadMessage()
1468 request.body.Unpack(tech_msg)
1469 self.log.debug('inter-adapter-recv-tech-profile', tech_msg=tech_msg)
1470
Matt Jeanneret5e331892019-12-07 21:31:45 -05001471 update_onu_state = self._update_onu_persisted_state(tech_msg.uni_id, tp_path=tech_msg.path)
1472 yield self.load_and_configure_tech_profile(tech_msg.uni_id, tech_msg.path)
Matt Jeanneret3bfebff2019-04-12 18:25:03 -04001473
Girish Gowdrae933cd32019-11-21 21:04:41 +05301474 elif request.header.type == InterAdapterMessageType.DELETE_GEM_PORT_REQUEST:
1475 del_gem_msg = InterAdapterDeleteGemPortMessage()
1476 request.body.Unpack(del_gem_msg)
1477 self.log.debug('inter-adapter-recv-del-gem', gem_del_msg=del_gem_msg)
Girish Gowdrac5117452020-08-03 11:20:53 -07001478 tp_id = self.extract_tp_id_from_path(del_gem_msg.tp_path)
1479 uni_id = del_gem_msg.uni_id
1480 gem_port = self._pon.get_gem_port(del_gem_msg.gem_port_id)
1481 self._tp_state_map_per_uni[uni_id][tp_id].queue_pending_delete_pon_resource(TpState.GEM_ID,
1482 gem_port)
Girish Gowdra322cca12020-08-09 15:55:54 -07001483 if self.is_device_active_and_reachable:
1484 self.delete_tech_profile(uni_id=del_gem_msg.uni_id,
1485 gem_port=gem_port,
1486 tp_path=del_gem_msg.tp_path)
1487 else:
1488 self.log.debug("device-unreachable--clearing-gem-id-from-local-cache")
1489 if tp_id in self._tp_state_map_per_uni[uni_id]:
1490 self._tp_state_map_per_uni[uni_id][tp_id].pon_resource_delete_complete(TpState.GEM_ID,
1491 gem_port.gem_id)
1492 self._clear_alloc_id_gem_port_from_internal_cache(None, gem_port.gem_id)
Girish Gowdrae933cd32019-11-21 21:04:41 +05301493
1494 elif request.header.type == InterAdapterMessageType.DELETE_TCONT_REQUEST:
1495 del_tcont_msg = InterAdapterDeleteTcontMessage()
1496 request.body.Unpack(del_tcont_msg)
1497 self.log.debug('inter-adapter-recv-del-tcont', del_tcont_msg=del_tcont_msg)
1498
Matt Jeanneret5e331892019-12-07 21:31:45 -05001499 # Removal of the tcont/alloc id mapping represents the removal of the tech profile
1500 update_onu_state = self._update_onu_persisted_state(del_tcont_msg.uni_id, tp_path=None)
Girish Gowdrac5117452020-08-03 11:20:53 -07001501 tp_id = self.extract_tp_id_from_path(del_tcont_msg.tp_path)
1502 uni_id = del_tcont_msg.uni_id
1503 tcont = self._pon.get_tcont(del_tcont_msg.alloc_id)
1504 self._tp_state_map_per_uni[uni_id][tp_id].queue_pending_delete_pon_resource(TpState.ALLOC_ID,
1505 tcont)
Girish Gowdra322cca12020-08-09 15:55:54 -07001506 if self.is_device_active_and_reachable:
1507 self.delete_tech_profile(uni_id=del_tcont_msg.uni_id,
1508 tcont=tcont,
1509 tp_path=del_tcont_msg.tp_path)
1510 else:
1511 self.log.debug("device-unreachable--clearing-tcont-from-local-cache")
1512 if tp_id in self._tp_state_map_per_uni[uni_id]:
1513 self._tp_state_map_per_uni[uni_id][tp_id].pon_resource_delete_complete(TpState.ALLOC_ID,
1514 tcont.alloc_id)
1515 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done = False
1516 self._clear_alloc_id_gem_port_from_internal_cache(tcont.alloc_id, None)
1517
Matt Jeannereta32441c2019-03-07 05:16:37 -05001518 else:
1519 self.log.error("inter-adapter-unhandled-type", request=request)
1520
Matt Jeanneret5e331892019-12-07 21:31:45 -05001521 if update_onu_state:
1522 try:
1523 self.log.debug('updating-onu-state', device_id=self.device_id,
1524 onu_persisted_state=self._onu_persisted_state)
1525 yield self.onu_kv_client.set(self.device_id, json.dumps(self._onu_persisted_state))
1526 except Exception as e:
1527 self.log.error('could-not-store-onu-state', device_id=self.device_id,
1528 onu_persisted_state=self._onu_persisted_state, e=e)
1529 # at this point omci is started and/or indications being processed
1530 # later indications may have a chance to write this state out again
1531
Matt Jeannereta32441c2019-03-07 05:16:37 -05001532 except Exception as e:
1533 self.log.exception("error-processing-inter-adapter-message", e=e)
1534
Matt Jeanneret5e331892019-12-07 21:31:45 -05001535 def _update_onu_persisted_state(self, uni_id, tp_path):
1536 # persist the uni and tech profile path for later reconciliation. update only if changed
1537 update_onu_state = False
1538 found = False
1539 for entry in self._onu_persisted_state.get('uni_config', list()):
1540 if entry.get('uni_id') == uni_id:
1541 found = True
1542 if entry.get('tp_path') != tp_path:
1543 update_onu_state = True
1544 entry['tp_path'] = tp_path
1545
1546 if not found:
1547 update_onu_state = True
1548 uni_tp = {
1549 'uni_id': uni_id,
1550 'tp_path': tp_path
1551 }
1552 self._onu_persisted_state['uni_config'].append(uni_tp)
1553
1554 return update_onu_state
1555
Matt Jeannereta32441c2019-03-07 05:16:37 -05001556 # Called each time there is an onu "up" indication from the olt handler
1557 @inlineCallbacks
1558 def create_interface(self, onu_indication):
Matt Jeanneret08a8e862019-12-20 14:02:32 -05001559 self.log.info('create-interface', onu_id=onu_indication.onu_id,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001560 serial_number=onu_indication.serial_number)
Amit Ghosh028eb202020-02-17 13:34:00 +00001561
1562 # Ignore if onu_indication is received for an already running ONU
1563 if self._onu_omci_device is not None and self._onu_omci_device.active:
1564 self.log.warn('received-onu-indication-for-active-onu', onu_indication=onu_indication)
1565 return
1566
Matt Jeanneretc083f462019-03-11 15:02:01 -04001567 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.ACTIVATING,
1568 connect_status=ConnectStatus.REACHABLE)
1569
Matt Jeannereta32441c2019-03-07 05:16:37 -05001570 onu_device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001571
1572 self.log.debug('starting-openomci-statemachine')
1573 self._subscribe_to_events()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001574 onu_device.reason = "starting-openomci"
Girish Gowdrae933cd32019-11-21 21:04:41 +05301575 reactor.callLater(1, self._onu_omci_device.start, onu_device)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001576 yield self.core_proxy.device_reason_update(self.device_id, onu_device.reason)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001577 self._heartbeat.enabled = True
1578
Matt Jeanneret42dad792020-02-01 09:28:27 -05001579 # Called each time there is an onu "down" indication from the olt handler
Matt Jeannereta32441c2019-03-07 05:16:37 -05001580 @inlineCallbacks
1581 def update_interface(self, onu_indication):
Matt Jeanneret08a8e862019-12-20 14:02:32 -05001582 self.log.info('update-interface', onu_id=onu_indication.onu_id,
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001583 serial_number=onu_indication.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001584
Chaitrashree G Sd73fb9b2019-09-09 20:27:30 -04001585 if onu_indication.oper_state == 'down' or onu_indication.oper_state == "unreachable":
Mahir Gunyeld680cb62020-02-18 10:28:12 -08001586 self.log.debug('stopping-openomci-statemachine', device_id=self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001587 reactor.callLater(0, self._onu_omci_device.stop)
1588
Mahir Gunyel5de33fe2020-03-03 22:38:44 -08001589 self._tp = dict()
1590
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001591 # Let TP download happen again
Girish Gowdrac5117452020-08-03 11:20:53 -07001592 for uni_id in self._tp_state_map_per_uni:
Girish Gowdra322cca12020-08-09 15:55:54 -07001593 for tp_id in self._tp_state_map_per_uni[uni_id]:
1594 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done = False
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001595
Matt Jeanneretf4113222019-08-14 19:44:34 -04001596 yield self.disable_ports(lock_ports=False)
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001597 yield self.core_proxy.device_reason_update(self.device_id, "stopping-openomci")
1598 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.DISCOVERED,
1599 connect_status=ConnectStatus.UNREACHABLE)
Girish Gowdra322cca12020-08-09 15:55:54 -07001600 self.is_device_active_and_reachable = False
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001601 else:
1602 self.log.debug('not-changing-openomci-statemachine')
1603
Matt Jeanneretf4113222019-08-14 19:44:34 -04001604 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001605 def disable(self, device):
Matt Jeanneret08a8e862019-12-20 14:02:32 -05001606 self.log.info('disable', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001607 try:
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04001608 yield self.disable_ports(lock_ports=True, device_disabled=True)
Matt Jeanneretf4113222019-08-14 19:44:34 -04001609 yield self.core_proxy.device_reason_update(self.device_id, "omci-admin-lock")
1610 yield self.core_proxy.device_state_update(self.device_id, oper_status=OperStatus.UNKNOWN)
Girish Gowdra322cca12020-08-09 15:55:54 -07001611 self.is_device_active_and_reachable = False
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001612 except Exception as e:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001613 self.log.exception('exception-in-onu-disable', exception=e)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001614
William Kurkian3a206332019-04-29 11:05:47 -04001615 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001616 def reenable(self, device):
Matt Jeanneret08a8e862019-12-20 14:02:32 -05001617 self.log.info('reenable', device_id=device.id, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001618 try:
Matt Jeanneretf4113222019-08-14 19:44:34 -04001619 yield self.core_proxy.device_state_update(device.id,
1620 oper_status=OperStatus.ACTIVE,
1621 connect_status=ConnectStatus.REACHABLE)
Girish Gowdra322cca12020-08-09 15:55:54 -07001622 self.is_device_active_and_reachable = True
Matt Jeanneretf4113222019-08-14 19:44:34 -04001623 yield self.core_proxy.device_reason_update(self.device_id, 'onu-reenabled')
1624 yield self.enable_ports()
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001625 except Exception as e:
Matteo Scandolod8d73172019-11-26 12:15:15 -07001626 self.log.exception('exception-in-onu-reenable', exception=e)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001627
William Kurkian3a206332019-04-29 11:05:47 -04001628 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001629 def reboot(self):
1630 self.log.info('reboot-device')
William Kurkian3a206332019-04-29 11:05:47 -04001631 device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001632 if device.connect_status != ConnectStatus.REACHABLE:
1633 self.log.error("device-unreachable")
1634 return
1635
William Kurkian3a206332019-04-29 11:05:47 -04001636 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001637 def success(_results):
1638 self.log.info('reboot-success', _results=_results)
Matt Jeanneretf4113222019-08-14 19:44:34 -04001639 yield self.core_proxy.device_reason_update(self.device_id, 'rebooting')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001640
1641 def failure(_reason):
1642 self.log.info('reboot-failure', _reason=_reason)
1643
1644 self._deferred = self._onu_omci_device.reboot()
1645 self._deferred.addCallbacks(success, failure)
1646
William Kurkian3a206332019-04-29 11:05:47 -04001647 @inlineCallbacks
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04001648 def disable_ports(self, lock_ports=True, device_disabled=False):
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001649 self.log.info('disable-ports', device_id=self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001650
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001651 # TODO: for now only support the first UNI given no requirement for multiple uni yet. Also needed to reduce flow
1652 # load on the core
Matt Jeanneretf4113222019-08-14 19:44:34 -04001653 for port in self.uni_ports:
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001654 if port.mac_bridge_port_num == 1:
1655 port.operstatus = OperStatus.UNKNOWN
1656 self.log.info('disable-port', device_id=self.device_id, port=port)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001657 yield self.core_proxy.port_state_update(self.device_id, Port.ETHERNET_UNI, port.port_number,
1658 port.operstatus)
Matt Jeanneretf4113222019-08-14 19:44:34 -04001659
1660 if lock_ports is True:
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04001661 self.lock_ports(lock=True, device_disabled=device_disabled)
Matt Jeanneretf4113222019-08-14 19:44:34 -04001662
William Kurkian3a206332019-04-29 11:05:47 -04001663 @inlineCallbacks
Mahir Gunyel0e6882a2019-10-16 17:02:39 -07001664 def enable_ports(self):
1665 self.log.info('enable-ports', device_id=self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001666
Matt Jeanneretf4113222019-08-14 19:44:34 -04001667 self.lock_ports(lock=False)
1668
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001669 # TODO: for now only support the first UNI given no requirement for multiple uni yet. Also needed to reduce flow
1670 # load on the core
1671 # Given by default all unis are initially active according to omci alarming, we must mimic this.
Matt Jeanneretf4113222019-08-14 19:44:34 -04001672 for port in self.uni_ports:
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001673 if port.mac_bridge_port_num == 1:
Matt Jeanneretf4113222019-08-14 19:44:34 -04001674 port.operstatus = OperStatus.ACTIVE
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001675 self.log.info('enable-port', device_id=self.device_id, port=port)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001676 yield self.core_proxy.port_state_update(self.device_id, Port.ETHERNET_UNI, port.port_number,
1677 port.operstatus)
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001678
1679 # TODO: Normally we would want any uni ethernet link down or uni ethernet link up alarms to register in the core,
1680 # but practically olt provisioning cannot handle the churn of links up, down, then up again typical on startup.
1681 #
1682 # Basically the link state sequence:
1683 # 1) per omci default alarm state, all unis are initially up (no link down alarms received yet)
1684 # 2) a link state down alarm is received for all uni, given the lock command, and also because most unis have nothing plugged in
1685 # 3) a link state up alarm is received for the uni plugged in.
1686 #
1687 # Given the olt (BAL) has to provision all uni, de-provision all uni, and re-provision one uni in quick succession
1688 # and cannot (bug?), we have to skip this and leave uni ports as assumed active. Also all the link state activity
1689 # would have a ripple effect through the core to the controller as well. And is it really worth it?
1690 '''
Matt Jeanneretf4113222019-08-14 19:44:34 -04001691 @inlineCallbacks
1692 def port_state_handler(self, _topic, msg):
1693 self.log.info("port-state-change", _topic=_topic, msg=msg)
1694
1695 onu_id = msg['onu_id']
1696 port_no = msg['port_number']
1697 serial_number = msg['serial_number']
1698 port_status = msg['port_status']
1699 uni_port = self.uni_port(int(port_no))
1700
1701 self.log.debug("port-state-parsed-message", onu_id=onu_id, port_no=port_no, serial_number=serial_number,
1702 port_status=port_status)
1703
1704 if port_status is True:
1705 uni_port.operstatus = OperStatus.ACTIVE
1706 self.log.info('link-up', device_id=self.device_id, port=uni_port)
1707 else:
1708 uni_port.operstatus = OperStatus.UNKNOWN
1709 self.log.info('link-down', device_id=self.device_id, port=uni_port)
1710
1711 yield self.core_proxy.port_state_update(self.device_id, Port.ETHERNET_UNI, uni_port.port_number, uni_port.operstatus)
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001712 '''
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001713
1714 # Called just before openomci state machine is started. These listen for events from selected state machines,
1715 # most importantly, mib in sync. Which ultimately leads to downloading the mib
1716 def _subscribe_to_events(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001717 self.log.debug('subscribe-to-events')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001718
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001719 bus = self._onu_omci_device.event_bus
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001720
1721 # OMCI MIB Database sync status
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001722 topic = OnuDeviceEntry.event_bus_topic(self.device_id,
1723 OnuDeviceEvents.MibDatabaseSyncEvent)
1724 self._in_sync_subscription = bus.subscribe(topic, self.in_sync_handler)
1725
1726 # OMCI Capabilities
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001727 topic = OnuDeviceEntry.event_bus_topic(self.device_id,
1728 OnuDeviceEvents.OmciCapabilitiesEvent)
1729 self._capabilities_subscription = bus.subscribe(topic, self.capabilties_handler)
1730
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001731 # TODO: these alarms seem to be unreliable depending on the environment
1732 # Listen for UNI link state alarms and set the oper_state based on that rather than assuming all UNI are up
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001733 # topic = OnuDeviceEntry.event_bus_topic(self.device_id,
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001734 # OnuDeviceEvents.PortEvent)
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08001735 # self._port_state_subscription = bus.subscribe(topic, self.port_state_handler)
Matt Jeanneretfc6cdef2020-02-14 10:14:36 -05001736
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001737 # Called when the mib is in sync
1738 def in_sync_handler(self, _topic, msg):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001739 self.log.debug('in-sync-handler', _topic=_topic, msg=msg)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001740 if self._in_sync_subscription is not None:
1741 try:
1742 in_sync = msg[IN_SYNC_KEY]
1743
1744 if in_sync:
1745 # Only call this once
1746 bus = self._onu_omci_device.event_bus
1747 bus.unsubscribe(self._in_sync_subscription)
1748 self._in_sync_subscription = None
1749
1750 # Start up device_info load
1751 self.log.debug('running-mib-sync')
1752 reactor.callLater(0, self._mib_in_sync)
1753
1754 except Exception as e:
1755 self.log.exception('in-sync', e=e)
1756
1757 def capabilties_handler(self, _topic, _msg):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001758 self.log.debug('capabilities-handler', _topic=_topic, msg=_msg)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001759 if self._capabilities_subscription is not None:
1760 self.log.debug('capabilities-handler-done')
1761
1762 # Mib is in sync, we can now query what we learned and actually start pushing ME (download) to the ONU.
Matt Jeanneretc083f462019-03-11 15:02:01 -04001763 @inlineCallbacks
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001764 def _mib_in_sync(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07001765 self.log.debug('mib-in-sync')
Matt Jeanneretc083f462019-03-11 15:02:01 -04001766 device = yield self.core_proxy.get_device(self.device_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001767
Matt Jeanneret5e331892019-12-07 21:31:45 -05001768 # only notify core if this is a new device. otherwise do not have reconcile generating
1769 # a lot of needless message churn
1770 if not self._reconciling:
1771 yield self.core_proxy.device_reason_update(self.device_id, 'discovery-mibsync-complete')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001772
1773 if self._dev_info_loaded:
Matt Jeanneret5e331892019-12-07 21:31:45 -05001774 self.log.debug('device-info-already-loaded')
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001775 else:
Matt Jeanneret5e331892019-12-07 21:31:45 -05001776 # new onu or adapter was restarted. fill up our local data
1777 yield self._load_device_data(device)
1778
1779 if self._check_mib_downloaded():
1780 self.log.debug('mib-already-downloaded')
1781 if not self._reconciling:
1782 yield self.core_proxy.device_state_update(device.id,
1783 oper_status=OperStatus.ACTIVE,
1784 connect_status=ConnectStatus.REACHABLE)
Girish Gowdra322cca12020-08-09 15:55:54 -07001785 self.is_device_active_and_reachable = True
Matt Jeanneret5e331892019-12-07 21:31:45 -05001786 yield self.enable_ports()
1787 else:
1788 self._download_mib(device)
1789
1790 if self._reconciling:
1791 yield self._restore_tech_profile()
1792 self._start_monitoring()
1793 self._reconciling = False
1794 self.log.debug('reconcile-finished')
1795
1796 def _download_mib(self, device):
1797 self.log.debug('downloading-initial-mib-configuration')
1798
1799 @inlineCallbacks
1800 def success(_results):
1801 self.log.debug('mib-download-success', _results=_results)
1802 yield self.core_proxy.device_state_update(device.id,
1803 oper_status=OperStatus.ACTIVE,
1804 connect_status=ConnectStatus.REACHABLE)
Girish Gowdra322cca12020-08-09 15:55:54 -07001805 self.is_device_active_and_reachable = True
Matt Jeanneret5e331892019-12-07 21:31:45 -05001806 yield self.core_proxy.device_reason_update(self.device_id, 'initial-mib-downloaded')
1807 self._mib_download_task = None
1808 yield self.enable_ports()
1809 yield self.onu_active_event()
1810 self._start_monitoring()
1811
1812 @inlineCallbacks
1813 def failure(_reason):
1814 self.log.warn('mib-download-failure-retrying', _reason=_reason)
1815 retry = _STARTUP_RETRY_WAIT * (random.randint(1, 5))
1816 reactor.callLater(retry, self._mib_in_sync)
1817 yield self.core_proxy.device_reason_update(self.device_id, 'initial-mib-download-failure-retrying')
1818
1819 # start by locking all the unis till mib sync and initial mib is downloaded
1820 # this way we can capture the port down/up events when we are ready
1821 self.lock_ports(lock=True)
1822
1823 # Download an initial mib that creates simple bridge that can pass EAP. On success (above) finally set
1824 # the device to active/reachable. This then opens up the handler to openflow pushes from outside
1825 self._mib_download_task = BrcmMibDownloadTask(self.omci_agent, self)
1826 self._deferred = self._onu_omci_device.task_runner.queue_task(self._mib_download_task)
1827 self._deferred.addCallbacks(success, failure)
1828
1829 def _start_monitoring(self):
1830 self.log.debug('starting-monitoring')
1831
1832 # Start collecting stats from the device after a brief pause
1833 if not self._pm_metrics_started:
1834 self._pm_metrics_started = True
Rohan Agrawal36a4e442020-06-29 11:10:32 +00001835 pmstart = _STARTUP_RETRY_WAIT * (random.randint(1, self._pm_metrics.max_skew))
Matt Jeanneret5e331892019-12-07 21:31:45 -05001836 reactor.callLater(pmstart, self._pm_metrics.start_collector)
1837
1838 # Start test requests after a brief pause
1839 if not self._test_request_started:
1840 self._test_request_started = True
1841 tststart = _STARTUP_RETRY_WAIT * (random.randint(1, 5))
1842 reactor.callLater(tststart, self._test_request.start_collector)
1843
1844 def _check_mib_downloaded(self):
1845 self.log.debug('checking-mib-downloaded')
1846 results = False
1847
1848 mac_bridges = self.onu_omci_device.query_mib(MacBridgeServiceProfile.class_id)
1849 self.log.debug('mac-bridges', mac_bridges=mac_bridges)
1850
1851 for k, v in mac_bridges.items():
1852 if not isinstance(v, dict):
1853 continue
1854 # found at least one mac bridge, good enough to say its done, break out
1855 self.log.debug('found-mac-bridge-mib-download-has-been-done', omci_key=k, omci_value=v)
1856 results = True
1857 break
1858
1859 return results
1860
1861 @inlineCallbacks
1862 def _load_device_data(self, device):
1863 self.log.debug('loading-device-data-from-mib', device_id=device.id)
1864
1865 omci_dev = self._onu_omci_device
1866 config = omci_dev.configuration
1867
1868 try:
1869 # sort the lists so we get consistent port ordering.
1870 ani_list = sorted(config.ani_g_entities) if config.ani_g_entities else []
1871 uni_list = sorted(config.uni_g_entities) if config.uni_g_entities else []
1872 pptp_list = sorted(config.pptp_entities) if config.pptp_entities else []
1873 veip_list = sorted(config.veip_entities) if config.veip_entities else []
1874
1875 if ani_list is None or (pptp_list is None and veip_list is None):
1876 yield self.core_proxy.device_reason_update(self.device_id, 'onu-missing-required-elements')
1877 raise Exception("onu-missing-required-elements")
1878
1879 # Currently logging the ani, pptp, veip, and uni for information purposes.
1880 # Actually act on the veip/pptp as its ME is the most correct one to use in later tasks.
1881 # And in some ONU the UNI-G list is incomplete or incorrect...
1882 for entity_id in ani_list:
1883 ani_value = config.ani_g_entities[entity_id]
1884 self.log.debug("discovered-ani", entity_id=entity_id, value=ani_value)
1885
1886 for entity_id in uni_list:
1887 uni_value = config.uni_g_entities[entity_id]
1888 self.log.debug("discovered-uni", entity_id=entity_id, value=uni_value)
1889
1890 uni_entities = OrderedDict()
1891 for entity_id in pptp_list:
1892 pptp_value = config.pptp_entities[entity_id]
1893 self.log.debug("discovered-pptp", entity_id=entity_id, value=pptp_value)
1894 uni_entities[entity_id] = UniType.PPTP
1895
1896 for entity_id in veip_list:
1897 veip_value = config.veip_entities[entity_id]
1898 self.log.debug("discovered-veip", entity_id=entity_id, value=veip_value)
1899 uni_entities[entity_id] = UniType.VEIP
1900
1901 uni_id = 0
1902 for entity_id, uni_type in uni_entities.items():
1903 yield self._add_uni_port(device, entity_id, uni_id, uni_type)
Girish Gowdrac5117452020-08-03 11:20:53 -07001904 self._tp_state_map_per_uni[uni_id] = dict()
Matt Jeanneret5e331892019-12-07 21:31:45 -05001905 uni_id += 1
1906
1907 if self._unis:
1908 self._dev_info_loaded = True
1909 else:
1910 yield self.core_proxy.device_reason_update(self.device_id, 'no-usable-unis')
1911 raise Exception("no-usable-unis")
1912
1913 except Exception as e:
1914 self.log.exception('device-info-load', e=e)
1915 self._deferred = reactor.callLater(_STARTUP_RETRY_WAIT, self._mib_in_sync)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001916
Matt Jeanneretc083f462019-03-11 15:02:01 -04001917 @inlineCallbacks
1918 def _add_uni_port(self, device, entity_id, uni_id, uni_type=UniType.PPTP):
Matt Jeanneret5e331892019-12-07 21:31:45 -05001919 self.log.debug('add-uni-port', entity_id=entity_id, uni_id=uni_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001920
Matt Jeanneret5e331892019-12-07 21:31:45 -05001921 intf_id = self._onu_persisted_state.get('intf_id')
1922 onu_id = self._onu_persisted_state.get('onu_id')
1923 uni_no = self.mk_uni_port_num(intf_id, onu_id, uni_id)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001924
1925 # TODO: Some or parts of this likely need to move to UniPort. especially the format stuff
1926 uni_name = "uni-{}".format(uni_no)
1927
Girish Gowdrae933cd32019-11-21 21:04:41 +05301928 mac_bridge_port_num = uni_id + 1 # TODO +1 is only to test non-zero index
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001929
1930 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 -04001931 entity_id=entity_id, mac_bridge_port_num=mac_bridge_port_num, serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001932
Girish Gowdra5b499342020-06-16 14:45:51 -07001933 uni_port = UniPort.create(self, uni_name, uni_id, uni_no, uni_name,
1934 device.parent_port_no, device.serial_number,
1935 uni_type,)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001936 uni_port.entity_id = entity_id
1937 uni_port.enabled = True
1938 uni_port.mac_bridge_port_num = mac_bridge_port_num
1939
1940 self.log.debug("created-uni-port", uni=uni_port)
1941
Matt Jeanneret5e331892019-12-07 21:31:45 -05001942 if not self._reconciling:
1943 yield self.core_proxy.port_created(device.id, uni_port.get_port())
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001944
1945 self._unis[uni_port.port_number] = uni_port
1946
Matt Jeanneret5e331892019-12-07 21:31:45 -05001947 self._onu_omci_device.alarm_synchronizer.set_alarm_params(onu_id=onu_id,
Girish Gowdrae933cd32019-11-21 21:04:41 +05301948 uni_ports=self.uni_ports,
1949 serial_number=device.serial_number)
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05001950
Matt Jeanneret5e331892019-12-07 21:31:45 -05001951 @inlineCallbacks
1952 def _restore_tech_profile(self):
1953 self.log.debug("reconcile-restoring-tech-profile-tcont-gem-config")
1954
1955 # for every uni that has tech profile config reload all its tcont/alloc_id and gem from the tp path
1956 for entry in self._onu_persisted_state.get('uni_config', list()):
1957 uni_id = entry.get('uni_id')
1958 tp_path = entry.get('tp_path')
1959 if tp_path:
1960 tpstored = yield self.tp_kv_client.get(tp_path)
1961 tpstring = tpstored.decode('ascii')
1962 tp = json.loads(tpstring)
1963
1964 self.log.debug("restoring-tp-instance", tp=tp)
1965
1966 # re-run tech profile config that stores gem and tconts in the self._pon object
1967 # this does not actually re-run the omci, just rebuilds our local data store
1968 self._do_tech_profile_configuration(uni_id, tp)
1969
1970 tp_id = self.extract_tp_id_from_path(tp_path)
1971
1972 # rebuild cache dicts so tp updates and deletes dont get KeyErrors
Girish Gowdrac5117452020-08-03 11:20:53 -07001973 if uni_id not in self._tp_state_map_per_uni:
1974 self._tp_state_map_per_uni[uni_id] = dict()
Matt Jeanneret5e331892019-12-07 21:31:45 -05001975
Girish Gowdrac5117452020-08-03 11:20:53 -07001976 if tp_id not in self._tp_state_map_per_uni[uni_id]:
1977 self._tp_state_map_per_uni[uni_id][tp_id] = TpState(self, uni_id, tp_path)
Matt Jeanneret5e331892019-12-07 21:31:45 -05001978
Girish Gowdrac5117452020-08-03 11:20:53 -07001979 self._tp_state_map_per_uni[uni_id][tp_id].tp_setup_done = True
Matt Jeanneret5e331892019-12-07 21:31:45 -05001980 else:
1981 self.log.debug("no-assigned-tp-instance", uni_id=uni_id)
1982
1983 # for every loaded tcont from tp check the mib database for its entity_id
1984 # needed for later tp deletes/adds
1985 tcont_idents = self.onu_omci_device.query_mib(Tcont.class_id)
1986 self.log.debug('tcont-idents', tcont_idents=tcont_idents)
1987
1988 for k, v in tcont_idents.items():
1989 if not isinstance(v, dict):
1990 continue
1991 alloc_check = v.get('attributes', {}).get('alloc_id', 0)
1992 tcont = self._pon.tconts.get(alloc_check)
1993 if tcont:
1994 tcont.entity_id = k
1995 self.log.debug('reassigning-tcont-entity-id', entity_id=tcont.entity_id,
1996 alloc_id=tcont.alloc_id)
1997
Matt Jeanneretc083f462019-03-11 15:02:01 -04001998 # TODO NEW CORE: Figure out how to gain this knowledge from the olt. for now cheat terribly.
1999 def mk_uni_port_num(self, intf_id, onu_id, uni_id):
Amit Ghosh65400f12019-11-21 12:04:12 +00002000 MAX_PONS_PER_OLT = 256
2001 MAX_ONUS_PER_PON = 256
Matt Jeanneretc083f462019-03-11 15:02:01 -04002002 MAX_UNIS_PER_ONU = 16
Matt Jeanneretf1e9c5d2019-02-08 07:41:29 -05002003
Matt Jeanneretc083f462019-03-11 15:02:01 -04002004 assert intf_id < MAX_PONS_PER_OLT
2005 assert onu_id < MAX_ONUS_PER_PON
2006 assert uni_id < MAX_UNIS_PER_ONU
Amit Ghosh65400f12019-11-21 12:04:12 +00002007 return intf_id << 12 | onu_id << 4 | uni_id
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002008
2009 @inlineCallbacks
Devmalya Paulffc89df2019-07-31 17:43:13 -04002010 def onu_active_event(self):
Matteo Scandolod8d73172019-11-26 12:15:15 -07002011 self.log.debug('onu-active-event')
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002012 try:
Matt Jeanneret5e331892019-12-07 21:31:45 -05002013 # TODO: this is expensive for just getting the olt serial number. replace with direct api call
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002014 parent_device = yield self.core_proxy.get_device(self.parent_id)
2015 olt_serial_number = parent_device.serial_number
kesavand86a0fcf2020-08-25 08:25:28 +05302016 self.olt_serial_number = olt_serial_number
Devmalya Paulffc89df2019-07-31 17:43:13 -04002017 raised_ts = arrow.utcnow().timestamp
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002018
Matt Jeanneret5e331892019-12-07 21:31:45 -05002019 intf_id = self._onu_persisted_state.get('intf_id')
2020 onu_id = self._onu_persisted_state.get('onu_id')
2021 onu_serial = self._onu_persisted_state.get('serial_number')
2022
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002023 self.log.debug("onu-indication-context-data",
Matt Jeanneret5e331892019-12-07 21:31:45 -05002024 pon_id=intf_id,
2025 onu_id=onu_id,
Girish Gowdrae933cd32019-11-21 21:04:41 +05302026 registration_id=self.device_id,
2027 device_id=self.device_id,
Matt Jeanneret5e331892019-12-07 21:31:45 -05002028 onu_serial_number=onu_serial,
Girish Gowdrae933cd32019-11-21 21:04:41 +05302029 olt_serial_number=olt_serial_number,
2030 raised_ts=raised_ts)
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002031
Devmalya Paulffc89df2019-07-31 17:43:13 -04002032 self.log.debug("Trying-to-raise-onu-active-event")
2033 OnuActiveEvent(self.events, self.device_id,
Matt Jeanneret5e331892019-12-07 21:31:45 -05002034 intf_id,
2035 onu_serial,
Devmalya Paul7e0be4a2019-05-08 05:18:04 -04002036 str(self.device_id),
Girish Gowdrae933cd32019-11-21 21:04:41 +05302037 olt_serial_number, raised_ts,
Matt Jeanneret5e331892019-12-07 21:31:45 -05002038 onu_id=onu_id).send(True)
Devmalya Paulffc89df2019-07-31 17:43:13 -04002039 except Exception as active_event_error:
2040 self.log.exception('onu-activated-event-error',
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002041 errmsg=active_event_error)
Matt Jeanneretf4113222019-08-14 19:44:34 -04002042
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002043 @inlineCallbacks
2044 def onu_disabled_event(self):
2045 self.log.debug('onu-disabled-event')
2046 try:
2047 device = yield self.core_proxy.get_device(self.device_id)
2048 parent_device = yield self.core_proxy.get_device(self.parent_id)
2049 olt_serial_number = parent_device.serial_number
2050 raised_ts = arrow.utcnow().timestamp
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002051 intf_id = self._onu_persisted_state.get('intf_id')
2052 onu_id = self._onu_persisted_state.get('onu_id')
2053 onu_serial = self._onu_persisted_state.get('serial_number')
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002054
2055 self.log.debug("onu-indication-context-data",
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002056 pon_id=intf_id,
2057 onu_id=onu_id,
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002058 registration_id=self.device_id,
2059 device_id=self.device_id,
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002060 onu_serial_number=onu_serial,
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002061 olt_serial_number=olt_serial_number,
2062 raised_ts=raised_ts)
2063
2064 self.log.debug("Trying-to-raise-onu-disabled-event")
2065 OnuDisabledEvent(self.events, self.device_id,
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002066 intf_id,
Girish Gowdradc98d812020-03-20 13:04:58 -07002067 device.serial_number,
2068 str(self.device_id),
2069 olt_serial_number, raised_ts,
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002070 onu_id=onu_id).send(True)
2071 except Exception as disable_event_error:
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002072 self.log.exception('onu-disabled-event-error',
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002073 errmsg=disable_event_error)
2074
2075 @inlineCallbacks
2076 def onu_deleted_event(self):
2077 self.log.debug('onu-deleted-event')
2078 try:
kesavand86a0fcf2020-08-25 08:25:28 +05302079 olt_serial_number = self.olt_serial_number
Devmalya Paul1e1b1722020-05-07 02:51:15 -04002080 raised_ts = arrow.utcnow().timestamp
2081 intf_id = self._onu_persisted_state.get('intf_id')
2082 onu_id = self._onu_persisted_state.get('onu_id')
2083 serial_number = self._onu_persisted_state.get('serial_number')
2084
2085 self.log.debug("onu-deleted-event-context-data",
2086 pon_id=intf_id,
2087 onu_id=onu_id,
2088 registration_id=self.device_id,
2089 device_id=self.device_id,
2090 onu_serial_number=serial_number,
2091 olt_serial_number=olt_serial_number,
2092 raised_ts=raised_ts)
2093
2094 OnuDeletedEvent(self.events, self.device_id,
2095 intf_id,
2096 serial_number,
2097 str(self.device_id),
2098 olt_serial_number, raised_ts,
2099 onu_id=onu_id).send(True)
2100 except Exception as deleted_event_error:
2101 self.log.exception('onu-deleted-event-error',
2102 errmsg=deleted_event_error)
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002103
2104 def lock_ports(self, lock=True, device_disabled=False):
Matt Jeanneretf4113222019-08-14 19:44:34 -04002105
2106 def success(response):
2107 self.log.debug('set-onu-ports-state', lock=lock, response=response)
Devmalya Paule2e5f2b2020-03-08 18:50:33 -04002108 if device_disabled:
2109 self.onu_disabled_event()
Matt Jeanneretf4113222019-08-14 19:44:34 -04002110
2111 def failure(response):
2112 self.log.error('cannot-set-onu-ports-state', lock=lock, response=response)
2113
2114 task = BrcmUniLockTask(self.omci_agent, self.device_id, lock=lock)
2115 self._deferred = self._onu_omci_device.task_runner.queue_task(task)
2116 self._deferred.addCallbacks(success, failure)
Mahir Gunyele9110a32020-02-20 14:56:50 -08002117
2118 def extract_tp_id_from_path(self, tp_path):
2119 # tp_path is of the format <technology>/<table_id>/<uni_port_name>
Girish Gowdra4c11ddb2020-03-03 11:33:24 -08002120 tp_id = int(tp_path.split(_PATH_SEPERATOR)[1])
2121 return tp_id
onkarkundargia1e2af22020-01-27 11:51:43 +05302122
2123 def start_omci_test_action(self, device, uuid):
2124 """
2125
2126 :param device:
2127 :return:
2128 """
2129 # Code to Run OMCI Test Action
2130 self.log.info('Omci-test-action-request-On', request=device.id)
2131 kwargs_omci_test_action = {
2132 OmciTestRequest.DEFAULT_FREQUENCY_KEY:
2133 OmciTestRequest.DEFAULT_COLLECTION_FREQUENCY
2134 }
2135 serial_number = device.serial_number
2136 if device.connect_status != ConnectStatus.REACHABLE or device.admin_state != AdminState.ENABLED:
2137 return (TestResponse(result=TestResponse.FAILURE))
2138 test_request = OmciTestRequest(self.core_proxy,
2139 self.omci_agent, self.device_id, AniG,
2140 serial_number,
2141 self.logical_device_id, exclusive=False,
2142 uuid=uuid,
2143 **kwargs_omci_test_action)
2144 test_request.perform_test_omci()
2145 return (TestResponse(result=TestResponse.SUCCESS))
kesavand5a2f61d2020-11-23 21:49:50 -05002146
2147 @inlineCallbacks
2148 def get_uni_status(self, request):
2149 """
2150 :param request:
2151 :return:
2152 """
2153 for uni in self.uni_ports:
2154 self.log.debug('uni-id-and-uni-index',uni_id = uni.uni_id, uni_idx=request.uniInfo.uniIndex)
2155 if uni.uni_id == request.uniInfo.uniIndex:
2156 task = BrcmUniStatusTask(self.omci_agent, self.device_id, request, uni.entity_id, self.uni_status_response_queue)
2157 self._deferred = self._onu_omci_device.task_runner.queue_task(task)
2158 try:
2159 self._results = yield self.uni_status_response_queue.get()
2160 self.log.debug('uni-status-response',res=self._results)
2161 except Exception as e:
2162 self.log.exception("failed-dequeueing-received-message", e=e)
2163 self._results.response.status = GetValueResponse.ERROR
2164 self._results.response.errReason = GetValueResponse.UNSUPPORTED
2165 finally:
2166 task.stop()
2167 returnValue(self._results)
2168 self.log.error('uni-not-found', uni_idx=request.uniInfo.uniIndex)
2169 self._results.response.status = GetValueResponse.ERROR
2170 self._results.response.errReason = GetValueResponse.UNSUPPORTED
2171 returnValue(self._results)