blob: dbc226ea68b22fac59f09f26e443af70f08e44c2 [file] [log] [blame]
Matteo Scandolo11006992019-08-28 11:29:46 -07001/*
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
Matteo Scandolo4747d292019-08-05 11:50:18 -070017package devices
18
19import (
20 "context"
21 "errors"
22 "fmt"
Zdravko Bozakov2da76342019-10-21 09:47:35 +020023 "net"
24 "sync"
Zdravko Bozakov681364d2019-11-10 14:28:46 +010025 "time"
Zdravko Bozakov2da76342019-10-21 09:47:35 +020026
Matteo Scandolo47e69bb2019-08-28 15:41:12 -070027 "github.com/google/gopacket"
28 "github.com/google/gopacket/layers"
Matteo Scandolodf3f85d2020-01-15 12:50:48 -080029 "github.com/google/gopacket/pcap"
Matteo Scandolo4747d292019-08-05 11:50:18 -070030 "github.com/looplab/fsm"
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -070031 "github.com/opencord/bbsim/internal/bbsim/packetHandlers"
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070032 bbsim "github.com/opencord/bbsim/internal/bbsim/types"
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +010033 "github.com/opencord/bbsim/internal/common"
William Kurkian9dadc5b2019-10-22 13:51:57 -040034 omcisim "github.com/opencord/omci-sim"
Matteo Scandolo3de9de02019-11-14 13:40:03 -080035 "github.com/opencord/voltha-protos/v2/go/openolt"
Matteo Scandolof65e6872020-04-15 15:18:43 -070036 "github.com/opencord/voltha-protos/v2/go/tech_profile"
Matteo Scandolo4747d292019-08-05 11:50:18 -070037 log "github.com/sirupsen/logrus"
38 "google.golang.org/grpc"
Pragya Arya8bdb4532020-03-02 17:08:09 +053039 "google.golang.org/grpc/codes"
Zdravko Bozakov681364d2019-11-10 14:28:46 +010040 "google.golang.org/grpc/reflection"
Pragya Arya8bdb4532020-03-02 17:08:09 +053041 "google.golang.org/grpc/status"
Matteo Scandolo4747d292019-08-05 11:50:18 -070042)
43
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070044var oltLogger = log.WithFields(log.Fields{
Matteo Scandolo84f7d482019-08-08 19:00:47 -070045 "module": "OLT",
46})
47
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070048type OltDevice struct {
David Bainbridge103cf022019-12-16 20:11:35 +000049 sync.Mutex
50
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070051 // BBSIM Internals
Pragya Arya2225f202020-01-29 18:05:01 +053052 ID int
53 SerialNumber string
54 NumNni int
55 NumPon int
56 NumOnuPerPon int
57 InternalState *fsm.FSM
58 channel chan Message
59 nniPktInChannel chan *bbsim.PacketMsg // packets coming in from the NNI and going to VOLTHA
60 nniHandle *pcap.Handle // handle on the NNI interface, close it when shutting down the NNI channel
Pragya Arya8bdb4532020-03-02 17:08:09 +053061 Flows map[FlowKey]openolt.Flow
Pragya Arya2225f202020-01-29 18:05:01 +053062 Delay int
63 ControlledActivation mode
Pragya Arya324337e2020-02-20 14:35:08 +053064 EventChannel chan common.Event
65 PublishEvents bool
Pragya Arya996a0892020-03-09 21:47:52 +053066 PortStatsInterval int
Matteo Scandoloe33447a2019-10-31 12:38:23 -070067
Matteo Scandolo27428702019-10-11 16:21:16 -070068 Pons []*PonPort
69 Nnis []*NniPort
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070070
71 // OLT Attributes
72 OperState *fsm.FSM
David Bainbridge103cf022019-12-16 20:11:35 +000073
74 enableContext context.Context
75 enableContextCancel context.CancelFunc
Pragya Arya1cbefa42020-01-13 12:15:29 +053076
77 OpenoltStream *openolt.Openolt_EnableIndicationServer
Anand S Katti09541352020-01-29 15:54:01 +053078 enablePerf bool
Matteo Scandolo4747d292019-08-05 11:50:18 -070079}
80
Matteo Scandolo27428702019-10-11 16:21:16 -070081var olt OltDevice
Zdravko Bozakov681364d2019-11-10 14:28:46 +010082var oltServer *grpc.Server
Matteo Scandolo84f7d482019-08-08 19:00:47 -070083
Matteo Scandolo27428702019-10-11 16:21:16 -070084func GetOLT() *OltDevice {
85 return &olt
Matteo Scandolo84f7d482019-08-08 19:00:47 -070086}
87
Pragya Arya996a0892020-03-09 21:47:52 +053088func CreateOLT(options common.BBSimYamlConfig, isMock bool) *OltDevice {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070089 oltLogger.WithFields(log.Fields{
Pragya Arya996a0892020-03-09 21:47:52 +053090 "ID": options.Olt.ID,
91 "NumNni": options.Olt.NniPorts,
92 "NumPon": options.Olt.PonPorts,
93 "NumOnuPerPon": options.Olt.OnusPonPort,
Matteo Scandolo4747d292019-08-05 11:50:18 -070094 }).Debug("CreateOLT")
95
Matteo Scandolo84f7d482019-08-08 19:00:47 -070096 olt = OltDevice{
Pragya Arya996a0892020-03-09 21:47:52 +053097 ID: options.Olt.ID,
98 SerialNumber: fmt.Sprintf("BBSIM_OLT_%d", options.Olt.ID),
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070099 OperState: getOperStateFSM(func(e *fsm.Event) {
100 oltLogger.Debugf("Changing OLT OperState from %s to %s", e.Src, e.Dst)
101 }),
Pragya Arya996a0892020-03-09 21:47:52 +0530102 NumNni: int(options.Olt.NniPorts),
103 NumPon: int(options.Olt.PonPorts),
104 NumOnuPerPon: int(options.Olt.OnusPonPort),
105 Pons: []*PonPort{},
106 Nnis: []*NniPort{},
107 Delay: options.BBSim.Delay,
108 Flows: make(map[FlowKey]openolt.Flow),
109 enablePerf: options.BBSim.EnablePerf,
110 PublishEvents: options.BBSim.Events,
111 PortStatsInterval: options.Olt.PortStatsInterval,
Matteo Scandolo4747d292019-08-05 11:50:18 -0700112 }
113
Pragya Arya996a0892020-03-09 21:47:52 +0530114 if val, ok := ControlledActivationModes[options.BBSim.ControlledActivation]; ok {
Pragya Arya2225f202020-01-29 18:05:01 +0530115 olt.ControlledActivation = val
116 } else {
117 oltLogger.Warn("Unknown ControlledActivation Mode given, running in Default mode")
118 olt.ControlledActivation = Default
119 }
120
Matteo Scandolo4747d292019-08-05 11:50:18 -0700121 // OLT State machine
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700122 // NOTE do we need 2 state machines for the OLT? (InternalState and OperState)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700123 olt.InternalState = fsm.NewFSM(
124 "created",
125 fsm.Events{
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800126 {Name: "initialize", Src: []string{"created", "deleted"}, Dst: "initialized"},
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100127 {Name: "enable", Src: []string{"initialized", "disabled"}, Dst: "enabled"},
Matteo Scandolo4747d292019-08-05 11:50:18 -0700128 {Name: "disable", Src: []string{"enabled"}, Dst: "disabled"},
Mahir Gunyel6dad4452020-01-06 12:59:04 -0800129 //delete event in enabled state below is for reboot OLT case.
130 {Name: "delete", Src: []string{"disabled", "enabled"}, Dst: "deleted"},
Matteo Scandolo4747d292019-08-05 11:50:18 -0700131 },
132 fsm.Callbacks{
133 "enter_state": func(e *fsm.Event) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700134 oltLogger.Debugf("Changing OLT InternalState from %s to %s", e.Src, e.Dst)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700135 },
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100136 "enter_initialized": func(e *fsm.Event) { olt.InitOlt() },
Matteo Scandolo4747d292019-08-05 11:50:18 -0700137 },
138 )
139
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700140 if isMock != true {
141 // create NNI Port
142 nniPort, err := CreateNNI(&olt)
143 if err != nil {
144 oltLogger.Fatalf("Couldn't create NNI Port: %v", err)
145 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700146
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700147 olt.Nnis = append(olt.Nnis, &nniPort)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700148 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700149
Matteo Scandolo4747d292019-08-05 11:50:18 -0700150 // create PON ports
Matteo Scandolo4747d292019-08-05 11:50:18 -0700151
Matteo Scandolof65e6872020-04-15 15:18:43 -0700152 if options.BBSim.STagAllocation == common.TagAllocationShared && options.BBSim.CTagAllocation == common.TagAllocationShared {
153 oltLogger.Fatalf("This configuration will result in duplicate C/S tags combination")
154 } else if options.BBSim.STagAllocation == common.TagAllocationUnique && options.BBSim.CTagAllocation == common.TagAllocationUnique {
155 oltLogger.Fatalf("This configuration is not supported yet")
156 } else if options.BBSim.STagAllocation == common.TagAllocationShared && options.BBSim.CTagAllocation == common.TagAllocationUnique {
157 // ATT case
158 availableCTag := options.BBSim.CTag
159 for i := 0; i < olt.NumPon; i++ {
160 p := CreatePonPort(&olt, uint32(i))
161
162 // create ONU devices
163 for j := 0; j < olt.NumOnuPerPon; j++ {
164 delay := time.Duration(olt.Delay*j) * time.Millisecond
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700165 o := CreateONU(&olt, p, uint32(j+1), options.BBSim.STag, availableCTag, options.BBSim.EnableAuth, options.BBSim.EnableDhcp, delay, isMock)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700166 p.Onus = append(p.Onus, o)
167 availableCTag = availableCTag + 1
168 }
169
170 olt.Pons = append(olt.Pons, p)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700171 }
Matteo Scandolof65e6872020-04-15 15:18:43 -0700172 } else if options.BBSim.STagAllocation == common.TagAllocationUnique && options.BBSim.CTagAllocation == common.TagAllocationShared {
173 // DT case
174 availableSTag := options.BBSim.STag
175 for i := 0; i < olt.NumPon; i++ {
176 p := CreatePonPort(&olt, uint32(i))
Matteo Scandolo4747d292019-08-05 11:50:18 -0700177
Matteo Scandolof65e6872020-04-15 15:18:43 -0700178 // create ONU devices
179 for j := 0; j < olt.NumOnuPerPon; j++ {
180 delay := time.Duration(olt.Delay*j) * time.Millisecond
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700181 o := CreateONU(&olt, p, uint32(j+1), availableSTag, options.BBSim.CTag, options.BBSim.EnableAuth, options.BBSim.EnableDhcp, delay, isMock)
Matteo Scandolof65e6872020-04-15 15:18:43 -0700182 p.Onus = append(p.Onus, o)
183 availableSTag = availableSTag + 1
184 }
185
186 olt.Pons = append(olt.Pons, p)
187 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700188 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100189
Matteo Scandolod32c3822019-11-26 15:57:46 -0700190 if isMock != true {
191 if err := olt.InternalState.Event("initialize"); err != nil {
192 log.Errorf("Error initializing OLT: %v", err)
193 return nil
194 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100195 }
196
Pragya Arya324337e2020-02-20 14:35:08 +0530197 if olt.PublishEvents {
198 log.Debugf("BBSim event publishing is enabled")
199 // Create a channel to write event messages
200 olt.EventChannel = make(chan common.Event, 100)
201 }
202
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700203 return &olt
204}
Matteo Scandolo4747d292019-08-05 11:50:18 -0700205
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100206func (o *OltDevice) InitOlt() error {
207
208 if oltServer == nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800209 oltServer, _ = o.newOltServer()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100210 } else {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800211 // FIXME there should never be a server running if we are initializing the OLT
212 oltLogger.Fatal("OLT server already running.")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100213 }
214
215 // create new channel for processOltMessages Go routine
216 o.channel = make(chan Message)
217
218 o.nniPktInChannel = make(chan *bbsim.PacketMsg, 1024)
219 // FIXME we are assuming we have only one NNI
220 if o.Nnis[0] != nil {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800221 // NOTE we want to make sure the state is down when we initialize the OLT,
222 // the NNI may be in a bad state after a disable/reboot as we are not disabling it for
223 // in-band management
224 o.Nnis[0].OperState.SetState("down")
225 ch, handle, err := o.Nnis[0].NewVethChan()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100226 if err == nil {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800227 oltLogger.WithFields(log.Fields{
228 "Type": o.Nnis[0].Type,
229 "IntfId": o.Nnis[0].ID,
230 "OperState": o.Nnis[0].OperState.Current(),
231 }).Info("NNI Channel created")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100232 o.nniPktInChannel = ch
Matteo Scandolo401503a2019-12-11 14:48:14 -0800233 o.nniHandle = handle
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100234 } else {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800235 oltLogger.Errorf("Error getting NNI channel: %v", err)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100236 }
237 }
238
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100239 return nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700240}
241
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800242func (o *OltDevice) RestartOLT() error {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100243
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800244 rebootDelay := common.Options.Olt.OltRebootDelay
245
246 oltLogger.WithFields(log.Fields{
247 "oltId": o.ID,
248 }).Infof("Simulating OLT restart... (%ds)", rebootDelay)
249
250 // transition internal state to deleted
251 if err := o.InternalState.Event("delete"); err != nil {
252 oltLogger.WithFields(log.Fields{
253 "oltId": o.ID,
254 }).Errorf("Error deleting OLT: %v", err)
255 return err
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100256 }
257
258 // TODO handle hard poweroff (i.e. no indications sent to Voltha) vs soft poweroff
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800259 time.Sleep(1 * time.Second) // we need to give the OLT the time to respond to all the pending gRPC request before stopping the server
260 if err := o.StopOltServer(); err != nil {
Pragya Arya2225f202020-01-29 18:05:01 +0530261 oltLogger.Errorf("Error in stopping OLT server")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100262 return err
263 }
264
Pragya Arya2225f202020-01-29 18:05:01 +0530265 for _, pon := range olt.Pons {
266 msg := Message{
267 Type: PonIndication,
268 Data: PonIndicationMessage{
269 OperState: DOWN,
270 PonPortID: pon.ID,
271 },
272 }
273 o.channel <- msg
274
275 for _, onu := range pon.Onus {
276 if onu.InternalState.Current() != "initialized" {
277 onu.InternalState.Event("disable")
278 }
279 }
280 }
281
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100282 // terminate the OLT's processOltMessages go routine
283 close(o.channel)
284 // terminate the OLT's processNniPacketIns go routine
Andy Bavier421f4d52020-01-21 15:39:22 -0700285 go o.nniHandle.Close()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100286 close(o.nniPktInChannel)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100287
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100288 time.Sleep(time.Duration(rebootDelay) * time.Second)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100289
290 if err := o.InternalState.Event("initialize"); err != nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800291 oltLogger.WithFields(log.Fields{
292 "oltId": o.ID,
293 }).Errorf("Error initializing OLT: %v", err)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100294 return err
295 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800296 oltLogger.WithFields(log.Fields{
297 "oltId": o.ID,
298 }).Info("OLT restart completed")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100299 return nil
300}
301
302// newOltServer launches a new grpc server for OpenOLT
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800303func (o *OltDevice) newOltServer() (*grpc.Server, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100304 address := common.Options.BBSim.OpenOltAddress
Matteo Scandolo4747d292019-08-05 11:50:18 -0700305 lis, err := net.Listen("tcp", address)
306 if err != nil {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700307 oltLogger.Fatalf("OLT failed to listen: %v", err)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700308 }
309 grpcServer := grpc.NewServer()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100310
Matteo Scandolo4747d292019-08-05 11:50:18 -0700311 openolt.RegisterOpenoltServer(grpcServer, o)
312
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100313 reflection.Register(grpcServer)
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700314
Matteo Scandolo4747d292019-08-05 11:50:18 -0700315 go grpcServer.Serve(lis)
Zdravko Bozakov958d81c2019-12-13 22:09:48 +0100316 oltLogger.Debugf("OLT listening on %v", address)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700317
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100318 return grpcServer, nil
319}
320
321// StopOltServer stops the OpenOLT grpc server
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800322func (o *OltDevice) StopOltServer() error {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100323 // TODO handle poweroff vs graceful shutdown
324 if oltServer != nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800325 oltLogger.WithFields(log.Fields{
326 "oltId": o.SerialNumber,
327 }).Warnf("Stopping OLT gRPC server")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100328 oltServer.Stop()
329 oltServer = nil
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700330 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800331
Matteo Scandolo4747d292019-08-05 11:50:18 -0700332 return nil
333}
334
335// Device Methods
336
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100337// Enable implements the OpenOLT EnableIndicationServer functionality
338func (o *OltDevice) Enable(stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700339 oltLogger.Debug("Enable OLT called")
Pragya Arya2225f202020-01-29 18:05:01 +0530340 rebootFlag := false
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700341
David Bainbridge103cf022019-12-16 20:11:35 +0000342 // If enabled has already been called then an enabled context has
343 // been created. If this is the case then we want to cancel all the
344 // proessing loops associated with that enable before we recreate
345 // new ones
346 o.Lock()
347 if o.enableContext != nil && o.enableContextCancel != nil {
348 o.enableContextCancel()
Pragya Arya2225f202020-01-29 18:05:01 +0530349 rebootFlag = true
David Bainbridge103cf022019-12-16 20:11:35 +0000350 }
351 o.enableContext, o.enableContextCancel = context.WithCancel(context.TODO())
352 o.Unlock()
353
Matteo Scandolo4747d292019-08-05 11:50:18 -0700354 wg := sync.WaitGroup{}
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800355 wg.Add(3)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700356
Pragya Arya1cbefa42020-01-13 12:15:29 +0530357 o.OpenoltStream = &stream
358
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100359 // create Go routine to process all OLT events
David Bainbridge103cf022019-12-16 20:11:35 +0000360 go o.processOltMessages(o.enableContext, stream, &wg)
361 go o.processNniPacketIns(o.enableContext, stream, &wg)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700362
363 // enable the OLT
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100364 oltMsg := Message{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700365 Type: OltIndication,
366 Data: OltIndicationMessage{
367 OperState: UP,
368 },
369 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100370 o.channel <- oltMsg
Matteo Scandolo4747d292019-08-05 11:50:18 -0700371
372 // send NNI Port Indications
373 for _, nni := range o.Nnis {
374 msg := Message{
375 Type: NniIndication,
376 Data: NniIndicationMessage{
377 OperState: UP,
378 NniPortID: nni.ID,
379 },
380 }
381 o.channel <- msg
382 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100383
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800384 go o.processOmciMessages(o.enableContext, stream, &wg)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100385
Pragya Arya2225f202020-01-29 18:05:01 +0530386 if rebootFlag == true {
387 for _, pon := range o.Pons {
388 if pon.InternalState.Current() == "disabled" {
389 msg := Message{
390 Type: PonIndication,
391 Data: PonIndicationMessage{
392 OperState: UP,
393 PonPortID: pon.ID,
394 },
395 }
396 o.channel <- msg
Matteo Scandoloe60a5052020-02-07 00:31:14 +0000397 }
Pragya Arya2225f202020-01-29 18:05:01 +0530398 }
399 } else {
400
401 // 1. controlledActivation == Default: Send both PON and ONUs indications
402 // 2. controlledActivation == only-onu: that means only ONUs will be controlled activated, so auto send PON indications
403
404 if o.ControlledActivation == Default || o.ControlledActivation == OnlyONU {
405 // send PON Port indications
406 for _, pon := range o.Pons {
407 msg := Message{
408 Type: PonIndication,
409 Data: PonIndicationMessage{
410 OperState: UP,
411 PonPortID: pon.ID,
412 },
413 }
414 o.channel <- msg
Matteo Scandolo4747d292019-08-05 11:50:18 -0700415 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700416 }
417 }
418
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800419 oltLogger.Debug("Enable OLT Done")
Pragya Arya996a0892020-03-09 21:47:52 +0530420
421 if !o.enablePerf {
422 // Start a go routine to send periodic port stats to openolt adapter
423 go o.periodicPortStats(o.enableContext)
424 }
425
Matteo Scandolo4747d292019-08-05 11:50:18 -0700426 wg.Wait()
427 return nil
428}
429
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800430func (o *OltDevice) processOmciMessages(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
William Kurkian9dadc5b2019-10-22 13:51:57 -0400431 ch := omcisim.GetChannel()
432
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100433 oltLogger.Debug("Starting OMCI Indication Channel")
William Kurkian9dadc5b2019-10-22 13:51:57 -0400434
David Bainbridge103cf022019-12-16 20:11:35 +0000435loop:
436 for {
437 select {
438 case <-ctx.Done():
439 oltLogger.Debug("OMCI processing canceled via context")
440 break loop
441 case message, ok := <-ch:
442 if !ok || ctx.Err() != nil {
443 oltLogger.Debug("OMCI processing canceled via channel close")
444 break loop
445 }
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800446
447 oltLogger.WithFields(log.Fields{
448 "messageType": message.Type,
449 "OnuId": message.Data.OnuId,
450 "IntfId": message.Data.IntfId,
451 }).Info("Received message on OMCI Sim channel")
452
David Bainbridge103cf022019-12-16 20:11:35 +0000453 onuId := message.Data.OnuId
454 intfId := message.Data.IntfId
455 onu, err := o.FindOnuById(intfId, onuId)
456 if err != nil {
457 oltLogger.Errorf("Failed to find onu: %v", err)
458 continue
459 }
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800460 go onu.processOmciMessage(message, stream)
William Kurkian9dadc5b2019-10-22 13:51:57 -0400461 }
William Kurkian9dadc5b2019-10-22 13:51:57 -0400462 }
David Bainbridge103cf022019-12-16 20:11:35 +0000463
464 wg.Done()
William Kurkian9dadc5b2019-10-22 13:51:57 -0400465}
466
Pragya Arya996a0892020-03-09 21:47:52 +0530467func (o *OltDevice) periodicPortStats(ctx context.Context) {
468 var portStats *openolt.PortStatistics
469 for {
470 select {
471 case <-time.After(time.Duration(o.PortStatsInterval) * time.Second):
472 // send NNI port stats
473 for _, port := range o.Nnis {
474 incrementStat := true
475 if port.OperState.Current() == "down" {
476 incrementStat = false
477 }
478 portStats, port.PacketCount = getPortStats(port.PacketCount, incrementStat)
479 o.sendPortStatsIndication(portStats, port.ID, port.Type)
480 }
481
482 // send PON port stats
483 for _, port := range o.Pons {
484 incrementStat := true
485 // do not increment port stats if PON port is down or no ONU is activated on PON port
486 if port.OperState.Current() == "down" || port.GetNumOfActiveOnus() < 1 {
487 incrementStat = false
488 }
489 portStats, port.PacketCount = getPortStats(port.PacketCount, incrementStat)
490 o.sendPortStatsIndication(portStats, port.ID, port.Type)
491 }
492 case <-ctx.Done():
493 log.Debug("Stop sending port stats")
494 return
495 }
496
497 }
498}
499
Matteo Scandolo4747d292019-08-05 11:50:18 -0700500// Helpers method
501
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700502func (o OltDevice) GetPonById(id uint32) (*PonPort, error) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700503 for _, pon := range o.Pons {
504 if pon.ID == id {
Matteo Scandolo27428702019-10-11 16:21:16 -0700505 return pon, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700506 }
507 }
508 return nil, errors.New(fmt.Sprintf("Cannot find PonPort with id %d in OLT %d", id, o.ID))
509}
510
511func (o OltDevice) getNniById(id uint32) (*NniPort, error) {
512 for _, nni := range o.Nnis {
513 if nni.ID == id {
Matteo Scandolo27428702019-10-11 16:21:16 -0700514 return nni, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700515 }
516 }
517 return nil, errors.New(fmt.Sprintf("Cannot find NniPort with id %d in OLT %d", id, o.ID))
518}
519
Scott Baker41724b82020-01-21 19:54:53 -0800520func (o *OltDevice) sendAlarmIndication(alarmInd *openolt.AlarmIndication, stream openolt.Openolt_EnableIndicationServer) {
521 data := &openolt.Indication_AlarmInd{AlarmInd: alarmInd}
522 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
523 oltLogger.Errorf("Failed to send Alarm Indication: %v", err)
524 return
525 }
526
527 oltLogger.WithFields(log.Fields{
528 "AlarmIndication": alarmInd,
529 }).Debug("Sent Indication_AlarmInd")
530}
531
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100532func (o *OltDevice) sendOltIndication(msg OltIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700533 data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: msg.OperState.String()}}
534 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700535 oltLogger.Errorf("Failed to send Indication_OltInd: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800536 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700537 }
538
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700539 oltLogger.WithFields(log.Fields{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700540 "OperState": msg.OperState,
541 }).Debug("Sent Indication_OltInd")
542}
543
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100544func (o *OltDevice) sendNniIndication(msg NniIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700545 nni, _ := o.getNniById(msg.NniPortID)
Matteo Scandolo401503a2019-12-11 14:48:14 -0800546 if msg.OperState == UP {
547 if err := nni.OperState.Event("enable"); err != nil {
548 log.WithFields(log.Fields{
549 "Type": nni.Type,
550 "IntfId": nni.ID,
551 "OperState": nni.OperState.Current(),
552 }).Errorf("Can't move NNI Port to enabled state: %v", err)
553 }
554 } else if msg.OperState == DOWN {
555 if err := nni.OperState.Event("disable"); err != nil {
556 log.WithFields(log.Fields{
557 "Type": nni.Type,
558 "IntfId": nni.ID,
559 "OperState": nni.OperState.Current(),
560 }).Errorf("Can't move NNI Port to disable state: %v", err)
561 }
562 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700563 // NOTE Operstate may need to be an integer
Matteo Scandolo4747d292019-08-05 11:50:18 -0700564 operData := &openolt.Indication_IntfOperInd{IntfOperInd: &openolt.IntfOperIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700565 Type: nni.Type,
566 IntfId: nni.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700567 OperState: nni.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700568 }}
569
570 if err := stream.Send(&openolt.Indication{Data: operData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700571 oltLogger.Errorf("Failed to send Indication_IntfOperInd for NNI: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800572 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700573 }
574
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700575 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700576 "Type": nni.Type,
577 "IntfId": nni.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700578 "OperState": nni.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700579 }).Debug("Sent Indication_IntfOperInd for NNI")
580}
581
Pragya Arya2225f202020-01-29 18:05:01 +0530582func (o *OltDevice) sendPonIndication(ponPortID uint32) {
583
584 stream := *o.OpenoltStream
585 pon, _ := o.GetPonById(ponPortID)
586 // Send IntfIndication for PON port
Matteo Scandolo4747d292019-08-05 11:50:18 -0700587 discoverData := &openolt.Indication_IntfInd{IntfInd: &openolt.IntfIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700588 IntfId: pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700589 OperState: pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700590 }}
591
592 if err := stream.Send(&openolt.Indication{Data: discoverData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700593 oltLogger.Errorf("Failed to send Indication_IntfInd: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800594 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700595 }
596
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700597 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700598 "IntfId": pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700599 "OperState": pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700600 }).Debug("Sent Indication_IntfInd")
601
Pragya Arya2225f202020-01-29 18:05:01 +0530602 // Send IntfOperIndication for PON port
Matteo Scandolo4747d292019-08-05 11:50:18 -0700603 operData := &openolt.Indication_IntfOperInd{IntfOperInd: &openolt.IntfOperIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700604 Type: pon.Type,
605 IntfId: pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700606 OperState: pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700607 }}
608
609 if err := stream.Send(&openolt.Indication{Data: operData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700610 oltLogger.Errorf("Failed to send Indication_IntfOperInd for PON: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800611 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700612 }
613
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700614 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700615 "Type": pon.Type,
616 "IntfId": pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700617 "OperState": pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700618 }).Debug("Sent Indication_IntfOperInd for PON")
619}
620
Pragya Arya996a0892020-03-09 21:47:52 +0530621func (o *OltDevice) sendPortStatsIndication(stats *openolt.PortStatistics, portID uint32, portType string) {
622 oltLogger.WithFields(log.Fields{
623 "Type": portType,
624 "IntfId": portID,
625 }).Trace("Sending port stats")
626 stats.IntfId = InterfaceIDToPortNo(portID, portType)
627 data := &openolt.Indication_PortStats{
628 PortStats: stats,
629 }
630 stream := *o.OpenoltStream
631 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
632 oltLogger.Errorf("Failed to send PortStats: %v", err)
633 return
634 }
635}
636
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100637// processOltMessages handles messages received over the OpenOLT interface
David Bainbridge103cf022019-12-16 20:11:35 +0000638func (o *OltDevice) processOltMessages(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100639 oltLogger.Debug("Starting OLT Indication Channel")
David Bainbridge103cf022019-12-16 20:11:35 +0000640 ch := o.channel
Matteo Scandolo4747d292019-08-05 11:50:18 -0700641
David Bainbridge103cf022019-12-16 20:11:35 +0000642loop:
643 for {
644 select {
645 case <-ctx.Done():
646 oltLogger.Debug("OLT Indication processing canceled via context")
647 break loop
648 case message, ok := <-ch:
649 if !ok || ctx.Err() != nil {
650 oltLogger.Debug("OLT Indication processing canceled via closed channel")
651 break loop
Matteo Scandolo4747d292019-08-05 11:50:18 -0700652 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700653
David Bainbridge103cf022019-12-16 20:11:35 +0000654 oltLogger.WithFields(log.Fields{
655 "oltId": o.ID,
656 "messageType": message.Type,
657 }).Trace("Received message")
658
659 switch message.Type {
660 case OltIndication:
661 msg, _ := message.Data.(OltIndicationMessage)
662 if msg.OperState == UP {
663 o.InternalState.Event("enable")
664 o.OperState.Event("enable")
665 } else if msg.OperState == DOWN {
666 o.InternalState.Event("disable")
667 o.OperState.Event("disable")
668 }
669 o.sendOltIndication(msg, stream)
Scott Baker41724b82020-01-21 19:54:53 -0800670 case AlarmIndication:
671 alarmInd, _ := message.Data.(*openolt.AlarmIndication)
672 o.sendAlarmIndication(alarmInd, stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000673 case NniIndication:
674 msg, _ := message.Data.(NniIndicationMessage)
675 o.sendNniIndication(msg, stream)
676 case PonIndication:
677 msg, _ := message.Data.(PonIndicationMessage)
Pragya Arya2225f202020-01-29 18:05:01 +0530678 pon, _ := o.GetPonById(msg.PonPortID)
679 if msg.OperState == UP {
Hardik Windlassad790cb2020-06-17 21:26:22 +0530680 if err := pon.OperState.Event("enable"); err != nil {
681 oltLogger.WithFields(log.Fields{
682 "IntfId": msg.PonPortID,
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800683 "Err": err,
Hardik Windlassad790cb2020-06-17 21:26:22 +0530684 }).Error("Can't Enable Oper state for PON Port")
685 }
686 if err := pon.InternalState.Event("enable"); err != nil {
687 oltLogger.WithFields(log.Fields{
688 "IntfId": msg.PonPortID,
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800689 "Err": err,
Hardik Windlassad790cb2020-06-17 21:26:22 +0530690 }).Error("Can't Enable Internal state for PON Port")
691 }
Pragya Arya2225f202020-01-29 18:05:01 +0530692 } else if msg.OperState == DOWN {
Hardik Windlassad790cb2020-06-17 21:26:22 +0530693 if err := pon.OperState.Event("disable"); err != nil {
694 oltLogger.WithFields(log.Fields{
695 "IntfId": msg.PonPortID,
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800696 "Err": err,
Hardik Windlassad790cb2020-06-17 21:26:22 +0530697 }).Error("Can't Disable Oper state for PON Port")
698 }
699 if err := pon.InternalState.Event("disable"); err != nil {
700 oltLogger.WithFields(log.Fields{
701 "IntfId": msg.PonPortID,
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800702 "Err": err,
Hardik Windlassad790cb2020-06-17 21:26:22 +0530703 }).Error("Can't Disable Internal state for PON Port")
704 }
Pragya Arya2225f202020-01-29 18:05:01 +0530705 }
David Bainbridge103cf022019-12-16 20:11:35 +0000706 default:
707 oltLogger.Warnf("Received unknown message data %v for type %v in OLT Channel", message.Data, message.Type)
708 }
709 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700710 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100711 wg.Done()
712 oltLogger.Warn("Stopped handling OLT Indication Channel")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700713}
714
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100715// processNniPacketIns handles messages received over the NNI interface
David Bainbridge103cf022019-12-16 20:11:35 +0000716func (o *OltDevice) processNniPacketIns(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700717 oltLogger.WithFields(log.Fields{
718 "nniChannel": o.nniPktInChannel,
Matteo Scandolo401503a2019-12-11 14:48:14 -0800719 }).Debug("Started Processing Packets arriving from the NNI")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700720 nniId := o.Nnis[0].ID // FIXME we are assuming we have only one NNI
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700721
David Bainbridge103cf022019-12-16 20:11:35 +0000722 ch := o.nniPktInChannel
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700723
David Bainbridge103cf022019-12-16 20:11:35 +0000724loop:
725 for {
726 select {
727 case <-ctx.Done():
728 oltLogger.Debug("NNI Indication processing canceled via context")
729 break loop
730 case message, ok := <-ch:
731 if !ok || ctx.Err() != nil {
732 oltLogger.Debug("NNI Indication processing canceled via channel closed")
733 break loop
734 }
735 oltLogger.Tracef("Received packets on NNI Channel")
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700736
David Bainbridge103cf022019-12-16 20:11:35 +0000737 onuMac, err := packetHandlers.GetDstMacAddressFromPacket(message.Pkt)
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700738
David Bainbridge103cf022019-12-16 20:11:35 +0000739 if err != nil {
740 log.WithFields(log.Fields{
741 "IntfType": "nni",
742 "IntfId": nniId,
743 "Pkt": message.Pkt.Data(),
744 }).Error("Can't find Dst MacAddress in packet")
745 return
746 }
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700747
David Bainbridge103cf022019-12-16 20:11:35 +0000748 onu, err := o.FindOnuByMacAddress(onuMac)
749 if err != nil {
750 log.WithFields(log.Fields{
751 "IntfType": "nni",
752 "IntfId": nniId,
753 "Pkt": message.Pkt.Data(),
754 "MacAddress": onuMac.String(),
755 }).Error("Can't find ONU with MacAddress")
756 return
757 }
758
759 doubleTaggedPkt, err := packetHandlers.PushDoubleTag(onu.STag, onu.CTag, message.Pkt)
760 if err != nil {
761 log.Error("Fail to add double tag to packet")
762 }
763
764 data := &openolt.Indication_PktInd{PktInd: &openolt.PacketIndication{
765 IntfType: "nni",
766 IntfId: nniId,
767 Pkt: doubleTaggedPkt.Data()}}
768 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
769 oltLogger.WithFields(log.Fields{
770 "IntfType": data.PktInd.IntfType,
771 "IntfId": nniId,
772 "Pkt": doubleTaggedPkt.Data(),
773 }).Errorf("Fail to send PktInd indication: %v", err)
774 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700775 oltLogger.WithFields(log.Fields{
776 "IntfType": data.PktInd.IntfType,
777 "IntfId": nniId,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700778 "Pkt": doubleTaggedPkt.Data(),
David Bainbridge103cf022019-12-16 20:11:35 +0000779 "OnuSn": onu.Sn(),
780 }).Tracef("Sent PktInd indication")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700781 }
782 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100783 wg.Done()
784 oltLogger.WithFields(log.Fields{
785 "nniChannel": o.nniPktInChannel,
786 }).Warn("Stopped handling NNI Channel")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700787}
788
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700789// returns an ONU with a given Serial Number
790func (o OltDevice) FindOnuBySn(serialNumber string) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200791 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700792 // memoizing it will remove the bottleneck
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700793 for _, pon := range o.Pons {
794 for _, onu := range pon.Onus {
795 if onu.Sn() == serialNumber {
Matteo Scandolo27428702019-10-11 16:21:16 -0700796 return onu, nil
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700797 }
798 }
799 }
800
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700801 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-serial-number-%s", serialNumber))
802}
803
William Kurkian9dadc5b2019-10-22 13:51:57 -0400804// returns an ONU with a given interface/Onu Id
805func (o OltDevice) FindOnuById(intfId uint32, onuId uint32) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200806 // TODO this function can be a performance bottleneck when we have many ONUs,
William Kurkian9dadc5b2019-10-22 13:51:57 -0400807 // memoizing it will remove the bottleneck
808 for _, pon := range o.Pons {
809 if pon.ID == intfId {
810 for _, onu := range pon.Onus {
811 if onu.ID == onuId {
812 return onu, nil
813 }
814 }
815 }
816 }
817 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-id-%v-%v", intfId, onuId))
818}
819
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700820// returns an ONU with a given Mac Address
821func (o OltDevice) FindOnuByMacAddress(mac net.HardwareAddr) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200822 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700823 // memoizing it will remove the bottleneck
824 for _, pon := range o.Pons {
825 for _, onu := range pon.Onus {
826 if onu.HwAddress.String() == mac.String() {
Matteo Scandolo27428702019-10-11 16:21:16 -0700827 return onu, nil
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700828 }
829 }
830 }
831
832 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-mac-address-%s", mac))
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700833}
834
Matteo Scandolo4747d292019-08-05 11:50:18 -0700835// GRPC Endpoints
836
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700837func (o OltDevice) ActivateOnu(context context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700838 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700839 "OnuSn": onuSnToString(onu.SerialNumber),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700840 }).Info("Received ActivateOnu call from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +0530841 publishEvent("ONU-activate-indication-received", int32(onu.IntfId), int32(onu.OnuId), onuSnToString(onu.SerialNumber))
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700842
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700843 pon, _ := o.GetPonById(onu.IntfId)
844 _onu, _ := pon.GetOnuBySn(onu.SerialNumber)
William Kurkian0418bc82019-11-06 12:16:24 -0500845 _onu.SetID(onu.OnuId)
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700846
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700847 if err := _onu.OperState.Event("enable"); err != nil {
848 oltLogger.WithFields(log.Fields{
849 "IntfId": _onu.PonPortID,
850 "OnuSn": _onu.Sn(),
851 "OnuId": _onu.ID,
852 }).Infof("Failed to transition ONU.OperState to enabled state: %s", err.Error())
Matteo Scandolo4747d292019-08-05 11:50:18 -0700853 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700854 if err := _onu.InternalState.Event("enable"); err != nil {
855 oltLogger.WithFields(log.Fields{
856 "IntfId": _onu.PonPortID,
857 "OnuSn": _onu.Sn(),
858 "OnuId": _onu.ID,
859 }).Infof("Failed to transition ONU to enabled state: %s", err.Error())
860 }
861
862 // NOTE we need to immediately activate the ONU or the OMCI state machine won't start
863
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700864 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700865}
866
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700867func (o OltDevice) DeactivateOnu(context.Context, *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700868 oltLogger.Error("DeactivateOnu not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700869 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700870}
871
Pragya Arya1cbefa42020-01-13 12:15:29 +0530872func (o OltDevice) DeleteOnu(_ context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
873 oltLogger.WithFields(log.Fields{
874 "IntfId": onu.IntfId,
875 "OnuId": onu.OnuId,
876 }).Info("Received DeleteOnu call from VOLTHA")
877
878 pon, err := o.GetPonById(onu.IntfId)
879 if err != nil {
880 oltLogger.WithFields(log.Fields{
881 "OnuId": onu.OnuId,
882 "IntfId": onu.IntfId,
883 "err": err,
884 }).Error("Can't find PonPort")
885 }
886 _onu, err := pon.GetOnuById(onu.OnuId)
887 if err != nil {
888 oltLogger.WithFields(log.Fields{
889 "OnuId": onu.OnuId,
890 "IntfId": onu.IntfId,
891 "err": err,
892 }).Error("Can't find Onu")
893 }
894
Hardik Windlassad790cb2020-06-17 21:26:22 +0530895 if err := _onu.InternalState.Event("disable"); err != nil {
Pragya Arya1cbefa42020-01-13 12:15:29 +0530896 oltLogger.WithFields(log.Fields{
897 "IntfId": _onu.PonPortID,
898 "OnuSn": _onu.Sn(),
899 "OnuId": _onu.ID,
Hardik Windlassad790cb2020-06-17 21:26:22 +0530900 }).Infof("Failed to transition ONU to disabled state: %s", err.Error())
901 }
902
Hardik Windlassad790cb2020-06-17 21:26:22 +0530903 // ONU Re-Discovery
904 if o.InternalState.Current() == "enabled" && pon.InternalState.Current() == "enabled" {
Hardik Windlass7b3405b2020-07-08 15:10:05 +0530905 go _onu.ReDiscoverOnu()
Pragya Arya1cbefa42020-01-13 12:15:29 +0530906 }
907
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700908 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700909}
910
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700911func (o OltDevice) DisableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700912 // NOTE when we disable the OLT should we disable NNI, PONs and ONUs altogether?
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800913 oltLogger.WithFields(log.Fields{
914 "oltId": o.ID,
915 }).Info("Disabling OLT")
Pragya Arya324337e2020-02-20 14:35:08 +0530916 publishEvent("OLT-disable-received", -1, -1, "")
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800917
Matteo Scandolo401503a2019-12-11 14:48:14 -0800918 for _, pon := range o.Pons {
Pragya Arya2225f202020-01-29 18:05:01 +0530919 if pon.InternalState.Current() == "enabled" {
920 // disable PONs
921 msg := Message{
922 Type: PonIndication,
923 Data: PonIndicationMessage{
924 OperState: DOWN,
925 PonPortID: pon.ID,
926 },
927 }
928 o.channel <- msg
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800929 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800930 }
931
Matteo Scandolo401503a2019-12-11 14:48:14 -0800932 // Note that we are not disabling the NNI as the real OLT does not.
933 // The reason for that is in-band management
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800934
935 // disable OLT
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100936 oltMsg := Message{
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700937 Type: OltIndication,
938 Data: OltIndicationMessage{
939 OperState: DOWN,
940 },
941 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100942 o.channel <- oltMsg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700943 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700944}
945
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200946func (o OltDevice) DisablePonIf(_ context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Hardik Windlassad790cb2020-06-17 21:26:22 +0530947 oltLogger.Infof("DisablePonIf request received for PON %d", intf.IntfId)
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200948 ponID := intf.GetIntfId()
949 pon, _ := o.GetPonById(intf.IntfId)
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200950
951 msg := Message{
952 Type: PonIndication,
953 Data: PonIndicationMessage{
954 OperState: DOWN,
955 PonPortID: ponID,
956 },
957 }
958 o.channel <- msg
959
960 for _, onu := range pon.Onus {
961
962 onuIndication := OnuIndicationMessage{
963 OperState: DOWN,
964 PonPortID: ponID,
965 OnuID: onu.ID,
966 OnuSN: onu.SerialNumber,
967 }
968 onu.sendOnuIndication(onuIndication, *o.OpenoltStream)
969
970 }
971
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700972 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700973}
974
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100975func (o *OltDevice) EnableIndication(_ *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700976 oltLogger.WithField("oltId", o.ID).Info("OLT receives EnableIndication call from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +0530977 publishEvent("OLT-enable-received", -1, -1, "")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700978 o.Enable(stream)
979 return nil
980}
981
Pragya Arya2225f202020-01-29 18:05:01 +0530982func (o OltDevice) EnablePonIf(_ context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
Hardik Windlassad790cb2020-06-17 21:26:22 +0530983 oltLogger.Infof("EnablePonIf request received for PON %d", intf.IntfId)
Pragya Arya2225f202020-01-29 18:05:01 +0530984 ponID := intf.GetIntfId()
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200985 pon, _ := o.GetPonById(intf.IntfId)
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200986
Pragya Arya2225f202020-01-29 18:05:01 +0530987 msg := Message{
988 Type: PonIndication,
989 Data: PonIndicationMessage{
990 OperState: UP,
991 PonPortID: ponID,
992 },
993 }
994 o.channel <- msg
995
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200996 for _, onu := range pon.Onus {
997
998 onuIndication := OnuIndicationMessage{
999 OperState: UP,
1000 PonPortID: ponID,
1001 OnuID: onu.ID,
1002 OnuSN: onu.SerialNumber,
1003 }
1004 onu.sendOnuIndication(onuIndication, *o.OpenoltStream)
1005
1006 }
1007
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001008 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001009}
1010
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001011func (o OltDevice) FlowAdd(ctx context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001012 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001013 "IntfId": flow.AccessIntfId,
1014 "OnuId": flow.OnuId,
1015 "EthType": fmt.Sprintf("%x", flow.Classifier.EthType),
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001016 "InnerVlan": flow.Classifier.IVid,
1017 "OuterVlan": flow.Classifier.OVid,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001018 "FlowType": flow.FlowType,
1019 "FlowId": flow.FlowId,
1020 "UniID": flow.UniId,
1021 "PortNo": flow.PortNo,
Pragya Arya8bdb4532020-03-02 17:08:09 +05301022 }).Tracef("OLT receives FlowAdd")
1023
1024 flowKey := FlowKey{}
1025 if !o.enablePerf {
1026 flowKey = FlowKey{ID: flow.FlowId, Direction: flow.FlowType}
1027 olt.Flows[flowKey] = *flow
1028 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001029
1030 if flow.AccessIntfId == -1 {
1031 oltLogger.WithFields(log.Fields{
1032 "FlowId": flow.FlowId,
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001033 }).Debug("Adding OLT flow")
Jonathan Hartb5fc46a2020-03-31 16:42:31 -07001034 } else if flow.FlowType == "multicast" {
1035 oltLogger.WithFields(log.Fields{
1036 "FlowId": flow.FlowId,
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001037 }).Debug("Adding OLT multicast flow")
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001038 } else {
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001039 pon, err := o.GetPonById(uint32(flow.AccessIntfId))
Matteo Scandolo27428702019-10-11 16:21:16 -07001040 if err != nil {
1041 oltLogger.WithFields(log.Fields{
1042 "OnuId": flow.OnuId,
1043 "IntfId": flow.AccessIntfId,
1044 "err": err,
1045 }).Error("Can't find PonPort")
1046 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001047 onu, err := pon.GetOnuById(uint32(flow.OnuId))
Matteo Scandolo27428702019-10-11 16:21:16 -07001048 if err != nil {
1049 oltLogger.WithFields(log.Fields{
1050 "OnuId": flow.OnuId,
1051 "IntfId": flow.AccessIntfId,
1052 "err": err,
1053 }).Error("Can't find Onu")
Jonathan Hartb5fc46a2020-03-31 16:42:31 -07001054 return nil, err
Matteo Scandolo27428702019-10-11 16:21:16 -07001055 }
Pragya Arya8bdb4532020-03-02 17:08:09 +05301056 if !o.enablePerf {
1057 onu.Flows = append(onu.Flows, flowKey)
Pragya Arya1d5ffb82020-03-20 18:51:37 +05301058 // Generate event on first flow for ONU
1059 if len(onu.Flows) == 1 {
1060 publishEvent("Flow-add-received", int32(onu.PonPortID), int32(onu.ID), onuSnToString(onu.SerialNumber))
1061 }
Pragya Arya8bdb4532020-03-02 17:08:09 +05301062 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001063
1064 msg := Message{
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001065 Type: FlowAdd,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001066 Data: OnuFlowUpdateMessage{
1067 PonPortID: pon.ID,
1068 OnuID: onu.ID,
1069 Flow: flow,
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001070 },
1071 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001072 onu.Channel <- msg
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001073 }
1074
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001075 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001076}
1077
Pragya Arya8bdb4532020-03-02 17:08:09 +05301078// FlowRemove request from VOLTHA
1079func (o OltDevice) FlowRemove(_ context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001080
Pragya Arya8bdb4532020-03-02 17:08:09 +05301081 oltLogger.WithFields(log.Fields{
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001082 "FlowId": flow.FlowId,
1083 "FlowType": flow.FlowType,
1084 }).Debug("OLT receives FlowRemove")
Pragya Arya8bdb4532020-03-02 17:08:09 +05301085
1086 if !o.enablePerf { // remove only if flow were stored
1087 flowKey := FlowKey{
1088 ID: flow.FlowId,
1089 Direction: flow.FlowType,
1090 }
1091
1092 // Check if flow exists
1093 storedFlow, ok := o.Flows[flowKey]
1094 if !ok {
1095 oltLogger.Errorf("Flow %v not found", flow)
1096 return new(openolt.Empty), status.Errorf(codes.NotFound, "Flow not found")
1097 }
1098
1099 // if its ONU flow remove it from ONU also
1100 if storedFlow.AccessIntfId != -1 {
1101 pon := o.Pons[uint32(storedFlow.AccessIntfId)]
1102 onu, err := pon.GetOnuById(uint32(storedFlow.OnuId))
1103 if err != nil {
1104 oltLogger.WithFields(log.Fields{
1105 "OnuId": storedFlow.OnuId,
1106 "IntfId": storedFlow.AccessIntfId,
1107 "err": err,
1108 }).Error("ONU not found")
1109 return new(openolt.Empty), nil
1110 }
1111 onu.DeleteFlow(flowKey)
Pragya Arya1d5ffb82020-03-20 18:51:37 +05301112 publishEvent("Flow-remove-received", int32(onu.PonPortID), int32(onu.ID), onuSnToString(onu.SerialNumber))
Pragya Arya8bdb4532020-03-02 17:08:09 +05301113 }
1114
1115 // delete from olt flows
1116 delete(o.Flows, flowKey)
1117 }
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001118
1119 if flow.AccessIntfId == -1 {
1120 oltLogger.WithFields(log.Fields{
1121 "FlowId": flow.FlowId,
1122 }).Debug("Removing OLT flow")
1123 } else if flow.FlowType == "multicast" {
1124 oltLogger.WithFields(log.Fields{
1125 "FlowId": flow.FlowId,
1126 }).Debug("Removing OLT multicast flow")
1127 } else {
1128
1129 onu, err := o.GetOnuByFlowId(flow.FlowId)
1130 if err != nil {
1131 oltLogger.WithFields(log.Fields{
1132 "OnuId": flow.OnuId,
1133 "IntfId": flow.AccessIntfId,
1134 "err": err,
1135 }).Error("Can't find Onu")
1136 return nil, err
1137 }
1138
1139 msg := Message{
1140 Type: FlowRemoved,
1141 Data: OnuFlowUpdateMessage{
1142 Flow: flow,
1143 },
1144 }
1145 onu.Channel <- msg
1146 }
1147
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001148 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001149}
1150
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001151func (o OltDevice) HeartbeatCheck(context.Context, *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo18859852020-01-15 13:33:57 -08001152 res := openolt.Heartbeat{HeartbeatSignature: uint32(time.Now().Unix())}
1153 oltLogger.WithFields(log.Fields{
1154 "signature": res.HeartbeatSignature,
1155 }).Trace("HeartbeatCheck")
1156 return &res, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001157}
1158
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001159func (o *OltDevice) GetOnuByFlowId(flowId uint32) (*Onu, error) {
1160 for _, pon := range o.Pons {
1161 for _, onu := range pon.Onus {
1162 for _, fId := range onu.FlowIds {
1163 if fId == flowId {
1164 return onu, nil
1165 }
1166 }
1167 }
1168 }
1169 return nil, errors.New(fmt.Sprintf("Cannot find Onu by flowId %d", flowId))
1170}
1171
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001172func (o OltDevice) GetDeviceInfo(context.Context, *openolt.Empty) (*openolt.DeviceInfo, error) {
Matteo Scandolo4747d292019-08-05 11:50:18 -07001173
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001174 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001175 "oltId": o.ID,
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001176 "PonPorts": o.NumPon,
1177 }).Info("OLT receives GetDeviceInfo call from VOLTHA")
Matteo Scandolo4747d292019-08-05 11:50:18 -07001178 devinfo := new(openolt.DeviceInfo)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +01001179 devinfo.Vendor = common.Options.Olt.Vendor
1180 devinfo.Model = common.Options.Olt.Model
1181 devinfo.HardwareVersion = common.Options.Olt.HardwareVersion
1182 devinfo.FirmwareVersion = common.Options.Olt.FirmwareVersion
1183 devinfo.Technology = common.Options.Olt.Technology
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001184 devinfo.PonPorts = uint32(o.NumPon)
Matteo Scandolo4747d292019-08-05 11:50:18 -07001185 devinfo.OnuIdStart = 1
1186 devinfo.OnuIdEnd = 255
1187 devinfo.AllocIdStart = 1024
1188 devinfo.AllocIdEnd = 16383
1189 devinfo.GemportIdStart = 1024
1190 devinfo.GemportIdEnd = 65535
1191 devinfo.FlowIdStart = 1
1192 devinfo.FlowIdEnd = 16383
Matteo Scandolo8df63df2019-09-12 10:34:32 -07001193 devinfo.DeviceSerialNumber = o.SerialNumber
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +01001194 devinfo.DeviceId = common.Options.Olt.DeviceId
Matteo Scandolo4747d292019-08-05 11:50:18 -07001195
1196 return devinfo, nil
1197}
1198
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001199func (o OltDevice) OmciMsgOut(ctx context.Context, omci_msg *openolt.OmciMsg) (*openolt.Empty, error) {
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001200 pon, err := o.GetPonById(omci_msg.IntfId)
1201 if err != nil {
1202 oltLogger.WithFields(log.Fields{
Matteo Scandolof65e6872020-04-15 15:18:43 -07001203 "error": err,
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001204 "onu_id": omci_msg.OnuId,
1205 "pon_id": omci_msg.IntfId,
1206 }).Error("pon ID not found")
1207 return nil, err
1208 }
1209
1210 onu, err := pon.GetOnuById(omci_msg.OnuId)
1211 if err != nil {
1212 oltLogger.WithFields(log.Fields{
Matteo Scandolof65e6872020-04-15 15:18:43 -07001213 "error": err,
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001214 "onu_id": omci_msg.OnuId,
1215 "pon_id": omci_msg.IntfId,
1216 }).Error("onu ID not found")
1217 return nil, err
1218 }
1219
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001220 oltLogger.WithFields(log.Fields{
1221 "IntfId": onu.PonPortID,
1222 "OnuId": onu.ID,
1223 "OnuSn": onu.Sn(),
1224 }).Tracef("Received OmciMsgOut")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001225 msg := Message{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001226 Type: OMCI,
1227 Data: OmciMessage{
1228 OnuSN: onu.SerialNumber,
1229 OnuID: onu.ID,
1230 omciMsg: omci_msg,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001231 },
1232 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001233 onu.Channel <- msg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001234 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001235}
1236
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001237func (o OltDevice) OnuPacketOut(ctx context.Context, onuPkt *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001238 pon, err := o.GetPonById(onuPkt.IntfId)
Matteo Scandolo27428702019-10-11 16:21:16 -07001239 if err != nil {
1240 oltLogger.WithFields(log.Fields{
1241 "OnuId": onuPkt.OnuId,
1242 "IntfId": onuPkt.IntfId,
1243 "err": err,
1244 }).Error("Can't find PonPort")
1245 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001246 onu, err := pon.GetOnuById(onuPkt.OnuId)
Matteo Scandolo27428702019-10-11 16:21:16 -07001247 if err != nil {
1248 oltLogger.WithFields(log.Fields{
1249 "OnuId": onuPkt.OnuId,
1250 "IntfId": onuPkt.IntfId,
1251 "err": err,
1252 }).Error("Can't find Onu")
1253 }
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001254
Matteo Scandolo075b1892019-10-07 12:11:07 -07001255 oltLogger.WithFields(log.Fields{
1256 "IntfId": onu.PonPortID,
1257 "OnuId": onu.ID,
1258 "OnuSn": onu.Sn(),
1259 }).Tracef("Received OnuPacketOut")
1260
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001261 rawpkt := gopacket.NewPacket(onuPkt.Pkt, layers.LayerTypeEthernet, gopacket.Default)
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001262 pktType, err := packetHandlers.IsEapolOrDhcp(rawpkt)
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001263
Matteo Scandolo075b1892019-10-07 12:11:07 -07001264 msg := Message{
1265 Type: OnuPacketOut,
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001266 Data: OnuPacketMessage{
Matteo Scandolo075b1892019-10-07 12:11:07 -07001267 IntfId: onuPkt.IntfId,
1268 OnuId: onuPkt.OnuId,
1269 Packet: rawpkt,
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001270 Type: pktType,
Matteo Scandolo075b1892019-10-07 12:11:07 -07001271 },
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001272 }
Matteo Scandolo075b1892019-10-07 12:11:07 -07001273 onu.Channel <- msg
1274
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001275 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001276}
1277
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001278func (o OltDevice) Reboot(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolod02b79b2019-12-05 16:42:13 -08001279 oltLogger.WithFields(log.Fields{
1280 "oltId": o.ID,
1281 }).Info("Shutting down")
Pragya Arya324337e2020-02-20 14:35:08 +05301282 publishEvent("OLT-reboot-received", -1, -1, "")
Matteo Scandolod02b79b2019-12-05 16:42:13 -08001283 go o.RestartOLT()
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001284 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001285}
1286
1287func (o OltDevice) ReenableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Pragya Arya6a708d62020-01-01 17:17:20 +05301288 oltLogger.WithFields(log.Fields{
1289 "oltId": o.ID,
1290 }).Info("Received ReenableOlt request from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +05301291 publishEvent("OLT-reenable-received", -1, -1, "")
Pragya Arya6a708d62020-01-01 17:17:20 +05301292
Pragya Arya2225f202020-01-29 18:05:01 +05301293 // enable OLT
1294 oltMsg := Message{
1295 Type: OltIndication,
1296 Data: OltIndicationMessage{
1297 OperState: UP,
1298 },
Pragya Arya1881df02020-01-29 18:05:01 +05301299 }
Pragya Arya2225f202020-01-29 18:05:01 +05301300 o.channel <- oltMsg
Pragya Arya6a708d62020-01-01 17:17:20 +05301301
Pragya Arya2225f202020-01-29 18:05:01 +05301302 for _, pon := range o.Pons {
1303 if pon.InternalState.Current() == "disabled" {
1304 msg := Message{
1305 Type: PonIndication,
1306 Data: PonIndicationMessage{
1307 OperState: UP,
1308 PonPortID: pon.ID,
1309 },
1310 }
1311 o.channel <- msg
1312 }
1313 }
Matteo Scandoloe60a5052020-02-07 00:31:14 +00001314
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001315 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001316}
1317
1318func (o OltDevice) UplinkPacketOut(context context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001319 pkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
1320
Zdravko Bozakov681364d2019-11-10 14:28:46 +01001321 o.Nnis[0].sendNniPacket(pkt) // FIXME we are assuming we have only one NNI
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001322 // NOTE should we return an error if sendNniPakcet fails?
1323 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001324}
1325
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001326func (o OltDevice) CollectStatistics(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001327 oltLogger.Error("CollectStatistics not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001328 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001329}
1330
Matteo Scandolo4747d292019-08-05 11:50:18 -07001331func (o OltDevice) GetOnuInfo(context context.Context, packet *openolt.Onu) (*openolt.OnuIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001332 oltLogger.Error("GetOnuInfo not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001333 return new(openolt.OnuIndication), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001334}
1335
1336func (o OltDevice) GetPonIf(context context.Context, packet *openolt.Interface) (*openolt.IntfIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001337 oltLogger.Error("GetPonIf not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001338 return new(openolt.IntfIndication), nil
Matteo Scandolod54283a2019-08-13 16:22:31 -07001339}
1340
1341func (s OltDevice) CreateTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001342 oltLogger.Info("received CreateTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001343 return new(openolt.Empty), nil
1344}
1345
1346func (s OltDevice) RemoveTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001347 oltLogger.Info("received RemoveTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001348 return new(openolt.Empty), nil
1349}
1350
Anand S Katti09541352020-01-29 15:54:01 +05301351func (s OltDevice) CreateTrafficSchedulers(context context.Context, trafficSchedulers *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
1352 oltLogger.WithFields(log.Fields{
1353 "OnuId": trafficSchedulers.OnuId,
1354 "IntfId": trafficSchedulers.IntfId,
1355 "OnuPortNo": trafficSchedulers.PortNo,
1356 }).Info("received CreateTrafficSchedulers")
1357
1358 if !s.enablePerf {
1359 pon, err := s.GetPonById(trafficSchedulers.IntfId)
1360 if err != nil {
1361 oltLogger.Errorf("Error retrieving PON by IntfId: %v", err)
1362 return new(openolt.Empty), err
1363 }
1364 onu, err := pon.GetOnuById(trafficSchedulers.OnuId)
1365 if err != nil {
1366 oltLogger.Errorf("Error retrieving ONU from pon by OnuId: %v", err)
1367 return new(openolt.Empty), err
1368 }
1369 onu.TrafficSchedulers = trafficSchedulers
1370 }
Matteo Scandolod54283a2019-08-13 16:22:31 -07001371 return new(openolt.Empty), nil
1372}
1373
Anand S Katti09541352020-01-29 15:54:01 +05301374func (s OltDevice) RemoveTrafficSchedulers(context context.Context, trafficSchedulers *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
1375 oltLogger.WithFields(log.Fields{
1376 "OnuId": trafficSchedulers.OnuId,
1377 "IntfId": trafficSchedulers.IntfId,
1378 "OnuPortNo": trafficSchedulers.PortNo,
1379 }).Info("received RemoveTrafficSchedulers")
1380 if !s.enablePerf {
1381 pon, err := s.GetPonById(trafficSchedulers.IntfId)
1382 if err != nil {
1383 oltLogger.Errorf("Error retrieving PON by IntfId: %v", err)
1384 return new(openolt.Empty), err
1385 }
1386 onu, err := pon.GetOnuById(trafficSchedulers.OnuId)
1387 if err != nil {
1388 oltLogger.Errorf("Error retrieving ONU from pon by OnuId: %v", err)
1389 return new(openolt.Empty), err
1390 }
1391
1392 onu.TrafficSchedulers = nil
1393 }
Matteo Scandolod54283a2019-08-13 16:22:31 -07001394 return new(openolt.Empty), nil
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001395}
Scott Baker41724b82020-01-21 19:54:53 -08001396
1397// assumes caller has properly formulated an openolt.AlarmIndication
1398func (o OltDevice) SendAlarmIndication(context context.Context, ind *openolt.AlarmIndication) error {
1399 msg := Message{
1400 Type: AlarmIndication,
1401 Data: ind,
1402 }
1403
1404 o.channel <- msg
1405 return nil
1406}
rajeshf921f882020-03-06 18:24:28 +05301407
1408func getOltIP() net.IP {
1409 conn, err := net.Dial("udp", "8.8.8.8:80")
1410 if err != nil {
1411 oltLogger.Error(err.Error())
1412 return net.IP{}
1413 }
1414 defer func() {
1415 err := conn.Close()
1416 if err != nil {
1417 oltLogger.Error(err.Error())
1418 }
1419 }()
1420
1421 localAddr := conn.LocalAddr().(*net.UDPAddr)
1422
1423 return localAddr.IP
1424}