blob: beb3779fe8769ad842b7701fd7adcf4e225c1967 [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 (
Matteo Scandolo40e067f2019-10-16 16:59:41 -070020 "context"
Matteo Scandolo99f18462019-10-28 14:14:28 -070021 "errors"
Matteo Scandolo3bc73742019-08-20 14:04:04 -070022 "fmt"
Zdravko Bozakov681364d2019-11-10 14:28:46 +010023 "net"
24
25 "time"
26
Matteo Scandolo40e067f2019-10-16 16:59:41 -070027 "github.com/cboling/omci"
Matteo Scandolo3bc73742019-08-20 14:04:04 -070028 "github.com/google/gopacket/layers"
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -070029 "github.com/jpillora/backoff"
Matteo Scandolo4747d292019-08-05 11:50:18 -070030 "github.com/looplab/fsm"
Matteo Scandolo075b1892019-10-07 12:11:07 -070031 "github.com/opencord/bbsim/internal/bbsim/packetHandlers"
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -070032 "github.com/opencord/bbsim/internal/bbsim/responders/dhcp"
33 "github.com/opencord/bbsim/internal/bbsim/responders/eapol"
Arjun E K57a7fcb2020-01-30 06:44:45 +000034 "github.com/opencord/bbsim/internal/bbsim/responders/igmp"
Matteo Scandolo40e067f2019-10-16 16:59:41 -070035 "github.com/opencord/bbsim/internal/common"
36 omcilib "github.com/opencord/bbsim/internal/common/omci"
37 omcisim "github.com/opencord/omci-sim"
Matteo Scandolo3de9de02019-11-14 13:40:03 -080038 "github.com/opencord/voltha-protos/v2/go/openolt"
Matteo Scandolod74abba2020-04-16 16:36:44 -070039 "github.com/opencord/voltha-protos/v2/go/tech_profile"
Matteo Scandolo4747d292019-08-05 11:50:18 -070040 log "github.com/sirupsen/logrus"
41)
42
Matteo Scandolo9a3518c2019-08-13 14:36:01 -070043var onuLogger = log.WithFields(log.Fields{
44 "module": "ONU",
45})
46
Pragya Arya8bdb4532020-03-02 17:08:09 +053047type FlowKey struct {
48 ID uint32
49 Direction string
50}
51
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070052type Onu struct {
Matteo Scandoloe811ae92019-12-10 17:50:14 -080053 ID uint32
54 PonPortID uint32
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -070055 PonPort *PonPort
Matteo Scandoloe811ae92019-12-10 17:50:14 -080056 STag int
57 CTag int
58 Auth bool // automatically start EAPOL if set to true
59 Dhcp bool // automatically start DHCP if set to true
60 HwAddress net.HardwareAddr
61 InternalState *fsm.FSM
Pragya Arya2225f202020-01-29 18:05:01 +053062 DiscoveryRetryDelay time.Duration // this is the time between subsequent Discovery Indication
63 DiscoveryDelay time.Duration // this is the time to send the first Discovery Indication
Shrey Baidf8abccc2020-06-15 19:41:22 +053064 Backoff *backoff.Backoff
Matteo Scandoloe811ae92019-12-10 17:50:14 -080065 // ONU State
Matteo Scandolo27428702019-10-11 16:21:16 -070066 // PortNo comes with flows and it's used when sending packetIndications,
67 // There is one PortNo per UNI Port, for now we're only storing the first one
Matteo Scandolo47ef64b2020-04-20 14:16:07 -070068 // FIXME add support for multiple UNIs (each UNI has a different PortNo)
Matteo Scandolo5ff80082019-12-20 13:20:57 -080069 PortNo uint32
70 GemPortAdded bool
71 EapolFlowReceived bool
72 DhcpFlowReceived bool
73 Flows []FlowKey
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -070074 FlowIds []uint32 // keep track of the flows we currently have in the ONU
Matteo Scandolo99f18462019-10-28 14:14:28 -070075
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070076 OperState *fsm.FSM
77 SerialNumber *openolt.SerialNumber
78
Matteo Scandolo5ff80082019-12-20 13:20:57 -080079 Channel chan Message // this Channel is to track state changes OMCI messages, EAPOL and DHCP packets
80 GemPortChannels []chan bool // this channels are used to notify everyone that is interested that a GemPort has been added
Matteo Scandolo40e067f2019-10-16 16:59:41 -070081
82 // OMCI params
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -070083 tid uint16
84 hpTid uint16
85 seqNumber uint16
Matteo Scandolo40e067f2019-10-16 16:59:41 -070086
Anand S Katti09541352020-01-29 15:54:01 +053087 DoneChannel chan bool // this channel is used to signal once the onu is complete (when the struct is used by BBR)
88 TrafficSchedulers *tech_profile.TrafficSchedulers
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070089}
90
Matteo Scandolo99f18462019-10-28 14:14:28 -070091func (o *Onu) Sn() string {
Matteo Scandolo40e067f2019-10-16 16:59:41 -070092 return common.OnuSnToString(o.SerialNumber)
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070093}
94
Matteo Scandolo5ff80082019-12-20 13:20:57 -080095func (o *Onu) GetGemPortChan() chan bool {
96 listener := make(chan bool, 1)
97 o.GemPortChannels = append(o.GemPortChannels, listener)
98 return listener
99}
100
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700101func CreateONU(olt *OltDevice, pon *PonPort, id uint32, sTag int, cTag int, auth bool, dhcp bool, delay time.Duration, isMock bool) *Onu {
Shrey Baidf8abccc2020-06-15 19:41:22 +0530102 b := &backoff.Backoff{
103 //These are the defaults
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700104 Min: 5 * time.Second,
Shrey Baidf8abccc2020-06-15 19:41:22 +0530105 Max: 35 * time.Second,
106 Factor: 1.5,
107 Jitter: false,
108 }
Matteo Scandolo4747d292019-08-05 11:50:18 -0700109
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700110 o := Onu{
Pragya Arya2225f202020-01-29 18:05:01 +0530111 ID: 0,
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800112 PonPortID: pon.ID,
113 PonPort: pon,
114 STag: sTag,
115 CTag: cTag,
116 Auth: auth,
117 Dhcp: dhcp,
Matteo Scandolo378b8c92020-04-16 14:34:22 -0700118 HwAddress: net.HardwareAddr{0x2e, 0x60, 0x70, byte(olt.ID), byte(pon.ID), byte(id)},
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800119 PortNo: 0,
120 tid: 0x1,
121 hpTid: 0x8000,
122 seqNumber: 0,
123 DoneChannel: make(chan bool, 1),
124 DhcpFlowReceived: false,
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800125 EapolFlowReceived: false,
126 GemPortAdded: false,
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800127 DiscoveryRetryDelay: 60 * time.Second, // this is used to send OnuDiscoveryIndications until an activate call is received
Pragya Arya8bdb4532020-03-02 17:08:09 +0530128 Flows: []FlowKey{},
Pragya Arya2225f202020-01-29 18:05:01 +0530129 DiscoveryDelay: delay,
Shrey Baidf8abccc2020-06-15 19:41:22 +0530130 Backoff: b,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700131 }
Pragya Arya2225f202020-01-29 18:05:01 +0530132 o.SerialNumber = o.NewSN(olt.ID, pon.ID, id)
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700133 // NOTE this state machine is used to track the operational
134 // state as requested by VOLTHA
135 o.OperState = getOperStateFSM(func(e *fsm.Event) {
136 onuLogger.WithFields(log.Fields{
137 "ID": o.ID,
138 }).Debugf("Changing ONU OperState from %s to %s", e.Src, e.Dst)
139 })
140
141 // NOTE this state machine is used to activate the OMCI, EAPOL and DHCP clients
142 o.InternalState = fsm.NewFSM(
143 "created",
144 fsm.Events{
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700145 // DEVICE Lifecycle
Hardik Windlassad790cb2020-06-17 21:26:22 +0530146 {Name: "initialize", Src: []string{"created", "disabled", "pon_disabled"}, Dst: "initialized"},
147 {Name: "discover", Src: []string{"initialized"}, Dst: "discovered"},
148 {Name: "enable", Src: []string{"discovered", "pon_disabled"}, Dst: "enabled"},
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700149 {Name: "receive_eapol_flow", Src: []string{"enabled", "gem_port_added"}, Dst: "eapol_flow_received"},
150 {Name: "add_gem_port", Src: []string{"enabled", "eapol_flow_received"}, Dst: "gem_port_added"},
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100151 // NOTE should disabled state be different for oper_disabled (emulating an error) and admin_disabled (received a disabled call via VOLTHA)?
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800152 {Name: "disable", Src: []string{"enabled", "eap_response_success_received", "auth_failed", "dhcp_ack_received", "dhcp_failed", "pon_disabled"}, Dst: "disabled"},
Pragya Arya6a708d62020-01-01 17:17:20 +0530153 // ONU state when PON port is disabled but ONU is power ON(more states should be added in src?)
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800154 {Name: "pon_disabled", Src: []string{"enabled", "eap_response_success_received", "auth_failed", "dhcp_ack_received", "dhcp_failed"}, Dst: "pon_disabled"},
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700155 // EAPOL
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800156 {Name: "start_auth", Src: []string{"enabled", "eap_start_sent", "eap_response_identity_sent", "eap_response_challenge_sent", "eap_response_success_received", "auth_failed", "dhcp_ack_received", "dhcp_failed", "igmp_join_started", "igmp_left", "igmp_join_error"}, Dst: "auth_started"},
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700157 {Name: "eap_start_sent", Src: []string{"auth_started"}, Dst: "eap_start_sent"},
158 {Name: "eap_response_identity_sent", Src: []string{"eap_start_sent"}, Dst: "eap_response_identity_sent"},
159 {Name: "eap_response_challenge_sent", Src: []string{"eap_response_identity_sent"}, Dst: "eap_response_challenge_sent"},
160 {Name: "eap_response_success_received", Src: []string{"eap_response_challenge_sent"}, Dst: "eap_response_success_received"},
161 {Name: "auth_failed", Src: []string{"auth_started", "eap_start_sent", "eap_response_identity_sent", "eap_response_challenge_sent"}, Dst: "auth_failed"},
162 // DHCP
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800163 {Name: "start_dhcp", Src: []string{"enabled", "eap_response_success_received", "dhcp_discovery_sent", "dhcp_request_sent", "dhcp_ack_received", "dhcp_failed", "igmp_join_started", "igmp_left", "igmp_join_error"}, Dst: "dhcp_started"},
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700164 {Name: "dhcp_discovery_sent", Src: []string{"dhcp_started"}, Dst: "dhcp_discovery_sent"},
165 {Name: "dhcp_request_sent", Src: []string{"dhcp_discovery_sent"}, Dst: "dhcp_request_sent"},
166 {Name: "dhcp_ack_received", Src: []string{"dhcp_request_sent"}, Dst: "dhcp_ack_received"},
167 {Name: "dhcp_failed", Src: []string{"dhcp_started", "dhcp_discovery_sent", "dhcp_request_sent"}, Dst: "dhcp_failed"},
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700168 // BBR States
169 // TODO add start OMCI state
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100170 {Name: "send_eapol_flow", Src: []string{"initialized"}, Dst: "eapol_flow_sent"},
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700171 {Name: "send_dhcp_flow", Src: []string{"eapol_flow_sent"}, Dst: "dhcp_flow_sent"},
Arjun E K57a7fcb2020-01-30 06:44:45 +0000172 // IGMP
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800173 {Name: "igmp_join_start", Src: []string{"eap_response_success_received", "dhcp_ack_received", "igmp_left", "igmp_join_error", "igmp_join_started"}, Dst: "igmp_join_started"},
174 {Name: "igmp_join_startv3", Src: []string{"eap_response_success_received", "dhcp_ack_received", "igmp_left", "igmp_join_error", "igmp_join_started"}, Dst: "igmp_join_started"},
Shubham Sharmabd4b6572020-02-12 13:00:44 +0000175 {Name: "igmp_join_error", Src: []string{"igmp_join_started"}, Dst: "igmp_join_error"},
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800176 {Name: "igmp_leave", Src: []string{"igmp_join_started", "eap_response_success_received", "dhcp_ack_received"}, Dst: "igmp_left"},
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700177 },
178 fsm.Callbacks{
179 "enter_state": func(e *fsm.Event) {
180 o.logStateChange(e.Src, e.Dst)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700181 },
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100182 "enter_initialized": func(e *fsm.Event) {
183 // create new channel for ProcessOnuMessages Go routine
184 o.Channel = make(chan Message, 2048)
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800185
186 if err := o.OperState.Event("enable"); err != nil {
187 onuLogger.WithFields(log.Fields{
188 "OnuId": o.ID,
189 "IntfId": o.PonPortID,
190 "OnuSn": o.Sn(),
191 }).Errorf("Cannot change ONU OperState to up: %s", err.Error())
192 }
193
Pragya Arya1cbefa42020-01-13 12:15:29 +0530194 if !isMock {
195 // start ProcessOnuMessages Go routine
196 go o.ProcessOnuMessages(olt.enableContext, *olt.OpenoltStream, nil)
197 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100198 },
199 "enter_discovered": func(e *fsm.Event) {
200 msg := Message{
201 Type: OnuDiscIndication,
202 Data: OnuDiscIndicationMessage{
203 Onu: &o,
204 OperState: UP,
205 },
206 }
207 o.Channel <- msg
208 },
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700209 "enter_enabled": func(event *fsm.Event) {
210 msg := Message{
211 Type: OnuIndication,
212 Data: OnuIndicationMessage{
213 OnuSN: o.SerialNumber,
214 PonPortID: o.PonPortID,
215 OperState: UP,
216 },
217 }
218 o.Channel <- msg
219 },
220 "enter_disabled": func(event *fsm.Event) {
Matteo Scandolo47ef64b2020-04-20 14:16:07 -0700221
222 // clean the ONU state
223 o.DhcpFlowReceived = false
Matteo Scandolo328c5f02020-06-26 14:16:39 -0700224 o.EapolFlowReceived = false
225 o.GemPortAdded = false
Matteo Scandolo47ef64b2020-04-20 14:16:07 -0700226 o.PortNo = 0
227 o.Flows = []FlowKey{}
228
229 // set the OpenState to disabled
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800230 if err := o.OperState.Event("disable"); err != nil {
231 onuLogger.WithFields(log.Fields{
232 "OnuId": o.ID,
233 "IntfId": o.PonPortID,
234 "OnuSn": o.Sn(),
235 }).Errorf("Cannot change ONU OperState to down: %s", err.Error())
236 }
Matteo Scandolo47ef64b2020-04-20 14:16:07 -0700237
238 // send the OnuIndication DOWN event
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700239 msg := Message{
240 Type: OnuIndication,
241 Data: OnuIndicationMessage{
242 OnuSN: o.SerialNumber,
243 PonPortID: o.PonPortID,
244 OperState: DOWN,
245 },
246 }
247 o.Channel <- msg
Hardik Windlass7b3405b2020-07-08 15:10:05 +0530248
249 // verify all the flows removes are handled and
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100250 // terminate the ONU's ProcessOnuMessages Go routine
Hardik Windlass7b3405b2020-07-08 15:10:05 +0530251 if len(o.FlowIds) == 0 {
252 close(o.Channel)
253 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700254 },
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800255 "before_start_auth": func(e *fsm.Event) {
256 if o.EapolFlowReceived == false {
257 e.Cancel(errors.New("cannot-go-to-auth-started-as-eapol-flow-is-missing"))
258 return
259 }
260 if o.GemPortAdded == false {
261 e.Cancel(errors.New("cannot-go-to-auth-started-as-gemport-is-missing"))
262 return
263 }
264 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700265 "enter_auth_started": func(e *fsm.Event) {
266 o.logStateChange(e.Src, e.Dst)
267 msg := Message{
268 Type: StartEAPOL,
269 Data: PacketMessage{
270 PonPortID: o.PonPortID,
271 OnuID: o.ID,
272 },
273 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700274 o.Channel <- msg
Matteo Scandolo4747d292019-08-05 11:50:18 -0700275 },
Pragya Arya324337e2020-02-20 14:35:08 +0530276 "enter_eap_response_success_received": func(e *fsm.Event) {
277 publishEvent("ONU-authentication-done", int32(o.PonPortID), int32(o.ID), o.Sn())
278 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700279 "enter_auth_failed": func(e *fsm.Event) {
280 onuLogger.WithFields(log.Fields{
281 "OnuId": o.ID,
282 "IntfId": o.PonPortID,
283 "OnuSn": o.Sn(),
284 }).Errorf("ONU failed to authenticate!")
285 },
Matteo Scandolo99f18462019-10-28 14:14:28 -0700286 "before_start_dhcp": func(e *fsm.Event) {
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800287
288 // we allow transition from eanbled to dhcp_started only if auth was set to false
289 if o.InternalState.Current() == "enabled" && o.Auth {
290 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-authentication-is-required"))
291 return
292 }
293
Matteo Scandolo99f18462019-10-28 14:14:28 -0700294 if o.DhcpFlowReceived == false {
295 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-dhcp-flow-is-missing"))
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800296 return
297 }
298
299 if o.GemPortAdded == false {
300 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-gemport-is-missing"))
301 return
Matteo Scandolo99f18462019-10-28 14:14:28 -0700302 }
303 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700304 "enter_dhcp_started": func(e *fsm.Event) {
305 msg := Message{
306 Type: StartDHCP,
307 Data: PacketMessage{
308 PonPortID: o.PonPortID,
309 OnuID: o.ID,
310 },
311 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700312 o.Channel <- msg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700313 },
Pragya Arya324337e2020-02-20 14:35:08 +0530314 "enter_dhcp_ack_received": func(e *fsm.Event) {
315 publishEvent("ONU-DHCP-ACK-received", int32(o.PonPortID), int32(o.ID), o.Sn())
316 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700317 "enter_dhcp_failed": func(e *fsm.Event) {
318 onuLogger.WithFields(log.Fields{
319 "OnuId": o.ID,
320 "IntfId": o.PonPortID,
321 "OnuSn": o.Sn(),
322 }).Errorf("ONU failed to DHCP!")
323 },
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700324 "enter_eapol_flow_sent": func(e *fsm.Event) {
325 msg := Message{
326 Type: SendEapolFlow,
327 }
328 o.Channel <- msg
329 },
330 "enter_dhcp_flow_sent": func(e *fsm.Event) {
331 msg := Message{
332 Type: SendDhcpFlow,
333 }
334 o.Channel <- msg
335 },
Arjun E K57a7fcb2020-01-30 06:44:45 +0000336 "igmp_join_start": func(e *fsm.Event) {
337 msg := Message{
338 Type: IGMPMembershipReportV2,
339 }
340 o.Channel <- msg
341 },
342 "igmp_leave": func(e *fsm.Event) {
343 msg := Message{
344 Type: IGMPLeaveGroup}
345 o.Channel <- msg
346 },
Anand S Katti09541352020-01-29 15:54:01 +0530347 "igmp_join_startv3": func(e *fsm.Event) {
348 msg := Message{
349 Type: IGMPMembershipReportV3,
350 }
351 o.Channel <- msg
352 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700353 },
354 )
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100355
Matteo Scandolo27428702019-10-11 16:21:16 -0700356 return &o
Matteo Scandolo4747d292019-08-05 11:50:18 -0700357}
358
William Kurkian0418bc82019-11-06 12:16:24 -0500359func (o *Onu) logStateChange(src string, dst string) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700360 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700361 "OnuId": o.ID,
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700362 "IntfId": o.PonPortID,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700363 "OnuSn": o.Sn(),
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700364 }).Debugf("Changing ONU InternalState from %s to %s", src, dst)
365}
366
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100367// ProcessOnuMessages starts indication channel for each ONU
David Bainbridge103cf022019-12-16 20:11:35 +0000368func (o *Onu) ProcessOnuMessages(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, client openolt.OpenoltClient) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700369 onuLogger.WithFields(log.Fields{
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100370 "onuID": o.ID,
371 "onuSN": o.Sn(),
372 "ponPort": o.PonPortID,
373 }).Debug("Starting ONU Indication Channel")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700374
David Bainbridge103cf022019-12-16 20:11:35 +0000375loop:
376 for {
377 select {
378 case <-ctx.Done():
379 onuLogger.WithFields(log.Fields{
380 "onuID": o.ID,
381 "onuSN": o.Sn(),
382 }).Tracef("ONU message handling canceled via context")
383 break loop
384 case message, ok := <-o.Channel:
385 if !ok || ctx.Err() != nil {
386 onuLogger.WithFields(log.Fields{
387 "onuID": o.ID,
388 "onuSN": o.Sn(),
389 }).Tracef("ONU message handling canceled via channel close")
390 break loop
Matteo Scandolo075b1892019-10-07 12:11:07 -0700391 }
David Bainbridge103cf022019-12-16 20:11:35 +0000392 onuLogger.WithFields(log.Fields{
393 "onuID": o.ID,
394 "onuSN": o.Sn(),
395 "messageType": message.Type,
396 }).Tracef("Received message on ONU Channel")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700397
David Bainbridge103cf022019-12-16 20:11:35 +0000398 switch message.Type {
399 case OnuDiscIndication:
400 msg, _ := message.Data.(OnuDiscIndicationMessage)
401 // NOTE we need to slow down and send ONU Discovery Indication in batches to better emulate a real scenario
Pragya Arya2225f202020-01-29 18:05:01 +0530402 time.Sleep(o.DiscoveryDelay)
David Bainbridge103cf022019-12-16 20:11:35 +0000403 o.sendOnuDiscIndication(msg, stream)
404 case OnuIndication:
405 msg, _ := message.Data.(OnuIndicationMessage)
406 o.sendOnuIndication(msg, stream)
407 case OMCI:
408 msg, _ := message.Data.(OmciMessage)
409 o.handleOmciMessage(msg, stream)
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700410 case FlowAdd:
David Bainbridge103cf022019-12-16 20:11:35 +0000411 msg, _ := message.Data.(OnuFlowUpdateMessage)
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700412 o.handleFlowAdd(msg)
413 case FlowRemoved:
414 msg, _ := message.Data.(OnuFlowUpdateMessage)
415 o.handleFlowRemove(msg)
David Bainbridge103cf022019-12-16 20:11:35 +0000416 case StartEAPOL:
Shrey Baidf8abccc2020-06-15 19:41:22 +0530417 o.handleEAPOLStart(stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000418 case StartDHCP:
Shrey Baidf8abccc2020-06-15 19:41:22 +0530419 o.handleDHCPStart(stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000420 case OnuPacketOut:
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700421
David Bainbridge103cf022019-12-16 20:11:35 +0000422 msg, _ := message.Data.(OnuPacketMessage)
423
424 log.WithFields(log.Fields{
425 "IntfId": msg.IntfId,
426 "OnuId": msg.OnuId,
427 "pktType": msg.Type,
428 }).Trace("Received OnuPacketOut Message")
429
430 if msg.Type == packetHandlers.EAPOL {
431 eapol.HandleNextPacket(msg.OnuId, msg.IntfId, o.Sn(), o.PortNo, o.InternalState, msg.Packet, stream, client)
432 } else if msg.Type == packetHandlers.DHCP {
433 // NOTE here we receive packets going from the DHCP Server to the ONU
434 // for now we expect them to be double-tagged, but ideally the should be single tagged
Matteo Scandolo378b8c92020-04-16 14:34:22 -0700435 dhcp.HandleNextPacket(o.PonPort.Olt.ID, o.ID, o.PonPortID, o.Sn(), o.PortNo, o.HwAddress, o.CTag, o.InternalState, msg.Packet, stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000436 }
437 case OnuPacketIn:
438 // NOTE we only receive BBR packets here.
439 // Eapol.HandleNextPacket can handle both BBSim and BBr cases so the call is the same
440 // in the DHCP case VOLTHA only act as a proxy, the behaviour is completely different thus we have a dhcp.HandleNextBbrPacket
441 msg, _ := message.Data.(OnuPacketMessage)
442
443 log.WithFields(log.Fields{
444 "IntfId": msg.IntfId,
445 "OnuId": msg.OnuId,
446 "pktType": msg.Type,
447 }).Trace("Received OnuPacketIn Message")
448
449 if msg.Type == packetHandlers.EAPOL {
450 eapol.HandleNextPacket(msg.OnuId, msg.IntfId, o.Sn(), o.PortNo, o.InternalState, msg.Packet, stream, client)
451 } else if msg.Type == packetHandlers.DHCP {
452 dhcp.HandleNextBbrPacket(o.ID, o.PonPortID, o.Sn(), o.STag, o.HwAddress, o.DoneChannel, msg.Packet, client)
453 }
David Bainbridge103cf022019-12-16 20:11:35 +0000454 case OmciIndication:
455 msg, _ := message.Data.(OmciIndicationMessage)
456 o.handleOmci(msg, client)
457 case SendEapolFlow:
458 o.sendEapolFlow(client)
459 case SendDhcpFlow:
460 o.sendDhcpFlow(client)
Arjun E K57a7fcb2020-01-30 06:44:45 +0000461 case IGMPMembershipReportV2:
462 log.Infof("Recieved IGMPMembershipReportV2 message on ONU channel")
463 igmp.SendIGMPMembershipReportV2(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
464 case IGMPLeaveGroup:
465 log.Infof("Recieved IGMPLeaveGroupV2 message on ONU channel")
466 igmp.SendIGMPLeaveGroupV2(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
Anand S Katti09541352020-01-29 15:54:01 +0530467 case IGMPMembershipReportV3:
468 log.Infof("Recieved IGMPMembershipReportV3 message on ONU channel")
469 igmp.SendIGMPMembershipReportV3(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000470 default:
471 onuLogger.Warnf("Received unknown message data %v for type %v in OLT Channel", message.Data, message.Type)
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700472 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700473 }
474 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100475 onuLogger.WithFields(log.Fields{
476 "onuID": o.ID,
477 "onuSN": o.Sn(),
478 }).Debug("Stopped handling ONU Indication Channel")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700479}
480
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800481func (o *Onu) processOmciMessage(message omcisim.OmciChMessage, stream openolt.Openolt_EnableIndicationServer) {
William Kurkian9dadc5b2019-10-22 13:51:57 -0400482 switch message.Type {
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800483 case omcisim.UniLinkUp, omcisim.UniLinkDown:
484 onuLogger.WithFields(log.Fields{
485 "OnuId": message.Data.OnuId,
486 "IntfId": message.Data.IntfId,
487 "Type": message.Type,
488 }).Infof("UNI Link Alarm")
489 // TODO send to OLT
490
491 omciInd := openolt.OmciIndication{
492 IntfId: message.Data.IntfId,
493 OnuId: message.Data.OnuId,
494 Pkt: message.Packet,
495 }
496
497 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
498 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
499 onuLogger.WithFields(log.Fields{
500 "IntfId": o.PonPortID,
501 "SerialNumber": o.Sn(),
502 "Type": message.Type,
503 "omciPacket": omciInd.Pkt,
504 }).Errorf("Failed to send UNI Link Alarm: %v", err)
505 return
506 }
507
508 onuLogger.WithFields(log.Fields{
509 "IntfId": o.PonPortID,
510 "SerialNumber": o.Sn(),
511 "Type": message.Type,
512 "omciPacket": omciInd.Pkt,
513 }).Info("UNI Link alarm sent")
514
William Kurkian9dadc5b2019-10-22 13:51:57 -0400515 case omcisim.GemPortAdded:
516 log.WithFields(log.Fields{
517 "OnuId": message.Data.OnuId,
518 "IntfId": message.Data.IntfId,
Matteo Scandolod74abba2020-04-16 16:36:44 -0700519 "OnuSn": o.Sn(),
William Kurkian9dadc5b2019-10-22 13:51:57 -0400520 }).Infof("GemPort Added")
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700521
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800522 o.GemPortAdded = true
523
524 // broadcast the change to all listeners
525 // and close the channels as once the GemPort is set
526 // it won't change anymore
527 for _, ch := range o.GemPortChannels {
528 ch <- true
529 close(ch)
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700530 }
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800531 o.GemPortChannels = []chan bool{}
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700532 }
533}
534
Shrey Baidf8abccc2020-06-15 19:41:22 +0530535func (o *Onu) handleEAPOLStart(stream openolt.Openolt_EnableIndicationServer) {
536 log.Infof("Receive StartEAPOL message on ONU Channel")
537 eapol.SendEapStart(o.ID, o.PonPortID, o.Sn(), o.PortNo, o.HwAddress, o.InternalState, stream)
538 go func(delay time.Duration) {
539 time.Sleep(delay)
540 if (o.InternalState.Current() == "eap_start_sent" ||
541 o.InternalState.Current() == "eap_response_identity_sent" ||
542 o.InternalState.Current() == "eap_response_challenge_sent" ||
543 o.InternalState.Current() == "auth_failed") && common.Options.BBSim.AuthRetry {
544 o.InternalState.Event("start_auth")
545 } else if o.InternalState.Current() == "eap_response_success_received" {
546 o.Backoff.Reset()
547 }
548 }(o.Backoff.Duration())
549}
550
551func (o *Onu) handleDHCPStart(stream openolt.Openolt_EnableIndicationServer) {
552 log.Infof("Receive StartDHCP message on ONU Channel")
553 // FIXME use id, ponId as SendEapStart
554 dhcp.SendDHCPDiscovery(o.PonPort.Olt.ID, o.PonPortID, o.ID, o.Sn(), o.PortNo, o.InternalState, o.HwAddress, o.CTag, stream)
555 go func(delay time.Duration) {
556 time.Sleep(delay)
557 if (o.InternalState.Current() == "dhcp_discovery_sent" ||
558 o.InternalState.Current() == "dhcp_request_sent" ||
559 o.InternalState.Current() == "dhcp_failed") && common.Options.BBSim.DhcpRetry {
560 o.InternalState.Event("start_dhcp")
561 } else if o.InternalState.Current() == "dhcp_ack_received" {
562 o.Backoff.Reset()
563 }
564 }(o.Backoff.Duration())
565}
566
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100567func (o Onu) NewSN(oltid int, intfid uint32, onuid uint32) *openolt.SerialNumber {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700568
569 sn := new(openolt.SerialNumber)
570
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700571 //sn = new(openolt.SerialNumber)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700572 sn.VendorId = []byte("BBSM")
573 sn.VendorSpecific = []byte{0, byte(oltid % 256), byte(intfid), byte(onuid)}
574
575 return sn
576}
577
William Kurkian0418bc82019-11-06 12:16:24 -0500578func (o *Onu) sendOnuDiscIndication(msg OnuDiscIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700579 discoverData := &openolt.Indication_OnuDiscInd{OnuDiscInd: &openolt.OnuDiscIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700580 IntfId: msg.Onu.PonPortID,
Matteo Scandolo4747d292019-08-05 11:50:18 -0700581 SerialNumber: msg.Onu.SerialNumber,
582 }}
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700583
Matteo Scandolo4747d292019-08-05 11:50:18 -0700584 if err := stream.Send(&openolt.Indication{Data: discoverData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700585 log.Errorf("Failed to send Indication_OnuDiscInd: %v", err)
Matteo Scandolo99f18462019-10-28 14:14:28 -0700586 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700587 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700588
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700589 onuLogger.WithFields(log.Fields{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700590 "IntfId": msg.Onu.PonPortID,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700591 "OnuSn": msg.Onu.Sn(),
592 "OnuId": o.ID,
Matteo Scandolo4747d292019-08-05 11:50:18 -0700593 }).Debug("Sent Indication_OnuDiscInd")
Pragya Arya324337e2020-02-20 14:35:08 +0530594 publishEvent("ONU-discovery-indication-sent", int32(msg.Onu.PonPortID), int32(o.ID), msg.Onu.Sn())
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800595
596 // after DiscoveryRetryDelay check if the state is the same and in case send a new OnuDiscIndication
597 go func(delay time.Duration) {
Matteo Scandolo569e7172019-12-20 11:51:51 -0800598 time.Sleep(delay)
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800599 if o.InternalState.Current() == "discovered" {
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800600 o.sendOnuDiscIndication(msg, stream)
601 }
602 }(o.DiscoveryRetryDelay)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700603}
604
William Kurkian0418bc82019-11-06 12:16:24 -0500605func (o *Onu) sendOnuIndication(msg OnuIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700606 // NOTE voltha returns an ID, but if we use that ID then it complains:
607 // expected_onu_id: 1, received_onu_id: 1024, event: ONU-id-mismatch, can happen if both voltha and the olt rebooted
608 // so we're using the internal ID that is 1
609 // o.ID = msg.OnuID
Matteo Scandolo4747d292019-08-05 11:50:18 -0700610
611 indData := &openolt.Indication_OnuInd{OnuInd: &openolt.OnuIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700612 IntfId: o.PonPortID,
613 OnuId: o.ID,
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700614 OperState: msg.OperState.String(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700615 AdminState: o.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700616 SerialNumber: o.SerialNumber,
617 }}
618 if err := stream.Send(&openolt.Indication{Data: indData}); err != nil {
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800619 // NOTE do we need to transition to a broken state?
Matteo Scandolo11006992019-08-28 11:29:46 -0700620 log.Errorf("Failed to send Indication_OnuInd: %v", err)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700621 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700622 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700623 "IntfId": o.PonPortID,
624 "OnuId": o.ID,
625 "OperState": msg.OperState.String(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700626 "AdminState": msg.OperState.String(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700627 "OnuSn": o.Sn(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700628 }).Debug("Sent Indication_OnuInd")
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700629
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700630}
631
Pragya Arya324337e2020-02-20 14:35:08 +0530632func (o *Onu) publishOmciEvent(msg OmciMessage) {
633 if olt.PublishEvents {
634 _, _, msgType, _, _, _, err := omcisim.ParsePkt(HexDecode(msg.omciMsg.Pkt))
635 if err != nil {
636 log.Errorf("error in getting msgType %v", err)
637 return
638 }
639 if msgType == omcisim.MibUpload {
640 o.seqNumber = 0
641 publishEvent("MIB-upload-received", int32(o.PonPortID), int32(o.ID), common.OnuSnToString(o.SerialNumber))
642 } else if msgType == omcisim.MibUploadNext {
643 o.seqNumber++
644 if o.seqNumber > 290 {
645 publishEvent("MIB-upload-done", int32(o.PonPortID), int32(o.ID), common.OnuSnToString(o.SerialNumber))
646 }
647 }
648 }
649}
650
Scott Bakerb90c4312020-03-12 21:33:25 -0700651// Create a TestResponse packet and send it
652func (o *Onu) sendTestResult(msg OmciMessage, stream openolt.Openolt_EnableIndicationServer) error {
653 resp, err := omcilib.BuildTestResult(HexDecode(msg.omciMsg.Pkt))
654 if err != nil {
655 return err
656 }
657
658 var omciInd openolt.OmciIndication
659 omciInd.IntfId = o.PonPortID
660 omciInd.OnuId = o.ID
661 omciInd.Pkt = resp
662
663 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
664 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
665 onuLogger.WithFields(log.Fields{
666 "IntfId": o.PonPortID,
667 "SerialNumber": o.Sn(),
668 "omciPacket": omciInd.Pkt,
669 "msg": msg,
670 }).Errorf("send TestResult omcisim indication failed: %v", err)
671 return err
672 }
673 onuLogger.WithFields(log.Fields{
674 "IntfId": o.PonPortID,
675 "SerialNumber": o.Sn(),
676 "omciPacket": omciInd.Pkt,
677 }).Tracef("Sent TestResult OMCI message")
678
679 return nil
680}
681
William Kurkian0418bc82019-11-06 12:16:24 -0500682func (o *Onu) handleOmciMessage(msg OmciMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700683
684 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700685 "IntfId": o.PonPortID,
Matteo Scandolo27428702019-10-11 16:21:16 -0700686 "SerialNumber": o.Sn(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700687 "omciPacket": msg.omciMsg.Pkt,
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700688 }).Tracef("Received OMCI message")
689
Pragya Arya324337e2020-02-20 14:35:08 +0530690 o.publishOmciEvent(msg)
691
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700692 var omciInd openolt.OmciIndication
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700693 respPkt, err := omcisim.OmciSim(o.PonPortID, o.ID, HexDecode(msg.omciMsg.Pkt))
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700694 if err != nil {
Matteo Scandolo27428702019-10-11 16:21:16 -0700695 onuLogger.WithFields(log.Fields{
696 "IntfId": o.PonPortID,
697 "SerialNumber": o.Sn(),
698 "omciPacket": omciInd.Pkt,
699 "msg": msg,
700 }).Errorf("Error handling OMCI message %v", msg)
701 return
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700702 }
703
704 omciInd.IntfId = o.PonPortID
705 omciInd.OnuId = o.ID
706 omciInd.Pkt = respPkt
707
708 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
709 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
Matteo Scandolo27428702019-10-11 16:21:16 -0700710 onuLogger.WithFields(log.Fields{
711 "IntfId": o.PonPortID,
712 "SerialNumber": o.Sn(),
713 "omciPacket": omciInd.Pkt,
714 "msg": msg,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700715 }).Errorf("send omcisim indication failed: %v", err)
Matteo Scandolo27428702019-10-11 16:21:16 -0700716 return
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700717 }
718 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700719 "IntfId": o.PonPortID,
Matteo Scandolo27428702019-10-11 16:21:16 -0700720 "SerialNumber": o.Sn(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700721 "omciPacket": omciInd.Pkt,
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700722 }).Tracef("Sent OMCI message")
Scott Bakerb90c4312020-03-12 21:33:25 -0700723
724 // Test message is special, it requires sending two packets:
725 // first packet: TestResponse, says whether test was started successully, handled by omci-sim
726 // second packet, TestResult, reports the result of running the self-test
727 // TestResult can come some time after a TestResponse
728 // TODO: Implement some delay between the TestResponse and the TestResult
729 isTest, err := omcilib.IsTestRequest(HexDecode(msg.omciMsg.Pkt))
730 if (err == nil) && (isTest) {
731 o.sendTestResult(msg, stream)
732 }
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700733}
734
Matteo Scandolo27428702019-10-11 16:21:16 -0700735func (o *Onu) storePortNumber(portNo uint32) {
Matteo Scandolo813402b2019-10-23 19:24:52 -0700736 // NOTE this needed only as long as we don't support multiple UNIs
Matteo Scandolo27428702019-10-11 16:21:16 -0700737 // we need to add support for multiple UNIs
738 // the action plan is:
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700739 // - refactor the omcisim-sim library to use https://github.com/cboling/omci instead of canned messages
Matteo Scandolo27428702019-10-11 16:21:16 -0700740 // - change the library so that it reports a single UNI and remove this workaroung
741 // - add support for multiple UNIs in BBSim
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700742 if o.PortNo == 0 || portNo < o.PortNo {
Matteo Scandolo813402b2019-10-23 19:24:52 -0700743 onuLogger.WithFields(log.Fields{
744 "IntfId": o.PonPortID,
745 "OnuId": o.ID,
746 "SerialNumber": o.Sn(),
747 "OnuPortNo": o.PortNo,
748 "FlowPortNo": portNo,
749 }).Debug("Storing ONU portNo")
Matteo Scandolo27428702019-10-11 16:21:16 -0700750 o.PortNo = portNo
751 }
752}
753
William Kurkian0418bc82019-11-06 12:16:24 -0500754func (o *Onu) SetID(id uint32) {
Matteo Scandolo583f17d2020-02-13 10:35:17 -0800755 onuLogger.WithFields(log.Fields{
756 "IntfId": o.PonPortID,
757 "OnuId": id,
758 "SerialNumber": o.Sn(),
759 }).Debug("Storing OnuId ")
William Kurkian0418bc82019-11-06 12:16:24 -0500760 o.ID = id
761}
762
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700763func (o *Onu) handleFlowAdd(msg OnuFlowUpdateMessage) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700764 onuLogger.WithFields(log.Fields{
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800765 "DstPort": msg.Flow.Classifier.DstPort,
766 "EthType": fmt.Sprintf("%x", msg.Flow.Classifier.EthType),
767 "FlowId": msg.Flow.FlowId,
768 "FlowType": msg.Flow.FlowType,
769 "GemportId": msg.Flow.GemportId,
770 "InnerVlan": msg.Flow.Classifier.IVid,
771 "IntfId": msg.Flow.AccessIntfId,
772 "IpProto": msg.Flow.Classifier.IpProto,
773 "OnuId": msg.Flow.OnuId,
774 "OnuSn": o.Sn(),
775 "OuterVlan": msg.Flow.Classifier.OVid,
776 "PortNo": msg.Flow.PortNo,
777 "SrcPort": msg.Flow.Classifier.SrcPort,
778 "UniID": msg.Flow.UniId,
Matteo Scandolo3ac52792020-03-05 14:21:08 -0800779 "ClassifierOPbits": msg.Flow.Classifier.OPbits,
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700780 }).Debug("ONU receives FlowAdd")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700781
Matteo Scandolo813402b2019-10-23 19:24:52 -0700782 if msg.Flow.UniId != 0 {
783 // as of now BBSim only support a single UNI, so ignore everything that is not targeted to it
784 onuLogger.WithFields(log.Fields{
785 "IntfId": o.PonPortID,
786 "OnuId": o.ID,
787 "SerialNumber": o.Sn(),
788 }).Debug("Ignoring flow as it's not for the first UNI")
789 return
790 }
791
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700792 o.FlowIds = append(o.FlowIds, msg.Flow.FlowId)
793
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700794 if msg.Flow.Classifier.EthType == uint32(layers.EthernetTypeEAPOL) && msg.Flow.Classifier.OVid == 4091 {
Matteo Scandolo27428702019-10-11 16:21:16 -0700795 // NOTE storing the PortNO, it's needed when sending PacketIndications
Matteo Scandolo813402b2019-10-23 19:24:52 -0700796 o.storePortNumber(uint32(msg.Flow.PortNo))
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800797 o.EapolFlowReceived = true
798 // if authentication is not enabled, do nothing
799 if o.Auth {
800 // NOTE if we receive the EAPOL flows but we don't have GemPorts
801 // wait for it before starting auth
802 if !o.GemPortAdded {
803 // wait for Gem and then start auth
804 go func() {
805 for v := range o.GetGemPortChan() {
806 if v == true {
807 if err := o.InternalState.Event("start_auth"); err != nil {
808 onuLogger.Warnf("Can't go to auth_started: %v", err)
809 }
810 }
811 }
812 onuLogger.Trace("GemPortChannel closed")
813 }()
Matteo Scandoloc1147092019-10-29 09:38:33 -0700814 } else {
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800815 // start the EAPOL state machine
816 if err := o.InternalState.Event("start_auth"); err != nil {
817 onuLogger.Warnf("Can't go to auth_started: %v", err)
818 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700819 }
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800820 } else {
821 onuLogger.WithFields(log.Fields{
822 "IntfId": o.PonPortID,
823 "OnuId": o.ID,
824 "SerialNumber": o.Sn(),
825 }).Warn("Not starting authentication as Auth bit is not set in CLI parameters")
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700826 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700827 } else if msg.Flow.Classifier.EthType == uint32(layers.EthernetTypeIPv4) &&
828 msg.Flow.Classifier.SrcPort == uint32(68) &&
Matteo Scandolo3ac52792020-03-05 14:21:08 -0800829 msg.Flow.Classifier.DstPort == uint32(67) &&
Matteo Scandolod74abba2020-04-16 16:36:44 -0700830 (msg.Flow.Classifier.OPbits == 0 || msg.Flow.Classifier.OPbits == 255) {
Matteo Scandolo99f18462019-10-28 14:14:28 -0700831
Matteo Scandoloc1147092019-10-29 09:38:33 -0700832 if o.Dhcp == true {
Matteo Scandolod74abba2020-04-16 16:36:44 -0700833 if o.DhcpFlowReceived == false {
834 // keep track that we received the DHCP Flows
835 // so that we can transition the state to dhcp_started
836 // this is needed as a check in case someone trigger DHCP from the CLI
837 o.DhcpFlowReceived = true
838
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800839 if !o.GemPortAdded {
840 // wait for Gem and then start DHCP
841 go func() {
842 for v := range o.GetGemPortChan() {
843 if v == true {
844 if err := o.InternalState.Event("start_dhcp"); err != nil {
845 log.Errorf("Can't go to dhcp_started: %v", err)
846 }
847 }
848 }
849 }()
850 } else {
851 // start the DHCP state machine
852 if err := o.InternalState.Event("start_dhcp"); err != nil {
853 log.Errorf("Can't go to dhcp_started: %v", err)
854 }
Matteo Scandolod74abba2020-04-16 16:36:44 -0700855 }
856 } else {
857 onuLogger.WithFields(log.Fields{
858 "IntfId": o.PonPortID,
859 "OnuId": o.ID,
860 "SerialNumber": o.Sn(),
861 "DhcpFlowReceived": o.DhcpFlowReceived,
862 }).Warn("DHCP already started")
Matteo Scandoloc1147092019-10-29 09:38:33 -0700863 }
864 } else {
865 onuLogger.WithFields(log.Fields{
866 "IntfId": o.PonPortID,
867 "OnuId": o.ID,
868 "SerialNumber": o.Sn(),
869 }).Warn("Not starting DHCP as Dhcp bit is not set in CLI parameters")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700870 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700871 }
872}
873
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700874func (o *Onu) handleFlowRemove(msg OnuFlowUpdateMessage) {
875 onuLogger.WithFields(log.Fields{
876 "IntfId": o.PonPortID,
877 "OnuId": o.ID,
878 "SerialNumber": o.Sn(),
879 "FlowId": msg.Flow.FlowId,
880 "FlowType": msg.Flow.FlowType,
881 }).Debug("ONU receives FlowRemove")
882
883 for idx, flow := range o.FlowIds {
884 // If the gemport is found, delete it from local cache.
885 if flow == msg.Flow.FlowId {
886 o.FlowIds = append(o.FlowIds[:idx], o.FlowIds[idx+1:]...)
887 break
888 }
889 }
890
891 if len(o.FlowIds) == 0 {
892 onuLogger.WithFields(log.Fields{
893 "IntfId": o.PonPortID,
894 "OnuId": o.ID,
895 "SerialNumber": o.Sn(),
896 }).Info("Resetting GemPort")
897 o.GemPortAdded = false
898
899 // TODO ideally we should keep track of the flow type (and not only the ID)
900 // so that we can properly set these two flag when the flow is removed
901 o.EapolFlowReceived = false
902 o.DhcpFlowReceived = false
Hardik Windlass7b3405b2020-07-08 15:10:05 +0530903
904 // check if ONU delete is performed and
905 // terminate the ONU's ProcessOnuMessages Go routine
906 if o.InternalState.Current() == "disabled" {
907 close(o.Channel)
908 }
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -0700909 }
910}
911
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700912// HexDecode converts the hex encoding to binary
913func HexDecode(pkt []byte) []byte {
914 p := make([]byte, len(pkt)/2)
915 for i, j := 0, 0; i < len(pkt); i, j = i+2, j+1 {
916 // Go figure this ;)
917 u := (pkt[i] & 15) + (pkt[i]>>6)*9
918 l := (pkt[i+1] & 15) + (pkt[i+1]>>6)*9
919 p[j] = u<<4 + l
920 }
921 onuLogger.Tracef("Omci decoded: %x.", p)
922 return p
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700923}
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700924
925// BBR methods
926
927func sendOmciMsg(pktBytes []byte, intfId uint32, onuId uint32, sn *openolt.SerialNumber, msgType string, client openolt.OpenoltClient) {
928 omciMsg := openolt.OmciMsg{
929 IntfId: intfId,
930 OnuId: onuId,
931 Pkt: pktBytes,
932 }
933
934 if _, err := client.OmciMsgOut(context.Background(), &omciMsg); err != nil {
935 log.WithFields(log.Fields{
936 "IntfId": intfId,
937 "OnuId": onuId,
938 "SerialNumber": common.OnuSnToString(sn),
939 "Pkt": omciMsg.Pkt,
940 }).Fatalf("Failed to send MIB Reset")
941 }
942 log.WithFields(log.Fields{
943 "IntfId": intfId,
944 "OnuId": onuId,
945 "SerialNumber": common.OnuSnToString(sn),
946 "Pkt": omciMsg.Pkt,
947 }).Tracef("Sent OMCI message %s", msgType)
948}
949
950func (onu *Onu) getNextTid(highPriority ...bool) uint16 {
951 var next uint16
952 if len(highPriority) > 0 && highPriority[0] {
953 next = onu.hpTid
954 onu.hpTid += 1
955 if onu.hpTid < 0x8000 {
956 onu.hpTid = 0x8000
957 }
958 } else {
959 next = onu.tid
960 onu.tid += 1
961 if onu.tid >= 0x8000 {
962 onu.tid = 1
963 }
964 }
965 return next
966}
967
968// TODO move this method in responders/omcisim
969func (o *Onu) StartOmci(client openolt.OpenoltClient) {
970 mibReset, _ := omcilib.CreateMibResetRequest(o.getNextTid(false))
971 sendOmciMsg(mibReset, o.PonPortID, o.ID, o.SerialNumber, "mibReset", client)
972}
973
974func (o *Onu) handleOmci(msg OmciIndicationMessage, client openolt.OpenoltClient) {
975 msgType, packet := omcilib.DecodeOmci(msg.OmciInd.Pkt)
976
977 log.WithFields(log.Fields{
978 "IntfId": msg.OmciInd.IntfId,
979 "OnuId": msg.OmciInd.OnuId,
980 "OnuSn": common.OnuSnToString(o.SerialNumber),
981 "Pkt": msg.OmciInd.Pkt,
982 "msgType": msgType,
Anand S Katti09541352020-01-29 15:54:01 +0530983 }).Trace("ONU Receives OMCI Msg")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700984 switch msgType {
985 default:
Matteo Scandolo813402b2019-10-23 19:24:52 -0700986 log.WithFields(log.Fields{
987 "IntfId": msg.OmciInd.IntfId,
988 "OnuId": msg.OmciInd.OnuId,
989 "OnuSn": common.OnuSnToString(o.SerialNumber),
990 "Pkt": msg.OmciInd.Pkt,
991 "msgType": msgType,
992 }).Fatalf("unexpected frame: %v", packet)
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700993 case omci.MibResetResponseType:
994 mibUpload, _ := omcilib.CreateMibUploadRequest(o.getNextTid(false))
995 sendOmciMsg(mibUpload, o.PonPortID, o.ID, o.SerialNumber, "mibUpload", client)
996 case omci.MibUploadResponseType:
997 mibUploadNext, _ := omcilib.CreateMibUploadNextRequest(o.getNextTid(false), o.seqNumber)
998 sendOmciMsg(mibUploadNext, o.PonPortID, o.ID, o.SerialNumber, "mibUploadNext", client)
999 case omci.MibUploadNextResponseType:
1000 o.seqNumber++
1001
1002 if o.seqNumber > 290 {
1003 // NOTE we are done with the MIB Upload (290 is the number of messages the omci-sim library will respond to)
1004 galEnet, _ := omcilib.CreateGalEnetRequest(o.getNextTid(false))
1005 sendOmciMsg(galEnet, o.PonPortID, o.ID, o.SerialNumber, "CreateGalEnetRequest", client)
1006 } else {
1007 mibUploadNext, _ := omcilib.CreateMibUploadNextRequest(o.getNextTid(false), o.seqNumber)
1008 sendOmciMsg(mibUploadNext, o.PonPortID, o.ID, o.SerialNumber, "mibUploadNext", client)
1009 }
1010 case omci.CreateResponseType:
1011 // NOTE Creating a GemPort,
1012 // BBsim actually doesn't care about the values, so we can do we want with the parameters
1013 // In the same way we can create a GemPort even without setting up UNIs/TConts/...
1014 // but we need the GemPort to trigger the state change
1015
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001016 if !o.GemPortAdded {
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001017 // NOTE this sends a CreateRequestType and BBSim replies with a CreateResponseType
1018 // thus we send this request only once
1019 gemReq, _ := omcilib.CreateGemPortRequest(o.getNextTid(false))
1020 sendOmciMsg(gemReq, o.PonPortID, o.ID, o.SerialNumber, "CreateGemPortRequest", client)
Matteo Scandoloeb6b5af2020-06-24 16:23:58 -07001021 o.GemPortAdded = true
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001022 } else {
1023 if err := o.InternalState.Event("send_eapol_flow"); err != nil {
1024 onuLogger.WithFields(log.Fields{
1025 "OnuId": o.ID,
1026 "IntfId": o.PonPortID,
1027 "OnuSn": o.Sn(),
1028 }).Errorf("Error while transitioning ONU State %v", err)
1029 }
1030 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001031 }
1032}
1033
1034func (o *Onu) sendEapolFlow(client openolt.OpenoltClient) {
1035
1036 classifierProto := openolt.Classifier{
1037 EthType: uint32(layers.EthernetTypeEAPOL),
1038 OVid: 4091,
1039 }
1040
1041 actionProto := openolt.Action{}
1042
1043 downstreamFlow := openolt.Flow{
1044 AccessIntfId: int32(o.PonPortID),
1045 OnuId: int32(o.ID),
Matteo Scandolo813402b2019-10-23 19:24:52 -07001046 UniId: int32(0), // NOTE do not hardcode this, we need to support multiple UNIs
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001047 FlowId: uint32(o.ID),
1048 FlowType: "downstream",
1049 AllocId: int32(0),
1050 NetworkIntfId: int32(0),
1051 GemportId: int32(1), // FIXME use the same value as CreateGemPortRequest PortID, do not hardcode
1052 Classifier: &classifierProto,
1053 Action: &actionProto,
1054 Priority: int32(100),
1055 Cookie: uint64(o.ID),
1056 PortNo: uint32(o.ID), // NOTE we are using this to map an incoming packetIndication to an ONU
1057 }
1058
1059 if _, err := client.FlowAdd(context.Background(), &downstreamFlow); err != nil {
1060 log.WithFields(log.Fields{
1061 "IntfId": o.PonPortID,
1062 "OnuId": o.ID,
1063 "FlowId": downstreamFlow.FlowId,
1064 "PortNo": downstreamFlow.PortNo,
1065 "SerialNumber": common.OnuSnToString(o.SerialNumber),
Matteo Scandolob0e3e622020-04-23 17:00:29 -07001066 }).Fatalf("Failed to add EAPOL Flow")
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001067 }
1068 log.WithFields(log.Fields{
1069 "IntfId": o.PonPortID,
1070 "OnuId": o.ID,
1071 "FlowId": downstreamFlow.FlowId,
1072 "PortNo": downstreamFlow.PortNo,
1073 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1074 }).Info("Sent EAPOL Flow")
1075}
1076
1077func (o *Onu) sendDhcpFlow(client openolt.OpenoltClient) {
1078 classifierProto := openolt.Classifier{
1079 EthType: uint32(layers.EthernetTypeIPv4),
1080 SrcPort: uint32(68),
1081 DstPort: uint32(67),
1082 }
1083
1084 actionProto := openolt.Action{}
1085
1086 downstreamFlow := openolt.Flow{
1087 AccessIntfId: int32(o.PonPortID),
1088 OnuId: int32(o.ID),
Matteo Scandolo813402b2019-10-23 19:24:52 -07001089 UniId: int32(0), // FIXME do not hardcode this
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001090 FlowId: uint32(o.ID),
1091 FlowType: "downstream",
1092 AllocId: int32(0),
1093 NetworkIntfId: int32(0),
1094 GemportId: int32(1), // FIXME use the same value as CreateGemPortRequest PortID, do not hardcode
1095 Classifier: &classifierProto,
1096 Action: &actionProto,
1097 Priority: int32(100),
1098 Cookie: uint64(o.ID),
1099 PortNo: uint32(o.ID), // NOTE we are using this to map an incoming packetIndication to an ONU
1100 }
1101
1102 if _, err := client.FlowAdd(context.Background(), &downstreamFlow); err != nil {
1103 log.WithFields(log.Fields{
1104 "IntfId": o.PonPortID,
1105 "OnuId": o.ID,
1106 "FlowId": downstreamFlow.FlowId,
1107 "PortNo": downstreamFlow.PortNo,
1108 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1109 }).Fatalf("Failed to send DHCP Flow")
1110 }
1111 log.WithFields(log.Fields{
1112 "IntfId": o.PonPortID,
1113 "OnuId": o.ID,
1114 "FlowId": downstreamFlow.FlowId,
1115 "PortNo": downstreamFlow.PortNo,
1116 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1117 }).Info("Sent DHCP Flow")
1118}
Pragya Arya8bdb4532020-03-02 17:08:09 +05301119
1120// DeleteFlow method search and delete flowKey from the onu flows slice
1121func (onu *Onu) DeleteFlow(key FlowKey) {
1122 for pos, flowKey := range onu.Flows {
1123 if flowKey == key {
1124 // delete the flowKey by shifting all flowKeys by one
1125 onu.Flows = append(onu.Flows[:pos], onu.Flows[pos+1:]...)
1126 t := make([]FlowKey, len(onu.Flows))
1127 copy(t, onu.Flows)
1128 onu.Flows = t
1129 break
1130 }
1131 }
1132}
Hardik Windlass7b3405b2020-07-08 15:10:05 +05301133
1134func (onu *Onu) ReDiscoverOnu() {
1135 // Wait for few seconds to be sure of the cleanup
1136 time.Sleep(5 * time.Second)
1137
1138 onuLogger.WithFields(log.Fields{
1139 "IntfId": onu.PonPortID,
1140 "OnuId": onu.ID,
1141 "OnuSn": onu.Sn(),
1142 }).Debug("Send ONU Re-Discovery")
1143
1144 // ONU Re-Discovery
1145 if err := onu.InternalState.Event("initialize"); err != nil {
1146 log.WithFields(log.Fields{
1147 "IntfId": onu.PonPortID,
1148 "OnuSn": onu.Sn(),
1149 "OnuId": onu.ID,
1150 }).Infof("Failed to transition ONU to initialized state: %s", err.Error())
1151 }
1152
1153 if err := onu.InternalState.Event("discover"); err != nil {
1154 log.WithFields(log.Fields{
1155 "IntfId": onu.PonPortID,
1156 "OnuSn": onu.Sn(),
1157 "OnuId": onu.ID,
1158 }).Infof("Failed to transition ONU to discovered state: %s", err.Error())
1159 }
1160}