blob: 4caf5b63e58a4e562c8aa33f23fff54128f35aae [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
165 o := CreateONU(&olt, *p, uint32(j+1), options.BBSim.STag, availableCTag, options.BBSim.EnableAuth, options.BBSim.EnableDhcp, delay, isMock)
166 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
181 o := CreateONU(&olt, *p, uint32(j+1), availableSTag, options.BBSim.CTag, options.BBSim.EnableAuth, options.BBSim.EnableDhcp, delay, isMock)
182 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 {
680 pon.OperState.Event("enable")
681 pon.InternalState.Event("enable")
682 } else if msg.OperState == DOWN {
683 pon.OperState.Event("disable")
684 pon.InternalState.Event("disable")
685 }
David Bainbridge103cf022019-12-16 20:11:35 +0000686 default:
687 oltLogger.Warnf("Received unknown message data %v for type %v in OLT Channel", message.Data, message.Type)
688 }
689 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700690 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100691 wg.Done()
692 oltLogger.Warn("Stopped handling OLT Indication Channel")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700693}
694
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100695// processNniPacketIns handles messages received over the NNI interface
David Bainbridge103cf022019-12-16 20:11:35 +0000696func (o *OltDevice) processNniPacketIns(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700697 oltLogger.WithFields(log.Fields{
698 "nniChannel": o.nniPktInChannel,
Matteo Scandolo401503a2019-12-11 14:48:14 -0800699 }).Debug("Started Processing Packets arriving from the NNI")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700700 nniId := o.Nnis[0].ID // FIXME we are assuming we have only one NNI
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700701
David Bainbridge103cf022019-12-16 20:11:35 +0000702 ch := o.nniPktInChannel
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700703
David Bainbridge103cf022019-12-16 20:11:35 +0000704loop:
705 for {
706 select {
707 case <-ctx.Done():
708 oltLogger.Debug("NNI Indication processing canceled via context")
709 break loop
710 case message, ok := <-ch:
711 if !ok || ctx.Err() != nil {
712 oltLogger.Debug("NNI Indication processing canceled via channel closed")
713 break loop
714 }
715 oltLogger.Tracef("Received packets on NNI Channel")
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700716
David Bainbridge103cf022019-12-16 20:11:35 +0000717 onuMac, err := packetHandlers.GetDstMacAddressFromPacket(message.Pkt)
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700718
David Bainbridge103cf022019-12-16 20:11:35 +0000719 if err != nil {
720 log.WithFields(log.Fields{
721 "IntfType": "nni",
722 "IntfId": nniId,
723 "Pkt": message.Pkt.Data(),
724 }).Error("Can't find Dst MacAddress in packet")
725 return
726 }
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700727
David Bainbridge103cf022019-12-16 20:11:35 +0000728 onu, err := o.FindOnuByMacAddress(onuMac)
729 if err != nil {
730 log.WithFields(log.Fields{
731 "IntfType": "nni",
732 "IntfId": nniId,
733 "Pkt": message.Pkt.Data(),
734 "MacAddress": onuMac.String(),
735 }).Error("Can't find ONU with MacAddress")
736 return
737 }
738
739 doubleTaggedPkt, err := packetHandlers.PushDoubleTag(onu.STag, onu.CTag, message.Pkt)
740 if err != nil {
741 log.Error("Fail to add double tag to packet")
742 }
743
744 data := &openolt.Indication_PktInd{PktInd: &openolt.PacketIndication{
745 IntfType: "nni",
746 IntfId: nniId,
747 Pkt: doubleTaggedPkt.Data()}}
748 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
749 oltLogger.WithFields(log.Fields{
750 "IntfType": data.PktInd.IntfType,
751 "IntfId": nniId,
752 "Pkt": doubleTaggedPkt.Data(),
753 }).Errorf("Fail to send PktInd indication: %v", err)
754 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700755 oltLogger.WithFields(log.Fields{
756 "IntfType": data.PktInd.IntfType,
757 "IntfId": nniId,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700758 "Pkt": doubleTaggedPkt.Data(),
David Bainbridge103cf022019-12-16 20:11:35 +0000759 "OnuSn": onu.Sn(),
760 }).Tracef("Sent PktInd indication")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700761 }
762 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100763 wg.Done()
764 oltLogger.WithFields(log.Fields{
765 "nniChannel": o.nniPktInChannel,
766 }).Warn("Stopped handling NNI Channel")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700767}
768
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700769// returns an ONU with a given Serial Number
770func (o OltDevice) FindOnuBySn(serialNumber string) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200771 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700772 // memoizing it will remove the bottleneck
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700773 for _, pon := range o.Pons {
774 for _, onu := range pon.Onus {
775 if onu.Sn() == serialNumber {
Matteo Scandolo27428702019-10-11 16:21:16 -0700776 return onu, nil
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700777 }
778 }
779 }
780
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700781 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-serial-number-%s", serialNumber))
782}
783
William Kurkian9dadc5b2019-10-22 13:51:57 -0400784// returns an ONU with a given interface/Onu Id
785func (o OltDevice) FindOnuById(intfId uint32, onuId uint32) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200786 // TODO this function can be a performance bottleneck when we have many ONUs,
William Kurkian9dadc5b2019-10-22 13:51:57 -0400787 // memoizing it will remove the bottleneck
788 for _, pon := range o.Pons {
789 if pon.ID == intfId {
790 for _, onu := range pon.Onus {
791 if onu.ID == onuId {
792 return onu, nil
793 }
794 }
795 }
796 }
797 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-id-%v-%v", intfId, onuId))
798}
799
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700800// returns an ONU with a given Mac Address
801func (o OltDevice) FindOnuByMacAddress(mac net.HardwareAddr) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200802 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700803 // memoizing it will remove the bottleneck
804 for _, pon := range o.Pons {
805 for _, onu := range pon.Onus {
806 if onu.HwAddress.String() == mac.String() {
Matteo Scandolo27428702019-10-11 16:21:16 -0700807 return onu, nil
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700808 }
809 }
810 }
811
812 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-mac-address-%s", mac))
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700813}
814
Matteo Scandolo4747d292019-08-05 11:50:18 -0700815// GRPC Endpoints
816
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700817func (o OltDevice) ActivateOnu(context context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700818 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700819 "OnuSn": onuSnToString(onu.SerialNumber),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700820 }).Info("Received ActivateOnu call from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +0530821 publishEvent("ONU-activate-indication-received", int32(onu.IntfId), int32(onu.OnuId), onuSnToString(onu.SerialNumber))
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700822
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700823 pon, _ := o.GetPonById(onu.IntfId)
824 _onu, _ := pon.GetOnuBySn(onu.SerialNumber)
William Kurkian0418bc82019-11-06 12:16:24 -0500825 _onu.SetID(onu.OnuId)
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700826
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700827 if err := _onu.OperState.Event("enable"); err != nil {
828 oltLogger.WithFields(log.Fields{
829 "IntfId": _onu.PonPortID,
830 "OnuSn": _onu.Sn(),
831 "OnuId": _onu.ID,
832 }).Infof("Failed to transition ONU.OperState to enabled state: %s", err.Error())
Matteo Scandolo4747d292019-08-05 11:50:18 -0700833 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700834 if err := _onu.InternalState.Event("enable"); err != nil {
835 oltLogger.WithFields(log.Fields{
836 "IntfId": _onu.PonPortID,
837 "OnuSn": _onu.Sn(),
838 "OnuId": _onu.ID,
839 }).Infof("Failed to transition ONU to enabled state: %s", err.Error())
840 }
841
842 // NOTE we need to immediately activate the ONU or the OMCI state machine won't start
843
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700844 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700845}
846
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700847func (o OltDevice) DeactivateOnu(context.Context, *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700848 oltLogger.Error("DeactivateOnu not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700849 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700850}
851
Pragya Arya1cbefa42020-01-13 12:15:29 +0530852func (o OltDevice) DeleteOnu(_ context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
853 oltLogger.WithFields(log.Fields{
854 "IntfId": onu.IntfId,
855 "OnuId": onu.OnuId,
856 }).Info("Received DeleteOnu call from VOLTHA")
857
858 pon, err := o.GetPonById(onu.IntfId)
859 if err != nil {
860 oltLogger.WithFields(log.Fields{
861 "OnuId": onu.OnuId,
862 "IntfId": onu.IntfId,
863 "err": err,
864 }).Error("Can't find PonPort")
865 }
866 _onu, err := pon.GetOnuById(onu.OnuId)
867 if err != nil {
868 oltLogger.WithFields(log.Fields{
869 "OnuId": onu.OnuId,
870 "IntfId": onu.IntfId,
871 "err": err,
872 }).Error("Can't find Onu")
873 }
874
875 if err := _onu.InternalState.Event("initialize"); err != nil {
876 oltLogger.WithFields(log.Fields{
877 "IntfId": _onu.PonPortID,
878 "OnuSn": _onu.Sn(),
879 "OnuId": _onu.ID,
880 }).Infof("Failed to transition ONU to initialized state: %s", err.Error())
881 }
882
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700883 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700884}
885
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700886func (o OltDevice) DisableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700887 // NOTE when we disable the OLT should we disable NNI, PONs and ONUs altogether?
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800888 oltLogger.WithFields(log.Fields{
889 "oltId": o.ID,
890 }).Info("Disabling OLT")
Pragya Arya324337e2020-02-20 14:35:08 +0530891 publishEvent("OLT-disable-received", -1, -1, "")
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800892
Matteo Scandolo401503a2019-12-11 14:48:14 -0800893 for _, pon := range o.Pons {
Pragya Arya2225f202020-01-29 18:05:01 +0530894 if pon.InternalState.Current() == "enabled" {
895 // disable PONs
896 msg := Message{
897 Type: PonIndication,
898 Data: PonIndicationMessage{
899 OperState: DOWN,
900 PonPortID: pon.ID,
901 },
902 }
903 o.channel <- msg
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800904 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800905 }
906
Matteo Scandolo401503a2019-12-11 14:48:14 -0800907 // Note that we are not disabling the NNI as the real OLT does not.
908 // The reason for that is in-band management
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800909
910 // disable OLT
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100911 oltMsg := Message{
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700912 Type: OltIndication,
913 Data: OltIndicationMessage{
914 OperState: DOWN,
915 },
916 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100917 o.channel <- oltMsg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700918 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700919}
920
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200921func (o OltDevice) DisablePonIf(_ context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
922 oltLogger.Errorf("DisablePonIf request received for PON %d", intf.IntfId)
923 ponID := intf.GetIntfId()
924 pon, _ := o.GetPonById(intf.IntfId)
925 errInternalState := pon.InternalState.Event("disable")
926 oltLogger.WithFields(log.Fields{
927 "IntfId": ponID,
928 "err": errInternalState,
929 }).Error("Can't disable Internal state for PonPort")
930 errOperState := pon.OperState.Event("disable")
931 oltLogger.WithFields(log.Fields{
932 "IntfId": ponID,
933 "err": errOperState,
934 }).Error("Can't disable Oper state for PonPort")
935
936 msg := Message{
937 Type: PonIndication,
938 Data: PonIndicationMessage{
939 OperState: DOWN,
940 PonPortID: ponID,
941 },
942 }
943 o.channel <- msg
944
945 for _, onu := range pon.Onus {
946
947 onuIndication := OnuIndicationMessage{
948 OperState: DOWN,
949 PonPortID: ponID,
950 OnuID: onu.ID,
951 OnuSN: onu.SerialNumber,
952 }
953 onu.sendOnuIndication(onuIndication, *o.OpenoltStream)
954
955 }
956
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700957 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700958}
959
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100960func (o *OltDevice) EnableIndication(_ *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700961 oltLogger.WithField("oltId", o.ID).Info("OLT receives EnableIndication call from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +0530962 publishEvent("OLT-enable-received", -1, -1, "")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700963 o.Enable(stream)
964 return nil
965}
966
Pragya Arya2225f202020-01-29 18:05:01 +0530967func (o OltDevice) EnablePonIf(_ context.Context, intf *openolt.Interface) (*openolt.Empty, error) {
968 oltLogger.Errorf("EnablePonIf request received for PON %d", intf.IntfId)
969 ponID := intf.GetIntfId()
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200970 pon, _ := o.GetPonById(intf.IntfId)
971 errInternalState := pon.InternalState.Event("enable")
972 oltLogger.WithFields(log.Fields{
973 "IntfId": ponID,
974 "err": errInternalState,
975 }).Error("Can't enable Internal state for PonPort")
976 errOperState := pon.OperState.Event("enable")
977 oltLogger.WithFields(log.Fields{
978 "IntfId": ponID,
979 "err": errOperState,
980 }).Error("Can't enable Oper state for PonPort")
981
Pragya Arya2225f202020-01-29 18:05:01 +0530982 msg := Message{
983 Type: PonIndication,
984 Data: PonIndicationMessage{
985 OperState: UP,
986 PonPortID: ponID,
987 },
988 }
989 o.channel <- msg
990
Andrea Campanella340b9ea2020-04-28 18:34:01 +0200991 for _, onu := range pon.Onus {
992
993 onuIndication := OnuIndicationMessage{
994 OperState: UP,
995 PonPortID: ponID,
996 OnuID: onu.ID,
997 OnuSN: onu.SerialNumber,
998 }
999 onu.sendOnuIndication(onuIndication, *o.OpenoltStream)
1000
1001 }
1002
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001003 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001004}
1005
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001006func (o OltDevice) FlowAdd(ctx context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001007 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001008 "IntfId": flow.AccessIntfId,
1009 "OnuId": flow.OnuId,
1010 "EthType": fmt.Sprintf("%x", flow.Classifier.EthType),
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001011 "InnerVlan": flow.Classifier.IVid,
1012 "OuterVlan": flow.Classifier.OVid,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001013 "FlowType": flow.FlowType,
1014 "FlowId": flow.FlowId,
1015 "UniID": flow.UniId,
1016 "PortNo": flow.PortNo,
Pragya Arya8bdb4532020-03-02 17:08:09 +05301017 }).Tracef("OLT receives FlowAdd")
1018
1019 flowKey := FlowKey{}
1020 if !o.enablePerf {
1021 flowKey = FlowKey{ID: flow.FlowId, Direction: flow.FlowType}
1022 olt.Flows[flowKey] = *flow
1023 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001024
1025 if flow.AccessIntfId == -1 {
1026 oltLogger.WithFields(log.Fields{
1027 "FlowId": flow.FlowId,
1028 }).Debugf("This is an OLT flow")
Jonathan Hartb5fc46a2020-03-31 16:42:31 -07001029 } else if flow.FlowType == "multicast" {
1030 oltLogger.WithFields(log.Fields{
1031 "FlowId": flow.FlowId,
1032 }).Debugf("This is a multicast flow")
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001033 } else {
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001034 pon, err := o.GetPonById(uint32(flow.AccessIntfId))
Matteo Scandolo27428702019-10-11 16:21:16 -07001035 if err != nil {
1036 oltLogger.WithFields(log.Fields{
1037 "OnuId": flow.OnuId,
1038 "IntfId": flow.AccessIntfId,
1039 "err": err,
1040 }).Error("Can't find PonPort")
1041 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001042 onu, err := pon.GetOnuById(uint32(flow.OnuId))
Matteo Scandolo27428702019-10-11 16:21:16 -07001043 if err != nil {
1044 oltLogger.WithFields(log.Fields{
1045 "OnuId": flow.OnuId,
1046 "IntfId": flow.AccessIntfId,
1047 "err": err,
1048 }).Error("Can't find Onu")
Jonathan Hartb5fc46a2020-03-31 16:42:31 -07001049 return nil, err
Matteo Scandolo27428702019-10-11 16:21:16 -07001050 }
Pragya Arya8bdb4532020-03-02 17:08:09 +05301051 if !o.enablePerf {
1052 onu.Flows = append(onu.Flows, flowKey)
Pragya Arya1d5ffb82020-03-20 18:51:37 +05301053 // Generate event on first flow for ONU
1054 if len(onu.Flows) == 1 {
1055 publishEvent("Flow-add-received", int32(onu.PonPortID), int32(onu.ID), onuSnToString(onu.SerialNumber))
1056 }
Pragya Arya8bdb4532020-03-02 17:08:09 +05301057 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001058
1059 msg := Message{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001060 Type: FlowUpdate,
1061 Data: OnuFlowUpdateMessage{
1062 PonPortID: pon.ID,
1063 OnuID: onu.ID,
1064 Flow: flow,
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001065 },
1066 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001067 onu.Channel <- msg
Matteo Scandolo3bc73742019-08-20 14:04:04 -07001068 }
1069
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001070 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001071}
1072
Pragya Arya8bdb4532020-03-02 17:08:09 +05301073// FlowRemove request from VOLTHA
1074func (o OltDevice) FlowRemove(_ context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
1075 oltLogger.WithFields(log.Fields{
1076 "FlowId": flow.FlowId,
1077 "FlowType": flow.FlowType,
1078 }).Tracef("OLT receives FlowRemove")
1079
1080 if !o.enablePerf { // remove only if flow were stored
1081 flowKey := FlowKey{
1082 ID: flow.FlowId,
1083 Direction: flow.FlowType,
1084 }
1085
1086 // Check if flow exists
1087 storedFlow, ok := o.Flows[flowKey]
1088 if !ok {
1089 oltLogger.Errorf("Flow %v not found", flow)
1090 return new(openolt.Empty), status.Errorf(codes.NotFound, "Flow not found")
1091 }
1092
1093 // if its ONU flow remove it from ONU also
1094 if storedFlow.AccessIntfId != -1 {
1095 pon := o.Pons[uint32(storedFlow.AccessIntfId)]
1096 onu, err := pon.GetOnuById(uint32(storedFlow.OnuId))
1097 if err != nil {
1098 oltLogger.WithFields(log.Fields{
1099 "OnuId": storedFlow.OnuId,
1100 "IntfId": storedFlow.AccessIntfId,
1101 "err": err,
1102 }).Error("ONU not found")
1103 return new(openolt.Empty), nil
1104 }
1105 onu.DeleteFlow(flowKey)
Pragya Arya1d5ffb82020-03-20 18:51:37 +05301106 publishEvent("Flow-remove-received", int32(onu.PonPortID), int32(onu.ID), onuSnToString(onu.SerialNumber))
Pragya Arya8bdb4532020-03-02 17:08:09 +05301107 }
1108
1109 // delete from olt flows
1110 delete(o.Flows, flowKey)
1111 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001112 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001113}
1114
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001115func (o OltDevice) HeartbeatCheck(context.Context, *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo18859852020-01-15 13:33:57 -08001116 res := openolt.Heartbeat{HeartbeatSignature: uint32(time.Now().Unix())}
1117 oltLogger.WithFields(log.Fields{
1118 "signature": res.HeartbeatSignature,
1119 }).Trace("HeartbeatCheck")
1120 return &res, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001121}
1122
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001123func (o OltDevice) GetDeviceInfo(context.Context, *openolt.Empty) (*openolt.DeviceInfo, error) {
Matteo Scandolo4747d292019-08-05 11:50:18 -07001124
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001125 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001126 "oltId": o.ID,
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001127 "PonPorts": o.NumPon,
1128 }).Info("OLT receives GetDeviceInfo call from VOLTHA")
Matteo Scandolo4747d292019-08-05 11:50:18 -07001129 devinfo := new(openolt.DeviceInfo)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +01001130 devinfo.Vendor = common.Options.Olt.Vendor
1131 devinfo.Model = common.Options.Olt.Model
1132 devinfo.HardwareVersion = common.Options.Olt.HardwareVersion
1133 devinfo.FirmwareVersion = common.Options.Olt.FirmwareVersion
1134 devinfo.Technology = common.Options.Olt.Technology
Matteo Scandoloda9cbe22019-08-19 16:05:10 -07001135 devinfo.PonPorts = uint32(o.NumPon)
Matteo Scandolo4747d292019-08-05 11:50:18 -07001136 devinfo.OnuIdStart = 1
1137 devinfo.OnuIdEnd = 255
1138 devinfo.AllocIdStart = 1024
1139 devinfo.AllocIdEnd = 16383
1140 devinfo.GemportIdStart = 1024
1141 devinfo.GemportIdEnd = 65535
1142 devinfo.FlowIdStart = 1
1143 devinfo.FlowIdEnd = 16383
Matteo Scandolo8df63df2019-09-12 10:34:32 -07001144 devinfo.DeviceSerialNumber = o.SerialNumber
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +01001145 devinfo.DeviceId = common.Options.Olt.DeviceId
Matteo Scandolo4747d292019-08-05 11:50:18 -07001146
1147 return devinfo, nil
1148}
1149
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001150func (o OltDevice) OmciMsgOut(ctx context.Context, omci_msg *openolt.OmciMsg) (*openolt.Empty, error) {
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001151 pon, err := o.GetPonById(omci_msg.IntfId)
1152 if err != nil {
1153 oltLogger.WithFields(log.Fields{
Matteo Scandolof65e6872020-04-15 15:18:43 -07001154 "error": err,
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001155 "onu_id": omci_msg.OnuId,
1156 "pon_id": omci_msg.IntfId,
1157 }).Error("pon ID not found")
1158 return nil, err
1159 }
1160
1161 onu, err := pon.GetOnuById(omci_msg.OnuId)
1162 if err != nil {
1163 oltLogger.WithFields(log.Fields{
Matteo Scandolof65e6872020-04-15 15:18:43 -07001164 "error": err,
Jonathan Hartacfa20e2020-03-31 15:20:14 -07001165 "onu_id": omci_msg.OnuId,
1166 "pon_id": omci_msg.IntfId,
1167 }).Error("onu ID not found")
1168 return nil, err
1169 }
1170
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001171 oltLogger.WithFields(log.Fields{
1172 "IntfId": onu.PonPortID,
1173 "OnuId": onu.ID,
1174 "OnuSn": onu.Sn(),
1175 }).Tracef("Received OmciMsgOut")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001176 msg := Message{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001177 Type: OMCI,
1178 Data: OmciMessage{
1179 OnuSN: onu.SerialNumber,
1180 OnuID: onu.ID,
1181 omciMsg: omci_msg,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001182 },
1183 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -07001184 onu.Channel <- msg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001185 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001186}
1187
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001188func (o OltDevice) OnuPacketOut(ctx context.Context, onuPkt *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001189 pon, err := o.GetPonById(onuPkt.IntfId)
Matteo Scandolo27428702019-10-11 16:21:16 -07001190 if err != nil {
1191 oltLogger.WithFields(log.Fields{
1192 "OnuId": onuPkt.OnuId,
1193 "IntfId": onuPkt.IntfId,
1194 "err": err,
1195 }).Error("Can't find PonPort")
1196 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001197 onu, err := pon.GetOnuById(onuPkt.OnuId)
Matteo Scandolo27428702019-10-11 16:21:16 -07001198 if err != nil {
1199 oltLogger.WithFields(log.Fields{
1200 "OnuId": onuPkt.OnuId,
1201 "IntfId": onuPkt.IntfId,
1202 "err": err,
1203 }).Error("Can't find Onu")
1204 }
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001205
Matteo Scandolo075b1892019-10-07 12:11:07 -07001206 oltLogger.WithFields(log.Fields{
1207 "IntfId": onu.PonPortID,
1208 "OnuId": onu.ID,
1209 "OnuSn": onu.Sn(),
1210 }).Tracef("Received OnuPacketOut")
1211
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001212 rawpkt := gopacket.NewPacket(onuPkt.Pkt, layers.LayerTypeEthernet, gopacket.Default)
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001213 pktType, err := packetHandlers.IsEapolOrDhcp(rawpkt)
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001214
Matteo Scandolo075b1892019-10-07 12:11:07 -07001215 msg := Message{
1216 Type: OnuPacketOut,
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001217 Data: OnuPacketMessage{
Matteo Scandolo075b1892019-10-07 12:11:07 -07001218 IntfId: onuPkt.IntfId,
1219 OnuId: onuPkt.OnuId,
1220 Packet: rawpkt,
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001221 Type: pktType,
Matteo Scandolo075b1892019-10-07 12:11:07 -07001222 },
Matteo Scandolo47e69bb2019-08-28 15:41:12 -07001223 }
Matteo Scandolo075b1892019-10-07 12:11:07 -07001224 onu.Channel <- msg
1225
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001226 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001227}
1228
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001229func (o OltDevice) Reboot(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolod02b79b2019-12-05 16:42:13 -08001230 oltLogger.WithFields(log.Fields{
1231 "oltId": o.ID,
1232 }).Info("Shutting down")
Pragya Arya324337e2020-02-20 14:35:08 +05301233 publishEvent("OLT-reboot-received", -1, -1, "")
Matteo Scandolod02b79b2019-12-05 16:42:13 -08001234 go o.RestartOLT()
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001235 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001236}
1237
1238func (o OltDevice) ReenableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Pragya Arya6a708d62020-01-01 17:17:20 +05301239 oltLogger.WithFields(log.Fields{
1240 "oltId": o.ID,
1241 }).Info("Received ReenableOlt request from VOLTHA")
Pragya Arya324337e2020-02-20 14:35:08 +05301242 publishEvent("OLT-reenable-received", -1, -1, "")
Pragya Arya6a708d62020-01-01 17:17:20 +05301243
Pragya Arya2225f202020-01-29 18:05:01 +05301244 // enable OLT
1245 oltMsg := Message{
1246 Type: OltIndication,
1247 Data: OltIndicationMessage{
1248 OperState: UP,
1249 },
Pragya Arya1881df02020-01-29 18:05:01 +05301250 }
Pragya Arya2225f202020-01-29 18:05:01 +05301251 o.channel <- oltMsg
Pragya Arya6a708d62020-01-01 17:17:20 +05301252
Pragya Arya2225f202020-01-29 18:05:01 +05301253 for _, pon := range o.Pons {
1254 if pon.InternalState.Current() == "disabled" {
1255 msg := Message{
1256 Type: PonIndication,
1257 Data: PonIndicationMessage{
1258 OperState: UP,
1259 PonPortID: pon.ID,
1260 },
1261 }
1262 o.channel <- msg
1263 }
1264 }
Matteo Scandoloe60a5052020-02-07 00:31:14 +00001265
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001266 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001267}
1268
1269func (o OltDevice) UplinkPacketOut(context context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001270 pkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
1271
Zdravko Bozakov681364d2019-11-10 14:28:46 +01001272 o.Nnis[0].sendNniPacket(pkt) // FIXME we are assuming we have only one NNI
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001273 // NOTE should we return an error if sendNniPakcet fails?
1274 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001275}
1276
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001277func (o OltDevice) CollectStatistics(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001278 oltLogger.Error("CollectStatistics not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001279 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001280}
1281
Matteo Scandolo4747d292019-08-05 11:50:18 -07001282func (o OltDevice) GetOnuInfo(context context.Context, packet *openolt.Onu) (*openolt.OnuIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001283 oltLogger.Error("GetOnuInfo not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001284 return new(openolt.OnuIndication), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -07001285}
1286
1287func (o OltDevice) GetPonIf(context context.Context, packet *openolt.Interface) (*openolt.IntfIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -07001288 oltLogger.Error("GetPonIf not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001289 return new(openolt.IntfIndication), nil
Matteo Scandolod54283a2019-08-13 16:22:31 -07001290}
1291
1292func (s OltDevice) CreateTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001293 oltLogger.Info("received CreateTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001294 return new(openolt.Empty), nil
1295}
1296
1297func (s OltDevice) RemoveTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001298 oltLogger.Info("received RemoveTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001299 return new(openolt.Empty), nil
1300}
1301
Anand S Katti09541352020-01-29 15:54:01 +05301302func (s OltDevice) CreateTrafficSchedulers(context context.Context, trafficSchedulers *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
1303 oltLogger.WithFields(log.Fields{
1304 "OnuId": trafficSchedulers.OnuId,
1305 "IntfId": trafficSchedulers.IntfId,
1306 "OnuPortNo": trafficSchedulers.PortNo,
1307 }).Info("received CreateTrafficSchedulers")
1308
1309 if !s.enablePerf {
1310 pon, err := s.GetPonById(trafficSchedulers.IntfId)
1311 if err != nil {
1312 oltLogger.Errorf("Error retrieving PON by IntfId: %v", err)
1313 return new(openolt.Empty), err
1314 }
1315 onu, err := pon.GetOnuById(trafficSchedulers.OnuId)
1316 if err != nil {
1317 oltLogger.Errorf("Error retrieving ONU from pon by OnuId: %v", err)
1318 return new(openolt.Empty), err
1319 }
1320 onu.TrafficSchedulers = trafficSchedulers
1321 }
Matteo Scandolod54283a2019-08-13 16:22:31 -07001322 return new(openolt.Empty), nil
1323}
1324
Anand S Katti09541352020-01-29 15:54:01 +05301325func (s OltDevice) RemoveTrafficSchedulers(context context.Context, trafficSchedulers *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
1326 oltLogger.WithFields(log.Fields{
1327 "OnuId": trafficSchedulers.OnuId,
1328 "IntfId": trafficSchedulers.IntfId,
1329 "OnuPortNo": trafficSchedulers.PortNo,
1330 }).Info("received RemoveTrafficSchedulers")
1331 if !s.enablePerf {
1332 pon, err := s.GetPonById(trafficSchedulers.IntfId)
1333 if err != nil {
1334 oltLogger.Errorf("Error retrieving PON by IntfId: %v", err)
1335 return new(openolt.Empty), err
1336 }
1337 onu, err := pon.GetOnuById(trafficSchedulers.OnuId)
1338 if err != nil {
1339 oltLogger.Errorf("Error retrieving ONU from pon by OnuId: %v", err)
1340 return new(openolt.Empty), err
1341 }
1342
1343 onu.TrafficSchedulers = nil
1344 }
Matteo Scandolod54283a2019-08-13 16:22:31 -07001345 return new(openolt.Empty), nil
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001346}
Scott Baker41724b82020-01-21 19:54:53 -08001347
1348// assumes caller has properly formulated an openolt.AlarmIndication
1349func (o OltDevice) SendAlarmIndication(context context.Context, ind *openolt.AlarmIndication) error {
1350 msg := Message{
1351 Type: AlarmIndication,
1352 Data: ind,
1353 }
1354
1355 o.channel <- msg
1356 return nil
1357}
rajeshf921f882020-03-06 18:24:28 +05301358
1359func getOltIP() net.IP {
1360 conn, err := net.Dial("udp", "8.8.8.8:80")
1361 if err != nil {
1362 oltLogger.Error(err.Error())
1363 return net.IP{}
1364 }
1365 defer func() {
1366 err := conn.Close()
1367 if err != nil {
1368 oltLogger.Error(err.Error())
1369 }
1370 }()
1371
1372 localAddr := conn.LocalAddr().(*net.UDPAddr)
1373
1374 return localAddr.IP
1375}