blob: ac0c57d9466a63e61e82d958a82fadf55acdde02 [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 Ansari5bb48db2018-11-17 22:03:41 -0800108 copy(resp.Pkt, msg.Pkt)
Shad Ansari70aafb02018-11-14 22:28:17 -0800109 s.omciOut <- resp
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900110 return new(openolt.Empty), nil
111}
112
113func (s *Server) OnuPacketOut(c context.Context, packet *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800114 onu, _ := s.GetOnuByID(packet.OnuId)
Matteo Scandolo2a659142018-11-15 11:23:45 -0800115 utils.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 +0900116 onuid := packet.OnuId
117 intfid := packet.IntfId
118 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
119 if err := s.onuPacketOut(intfid, onuid, rawpkt); err != nil {
120 return new(openolt.Empty), err
121 }
122 return new(openolt.Empty), nil
123}
124
125func (s *Server) UplinkPacketOut(c context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800126 logger.Debug("OLT %d receives UplinkPacketOut().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900127 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
128 if err := s.uplinkPacketOut(rawpkt); err != nil {
129 return new(openolt.Empty), err
130 }
131 return new(openolt.Empty), nil
132}
133
134func (s *Server) FlowAdd(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800135
136 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
137
138 utils.LoggerWithOnu(onu).WithFields(log.Fields{
139 "olt": s.Olt.ID,
140 "c_tag": flow.Action.IVid,
141 }).Debug("OLT receives FlowAdd().")
142
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900143 return new(openolt.Empty), nil
144}
145
146func (s *Server) FlowRemove(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800147 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
148
149 utils.LoggerWithOnu(onu).WithFields(log.Fields{
150 "olt": s.Olt.ID,
151 "c_tag": flow.Action.IVid,
152 }).Debug("OLT receives FlowRemove().")
153
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900154 return new(openolt.Empty), nil
155}
156
157func (s *Server) HeartbeatCheck(c context.Context, empty *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800158 logger.Debug("OLT %d receives HeartbeatCheck().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900159 signature := new(openolt.Heartbeat)
160 signature.HeartbeatSignature = s.Olt.HeartbeatSignature
161 return signature, nil
162}
163
164func (s *Server) EnablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800165 logger.Debug("OLT %d receives EnablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900166 return new(openolt.Empty), nil
167}
168
169func (s *Server) DisablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800170 logger.Debug("OLT %d receives DisablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900171 return new(openolt.Empty), nil
172}
173
174func (s *Server) Reboot(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800175 logger.Debug("OLT %d receives Reboot ().", s.Olt.ID)
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +0900176 // Initialize OLT & Env
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900177 logger.Debug("Initialized by Reboot")
178 s.Disable()
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900179 return new(openolt.Empty), nil
180}
181
182func (s *Server) EnableIndication(empty *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800183 logger.Debug("OLT receives EnableInd.")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900184 defer func() {
185 logger.Debug("grpc EnableIndication Done")
186 }()
187 if err := s.Enable(&stream); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800188 logger.Error("Failed to Enable Core: %v", err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900189 return err
190 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900191 return nil
192}
193
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900194func NewGrpcServer(addrport string) (l net.Listener, g *grpc.Server, e error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800195 logger.Debug("Listening %s ...", addrport)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900196 g = grpc.NewServer()
197 l, e = net.Listen("tcp", addrport)
198 return
199}