blob: 78569f5b435a3d44be23f8c6004cc14ad3a39507 [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"
Shrey Baidf8abccc2020-06-15 19:41:22 +053029 backoff "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
55 PonPort PonPort
56 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 Scandolo99f18462019-10-28 14:14:28 -070074
Matteo Scandolo86e8ce62019-10-11 12:03:10 -070075 OperState *fsm.FSM
76 SerialNumber *openolt.SerialNumber
77
Matteo Scandolo5ff80082019-12-20 13:20:57 -080078 Channel chan Message // this Channel is to track state changes OMCI messages, EAPOL and DHCP packets
79 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 -070080
81 // OMCI params
82 tid uint16
83 hpTid uint16
84 seqNumber uint16
85 HasGemPort bool
86
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
Pragya Arya2225f202020-01-29 18:05:01 +0530101func 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
104 Min: 1 * time.Second,
105 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
224 o.PortNo = 0
225 o.Flows = []FlowKey{}
226
227 // set the OpenState to disabled
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800228 if err := o.OperState.Event("disable"); err != nil {
229 onuLogger.WithFields(log.Fields{
230 "OnuId": o.ID,
231 "IntfId": o.PonPortID,
232 "OnuSn": o.Sn(),
233 }).Errorf("Cannot change ONU OperState to down: %s", err.Error())
234 }
Matteo Scandolo47ef64b2020-04-20 14:16:07 -0700235
236 // send the OnuIndication DOWN event
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700237 msg := Message{
238 Type: OnuIndication,
239 Data: OnuIndicationMessage{
240 OnuSN: o.SerialNumber,
241 PonPortID: o.PonPortID,
242 OperState: DOWN,
243 },
244 }
245 o.Channel <- msg
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100246 // terminate the ONU's ProcessOnuMessages Go routine
247 close(o.Channel)
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700248 },
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800249 "before_start_auth": func(e *fsm.Event) {
250 if o.EapolFlowReceived == false {
251 e.Cancel(errors.New("cannot-go-to-auth-started-as-eapol-flow-is-missing"))
252 return
253 }
254 if o.GemPortAdded == false {
255 e.Cancel(errors.New("cannot-go-to-auth-started-as-gemport-is-missing"))
256 return
257 }
258 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700259 "enter_auth_started": func(e *fsm.Event) {
260 o.logStateChange(e.Src, e.Dst)
261 msg := Message{
262 Type: StartEAPOL,
263 Data: PacketMessage{
264 PonPortID: o.PonPortID,
265 OnuID: o.ID,
266 },
267 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700268 o.Channel <- msg
Matteo Scandolo4747d292019-08-05 11:50:18 -0700269 },
Pragya Arya324337e2020-02-20 14:35:08 +0530270 "enter_eap_response_success_received": func(e *fsm.Event) {
271 publishEvent("ONU-authentication-done", int32(o.PonPortID), int32(o.ID), o.Sn())
272 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700273 "enter_auth_failed": func(e *fsm.Event) {
274 onuLogger.WithFields(log.Fields{
275 "OnuId": o.ID,
276 "IntfId": o.PonPortID,
277 "OnuSn": o.Sn(),
278 }).Errorf("ONU failed to authenticate!")
279 },
Matteo Scandolo99f18462019-10-28 14:14:28 -0700280 "before_start_dhcp": func(e *fsm.Event) {
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800281
282 // we allow transition from eanbled to dhcp_started only if auth was set to false
283 if o.InternalState.Current() == "enabled" && o.Auth {
284 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-authentication-is-required"))
285 return
286 }
287
Matteo Scandolo99f18462019-10-28 14:14:28 -0700288 if o.DhcpFlowReceived == false {
289 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-dhcp-flow-is-missing"))
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800290 return
291 }
292
293 if o.GemPortAdded == false {
294 e.Cancel(errors.New("cannot-go-to-dhcp-started-as-gemport-is-missing"))
295 return
Matteo Scandolo99f18462019-10-28 14:14:28 -0700296 }
297 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700298 "enter_dhcp_started": func(e *fsm.Event) {
299 msg := Message{
300 Type: StartDHCP,
301 Data: PacketMessage{
302 PonPortID: o.PonPortID,
303 OnuID: o.ID,
304 },
305 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700306 o.Channel <- msg
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700307 },
Pragya Arya324337e2020-02-20 14:35:08 +0530308 "enter_dhcp_ack_received": func(e *fsm.Event) {
309 publishEvent("ONU-DHCP-ACK-received", int32(o.PonPortID), int32(o.ID), o.Sn())
310 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700311 "enter_dhcp_failed": func(e *fsm.Event) {
312 onuLogger.WithFields(log.Fields{
313 "OnuId": o.ID,
314 "IntfId": o.PonPortID,
315 "OnuSn": o.Sn(),
316 }).Errorf("ONU failed to DHCP!")
317 },
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700318 "enter_eapol_flow_sent": func(e *fsm.Event) {
319 msg := Message{
320 Type: SendEapolFlow,
321 }
322 o.Channel <- msg
323 },
324 "enter_dhcp_flow_sent": func(e *fsm.Event) {
325 msg := Message{
326 Type: SendDhcpFlow,
327 }
328 o.Channel <- msg
329 },
Arjun E K57a7fcb2020-01-30 06:44:45 +0000330 "igmp_join_start": func(e *fsm.Event) {
331 msg := Message{
332 Type: IGMPMembershipReportV2,
333 }
334 o.Channel <- msg
335 },
336 "igmp_leave": func(e *fsm.Event) {
337 msg := Message{
338 Type: IGMPLeaveGroup}
339 o.Channel <- msg
340 },
Anand S Katti09541352020-01-29 15:54:01 +0530341 "igmp_join_startv3": func(e *fsm.Event) {
342 msg := Message{
343 Type: IGMPMembershipReportV3,
344 }
345 o.Channel <- msg
346 },
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700347 },
348 )
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100349
Matteo Scandolo27428702019-10-11 16:21:16 -0700350 return &o
Matteo Scandolo4747d292019-08-05 11:50:18 -0700351}
352
William Kurkian0418bc82019-11-06 12:16:24 -0500353func (o *Onu) logStateChange(src string, dst string) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700354 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700355 "OnuId": o.ID,
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700356 "IntfId": o.PonPortID,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700357 "OnuSn": o.Sn(),
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700358 }).Debugf("Changing ONU InternalState from %s to %s", src, dst)
359}
360
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100361// ProcessOnuMessages starts indication channel for each ONU
David Bainbridge103cf022019-12-16 20:11:35 +0000362func (o *Onu) ProcessOnuMessages(ctx context.Context, stream openolt.Openolt_EnableIndicationServer, client openolt.OpenoltClient) {
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700363 onuLogger.WithFields(log.Fields{
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100364 "onuID": o.ID,
365 "onuSN": o.Sn(),
366 "ponPort": o.PonPortID,
367 }).Debug("Starting ONU Indication Channel")
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700368
David Bainbridge103cf022019-12-16 20:11:35 +0000369loop:
370 for {
371 select {
372 case <-ctx.Done():
373 onuLogger.WithFields(log.Fields{
374 "onuID": o.ID,
375 "onuSN": o.Sn(),
376 }).Tracef("ONU message handling canceled via context")
377 break loop
378 case message, ok := <-o.Channel:
379 if !ok || ctx.Err() != nil {
380 onuLogger.WithFields(log.Fields{
381 "onuID": o.ID,
382 "onuSN": o.Sn(),
383 }).Tracef("ONU message handling canceled via channel close")
384 break loop
Matteo Scandolo075b1892019-10-07 12:11:07 -0700385 }
David Bainbridge103cf022019-12-16 20:11:35 +0000386 onuLogger.WithFields(log.Fields{
387 "onuID": o.ID,
388 "onuSN": o.Sn(),
389 "messageType": message.Type,
390 }).Tracef("Received message on ONU Channel")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700391
David Bainbridge103cf022019-12-16 20:11:35 +0000392 switch message.Type {
393 case OnuDiscIndication:
394 msg, _ := message.Data.(OnuDiscIndicationMessage)
395 // 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 +0530396 time.Sleep(o.DiscoveryDelay)
David Bainbridge103cf022019-12-16 20:11:35 +0000397 o.sendOnuDiscIndication(msg, stream)
398 case OnuIndication:
399 msg, _ := message.Data.(OnuIndicationMessage)
400 o.sendOnuIndication(msg, stream)
401 case OMCI:
402 msg, _ := message.Data.(OmciMessage)
403 o.handleOmciMessage(msg, stream)
404 case FlowUpdate:
405 msg, _ := message.Data.(OnuFlowUpdateMessage)
406 o.handleFlowUpdate(msg)
407 case StartEAPOL:
Shrey Baidf8abccc2020-06-15 19:41:22 +0530408 o.handleEAPOLStart(stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000409 case StartDHCP:
Shrey Baidf8abccc2020-06-15 19:41:22 +0530410 o.handleDHCPStart(stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000411 case OnuPacketOut:
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700412
David Bainbridge103cf022019-12-16 20:11:35 +0000413 msg, _ := message.Data.(OnuPacketMessage)
414
415 log.WithFields(log.Fields{
416 "IntfId": msg.IntfId,
417 "OnuId": msg.OnuId,
418 "pktType": msg.Type,
419 }).Trace("Received OnuPacketOut Message")
420
421 if msg.Type == packetHandlers.EAPOL {
422 eapol.HandleNextPacket(msg.OnuId, msg.IntfId, o.Sn(), o.PortNo, o.InternalState, msg.Packet, stream, client)
423 } else if msg.Type == packetHandlers.DHCP {
424 // NOTE here we receive packets going from the DHCP Server to the ONU
425 // for now we expect them to be double-tagged, but ideally the should be single tagged
Matteo Scandolo378b8c92020-04-16 14:34:22 -0700426 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 +0000427 }
428 case OnuPacketIn:
429 // NOTE we only receive BBR packets here.
430 // Eapol.HandleNextPacket can handle both BBSim and BBr cases so the call is the same
431 // in the DHCP case VOLTHA only act as a proxy, the behaviour is completely different thus we have a dhcp.HandleNextBbrPacket
432 msg, _ := message.Data.(OnuPacketMessage)
433
434 log.WithFields(log.Fields{
435 "IntfId": msg.IntfId,
436 "OnuId": msg.OnuId,
437 "pktType": msg.Type,
438 }).Trace("Received OnuPacketIn Message")
439
440 if msg.Type == packetHandlers.EAPOL {
441 eapol.HandleNextPacket(msg.OnuId, msg.IntfId, o.Sn(), o.PortNo, o.InternalState, msg.Packet, stream, client)
442 } else if msg.Type == packetHandlers.DHCP {
443 dhcp.HandleNextBbrPacket(o.ID, o.PonPortID, o.Sn(), o.STag, o.HwAddress, o.DoneChannel, msg.Packet, client)
444 }
David Bainbridge103cf022019-12-16 20:11:35 +0000445 case OmciIndication:
446 msg, _ := message.Data.(OmciIndicationMessage)
447 o.handleOmci(msg, client)
448 case SendEapolFlow:
449 o.sendEapolFlow(client)
450 case SendDhcpFlow:
451 o.sendDhcpFlow(client)
Arjun E K57a7fcb2020-01-30 06:44:45 +0000452 case IGMPMembershipReportV2:
453 log.Infof("Recieved IGMPMembershipReportV2 message on ONU channel")
454 igmp.SendIGMPMembershipReportV2(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
455 case IGMPLeaveGroup:
456 log.Infof("Recieved IGMPLeaveGroupV2 message on ONU channel")
457 igmp.SendIGMPLeaveGroupV2(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
Anand S Katti09541352020-01-29 15:54:01 +0530458 case IGMPMembershipReportV3:
459 log.Infof("Recieved IGMPMembershipReportV3 message on ONU channel")
460 igmp.SendIGMPMembershipReportV3(o.PonPortID, o.ID, o.Sn(), o.PortNo, o.HwAddress, stream)
David Bainbridge103cf022019-12-16 20:11:35 +0000461 default:
462 onuLogger.Warnf("Received unknown message data %v for type %v in OLT Channel", message.Data, message.Type)
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700463 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700464 }
465 }
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100466 onuLogger.WithFields(log.Fields{
467 "onuID": o.ID,
468 "onuSN": o.Sn(),
469 }).Debug("Stopped handling ONU Indication Channel")
Matteo Scandolo4747d292019-08-05 11:50:18 -0700470}
471
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800472func (o *Onu) processOmciMessage(message omcisim.OmciChMessage, stream openolt.Openolt_EnableIndicationServer) {
William Kurkian9dadc5b2019-10-22 13:51:57 -0400473 switch message.Type {
Matteo Scandolodf3f85d2020-01-15 12:50:48 -0800474 case omcisim.UniLinkUp, omcisim.UniLinkDown:
475 onuLogger.WithFields(log.Fields{
476 "OnuId": message.Data.OnuId,
477 "IntfId": message.Data.IntfId,
478 "Type": message.Type,
479 }).Infof("UNI Link Alarm")
480 // TODO send to OLT
481
482 omciInd := openolt.OmciIndication{
483 IntfId: message.Data.IntfId,
484 OnuId: message.Data.OnuId,
485 Pkt: message.Packet,
486 }
487
488 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
489 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
490 onuLogger.WithFields(log.Fields{
491 "IntfId": o.PonPortID,
492 "SerialNumber": o.Sn(),
493 "Type": message.Type,
494 "omciPacket": omciInd.Pkt,
495 }).Errorf("Failed to send UNI Link Alarm: %v", err)
496 return
497 }
498
499 onuLogger.WithFields(log.Fields{
500 "IntfId": o.PonPortID,
501 "SerialNumber": o.Sn(),
502 "Type": message.Type,
503 "omciPacket": omciInd.Pkt,
504 }).Info("UNI Link alarm sent")
505
William Kurkian9dadc5b2019-10-22 13:51:57 -0400506 case omcisim.GemPortAdded:
507 log.WithFields(log.Fields{
508 "OnuId": message.Data.OnuId,
509 "IntfId": message.Data.IntfId,
Matteo Scandolod74abba2020-04-16 16:36:44 -0700510 "OnuSn": o.Sn(),
William Kurkian9dadc5b2019-10-22 13:51:57 -0400511 }).Infof("GemPort Added")
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700512
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800513 o.GemPortAdded = true
514
515 // broadcast the change to all listeners
516 // and close the channels as once the GemPort is set
517 // it won't change anymore
518 for _, ch := range o.GemPortChannels {
519 ch <- true
520 close(ch)
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700521 }
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800522 o.GemPortChannels = []chan bool{}
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700523 }
524}
525
Shrey Baidf8abccc2020-06-15 19:41:22 +0530526func (o *Onu) handleEAPOLStart(stream openolt.Openolt_EnableIndicationServer) {
527 log.Infof("Receive StartEAPOL message on ONU Channel")
528 eapol.SendEapStart(o.ID, o.PonPortID, o.Sn(), o.PortNo, o.HwAddress, o.InternalState, stream)
529 go func(delay time.Duration) {
530 time.Sleep(delay)
531 if (o.InternalState.Current() == "eap_start_sent" ||
532 o.InternalState.Current() == "eap_response_identity_sent" ||
533 o.InternalState.Current() == "eap_response_challenge_sent" ||
534 o.InternalState.Current() == "auth_failed") && common.Options.BBSim.AuthRetry {
535 o.InternalState.Event("start_auth")
536 } else if o.InternalState.Current() == "eap_response_success_received" {
537 o.Backoff.Reset()
538 }
539 }(o.Backoff.Duration())
540}
541
542func (o *Onu) handleDHCPStart(stream openolt.Openolt_EnableIndicationServer) {
543 log.Infof("Receive StartDHCP message on ONU Channel")
544 // FIXME use id, ponId as SendEapStart
545 dhcp.SendDHCPDiscovery(o.PonPort.Olt.ID, o.PonPortID, o.ID, o.Sn(), o.PortNo, o.InternalState, o.HwAddress, o.CTag, stream)
546 go func(delay time.Duration) {
547 time.Sleep(delay)
548 if (o.InternalState.Current() == "dhcp_discovery_sent" ||
549 o.InternalState.Current() == "dhcp_request_sent" ||
550 o.InternalState.Current() == "dhcp_failed") && common.Options.BBSim.DhcpRetry {
551 o.InternalState.Event("start_dhcp")
552 } else if o.InternalState.Current() == "dhcp_ack_received" {
553 o.Backoff.Reset()
554 }
555 }(o.Backoff.Duration())
556}
557
Zdravko Bozakov681364d2019-11-10 14:28:46 +0100558func (o Onu) NewSN(oltid int, intfid uint32, onuid uint32) *openolt.SerialNumber {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700559
560 sn := new(openolt.SerialNumber)
561
Matteo Scandolo47e69bb2019-08-28 15:41:12 -0700562 //sn = new(openolt.SerialNumber)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700563 sn.VendorId = []byte("BBSM")
564 sn.VendorSpecific = []byte{0, byte(oltid % 256), byte(intfid), byte(onuid)}
565
566 return sn
567}
568
William Kurkian0418bc82019-11-06 12:16:24 -0500569func (o *Onu) sendOnuDiscIndication(msg OnuDiscIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700570 discoverData := &openolt.Indication_OnuDiscInd{OnuDiscInd: &openolt.OnuDiscIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700571 IntfId: msg.Onu.PonPortID,
Matteo Scandolo4747d292019-08-05 11:50:18 -0700572 SerialNumber: msg.Onu.SerialNumber,
573 }}
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700574
Matteo Scandolo4747d292019-08-05 11:50:18 -0700575 if err := stream.Send(&openolt.Indication{Data: discoverData}); err != nil {
Matteo Scandolo11006992019-08-28 11:29:46 -0700576 log.Errorf("Failed to send Indication_OnuDiscInd: %v", err)
Matteo Scandolo99f18462019-10-28 14:14:28 -0700577 return
Matteo Scandolo4747d292019-08-05 11:50:18 -0700578 }
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700579
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700580 onuLogger.WithFields(log.Fields{
Matteo Scandolo4747d292019-08-05 11:50:18 -0700581 "IntfId": msg.Onu.PonPortID,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700582 "OnuSn": msg.Onu.Sn(),
583 "OnuId": o.ID,
Matteo Scandolo4747d292019-08-05 11:50:18 -0700584 }).Debug("Sent Indication_OnuDiscInd")
Pragya Arya324337e2020-02-20 14:35:08 +0530585 publishEvent("ONU-discovery-indication-sent", int32(msg.Onu.PonPortID), int32(o.ID), msg.Onu.Sn())
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800586
587 // after DiscoveryRetryDelay check if the state is the same and in case send a new OnuDiscIndication
588 go func(delay time.Duration) {
Matteo Scandolo569e7172019-12-20 11:51:51 -0800589 time.Sleep(delay)
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800590 if o.InternalState.Current() == "discovered" {
Matteo Scandoloe811ae92019-12-10 17:50:14 -0800591 o.sendOnuDiscIndication(msg, stream)
592 }
593 }(o.DiscoveryRetryDelay)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700594}
595
William Kurkian0418bc82019-11-06 12:16:24 -0500596func (o *Onu) sendOnuIndication(msg OnuIndicationMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandolo4747d292019-08-05 11:50:18 -0700597 // NOTE voltha returns an ID, but if we use that ID then it complains:
598 // expected_onu_id: 1, received_onu_id: 1024, event: ONU-id-mismatch, can happen if both voltha and the olt rebooted
599 // so we're using the internal ID that is 1
600 // o.ID = msg.OnuID
Matteo Scandolo4747d292019-08-05 11:50:18 -0700601
602 indData := &openolt.Indication_OnuInd{OnuInd: &openolt.OnuIndication{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700603 IntfId: o.PonPortID,
604 OnuId: o.ID,
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700605 OperState: msg.OperState.String(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700606 AdminState: o.OperState.Current(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700607 SerialNumber: o.SerialNumber,
608 }}
609 if err := stream.Send(&openolt.Indication{Data: indData}); err != nil {
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800610 // NOTE do we need to transition to a broken state?
Matteo Scandolo11006992019-08-28 11:29:46 -0700611 log.Errorf("Failed to send Indication_OnuInd: %v", err)
Matteo Scandolo4747d292019-08-05 11:50:18 -0700612 }
Matteo Scandolo9a3518c2019-08-13 14:36:01 -0700613 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700614 "IntfId": o.PonPortID,
615 "OnuId": o.ID,
616 "OperState": msg.OperState.String(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700617 "AdminState": msg.OperState.String(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700618 "OnuSn": o.Sn(),
Matteo Scandolo4747d292019-08-05 11:50:18 -0700619 }).Debug("Sent Indication_OnuInd")
Matteo Scandolo10f965c2019-09-24 10:40:46 -0700620
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700621}
622
Pragya Arya324337e2020-02-20 14:35:08 +0530623func (o *Onu) publishOmciEvent(msg OmciMessage) {
624 if olt.PublishEvents {
625 _, _, msgType, _, _, _, err := omcisim.ParsePkt(HexDecode(msg.omciMsg.Pkt))
626 if err != nil {
627 log.Errorf("error in getting msgType %v", err)
628 return
629 }
630 if msgType == omcisim.MibUpload {
631 o.seqNumber = 0
632 publishEvent("MIB-upload-received", int32(o.PonPortID), int32(o.ID), common.OnuSnToString(o.SerialNumber))
633 } else if msgType == omcisim.MibUploadNext {
634 o.seqNumber++
635 if o.seqNumber > 290 {
636 publishEvent("MIB-upload-done", int32(o.PonPortID), int32(o.ID), common.OnuSnToString(o.SerialNumber))
637 }
638 }
639 }
640}
641
Scott Bakerb90c4312020-03-12 21:33:25 -0700642// Create a TestResponse packet and send it
643func (o *Onu) sendTestResult(msg OmciMessage, stream openolt.Openolt_EnableIndicationServer) error {
644 resp, err := omcilib.BuildTestResult(HexDecode(msg.omciMsg.Pkt))
645 if err != nil {
646 return err
647 }
648
649 var omciInd openolt.OmciIndication
650 omciInd.IntfId = o.PonPortID
651 omciInd.OnuId = o.ID
652 omciInd.Pkt = resp
653
654 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
655 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
656 onuLogger.WithFields(log.Fields{
657 "IntfId": o.PonPortID,
658 "SerialNumber": o.Sn(),
659 "omciPacket": omciInd.Pkt,
660 "msg": msg,
661 }).Errorf("send TestResult omcisim indication failed: %v", err)
662 return err
663 }
664 onuLogger.WithFields(log.Fields{
665 "IntfId": o.PonPortID,
666 "SerialNumber": o.Sn(),
667 "omciPacket": omciInd.Pkt,
668 }).Tracef("Sent TestResult OMCI message")
669
670 return nil
671}
672
William Kurkian0418bc82019-11-06 12:16:24 -0500673func (o *Onu) handleOmciMessage(msg OmciMessage, stream openolt.Openolt_EnableIndicationServer) {
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700674
675 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700676 "IntfId": o.PonPortID,
Matteo Scandolo27428702019-10-11 16:21:16 -0700677 "SerialNumber": o.Sn(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700678 "omciPacket": msg.omciMsg.Pkt,
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700679 }).Tracef("Received OMCI message")
680
Pragya Arya324337e2020-02-20 14:35:08 +0530681 o.publishOmciEvent(msg)
682
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700683 var omciInd openolt.OmciIndication
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700684 respPkt, err := omcisim.OmciSim(o.PonPortID, o.ID, HexDecode(msg.omciMsg.Pkt))
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700685 if err != nil {
Matteo Scandolo27428702019-10-11 16:21:16 -0700686 onuLogger.WithFields(log.Fields{
687 "IntfId": o.PonPortID,
688 "SerialNumber": o.Sn(),
689 "omciPacket": omciInd.Pkt,
690 "msg": msg,
691 }).Errorf("Error handling OMCI message %v", msg)
692 return
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700693 }
694
695 omciInd.IntfId = o.PonPortID
696 omciInd.OnuId = o.ID
697 omciInd.Pkt = respPkt
698
699 omci := &openolt.Indication_OmciInd{OmciInd: &omciInd}
700 if err := stream.Send(&openolt.Indication{Data: omci}); err != nil {
Matteo Scandolo27428702019-10-11 16:21:16 -0700701 onuLogger.WithFields(log.Fields{
702 "IntfId": o.PonPortID,
703 "SerialNumber": o.Sn(),
704 "omciPacket": omciInd.Pkt,
705 "msg": msg,
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700706 }).Errorf("send omcisim indication failed: %v", err)
Matteo Scandolo27428702019-10-11 16:21:16 -0700707 return
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700708 }
709 onuLogger.WithFields(log.Fields{
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700710 "IntfId": o.PonPortID,
Matteo Scandolo27428702019-10-11 16:21:16 -0700711 "SerialNumber": o.Sn(),
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700712 "omciPacket": omciInd.Pkt,
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700713 }).Tracef("Sent OMCI message")
Scott Bakerb90c4312020-03-12 21:33:25 -0700714
715 // Test message is special, it requires sending two packets:
716 // first packet: TestResponse, says whether test was started successully, handled by omci-sim
717 // second packet, TestResult, reports the result of running the self-test
718 // TestResult can come some time after a TestResponse
719 // TODO: Implement some delay between the TestResponse and the TestResult
720 isTest, err := omcilib.IsTestRequest(HexDecode(msg.omciMsg.Pkt))
721 if (err == nil) && (isTest) {
722 o.sendTestResult(msg, stream)
723 }
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700724}
725
Matteo Scandolo27428702019-10-11 16:21:16 -0700726func (o *Onu) storePortNumber(portNo uint32) {
Matteo Scandolo813402b2019-10-23 19:24:52 -0700727 // NOTE this needed only as long as we don't support multiple UNIs
Matteo Scandolo27428702019-10-11 16:21:16 -0700728 // we need to add support for multiple UNIs
729 // the action plan is:
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700730 // - refactor the omcisim-sim library to use https://github.com/cboling/omci instead of canned messages
Matteo Scandolo27428702019-10-11 16:21:16 -0700731 // - change the library so that it reports a single UNI and remove this workaroung
732 // - add support for multiple UNIs in BBSim
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700733 if o.PortNo == 0 || portNo < o.PortNo {
Matteo Scandolo813402b2019-10-23 19:24:52 -0700734 onuLogger.WithFields(log.Fields{
735 "IntfId": o.PonPortID,
736 "OnuId": o.ID,
737 "SerialNumber": o.Sn(),
738 "OnuPortNo": o.PortNo,
739 "FlowPortNo": portNo,
740 }).Debug("Storing ONU portNo")
Matteo Scandolo27428702019-10-11 16:21:16 -0700741 o.PortNo = portNo
742 }
743}
744
William Kurkian0418bc82019-11-06 12:16:24 -0500745func (o *Onu) SetID(id uint32) {
Matteo Scandolo583f17d2020-02-13 10:35:17 -0800746 onuLogger.WithFields(log.Fields{
747 "IntfId": o.PonPortID,
748 "OnuId": id,
749 "SerialNumber": o.Sn(),
750 }).Debug("Storing OnuId ")
William Kurkian0418bc82019-11-06 12:16:24 -0500751 o.ID = id
752}
753
Matteo Scandolo813402b2019-10-23 19:24:52 -0700754func (o *Onu) handleFlowUpdate(msg OnuFlowUpdateMessage) {
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700755 onuLogger.WithFields(log.Fields{
Matteo Scandolod7cc6d32020-02-26 16:51:12 -0800756 "DstPort": msg.Flow.Classifier.DstPort,
757 "EthType": fmt.Sprintf("%x", msg.Flow.Classifier.EthType),
758 "FlowId": msg.Flow.FlowId,
759 "FlowType": msg.Flow.FlowType,
760 "GemportId": msg.Flow.GemportId,
761 "InnerVlan": msg.Flow.Classifier.IVid,
762 "IntfId": msg.Flow.AccessIntfId,
763 "IpProto": msg.Flow.Classifier.IpProto,
764 "OnuId": msg.Flow.OnuId,
765 "OnuSn": o.Sn(),
766 "OuterVlan": msg.Flow.Classifier.OVid,
767 "PortNo": msg.Flow.PortNo,
768 "SrcPort": msg.Flow.Classifier.SrcPort,
769 "UniID": msg.Flow.UniId,
Matteo Scandolo3ac52792020-03-05 14:21:08 -0800770 "ClassifierOPbits": msg.Flow.Classifier.OPbits,
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700771 }).Debug("ONU receives Flow")
772
Matteo Scandolo813402b2019-10-23 19:24:52 -0700773 if msg.Flow.UniId != 0 {
774 // as of now BBSim only support a single UNI, so ignore everything that is not targeted to it
775 onuLogger.WithFields(log.Fields{
776 "IntfId": o.PonPortID,
777 "OnuId": o.ID,
778 "SerialNumber": o.Sn(),
779 }).Debug("Ignoring flow as it's not for the first UNI")
780 return
781 }
782
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700783 if msg.Flow.Classifier.EthType == uint32(layers.EthernetTypeEAPOL) && msg.Flow.Classifier.OVid == 4091 {
Matteo Scandolo27428702019-10-11 16:21:16 -0700784 // NOTE storing the PortNO, it's needed when sending PacketIndications
Matteo Scandolo813402b2019-10-23 19:24:52 -0700785 o.storePortNumber(uint32(msg.Flow.PortNo))
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800786 o.EapolFlowReceived = true
787 // if authentication is not enabled, do nothing
788 if o.Auth {
789 // NOTE if we receive the EAPOL flows but we don't have GemPorts
790 // wait for it before starting auth
791 if !o.GemPortAdded {
792 // wait for Gem and then start auth
793 go func() {
794 for v := range o.GetGemPortChan() {
795 if v == true {
796 if err := o.InternalState.Event("start_auth"); err != nil {
797 onuLogger.Warnf("Can't go to auth_started: %v", err)
798 }
799 }
800 }
801 onuLogger.Trace("GemPortChannel closed")
802 }()
Matteo Scandoloc1147092019-10-29 09:38:33 -0700803 } else {
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800804 // start the EAPOL state machine
805 if err := o.InternalState.Event("start_auth"); err != nil {
806 onuLogger.Warnf("Can't go to auth_started: %v", err)
807 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700808 }
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800809 } else {
810 onuLogger.WithFields(log.Fields{
811 "IntfId": o.PonPortID,
812 "OnuId": o.ID,
813 "SerialNumber": o.Sn(),
814 }).Warn("Not starting authentication as Auth bit is not set in CLI parameters")
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700815 }
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700816 } else if msg.Flow.Classifier.EthType == uint32(layers.EthernetTypeIPv4) &&
817 msg.Flow.Classifier.SrcPort == uint32(68) &&
Matteo Scandolo3ac52792020-03-05 14:21:08 -0800818 msg.Flow.Classifier.DstPort == uint32(67) &&
Matteo Scandolod74abba2020-04-16 16:36:44 -0700819 (msg.Flow.Classifier.OPbits == 0 || msg.Flow.Classifier.OPbits == 255) {
Matteo Scandolo99f18462019-10-28 14:14:28 -0700820
Matteo Scandoloc1147092019-10-29 09:38:33 -0700821 if o.Dhcp == true {
Matteo Scandolod74abba2020-04-16 16:36:44 -0700822 if o.DhcpFlowReceived == false {
823 // keep track that we received the DHCP Flows
824 // so that we can transition the state to dhcp_started
825 // this is needed as a check in case someone trigger DHCP from the CLI
826 o.DhcpFlowReceived = true
827
Matteo Scandolo5ff80082019-12-20 13:20:57 -0800828 if !o.GemPortAdded {
829 // wait for Gem and then start DHCP
830 go func() {
831 for v := range o.GetGemPortChan() {
832 if v == true {
833 if err := o.InternalState.Event("start_dhcp"); err != nil {
834 log.Errorf("Can't go to dhcp_started: %v", err)
835 }
836 }
837 }
838 }()
839 } else {
840 // start the DHCP state machine
841 if err := o.InternalState.Event("start_dhcp"); err != nil {
842 log.Errorf("Can't go to dhcp_started: %v", err)
843 }
Matteo Scandolod74abba2020-04-16 16:36:44 -0700844 }
845 } else {
846 onuLogger.WithFields(log.Fields{
847 "IntfId": o.PonPortID,
848 "OnuId": o.ID,
849 "SerialNumber": o.Sn(),
850 "DhcpFlowReceived": o.DhcpFlowReceived,
851 }).Warn("DHCP already started")
Matteo Scandoloc1147092019-10-29 09:38:33 -0700852 }
853 } else {
854 onuLogger.WithFields(log.Fields{
855 "IntfId": o.PonPortID,
856 "OnuId": o.ID,
857 "SerialNumber": o.Sn(),
858 }).Warn("Not starting DHCP as Dhcp bit is not set in CLI parameters")
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700859 }
Matteo Scandolo3bc73742019-08-20 14:04:04 -0700860 }
861}
862
Matteo Scandoloc559ef12019-08-20 13:24:21 -0700863// HexDecode converts the hex encoding to binary
864func HexDecode(pkt []byte) []byte {
865 p := make([]byte, len(pkt)/2)
866 for i, j := 0, 0; i < len(pkt); i, j = i+2, j+1 {
867 // Go figure this ;)
868 u := (pkt[i] & 15) + (pkt[i]>>6)*9
869 l := (pkt[i+1] & 15) + (pkt[i+1]>>6)*9
870 p[j] = u<<4 + l
871 }
872 onuLogger.Tracef("Omci decoded: %x.", p)
873 return p
Matteo Scandolo4b3fc7e2019-09-17 16:49:54 -0700874}
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700875
876// BBR methods
877
878func sendOmciMsg(pktBytes []byte, intfId uint32, onuId uint32, sn *openolt.SerialNumber, msgType string, client openolt.OpenoltClient) {
879 omciMsg := openolt.OmciMsg{
880 IntfId: intfId,
881 OnuId: onuId,
882 Pkt: pktBytes,
883 }
884
885 if _, err := client.OmciMsgOut(context.Background(), &omciMsg); err != nil {
886 log.WithFields(log.Fields{
887 "IntfId": intfId,
888 "OnuId": onuId,
889 "SerialNumber": common.OnuSnToString(sn),
890 "Pkt": omciMsg.Pkt,
891 }).Fatalf("Failed to send MIB Reset")
892 }
893 log.WithFields(log.Fields{
894 "IntfId": intfId,
895 "OnuId": onuId,
896 "SerialNumber": common.OnuSnToString(sn),
897 "Pkt": omciMsg.Pkt,
898 }).Tracef("Sent OMCI message %s", msgType)
899}
900
901func (onu *Onu) getNextTid(highPriority ...bool) uint16 {
902 var next uint16
903 if len(highPriority) > 0 && highPriority[0] {
904 next = onu.hpTid
905 onu.hpTid += 1
906 if onu.hpTid < 0x8000 {
907 onu.hpTid = 0x8000
908 }
909 } else {
910 next = onu.tid
911 onu.tid += 1
912 if onu.tid >= 0x8000 {
913 onu.tid = 1
914 }
915 }
916 return next
917}
918
919// TODO move this method in responders/omcisim
920func (o *Onu) StartOmci(client openolt.OpenoltClient) {
921 mibReset, _ := omcilib.CreateMibResetRequest(o.getNextTid(false))
922 sendOmciMsg(mibReset, o.PonPortID, o.ID, o.SerialNumber, "mibReset", client)
923}
924
925func (o *Onu) handleOmci(msg OmciIndicationMessage, client openolt.OpenoltClient) {
926 msgType, packet := omcilib.DecodeOmci(msg.OmciInd.Pkt)
927
928 log.WithFields(log.Fields{
929 "IntfId": msg.OmciInd.IntfId,
930 "OnuId": msg.OmciInd.OnuId,
931 "OnuSn": common.OnuSnToString(o.SerialNumber),
932 "Pkt": msg.OmciInd.Pkt,
933 "msgType": msgType,
Anand S Katti09541352020-01-29 15:54:01 +0530934 }).Trace("ONU Receives OMCI Msg")
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700935 switch msgType {
936 default:
Matteo Scandolo813402b2019-10-23 19:24:52 -0700937 log.WithFields(log.Fields{
938 "IntfId": msg.OmciInd.IntfId,
939 "OnuId": msg.OmciInd.OnuId,
940 "OnuSn": common.OnuSnToString(o.SerialNumber),
941 "Pkt": msg.OmciInd.Pkt,
942 "msgType": msgType,
943 }).Fatalf("unexpected frame: %v", packet)
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700944 case omci.MibResetResponseType:
945 mibUpload, _ := omcilib.CreateMibUploadRequest(o.getNextTid(false))
946 sendOmciMsg(mibUpload, o.PonPortID, o.ID, o.SerialNumber, "mibUpload", client)
947 case omci.MibUploadResponseType:
948 mibUploadNext, _ := omcilib.CreateMibUploadNextRequest(o.getNextTid(false), o.seqNumber)
949 sendOmciMsg(mibUploadNext, o.PonPortID, o.ID, o.SerialNumber, "mibUploadNext", client)
950 case omci.MibUploadNextResponseType:
951 o.seqNumber++
952
953 if o.seqNumber > 290 {
954 // NOTE we are done with the MIB Upload (290 is the number of messages the omci-sim library will respond to)
955 galEnet, _ := omcilib.CreateGalEnetRequest(o.getNextTid(false))
956 sendOmciMsg(galEnet, o.PonPortID, o.ID, o.SerialNumber, "CreateGalEnetRequest", client)
957 } else {
958 mibUploadNext, _ := omcilib.CreateMibUploadNextRequest(o.getNextTid(false), o.seqNumber)
959 sendOmciMsg(mibUploadNext, o.PonPortID, o.ID, o.SerialNumber, "mibUploadNext", client)
960 }
961 case omci.CreateResponseType:
962 // NOTE Creating a GemPort,
963 // BBsim actually doesn't care about the values, so we can do we want with the parameters
964 // In the same way we can create a GemPort even without setting up UNIs/TConts/...
965 // but we need the GemPort to trigger the state change
966
967 if !o.HasGemPort {
968 // NOTE this sends a CreateRequestType and BBSim replies with a CreateResponseType
969 // thus we send this request only once
970 gemReq, _ := omcilib.CreateGemPortRequest(o.getNextTid(false))
971 sendOmciMsg(gemReq, o.PonPortID, o.ID, o.SerialNumber, "CreateGemPortRequest", client)
972 o.HasGemPort = true
973 } else {
974 if err := o.InternalState.Event("send_eapol_flow"); err != nil {
975 onuLogger.WithFields(log.Fields{
976 "OnuId": o.ID,
977 "IntfId": o.PonPortID,
978 "OnuSn": o.Sn(),
979 }).Errorf("Error while transitioning ONU State %v", err)
980 }
981 }
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700982 }
983}
984
985func (o *Onu) sendEapolFlow(client openolt.OpenoltClient) {
986
987 classifierProto := openolt.Classifier{
988 EthType: uint32(layers.EthernetTypeEAPOL),
989 OVid: 4091,
990 }
991
992 actionProto := openolt.Action{}
993
994 downstreamFlow := openolt.Flow{
995 AccessIntfId: int32(o.PonPortID),
996 OnuId: int32(o.ID),
Matteo Scandolo813402b2019-10-23 19:24:52 -0700997 UniId: int32(0), // NOTE do not hardcode this, we need to support multiple UNIs
Matteo Scandolo40e067f2019-10-16 16:59:41 -0700998 FlowId: uint32(o.ID),
999 FlowType: "downstream",
1000 AllocId: int32(0),
1001 NetworkIntfId: int32(0),
1002 GemportId: int32(1), // FIXME use the same value as CreateGemPortRequest PortID, do not hardcode
1003 Classifier: &classifierProto,
1004 Action: &actionProto,
1005 Priority: int32(100),
1006 Cookie: uint64(o.ID),
1007 PortNo: uint32(o.ID), // NOTE we are using this to map an incoming packetIndication to an ONU
1008 }
1009
1010 if _, err := client.FlowAdd(context.Background(), &downstreamFlow); err != nil {
1011 log.WithFields(log.Fields{
1012 "IntfId": o.PonPortID,
1013 "OnuId": o.ID,
1014 "FlowId": downstreamFlow.FlowId,
1015 "PortNo": downstreamFlow.PortNo,
1016 "SerialNumber": common.OnuSnToString(o.SerialNumber),
Matteo Scandolob0e3e622020-04-23 17:00:29 -07001017 }).Fatalf("Failed to add EAPOL Flow")
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001018 }
1019 log.WithFields(log.Fields{
1020 "IntfId": o.PonPortID,
1021 "OnuId": o.ID,
1022 "FlowId": downstreamFlow.FlowId,
1023 "PortNo": downstreamFlow.PortNo,
1024 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1025 }).Info("Sent EAPOL Flow")
1026}
1027
1028func (o *Onu) sendDhcpFlow(client openolt.OpenoltClient) {
1029 classifierProto := openolt.Classifier{
1030 EthType: uint32(layers.EthernetTypeIPv4),
1031 SrcPort: uint32(68),
1032 DstPort: uint32(67),
1033 }
1034
1035 actionProto := openolt.Action{}
1036
1037 downstreamFlow := openolt.Flow{
1038 AccessIntfId: int32(o.PonPortID),
1039 OnuId: int32(o.ID),
Matteo Scandolo813402b2019-10-23 19:24:52 -07001040 UniId: int32(0), // FIXME do not hardcode this
Matteo Scandolo40e067f2019-10-16 16:59:41 -07001041 FlowId: uint32(o.ID),
1042 FlowType: "downstream",
1043 AllocId: int32(0),
1044 NetworkIntfId: int32(0),
1045 GemportId: int32(1), // FIXME use the same value as CreateGemPortRequest PortID, do not hardcode
1046 Classifier: &classifierProto,
1047 Action: &actionProto,
1048 Priority: int32(100),
1049 Cookie: uint64(o.ID),
1050 PortNo: uint32(o.ID), // NOTE we are using this to map an incoming packetIndication to an ONU
1051 }
1052
1053 if _, err := client.FlowAdd(context.Background(), &downstreamFlow); err != nil {
1054 log.WithFields(log.Fields{
1055 "IntfId": o.PonPortID,
1056 "OnuId": o.ID,
1057 "FlowId": downstreamFlow.FlowId,
1058 "PortNo": downstreamFlow.PortNo,
1059 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1060 }).Fatalf("Failed to send DHCP Flow")
1061 }
1062 log.WithFields(log.Fields{
1063 "IntfId": o.PonPortID,
1064 "OnuId": o.ID,
1065 "FlowId": downstreamFlow.FlowId,
1066 "PortNo": downstreamFlow.PortNo,
1067 "SerialNumber": common.OnuSnToString(o.SerialNumber),
1068 }).Info("Sent DHCP Flow")
1069}
Pragya Arya8bdb4532020-03-02 17:08:09 +05301070
1071// DeleteFlow method search and delete flowKey from the onu flows slice
1072func (onu *Onu) DeleteFlow(key FlowKey) {
1073 for pos, flowKey := range onu.Flows {
1074 if flowKey == key {
1075 // delete the flowKey by shifting all flowKeys by one
1076 onu.Flows = append(onu.Flows[:pos], onu.Flows[pos+1:]...)
1077 t := make([]FlowKey, len(onu.Flows))
1078 copy(t, onu.Flows)
1079 onu.Flows = t
1080 break
1081 }
1082 }
1083}