blob: 2bf6047115112f6817924479fc974e4c6fc7e270 [file] [log] [blame]
Shad Ansari2825d012018-02-22 23:57:46 +00001#
2# Copyright 2018 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Shad Ansari2825d012018-02-22 23:57:46 +000017import threading
Shad Ansari94250fc2018-07-04 06:52:11 +000018import binascii
Shad Ansari2825d012018-02-22 23:57:46 +000019import grpc
Shad Ansari2825d012018-02-22 23:57:46 +000020
Shad Ansari94250fc2018-07-04 06:52:11 +000021import structlog
Shad Ansari15928d12018-04-17 02:42:13 +000022from twisted.internet import reactor
Shad Ansari0346f0d2018-04-26 06:54:09 +000023from scapy.layers.l2 import Ether, Dot1Q
Shad Ansari3cd9bf22018-07-25 19:29:39 +000024from transitions import Machine
Shad Ansari15928d12018-04-17 02:42:13 +000025
Shad Ansari2825d012018-02-22 23:57:46 +000026from voltha.protos.device_pb2 import Port, Device
27from voltha.protos.common_pb2 import OperStatus, AdminState, ConnectStatus
28from voltha.protos.logical_device_pb2 import LogicalDevice
Shad Ansarif9d2d102018-06-13 02:15:26 +000029from voltha.protos.openflow_13_pb2 import OFPPS_LIVE, OFPPF_FIBER, \
30 OFPPS_LINK_DOWN, OFPPF_1GB_FD, OFPC_GROUP_STATS, OFPC_PORT_STATS, \
Nicolas Palpacuere7359fc2018-06-15 14:10:48 -040031 OFPC_TABLE_STATS, OFPC_FLOW_STATS, ofp_switch_features, ofp_port, \
Jonathan Hart05845412018-07-19 09:55:43 -070032 ofp_port_stats, ofp_desc
Shad Ansarif9d2d102018-06-13 02:15:26 +000033from voltha.protos.logical_device_pb2 import LogicalPort
Shad Ansari2825d012018-02-22 23:57:46 +000034from voltha.core.logical_device_agent import mac_str_to_tuple
35from voltha.registry import registry
36from voltha.adapters.openolt.protos import openolt_pb2_grpc, openolt_pb2
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -040037from voltha.protos.bbf_fiber_tcont_body_pb2 import TcontsConfigData
38from voltha.protos.bbf_fiber_gemport_body_pb2 import GemportsConfigData
39from voltha.protos.bbf_fiber_base_pb2 import VEnetConfig
Shad Ansari2825d012018-02-22 23:57:46 +000040
Nicolas Palpacuere761c902018-07-05 16:30:52 -040041from voltha.adapters.openolt.openolt_statistics import OpenOltStatisticsMgr
Shad Ansari94250fc2018-07-04 06:52:11 +000042import voltha.adapters.openolt.openolt_platform as platform
43from voltha.adapters.openolt.openolt_flow_mgr import OpenOltFlowMgr, \
44 DEFAULT_MGMT_VLAN
45from voltha.adapters.openolt.openolt_alarms import OpenOltAlarmMgr
Shad Ansari3cd9bf22018-07-25 19:29:39 +000046from voltha.adapters.openolt.openolt_bw import OpenOltBW
mzadig384783a2018-08-09 08:52:40 -040047from voltha.extensions.alarms.onu.onu_discovery_alarm import OnuDiscoveryAlarm
Shad Ansarif9d2d102018-06-13 02:15:26 +000048
49
Shad Ansari2825d012018-02-22 23:57:46 +000050class OpenoltDevice(object):
Shad Ansari94250fc2018-07-04 06:52:11 +000051 """
52 OpenoltDevice state machine:
Shad Ansari2825d012018-02-22 23:57:46 +000053
Shad Ansari94250fc2018-07-04 06:52:11 +000054 null ----> init ------> connected -----> up -----> down
55 ^ ^ | ^ | |
56 | | | | | |
57 | +-------------+ +---------+ |
58 | |
59 +-----------------------------------------+
60 """
61 # pylint: disable=too-many-instance-attributes
62 # pylint: disable=R0904
63 states = [
64 'state_null',
65 'state_init',
66 'state_connected',
67 'state_up',
68 'state_down']
69
Shad Ansari22efe832018-05-19 05:37:03 +000070 transitions = [
Shad Ansari94250fc2018-07-04 06:52:11 +000071 {'trigger': 'go_state_init',
72 'source': ['state_null', 'state_connected', 'state_down'],
73 'dest': 'state_init',
Nicolas Palpacuer7183a3b2018-09-10 17:16:49 -040074 'before': 'do_state_init',
75 'after': 'post_init'},
Shad Ansari94250fc2018-07-04 06:52:11 +000076 {'trigger': 'go_state_connected',
77 'source': 'state_init',
78 'dest': 'state_connected',
79 'before': 'do_state_connected'},
80 {'trigger': 'go_state_up',
81 'source': ['state_connected', 'state_down'],
82 'dest': 'state_up',
83 'before': 'do_state_up'},
84 {'trigger': 'go_state_down',
85 'source': ['state_up'],
86 'dest': 'state_down',
Nicolas Palpacuer41141352018-08-31 14:11:38 -040087 'before': 'do_state_down',
88 'after': 'post_down'}]
Shad Ansari22efe832018-05-19 05:37:03 +000089
Shad Ansari2825d012018-02-22 23:57:46 +000090 def __init__(self, **kwargs):
91 super(OpenoltDevice, self).__init__()
92
93 self.adapter_agent = kwargs['adapter_agent']
Shad Ansari5dbc9c82018-05-10 03:29:31 +000094 self.device_num = kwargs['device_num']
Shad Ansari2825d012018-02-22 23:57:46 +000095 device = kwargs['device']
Nicolas Palpacuer253461f2018-06-01 12:01:45 -040096 is_reconciliation = kwargs.get('reconciliation', False)
Shad Ansari2825d012018-02-22 23:57:46 +000097 self.device_id = device.id
98 self.host_and_port = device.host_and_port
Shad Ansarif9d2d102018-06-13 02:15:26 +000099 self.log = structlog.get_logger(id=self.device_id,
100 ip=self.host_and_port)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400101 self.proxy = registry('core').get_proxy('/')
Shad Ansari2825d012018-02-22 23:57:46 +0000102
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400103 # Device already set in the event of reconciliation
104 if not is_reconciliation:
105 # It is a new device
106 # Update device
107 device.root = True
Shad Ansarif9d2d102018-06-13 02:15:26 +0000108 device.serial_number = self.host_and_port # FIXME
Shad Ansari94250fc2018-07-04 06:52:11 +0000109 device.connect_status = ConnectStatus.UNREACHABLE
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400110 device.oper_status = OperStatus.ACTIVATING
111 self.adapter_agent.update_device(device)
Shad Ansari2825d012018-02-22 23:57:46 +0000112
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400113 # If logical device does not exist create it
Shad Ansari94250fc2018-07-04 06:52:11 +0000114 if not device.parent_id:
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400115
116 dpid = '00:00:' + self.ip_hex(self.host_and_port.split(":")[0])
117
118 # Create logical OF device
119 ld = LogicalDevice(
120 root_device_id=self.device_id,
121 switch_features=ofp_switch_features(
122 n_buffers=256, # TODO fake for now
123 n_tables=2, # TODO ditto
124 capabilities=( # TODO and ditto
125 OFPC_FLOW_STATS
126 | OFPC_TABLE_STATS
127 | OFPC_PORT_STATS
128 | OFPC_GROUP_STATS
129 )
Jonathan Hart05845412018-07-19 09:55:43 -0700130 ),
131 desc=ofp_desc(
132 serial_num=device.serial_number
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400133 )
134 )
135 ld_init = self.adapter_agent.create_logical_device(ld,
136 dpid=dpid)
137 self.logical_device_id = ld_init.id
138 else:
139 # logical device already exists
140 self.logical_device_id = device.parent_id
141 if is_reconciliation:
142 self.adapter_agent.reconcile_logical_device(
143 self.logical_device_id)
144
Shad Ansari94250fc2018-07-04 06:52:11 +0000145 # Initialize the OLT state machine
146 self.machine = Machine(model=self, states=OpenoltDevice.states,
147 transitions=OpenoltDevice.transitions,
148 send_event=True, initial='state_null')
149 self.go_state_init()
150
151 def do_state_init(self, event):
Shad Ansari2825d012018-02-22 23:57:46 +0000152 # Initialize gRPC
153 self.channel = grpc.insecure_channel(self.host_and_port)
Shad Ansari8f1b2532018-04-21 07:51:39 +0000154 self.channel_ready_future = grpc.channel_ready_future(self.channel)
nick47b74372018-05-25 18:22:49 -0400155
Nicolas Palpacuer7183a3b2018-09-10 17:16:49 -0400156 self.alarm_mgr = OpenOltAlarmMgr(self.log, self.adapter_agent,
157 self.device_id,
158 self.logical_device_id)
159 self.stats_mgr = OpenOltStatisticsMgr(self, self.log)
160 self.bw_mgr = OpenOltBW(self.log, self.proxy)
161
162 self.log.info('openolt-device-created', device_id=self.device_id)
163
164 def post_init(self, event):
165 self.log.debug('post_init')
166
167 # We have reached init state, starting the indications thread
168
jasonhuang5f3e63b2018-07-27 01:32:48 +0800169 # Catch RuntimeError exception
170 try:
171 # Start indications thread
172 self.indications_thread_handle = threading.Thread(
173 target=self.indications_thread)
Shad Ansarif9521ad2018-09-08 10:46:43 +0000174 # Old getter/setter API for daemon; use it directly as a
jasonhuang5f3e63b2018-07-27 01:32:48 +0800175 # property instead. The Jinkins error will happon on the reason of
Shad Ansarif9521ad2018-09-08 10:46:43 +0000176 # Exception in thread Thread-1 (most likely raised # during
jasonhuang5f3e63b2018-07-27 01:32:48 +0800177 # interpreter shutdown)
178 self.indications_thread_handle.setDaemon(True)
179 self.indications_thread_handle.start()
Shad Ansarif9521ad2018-09-08 10:46:43 +0000180 except Exception as e:
Nicolas Palpacuer7183a3b2018-09-10 17:16:49 -0400181 self.log.exception('post_init failed', e=e)
Shad Ansari94250fc2018-07-04 06:52:11 +0000182
183 def do_state_connected(self, event):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400184 self.log.debug("do_state_connected")
185
Shad Ansari94250fc2018-07-04 06:52:11 +0000186 device = self.adapter_agent.get_device(self.device_id)
Shad Ansari94250fc2018-07-04 06:52:11 +0000187
188 self.stub = openolt_pb2_grpc.OpenoltStub(self.channel)
Nicolas Palpacuer33c2d3d2018-09-06 15:01:14 -0400189
190 device_info = self.stub.GetDeviceInfo(openolt_pb2.Empty())
191 self.log.info('Device connected', device_info=device_info)
192
193 device.vendor = device_info.vendor
194 device.model = device_info.model
195 device.hardware_version = device_info.hardware_version
196 device.firmware_version = device_info.firmware_version
197
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400198 self.flow_mgr = OpenOltFlowMgr(self.log, self.stub, self.device_id,
199 self.logical_device_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000200
Nicolas Palpacuer33c2d3d2018-09-06 15:01:14 -0400201 # TODO: use content of device_info for Resource manager (VOL-948)
202
Nicolas Palpacuer41141352018-08-31 14:11:38 -0400203 # TODO: check for uptime and reboot if too long (VOL-1192)
204
Nicolas Palpacuer41141352018-08-31 14:11:38 -0400205 device.connect_status = ConnectStatus.REACHABLE
206 self.adapter_agent.update_device(device)
207
Shad Ansari94250fc2018-07-04 06:52:11 +0000208 def do_state_up(self, event):
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400209 self.log.debug("do_state_up")
210
Shad Ansari94250fc2018-07-04 06:52:11 +0000211 device = self.adapter_agent.get_device(self.device_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000212
Shad Ansari94250fc2018-07-04 06:52:11 +0000213 # Update phys OF device
214 device.parent_id = self.logical_device_id
215 device.oper_status = OperStatus.ACTIVE
216 self.adapter_agent.update_device(device)
nick47b74372018-05-25 18:22:49 -0400217
Shad Ansari94250fc2018-07-04 06:52:11 +0000218 def do_state_down(self, event):
219 self.log.debug("do_state_down")
220 oper_state = OperStatus.UNKNOWN
221 connect_state = ConnectStatus.UNREACHABLE
Nicolas Palpacuerd35d9bb2018-06-20 17:06:31 -0400222
Shad Ansari94250fc2018-07-04 06:52:11 +0000223 # Propagating to the children
Nicolas Palpacuer253461f2018-06-01 12:01:45 -0400224
Shad Ansari94250fc2018-07-04 06:52:11 +0000225 # Children ports
226 child_devices = self.adapter_agent.get_child_devices(self.device_id)
227 for onu_device in child_devices:
228 uni_no = platform.mk_uni_port_num(
229 onu_device.proxy_address.channel_id,
230 onu_device.proxy_address.onu_id)
231 uni_name = self.port_name(uni_no, Port.ETHERNET_UNI,
232 serial_number=onu_device.serial_number)
Shad Ansari2dda4f32018-05-17 07:16:07 +0000233
Nicolas Palpacuer08cc8182018-08-22 10:22:19 -0400234 if onu_device.adapter == 'brcm_openomci_onu':
235 self.log.debug('using-brcm_openomci_onu, update_interface '
236 'down')
237 onu_adapter_agent = \
238 registry('adapter_loader').get_agent(onu_device.adapter)
239 onu_adapter_agent.update_interface(onu_device,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000240 {'oper_state': 'down'})
Nicolas Palpacuer08cc8182018-08-22 10:22:19 -0400241
Shad Ansari94250fc2018-07-04 06:52:11 +0000242 self.onu_ports_down(onu_device, uni_no, uni_name, oper_state)
243 # Children devices
244 self.adapter_agent.update_child_devices_state(
245 self.device_id, oper_status=oper_state,
246 connect_status=connect_state)
247 # Device Ports
248 device_ports = self.adapter_agent.get_ports(self.device_id,
249 Port.ETHERNET_NNI)
250 logical_ports_ids = [port.label for port in device_ports]
251 device_ports += self.adapter_agent.get_ports(self.device_id,
252 Port.PON_OLT)
253
254 for port in device_ports:
255 port.oper_status = oper_state
256 self.adapter_agent.add_port(self.device_id, port)
257
258 # Device logical port
259 for logical_port_id in logical_ports_ids:
260 logical_port = self.adapter_agent.get_logical_port(
261 self.logical_device_id, logical_port_id)
262 logical_port.ofp_port.state = OFPPS_LINK_DOWN
263 self.adapter_agent.update_logical_port(self.logical_device_id,
264 logical_port)
265
266 # Device
267 device = self.adapter_agent.get_device(self.device_id)
268 device.oper_status = oper_state
269 device.connect_status = connect_state
270
Nicolas Palpacuer41141352018-08-31 14:11:38 -0400271 reactor.callLater(2, self.adapter_agent.update_device, device)
272
273 # def post_up(self, event):
274 # self.log.debug('post-up')
275 # self.flow_mgr.reseed_flows()
276
277 def post_down(self, event):
278 self.log.debug('post_down')
279 self.flow_mgr.reset_flows()
280
Shad Ansari94250fc2018-07-04 06:52:11 +0000281
282 def indications_thread(self):
nick47b74372018-05-25 18:22:49 -0400283 self.log.debug('starting-indications-thread')
Shad Ansari94250fc2018-07-04 06:52:11 +0000284 self.log.debug('connecting to olt', device_id=self.device_id)
285 self.channel_ready_future.result() # blocking call
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400286 self.log.info('connected to olt', device_id=self.device_id)
Shad Ansari94250fc2018-07-04 06:52:11 +0000287 self.go_state_connected()
Shad Ansari2dda4f32018-05-17 07:16:07 +0000288
Shad Ansari15928d12018-04-17 02:42:13 +0000289 self.indications = self.stub.EnableIndication(openolt_pb2.Empty())
Shad Ansari2dda4f32018-05-17 07:16:07 +0000290
Shad Ansari94250fc2018-07-04 06:52:11 +0000291 while True:
nick47b74372018-05-25 18:22:49 -0400292 try:
293 # get the next indication from olt
294 ind = next(self.indications)
295 except Exception as e:
Shad Ansari94250fc2018-07-04 06:52:11 +0000296 self.log.warn('gRPC connection lost', error=e)
297 reactor.callFromThread(self.go_state_down)
298 reactor.callFromThread(self.go_state_init)
299 break
nick47b74372018-05-25 18:22:49 -0400300 else:
301 self.log.debug("rx indication", indication=ind)
Shad Ansari5dbc9c82018-05-10 03:29:31 +0000302
nick47b74372018-05-25 18:22:49 -0400303 # indication handlers run in the main event loop
304 if ind.HasField('olt_ind'):
305 reactor.callFromThread(self.olt_indication, ind.olt_ind)
306 elif ind.HasField('intf_ind'):
307 reactor.callFromThread(self.intf_indication, ind.intf_ind)
308 elif ind.HasField('intf_oper_ind'):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000309 reactor.callFromThread(self.intf_oper_indication,
310 ind.intf_oper_ind)
nick47b74372018-05-25 18:22:49 -0400311 elif ind.HasField('onu_disc_ind'):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000312 reactor.callFromThread(self.onu_discovery_indication,
313 ind.onu_disc_ind)
nick47b74372018-05-25 18:22:49 -0400314 elif ind.HasField('onu_ind'):
315 reactor.callFromThread(self.onu_indication, ind.onu_ind)
316 elif ind.HasField('omci_ind'):
317 reactor.callFromThread(self.omci_indication, ind.omci_ind)
318 elif ind.HasField('pkt_ind'):
319 reactor.callFromThread(self.packet_indication, ind.pkt_ind)
Nicolas Palpacuer33f1a822018-06-13 12:36:36 -0400320 elif ind.HasField('port_stats'):
Nicolas Palpacuere761c902018-07-05 16:30:52 -0400321 reactor.callFromThread(
Shad Ansari94250fc2018-07-04 06:52:11 +0000322 self.stats_mgr.port_statistics_indication,
323 ind.port_stats)
Nicolas Palpacuer33f1a822018-06-13 12:36:36 -0400324 elif ind.HasField('flow_stats'):
Nicolas Palpacuere761c902018-07-05 16:30:52 -0400325 reactor.callFromThread(
Shad Ansari94250fc2018-07-04 06:52:11 +0000326 self.stats_mgr.flow_statistics_indication,
327 ind.flow_stats)
Shad Ansari905b8402018-07-03 00:04:50 +0000328 elif ind.HasField('alarm_ind'):
Nicolas Palpacuer16138de2018-07-03 14:35:18 -0400329 reactor.callFromThread(self.alarm_mgr.process_alarms,
330 ind.alarm_ind)
Nicolas Palpacuer33f1a822018-06-13 12:36:36 -0400331 else:
332 self.log.warn('unknown indication type')
nick47b74372018-05-25 18:22:49 -0400333
Shad Ansari2825d012018-02-22 23:57:46 +0000334 def olt_indication(self, olt_indication):
Shad Ansari22efe832018-05-19 05:37:03 +0000335 if olt_indication.oper_state == "up":
Shad Ansari94250fc2018-07-04 06:52:11 +0000336 self.go_state_up()
Shad Ansari22efe832018-05-19 05:37:03 +0000337 elif olt_indication.oper_state == "down":
Shad Ansari94250fc2018-07-04 06:52:11 +0000338 self.go_state_down()
Shad Ansari2825d012018-02-22 23:57:46 +0000339
340 def intf_indication(self, intf_indication):
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400341 self.log.debug("intf indication", intf_id=intf_indication.intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000342 oper_state=intf_indication.oper_state)
Shad Ansari2825d012018-02-22 23:57:46 +0000343
344 if intf_indication.oper_state == "up":
345 oper_status = OperStatus.ACTIVE
346 else:
347 oper_status = OperStatus.DISCOVERED
348
nick47b74372018-05-25 18:22:49 -0400349 # add_port update the port if it exists
Shad Ansari2825d012018-02-22 23:57:46 +0000350 self.add_port(intf_indication.intf_id, Port.PON_OLT, oper_status)
351
352 def intf_oper_indication(self, intf_oper_indication):
Shad Ansarif9d2d102018-06-13 02:15:26 +0000353 self.log.debug("Received interface oper state change indication",
354 intf_id=intf_oper_indication.intf_id,
355 type=intf_oper_indication.type,
356 oper_state=intf_oper_indication.oper_state)
Shad Ansari2825d012018-02-22 23:57:46 +0000357
358 if intf_oper_indication.oper_state == "up":
359 oper_state = OperStatus.ACTIVE
360 else:
361 oper_state = OperStatus.DISCOVERED
362
363 if intf_oper_indication.type == "nni":
364
Shad Ansari0346f0d2018-04-26 06:54:09 +0000365 # FIXME - creating logical port for 2nd interface throws exception!
Shad Ansari2825d012018-02-22 23:57:46 +0000366 if intf_oper_indication.intf_id != 0:
367 return
368
Nicolas Palpacuercf735ac2018-06-06 11:12:53 -0400369 # add_(logical_)port update the port if it exists
Shad Ansarif9d2d102018-06-13 02:15:26 +0000370 port_no, label = self.add_port(intf_oper_indication.intf_id,
371 Port.ETHERNET_NNI, oper_state)
Nicolas Palpacuercf735ac2018-06-06 11:12:53 -0400372 self.log.debug("int_oper_indication", port_no=port_no, label=label)
Shad Ansarif9d2d102018-06-13 02:15:26 +0000373 self.add_logical_port(port_no, intf_oper_indication.intf_id,
374 oper_state)
Shad Ansari2825d012018-02-22 23:57:46 +0000375
376 elif intf_oper_indication.type == "pon":
377 # FIXME - handle PON oper state change
378 pass
379
380 def onu_discovery_indication(self, onu_disc_indication):
Shad Ansari803900a2018-05-02 06:26:00 +0000381 intf_id = onu_disc_indication.intf_id
Shad Ansarif9d2d102018-06-13 02:15:26 +0000382 serial_number = onu_disc_indication.serial_number
Shad Ansari2825d012018-02-22 23:57:46 +0000383
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400384 serial_number_str = self.stringify_serial_number(serial_number)
Shad Ansari803900a2018-05-02 06:26:00 +0000385
Shad Ansarif9d2d102018-06-13 02:15:26 +0000386 self.log.debug("onu discovery indication", intf_id=intf_id,
387 serial_number=serial_number_str)
Nicolas Palpacuer36a93442018-05-23 17:38:57 -0400388
mzadig384783a2018-08-09 08:52:40 -0400389 # Post ONU Discover alarm 20180809_0805
390 try:
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400391 OnuDiscoveryAlarm(self.alarm_mgr.alarms, pon_id=intf_id,
392 serial_number=serial_number_str).raise_alarm()
mzadig384783a2018-08-09 08:52:40 -0400393 except Exception as disc_alarm_error:
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400394 self.log.exception("onu-discovery-alarm-error",
395 errmsg=disc_alarm_error.message)
mzadig384783a2018-08-09 08:52:40 -0400396 # continue for now.
397
Shad Ansarif9d2d102018-06-13 02:15:26 +0000398 onu_device = self.adapter_agent.get_child_device(
399 self.device_id,
400 serial_number=serial_number_str)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400401
402 if onu_device is None:
Shad Ansari803900a2018-05-02 06:26:00 +0000403 onu_id = self.new_onu_id(intf_id)
Shad Ansari15928d12018-04-17 02:42:13 +0000404 try:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000405 self.add_onu_device(
406 intf_id,
407 platform.intf_id_to_port_no(intf_id, Port.PON_OLT),
408 onu_id, serial_number)
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400409 self.activate_onu(intf_id, onu_id, serial_number,
410 serial_number_str)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400411 except Exception as e:
412 self.log.exception('onu-activation-failed', e=e)
413
Shad Ansari2825d012018-02-22 23:57:46 +0000414 else:
nick47b74372018-05-25 18:22:49 -0400415 if onu_device.connect_status != ConnectStatus.REACHABLE:
416 onu_device.connect_status = ConnectStatus.REACHABLE
417 self.adapter_agent.update_device(onu_device)
418
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400419 onu_id = onu_device.proxy_address.onu_id
Shad Ansarif9d2d102018-06-13 02:15:26 +0000420 if onu_device.oper_status == OperStatus.DISCOVERED \
421 or onu_device.oper_status == OperStatus.ACTIVATING:
422 self.log.debug("ignore onu discovery indication, \
423 the onu has been discovered and should be \
424 activating shorlty", intf_id=intf_id,
425 onu_id=onu_id, state=onu_device.oper_status)
426 elif onu_device.oper_status == OperStatus.ACTIVE:
427 self.log.warn("onu discovery indication whereas onu is \
428 supposed to be active",
429 intf_id=intf_id, onu_id=onu_id,
430 state=onu_device.oper_status)
nick47b74372018-05-25 18:22:49 -0400431 elif onu_device.oper_status == OperStatus.UNKNOWN:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000432 self.log.info("onu in unknown state, recovering from olt \
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400433 reboot probably, activate onu", intf_id=intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000434 onu_id=onu_id, serial_number=serial_number_str)
nick47b74372018-05-25 18:22:49 -0400435
436 onu_device.oper_status = OperStatus.DISCOVERED
437 self.adapter_agent.update_device(onu_device)
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400438 try:
439 self.activate_onu(intf_id, onu_id, serial_number,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000440 serial_number_str)
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400441 except Exception as e:
442 self.log.error('onu-activation-error',
443 serial_number=serial_number_str, error=e)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400444 else:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000445 self.log.warn('unexpected state', onu_id=onu_id,
446 onu_device_oper_state=onu_device.oper_status)
Shad Ansari2825d012018-02-22 23:57:46 +0000447
Shad Ansari2825d012018-02-22 23:57:46 +0000448 def onu_indication(self, onu_indication):
Shad Ansaria0b37892018-06-12 21:34:30 +0000449 self.log.debug("onu indication", intf_id=onu_indication.intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000450 onu_id=onu_indication.onu_id,
451 serial_number=onu_indication.serial_number,
452 oper_state=onu_indication.oper_state,
453 admin_state=onu_indication.admin_state)
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400454 try:
455 serial_number_str = self.stringify_serial_number(
456 onu_indication.serial_number)
Shad Ansari94250fc2018-07-04 06:52:11 +0000457 except Exception as e:
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400458 serial_number_str = None
Shad Ansari94250fc2018-07-04 06:52:11 +0000459
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400460 if serial_number_str is not None:
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400461 onu_device = self.adapter_agent.get_child_device(
Shad Ansaria0b37892018-06-12 21:34:30 +0000462 self.device_id,
Nicolas Palpacuer28cc2662018-06-22 16:30:18 -0400463 serial_number=serial_number_str)
Shad Ansarif9d2d102018-06-13 02:15:26 +0000464 else:
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400465 onu_device = self.adapter_agent.get_child_device(
Shad Ansaria0b37892018-06-12 21:34:30 +0000466 self.device_id,
467 parent_port_no=platform.intf_id_to_port_no(
468 onu_indication.intf_id, Port.PON_OLT),
469 onu_id=onu_indication.onu_id)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400470
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400471 if onu_device is None:
Shad Ansaria0b37892018-06-12 21:34:30 +0000472 self.log.error('onu not found', intf_id=onu_indication.intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000473 onu_id=onu_indication.onu_id)
Shad Ansari803900a2018-05-02 06:26:00 +0000474 return
475
Shad Ansarif9d2d102018-06-13 02:15:26 +0000476 if platform.intf_id_from_pon_port_no(onu_device.parent_port_no) \
Shad Ansarif9521ad2018-09-08 10:46:43 +0000477 != onu_indication.intf_id:
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400478 self.log.warn('ONU-is-on-a-different-intf-id-now',
Shad Ansarif9d2d102018-06-13 02:15:26 +0000479 previous_intf_id=platform.intf_id_from_pon_port_no(
480 onu_device.parent_port_no),
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400481 current_intf_id=onu_indication.intf_id)
482 # FIXME - handle intf_id mismatch (ONU move?)
Shad Ansari2825d012018-02-22 23:57:46 +0000483
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400484 if onu_device.proxy_address.onu_id != onu_indication.onu_id:
485 # FIXME - handle onu id mismatch
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400486 self.log.warn('ONU-id-mismatch, can happen if both voltha and '
487 'the olt rebooted',
Shad Ansarif9d2d102018-06-13 02:15:26 +0000488 expected_onu_id=onu_device.proxy_address.onu_id,
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400489 received_onu_id=onu_indication.onu_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000490
Shad Ansarif9d2d102018-06-13 02:15:26 +0000491 uni_no = platform.mk_uni_port_num(onu_indication.intf_id,
492 onu_indication.onu_id)
493 uni_name = self.port_name(uni_no, Port.ETHERNET_UNI,
494 serial_number=onu_device.serial_number)
Shad Ansari2825d012018-02-22 23:57:46 +0000495
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400496 self.log.debug('port-number-ready', uni_no=uni_no, uni_name=uni_name)
Shad Ansari2825d012018-02-22 23:57:46 +0000497
Shad Ansarif9d2d102018-06-13 02:15:26 +0000498 # Admin state
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400499 if onu_indication.admin_state == 'down':
500 if onu_indication.oper_state != 'down':
Shad Ansarif9d2d102018-06-13 02:15:26 +0000501 self.log.error('ONU-admin-state-down-and-oper-status-not-down',
502 oper_state=onu_indication.oper_state)
503 # Forcing the oper state change code to execute
504 onu_indication.oper_state = 'down'
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400505
Shad Ansarif9d2d102018-06-13 02:15:26 +0000506 # Port and logical port update is taken care of by oper state block
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400507
508 elif onu_indication.admin_state == 'up':
Nicolas Palpacuer921f8cf2018-08-14 18:23:09 -0400509 pass
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400510
511 else:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000512 self.log.warn('Invalid-or-not-implemented-admin-state',
513 received_admin_state=onu_indication.admin_state)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400514
515 self.log.debug('admin-state-dealt-with')
516
Matt Jeanneret12cd5d02018-08-07 15:30:19 -0400517 onu_adapter_agent = \
518 registry('adapter_loader').get_agent(onu_device.adapter)
519 if onu_adapter_agent is None:
520 self.log.error('onu_adapter_agent-could-not-be-retrieved',
521 onu_device=onu_device)
522 return
523
Shad Ansarif9d2d102018-06-13 02:15:26 +0000524 # Operating state
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400525 if onu_indication.oper_state == 'down':
Nicolas Palpacuer4ea3a652018-08-22 10:33:17 -0400526
527 if onu_device.connect_status != ConnectStatus.UNREACHABLE:
528 onu_device.connect_status = ConnectStatus.UNREACHABLE
529 self.adapter_agent.update_device(onu_device)
530
Shad Ansarif9d2d102018-06-13 02:15:26 +0000531 # Move to discovered state
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400532 self.log.debug('onu-oper-state-is-down')
533
534 if onu_device.oper_status != OperStatus.DISCOVERED:
535 onu_device.oper_status = OperStatus.DISCOVERED
536 self.adapter_agent.update_device(onu_device)
Shad Ansarif9d2d102018-06-13 02:15:26 +0000537 # Set port oper state to Discovered
538 self.onu_ports_down(onu_device, uni_no, uni_name,
539 OperStatus.DISCOVERED)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400540
Matt Jeanneret12cd5d02018-08-07 15:30:19 -0400541 if onu_device.adapter == 'brcm_openomci_onu':
542 self.log.debug('using-brcm_openomci_onu')
Nicolas Palpacuer08cc8182018-08-22 10:22:19 -0400543 onu_adapter_agent.update_interface(onu_device,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000544 {'oper_state': 'down'})
Matt Jeanneret12cd5d02018-08-07 15:30:19 -0400545
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400546 elif onu_indication.oper_state == 'up':
547
Nicolas Palpacuer2824a992018-08-20 18:07:41 -0400548 if onu_device.connect_status != ConnectStatus.REACHABLE:
549 onu_device.connect_status = ConnectStatus.REACHABLE
550 self.adapter_agent.update_device(onu_device)
551
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400552 if onu_device.oper_status != OperStatus.DISCOVERED:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000553 self.log.debug("ignore onu indication",
554 intf_id=onu_indication.intf_id,
555 onu_id=onu_indication.onu_id,
556 state=onu_device.oper_status,
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400557 msg_oper_state=onu_indication.oper_state)
558 return
559
Shad Ansarif9d2d102018-06-13 02:15:26 +0000560 # Device was in Discovered state, setting it to active
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400561
Shad Ansarif9d2d102018-06-13 02:15:26 +0000562 # Prepare onu configuration
Shad Ansari5df91f62018-07-25 23:59:46 +0000563 # If we are using the old/current broadcom adapter otherwise
564 # use the openomci adapter
Matt Jeannerete6a70332018-07-20 16:11:25 -0400565 if onu_device.adapter == 'broadcom_onu':
566 self.log.debug('using-broadcom_onu')
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400567
Matt Jeannerete6a70332018-07-20 16:11:25 -0400568 # onu initialization, base configuration (bridge setup ...)
569 def onu_initialization():
570
Shad Ansarif9d2d102018-06-13 02:15:26 +0000571 onu_adapter_agent.adapter.devices_handlers[onu_device.id] \
Matt Jeannerete6a70332018-07-20 16:11:25 -0400572 .message_exchange(cvid=DEFAULT_MGMT_VLAN)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400573 self.log.debug('broadcom-message-exchange-started')
574
Matt Jeannerete6a70332018-07-20 16:11:25 -0400575 # tcont creation (onu)
576 tcont = TcontsConfigData()
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400577 tcont.alloc_id = platform.mk_alloc_id(
578 onu_indication.intf_id, onu_indication.onu_id)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400579
Matt Jeannerete6a70332018-07-20 16:11:25 -0400580 # gem port creation
581 gem_port = GemportsConfigData()
Shad Ansari5df91f62018-07-25 23:59:46 +0000582 gem_port.gemport_id = platform.mk_gemport_id(
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400583 onu_indication.intf_id,
Shad Ansari5df91f62018-07-25 23:59:46 +0000584 onu_indication.onu_id)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400585
Matt Jeannerete6a70332018-07-20 16:11:25 -0400586 # ports creation/update
587 def port_config():
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400588
Matt Jeannerete6a70332018-07-20 16:11:25 -0400589 # "v_enet" creation (olt)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400590
Matt Jeannerete6a70332018-07-20 16:11:25 -0400591 # add_port update port when it exists
592 self.adapter_agent.add_port(
593 self.device_id,
594 Port(
595 port_no=uni_no,
596 label=uni_name,
597 type=Port.ETHERNET_UNI,
598 admin_state=AdminState.ENABLED,
599 oper_status=OperStatus.ACTIVE))
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400600
Matt Jeannerete6a70332018-07-20 16:11:25 -0400601 # v_enet creation (onu)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400602
Matt Jeannerete6a70332018-07-20 16:11:25 -0400603 venet = VEnetConfig(name=uni_name)
604 venet.interface.name = uni_name
605 onu_adapter_agent.create_interface(onu_device, venet)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400606
Matt Jeannerete6a70332018-07-20 16:11:25 -0400607 # ONU device status update in the datastore
608 def onu_update_oper_status():
609 onu_device.oper_status = OperStatus.ACTIVE
610 onu_device.connect_status = ConnectStatus.REACHABLE
611 self.adapter_agent.update_device(onu_device)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400612
Matt Jeannerete6a70332018-07-20 16:11:25 -0400613 # FIXME : the asynchronicity has to be taken care of properly
614 onu_initialization()
615 reactor.callLater(10, onu_adapter_agent.create_tcont,
616 device=onu_device, tcont_data=tcont,
617 traffic_descriptor_data=None)
Shad Ansari5df91f62018-07-25 23:59:46 +0000618 reactor.callLater(11, onu_adapter_agent.create_gemport,
619 onu_device, gem_port)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400620 reactor.callLater(12, port_config)
621 reactor.callLater(12, onu_update_oper_status)
622
623 elif onu_device.adapter == 'brcm_openomci_onu':
624 self.log.debug('using-brcm_openomci_onu')
625
626 # tcont creation (onu)
627 tcont = TcontsConfigData()
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400628 tcont.alloc_id = platform.mk_alloc_id(
629 onu_indication.intf_id, onu_indication.onu_id)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400630
631 # gem port creation
632 gem_port = GemportsConfigData()
Shad Ansari5df91f62018-07-25 23:59:46 +0000633 gem_port.gemport_id = platform.mk_gemport_id(
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400634 onu_indication.intf_id,
Shad Ansari5df91f62018-07-25 23:59:46 +0000635 onu_indication.onu_id)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400636 gem_port.tcont_ref = str(tcont.alloc_id)
637
Shad Ansari5df91f62018-07-25 23:59:46 +0000638 self.log.info('inject-tcont-gem-data-onu-handler',
639 onu_indication=onu_indication, tcont=tcont,
640 gem_port=gem_port)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400641
Shad Ansari5df91f62018-07-25 23:59:46 +0000642 onu_adapter_agent.create_tcont(onu_device, tcont,
643 traffic_descriptor_data=None)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400644 onu_adapter_agent.create_gemport(onu_device, gem_port)
Matt Jeanneret12cd5d02018-08-07 15:30:19 -0400645 onu_adapter_agent.create_interface(onu_device, onu_indication)
Matt Jeannerete6a70332018-07-20 16:11:25 -0400646
647 else:
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400648 self.log.error('unsupported-openolt-onu-adapter')
Matt Jeannerete6a70332018-07-20 16:11:25 -0400649
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400650 else:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000651 self.log.warn('Not-implemented-or-invalid-value-of-oper-state',
652 oper_state=onu_indication.oper_state)
Shad Ansari2825d012018-02-22 23:57:46 +0000653
nick47b74372018-05-25 18:22:49 -0400654 def onu_ports_down(self, onu_device, uni_no, uni_name, oper_state):
655 # Set port oper state to Discovered
656 # add port will update port if it exists
657 self.adapter_agent.add_port(
658 self.device_id,
659 Port(
660 port_no=uni_no,
661 label=uni_name,
662 type=Port.ETHERNET_UNI,
663 admin_state=onu_device.admin_state,
664 oper_status=oper_state))
665
666 # Disable logical port
nick47b74372018-05-25 18:22:49 -0400667 onu_ports = self.proxy.get('devices/{}/ports'.format(onu_device.id))
668 onu_port_id = None
669 for onu_port in onu_ports:
670 if onu_port.port_no == uni_no:
671 onu_port_id = onu_port.label
672 if onu_port_id is None:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000673 self.log.error('matching-onu-port-label-not-found',
674 onu_id=onu_device.id, olt_id=self.device_id,
nick47b74372018-05-25 18:22:49 -0400675 onu_ports=onu_ports)
676 return
677 try:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000678 onu_logical_port = self.adapter_agent.get_logical_port(
679 logical_device_id=self.logical_device_id, port_id=onu_port_id)
nick47b74372018-05-25 18:22:49 -0400680 onu_logical_port.ofp_port.state = OFPPS_LINK_DOWN
Shad Ansarif9d2d102018-06-13 02:15:26 +0000681 self.adapter_agent.update_logical_port(
682 logical_device_id=self.logical_device_id,
683 port=onu_logical_port)
nick47b74372018-05-25 18:22:49 -0400684 self.log.debug('cascading-oper-state-to-port-and-logical-port')
685 except KeyError as e:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000686 self.log.error('matching-onu-port-label-invalid',
687 onu_id=onu_device.id, olt_id=self.device_id,
688 onu_ports=onu_ports, onu_port_id=onu_port_id,
689 error=e)
nick47b74372018-05-25 18:22:49 -0400690
Shad Ansari2825d012018-02-22 23:57:46 +0000691 def omci_indication(self, omci_indication):
692
693 self.log.debug("omci indication", intf_id=omci_indication.intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000694 onu_id=omci_indication.onu_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000695
Shad Ansarif9d2d102018-06-13 02:15:26 +0000696 onu_device = self.adapter_agent.get_child_device(
Nicolas Palpacuer3d0878d2018-08-17 11:29:42 -0400697 self.device_id, onu_id=omci_indication.onu_id,
698 parent_port_no=platform.intf_id_to_port_no(
699 omci_indication.intf_id, Port.PON_OLT),)
Shad Ansari0efa6512018-04-28 06:42:54 +0000700
701 self.adapter_agent.receive_proxied_message(onu_device.proxy_address,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000702 omci_indication.pkt)
Shad Ansari2825d012018-02-22 23:57:46 +0000703
Shad Ansari42db7342018-04-25 21:39:46 +0000704 def packet_indication(self, pkt_indication):
705
706 self.log.debug("packet indication", intf_id=pkt_indication.intf_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000707 gemport_id=pkt_indication.gemport_id,
708 flow_id=pkt_indication.flow_id)
Shad Ansari42db7342018-04-25 21:39:46 +0000709
Shad Ansari22920932018-05-17 00:33:34 +0000710 onu_id = platform.onu_id_from_gemport_id(pkt_indication.gemport_id)
Shad Ansarif9d2d102018-06-13 02:15:26 +0000711 logical_port_num = platform.mk_uni_port_num(pkt_indication.intf_id,
712 onu_id)
Shad Ansari42db7342018-04-25 21:39:46 +0000713
714 pkt = Ether(pkt_indication.pkt)
Shad Ansari0efa6512018-04-28 06:42:54 +0000715 kw = dict(logical_device_id=self.logical_device_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000716 logical_port_no=logical_port_num)
Shad Ansari42db7342018-04-25 21:39:46 +0000717 self.adapter_agent.send_packet_in(packet=str(pkt), **kw)
718
719 def packet_out(self, egress_port, msg):
Shad Ansari0346f0d2018-04-26 06:54:09 +0000720 pkt = Ether(msg)
721 self.log.info('packet out', egress_port=egress_port,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000722 packet=str(pkt).encode("HEX"))
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400723
724 # Find port type
725 egress_port_type = self.port_type(egress_port)
726
727 if egress_port_type == Port.ETHERNET_UNI:
728
729 if pkt.haslayer(Dot1Q):
730 outer_shim = pkt.getlayer(Dot1Q)
731 if isinstance(outer_shim.payload, Dot1Q):
732 # If double tag, remove the outer tag
733 payload = (
734 Ether(src=pkt.src, dst=pkt.dst, type=outer_shim.type) /
735 outer_shim.payload
736 )
737 else:
738 payload = pkt
Shad Ansari0346f0d2018-04-26 06:54:09 +0000739 else:
740 payload = pkt
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400741
742 send_pkt = binascii.unhexlify(str(payload).encode("HEX"))
743
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400744 self.log.debug(
Shad Ansarif9d2d102018-06-13 02:15:26 +0000745 'sending-packet-to-ONU', egress_port=egress_port,
Nicolas Palpacuer2eca1052018-06-26 15:26:15 -0400746 intf_id=platform.intf_id_from_uni_port_num(egress_port),
Shad Ansarif9d2d102018-06-13 02:15:26 +0000747 onu_id=platform.onu_id_from_port_num(egress_port),
748 packet=str(payload).encode("HEX"))
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400749
Shad Ansarif9d2d102018-06-13 02:15:26 +0000750 onu_pkt = openolt_pb2.OnuPacket(
Nicolas Palpacuer2eca1052018-06-26 15:26:15 -0400751 intf_id=platform.intf_id_from_uni_port_num(egress_port),
Shad Ansarif9d2d102018-06-13 02:15:26 +0000752 onu_id=platform.onu_id_from_port_num(egress_port),
753 pkt=send_pkt)
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400754
755 self.stub.OnuPacketOut(onu_pkt)
756
757 elif egress_port_type == Port.ETHERNET_NNI:
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400758 self.log.debug('sending-packet-to-uplink', egress_port=egress_port,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000759 packet=str(pkt).encode("HEX"))
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400760
761 send_pkt = binascii.unhexlify(str(pkt).encode("HEX"))
762
Shad Ansarif9d2d102018-06-13 02:15:26 +0000763 uplink_pkt = openolt_pb2.UplinkPacket(
764 intf_id=platform.intf_id_from_nni_port_num(egress_port),
765 pkt=send_pkt)
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400766
767 self.stub.UplinkPacketOut(uplink_pkt)
768
Shad Ansari0346f0d2018-04-26 06:54:09 +0000769 else:
Shad Ansarif9d2d102018-06-13 02:15:26 +0000770 self.log.warn('Packet-out-to-this-interface-type-not-implemented',
771 egress_port=egress_port,
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400772 port_type=egress_port_type)
Shad Ansari42db7342018-04-25 21:39:46 +0000773
Shad Ansari2825d012018-02-22 23:57:46 +0000774 def send_proxied_message(self, proxy_address, msg):
Shad Ansarif9521ad2018-09-08 10:46:43 +0000775 onu_device = self.adapter_agent.get_child_device(
776 self.device_id,
777 onu_id=proxy_address.onu_id,
778 parent_port_no=platform.intf_id_to_port_no(
779 proxy_address.channel_id, Port.PON_OLT))
Nicolas Palpacuer3d0878d2018-08-17 11:29:42 -0400780 if onu_device.connect_status != ConnectStatus.REACHABLE:
781 self.log.debug('ONU is not reachable, cannot send OMCI',
782 serial_number=onu_device.serial_number,
783 intf_id=onu_device.proxy_address.channel_id,
784 onu_id=onu_device.proxy_address.onu_id)
785 return
Shad Ansarif9d2d102018-06-13 02:15:26 +0000786 omci = openolt_pb2.OmciMsg(intf_id=proxy_address.channel_id,
787 onu_id=proxy_address.onu_id, pkt=str(msg))
Shad Ansari2825d012018-02-22 23:57:46 +0000788 self.stub.OmciMsgOut(omci)
789
790 def add_onu_device(self, intf_id, port_no, onu_id, serial_number):
Shad Ansari2825d012018-02-22 23:57:46 +0000791 self.log.info("Adding ONU", port_no=port_no, onu_id=onu_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000792 serial_number=serial_number)
Shad Ansari2825d012018-02-22 23:57:46 +0000793
794 # NOTE - channel_id of onu is set to intf_id
Shad Ansari0efa6512018-04-28 06:42:54 +0000795 proxy_address = Device.ProxyAddress(device_id=self.device_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000796 channel_id=intf_id, onu_id=onu_id,
797 onu_session_id=onu_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000798
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400799 self.log.debug("Adding ONU", proxy_address=proxy_address)
Shad Ansari2825d012018-02-22 23:57:46 +0000800
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400801 serial_number_str = self.stringify_serial_number(serial_number)
Shad Ansari2825d012018-02-22 23:57:46 +0000802
Shad Ansarif9d2d102018-06-13 02:15:26 +0000803 self.adapter_agent.add_onu_device(
804 parent_device_id=self.device_id, parent_port_no=port_no,
805 vendor_id=serial_number.vendor_id, proxy_address=proxy_address,
806 root=True, serial_number=serial_number_str,
807 admin_state=AdminState.ENABLED)
Shad Ansari2825d012018-02-22 23:57:46 +0000808
Shad Ansari1fd9eb22018-05-15 05:13:49 +0000809 def port_name(self, port_no, port_type, intf_id=None, serial_number=None):
Shad Ansari2825d012018-02-22 23:57:46 +0000810 if port_type is Port.ETHERNET_NNI:
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400811 return "nni-" + str(port_no)
Shad Ansari2825d012018-02-22 23:57:46 +0000812 elif port_type is Port.PON_OLT:
Shad Ansari4a232ca2018-05-05 05:24:17 +0000813 return "pon" + str(intf_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000814 elif port_type is Port.ETHERNET_UNI:
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400815 if serial_number is not None:
816 return serial_number
817 else:
818 return "uni-{}".format(port_no)
Shad Ansari2825d012018-02-22 23:57:46 +0000819
Nicolas Palpacuer7d902812018-06-07 16:17:09 -0400820 def port_type(self, port_no):
821 ports = self.adapter_agent.get_ports(self.device_id)
822 for port in ports:
823 if port.port_no == port_no:
824 return port.type
825 return None
826
Nicolas Palpacuercf735ac2018-06-06 11:12:53 -0400827 def add_logical_port(self, port_no, intf_id, oper_state):
Shad Ansari2825d012018-02-22 23:57:46 +0000828 self.log.info('adding-logical-port', port_no=port_no)
829
830 label = self.port_name(port_no, Port.ETHERNET_NNI)
831
832 cap = OFPPF_1GB_FD | OFPPF_FIBER
833 curr_speed = OFPPF_1GB_FD
834 max_speed = OFPPF_1GB_FD
835
Nicolas Palpacuercf735ac2018-06-06 11:12:53 -0400836 if oper_state == OperStatus.ACTIVE:
837 of_oper_state = OFPPS_LIVE
838 else:
839 of_oper_state = OFPPS_LINK_DOWN
840
Shad Ansarif9d2d102018-06-13 02:15:26 +0000841 ofp = ofp_port(
842 port_no=port_no,
Nicolas Palpacuer5780e152018-09-05 17:25:42 -0400843 hw_addr=mac_str_to_tuple(self._get_mac_form_port_no(port_no)),
Shad Ansarif9d2d102018-06-13 02:15:26 +0000844 name=label, config=0, state=of_oper_state, curr=cap,
845 advertised=cap, peer=cap, curr_speed=curr_speed,
846 max_speed=max_speed)
Shad Ansari2825d012018-02-22 23:57:46 +0000847
Nicolas Palpacuere7359fc2018-06-15 14:10:48 -0400848 ofp_stats = ofp_port_stats(port_no=port_no)
849
Shad Ansarif9d2d102018-06-13 02:15:26 +0000850 logical_port = LogicalPort(
851 id=label, ofp_port=ofp, device_id=self.device_id,
Nicolas Palpacuere7359fc2018-06-15 14:10:48 -0400852 device_port_no=port_no, root_port=True,
853 ofp_port_stats=ofp_stats)
Shad Ansari2825d012018-02-22 23:57:46 +0000854
Shad Ansarif9d2d102018-06-13 02:15:26 +0000855 self.adapter_agent.add_logical_port(self.logical_device_id,
856 logical_port)
Shad Ansari2825d012018-02-22 23:57:46 +0000857
Nicolas Palpacuer5780e152018-09-05 17:25:42 -0400858 def _get_mac_form_port_no(self, port_no):
859 mac = ''
860 for i in range(4):
861 mac = ':%02x' % ((port_no >> (i * 8)) & 0xff) + mac
862 return '00:00' + mac
863
864
Shad Ansari2825d012018-02-22 23:57:46 +0000865 def add_port(self, intf_id, port_type, oper_status):
Shad Ansari22920932018-05-17 00:33:34 +0000866 port_no = platform.intf_id_to_port_no(intf_id, port_type)
Shad Ansari2825d012018-02-22 23:57:46 +0000867
Shad Ansari4a232ca2018-05-05 05:24:17 +0000868 label = self.port_name(port_no, port_type, intf_id)
Shad Ansari2825d012018-02-22 23:57:46 +0000869
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -0400870 self.log.debug('adding-port', port_no=port_no, label=label,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000871 port_type=port_type)
Shad Ansari0efa6512018-04-28 06:42:54 +0000872
873 port = Port(port_no=port_no, label=label, type=port_type,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000874 admin_state=AdminState.ENABLED, oper_status=oper_status)
Shad Ansari0efa6512018-04-28 06:42:54 +0000875
Shad Ansari2825d012018-02-22 23:57:46 +0000876 self.adapter_agent.add_port(self.device_id, port)
Shad Ansari0efa6512018-04-28 06:42:54 +0000877
Shad Ansari2825d012018-02-22 23:57:46 +0000878 return port_no, label
879
Nicolas Palpacuer3bd62092018-08-15 09:42:53 -0400880 def delete_logical_port(self, child_device_id):
881 logical_ports = self.proxy.get('/logical_devices/{}/ports'.format(
882 self.logical_device_id))
883 for logical_port in logical_ports:
884 if logical_port.device_id == child_device_id:
885 self.log.debug('delete-logical-port',
886 onu_device_id=child_device_id,
887 logical_port=logical_port)
888 self.adapter_agent.delete_logical_port(
889 self.logical_device_id, logical_port)
890 return
Shad Ansarif9521ad2018-09-08 10:46:43 +0000891
Nicolas Palpacuer3bd62092018-08-15 09:42:53 -0400892 def delete_port(self, child_serial_number):
893 ports = self.proxy.get('/devices/{}/ports'.format(
894 self.device_id))
895 for port in ports:
896 if port.label == child_serial_number:
897 self.log.debug('delete-port',
898 onu_serial_number=child_serial_number,
899 port=port)
900 self.adapter_agent.delete_port(self.device_id, port)
901 return
902
Shad Ansari2825d012018-02-22 23:57:46 +0000903 def new_onu_id(self, intf_id):
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400904 onu_devices = self.adapter_agent.get_child_devices(self.device_id)
Shad Ansarif9521ad2018-09-08 10:46:43 +0000905 pon_onu_ids = [onu_device.proxy_address.onu_id
906 for onu_device in onu_devices
907 if onu_device.proxy_address.channel_id == intf_id]
Nicolas Palpacuere9bf83c2018-08-16 14:53:14 -0400908 for i in range(1, platform.MAX_ONUS_PER_PON):
909 if i not in pon_onu_ids:
910 return i
911
912 self.log.error('All available onu_ids taken on this pon',
913 intf_id=intf_id, ids_taken=platform.MAX_ONUS_PER_PON)
914 return None
Shad Ansari2825d012018-02-22 23:57:46 +0000915
Shad Ansari2825d012018-02-22 23:57:46 +0000916 def update_flow_table(self, flows):
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400917 self.log.debug('No updates here now, all is done in logical flows '
918 'update')
Shad Ansari5df91f62018-07-25 23:59:46 +0000919
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400920 def update_logical_flows(self, flows_to_add, flows_to_remove,
921 device_rules_map):
Nicolas Palpacuer3d0878d2018-08-17 11:29:42 -0400922 if not self.is_state_up():
923 self.log.info('The OLT is not up, we cannot update flows',
924 flows_to_add=[f.id for f in flows_to_add],
925 flows_to_remove=[f.id for f in flows_to_remove])
926 return
927
Nicolas Palpacuer41141352018-08-31 14:11:38 -0400928 try:
929 self.flow_mgr.update_children_flows(device_rules_map)
930 except Exception as e:
931 self.log.error('Error updating children flows', error=e)
Shad Ansari2825d012018-02-22 23:57:46 +0000932
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400933 self.log.debug('logical flows update', flows_to_add=flows_to_add,
Shad Ansarif9521ad2018-09-08 10:46:43 +0000934 flows_to_remove=flows_to_remove)
Shad Ansari2825d012018-02-22 23:57:46 +0000935
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400936 for flow in flows_to_add:
Nicolas Palpacuer2e0fa582018-07-16 16:04:12 -0400937
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400938 try:
939 self.flow_mgr.add_flow(flow)
940 except grpc.RpcError as grpc_e:
941 if grpc_e.code() == grpc.StatusCode.ALREADY_EXISTS:
Shad Ansarif9521ad2018-09-08 10:46:43 +0000942 self.log.warn('flow already exists', e=grpc_e, flow=flow)
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400943 else:
944 self.log.error('failed to add flow', flow=flow,
945 grpc_error=grpc_e)
946 except Exception as e:
947 self.log.error('failed to add flow', flow=flow, e=e)
948
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400949 for flow in flows_to_remove:
950
951 try:
952 self.flow_mgr.remove_flow(flow)
953 except Exception as e:
954 self.log.error('failed to remove flow', flow=flow, e=e)
955
Nicolas Palpacuer41141352018-08-31 14:11:38 -0400956 self.flow_mgr.repush_all_different_flows()
957
Nicolas Palpacuer0c7c3162018-08-08 11:27:57 -0400958 # There has to be a better way to do this
Shad Ansari89b09d52018-05-21 07:28:14 +0000959 def ip_hex(self, ip):
960 octets = ip.split(".")
961 hex_ip = []
962 for octet in octets:
963 octet_hex = hex(int(octet))
964 octet_hex = octet_hex.split('0x')[1]
965 octet_hex = octet_hex.rjust(2, '0')
966 hex_ip.append(octet_hex)
967 return ":".join(hex_ip)
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400968
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400969 def stringify_vendor_specific(self, vendor_specific):
970 return ''.join(str(i) for i in [
971 hex(ord(vendor_specific[0]) >> 4 & 0x0f)[2:],
972 hex(ord(vendor_specific[0]) & 0x0f)[2:],
973 hex(ord(vendor_specific[1]) >> 4 & 0x0f)[2:],
974 hex(ord(vendor_specific[1]) & 0x0f)[2:],
975 hex(ord(vendor_specific[2]) >> 4 & 0x0f)[2:],
976 hex(ord(vendor_specific[2]) & 0x0f)[2:],
977 hex(ord(vendor_specific[3]) >> 4 & 0x0f)[2:],
978 hex(ord(vendor_specific[3]) & 0x0f)[2:]])
979
Nicolas Palpacuer65de6a42018-05-22 17:28:29 -0400980 def stringify_serial_number(self, serial_number):
981 return ''.join([serial_number.vendor_id,
Shad Ansarif9d2d102018-06-13 02:15:26 +0000982 self.stringify_vendor_specific(
983 serial_number.vendor_specific)])
Jonathan Davis0f917a22018-05-30 14:39:45 -0400984
Nicolas Palpacuer131790b2018-08-20 09:59:34 -0400985 def destringify_serial_number(self, serial_number_str):
986 serial_number = openolt_pb2.SerialNumber(
987 vendor_id=serial_number_str[:4].encode('utf-8'),
988 vendor_specific=binascii.unhexlify(serial_number_str[4:]))
989 return serial_number
990
Jonathan Davis0f917a22018-05-30 14:39:45 -0400991 def disable(self):
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -0400992 self.log.debug('sending-deactivate-olt-message',
Shad Ansarif9521ad2018-09-08 10:46:43 +0000993 device_id=self.device_id)
Jonathan Davis0f917a22018-05-30 14:39:45 -0400994
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -0400995 try:
996 # Send grpc call
997 self.stub.DisableOlt(openolt_pb2.Empty())
998 # The resulting indication will bring the OLT down
999 # self.go_state_down()
1000 self.log.info('openolt device disabled')
1001 except Exception as e:
1002 self.log.error('Failure to disable openolt device', error=e)
Jonathan Davis0f917a22018-05-30 14:39:45 -04001003
Jonathan Davis0f917a22018-05-30 14:39:45 -04001004 def delete(self):
Nicolas Palpacuer0d44e682018-08-06 10:30:26 -04001005 self.log.info('deleting-olt', device_id=self.device_id,
1006 logical_device_id=self.logical_device_id)
1007
1008 try:
1009 # Rebooting to reset the state
1010 self.reboot()
1011 # Removing logical device
1012 self.proxy.remove('/logical_devices/{}'.
1013 format(self.logical_device_id))
1014 except Exception as e:
1015 self.log.error('Failure to delete openolt device', error=e)
1016 raise e
1017 else:
1018 self.log.info('successfully-deleted-olt', device_id=self.device_id)
Jonathan Davis0f917a22018-05-30 14:39:45 -04001019
Jonathan Davis0f917a22018-05-30 14:39:45 -04001020 def reenable(self):
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -04001021 self.log.debug('reenabling-olt', device_id=self.device_id)
Jonathan Davis0f917a22018-05-30 14:39:45 -04001022
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -04001023 try:
1024 self.stub.ReenableOlt(openolt_pb2.Empty())
Jonathan Davis0f917a22018-05-30 14:39:45 -04001025
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -04001026 self.log.info('enabling-all-ports', device_id=self.device_id)
1027 self.adapter_agent.enable_all_ports(self.device_id)
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -04001028 except Exception as e:
1029 self.log.error('Failure to reenable openolt device', error=e)
Nicolas Palpacuer324dcae2018-08-02 11:12:22 -04001030 else:
1031 self.log.info('openolt device reenabled')
1032
Nicolas Palpacuer131790b2018-08-20 09:59:34 -04001033 def activate_onu(self, intf_id, onu_id, serial_number,
1034 serial_number_str):
1035 pir = self.bw_mgr.pir(serial_number_str)
1036 self.log.debug("activating-onu", intf_id=intf_id, onu_id=onu_id,
Shad Ansarif9521ad2018-09-08 10:46:43 +00001037 serial_number_str=serial_number_str,
1038 serial_number=serial_number, pir=pir)
Nicolas Palpacuer131790b2018-08-20 09:59:34 -04001039 onu = openolt_pb2.Onu(intf_id=intf_id, onu_id=onu_id,
1040 serial_number=serial_number, pir=pir)
1041 self.stub.ActivateOnu(onu)
1042 self.log.info('onu-activated', serial_number=serial_number_str)
Nicolas Palpacuer62dbb9c2018-08-02 15:03:35 -04001043
Jonathan Davisb45bb372018-07-19 15:05:15 -04001044 def delete_child_device(self, child_device):
1045 self.log.debug('sending-deactivate-onu',
1046 olt_device_id=self.device_id,
1047 onu_device=child_device,
1048 onu_serial_number=child_device.serial_number)
Nicolas Palpacuer3bd62092018-08-15 09:42:53 -04001049 try:
1050 self.adapter_agent.delete_child_device(self.device_id,
Shad Ansarif9521ad2018-09-08 10:46:43 +00001051 child_device.id,
1052 child_device)
Nicolas Palpacuer3bd62092018-08-15 09:42:53 -04001053 except Exception as e:
1054 self.log.error('adapter_agent error', error=e)
1055 try:
1056 self.delete_logical_port(child_device.id)
1057 except Exception as e:
1058 self.log.error('logical_port delete error', error=e)
1059 try:
1060 self.delete_port(child_device.serial_number)
1061 except Exception as e:
1062 self.log.error('port delete error', error=e)
Shad Ansarif9521ad2018-09-08 10:46:43 +00001063 serial_number = self.destringify_serial_number(
1064 child_device.serial_number)
Jonathan Davisb45bb372018-07-19 15:05:15 -04001065 onu = openolt_pb2.Onu(intf_id=child_device.proxy_address.channel_id,
1066 onu_id=child_device.proxy_address.onu_id,
1067 serial_number=serial_number)
Shad Ansari3cd9bf22018-07-25 19:29:39 +00001068 self.stub.DeleteOnu(onu)
Nicolas Palpacuerfd365ac2018-08-02 11:37:37 -04001069
1070 def reboot(self):
Shad Ansarif9521ad2018-09-08 10:46:43 +00001071 self.log.debug('rebooting openolt device', device_id=self.device_id)
Nicolas Palpacuerfd365ac2018-08-02 11:37:37 -04001072 try:
1073 self.stub.Reboot(openolt_pb2.Empty())
1074 except Exception as e:
1075 self.log.error('something went wrong with the reboot', error=e)
1076 else:
1077 self.log.info('device rebooted')
1078
Nicolas Palpacuer30027f42018-09-06 15:55:54 -04001079 def trigger_statistics_collection(self):
1080 try:
1081 self.stub.CollectStatistics(openolt_pb2.Empty())
1082 except Exception as e:
1083 self.log.error('Error while triggering statistics collection',
1084 error=e)
1085 else:
1086 self.log.info('statistics requested')
Scott Bakerd3190952018-09-04 15:47:28 -07001087
1088 def simulate_alarm(self, alarm):
1089 self.alarm_mgr.simulate_alarm(alarm)