blob: e18dfa5d4bfde59985cb2bef3539315526b0acc7 [file] [log] [blame]
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +09001/*
2 * Copyright 2018-present Open Networking Foundation
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
17package core
18
19import (
Matteo Scandolo88e91892018-11-06 16:29:19 -080020 "net"
21
22 "gerrit.opencord.org/voltha-bbsim/common/logger"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090023 "gerrit.opencord.org/voltha-bbsim/device"
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020024 flowHandler "gerrit.opencord.org/voltha-bbsim/flow"
25 openolt "gerrit.opencord.org/voltha-bbsim/protos"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090026 "github.com/google/gopacket"
27 "github.com/google/gopacket/layers"
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +090028 omci "github.com/opencord/omci-sim"
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080029 log "github.com/sirupsen/logrus"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090030 "golang.org/x/net/context"
31 "google.golang.org/grpc"
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020032 "google.golang.org/grpc/codes"
33 "google.golang.org/grpc/status"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090034)
35
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020036// DisableOlt method sends OLT down indication
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090037func (s *Server) DisableOlt(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080038 logger.Debug("OLT receives DisableOLT()")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020039
40 err := flowHandler.PortDown(0)
41 if err != nil {
42 logger.Error("Failed in port down %v", err)
43 }
44
Keita NISHIMOTOb8417492018-10-19 17:37:38 +090045 if s.EnableServer != nil {
46 if err := sendOltIndDown(*s.EnableServer); err != nil {
47 return new(openolt.Empty), err
48 }
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080049 logger.Debug("Successfuly sent OLT DOWN indication")
Keita NISHIMOTO9c6f6f12018-10-18 04:56:34 +090050 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090051 return new(openolt.Empty), nil
52}
53
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020054// ReenableOlt method sends OLT up indication for re-enabling OLT
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090055func (s *Server) ReenableOlt(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080056 logger.Debug("OLT receives Reenable()")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +020057
58 err := flowHandler.PortUp(0)
59 if err != nil {
60 logger.Error("Failed in port up %v", err)
61 }
62
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020063 if s.EnableServer != nil {
64 if err := sendOltIndUp(*s.EnableServer, s.Olt); err != nil {
65 logger.Error("Failed to send OLT UP indication for reenable OLT: %v", err)
66 return new(openolt.Empty), err
67 }
68 logger.Debug("Successfuly sent OLT UP indication")
69 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090070 return new(openolt.Empty), nil
71}
72
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020073// CollectStatistics method invoked by VOLTHA to get OLT statistics
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090074func (s *Server) CollectStatistics(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080075 logger.Debug("OLT receives CollectStatistics()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090076 return new(openolt.Empty), nil
77}
78
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020079// GetDeviceInfo returns OLT info
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090080func (s *Server) GetDeviceInfo(c context.Context, empty *openolt.Empty) (*openolt.DeviceInfo, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080081 logger.Debug("OLT receives GetDeviceInfo()")
82 devinfo := new(openolt.DeviceInfo)
83 devinfo.Vendor = "EdgeCore"
84 devinfo.Model = "asfvolt16"
85 devinfo.HardwareVersion = ""
86 devinfo.FirmwareVersion = ""
87 devinfo.Technology = "xgspon"
Shad Ansari704c6f22018-11-13 14:57:53 -080088 devinfo.PonPorts = 16
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080089 devinfo.OnuIdStart = 1
90 devinfo.OnuIdEnd = 255
91 devinfo.AllocIdStart = 1024
92 devinfo.AllocIdEnd = 16383
93 devinfo.GemportIdStart = 1024
94 devinfo.GemportIdEnd = 65535
95 devinfo.FlowIdStart = 1
96 devinfo.FlowIdEnd = 16383
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +020097 devinfo.DeviceSerialNumber = s.Olt.SerialNumber
Shad Ansari010c1942018-11-08 09:32:24 -080098
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090099 return devinfo, nil
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900100}
101
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200102// ActivateOnu method handles ONU activation request from VOLTHA
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900103func (s *Server) ActivateOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800104 logger.Debug("OLT receives ActivateONU()")
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200105
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200106 matched, exist := s.getOnuFromSNmap(onu.SerialNumber)
107 if !exist {
108 logger.Fatal("ONU not found with serial nnumber %v", onu.SerialNumber)
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200109 return new(openolt.Empty), status.Errorf(codes.NotFound, "ONU not found with serial number %v", onu.SerialNumber)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900110 }
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200111 onuid := onu.OnuId
112 matched.OnuID = onuid
113 s.updateDevIntState(matched, device.ONU_ACTIVE)
114 logger.Debug("ONU IntfID: %d OnuID: %d activated succesufully.", onu.IntfId, onu.OnuId)
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200115 if err := sendOnuInd(*s.EnableServer, matched, s.IndInterval, "up", "up"); err != nil {
116 logger.Error("Failed to send ONU Indication intfID %d, onuID %d", matched.IntfID, matched.OnuID)
117 return new(openolt.Empty), err
118 }
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200119
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900120 return new(openolt.Empty), nil
121}
122
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200123// CreateTconts method should handle Tcont creation
Shad Ansarifd298442019-01-08 16:19:35 -0800124func (s *Server) CreateTconts(c context.Context, tconts *openolt.Tconts) (*openolt.Empty, error) {
125 logger.Debug("OLT receives CreateTconts()")
126 return new(openolt.Empty), nil
127}
128
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200129// RemoveTconts method should handle t-cont removal
Shad Ansarifd298442019-01-08 16:19:35 -0800130func (s *Server) RemoveTconts(c context.Context, tconts *openolt.Tconts) (*openolt.Empty, error) {
131 logger.Debug("OLT receives RemoveTconts()")
132 return new(openolt.Empty), nil
133}
134
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200135// DeactivateOnu method should handle ONU deactivation
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900136func (s *Server) DeactivateOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800137 logger.Debug("OLT receives DeactivateONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900138 return new(openolt.Empty), nil
139}
140
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200141// DeleteOnu handles ONU deletion request from VOLTHA
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900142func (s *Server) DeleteOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200143 logger.Debug("OLT receives DeleteONU() intfID: %d, onuID: %d", onu.IntfId, onu.OnuId)
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200144 Onu, err := s.GetOnuByID(onu.OnuId, onu.IntfId)
145 if err != nil {
146 return new(openolt.Empty), err
147 }
148
149 // Mark ONU internal state as ONU_FREE and reset onuID
150 Onu.InternalState = device.ONU_FREE
151 Onu.OnuID = 0
152
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200153 // Get snMap key for the ONU serial number
154 snkey := stringifySerialNumber(Onu.SerialNumber)
155
156 // Delete Serial number entry from SNmap
157 logger.Info("Deleting serial number %s from SNmap", snkey)
158 s.SNmap.Delete(snkey)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900159 return new(openolt.Empty), nil
160}
161
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200162// OmciMsgOut receives OMCI messages from voltha
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900163func (s *Server) OmciMsgOut(c context.Context, msg *openolt.OmciMsg) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800164 logger.Debug("OLT %d receives OmciMsgOut to IF %v (ONU-ID: %v) pkt:%x.", s.Olt.ID, msg.IntfId, msg.OnuId, msg.Pkt)
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200165 // Get ONU state
166 onu, err := s.GetOnuByID(msg.OnuId, msg.IntfId)
167 if err != nil {
168 logger.Error("ONU not found intfID %d, onuID %d", msg.IntfId, msg.OnuId)
169 return new(openolt.Empty), err
170 }
171 state := onu.GetIntState()
172 logger.Debug("ONU-ID: %v, ONU state: %d", msg.OnuId, state)
173
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200174 // If ONU is ONU_INACTIVE, ONU_FREE or ONU_OMCI_CHANNEL_LOS_RAISED drop
175 if state != device.ONU_ACTIVE && state != device.ONU_OMCIACTIVE {
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200176 logger.Info("ONU (IF %v ONU-ID: %v) is not ACTIVE, so not processing OmciMsg", msg.IntfId, msg.OnuId)
177 return new(openolt.Empty), nil
178 }
Shad Ansaria5c79892018-11-29 16:32:59 -0800179 s.omciOut <- *msg
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900180 return new(openolt.Empty), nil
181}
182
183func (s *Server) OnuPacketOut(c context.Context, packet *openolt.OnuPacket) (*openolt.Empty, error) {
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200184 onu, err := s.GetOnuByID(packet.OnuId, packet.IntfId)
185 if err != nil {
186 logger.Error("Failed in OnuPacketOut, %v", err)
187 return new(openolt.Empty), err
188 }
Keita NISHIMOTO9617c852019-06-17 21:46:44 +0900189 device.LoggerWithOnu(onu).Debugf("OLT %d receives OnuPacketOut () to IF-ID:%d ONU-ID %d.", s.Olt.ID, packet.IntfId, packet.OnuId)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900190 onuid := packet.OnuId
191 intfid := packet.IntfId
192 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
193 if err := s.onuPacketOut(intfid, onuid, rawpkt); err != nil {
Keita NISHIMOTO9617c852019-06-17 21:46:44 +0900194 device.LoggerWithOnu(onu).WithField("error", err).Errorf("OnuPacketOut Error ")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900195 return new(openolt.Empty), err
196 }
197 return new(openolt.Empty), nil
198}
199
200func (s *Server) UplinkPacketOut(c context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800201 logger.Debug("OLT %d receives UplinkPacketOut().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900202 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
203 if err := s.uplinkPacketOut(rawpkt); err != nil {
204 return new(openolt.Empty), err
205 }
206 return new(openolt.Empty), nil
207}
208
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200209// FlowAdd method should handle flows addition to datapath for OLT and ONU
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900210func (s *Server) FlowAdd(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200211 logger.Debug("OLT %d receives FlowAdd() %v", s.Olt.ID, flow)
212 // Check if flow already present
213 flowKey := FlowKey{
214 FlowID: flow.FlowId,
215 FlowDirection: flow.FlowType,
216 }
217 if _, exist := s.FlowMap[flowKey]; exist {
218 logger.Error("Flow already exists %v", flow)
219 return new(openolt.Empty), status.Errorf(codes.AlreadyExists, "Flow already exists")
220 }
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800221
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200222 // Send flow to flowHandler
223 err := flowHandler.AddFlow(flow)
224 if err != nil {
225 logger.Error("Error in pushing flow to datapath")
226 return new(openolt.Empty), err
227 }
228
229 // Update flowMap
230 s.FlowMap[flowKey] = flow
231
232 onu, err := s.GetOnuByID(uint32(flow.OnuId), uint32(flow.AccessIntfId))
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900233 if err == nil {
Keita NISHIMOTO26ebaa82019-03-07 10:00:35 +0900234 onu.GemportID = uint16(flow.GemportId)
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800235
Keita NISHIMOTO9617c852019-06-17 21:46:44 +0900236 device.LoggerWithOnu(onu).WithFields(log.Fields{
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900237 "olt": s.Olt.ID,
238 "c_tag": flow.Action.IVid,
239 }).Debug("OLT receives FlowAdd().")
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800240
Keita NISHIMOTO2807c542019-06-04 22:58:32 +0900241 // EAPOL flow
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900242 if flow.Classifier.EthType == uint32(layers.EthernetTypeEAPOL) {
Kailash95bb5ac2019-07-01 20:56:37 -0700243 logger.Debug("OLT %d receives EAPOL flow IntfID:%d OnuID:%d EType:%x", s.Olt.ID, flow.AccessIntfId, flow.OnuId, flow.Classifier.EthType)
Keita NISHIMOTO42db49e2019-01-29 07:49:41 +0900244 omcistate := omci.GetOnuOmciState(onu.IntfID, onu.OnuID)
Keita NISHIMOTO26ebaa82019-03-07 10:00:35 +0900245 if omcistate != omci.DONE {
246 logger.Warn("FlowAdd() OMCI state %d is not \"DONE\"", omci.GetOnuOmciState(onu.OnuID, onu.IntfID))
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900247 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200248 _ = s.updateOnuIntState(onu.IntfID, onu.OnuID, device.ONU_OMCIACTIVE)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900249 }
Keita NISHIMOTO2807c542019-06-04 22:58:32 +0900250
251 // DHCP flow
252 if flow.Classifier.EthType == uint32(layers.EthernetTypeIPv4) {
253 logger.Debug("Received flow's srcPort:%d dstPort:%d", flow.Classifier.SrcPort, flow.Classifier.DstPort)
254 if flow.Classifier.SrcPort == uint32(68) && flow.Classifier.DstPort == uint32(67) {
255 logger.Debug("OLT %d receives DHCP flow IntfID:%d OnuID:%d EType:%x GemPortID:%d", s.Olt.ID, flow.AccessIntfId, flow.OnuId, flow.Classifier.EthType, flow.GemportId)
256 omcistate := omci.GetOnuOmciState(onu.IntfID, onu.OnuID)
257 if omcistate != omci.DONE {
258 logger.Warn("FlowAdd() OMCI state %d is not \"DONE\"", omci.GetOnuOmciState(onu.OnuID, onu.IntfID))
259 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200260 _ = s.updateOnuIntState(onu.IntfID, onu.OnuID, device.ONU_AUTHENTICATED)
Keita NISHIMOTO2807c542019-06-04 22:58:32 +0900261 }
262 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200263 // Update flow ID in ONU object
264 onu.FlowIDs = append(onu.FlowIDs, flow.FlowId)
Keita NISHIMOTO7bce7692019-01-19 09:31:09 +0900265 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900266 return new(openolt.Empty), nil
267}
268
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200269// FlowRemove handles flow deletion from datapath
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900270func (s *Server) FlowRemove(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200271 logger.Debug("OLT %d receives FlowRemove(): %v", s.Olt.ID, flow)
272
273 // Check if flow exists
274 flowKey := FlowKey{
275 FlowID: flow.FlowId,
276 FlowDirection: flow.FlowType,
277 }
278 if _, exist := s.FlowMap[flowKey]; !exist {
279 logger.Error("Flow %v not found", flow)
280 return new(openolt.Empty), status.Errorf(codes.NotFound, "Flow not found")
281 }
282
283 flow = s.FlowMap[flowKey]
284 // Send delete flow to flowHandler
285 err := flowHandler.DeleteFlow(flow)
286 if err != nil {
287 return new(openolt.Empty), err
288 }
289
Keita NISHIMOTO7057aa62019-05-28 01:24:08 +0900290 onu, err := s.GetOnuByID(uint32(flow.OnuId), uint32(flow.AccessIntfId))
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200291 if err != nil {
292 logger.Warn("Failed flow remove %v", err)
293 } else {
294 // Delete flowID from onu
295 onu.DeleteFlowID(flow.FlowId)
Keita NISHIMOTO9617c852019-06-17 21:46:44 +0900296 device.LoggerWithOnu(onu).WithFields(log.Fields{
Keita NISHIMOTO7057aa62019-05-28 01:24:08 +0900297 "olt": s.Olt.ID,
298 "c_tag": flow.Action.IVid,
299 }).Debug("OLT receives FlowRemove().")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200300 logger.Debug("Flows %v in ONU %d", onu.FlowIDs, onu.OnuID)
Keita NISHIMOTO7057aa62019-05-28 01:24:08 +0900301 }
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200302
303 // Delete flow from flowMap
304 delete(s.FlowMap, flowKey)
305
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900306 return new(openolt.Empty), nil
307}
308
309func (s *Server) HeartbeatCheck(c context.Context, empty *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800310 logger.Debug("OLT %d receives HeartbeatCheck().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900311 signature := new(openolt.Heartbeat)
312 signature.HeartbeatSignature = s.Olt.HeartbeatSignature
313 return signature, nil
314}
315
316func (s *Server) EnablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800317 logger.Debug("OLT %d receives EnablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900318 return new(openolt.Empty), nil
319}
320
321func (s *Server) DisablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800322 logger.Debug("OLT %d receives DisablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900323 return new(openolt.Empty), nil
324}
325
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200326// Reboot method handles reboot of OLT
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900327func (s *Server) Reboot(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800328 logger.Debug("OLT %d receives Reboot ().", s.Olt.ID)
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +0900329 // Initialize OLT & Env
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900330 logger.Debug("Initialized by Reboot")
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200331 s.handleOLTReboot()
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900332 return new(openolt.Empty), nil
333}
334
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200335// EnableIndication starts sending indications for OLT and ONU
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900336func (s *Server) EnableIndication(empty *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800337 logger.Debug("OLT receives EnableInd.")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900338 defer func() {
339 logger.Debug("grpc EnableIndication Done")
340 }()
341 if err := s.Enable(&stream); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800342 logger.Error("Failed to Enable Core: %v", err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900343 return err
344 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900345 return nil
346}
347
Zdravko Bozakov8b9328c2019-05-15 05:13:34 +0200348// NewGrpcServer starts openolt gRPC server
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900349func NewGrpcServer(addrport string) (l net.Listener, g *grpc.Server, e error) {
Zdravko Bozakov7401ff22019-05-28 22:45:12 +0200350 logger.Debug("OpenOLT gRPC server listening %s ...", addrport)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900351 g = grpc.NewServer()
352 l, e = net.Listen("tcp", addrport)
353 return
354}