blob: 6c07833065a133635d6f12ce0f0ba1515a829898 [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 NISHIMOTO3f080622019-01-16 10:21:22 +090086 s.updateDevIntState(matched, device.ONU_ACTIVE)
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
Shad Ansarifd298442019-01-08 16:19:35 -080092func (s *Server) CreateTconts(c context.Context, tconts *openolt.Tconts) (*openolt.Empty, error) {
93 logger.Debug("OLT receives CreateTconts()")
94 return new(openolt.Empty), nil
95}
96
97func (s *Server) RemoveTconts(c context.Context, tconts *openolt.Tconts) (*openolt.Empty, error) {
98 logger.Debug("OLT receives RemoveTconts()")
99 return new(openolt.Empty), nil
100}
101
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900102func (s *Server) DeactivateOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800103 logger.Debug("OLT receives DeactivateONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900104 return new(openolt.Empty), nil
105}
106
107func (s *Server) DeleteOnu(c context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800108 logger.Debug("OLT receives DeleteONU()")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900109 return new(openolt.Empty), nil
110}
111
112func (s *Server) OmciMsgOut(c context.Context, msg *openolt.OmciMsg) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800113 logger.Debug("OLT %d receives OmciMsgOut to IF %v (ONU-ID: %v) pkt:%x.", s.Olt.ID, msg.IntfId, msg.OnuId, msg.Pkt)
Shad Ansaria5c79892018-11-29 16:32:59 -0800114 s.omciOut <- *msg
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900115 return new(openolt.Empty), nil
116}
117
118func (s *Server) OnuPacketOut(c context.Context, packet *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800119 onu, _ := s.GetOnuByID(packet.OnuId)
Matteo Scandolo2a659142018-11-15 11:23:45 -0800120 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 +0900121 onuid := packet.OnuId
122 intfid := packet.IntfId
123 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
124 if err := s.onuPacketOut(intfid, onuid, rawpkt); err != nil {
Matteo Scandoloa286c742018-11-20 08:10:04 -0800125 utils.LoggerWithOnu(onu).WithField("error", err).Errorf("OnuPacketOut Error ")
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900126 return new(openolt.Empty), err
127 }
128 return new(openolt.Empty), nil
129}
130
131func (s *Server) UplinkPacketOut(c context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800132 logger.Debug("OLT %d receives UplinkPacketOut().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900133 rawpkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
134 if err := s.uplinkPacketOut(rawpkt); err != nil {
135 return new(openolt.Empty), err
136 }
137 return new(openolt.Empty), nil
138}
139
140func (s *Server) FlowAdd(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800141
142 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
143
144 utils.LoggerWithOnu(onu).WithFields(log.Fields{
145 "olt": s.Olt.ID,
146 "c_tag": flow.Action.IVid,
147 }).Debug("OLT receives FlowAdd().")
148
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900149 return new(openolt.Empty), nil
150}
151
152func (s *Server) FlowRemove(c context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800153 onu, _ := s.GetOnuByID(uint32(flow.OnuId))
154
155 utils.LoggerWithOnu(onu).WithFields(log.Fields{
156 "olt": s.Olt.ID,
157 "c_tag": flow.Action.IVid,
158 }).Debug("OLT receives FlowRemove().")
159
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900160 return new(openolt.Empty), nil
161}
162
163func (s *Server) HeartbeatCheck(c context.Context, empty *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800164 logger.Debug("OLT %d receives HeartbeatCheck().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900165 signature := new(openolt.Heartbeat)
166 signature.HeartbeatSignature = s.Olt.HeartbeatSignature
167 return signature, nil
168}
169
170func (s *Server) EnablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800171 logger.Debug("OLT %d receives EnablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900172 return new(openolt.Empty), nil
173}
174
175func (s *Server) DisablePonIf(c context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800176 logger.Debug("OLT %d receives DisablePonIf().", s.Olt.ID)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900177 return new(openolt.Empty), nil
178}
179
180func (s *Server) Reboot(c context.Context, empty *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800181 logger.Debug("OLT %d receives Reboot ().", s.Olt.ID)
Keita NISHIMOTOca4da5f2018-10-15 22:48:52 +0900182 // Initialize OLT & Env
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900183 logger.Debug("Initialized by Reboot")
184 s.Disable()
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900185 return new(openolt.Empty), nil
186}
187
188func (s *Server) EnableIndication(empty *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800189 logger.Debug("OLT receives EnableInd.")
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900190 defer func() {
191 logger.Debug("grpc EnableIndication Done")
192 }()
193 if err := s.Enable(&stream); err != nil {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800194 logger.Error("Failed to Enable Core: %v", err)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900195 return err
196 }
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900197 return nil
198}
199
Keita NISHIMOTO9708e042018-10-27 09:24:44 +0900200func NewGrpcServer(addrport string) (l net.Listener, g *grpc.Server, e error) {
Matteo Scandolo2aca22c2018-11-08 14:12:07 -0800201 logger.Debug("Listening %s ...", addrport)
Keita NISHIMOTO3b8b9c02018-10-09 09:40:01 +0900202 g = grpc.NewServer()
203 l, e = net.Listen("tcp", addrport)
204 return
205}