blob: 9cd6fae911f59148ef667fd9d31ce065e6d74e57 [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"
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080023 "gerrit.opencord.org/voltha-bbsim/common/utils"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090024 "gerrit.opencord.org/voltha-bbsim/device"
25 "gerrit.opencord.org/voltha-bbsim/protos"
26 "github.com/google/gopacket"
27 "github.com/google/gopacket/layers"
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080028 log "github.com/sirupsen/logrus"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090029 "golang.org/x/net/context"
30 "google.golang.org/grpc"
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090031)
32
33// gRPC Service
34func (s *Server) DisableOlt(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080035 logger.Debug("OLT receives DisableOLT()")
Keita NISHIMOTOb8417492018-10-19 17:37:38 +090036 if s.EnableServer != nil {
37 if err := sendOltIndDown(*s.EnableServer); err != nil {
38 return new(openolt.Empty), err
39 }
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080040 logger.Debug("Successfuly sent OLT DOWN indication")
Keita NISHIMOTO9c6f6f12018-10-18 04:56:34 +090041 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090042 return new(openolt.Empty), nil
43}
44
45func (s *Server) ReenableOlt(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080046 logger.Debug("OLT receives Reenable()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090047 return new(openolt.Empty), nil
48}
49
50func (s *Server) CollectStatistics(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080051 logger.Debug("OLT receives CollectStatistics()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090052 return new(openolt.Empty), nil
53}
54
55func (s *Server) GetDeviceInfo(c context.Context, empty *openolt.Empty) (*openolt.DeviceInfo, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080056 logger.Debug("OLT receives GetDeviceInfo()")
57 devinfo := new(openolt.DeviceInfo)
58 devinfo.Vendor = "EdgeCore"
59 devinfo.Model = "asfvolt16"
60 devinfo.HardwareVersion = ""
61 devinfo.FirmwareVersion = ""
62 devinfo.Technology = "xgspon"
Shad Ansari704c6f22018-11-13 14:57:53 -080063 devinfo.PonPorts = 16
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080064 devinfo.OnuIdStart = 1
65 devinfo.OnuIdEnd = 255
66 devinfo.AllocIdStart = 1024
67 devinfo.AllocIdEnd = 16383
68 devinfo.GemportIdStart = 1024
69 devinfo.GemportIdEnd = 65535
70 devinfo.FlowIdStart = 1
71 devinfo.FlowIdEnd = 16383
Shad Ansari010c1942018-11-08 09:32:24 -080072
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +090073 return devinfo, nil
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090074}
75
76func (s *Server) ActivateOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080077 logger.Debug("OLT receives ActivateONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090078 result := device.ValidateONU(*onu, s.Onumap)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090079 if result == true {
Keita NISHIMOTO9708e042018-10-27 09:24:44 +090080 matched, error := getOnuBySN(s.Onumap, onu.SerialNumber)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090081 if error != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080082 logger.Fatal("%s", error)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090083 }
84 onuid := onu.OnuId
85 matched.OnuID = onuid
Keita NISHIMOTOb8417492018-10-19 17:37:38 +090086 matched.UpdateIntStatus(device.ONU_ACTIVATED)
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080087 logger.Debug("ONU IntfID: %d OnuID: %d activated succesufully.", onu.IntfId, onu.OnuId)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090088 }
89 return new(openolt.Empty), nil
90}
91
92func (s *Server) DeactivateOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080093 logger.Debug("OLT receives DeactivateONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090094 return new(openolt.Empty), nil
95}
96
97func (s *Server) DeleteOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -080098 logger.Debug("OLT receives DeleteONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +090099 return new(openolt.Empty), nil
100}
101
102func (s *Server) OmciMsgOut(c context.Context, msg *openolt.OmciMsg) (*openolt.Empty, error) {
Shad Ansari70aafb02018-11-14 22:28:17 -0800103 var resp OmciMsg
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800104 logger.Debug("OLT %d receives OmciMsgOut to IF %v (ONU-ID: %v) pkt:%x.", s.Olt.ID, msg.IntfId, msg.OnuId, msg.Pkt)
Shad Ansarief436272018-11-14 15:58:20 -0800105 resp.IntfId = msg.IntfId
106 resp.OnuId = msg.OnuId
107 resp.Pkt = make([]byte, len(msg.Pkt))
Shad Ansari70aafb02018-11-14 22:28:17 -0800108 s.omciOut <- resp
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900109 return new(openolt.Empty), nil
110}
111
112func (s *Server) OnuPacketOut(c context.Context, packet *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800113 onu, _ := s.GetOnuByID(packet.OnuId)
114 utils.LoggerWithOnu(onu).Debug("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 +0900115 onuid := packet.OnuId
116 intfid := packet.IntfId
117 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
118 if err := s.onuPacketOut(intfid, onuid, rawpkt); err != nil {
119 return new(openolt.Empty), err
120 }
121 return new(openolt.Empty), nil
122}
123
124func (s *Server) UplinkPacketOut(c context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800125 logger.Debug("OLT %d receives UplinkPacketOut().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900126 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
127 if err := s.uplinkPacketOut(rawpkt); err != nil {
128 return new(openolt.Empty), err
129 }
130 return new(openolt.Empty), nil
131}
132
133func (s *Server) FlowAdd(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800134
135 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
136
137 utils.LoggerWithOnu(onu).WithFields(log.Fields{
138 "olt": s.Olt.ID,
139 "c_tag": flow.Action.IVid,
140 }).Debug("OLT receives FlowAdd().")
141
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900142 return new(openolt.Empty), nil
143}
144
145func (s *Server) FlowRemove(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800146 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
147
148 utils.LoggerWithOnu(onu).WithFields(log.Fields{
149 "olt": s.Olt.ID,
150 "c_tag": flow.Action.IVid,
151 }).Debug("OLT receives FlowRemove().")
152
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900153 return new(openolt.Empty), nil
154}
155
156func (s *Server) HeartbeatCheck(c context.Context, empty *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800157 logger.Debug("OLT %d receives HeartbeatCheck().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900158 signature := new(openolt.Heartbeat)
159 signature.HeartbeatSignature = s.Olt.HeartbeatSignature
160 return signature, nil
161}
162
163func (s *Server) EnablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800164 logger.Debug("OLT %d receives EnablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900165 return new(openolt.Empty), nil
166}
167
168func (s *Server) DisablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800169 logger.Debug("OLT %d receives DisablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900170 return new(openolt.Empty), nil
171}
172
173func (s *Server) Reboot(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800174 logger.Debug("OLT %d receives Reboot ().", s.Olt.ID)
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +0900175 // Initialize OLT & Env
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900176 logger.Debug("Initialized by Reboot")
177 s.Disable()
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900178 return new(openolt.Empty), nil
179}
180
181func (s *Server) EnableIndication(empty *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800182 logger.Debug("OLT receives EnableInd.")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900183 defer func() {
184 logger.Debug("grpc EnableIndication Done")
185 }()
186 if err := s.Enable(&stream); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800187 logger.Error("Failed to Enable Core: %v", err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900188 return err
189 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900190 return nil
191}
192
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900193func NewGrpcServer(addrport string) (l net.Listener, g *grpc.Server, e error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800194 logger.Debug("Listening %s ...", addrport)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900195 g = grpc.NewServer()
196 l, e = net.Listen("tcp", addrport)
197 return
198}