blob: 6464c18b308b098d1bbf9607260fb6a0c98d4215 [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
Pragya Arya6a708d62020-01-01 17:17:20 +053027 "github.com/google/gopacket/pcap"
Matteo Scandolo47e69bb2019-08-28 15:41:12 -070028 "github.com/google/gopacket"
29 "github.com/google/gopacket/layers"
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"
36 "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"
Zdravko Bozakov681364d2019-11-10 14:28:46 +010039 "google.golang.org/grpc/reflection"
Matteo Scandolo4747d292019-08-05 11:50:18 -070040)
41
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070042var oltLogger = log.WithFields(log.Fields{
Matteo Scandolo84f7d482019-08-08 19:00:47 -070043 "module": "OLT",
44})
45
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070046type OltDevice struct {
David Bainbridge103cf022019-12-16 20:11:35 +000047 sync.Mutex
48
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070049 // BBSIM Internals
50 ID int
51 SerialNumber string
52 NumNni int
53 NumPon int
54 NumOnuPerPon int
55 InternalState *fsm.FSM
56 channel chan Message
Zdravko Bozakov681364d2019-11-10 14:28:46 +010057 nniPktInChannel chan *bbsim.PacketMsg // packets coming in from the NNI and going to VOLTHA
Matteo Scandolo401503a2019-12-11 14:48:14 -080058 nniHandle *pcap.Handle // handle on the NNI interface, close it when shutting down the NNI channel
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070059
Matteo Scandoloe33447a2019-10-31 12:38:23 -070060 Delay int
61
Matteo Scandolo27428702019-10-11 16:21:16 -070062 Pons []*PonPort
63 Nnis []*NniPort
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070064
65 // OLT Attributes
66 OperState *fsm.FSM
David Bainbridge103cf022019-12-16 20:11:35 +000067
68 enableContext context.Context
69 enableContextCancel context.CancelFunc
Matteo Scandolo4747d292019-08-05 11:50:18 -070070}
71
Matteo Scandolo27428702019-10-11 16:21:16 -070072var olt OltDevice
Zdravko Bozakov681364d2019-11-10 14:28:46 +010073var oltServer *grpc.Server
Matteo Scandolo84f7d482019-08-08 19:00:47 -070074
Matteo Scandolo27428702019-10-11 16:21:16 -070075func GetOLT() *OltDevice {
76 return &olt
Matteo Scandolo84f7d482019-08-08 19:00:47 -070077}
78
Zdravko Bozakov681364d2019-11-10 14:28:46 +010079func CreateOLT(oltId int, nni int, pon int, onuPerPon int, sTag int, cTagInit int, auth bool, dhcp bool, delay int, isMock bool) *OltDevice {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070080 oltLogger.WithFields(log.Fields{
Matteo Scandolo40e067f2019-10-16 16:59:41 -070081 "ID": oltId,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070082 "NumNni": nni,
83 "NumPon": pon,
84 "NumOnuPerPon": onuPerPon,
Matteo Scandolo4747d292019-08-05 11:50:18 -070085 }).Debug("CreateOLT")
86
Matteo Scandolo84f7d482019-08-08 19:00:47 -070087 olt = OltDevice{
Matteo Scandolo40e067f2019-10-16 16:59:41 -070088 ID: oltId,
89 SerialNumber: fmt.Sprintf("BBSIM_OLT_%d", oltId),
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070090 OperState: getOperStateFSM(func(e *fsm.Event) {
91 oltLogger.Debugf("Changing OLT OperState from %s to %s", e.Src, e.Dst)
92 }),
Zdravko Bozakov681364d2019-11-10 14:28:46 +010093 NumNni: nni,
94 NumPon: pon,
95 NumOnuPerPon: onuPerPon,
96 Pons: []*PonPort{},
97 Nnis: []*NniPort{},
98 Delay: delay,
Matteo Scandolo4747d292019-08-05 11:50:18 -070099 }
100
101 // OLT State machine
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700102 // NOTE do we need 2 state machines for the OLT? (InternalState and OperState)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700103 olt.InternalState = fsm.NewFSM(
104 "created",
105 fsm.Events{
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800106 {Name: "initialize", Src: []string{"created", "deleted"}, Dst: "initialized"},
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100107 {Name: "enable", Src: []string{"initialized", "disabled"}, Dst: "enabled"},
Matteo Scandolo4747d292019-08-05 11:50:18 -0700108 {Name: "disable", Src: []string{"enabled"}, Dst: "disabled"},
Mahir Gunyel6dad4452020-01-06 12:59:04 -0800109 //delete event in enabled state below is for reboot OLT case.
110 {Name: "delete", Src: []string{"disabled", "enabled"}, Dst: "deleted"},
Matteo Scandolo4747d292019-08-05 11:50:18 -0700111 },
112 fsm.Callbacks{
113 "enter_state": func(e *fsm.Event) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700114 oltLogger.Debugf("Changing OLT InternalState from %s to %s", e.Src, e.Dst)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700115 },
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100116 "enter_initialized": func(e *fsm.Event) { olt.InitOlt() },
Matteo Scandolo4747d292019-08-05 11:50:18 -0700117 },
118 )
119
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700120 if isMock != true {
121 // create NNI Port
122 nniPort, err := CreateNNI(&olt)
123 if err != nil {
124 oltLogger.Fatalf("Couldn't create NNI Port: %v", err)
125 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700126
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700127 olt.Nnis = append(olt.Nnis, &nniPort)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700128 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700129
Matteo Scandolo4747d292019-08-05 11:50:18 -0700130 // create PON ports
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700131 availableCTag := cTagInit
Matteo Scandolo4747d292019-08-05 11:50:18 -0700132 for i := 0; i < pon; i++ {
Pragya Arya6a708d62020-01-01 17:17:20 +0530133 p := CreatePonPort(olt, uint32(i))
Matteo Scandolo4747d292019-08-05 11:50:18 -0700134
135 // create ONU devices
136 for j := 0; j < onuPerPon; j++ {
Pragya Arya6a708d62020-01-01 17:17:20 +0530137 o := CreateONU(olt, *p, uint32(j+1), sTag, availableCTag, auth, dhcp)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700138 p.Onus = append(p.Onus, o)
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700139 availableCTag = availableCTag + 1
Matteo Scandolo4747d292019-08-05 11:50:18 -0700140 }
141
Pragya Arya6a708d62020-01-01 17:17:20 +0530142 olt.Pons = append(olt.Pons, p)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700143 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100144
Matteo Scandolod32c3822019-11-26 15:57:46 -0700145 if isMock != true {
146 if err := olt.InternalState.Event("initialize"); err != nil {
147 log.Errorf("Error initializing OLT: %v", err)
148 return nil
149 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100150 }
151
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700152 return &olt
153}
Matteo Scandolo4747d292019-08-05 11:50:18 -0700154
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100155func (o *OltDevice) InitOlt() error {
156
157 if oltServer == nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800158 oltServer, _ = o.newOltServer()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100159 } else {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800160 // FIXME there should never be a server running if we are initializing the OLT
161 oltLogger.Fatal("OLT server already running.")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100162 }
163
164 // create new channel for processOltMessages Go routine
165 o.channel = make(chan Message)
166
167 o.nniPktInChannel = make(chan *bbsim.PacketMsg, 1024)
168 // FIXME we are assuming we have only one NNI
169 if o.Nnis[0] != nil {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800170 // NOTE we want to make sure the state is down when we initialize the OLT,
171 // the NNI may be in a bad state after a disable/reboot as we are not disabling it for
172 // in-band management
173 o.Nnis[0].OperState.SetState("down")
174 ch, handle, err := o.Nnis[0].NewVethChan()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100175 if err == nil {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800176 oltLogger.WithFields(log.Fields{
177 "Type": o.Nnis[0].Type,
178 "IntfId": o.Nnis[0].ID,
179 "OperState": o.Nnis[0].OperState.Current(),
180 }).Info("NNI Channel created")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100181 o.nniPktInChannel = ch
Matteo Scandolo401503a2019-12-11 14:48:14 -0800182 o.nniHandle = handle
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100183 } else {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800184 oltLogger.Errorf("Error getting NNI channel: %v", err)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100185 }
186 }
187
188 for i := range olt.Pons {
189 for _, onu := range olt.Pons[i].Onus {
190 if err := onu.InternalState.Event("initialize"); err != nil {
Matteo Scandolo401503a2019-12-11 14:48:14 -0800191 oltLogger.Errorf("Error initializing ONU: %v", err)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100192 return err
193 }
194 }
195 }
196
197 return nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700198}
199
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800200func (o *OltDevice) RestartOLT() error {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100201
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800202 rebootDelay := common.Options.Olt.OltRebootDelay
203
204 oltLogger.WithFields(log.Fields{
205 "oltId": o.ID,
206 }).Infof("Simulating OLT restart... (%ds)", rebootDelay)
207
208 // transition internal state to deleted
209 if err := o.InternalState.Event("delete"); err != nil {
210 oltLogger.WithFields(log.Fields{
211 "oltId": o.ID,
212 }).Errorf("Error deleting OLT: %v", err)
213 return err
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100214 }
215
216 // TODO handle hard poweroff (i.e. no indications sent to Voltha) vs soft poweroff
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800217 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
218 if err := o.StopOltServer(); err != nil {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100219 return err
220 }
221
222 // terminate the OLT's processOltMessages go routine
223 close(o.channel)
224 // terminate the OLT's processNniPacketIns go routine
Matteo Scandolo401503a2019-12-11 14:48:14 -0800225 o.nniHandle.Close()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100226 close(o.nniPktInChannel)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100227
Matteo Scandolo401503a2019-12-11 14:48:14 -0800228 for i := range olt.Pons {
229 for _, onu := range olt.Pons[i].Onus {
230 // NOTE while the olt is off, restore the ONU to the initial state
231 onu.InternalState.SetState("created")
232 }
233 }
234
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100235 time.Sleep(time.Duration(rebootDelay) * time.Second)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100236
237 if err := o.InternalState.Event("initialize"); err != nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800238 oltLogger.WithFields(log.Fields{
239 "oltId": o.ID,
240 }).Errorf("Error initializing OLT: %v", err)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100241 return err
242 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800243 oltLogger.WithFields(log.Fields{
244 "oltId": o.ID,
245 }).Info("OLT restart completed")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100246 return nil
247}
248
249// newOltServer launches a new grpc server for OpenOLT
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800250func (o *OltDevice) newOltServer() (*grpc.Server, error) {
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100251 address := common.Options.BBSim.OpenOltAddress
Matteo Scandolo4747d292019-08-05 11:50:18 -0700252 lis, err := net.Listen("tcp", address)
253 if err != nil {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700254 oltLogger.Fatalf("OLT failed to listen: %v", err)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700255 }
256 grpcServer := grpc.NewServer()
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100257
Matteo Scandolo4747d292019-08-05 11:50:18 -0700258 openolt.RegisterOpenoltServer(grpcServer, o)
259
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100260 reflection.Register(grpcServer)
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700261
Matteo Scandolo4747d292019-08-05 11:50:18 -0700262 go grpcServer.Serve(lis)
Zdravko Bozakov958d81c2019-12-13 22:09:48 +0100263 oltLogger.Debugf("OLT listening on %v", address)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700264
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100265 return grpcServer, nil
266}
267
268// StopOltServer stops the OpenOLT grpc server
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800269func (o *OltDevice) StopOltServer() error {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100270 // TODO handle poweroff vs graceful shutdown
271 if oltServer != nil {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800272 oltLogger.WithFields(log.Fields{
273 "oltId": o.SerialNumber,
274 }).Warnf("Stopping OLT gRPC server")
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100275 oltServer.Stop()
276 oltServer = nil
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700277 }
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800278
Matteo Scandolo4747d292019-08-05 11:50:18 -0700279 return nil
280}
281
282// Device Methods
283
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100284// Enable implements the OpenOLT EnableIndicationServer functionality
285func (o *OltDevice) Enable(stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700286 oltLogger.Debug("Enable OLT called")
Matteo Scandolo84f7d482019-08-08 19:00:47 -0700287
David Bainbridge103cf022019-12-16 20:11:35 +0000288 // If enabled has already been called then an enabled context has
289 // been created. If this is the case then we want to cancel all the
290 // proessing loops associated with that enable before we recreate
291 // new ones
292 o.Lock()
293 if o.enableContext != nil && o.enableContextCancel != nil {
294 o.enableContextCancel()
295 }
296 o.enableContext, o.enableContextCancel = context.WithCancel(context.TODO())
297 o.Unlock()
298
Matteo Scandolo4747d292019-08-05 11:50:18 -0700299 wg := sync.WaitGroup{}
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800300 wg.Add(3)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700301
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100302 // create Go routine to process all OLT events
David Bainbridge103cf022019-12-16 20:11:35 +0000303 go o.processOltMessages(o.enableContext, stream, &wg)
304 go o.processNniPacketIns(o.enableContext, stream, &wg)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700305
306 // enable the OLT
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100307 oltMsg := Message{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700308 Type: OltIndication,
309 Data: OltIndicationMessage{
310 OperState: UP,
311 },
312 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100313 o.channel <- oltMsg
Matteo Scandolo4747d292019-08-05 11:50:18 -0700314
315 // send NNI Port Indications
316 for _, nni := range o.Nnis {
317 msg := Message{
318 Type: NniIndication,
319 Data: NniIndicationMessage{
320 OperState: UP,
321 NniPortID: nni.ID,
322 },
323 }
324 o.channel <- msg
325 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100326
David Bainbridge103cf022019-12-16 20:11:35 +0000327 go o.processOmciMessages(o.enableContext, &wg)
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100328
Matteo Scandolo4747d292019-08-05 11:50:18 -0700329 // send PON Port indications
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100330 for i, pon := range o.Pons {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700331 msg := Message{
332 Type: PonIndication,
333 Data: PonIndicationMessage{
334 OperState: UP,
335 PonPortID: pon.ID,
336 },
337 }
338 o.channel <- msg
339
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100340 for _, onu := range o.Pons[i].Onus {
David Bainbridge103cf022019-12-16 20:11:35 +0000341 go onu.ProcessOnuMessages(o.enableContext, stream, nil)
342 if onu.InternalState.Current() != "initialized" {
343 continue
344 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100345 if err := onu.InternalState.Event("discover"); err != nil {
346 log.Errorf("Error discover ONU: %v", err)
347 return err
Matteo Scandolo4747d292019-08-05 11:50:18 -0700348 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700349 }
350 }
351
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800352 oltLogger.Debug("Enable OLT Done")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700353 wg.Wait()
354 return nil
355}
356
David Bainbridge103cf022019-12-16 20:11:35 +0000357func (o *OltDevice) processOmciMessages(ctx context.Context, wg *sync.WaitGroup) {
William Kurkian9dadc5b2019-10-22 13:51:57 -0400358 ch := omcisim.GetChannel()
359
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100360 oltLogger.Debug("Starting OMCI Indication Channel")
William Kurkian9dadc5b2019-10-22 13:51:57 -0400361
David Bainbridge103cf022019-12-16 20:11:35 +0000362loop:
363 for {
364 select {
365 case <-ctx.Done():
366 oltLogger.Debug("OMCI processing canceled via context")
367 break loop
368 case message, ok := <-ch:
369 if !ok || ctx.Err() != nil {
370 oltLogger.Debug("OMCI processing canceled via channel close")
371 break loop
372 }
373 onuId := message.Data.OnuId
374 intfId := message.Data.IntfId
375 onu, err := o.FindOnuById(intfId, onuId)
376 if err != nil {
377 oltLogger.Errorf("Failed to find onu: %v", err)
378 continue
379 }
380 go onu.processOmciMessage(message)
William Kurkian9dadc5b2019-10-22 13:51:57 -0400381 }
William Kurkian9dadc5b2019-10-22 13:51:57 -0400382 }
David Bainbridge103cf022019-12-16 20:11:35 +0000383
384 wg.Done()
William Kurkian9dadc5b2019-10-22 13:51:57 -0400385}
386
Matteo Scandolo4747d292019-08-05 11:50:18 -0700387// Helpers method
388
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700389func (o OltDevice) GetPonById(id uint32) (*PonPort, error) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700390 for _, pon := range o.Pons {
391 if pon.ID == id {
Matteo Scandolo27428702019-10-11 16:21:16 -0700392 return pon, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700393 }
394 }
395 return nil, errors.New(fmt.Sprintf("Cannot find PonPort with id %d in OLT %d", id, o.ID))
396}
397
398func (o OltDevice) getNniById(id uint32) (*NniPort, error) {
399 for _, nni := range o.Nnis {
400 if nni.ID == id {
Matteo Scandolo27428702019-10-11 16:21:16 -0700401 return nni, nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700402 }
403 }
404 return nil, errors.New(fmt.Sprintf("Cannot find NniPort with id %d in OLT %d", id, o.ID))
405}
406
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100407func (o *OltDevice) sendOltIndication(msg OltIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700408 data := &openolt.Indication_OltInd{OltInd: &openolt.OltIndication{OperState: msg.OperState.String()}}
409 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700410 oltLogger.Errorf("Failed to send Indication_OltInd: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800411 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700412 }
413
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700414 oltLogger.WithFields(log.Fields{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700415 "OperState": msg.OperState,
416 }).Debug("Sent Indication_OltInd")
417}
418
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100419func (o *OltDevice) sendNniIndication(msg NniIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700420 nni, _ := o.getNniById(msg.NniPortID)
Matteo Scandolo401503a2019-12-11 14:48:14 -0800421 if msg.OperState == UP {
422 if err := nni.OperState.Event("enable"); err != nil {
423 log.WithFields(log.Fields{
424 "Type": nni.Type,
425 "IntfId": nni.ID,
426 "OperState": nni.OperState.Current(),
427 }).Errorf("Can't move NNI Port to enabled state: %v", err)
428 }
429 } else if msg.OperState == DOWN {
430 if err := nni.OperState.Event("disable"); err != nil {
431 log.WithFields(log.Fields{
432 "Type": nni.Type,
433 "IntfId": nni.ID,
434 "OperState": nni.OperState.Current(),
435 }).Errorf("Can't move NNI Port to disable state: %v", err)
436 }
437 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700438 // NOTE Operstate may need to be an integer
Matteo Scandolo4747d292019-08-05 11:50:18 -0700439 operData := &openolt.Indication_IntfOperInd{IntfOperInd: &openolt.IntfOperIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700440 Type: nni.Type,
441 IntfId: nni.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700442 OperState: nni.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700443 }}
444
445 if err := stream.Send(&openolt.Indication{Data: operData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700446 oltLogger.Errorf("Failed to send Indication_IntfOperInd for NNI: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800447 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700448 }
449
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700450 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700451 "Type": nni.Type,
452 "IntfId": nni.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700453 "OperState": nni.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700454 }).Debug("Sent Indication_IntfOperInd for NNI")
455}
456
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100457func (o *OltDevice) sendPonIndication(msg PonIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700458 pon, _ := o.GetPonById(msg.PonPortID)
Matteo Scandolo401503a2019-12-11 14:48:14 -0800459 if msg.OperState == UP {
460 if err := pon.OperState.Event("enable"); err != nil {
461 log.WithFields(log.Fields{
462 "Type": pon.Type,
463 "IntfId": pon.ID,
464 "OperState": pon.OperState.Current(),
465 }).Errorf("Can't move PON Port to enable state: %v", err)
466 }
467 } else if msg.OperState == DOWN {
468 if err := pon.OperState.Event("disable"); err != nil {
469 log.WithFields(log.Fields{
470 "Type": pon.Type,
471 "IntfId": pon.ID,
472 "OperState": pon.OperState.Current(),
473 }).Errorf("Can't move PON Port to disable state: %v", err)
474 }
475 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700476 discoverData := &openolt.Indication_IntfInd{IntfInd: &openolt.IntfIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700477 IntfId: pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700478 OperState: pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700479 }}
480
481 if err := stream.Send(&openolt.Indication{Data: discoverData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700482 oltLogger.Errorf("Failed to send Indication_IntfInd: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800483 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700484 }
485
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700486 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700487 "IntfId": pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700488 "OperState": pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700489 }).Debug("Sent Indication_IntfInd")
490
491 operData := &openolt.Indication_IntfOperInd{IntfOperInd: &openolt.IntfOperIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700492 Type: pon.Type,
493 IntfId: pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700494 OperState: pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700495 }}
496
497 if err := stream.Send(&openolt.Indication{Data: operData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700498 oltLogger.Errorf("Failed to send Indication_IntfOperInd for PON: %v", err)
Matteo Scandolo08badf42019-12-12 11:21:50 -0800499 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700500 }
501
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700502 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700503 "Type": pon.Type,
504 "IntfId": pon.ID,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700505 "OperState": pon.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700506 }).Debug("Sent Indication_IntfOperInd for PON")
507}
508
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100509// processOltMessages handles messages received over the OpenOLT interface
David Bainbridge103cf022019-12-16 20:11:35 +0000510func (o *OltDevice) processOltMessages(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100511 oltLogger.Debug("Starting OLT Indication Channel")
David Bainbridge103cf022019-12-16 20:11:35 +0000512 ch := o.channel
Matteo Scandolo4747d292019-08-05 11:50:18 -0700513
David Bainbridge103cf022019-12-16 20:11:35 +0000514loop:
515 for {
516 select {
517 case <-ctx.Done():
518 oltLogger.Debug("OLT Indication processing canceled via context")
519 break loop
520 case message, ok := <-ch:
521 if !ok || ctx.Err() != nil {
522 oltLogger.Debug("OLT Indication processing canceled via closed channel")
523 break loop
Matteo Scandolo4747d292019-08-05 11:50:18 -0700524 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700525
David Bainbridge103cf022019-12-16 20:11:35 +0000526 oltLogger.WithFields(log.Fields{
527 "oltId": o.ID,
528 "messageType": message.Type,
529 }).Trace("Received message")
530
531 switch message.Type {
532 case OltIndication:
533 msg, _ := message.Data.(OltIndicationMessage)
534 if msg.OperState == UP {
535 o.InternalState.Event("enable")
536 o.OperState.Event("enable")
537 } else if msg.OperState == DOWN {
538 o.InternalState.Event("disable")
539 o.OperState.Event("disable")
540 }
541 o.sendOltIndication(msg, stream)
542 case NniIndication:
543 msg, _ := message.Data.(NniIndicationMessage)
544 o.sendNniIndication(msg, stream)
545 case PonIndication:
546 msg, _ := message.Data.(PonIndicationMessage)
547 o.sendPonIndication(msg, stream)
548 default:
549 oltLogger.Warnf("Received unknown message data %v for type %v in OLT Channel", message.Data, message.Type)
550 }
551 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700552 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100553 wg.Done()
554 oltLogger.Warn("Stopped handling OLT Indication Channel")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700555}
556
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100557// processNniPacketIns handles messages received over the NNI interface
David Bainbridge103cf022019-12-16 20:11:35 +0000558func (o *OltDevice) processNniPacketIns(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, wg *sync.WaitGroup) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700559 oltLogger.WithFields(log.Fields{
560 "nniChannel": o.nniPktInChannel,
Matteo Scandolo401503a2019-12-11 14:48:14 -0800561 }).Debug("Started Processing Packets arriving from the NNI")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700562 nniId := o.Nnis[0].ID // FIXME we are assuming we have only one NNI
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700563
David Bainbridge103cf022019-12-16 20:11:35 +0000564 ch := o.nniPktInChannel
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700565
David Bainbridge103cf022019-12-16 20:11:35 +0000566loop:
567 for {
568 select {
569 case <-ctx.Done():
570 oltLogger.Debug("NNI Indication processing canceled via context")
571 break loop
572 case message, ok := <-ch:
573 if !ok || ctx.Err() != nil {
574 oltLogger.Debug("NNI Indication processing canceled via channel closed")
575 break loop
576 }
577 oltLogger.Tracef("Received packets on NNI Channel")
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700578
David Bainbridge103cf022019-12-16 20:11:35 +0000579 onuMac, err := packetHandlers.GetDstMacAddressFromPacket(message.Pkt)
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700580
David Bainbridge103cf022019-12-16 20:11:35 +0000581 if err != nil {
582 log.WithFields(log.Fields{
583 "IntfType": "nni",
584 "IntfId": nniId,
585 "Pkt": message.Pkt.Data(),
586 }).Error("Can't find Dst MacAddress in packet")
587 return
588 }
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700589
David Bainbridge103cf022019-12-16 20:11:35 +0000590 onu, err := o.FindOnuByMacAddress(onuMac)
591 if err != nil {
592 log.WithFields(log.Fields{
593 "IntfType": "nni",
594 "IntfId": nniId,
595 "Pkt": message.Pkt.Data(),
596 "MacAddress": onuMac.String(),
597 }).Error("Can't find ONU with MacAddress")
598 return
599 }
600
601 doubleTaggedPkt, err := packetHandlers.PushDoubleTag(onu.STag, onu.CTag, message.Pkt)
602 if err != nil {
603 log.Error("Fail to add double tag to packet")
604 }
605
606 data := &openolt.Indication_PktInd{PktInd: &openolt.PacketIndication{
607 IntfType: "nni",
608 IntfId: nniId,
609 Pkt: doubleTaggedPkt.Data()}}
610 if err := stream.Send(&openolt.Indication{Data: data}); err != nil {
611 oltLogger.WithFields(log.Fields{
612 "IntfType": data.PktInd.IntfType,
613 "IntfId": nniId,
614 "Pkt": doubleTaggedPkt.Data(),
615 }).Errorf("Fail to send PktInd indication: %v", err)
616 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700617 oltLogger.WithFields(log.Fields{
618 "IntfType": data.PktInd.IntfType,
619 "IntfId": nniId,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700620 "Pkt": doubleTaggedPkt.Data(),
David Bainbridge103cf022019-12-16 20:11:35 +0000621 "OnuSn": onu.Sn(),
622 }).Tracef("Sent PktInd indication")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700623 }
624 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100625 wg.Done()
626 oltLogger.WithFields(log.Fields{
627 "nniChannel": o.nniPktInChannel,
628 }).Warn("Stopped handling NNI Channel")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700629}
630
Pragya Arya6a708d62020-01-01 17:17:20 +0530631func (o *OltDevice) handleReenableOlt() {
632 // enable OLT
633 oltMsg := Message{
634 Type: OltIndication,
635 Data: OltIndicationMessage{
636 OperState: UP,
637 },
638 }
639 o.channel <- oltMsg
640
641 for i := range olt.Pons {
642 for _, onu := range olt.Pons[i].Onus {
643 if err := onu.InternalState.Event("discover"); err != nil {
644 log.Errorf("Error discover ONU: %v", err)
645 }
646 }
647 }
648
649}
650
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700651// returns an ONU with a given Serial Number
652func (o OltDevice) FindOnuBySn(serialNumber string) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200653 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700654 // memoizing it will remove the bottleneck
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700655 for _, pon := range o.Pons {
656 for _, onu := range pon.Onus {
657 if onu.Sn() == serialNumber {
Matteo Scandolo27428702019-10-11 16:21:16 -0700658 return onu, nil
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700659 }
660 }
661 }
662
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700663 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-serial-number-%s", serialNumber))
664}
665
William Kurkian9dadc5b2019-10-22 13:51:57 -0400666// returns an ONU with a given interface/Onu Id
667func (o OltDevice) FindOnuById(intfId uint32, onuId uint32) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200668 // TODO this function can be a performance bottleneck when we have many ONUs,
William Kurkian9dadc5b2019-10-22 13:51:57 -0400669 // memoizing it will remove the bottleneck
670 for _, pon := range o.Pons {
671 if pon.ID == intfId {
672 for _, onu := range pon.Onus {
673 if onu.ID == onuId {
674 return onu, nil
675 }
676 }
677 }
678 }
679 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-id-%v-%v", intfId, onuId))
680}
681
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700682// returns an ONU with a given Mac Address
683func (o OltDevice) FindOnuByMacAddress(mac net.HardwareAddr) (*Onu, error) {
Zdravko Bozakov2da76342019-10-21 09:47:35 +0200684 // TODO this function can be a performance bottleneck when we have many ONUs,
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700685 // memoizing it will remove the bottleneck
686 for _, pon := range o.Pons {
687 for _, onu := range pon.Onus {
688 if onu.HwAddress.String() == mac.String() {
Matteo Scandolo27428702019-10-11 16:21:16 -0700689 return onu, nil
Matteo Scandolof6f3a7f2019-10-11 11:19:29 -0700690 }
691 }
692 }
693
694 return &Onu{}, errors.New(fmt.Sprintf("cannot-find-onu-by-mac-address-%s", mac))
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700695}
696
Matteo Scandolo4747d292019-08-05 11:50:18 -0700697// GRPC Endpoints
698
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700699func (o OltDevice) ActivateOnu(context context.Context, onu *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700700 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700701 "OnuSn": onuSnToString(onu.SerialNumber),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700702 }).Info("Received ActivateOnu call from VOLTHA")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700703
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700704 pon, _ := o.GetPonById(onu.IntfId)
705 _onu, _ := pon.GetOnuBySn(onu.SerialNumber)
William Kurkian0418bc82019-11-06 12:16:24 -0500706 _onu.SetID(onu.OnuId)
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700707
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700708 if err := _onu.OperState.Event("enable"); err != nil {
709 oltLogger.WithFields(log.Fields{
710 "IntfId": _onu.PonPortID,
711 "OnuSn": _onu.Sn(),
712 "OnuId": _onu.ID,
713 }).Infof("Failed to transition ONU.OperState to enabled state: %s", err.Error())
Matteo Scandolo4747d292019-08-05 11:50:18 -0700714 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700715 if err := _onu.InternalState.Event("enable"); err != nil {
716 oltLogger.WithFields(log.Fields{
717 "IntfId": _onu.PonPortID,
718 "OnuSn": _onu.Sn(),
719 "OnuId": _onu.ID,
720 }).Infof("Failed to transition ONU to enabled state: %s", err.Error())
721 }
722
723 // NOTE we need to immediately activate the ONU or the OMCI state machine won't start
724
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700725 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700726}
727
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700728func (o OltDevice) DeactivateOnu(context.Context, *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700729 oltLogger.Error("DeactivateOnu not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700730 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700731}
732
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700733func (o OltDevice) DeleteOnu(context.Context, *openolt.Onu) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700734 oltLogger.Error("DeleteOnu not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700735 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700736}
737
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700738func (o OltDevice) DisableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700739 // NOTE when we disable the OLT should we disable NNI, PONs and ONUs altogether?
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800740 oltLogger.WithFields(log.Fields{
741 "oltId": o.ID,
742 }).Info("Disabling OLT")
743
Matteo Scandolo401503a2019-12-11 14:48:14 -0800744 for _, pon := range o.Pons {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800745 // disable PONs
746 msg := Message{
747 Type: PonIndication,
748 Data: PonIndicationMessage{
749 OperState: DOWN,
750 PonPortID: pon.ID,
751 },
752 }
753
754 o.channel <- msg
755 }
756
Matteo Scandolo401503a2019-12-11 14:48:14 -0800757 // Note that we are not disabling the NNI as the real OLT does not.
758 // The reason for that is in-band management
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800759
760 // disable OLT
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100761 oltMsg := Message{
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700762 Type: OltIndication,
763 Data: OltIndicationMessage{
764 OperState: DOWN,
765 },
766 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100767 o.channel <- oltMsg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700768 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700769}
770
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700771func (o OltDevice) DisablePonIf(context.Context, *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700772 oltLogger.Error("DisablePonIf not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700773 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700774}
775
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100776func (o *OltDevice) EnableIndication(_ *openolt.Empty, stream openolt.Openolt_EnableIndicationServer) error {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700777 oltLogger.WithField("oltId", o.ID).Info("OLT receives EnableIndication call from VOLTHA")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700778 o.Enable(stream)
779 return nil
780}
781
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700782func (o OltDevice) EnablePonIf(context.Context, *openolt.Interface) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700783 oltLogger.Error("EnablePonIf not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700784 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700785}
786
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700787func (o OltDevice) FlowAdd(ctx context.Context, flow *openolt.Flow) (*openolt.Empty, error) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700788 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700789 "IntfId": flow.AccessIntfId,
790 "OnuId": flow.OnuId,
791 "EthType": fmt.Sprintf("%x", flow.Classifier.EthType),
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700792 "InnerVlan": flow.Classifier.IVid,
793 "OuterVlan": flow.Classifier.OVid,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700794 "FlowType": flow.FlowType,
795 "FlowId": flow.FlowId,
796 "UniID": flow.UniId,
797 "PortNo": flow.PortNo,
798 }).Tracef("OLT receives Flow")
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700799 // TODO optionally store flows somewhere
800
801 if flow.AccessIntfId == -1 {
802 oltLogger.WithFields(log.Fields{
803 "FlowId": flow.FlowId,
804 }).Debugf("This is an OLT flow")
805 } else {
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700806 pon, err := o.GetPonById(uint32(flow.AccessIntfId))
Matteo Scandolo27428702019-10-11 16:21:16 -0700807 if err != nil {
808 oltLogger.WithFields(log.Fields{
809 "OnuId": flow.OnuId,
810 "IntfId": flow.AccessIntfId,
811 "err": err,
812 }).Error("Can't find PonPort")
813 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700814 onu, err := pon.GetOnuById(uint32(flow.OnuId))
Matteo Scandolo27428702019-10-11 16:21:16 -0700815 if err != nil {
816 oltLogger.WithFields(log.Fields{
817 "OnuId": flow.OnuId,
818 "IntfId": flow.AccessIntfId,
819 "err": err,
820 }).Error("Can't find Onu")
821 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700822
823 msg := Message{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700824 Type: FlowUpdate,
825 Data: OnuFlowUpdateMessage{
826 PonPortID: pon.ID,
827 OnuID: onu.ID,
828 Flow: flow,
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700829 },
830 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700831 onu.Channel <- msg
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700832 }
833
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700834 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700835}
836
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700837func (o OltDevice) FlowRemove(context.Context, *openolt.Flow) (*openolt.Empty, error) {
838 oltLogger.Tracef("received FlowRemove")
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700839 // TODO store flows somewhere
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700840 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700841}
842
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700843func (o OltDevice) HeartbeatCheck(context.Context, *openolt.Empty) (*openolt.Heartbeat, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700844 oltLogger.Error("HeartbeatCheck not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700845 return new(openolt.Heartbeat), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700846}
847
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700848func (o OltDevice) GetDeviceInfo(context.Context, *openolt.Empty) (*openolt.DeviceInfo, error) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700849
Matteo Scandoloda9cbe22019-08-19 16:05:10 -0700850 oltLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700851 "oltId": o.ID,
Matteo Scandoloda9cbe22019-08-19 16:05:10 -0700852 "PonPorts": o.NumPon,
853 }).Info("OLT receives GetDeviceInfo call from VOLTHA")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700854 devinfo := new(openolt.DeviceInfo)
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100855 devinfo.Vendor = common.Options.Olt.Vendor
856 devinfo.Model = common.Options.Olt.Model
857 devinfo.HardwareVersion = common.Options.Olt.HardwareVersion
858 devinfo.FirmwareVersion = common.Options.Olt.FirmwareVersion
859 devinfo.Technology = common.Options.Olt.Technology
Matteo Scandoloda9cbe22019-08-19 16:05:10 -0700860 devinfo.PonPorts = uint32(o.NumPon)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700861 devinfo.OnuIdStart = 1
862 devinfo.OnuIdEnd = 255
863 devinfo.AllocIdStart = 1024
864 devinfo.AllocIdEnd = 16383
865 devinfo.GemportIdStart = 1024
866 devinfo.GemportIdEnd = 65535
867 devinfo.FlowIdStart = 1
868 devinfo.FlowIdEnd = 16383
Matteo Scandolo8df63df2019-09-12 10:34:32 -0700869 devinfo.DeviceSerialNumber = o.SerialNumber
Zdravko Bozakov3ddb2452019-11-29 14:33:41 +0100870 devinfo.DeviceId = common.Options.Olt.DeviceId
Matteo Scandolo4747d292019-08-05 11:50:18 -0700871
872 return devinfo, nil
873}
874
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700875func (o OltDevice) OmciMsgOut(ctx context.Context, omci_msg *openolt.OmciMsg) (*openolt.Empty, error) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700876 pon, _ := o.GetPonById(omci_msg.IntfId)
877 onu, _ := pon.GetOnuById(omci_msg.OnuId)
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700878 oltLogger.WithFields(log.Fields{
879 "IntfId": onu.PonPortID,
880 "OnuId": onu.ID,
881 "OnuSn": onu.Sn(),
882 }).Tracef("Received OmciMsgOut")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700883 msg := Message{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700884 Type: OMCI,
885 Data: OmciMessage{
886 OnuSN: onu.SerialNumber,
887 OnuID: onu.ID,
888 omciMsg: omci_msg,
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700889 },
890 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700891 onu.Channel <- msg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700892 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700893}
894
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700895func (o OltDevice) OnuPacketOut(ctx context.Context, onuPkt *openolt.OnuPacket) (*openolt.Empty, error) {
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700896 pon, err := o.GetPonById(onuPkt.IntfId)
Matteo Scandolo27428702019-10-11 16:21:16 -0700897 if err != nil {
898 oltLogger.WithFields(log.Fields{
899 "OnuId": onuPkt.OnuId,
900 "IntfId": onuPkt.IntfId,
901 "err": err,
902 }).Error("Can't find PonPort")
903 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700904 onu, err := pon.GetOnuById(onuPkt.OnuId)
Matteo Scandolo27428702019-10-11 16:21:16 -0700905 if err != nil {
906 oltLogger.WithFields(log.Fields{
907 "OnuId": onuPkt.OnuId,
908 "IntfId": onuPkt.IntfId,
909 "err": err,
910 }).Error("Can't find Onu")
911 }
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700912
Matteo Scandolo075b1892019-10-07 12:11:07 -0700913 oltLogger.WithFields(log.Fields{
914 "IntfId": onu.PonPortID,
915 "OnuId": onu.ID,
916 "OnuSn": onu.Sn(),
917 }).Tracef("Received OnuPacketOut")
918
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700919 rawpkt := gopacket.NewPacket(onuPkt.Pkt, layers.LayerTypeEthernet, gopacket.Default)
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700920 pktType, err := packetHandlers.IsEapolOrDhcp(rawpkt)
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700921
Matteo Scandolo075b1892019-10-07 12:11:07 -0700922 msg := Message{
923 Type: OnuPacketOut,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700924 Data: OnuPacketMessage{
Matteo Scandolo075b1892019-10-07 12:11:07 -0700925 IntfId: onuPkt.IntfId,
926 OnuId: onuPkt.OnuId,
927 Packet: rawpkt,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700928 Type: pktType,
Matteo Scandolo075b1892019-10-07 12:11:07 -0700929 },
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700930 }
Matteo Scandolo075b1892019-10-07 12:11:07 -0700931 onu.Channel <- msg
932
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700933 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700934}
935
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700936func (o OltDevice) Reboot(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolod02b79b2019-12-05 16:42:13 -0800937 oltLogger.WithFields(log.Fields{
938 "oltId": o.ID,
939 }).Info("Shutting down")
940 go o.RestartOLT()
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700941 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700942}
943
944func (o OltDevice) ReenableOlt(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Pragya Arya6a708d62020-01-01 17:17:20 +0530945 oltLogger.WithFields(log.Fields{
946 "oltId": o.ID,
947 }).Info("Received ReenableOlt request from VOLTHA")
948
949 for _, pon := range o.Pons {
950 msg := Message{
951 Type: PonIndication,
952 Data: PonIndicationMessage{
953 OperState: UP,
954 PonPortID: pon.ID,
955 },
956 }
957 o.channel <- msg
958 }
959
960 // Openolt adapter will start processing indications only after success reponse of ReenableOlt
961 // thats why need to send OLT and ONU indications after return of this function
962 go o.handleReenableOlt()
963
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700964 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700965}
966
967func (o OltDevice) UplinkPacketOut(context context.Context, packet *openolt.UplinkPacket) (*openolt.Empty, error) {
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700968 pkt := gopacket.NewPacket(packet.Pkt, layers.LayerTypeEthernet, gopacket.Default)
969
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100970 o.Nnis[0].sendNniPacket(pkt) // FIXME we are assuming we have only one NNI
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700971 // NOTE should we return an error if sendNniPakcet fails?
972 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700973}
974
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700975func (o OltDevice) CollectStatistics(context.Context, *openolt.Empty) (*openolt.Empty, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700976 oltLogger.Error("CollectStatistics not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700977 return new(openolt.Empty), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700978}
979
Matteo Scandolo4747d292019-08-05 11:50:18 -0700980func (o OltDevice) GetOnuInfo(context context.Context, packet *openolt.Onu) (*openolt.OnuIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700981 oltLogger.Error("GetOnuInfo not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700982 return new(openolt.OnuIndication), nil
Matteo Scandolo4747d292019-08-05 11:50:18 -0700983}
984
985func (o OltDevice) GetPonIf(context context.Context, packet *openolt.Interface) (*openolt.IntfIndication, error) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700986 oltLogger.Error("GetPonIf not implemented")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700987 return new(openolt.IntfIndication), nil
Matteo Scandolod54283a2019-08-13 16:22:31 -0700988}
989
990func (s OltDevice) CreateTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700991 oltLogger.Info("received CreateTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -0700992 return new(openolt.Empty), nil
993}
994
995func (s OltDevice) RemoveTrafficQueues(context.Context, *tech_profile.TrafficQueues) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700996 oltLogger.Info("received RemoveTrafficQueues")
Matteo Scandolod54283a2019-08-13 16:22:31 -0700997 return new(openolt.Empty), nil
998}
999
1000func (s OltDevice) CreateTrafficSchedulers(context.Context, *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001001 oltLogger.Info("received CreateTrafficSchedulers")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001002 return new(openolt.Empty), nil
1003}
1004
1005func (s OltDevice) RemoveTrafficSchedulers(context.Context, *tech_profile.TrafficSchedulers) (*openolt.Empty, error) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -07001006 oltLogger.Info("received RemoveTrafficSchedulers")
Matteo Scandolod54283a2019-08-13 16:22:31 -07001007 return new(openolt.Empty), nil
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -07001008}