Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2022-present Open Networking Foundation |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | |
| 16 | package application |
| 17 | |
| 18 | import ( |
| 19 | "context" |
| 20 | "encoding/hex" |
| 21 | "encoding/json" |
| 22 | "errors" |
| 23 | "fmt" |
| 24 | "net" |
| 25 | "strconv" |
| 26 | "strings" |
| 27 | "sync" |
| 28 | "time" |
| 29 | |
| 30 | "github.com/google/gopacket" |
| 31 | "github.com/google/gopacket/layers" |
| 32 | |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 33 | "voltha-go-controller/database" |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 34 | "voltha-go-controller/internal/pkg/controller" |
| 35 | cntlr "voltha-go-controller/internal/pkg/controller" |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 36 | errorCodes "voltha-go-controller/internal/pkg/errorcodes" |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 37 | "voltha-go-controller/internal/pkg/intf" |
| 38 | "voltha-go-controller/internal/pkg/of" |
| 39 | "voltha-go-controller/internal/pkg/tasks" |
Akash Soni | 6f36945 | 2023-09-19 11:18:28 +0530 | [diff] [blame] | 40 | common "voltha-go-controller/internal/pkg/types" |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 41 | "voltha-go-controller/internal/pkg/util" |
Tinoj Joseph | 1d10832 | 2022-07-13 10:07:39 +0530 | [diff] [blame] | 42 | "voltha-go-controller/log" |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 43 | ) |
| 44 | |
| 45 | var logger log.CLogger |
| 46 | var ctx = context.TODO() |
| 47 | |
| 48 | func init() { |
| 49 | // Setup this package so that it's log level can be modified at run time |
| 50 | var err error |
Tinoj Joseph | 1d10832 | 2022-07-13 10:07:39 +0530 | [diff] [blame] | 51 | logger, err = log.AddPackageWithDefaultParam() |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 52 | if err != nil { |
| 53 | panic(err) |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | const ( |
| 58 | // TODO - Need to identify a right place for this |
| 59 | |
| 60 | // PriorityNone constant. |
| 61 | PriorityNone uint8 = 8 |
| 62 | // AnyVlan constant. |
| 63 | AnyVlan uint16 = 0xFFFF |
| 64 | ) |
| 65 | |
| 66 | // List of Mac Learning Type |
| 67 | const ( |
Tinoj Joseph | 1d10832 | 2022-07-13 10:07:39 +0530 | [diff] [blame] | 68 | MacLearningNone MacLearningType = iota |
| 69 | Learn |
| 70 | ReLearn |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 71 | ) |
| 72 | |
| 73 | // MacLearningType represents Mac Learning Type |
| 74 | type MacLearningType int |
| 75 | |
| 76 | var ( |
| 77 | tickCount uint16 |
| 78 | vgcRebooted bool |
| 79 | isUpgradeComplete bool |
| 80 | ) |
| 81 | |
| 82 | var db database.DBIntf |
| 83 | |
| 84 | // PacketHandlers : packet handler for different protocols |
| 85 | var PacketHandlers map[string]CallBack |
| 86 | |
| 87 | // CallBack : registered call back function for different protocol packets |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 88 | type CallBack func(cntx context.Context, device string, port string, pkt gopacket.Packet) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 89 | |
| 90 | const ( |
| 91 | // ARP packet |
| 92 | ARP string = "ARP" |
| 93 | // DHCPv4 packet |
| 94 | DHCPv4 string = "DHCPv4" |
| 95 | // DHCPv6 packet |
| 96 | DHCPv6 string = "DHCPv6" |
| 97 | // IGMP packet |
| 98 | IGMP string = "IGMP" |
| 99 | // PPPOE packet |
| 100 | PPPOE string = "PPPOE" |
| 101 | // US packet side |
| 102 | US string = "US" |
| 103 | // DS packet side |
| 104 | DS string = "DS" |
| 105 | // NNI port name |
| 106 | NNI string = "nni" |
| 107 | ) |
| 108 | |
| 109 | // RegisterPacketHandler : API to register callback function for every protocol |
| 110 | func RegisterPacketHandler(protocol string, callback CallBack) { |
| 111 | if PacketHandlers == nil { |
| 112 | PacketHandlers = make(map[string]CallBack) |
| 113 | } |
| 114 | PacketHandlers[protocol] = callback |
| 115 | } |
| 116 | |
| 117 | // --------------------------------------------------------------------- |
| 118 | // VOLT Ports |
| 119 | // --------------------------------------------------------------------- |
| 120 | // VOLT Ports are ports associated with VOLT devices. Each port is classified into |
| 121 | // Access/NNI. Each port is identified by Name (Identity known to the NB) and |
| 122 | // Id (Identity used on the SB). Both identities are presented when a port is |
| 123 | // discovered in the SB. |
| 124 | |
| 125 | // VoltPortType type for Port Type |
| 126 | type VoltPortType uint8 |
| 127 | |
| 128 | const ( |
| 129 | // VoltPortTypeAccess constant. |
| 130 | VoltPortTypeAccess VoltPortType = 0 |
| 131 | // VoltPortTypeNni constant. |
| 132 | VoltPortTypeNni VoltPortType = 1 |
| 133 | ) |
| 134 | |
| 135 | // PortState type for Port State. |
| 136 | type PortState uint8 |
| 137 | |
| 138 | const ( |
| 139 | // PortStateDown constant. |
| 140 | PortStateDown PortState = 0 |
| 141 | // PortStateUp constant. |
| 142 | PortStateUp PortState = 1 |
| 143 | ) |
| 144 | |
| 145 | // VoltPort structure that is used to store the ports. The name is the |
| 146 | // the main identity used by the application. The SB and NB both present name |
| 147 | // as the identity. The SB is abstracted by VPAgent and the VPAgent transacts |
| 148 | // using name as identity |
| 149 | type VoltPort struct { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 150 | Name string |
| 151 | Device string |
| 152 | PonPort uint32 |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 153 | ActiveChannels uint32 |
| 154 | ID uint32 |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 155 | Type VoltPortType |
| 156 | State PortState |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 157 | ChannelPerSubAlarmRaised bool |
| 158 | } |
| 159 | |
| 160 | // NewVoltPort : Constructor for the port. |
| 161 | func NewVoltPort(device string, name string, id uint32) *VoltPort { |
| 162 | var vp VoltPort |
| 163 | vp.Device = device |
| 164 | vp.Name = name |
| 165 | vp.ID = id |
| 166 | if util.IsNniPort(id) { |
| 167 | vp.Type = VoltPortTypeNni |
| 168 | } else { |
| 169 | vp.PonPort = GetPonPortIDFromUNIPort(id) |
| 170 | } |
| 171 | vp.State = PortStateDown |
| 172 | vp.ChannelPerSubAlarmRaised = false |
| 173 | return &vp |
| 174 | } |
| 175 | |
| 176 | // SetPortID : The ID is used when constructing flows as the flows require ID. |
| 177 | func (vp *VoltPort) SetPortID(id uint32) { |
| 178 | vp.ID = id |
| 179 | if util.IsNniPort(id) { |
| 180 | vp.Type = VoltPortTypeNni |
| 181 | } |
| 182 | } |
| 183 | |
| 184 | // --------------------------------------------------------------------- |
| 185 | // VOLT Device |
| 186 | // --------------------------------------------------------------------- |
| 187 | // |
| 188 | // VoltDevice is an OLT which contains ports of type access and NNI. Each OLT |
| 189 | // can only have one NNI port in the current release. The NNI port always uses |
| 190 | // identity 65536 and all the access ports use identities less than 65535. The |
| 191 | // identification of NNI is done by comparing the port identity with 65535 |
| 192 | |
| 193 | // VoltDevice fields : |
| 194 | // Name: This is the name presented by the device/VOLTHA. This doesn't |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 195 | // have any relation to the physical device |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 196 | // SerialNum: This is the serial number of the device and can be used to |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 197 | // correlate the devices |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 198 | // NniPort: The identity of the NNI port |
| 199 | // Ports: List of all ports added to the device |
| 200 | type VoltDevice struct { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 201 | FlowAddEventMap *util.ConcurrentMap //map[string]*FlowEvent |
| 202 | FlowDelEventMap *util.ConcurrentMap //map[string]*FlowEvent |
| 203 | MigratingServices *util.ConcurrentMap //<vnetID,<RequestID, MigrateServicesRequest>> |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 204 | VpvsBySvlan *util.ConcurrentMap // map[svlan]map[vnet_port]*VoltPortVnet |
| 205 | ConfiguredVlanForDeviceFlows *util.ConcurrentMap //map[string]map[string]bool |
| 206 | IgmpDsFlowAppliedForMvlan map[uint16]bool |
| 207 | State controller.DeviceState |
| 208 | SouthBoundID string |
| 209 | NniPort string |
| 210 | Name string |
| 211 | SerialNum string |
| 212 | Ports sync.Map |
| 213 | VlanPortStatus sync.Map |
| 214 | ActiveChannelsPerPon sync.Map // [PonPortID]*PonPortCfg |
| 215 | PonPortList sync.Map // [PonPortID]map[string]string |
| 216 | ActiveChannelCountLock sync.Mutex // This lock is used to update ActiveIGMPChannels |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 217 | NniDhcpTrapVid of.VlanType |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 218 | GlobalDhcpFlowAdded bool |
| 219 | icmpv6GroupAdded bool |
Akash Soni | 6f36945 | 2023-09-19 11:18:28 +0530 | [diff] [blame] | 220 | VoltDeviceIntr VoltDevInterface |
| 221 | } |
| 222 | |
| 223 | type VoltDevInterface interface { |
| 224 | GetPortNameFromPortID(portID uint32) string |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | // NewVoltDevice : Constructor for the device |
| 228 | func NewVoltDevice(name string, slno, southBoundID string) *VoltDevice { |
| 229 | var d VoltDevice |
| 230 | d.Name = name |
| 231 | d.SouthBoundID = southBoundID |
| 232 | d.State = controller.DeviceStateDOWN |
| 233 | d.NniPort = "" |
| 234 | d.SouthBoundID = southBoundID |
| 235 | d.SerialNum = slno |
| 236 | d.icmpv6GroupAdded = false |
| 237 | d.IgmpDsFlowAppliedForMvlan = make(map[uint16]bool) |
| 238 | d.ConfiguredVlanForDeviceFlows = util.NewConcurrentMap() |
| 239 | d.MigratingServices = util.NewConcurrentMap() |
| 240 | d.VpvsBySvlan = util.NewConcurrentMap() |
| 241 | d.FlowAddEventMap = util.NewConcurrentMap() |
| 242 | d.FlowDelEventMap = util.NewConcurrentMap() |
| 243 | d.GlobalDhcpFlowAdded = false |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 244 | if config, ok := GetApplication().DevicesConfig.Load(slno); ok { |
| 245 | //Update nni dhcp vid |
Akash Soni | 53da285 | 2023-03-15 00:31:31 +0530 | [diff] [blame] | 246 | deviceConfig := config.(*DeviceConfig) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 247 | d.NniDhcpTrapVid = of.VlanType(deviceConfig.NniDhcpTrapVid) |
| 248 | } |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 249 | return &d |
| 250 | } |
| 251 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 252 | // GetAssociatedVpvsForDevice - return the associated VPVs for given device & svlan |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 253 | func (va *VoltApplication) GetAssociatedVpvsForDevice(device string, svlan of.VlanType) *util.ConcurrentMap { |
| 254 | if d := va.GetDevice(device); d != nil { |
| 255 | return d.GetAssociatedVpvs(svlan) |
| 256 | } |
| 257 | return nil |
| 258 | } |
| 259 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 260 | // AssociateVpvsToDevice - updates the associated VPVs for given device & svlan |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 261 | func (va *VoltApplication) AssociateVpvsToDevice(device string, vpv *VoltPortVnet) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 262 | logger.Debugw(ctx, "AssociateVpvsToDevice", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 263 | if d := va.GetDevice(device); d != nil { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 264 | vpvMap := d.GetAssociatedVpvs(vpv.SVlan) |
| 265 | vpvMap.Set(vpv, true) |
| 266 | d.VpvsBySvlan.Set(vpv.SVlan, vpvMap) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 267 | logger.Debugw(ctx, "VPVMap: SET", log.Fields{"Map": vpvMap.Length()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 268 | return |
| 269 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 270 | logger.Warnw(ctx, "Set VPVMap failed: Device Not Found", log.Fields{"Svlan": vpv.SVlan, "Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 271 | } |
| 272 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 273 | // DisassociateVpvsFromDevice - disassociated VPVs from given device & svlan |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 274 | func (va *VoltApplication) DisassociateVpvsFromDevice(device string, vpv *VoltPortVnet) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 275 | logger.Debugw(ctx, "DisassociateVpvsToDevice", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 276 | if d := va.GetDevice(device); d != nil { |
| 277 | vpvMap := d.GetAssociatedVpvs(vpv.SVlan) |
| 278 | vpvMap.Remove(vpv) |
| 279 | d.VpvsBySvlan.Set(vpv.SVlan, vpvMap) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 280 | logger.Debugw(ctx, "VPVMap: Remove", log.Fields{"Map": vpvMap.Length()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 281 | return |
| 282 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 283 | logger.Warnw(ctx, "Remove VPVMap failed: Device Not Found", log.Fields{"Svlan": vpv.SVlan, "Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 284 | } |
| 285 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 286 | // GetAssociatedVpvs - returns the associated VPVs for the given Svlan |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 287 | func (d *VoltDevice) GetAssociatedVpvs(svlan of.VlanType) *util.ConcurrentMap { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 288 | logger.Debugw(ctx, "Received Get Associated Vpvs", log.Fields{"svlan": svlan}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 289 | var vpvMap *util.ConcurrentMap |
| 290 | var mapIntf interface{} |
| 291 | var ok bool |
| 292 | |
| 293 | if mapIntf, ok = d.VpvsBySvlan.Get(svlan); ok { |
| 294 | vpvMap = mapIntf.(*util.ConcurrentMap) |
| 295 | } else { |
| 296 | vpvMap = util.NewConcurrentMap() |
| 297 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 298 | logger.Debugw(ctx, "VPVMap: GET", log.Fields{"Map": vpvMap.Length()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 299 | return vpvMap |
| 300 | } |
| 301 | |
| 302 | // AddPort add port to the device. |
| 303 | func (d *VoltDevice) AddPort(port string, id uint32) *VoltPort { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 304 | logger.Debugw(ctx, "Add Port", log.Fields{"Port": port, "ID": id}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 305 | addPonPortFromUniPort := func(vPort *VoltPort) { |
| 306 | if vPort.Type == VoltPortTypeAccess { |
| 307 | ponPortID := GetPonPortIDFromUNIPort(vPort.ID) |
| 308 | |
| 309 | if ponPortUniList, ok := d.PonPortList.Load(ponPortID); !ok { |
| 310 | uniList := make(map[string]uint32) |
| 311 | uniList[port] = vPort.ID |
| 312 | d.PonPortList.Store(ponPortID, uniList) |
| 313 | } else { |
| 314 | ponPortUniList.(map[string]uint32)[port] = vPort.ID |
| 315 | d.PonPortList.Store(ponPortID, ponPortUniList) |
| 316 | } |
| 317 | } |
| 318 | } |
| 319 | va := GetApplication() |
| 320 | if pIntf, ok := d.Ports.Load(port); ok { |
| 321 | voltPort := pIntf.(*VoltPort) |
| 322 | addPonPortFromUniPort(voltPort) |
| 323 | va.AggActiveChannelsCountPerSub(d.Name, port, voltPort) |
| 324 | d.Ports.Store(port, voltPort) |
| 325 | return voltPort |
| 326 | } |
| 327 | p := NewVoltPort(d.Name, port, id) |
| 328 | va.AggActiveChannelsCountPerSub(d.Name, port, p) |
| 329 | d.Ports.Store(port, p) |
| 330 | if util.IsNniPort(id) { |
| 331 | d.NniPort = port |
| 332 | } |
| 333 | addPonPortFromUniPort(p) |
| 334 | return p |
| 335 | } |
| 336 | |
| 337 | // GetPort to get port information from the device. |
| 338 | func (d *VoltDevice) GetPort(port string) *VoltPort { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 339 | logger.Debugw(ctx, "Get Port", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 340 | if pIntf, ok := d.Ports.Load(port); ok { |
| 341 | return pIntf.(*VoltPort) |
| 342 | } |
| 343 | return nil |
| 344 | } |
| 345 | |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 346 | // GetPortByPortID to get port information from the device. |
| 347 | func (d *VoltDevice) GetPortNameFromPortID(portID uint32) string { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 348 | logger.Debugw(ctx, "Get Port Name from the device", log.Fields{"PortID": portID}) |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 349 | portName := "" |
| 350 | d.Ports.Range(func(key, value interface{}) bool { |
| 351 | vp := value.(*VoltPort) |
| 352 | if vp.ID == portID { |
| 353 | portName = vp.Name |
| 354 | } |
| 355 | return true |
| 356 | }) |
| 357 | return portName |
| 358 | } |
| 359 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 360 | // DelPort to delete port from the device |
| 361 | func (d *VoltDevice) DelPort(port string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 362 | logger.Debugw(ctx, "Delete Port from the device", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 363 | if _, ok := d.Ports.Load(port); ok { |
| 364 | d.Ports.Delete(port) |
| 365 | } else { |
| 366 | logger.Warnw(ctx, "Port doesn't exist", log.Fields{"Device": d.Name, "Port": port}) |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | // pushFlowsForUnis to send port-up-indication for uni ports. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 371 | func (d *VoltDevice) pushFlowsForUnis(cntx context.Context) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 372 | logger.Info(ctx, "NNI Discovered, Sending Port UP Ind for UNIs") |
| 373 | d.Ports.Range(func(key, value interface{}) bool { |
| 374 | port := key.(string) |
| 375 | vp := value.(*VoltPort) |
| 376 | |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 377 | logger.Debugw(ctx, "NNI Discovered. Sending Port UP Ind for UNI", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 378 | //Ignore if UNI port is not UP |
| 379 | if vp.State != PortStateUp { |
| 380 | return true |
| 381 | } |
| 382 | |
| 383 | //Obtain all VPVs associated with the port |
| 384 | vnets, ok := GetApplication().VnetsByPort.Load(port) |
| 385 | if !ok { |
| 386 | return true |
| 387 | } |
| 388 | |
| 389 | for _, vpv := range vnets.([]*VoltPortVnet) { |
| 390 | vpv.VpvLock.Lock() |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 391 | vpv.PortUpInd(cntx, d, port) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 392 | vpv.VpvLock.Unlock() |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 393 | } |
| 394 | return true |
| 395 | }) |
| 396 | } |
| 397 | |
| 398 | // ---------------------------------------------------------- |
| 399 | // VOLT Application - hosts all other objects |
| 400 | // ---------------------------------------------------------- |
| 401 | // |
| 402 | // The VOLT application is a singleton implementation where |
| 403 | // there is just one instance in the system and is the gateway |
| 404 | // to all other components within the controller |
| 405 | // The declaration of the singleton object |
| 406 | var vapplication *VoltApplication |
| 407 | |
Akash Soni | 6f36945 | 2023-09-19 11:18:28 +0530 | [diff] [blame] | 408 | type VoltAppInterface interface { |
| 409 | AddVnet(cntx context.Context, cfg VnetConfig, oper *VnetOper) error |
| 410 | AddService(cntx context.Context, cfg VoltServiceCfg, oper *VoltServiceOper) error |
| 411 | AddDeviceConfig(cntx context.Context, serialNum, hardwareIdentifier, nasID, ipAddress, uplinkPort string, nniDhcpTrapID int) error |
| 412 | GetFlowProvisionStatus(portNo string) FlowProvisionStatus |
| 413 | DelServiceWithPrefix(cntx context.Context, prefix string) error |
| 414 | GetDevice(device string) *VoltDevice |
| 415 | GetTaskList(device string) map[int]*TaskInfo |
| 416 | AddMeterProf(cntx context.Context, cfg VoltMeter) |
| 417 | AddMvlanProfile(cntx context.Context, name string, mvlan of.VlanType, ponVlan of.VlanType, groups map[string][]string, isChannelBasedGroup bool, OLTSerialNum []string, activeChannelsPerPon int, proxy map[string]common.MulticastGroupProxy) error |
| 418 | DelMvlanProfile(cntx context.Context, name string) error |
| 419 | GetMvlanProfileByTag(vlan of.VlanType) *MvlanProfile |
| 420 | AddMcastConfig(cntx context.Context, MvlanProfileID string, IgmpProfileID string, IgmpProxyIP string, OltSerialNum string) error |
| 421 | DelMeterProf(cntx context.Context, name string) error |
| 422 | GetMeterByName(name string) (*VoltMeter, bool) |
| 423 | UpdateDeviceConfig(cntx context.Context, deviceConfig *DeviceConfig) |
| 424 | GetDeviceConfig(serNum string) *DeviceConfig |
| 425 | GetAllocations(cntx context.Context, deviceID string) ([]DhcpAllocation, error) |
| 426 | GetAllMacLearnerInfo() ([]MacLearnerInfo, error) |
| 427 | GetMacLearnerInfo(cntx context.Context, deviceID, portNumber, vlanID string) (MacLearnerInfo, error) |
| 428 | ActivateService(cntx context.Context, deviceID, portNo string, sVlan, cVlan of.VlanType, tpID uint16) error |
| 429 | DeactivateService(cntx context.Context, deviceID, portNo string, sVlan, cVlan of.VlanType, tpID uint16) error |
| 430 | GetProgrammedSubscribers(cntx context.Context, deviceID, portNo string) ([]*VoltService, error) |
| 431 | UpdateOltFlowService(cntx context.Context, oltFlowService OltFlowService) |
| 432 | GetIgnoredPorts() (map[string][]string, error) |
| 433 | } |
| 434 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 435 | // VoltApplication fields : |
| 436 | // ServiceByName - Stores the services by the name as key |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 437 | // A record of NB configuration. |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 438 | // VnetsByPort - Stores the VNETs by the ports configured |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 439 | // from NB. A record of NB configuration. |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 440 | // VnetsByTag - Stores the VNETs by the VLANS configured |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 441 | // from NB. A record of NB configuration. |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 442 | // VnetsByName - Stores the VNETs by the name configured |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 443 | // from NB. A record of NB configuration. |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 444 | // DevicesDisc - Stores the devices discovered from SB. |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 445 | // Should be updated only by events from SB |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 446 | // PortsDisc - Stores the ports discovered from SB. |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 447 | // Should be updated only by events from SB |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 448 | type VoltApplication struct { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 449 | MeterMgr |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 450 | DataMigrationInfo DataMigration |
| 451 | VnetsBySvlan *util.ConcurrentMap |
| 452 | IgmpGroupIds []*IgmpGroup |
| 453 | VoltPortVnetsToDelete map[*VoltPortVnet]bool |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 454 | IgmpPendingPool map[string]map[*IgmpGroup]bool //[grpkey, map[groupObj]bool] //mvlan_grpName/IP |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 455 | macPortMap map[string]string |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 456 | VnetsToDelete map[string]bool |
| 457 | ServicesToDelete map[string]bool |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 458 | ServicesToDeactivate map[string]bool |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 459 | PortAlarmProfileCache map[string]map[string]int // [portAlarmID][ThresholdLevelString]ThresholdLevel |
| 460 | vendorID string |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 461 | ServiceByName sync.Map // [serName]*VoltService |
| 462 | VnetsByPort sync.Map // [portName][]*VoltPortVnet |
| 463 | VnetsByTag sync.Map // [svlan-cvlan-uvlan]*VoltVnet |
| 464 | VnetsByName sync.Map // [vnetName]*VoltVnet |
| 465 | DevicesDisc sync.Map |
| 466 | PortsDisc sync.Map |
| 467 | IgmpGroups sync.Map // [grpKey]*IgmpGroup |
| 468 | MvlanProfilesByTag sync.Map |
| 469 | MvlanProfilesByName sync.Map |
| 470 | Icmpv6Receivers sync.Map |
| 471 | DeviceCounters sync.Map //[logicalDeviceId]*DeviceCounters |
| 472 | ServiceCounters sync.Map //[serviceName]*ServiceCounters |
| 473 | NbDevice sync.Map // [OLTSouthBoundID]*NbDevice |
| 474 | OltIgmpInfoBySerial sync.Map |
| 475 | McastConfigMap sync.Map //[OltSerialNo_MvlanProfileID]*McastConfig |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 476 | DevicesConfig sync.Map //[serialNumber]*DeviceConfig |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 477 | IgmpProfilesByName sync.Map |
| 478 | IgmpTasks tasks.Tasks |
| 479 | IndicationsTasks tasks.Tasks |
| 480 | MulticastAlarmTasks tasks.Tasks |
| 481 | IgmpKPIsTasks tasks.Tasks |
| 482 | pppoeTasks tasks.Tasks |
| 483 | OltFlowServiceConfig OltFlowService |
| 484 | PendingPoolLock sync.RWMutex |
| 485 | // MacAddress-Port MAP to avoid swap of mac across ports. |
| 486 | macPortLock sync.RWMutex |
| 487 | portLock sync.Mutex |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 488 | } |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 489 | |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 490 | type DeviceConfig struct { |
| 491 | SerialNumber string `json:"id"` |
| 492 | HardwareIdentifier string `json:"hardwareIdentifier"` |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 493 | IPAddress string `json:"ipAddress"` |
Akash Soni | 53da285 | 2023-03-15 00:31:31 +0530 | [diff] [blame] | 494 | UplinkPort string `json:"uplinkPort"` |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 495 | NasID string `json:"nasId"` |
| 496 | NniDhcpTrapVid int `json:"nniDhcpTrapVid"` |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 497 | } |
| 498 | |
| 499 | // PonPortCfg contains NB port config and activeIGMPChannels count |
| 500 | type PonPortCfg struct { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 501 | PortAlarmProfileID string |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 502 | PortID uint32 |
| 503 | MaxActiveChannels uint32 |
| 504 | ActiveIGMPChannels uint32 |
| 505 | EnableMulticastKPI bool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 506 | } |
| 507 | |
| 508 | // NbDevice OLT Device info |
| 509 | type NbDevice struct { |
| 510 | SouthBoundID string |
| 511 | PonPorts sync.Map // [PortID]*PonPortCfg |
| 512 | } |
| 513 | |
| 514 | // RestoreNbDeviceFromDb restores the NB Device in case of VGC pod restart. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 515 | func (va *VoltApplication) RestoreNbDeviceFromDb(cntx context.Context, deviceID string) *NbDevice { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 516 | logger.Debugw(ctx, "Received Restore Nb Device From Db", log.Fields{"deviceID": deviceID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 517 | nbDevice := NewNbDevice() |
| 518 | nbDevice.SouthBoundID = deviceID |
| 519 | |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 520 | nbPorts, _ := db.GetAllNbPorts(cntx, deviceID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 521 | |
| 522 | for key, p := range nbPorts { |
| 523 | b, ok := p.Value.([]byte) |
| 524 | if !ok { |
| 525 | logger.Warn(ctx, "The value type is not []byte") |
| 526 | continue |
| 527 | } |
| 528 | var port PonPortCfg |
| 529 | err := json.Unmarshal(b, &port) |
| 530 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 531 | logger.Warnw(ctx, "Unmarshal of PonPortCfg failed", log.Fields{"deviceID": deviceID, "port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 532 | continue |
| 533 | } |
| 534 | logger.Debugw(ctx, "Port recovered", log.Fields{"port": port}) |
| 535 | ponPortID, _ := strconv.Atoi(key) |
| 536 | nbDevice.PonPorts.Store(uint32(ponPortID), &port) |
| 537 | } |
| 538 | va.NbDevice.Store(deviceID, nbDevice) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 539 | logger.Debugw(ctx, "Recovered NbDevice From Db", log.Fields{"deviceID": deviceID, "nbDevice": nbDevice}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 540 | return nbDevice |
| 541 | } |
| 542 | |
| 543 | // NewNbDevice Constructor for NbDevice |
| 544 | func NewNbDevice() *NbDevice { |
| 545 | var nbDevice NbDevice |
| 546 | return &nbDevice |
| 547 | } |
| 548 | |
| 549 | // WriteToDb writes nb device port config to kv store |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 550 | func (nbd *NbDevice) WriteToDb(cntx context.Context, portID uint32, ponPort *PonPortCfg) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 551 | b, err := json.Marshal(ponPort) |
| 552 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 553 | logger.Errorw(ctx, "PonPortConfig-marshal-failed", log.Fields{"err": err, "ponPort": ponPort}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 554 | return |
| 555 | } |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 556 | db.PutNbDevicePort(cntx, nbd.SouthBoundID, portID, string(b)) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | // AddPortToNbDevice Adds pon port to NB Device and DB |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 560 | func (nbd *NbDevice) AddPortToNbDevice(cntx context.Context, portID, allowedChannels uint32, |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 561 | enableMulticastKPI bool, portAlarmProfileID string) *PonPortCfg { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 562 | logger.Debugw(ctx, "AddPortToNbDevice", log.Fields{"PortID": portID, "EnableMulticastKPI": enableMulticastKPI, "PortAlarmProfileID": portAlarmProfileID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 563 | ponPort := &PonPortCfg{ |
| 564 | PortID: portID, |
| 565 | MaxActiveChannels: allowedChannels, |
| 566 | EnableMulticastKPI: enableMulticastKPI, |
| 567 | PortAlarmProfileID: portAlarmProfileID, |
| 568 | } |
| 569 | nbd.PonPorts.Store(portID, ponPort) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 570 | nbd.WriteToDb(cntx, portID, ponPort) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 571 | return ponPort |
| 572 | } |
| 573 | |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 574 | // RestoreDeviceConfigFromDb to restore vnet from port |
| 575 | func (va *VoltApplication) RestoreDeviceConfigFromDb(cntx context.Context) { |
| 576 | // VNETS must be learnt first |
| 577 | dConfig, _ := db.GetDeviceConfig(cntx) |
| 578 | for _, device := range dConfig { |
| 579 | b, ok := device.Value.([]byte) |
| 580 | if !ok { |
| 581 | logger.Warn(ctx, "The value type is not []byte") |
| 582 | continue |
| 583 | } |
| 584 | devConfig := DeviceConfig{} |
| 585 | err := json.Unmarshal(b, &devConfig) |
| 586 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 587 | logger.Warnw(ctx, "Unmarshal of device configuration failed", log.Fields{"Device Config": devConfig}) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 588 | continue |
| 589 | } |
| 590 | logger.Debugw(ctx, "Retrieved device config", log.Fields{"Device Config": devConfig}) |
| 591 | if err := va.AddDeviceConfig(cntx, devConfig.SerialNumber, devConfig.HardwareIdentifier, devConfig.NasID, devConfig.IPAddress, devConfig.UplinkPort, devConfig.NniDhcpTrapVid); err != nil { |
| 592 | logger.Warnw(ctx, "Add device config failed", log.Fields{"DeviceConfig": devConfig, "Error": err}) |
| 593 | } |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 594 | } |
| 595 | } |
| 596 | |
| 597 | // WriteDeviceConfigToDb writes sb device config to kv store |
| 598 | func (dc *DeviceConfig) WriteDeviceConfigToDb(cntx context.Context, serialNum string, deviceConfig *DeviceConfig) error { |
| 599 | b, err := json.Marshal(deviceConfig) |
| 600 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 601 | return fmt.Errorf("deviceConfig-marshal-failed - %w ", err) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 602 | } |
| 603 | dberr := db.PutDeviceConfig(cntx, serialNum, string(b)) |
| 604 | if dberr != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 605 | return fmt.Errorf("update device config failed - %w ", err) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 606 | } |
| 607 | return nil |
| 608 | } |
| 609 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 610 | func (va *VoltApplication) AddDeviceConfig(cntx context.Context, serialNum, hardwareIdentifier, nasID, ipAddress, uplinkPort string, nniDhcpTrapID int) error { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 611 | logger.Debugw(ctx, "Received Add device config", log.Fields{"SerialNumber": serialNum, "HardwareIdentifier": hardwareIdentifier, "NasID": nasID, "IPAddress": ipAddress, "UplinkPort": uplinkPort, "NniDhcpTrapID": nniDhcpTrapID}) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 612 | var dc *DeviceConfig |
| 613 | |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 614 | deviceConfig := &DeviceConfig{ |
| 615 | SerialNumber: serialNum, |
| 616 | HardwareIdentifier: hardwareIdentifier, |
| 617 | NasID: nasID, |
| 618 | UplinkPort: uplinkPort, |
| 619 | IPAddress: ipAddress, |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 620 | NniDhcpTrapVid: nniDhcpTrapID, |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 621 | } |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 622 | va.DevicesConfig.Store(serialNum, deviceConfig) |
| 623 | err := dc.WriteDeviceConfigToDb(cntx, serialNum, deviceConfig) |
| 624 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 625 | return fmt.Errorf("DB update for device config failed - %w ", err) |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | // If device is already discovered update the VoltDevice structure |
| 629 | device, id := va.GetDeviceBySerialNo(serialNum) |
| 630 | if device != nil { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 631 | device.NniDhcpTrapVid = of.VlanType(nniDhcpTrapID) |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 632 | va.DevicesDisc.Store(id, device) |
| 633 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 634 | logger.Debugw(ctx, "Added device config", log.Fields{"Device Config": deviceConfig}) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 635 | return nil |
| 636 | } |
| 637 | |
| 638 | // GetDeviceConfig to get a device config. |
| 639 | func (va *VoltApplication) GetDeviceConfig(serNum string) *DeviceConfig { |
| 640 | if d, ok := va.DevicesConfig.Load(serNum); ok { |
| 641 | return d.(*DeviceConfig) |
| 642 | } |
| 643 | return nil |
| 644 | } |
| 645 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 646 | // UpdatePortToNbDevice Adds pon port to NB Device and DB |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 647 | func (nbd *NbDevice) UpdatePortToNbDevice(cntx context.Context, portID, allowedChannels uint32, enableMulticastKPI bool, portAlarmProfileID string) *PonPortCfg { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 648 | logger.Debugw(ctx, "Received Update Port To NbDevice", log.Fields{"portID": portID, "AllowedChannels": allowedChannels, "EnableMulticastKPI": enableMulticastKPI, "PortAlarmProfileID": portAlarmProfileID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 649 | p, exists := nbd.PonPorts.Load(portID) |
| 650 | if !exists { |
| 651 | logger.Errorw(ctx, "PON port not exists in nb-device", log.Fields{"portID": portID}) |
| 652 | return nil |
| 653 | } |
| 654 | port := p.(*PonPortCfg) |
| 655 | if allowedChannels != 0 { |
| 656 | port.MaxActiveChannels = allowedChannels |
| 657 | port.EnableMulticastKPI = enableMulticastKPI |
| 658 | port.PortAlarmProfileID = portAlarmProfileID |
| 659 | } |
| 660 | |
| 661 | nbd.PonPorts.Store(portID, port) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 662 | nbd.WriteToDb(cntx, portID, port) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 663 | return port |
| 664 | } |
| 665 | |
| 666 | // DeletePortFromNbDevice Deletes pon port from NB Device and DB |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 667 | func (nbd *NbDevice) DeletePortFromNbDevice(cntx context.Context, portID uint32) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 668 | logger.Debugw(ctx, "Received Delete Port from NbDevice", log.Fields{"portID": portID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 669 | if _, ok := nbd.PonPorts.Load(portID); ok { |
| 670 | nbd.PonPorts.Delete(portID) |
| 671 | } |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 672 | db.DelNbDevicePort(cntx, nbd.SouthBoundID, portID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | // GetApplication : Interface to access the singleton object |
| 676 | func GetApplication() *VoltApplication { |
| 677 | if vapplication == nil { |
| 678 | vapplication = newVoltApplication() |
| 679 | } |
| 680 | return vapplication |
| 681 | } |
| 682 | |
| 683 | // newVoltApplication : Constructor for the singleton object. Hence this is not |
| 684 | // an exported function |
| 685 | func newVoltApplication() *VoltApplication { |
| 686 | var va VoltApplication |
| 687 | va.IgmpTasks.Initialize(context.TODO()) |
| 688 | va.MulticastAlarmTasks.Initialize(context.TODO()) |
| 689 | va.IgmpKPIsTasks.Initialize(context.TODO()) |
| 690 | va.pppoeTasks.Initialize(context.TODO()) |
| 691 | va.storeIgmpProfileMap(DefaultIgmpProfID, newDefaultIgmpProfile()) |
| 692 | va.MeterMgr.Init() |
| 693 | va.AddIgmpGroups(5000) |
| 694 | va.macPortMap = make(map[string]string) |
| 695 | va.IgmpPendingPool = make(map[string]map[*IgmpGroup]bool) |
| 696 | va.VnetsBySvlan = util.NewConcurrentMap() |
| 697 | va.VnetsToDelete = make(map[string]bool) |
| 698 | va.ServicesToDelete = make(map[string]bool) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 699 | va.ServicesToDeactivate = make(map[string]bool) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 700 | va.VoltPortVnetsToDelete = make(map[*VoltPortVnet]bool) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 701 | go va.Start(context.Background(), TimerCfg{tick: 100 * time.Millisecond}, tickTimer) |
| 702 | go va.Start(context.Background(), TimerCfg{tick: time.Duration(GroupExpiryTime) * time.Minute}, pendingPoolTimer) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 703 | InitEventFuncMapper() |
| 704 | db = database.GetDatabase() |
Akash Soni | 6f36945 | 2023-09-19 11:18:28 +0530 | [diff] [blame] | 705 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 706 | return &va |
| 707 | } |
| 708 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 709 | // GetFlowEventRegister - returs the register based on flow mod type |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 710 | func (d *VoltDevice) GetFlowEventRegister(flowModType of.Command) (*util.ConcurrentMap, error) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 711 | switch flowModType { |
| 712 | case of.CommandDel: |
| 713 | return d.FlowDelEventMap, nil |
| 714 | case of.CommandAdd: |
| 715 | return d.FlowAddEventMap, nil |
| 716 | default: |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 717 | logger.Warnw(ctx, "Unknown Flow Mod received", log.Fields{"flowModtype": flowModType}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 718 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 719 | return util.NewConcurrentMap(), errors.New("unknown flow mod") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | // RegisterFlowAddEvent to register a flow event. |
| 723 | func (d *VoltDevice) RegisterFlowAddEvent(cookie string, event *FlowEvent) { |
| 724 | logger.Debugw(ctx, "Registered Flow Add Event", log.Fields{"Cookie": cookie, "Event": event}) |
| 725 | d.FlowAddEventMap.MapLock.Lock() |
| 726 | defer d.FlowAddEventMap.MapLock.Unlock() |
| 727 | d.FlowAddEventMap.Set(cookie, event) |
| 728 | } |
| 729 | |
| 730 | // RegisterFlowDelEvent to register a flow event. |
| 731 | func (d *VoltDevice) RegisterFlowDelEvent(cookie string, event *FlowEvent) { |
| 732 | logger.Debugw(ctx, "Registered Flow Del Event", log.Fields{"Cookie": cookie, "Event": event}) |
| 733 | d.FlowDelEventMap.MapLock.Lock() |
| 734 | defer d.FlowDelEventMap.MapLock.Unlock() |
| 735 | d.FlowDelEventMap.Set(cookie, event) |
| 736 | } |
| 737 | |
| 738 | // UnRegisterFlowEvent to unregister a flow event. |
| 739 | func (d *VoltDevice) UnRegisterFlowEvent(cookie string, flowModType of.Command) { |
| 740 | logger.Debugw(ctx, "UnRegistered Flow Add Event", log.Fields{"Cookie": cookie, "Type": flowModType}) |
| 741 | flowEventMap, err := d.GetFlowEventRegister(flowModType) |
| 742 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 743 | logger.Warnw(ctx, "Flow event map does not exists", log.Fields{"flowMod": flowModType, "Error": err}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 744 | return |
| 745 | } |
| 746 | flowEventMap.MapLock.Lock() |
| 747 | defer flowEventMap.MapLock.Unlock() |
| 748 | flowEventMap.Remove(cookie) |
| 749 | } |
| 750 | |
| 751 | // AddIgmpGroups to add Igmp groups. |
| 752 | func (va *VoltApplication) AddIgmpGroups(numOfGroups uint32) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 753 | logger.Debugw(ctx, "AddIgmpGroups", log.Fields{"NumOfGroups": numOfGroups}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 754 | //TODO: Temp change to resolve group id issue in pOLT |
| 755 | //for i := 1; uint32(i) <= numOfGroups; i++ { |
| 756 | for i := 2; uint32(i) <= (numOfGroups + 1); i++ { |
| 757 | ig := IgmpGroup{} |
| 758 | ig.GroupID = uint32(i) |
| 759 | va.IgmpGroupIds = append(va.IgmpGroupIds, &ig) |
| 760 | } |
| 761 | } |
| 762 | |
| 763 | // GetAvailIgmpGroupID to get id of available igmp group. |
| 764 | func (va *VoltApplication) GetAvailIgmpGroupID() *IgmpGroup { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 765 | logger.Info(ctx, "GetAvailIgmpGroupID") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 766 | var ig *IgmpGroup |
| 767 | if len(va.IgmpGroupIds) > 0 { |
| 768 | ig, va.IgmpGroupIds = va.IgmpGroupIds[0], va.IgmpGroupIds[1:] |
| 769 | return ig |
| 770 | } |
| 771 | return nil |
| 772 | } |
| 773 | |
| 774 | // GetIgmpGroupID to get id of igmp group. |
| 775 | func (va *VoltApplication) GetIgmpGroupID(gid uint32) (*IgmpGroup, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 776 | logger.Info(ctx, "GetIgmpGroupID") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 777 | for id, ig := range va.IgmpGroupIds { |
| 778 | if ig.GroupID == gid { |
| 779 | va.IgmpGroupIds = append(va.IgmpGroupIds[0:id], va.IgmpGroupIds[id+1:]...) |
| 780 | return ig, nil |
| 781 | } |
| 782 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 783 | return nil, errors.New("group id missing") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | // PutIgmpGroupID to add id of igmp group. |
| 787 | func (va *VoltApplication) PutIgmpGroupID(ig *IgmpGroup) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 788 | logger.Debugw(ctx, "GetIgmpGroupID", log.Fields{"GroupID": ig.GroupID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 789 | va.IgmpGroupIds = append([]*IgmpGroup{ig}, va.IgmpGroupIds[0:]...) |
| 790 | } |
| 791 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 792 | // RestoreUpgradeStatus - gets upgrade/migration status from DB and updates local flags |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 793 | func (va *VoltApplication) RestoreUpgradeStatus(cntx context.Context) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 794 | logger.Info(ctx, "Received Restore Upgrade Status") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 795 | Migrate := new(DataMigration) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 796 | if err := GetMigrationInfo(cntx, Migrate); err == nil { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 797 | if Migrate.Status == MigrationInProgress { |
| 798 | isUpgradeComplete = false |
| 799 | return |
| 800 | } |
| 801 | } |
| 802 | isUpgradeComplete = true |
| 803 | |
| 804 | logger.Infow(ctx, "Upgrade Status Restored", log.Fields{"Upgrade Completed": isUpgradeComplete}) |
| 805 | } |
| 806 | |
| 807 | // ReadAllFromDb : If we are restarted, learn from the database the current execution |
| 808 | // stage |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 809 | func (va *VoltApplication) ReadAllFromDb(cntx context.Context) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 810 | logger.Info(ctx, "Reading the meters from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 811 | va.RestoreMetersFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 812 | logger.Info(ctx, "Reading the VNETs from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 813 | va.RestoreVnetsFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 814 | logger.Info(ctx, "Reading the VPVs from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 815 | va.RestoreVpvsFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 816 | logger.Info(ctx, "Reading the Services from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 817 | va.RestoreSvcsFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 818 | logger.Info(ctx, "Reading the MVLANs from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 819 | va.RestoreMvlansFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 820 | logger.Info(ctx, "Reading the IGMP profiles from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 821 | va.RestoreIGMPProfilesFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 822 | logger.Info(ctx, "Reading the Mcast configs from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 823 | va.RestoreMcastConfigsFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 824 | logger.Info(ctx, "Reading the IGMP groups for DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 825 | va.RestoreIgmpGroupsFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 826 | logger.Info(ctx, "Reading Upgrade status from DB") |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 827 | va.RestoreUpgradeStatus(cntx) |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 828 | logger.Info(ctx, "Reading OltFlowService from DB") |
| 829 | va.RestoreOltFlowService(cntx) |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 830 | logger.Info(ctx, "Reading device config from DB") |
| 831 | va.RestoreDeviceConfigFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 832 | logger.Info(ctx, "Reconciled from DB") |
| 833 | } |
| 834 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 835 | // InitStaticConfig to initialize static config. |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 836 | func (va *VoltApplication) InitStaticConfig() { |
| 837 | va.InitIgmpSrcMac() |
| 838 | } |
| 839 | |
| 840 | // SetVendorID to set vendor id |
| 841 | func (va *VoltApplication) SetVendorID(vendorID string) { |
| 842 | va.vendorID = vendorID |
| 843 | } |
| 844 | |
| 845 | // GetVendorID to get vendor id |
| 846 | func (va *VoltApplication) GetVendorID() string { |
| 847 | return va.vendorID |
| 848 | } |
| 849 | |
| 850 | // SetRebootFlag to set reboot flag |
| 851 | func (va *VoltApplication) SetRebootFlag(flag bool) { |
| 852 | vgcRebooted = flag |
| 853 | } |
| 854 | |
| 855 | // GetUpgradeFlag to get reboot status |
| 856 | func (va *VoltApplication) GetUpgradeFlag() bool { |
| 857 | return isUpgradeComplete |
| 858 | } |
| 859 | |
| 860 | // SetUpgradeFlag to set reboot status |
| 861 | func (va *VoltApplication) SetUpgradeFlag(flag bool) { |
| 862 | isUpgradeComplete = flag |
| 863 | } |
| 864 | |
| 865 | // ------------------------------------------------------------ |
| 866 | // Device related functions |
| 867 | |
| 868 | // AddDevice : Add a device and typically the device stores the NNI port on the device |
| 869 | // The NNI port is used when the packets are emitted towards the network. |
| 870 | // The outport is selected as the NNI port of the device. Today, we support |
| 871 | // a single NNI port per OLT. This is true whether the network uses any |
| 872 | // protection mechanism (LAG, ERPS, etc.). The aggregate of the such protection |
| 873 | // is represented by a single NNI port |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 874 | func (va *VoltApplication) AddDevice(cntx context.Context, device string, slno, southBoundID string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 875 | logger.Debugw(ctx, "Received Device Ind: Add", log.Fields{"Device": device, "SrNo": slno, "southBoundID": southBoundID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 876 | if _, ok := va.DevicesDisc.Load(device); ok { |
| 877 | logger.Warnw(ctx, "Device Exists", log.Fields{"Device": device}) |
| 878 | } |
| 879 | d := NewVoltDevice(device, slno, southBoundID) |
| 880 | |
| 881 | addPort := func(key, value interface{}) bool { |
| 882 | portID := key.(uint32) |
| 883 | port := value.(*PonPortCfg) |
| 884 | va.AggActiveChannelsCountForPonPort(device, portID, port) |
| 885 | d.ActiveChannelsPerPon.Store(portID, port) |
| 886 | return true |
| 887 | } |
| 888 | if nbDevice, exists := va.NbDevice.Load(southBoundID); exists { |
| 889 | // Pon Ports added before OLT activate. |
| 890 | nbDevice.(*NbDevice).PonPorts.Range(addPort) |
| 891 | } else { |
| 892 | // Check if NbPort exists in DB. VGC restart case. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 893 | nbd := va.RestoreNbDeviceFromDb(cntx, southBoundID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 894 | nbd.PonPorts.Range(addPort) |
| 895 | } |
| 896 | va.DevicesDisc.Store(device, d) |
| 897 | } |
| 898 | |
| 899 | // GetDevice to get a device. |
| 900 | func (va *VoltApplication) GetDevice(device string) *VoltDevice { |
| 901 | if d, ok := va.DevicesDisc.Load(device); ok { |
| 902 | return d.(*VoltDevice) |
| 903 | } |
| 904 | return nil |
| 905 | } |
| 906 | |
| 907 | // DelDevice to delete a device. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 908 | func (va *VoltApplication) DelDevice(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 909 | logger.Debugw(ctx, "Received Device Ind: Delete", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 910 | if vdIntf, ok := va.DevicesDisc.Load(device); ok { |
| 911 | vd := vdIntf.(*VoltDevice) |
| 912 | va.DevicesDisc.Delete(device) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 913 | _ = db.DelAllRoutesForDevice(cntx, device) |
| 914 | va.HandleFlowClearFlag(cntx, device, vd.SerialNum, vd.SouthBoundID) |
| 915 | _ = db.DelAllGroup(cntx, device) |
| 916 | _ = db.DelAllMeter(cntx, device) |
| 917 | _ = db.DelAllPorts(cntx, device) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 918 | logger.Debugw(ctx, "Device deleted", log.Fields{"Device": device}) |
| 919 | } else { |
| 920 | logger.Warnw(ctx, "Device Doesn't Exist", log.Fields{"Device": device}) |
| 921 | } |
| 922 | } |
| 923 | |
| 924 | // GetDeviceBySerialNo to get a device by serial number. |
| 925 | // TODO - Transform this into a MAP instead |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 926 | func (va *VoltApplication) GetDeviceBySerialNo(slno string) (*VoltDevice, string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 927 | logger.Debugw(ctx, "Received Device Ind: Get", log.Fields{"Serial Num": slno}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 928 | var device *VoltDevice |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 929 | var deviceID string |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 930 | getserial := func(key interface{}, value interface{}) bool { |
| 931 | device = value.(*VoltDevice) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 932 | deviceID = key.(string) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 933 | return device.SerialNum != slno |
| 934 | } |
| 935 | va.DevicesDisc.Range(getserial) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 936 | return device, deviceID |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 937 | } |
| 938 | |
| 939 | // PortAddInd : This is a PORT add indication coming from the VPAgent, which is essentially |
| 940 | // a request coming from VOLTHA. The device and identity of the port is provided |
| 941 | // in this request. Add them to the application for further use |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 942 | func (va *VoltApplication) PortAddInd(cntx context.Context, device string, id uint32, portName string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 943 | logger.Debugw(ctx, "Received Port Ind: Add", log.Fields{"Device": device, "ID": id, "Port": portName}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 944 | va.portLock.Lock() |
| 945 | if d := va.GetDevice(device); d != nil { |
| 946 | p := d.AddPort(portName, id) |
| 947 | va.PortsDisc.Store(portName, p) |
| 948 | va.portLock.Unlock() |
| 949 | nni, _ := va.GetNniPort(device) |
| 950 | if nni == portName { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 951 | d.pushFlowsForUnis(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 952 | } |
| 953 | } else { |
| 954 | va.portLock.Unlock() |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 955 | logger.Warnw(ctx, "Device Not Found - Dropping Port Ind: Add", log.Fields{"Device": device, "ID": id, "Port": portName}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 956 | } |
| 957 | } |
| 958 | |
| 959 | // PortDelInd : Only the NNI ports are recorded in the device for now. When port delete |
| 960 | // arrives, only the NNI ports need adjustments. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 961 | func (va *VoltApplication) PortDelInd(cntx context.Context, device string, port string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 962 | logger.Debugw(ctx, "Received Port Ind: Delete", log.Fields{"Device": device, "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 963 | if d := va.GetDevice(device); d != nil { |
| 964 | p := d.GetPort(port) |
| 965 | if p != nil && p.State == PortStateUp { |
| 966 | logger.Infow(ctx, "Port state is UP. Trigerring Port Down Ind before deleting", log.Fields{"Port": p}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 967 | va.PortDownInd(cntx, device, port) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 968 | } |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 969 | // if RemoveFlowsOnDisable is flase, then flows will be existing till port delete. Remove the flows now |
| 970 | if !va.OltFlowServiceConfig.RemoveFlowsOnDisable { |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 971 | vpvs, ok := va.VnetsByPort.Load(port) |
| 972 | if !ok || nil == vpvs || len(vpvs.([]*VoltPortVnet)) == 0 { |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 973 | logger.Infow(ctx, "No VNETs on port", log.Fields{"Device": device, "Port": port}) |
| 974 | } else { |
| 975 | for _, vpv := range vpvs.([]*VoltPortVnet) { |
| 976 | vpv.VpvLock.Lock() |
Sridhar Ravindra | 03aa0bf | 2023-09-12 17:46:40 +0530 | [diff] [blame] | 977 | // Set delFlowsInDevice to true to delete flows only in DB/device during Port Delete. |
| 978 | vpv.PortDownInd(cntx, device, port, true, true) |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 979 | vpv.VpvLock.Unlock() |
| 980 | } |
| 981 | } |
| 982 | } |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 983 | va.portLock.Lock() |
| 984 | defer va.portLock.Unlock() |
| 985 | d.DelPort(port) |
| 986 | if _, ok := va.PortsDisc.Load(port); ok { |
| 987 | va.PortsDisc.Delete(port) |
| 988 | } |
| 989 | } else { |
| 990 | logger.Warnw(ctx, "Device Not Found - Dropping Port Ind: Delete", log.Fields{"Device": device, "Port": port}) |
| 991 | } |
| 992 | } |
| 993 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 994 | // PortUpdateInd Updates port Id incase of ONU movement |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 995 | func (va *VoltApplication) PortUpdateInd(device string, portName string, id uint32) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 996 | logger.Debugw(ctx, "Received Port Ind: Update", log.Fields{"Device": device, "Port": portName, "ID": id}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 997 | va.portLock.Lock() |
| 998 | defer va.portLock.Unlock() |
| 999 | if d := va.GetDevice(device); d != nil { |
| 1000 | vp := d.GetPort(portName) |
| 1001 | vp.ID = id |
| 1002 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1003 | logger.Warnw(ctx, "Device Not Found", log.Fields{"Device": device, "Port": portName, "ID": id}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1004 | } |
| 1005 | } |
| 1006 | |
| 1007 | // AddNbPonPort Add pon port to nbDevice |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1008 | func (va *VoltApplication) AddNbPonPort(cntx context.Context, oltSbID string, portID, maxAllowedChannels uint32, |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1009 | enableMulticastKPI bool, portAlarmProfileID string) error { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1010 | logger.Debugw(ctx, "Received NbPonPort Ind: Add", log.Fields{"oltSbID": oltSbID, "portID": portID, "maxAllowedChannels": maxAllowedChannels, "enableMulticastKPI": enableMulticastKPI, "portAlarmProfileID": portAlarmProfileID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1011 | var nbd *NbDevice |
| 1012 | nbDevice, ok := va.NbDevice.Load(oltSbID) |
| 1013 | |
| 1014 | if !ok { |
| 1015 | nbd = NewNbDevice() |
| 1016 | nbd.SouthBoundID = oltSbID |
| 1017 | } else { |
| 1018 | nbd = nbDevice.(*NbDevice) |
| 1019 | } |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1020 | port := nbd.AddPortToNbDevice(cntx, portID, maxAllowedChannels, enableMulticastKPI, portAlarmProfileID) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1021 | logger.Debugw(ctx, "Added Port To NbDevice", log.Fields{"port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1022 | // Add this port to voltDevice |
| 1023 | addPort := func(key, value interface{}) bool { |
| 1024 | voltDevice := value.(*VoltDevice) |
| 1025 | if oltSbID == voltDevice.SouthBoundID { |
| 1026 | if _, exists := voltDevice.ActiveChannelsPerPon.Load(portID); !exists { |
| 1027 | voltDevice.ActiveChannelsPerPon.Store(portID, port) |
| 1028 | } |
| 1029 | return false |
| 1030 | } |
| 1031 | return true |
| 1032 | } |
| 1033 | va.DevicesDisc.Range(addPort) |
| 1034 | va.NbDevice.Store(oltSbID, nbd) |
| 1035 | |
| 1036 | return nil |
| 1037 | } |
| 1038 | |
| 1039 | // UpdateNbPonPort update pon port to nbDevice |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1040 | func (va *VoltApplication) UpdateNbPonPort(cntx context.Context, oltSbID string, portID, maxAllowedChannels uint32, enableMulticastKPI bool, portAlarmProfileID string) error { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1041 | logger.Debugw(ctx, "Received NbPonPort Ind: Update", log.Fields{"oltSbID": oltSbID, "portID": portID, "maxAllowedChannels": maxAllowedChannels, "enableMulticastKPI": enableMulticastKPI, "portAlarmProfileID": portAlarmProfileID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1042 | var nbd *NbDevice |
| 1043 | nbDevice, ok := va.NbDevice.Load(oltSbID) |
| 1044 | |
| 1045 | if !ok { |
| 1046 | logger.Errorw(ctx, "Device-doesn't-exists", log.Fields{"deviceID": oltSbID}) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1047 | return fmt.Errorf("device-doesn't-exists - %s", oltSbID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1048 | } |
| 1049 | nbd = nbDevice.(*NbDevice) |
| 1050 | |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1051 | port := nbd.UpdatePortToNbDevice(cntx, portID, maxAllowedChannels, enableMulticastKPI, portAlarmProfileID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1052 | if port == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1053 | return fmt.Errorf("port-doesn't-exists-%d", portID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1054 | } |
| 1055 | va.NbDevice.Store(oltSbID, nbd) |
| 1056 | |
| 1057 | // Add this port to voltDevice |
| 1058 | updPort := func(key, value interface{}) bool { |
| 1059 | voltDevice := value.(*VoltDevice) |
| 1060 | if oltSbID == voltDevice.SouthBoundID { |
| 1061 | voltDevice.ActiveChannelCountLock.Lock() |
| 1062 | if p, exists := voltDevice.ActiveChannelsPerPon.Load(portID); exists { |
| 1063 | oldPort := p.(*PonPortCfg) |
| 1064 | if port.MaxActiveChannels != 0 { |
| 1065 | oldPort.MaxActiveChannels = port.MaxActiveChannels |
| 1066 | oldPort.EnableMulticastKPI = port.EnableMulticastKPI |
| 1067 | voltDevice.ActiveChannelsPerPon.Store(portID, oldPort) |
| 1068 | } |
| 1069 | } |
| 1070 | voltDevice.ActiveChannelCountLock.Unlock() |
| 1071 | return false |
| 1072 | } |
| 1073 | return true |
| 1074 | } |
| 1075 | va.DevicesDisc.Range(updPort) |
| 1076 | |
| 1077 | return nil |
| 1078 | } |
| 1079 | |
| 1080 | // DeleteNbPonPort Delete pon port to nbDevice |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1081 | func (va *VoltApplication) DeleteNbPonPort(cntx context.Context, oltSbID string, portID uint32) error { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1082 | logger.Debugw(ctx, "Received NbPonPort Ind: Delete", log.Fields{"oltSbID": oltSbID, "portID": portID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1083 | nbDevice, ok := va.NbDevice.Load(oltSbID) |
| 1084 | if ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1085 | nbDevice.(*NbDevice).DeletePortFromNbDevice(cntx, portID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1086 | va.NbDevice.Store(oltSbID, nbDevice.(*NbDevice)) |
| 1087 | } else { |
| 1088 | logger.Warnw(ctx, "Delete pon received for unknown device", log.Fields{"oltSbID": oltSbID}) |
| 1089 | return nil |
| 1090 | } |
| 1091 | // Delete this port from voltDevice |
| 1092 | delPort := func(key, value interface{}) bool { |
| 1093 | voltDevice := value.(*VoltDevice) |
| 1094 | if oltSbID == voltDevice.SouthBoundID { |
| 1095 | if _, exists := voltDevice.ActiveChannelsPerPon.Load(portID); exists { |
| 1096 | voltDevice.ActiveChannelsPerPon.Delete(portID) |
| 1097 | } |
| 1098 | return false |
| 1099 | } |
| 1100 | return true |
| 1101 | } |
| 1102 | va.DevicesDisc.Range(delPort) |
| 1103 | return nil |
| 1104 | } |
| 1105 | |
| 1106 | // GetNniPort : Get the NNI port for a device. Called from different other applications |
| 1107 | // as a port to match or destination for a packet out. The VOLT application |
| 1108 | // is written with the assumption that there is a single NNI port. The OLT |
| 1109 | // device is responsible for translating the combination of VLAN and the |
| 1110 | // NNI port ID to identify possibly a single physical port or a logical |
| 1111 | // port which is a result of protection methods applied. |
| 1112 | func (va *VoltApplication) GetNniPort(device string) (string, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1113 | logger.Debugw(ctx, "NNI Get Ind", log.Fields{"device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1114 | va.portLock.Lock() |
| 1115 | defer va.portLock.Unlock() |
| 1116 | d, ok := va.DevicesDisc.Load(device) |
| 1117 | if !ok { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1118 | return "", errors.New("device doesn't exist") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1119 | } |
| 1120 | return d.(*VoltDevice).NniPort, nil |
| 1121 | } |
| 1122 | |
| 1123 | // NniDownInd process for Nni down indication. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1124 | func (va *VoltApplication) NniDownInd(cntx context.Context, deviceID string, devSrNo string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1125 | logger.Debugw(ctx, "NNI Down Ind", log.Fields{"DeviceID": deviceID, "Device SrNo": devSrNo}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1126 | |
| 1127 | handleIgmpDsFlows := func(key interface{}, value interface{}) bool { |
| 1128 | mvProfile := value.(*MvlanProfile) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1129 | mvProfile.removeIgmpMcastFlows(cntx, devSrNo) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1130 | return true |
| 1131 | } |
| 1132 | va.MvlanProfilesByName.Range(handleIgmpDsFlows) |
| 1133 | |
| 1134 | //Clear Static Group |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1135 | va.ReceiverDownInd(cntx, deviceID, StaticPort) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | // DeviceUpInd changes device state to up. |
| 1139 | func (va *VoltApplication) DeviceUpInd(device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1140 | logger.Infow(ctx, "Received Device Ind: UP", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1141 | if d := va.GetDevice(device); d != nil { |
| 1142 | d.State = controller.DeviceStateUP |
| 1143 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1144 | logger.Warnw(ctx, "Ignoring Device indication: UP. Device Missing", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1145 | } |
| 1146 | } |
| 1147 | |
| 1148 | // DeviceDownInd changes device state to down. |
| 1149 | func (va *VoltApplication) DeviceDownInd(device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1150 | logger.Infow(ctx, "Received Device Ind: DOWN", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1151 | if d := va.GetDevice(device); d != nil { |
| 1152 | d.State = controller.DeviceStateDOWN |
| 1153 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1154 | logger.Warnw(ctx, "Ignoring Device indication: DOWN. Device Missing", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1155 | } |
| 1156 | } |
| 1157 | |
| 1158 | // DeviceRebootInd process for handling flow clear flag for device reboot |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1159 | func (va *VoltApplication) DeviceRebootInd(cntx context.Context, device string, serialNum string, southBoundID string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1160 | logger.Infow(ctx, "Received Device Ind: Reboot", log.Fields{"Device": device, "SerialNumber": serialNum, "SouthBoundID": southBoundID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1161 | |
| 1162 | if d := va.GetDevice(device); d != nil { |
| 1163 | if d.State == controller.DeviceStateREBOOTED { |
| 1164 | logger.Warnw(ctx, "Ignoring Device Ind: Reboot, Device already in Reboot state", log.Fields{"Device": device, "SerialNumber": serialNum, "State": d.State}) |
| 1165 | return |
| 1166 | } |
| 1167 | d.State = controller.DeviceStateREBOOTED |
| 1168 | } |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1169 | va.HandleFlowClearFlag(cntx, device, serialNum, southBoundID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | // DeviceDisableInd handles device deactivation process |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1173 | func (va *VoltApplication) DeviceDisableInd(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1174 | logger.Infow(ctx, "Received Device Ind: Disable", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1175 | |
| 1176 | d := va.GetDevice(device) |
| 1177 | if d == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1178 | logger.Warnw(ctx, "Ignoring Device indication: DISABLED. Device Missing", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1179 | return |
| 1180 | } |
| 1181 | |
| 1182 | d.State = controller.DeviceStateDISABLED |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1183 | va.HandleFlowClearFlag(cntx, device, d.SerialNum, d.SouthBoundID) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1184 | } |
| 1185 | |
| 1186 | // ProcessIgmpDSFlowForMvlan for processing Igmp DS flow for device |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1187 | func (va *VoltApplication) ProcessIgmpDSFlowForMvlan(cntx context.Context, d *VoltDevice, mvp *MvlanProfile, addFlow bool) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1188 | logger.Debugw(ctx, "Process IGMP DS Flows for MVlan", log.Fields{"device": d.Name, "Mvlan": mvp.Mvlan, "addFlow": addFlow}) |
| 1189 | portState := false |
| 1190 | p := d.GetPort(d.NniPort) |
| 1191 | if p != nil && p.State == PortStateUp { |
| 1192 | portState = true |
| 1193 | } |
| 1194 | |
| 1195 | if addFlow { |
| 1196 | if portState { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1197 | mvp.pushIgmpMcastFlows(cntx, d.SerialNum) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1198 | } |
| 1199 | } else { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1200 | mvp.removeIgmpMcastFlows(cntx, d.SerialNum) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1201 | } |
| 1202 | } |
| 1203 | |
| 1204 | // ProcessIgmpDSFlowForDevice for processing Igmp DS flow for device |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1205 | func (va *VoltApplication) ProcessIgmpDSFlowForDevice(cntx context.Context, d *VoltDevice, addFlow bool) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1206 | logger.Debugw(ctx, "Process IGMP DS Flows for device", log.Fields{"device": d.Name, "addFlow": addFlow}) |
| 1207 | |
| 1208 | handleIgmpDsFlows := func(key interface{}, value interface{}) bool { |
| 1209 | mvProfile := value.(*MvlanProfile) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1210 | va.ProcessIgmpDSFlowForMvlan(cntx, d, mvProfile, addFlow) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1211 | return true |
| 1212 | } |
| 1213 | va.MvlanProfilesByName.Range(handleIgmpDsFlows) |
| 1214 | } |
| 1215 | |
| 1216 | // GetDeviceFromPort : This is suitable only for access ports as their naming convention |
| 1217 | // makes them unique across all the OLTs. This must be called with |
| 1218 | // port name that is an access port. Currently called from VNETs, attached |
| 1219 | // only to access ports, and the services which are also attached only |
| 1220 | // to access ports |
| 1221 | func (va *VoltApplication) GetDeviceFromPort(port string) (*VoltDevice, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1222 | logger.Debugw(ctx, "Received Get Device From Port", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1223 | va.portLock.Lock() |
| 1224 | defer va.portLock.Unlock() |
| 1225 | var err error |
| 1226 | err = nil |
| 1227 | p, ok := va.PortsDisc.Load(port) |
| 1228 | if !ok { |
| 1229 | return nil, errorCodes.ErrPortNotFound |
| 1230 | } |
| 1231 | d := va.GetDevice(p.(*VoltPort).Device) |
| 1232 | if d == nil { |
| 1233 | err = errorCodes.ErrDeviceNotFound |
| 1234 | } |
| 1235 | return d, err |
| 1236 | } |
| 1237 | |
| 1238 | // GetPortID : This too applies only to access ports. The ports can be indexed |
| 1239 | // purely by their names without the device forming part of the key |
| 1240 | func (va *VoltApplication) GetPortID(port string) (uint32, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1241 | logger.Debugw(ctx, "Received Get Port ID", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1242 | va.portLock.Lock() |
| 1243 | defer va.portLock.Unlock() |
| 1244 | p, ok := va.PortsDisc.Load(port) |
| 1245 | if !ok { |
| 1246 | return 0, errorCodes.ErrPortNotFound |
| 1247 | } |
| 1248 | return p.(*VoltPort).ID, nil |
| 1249 | } |
| 1250 | |
| 1251 | // GetPortName : This too applies only to access ports. The ports can be indexed |
| 1252 | // purely by their names without the device forming part of the key |
| 1253 | func (va *VoltApplication) GetPortName(port uint32) (string, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1254 | logger.Debugw(ctx, "Received Get Port Name", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1255 | va.portLock.Lock() |
| 1256 | defer va.portLock.Unlock() |
| 1257 | var portName string |
| 1258 | va.PortsDisc.Range(func(key interface{}, value interface{}) bool { |
| 1259 | portInfo := value.(*VoltPort) |
| 1260 | if portInfo.ID == port { |
| 1261 | portName = portInfo.Name |
| 1262 | return false |
| 1263 | } |
| 1264 | return true |
| 1265 | }) |
| 1266 | return portName, nil |
| 1267 | } |
| 1268 | |
| 1269 | // GetPonFromUniPort to get Pon info from UniPort |
| 1270 | func (va *VoltApplication) GetPonFromUniPort(port string) (string, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1271 | logger.Debugw(ctx, "Received Get Pon From UniPort", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1272 | uniPortID, err := va.GetPortID(port) |
| 1273 | if err == nil { |
| 1274 | ponPortID := (uniPortID & 0x0FF00000) >> 20 //pon(8) + onu(8) + uni(12) |
| 1275 | return strconv.FormatUint(uint64(ponPortID), 10), nil |
| 1276 | } |
| 1277 | return "", err |
| 1278 | } |
| 1279 | |
| 1280 | // GetPortState : This too applies only to access ports. The ports can be indexed |
| 1281 | // purely by their names without the device forming part of the key |
| 1282 | func (va *VoltApplication) GetPortState(port string) (PortState, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1283 | logger.Debugw(ctx, "Received Get Port State", log.Fields{"Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1284 | va.portLock.Lock() |
| 1285 | defer va.portLock.Unlock() |
| 1286 | p, ok := va.PortsDisc.Load(port) |
| 1287 | if !ok { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1288 | return 0, errors.New("port not configured") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1289 | } |
| 1290 | return p.(*VoltPort).State, nil |
| 1291 | } |
| 1292 | |
| 1293 | // GetIcmpv6Receivers to get Icmp v6 receivers |
| 1294 | func (va *VoltApplication) GetIcmpv6Receivers(device string) []uint32 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1295 | logger.Debugw(ctx, "Get Icmpv6 Receivers", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1296 | var receiverList []uint32 |
| 1297 | receivers, _ := va.Icmpv6Receivers.Load(device) |
| 1298 | if receivers != nil { |
| 1299 | receiverList = receivers.([]uint32) |
| 1300 | } |
| 1301 | return receiverList |
| 1302 | } |
| 1303 | |
| 1304 | // AddIcmpv6Receivers to add Icmp v6 receivers |
| 1305 | func (va *VoltApplication) AddIcmpv6Receivers(device string, portID uint32) []uint32 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1306 | logger.Debugw(ctx, "Received Add Icmpv6 Receivers", log.Fields{"device": device, "portID": portID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1307 | var receiverList []uint32 |
| 1308 | receivers, _ := va.Icmpv6Receivers.Load(device) |
| 1309 | if receivers != nil { |
| 1310 | receiverList = receivers.([]uint32) |
| 1311 | } |
| 1312 | receiverList = append(receiverList, portID) |
| 1313 | va.Icmpv6Receivers.Store(device, receiverList) |
| 1314 | logger.Debugw(ctx, "Receivers after addition", log.Fields{"Receivers": receiverList}) |
| 1315 | return receiverList |
| 1316 | } |
| 1317 | |
| 1318 | // DelIcmpv6Receivers to delete Icmp v6 receievers |
| 1319 | func (va *VoltApplication) DelIcmpv6Receivers(device string, portID uint32) []uint32 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1320 | logger.Debugw(ctx, "Received Add Icmpv6 Receivers", log.Fields{"device": device, "portID": portID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1321 | var receiverList []uint32 |
| 1322 | receivers, _ := va.Icmpv6Receivers.Load(device) |
| 1323 | if receivers != nil { |
| 1324 | receiverList = receivers.([]uint32) |
| 1325 | } |
| 1326 | for i, port := range receiverList { |
| 1327 | if port == portID { |
| 1328 | receiverList = append(receiverList[0:i], receiverList[i+1:]...) |
| 1329 | va.Icmpv6Receivers.Store(device, receiverList) |
| 1330 | break |
| 1331 | } |
| 1332 | } |
| 1333 | logger.Debugw(ctx, "Receivers After deletion", log.Fields{"Receivers": receiverList}) |
| 1334 | return receiverList |
| 1335 | } |
| 1336 | |
| 1337 | // ProcessDevFlowForDevice - Process DS ICMPv6 & ARP flow for provided device and vnet profile |
| 1338 | // device - Device Obj |
| 1339 | // vnet - vnet profile name |
| 1340 | // enabled - vlan enabled/disabled - based on the status, the flow shall be added/removed |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1341 | func (va *VoltApplication) ProcessDevFlowForDevice(cntx context.Context, device *VoltDevice, vnet *VoltVnet, enabled bool) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1342 | logger.Debugw(ctx, "Process Dev Flow For Device", log.Fields{"Device": device, "VnetName": vnet.Name, "Enabled": enabled}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1343 | _, applied := device.ConfiguredVlanForDeviceFlows.Get(VnetKey(vnet.SVlan, vnet.CVlan, 0)) |
| 1344 | if enabled { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1345 | va.PushDevFlowForVlan(cntx, vnet) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1346 | } else if !enabled && applied { |
| 1347 | //va.DeleteDevFlowForVlan(vnet) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1348 | va.DeleteDevFlowForVlanFromDevice(cntx, vnet, device.SerialNum) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1349 | } |
| 1350 | } |
| 1351 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1352 | // NniVlanIndToIgmp - Trigger receiver up indication to all ports with igmp enabled |
| 1353 | // and has the provided mvlan |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1354 | func (va *VoltApplication) NniVlanIndToIgmp(device *VoltDevice, mvp *MvlanProfile) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1355 | logger.Infow(ctx, "Received Nni Vlan Ind To Igmp", log.Fields{"Vlan": mvp.Mvlan}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1356 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1357 | // Trigger nni indication for receiver only for first time |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1358 | if device.IgmpDsFlowAppliedForMvlan[uint16(mvp.Mvlan)] { |
| 1359 | return |
| 1360 | } |
| 1361 | device.Ports.Range(func(key, value interface{}) bool { |
| 1362 | port := key.(string) |
| 1363 | |
| 1364 | if state, _ := va.GetPortState(port); state == PortStateUp { |
| 1365 | vpvs, _ := va.VnetsByPort.Load(port) |
| 1366 | if vpvs == nil { |
| 1367 | return true |
| 1368 | } |
| 1369 | for _, vpv := range vpvs.([]*VoltPortVnet) { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1370 | // Send indication only for subscribers with the received mvlan profile |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1371 | if vpv.IgmpEnabled && vpv.MvlanProfileName == mvp.Name { |
| 1372 | vpv.services.Range(ReceiverUpInd) |
| 1373 | } |
| 1374 | } |
| 1375 | } |
| 1376 | return true |
| 1377 | }) |
| 1378 | } |
| 1379 | |
| 1380 | // PortUpInd : |
| 1381 | // ----------------------------------------------------------------------- |
| 1382 | // Port status change handling |
| 1383 | // ---------------------------------------------------------------------- |
| 1384 | // Port UP indication is passed to all services associated with the port |
| 1385 | // so that the services can configure flows applicable when the port goes |
| 1386 | // up from down state |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1387 | func (va *VoltApplication) PortUpInd(cntx context.Context, device string, port string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1388 | logger.Infow(ctx, "Received Southbound Port Ind: UP", log.Fields{"Device": device, "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1389 | d := va.GetDevice(device) |
| 1390 | |
| 1391 | if d == nil { |
| 1392 | logger.Warnw(ctx, "Device Not Found - Dropping Port Ind: UP", log.Fields{"Device": device, "Port": port}) |
| 1393 | return |
| 1394 | } |
| 1395 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1396 | // Fixme: If Port Update Comes in large numbers, this will result in slow update per device |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1397 | va.portLock.Lock() |
| 1398 | // Do not defer the port mutex unlock here |
| 1399 | // Some of the following func calls needs the port lock, so defering the lock here |
| 1400 | // may lead to dead-lock |
| 1401 | p := d.GetPort(port) |
| 1402 | |
| 1403 | if p == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1404 | logger.Warnw(ctx, "Ignoring Port Ind: UP, Port doesnt exist", log.Fields{"Device": device, "PortName": port, "PortId": p}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1405 | va.portLock.Unlock() |
| 1406 | return |
| 1407 | } |
| 1408 | p.State = PortStateUp |
| 1409 | va.portLock.Unlock() |
| 1410 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1411 | if p.Type == VoltPortTypeNni { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1412 | logger.Debugw(ctx, "Received NNI Port Ind: UP", log.Fields{"Device": device, "PortName": port, "PortId": p.ID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1413 | //va.PushDevFlowForDevice(d) |
| 1414 | //Build Igmp TrapFlowRule |
| 1415 | //va.ProcessIgmpDSFlowForDevice(d, true) |
| 1416 | } |
| 1417 | vpvs, ok := va.VnetsByPort.Load(port) |
| 1418 | if !ok || nil == vpvs || len(vpvs.([]*VoltPortVnet)) == 0 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1419 | logger.Warnw(ctx, "No VNETs on port", log.Fields{"Device": device, "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1420 | //msgbus.ProcessPortInd(msgbus.PortUp, d.SerialNum, p.Name, false, getServiceList(port)) |
| 1421 | return |
| 1422 | } |
| 1423 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1424 | // If NNI port is not UP, do not push Flows |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1425 | if d.NniPort == "" { |
| 1426 | logger.Warnw(ctx, "NNI port not UP. Not sending Port UP Ind for VPVs", log.Fields{"NNI": d.NniPort}) |
| 1427 | return |
| 1428 | } |
| 1429 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1430 | for _, vpv := range vpvs.([]*VoltPortVnet) { |
| 1431 | vpv.VpvLock.Lock() |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1432 | // If no service is activated drop the portUpInd |
Tinoj Joseph | ec742f6 | 2022-09-29 19:11:10 +0530 | [diff] [blame] | 1433 | if vpv.IsServiceActivated(cntx) { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1434 | // Do not trigger indication for the vpv which is already removed from vpv list as |
Tinoj Joseph | ec742f6 | 2022-09-29 19:11:10 +0530 | [diff] [blame] | 1435 | // part of service delete (during the lock wait duration) |
| 1436 | // In that case, the services associated wil be zero |
| 1437 | if vpv.servicesCount.Load() != 0 { |
| 1438 | vpv.PortUpInd(cntx, d, port) |
| 1439 | } |
| 1440 | } else { |
| 1441 | // Service not activated, still attach device to service |
| 1442 | vpv.setDevice(d.Name) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1443 | } |
| 1444 | vpv.VpvLock.Unlock() |
| 1445 | } |
| 1446 | // At the end of processing inform the other entities that |
| 1447 | // are interested in the events |
| 1448 | } |
| 1449 | |
| 1450 | /* |
| 1451 | func getServiceList(port string) map[string]bool { |
| 1452 | serviceList := make(map[string]bool) |
| 1453 | |
| 1454 | getServiceNames := func(key interface{}, value interface{}) bool { |
| 1455 | serviceList[key.(string)] = value.(*VoltService).DsHSIAFlowsApplied |
| 1456 | return true |
| 1457 | } |
| 1458 | |
| 1459 | if vpvs, _ := GetApplication().VnetsByPort.Load(port); vpvs != nil { |
| 1460 | vpvList := vpvs.([]*VoltPortVnet) |
| 1461 | for _, vpv := range vpvList { |
| 1462 | vpv.services.Range(getServiceNames) |
| 1463 | } |
| 1464 | } |
| 1465 | return serviceList |
| 1466 | |
| 1467 | }*/ |
| 1468 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1469 | // ReceiverUpInd - Send receiver up indication for service with Igmp enabled |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1470 | func ReceiverUpInd(key, value interface{}) bool { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1471 | logger.Info(ctx, "Receiver Indication: UP") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1472 | svc := value.(*VoltService) |
| 1473 | var vlan of.VlanType |
| 1474 | |
| 1475 | if !svc.IPAssigned() { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1476 | logger.Warnw(ctx, "IP Not assigned, skipping general query", log.Fields{"Service": svc}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1477 | return false |
| 1478 | } |
| 1479 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1480 | // Send port up indication to igmp only for service with igmp enabled |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1481 | if svc.IgmpEnabled { |
| 1482 | if svc.VlanControl == ONUCVlan || svc.VlanControl == ONUCVlanOLTSVlan { |
| 1483 | vlan = svc.CVlan |
| 1484 | } else { |
| 1485 | vlan = svc.UniVlan |
| 1486 | } |
| 1487 | if device, _ := GetApplication().GetDeviceFromPort(svc.Port); device != nil { |
| 1488 | GetApplication().ReceiverUpInd(device.Name, svc.Port, svc.MvlanProfileName, vlan, svc.Pbits) |
| 1489 | } |
| 1490 | return false |
| 1491 | } |
| 1492 | return true |
| 1493 | } |
| 1494 | |
| 1495 | // PortDownInd : Port down indication is passed on to the services so that the services |
| 1496 | // can make changes at this transition. |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1497 | func (va *VoltApplication) PortDownInd(cntx context.Context, device string, port string) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1498 | logger.Infow(ctx, "Received SouthBound Port Ind: DOWN", log.Fields{"Device": device, "Port": port}) |
| 1499 | d := va.GetDevice(device) |
| 1500 | |
| 1501 | if d == nil { |
| 1502 | logger.Warnw(ctx, "Device Not Found - Dropping Port Ind: DOWN", log.Fields{"Device": device, "Port": port}) |
| 1503 | return |
| 1504 | } |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1505 | // Fixme: If Port Update Comes in large numbers, this will result in slow update per device |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1506 | va.portLock.Lock() |
| 1507 | // Do not defer the port mutex unlock here |
| 1508 | // Some of the following func calls needs the port lock, so defering the lock here |
| 1509 | // may lead to dead-lock |
| 1510 | p := d.GetPort(port) |
| 1511 | if p == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1512 | logger.Warnw(ctx, "Ignoring Port Ind: Down, Port doesnt exist", log.Fields{"Device": device, "PortName": port, "PortId": p}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1513 | va.portLock.Unlock() |
| 1514 | return |
| 1515 | } |
| 1516 | p.State = PortStateDown |
| 1517 | va.portLock.Unlock() |
| 1518 | |
| 1519 | if d.State == controller.DeviceStateREBOOTED { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1520 | logger.Warnw(ctx, "Ignoring Port Ind: Down, Device has been Rebooted", log.Fields{"Device": device, "PortName": port, "PortId": p}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1521 | return |
| 1522 | } |
| 1523 | |
| 1524 | if p.Type == VoltPortTypeNni { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1525 | logger.Debugw(ctx, "Received NNI Port Ind: DOWN", log.Fields{"Device": device, "Port": port}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1526 | va.DeleteDevFlowForDevice(cntx, d) |
| 1527 | va.NniDownInd(cntx, device, d.SerialNum) |
| 1528 | va.RemovePendingGroups(cntx, device, true) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1529 | } |
| 1530 | vpvs, ok := va.VnetsByPort.Load(port) |
| 1531 | if !ok || nil == vpvs || len(vpvs.([]*VoltPortVnet)) == 0 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1532 | logger.Warnw(ctx, "No VNETs on port", log.Fields{"Device": device, "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1533 | //msgbus.ProcessPortInd(msgbus.PortDown, d.SerialNum, p.Name, false, getServiceList(port)) |
| 1534 | return |
| 1535 | } |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 1536 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1537 | for _, vpv := range vpvs.([]*VoltPortVnet) { |
| 1538 | vpv.VpvLock.Lock() |
Sridhar Ravindra | 03aa0bf | 2023-09-12 17:46:40 +0530 | [diff] [blame] | 1539 | vpv.PortDownInd(cntx, device, port, false, false) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1540 | if vpv.IgmpEnabled { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1541 | va.ReceiverDownInd(cntx, device, port) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1542 | } |
| 1543 | vpv.VpvLock.Unlock() |
| 1544 | } |
| 1545 | } |
| 1546 | |
| 1547 | // PacketInInd : |
| 1548 | // ----------------------------------------------------------------------- |
| 1549 | // PacketIn Processing |
| 1550 | // Packet In Indication processing. It arrives with the identities of |
| 1551 | // the device and port on which the packet is received. At first, the |
| 1552 | // packet is decoded and the right processor is called. Currently, we |
| 1553 | // plan to support only DHCP and IGMP. In future, we can add more |
| 1554 | // capabilities as needed |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1555 | func (va *VoltApplication) PacketInInd(cntx context.Context, device string, port string, pkt []byte) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1556 | logger.Infow(ctx, "Received a Packet-In Indication", log.Fields{"Device": device, "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1557 | // Decode the incoming packet |
| 1558 | packetSide := US |
| 1559 | if strings.Contains(port, NNI) { |
| 1560 | packetSide = DS |
| 1561 | } |
| 1562 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1563 | gopkt := gopacket.NewPacket(pkt, layers.LayerTypeEthernet, gopacket.Default) |
| 1564 | |
| 1565 | var dot1qFound = false |
| 1566 | for _, l := range gopkt.Layers() { |
| 1567 | if l.LayerType() == layers.LayerTypeDot1Q { |
| 1568 | dot1qFound = true |
| 1569 | break |
| 1570 | } |
| 1571 | } |
| 1572 | |
| 1573 | if !dot1qFound { |
| 1574 | logger.Debugw(ctx, "Ignoring Received Packet-In Indication without Dot1Q Header", |
| 1575 | log.Fields{"Device": device, "Port": port}) |
| 1576 | return |
| 1577 | } |
| 1578 | |
| 1579 | logger.Debugw(ctx, "Received Southbound Packet In", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
| 1580 | |
| 1581 | // Classify the packet into packet types that we support |
| 1582 | // The supported types are DHCP and IGMP. The DHCP packet is |
| 1583 | // identified by matching the L4 protocol to UDP. The IGMP packet |
| 1584 | // is identified by matching L3 protocol to IGMP |
| 1585 | arpl := gopkt.Layer(layers.LayerTypeARP) |
| 1586 | if arpl != nil { |
| 1587 | if callBack, ok := PacketHandlers[ARP]; ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1588 | callBack(cntx, device, port, gopkt) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1589 | } else { |
| 1590 | logger.Debugw(ctx, "ARP handler is not registered, dropping the packet", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
| 1591 | } |
| 1592 | return |
| 1593 | } |
| 1594 | ipv4l := gopkt.Layer(layers.LayerTypeIPv4) |
| 1595 | if ipv4l != nil { |
| 1596 | ip := ipv4l.(*layers.IPv4) |
| 1597 | |
| 1598 | if ip.Protocol == layers.IPProtocolUDP { |
| 1599 | logger.Debugw(ctx, "Received Southbound UDP ipv4 packet in", log.Fields{"StreamSide": packetSide}) |
| 1600 | dhcpl := gopkt.Layer(layers.LayerTypeDHCPv4) |
| 1601 | if dhcpl != nil { |
| 1602 | if callBack, ok := PacketHandlers[DHCPv4]; ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1603 | callBack(cntx, device, port, gopkt) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1604 | } else { |
| 1605 | logger.Debugw(ctx, "DHCPv4 handler is not registered, dropping the packet", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
| 1606 | } |
| 1607 | } |
| 1608 | } else if ip.Protocol == layers.IPProtocolIGMP { |
| 1609 | logger.Debugw(ctx, "Received Southbound IGMP packet in", log.Fields{"StreamSide": packetSide}) |
| 1610 | if callBack, ok := PacketHandlers[IGMP]; ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1611 | callBack(cntx, device, port, gopkt) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1612 | } else { |
| 1613 | logger.Debugw(ctx, "IGMP handler is not registered, dropping the packet", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
| 1614 | } |
| 1615 | } |
| 1616 | return |
| 1617 | } |
| 1618 | ipv6l := gopkt.Layer(layers.LayerTypeIPv6) |
| 1619 | if ipv6l != nil { |
| 1620 | ip := ipv6l.(*layers.IPv6) |
| 1621 | if ip.NextHeader == layers.IPProtocolUDP { |
| 1622 | logger.Debug(ctx, "Received Southbound UDP ipv6 packet in") |
| 1623 | dhcpl := gopkt.Layer(layers.LayerTypeDHCPv6) |
| 1624 | if dhcpl != nil { |
| 1625 | if callBack, ok := PacketHandlers[DHCPv6]; ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1626 | callBack(cntx, device, port, gopkt) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1627 | } else { |
| 1628 | logger.Debugw(ctx, "DHCPv6 handler is not registered, dropping the packet", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
| 1629 | } |
| 1630 | } |
| 1631 | } |
| 1632 | return |
| 1633 | } |
| 1634 | |
| 1635 | pppoel := gopkt.Layer(layers.LayerTypePPPoE) |
| 1636 | if pppoel != nil { |
| 1637 | logger.Debugw(ctx, "Received Southbound PPPoE packet in", log.Fields{"StreamSide": packetSide}) |
| 1638 | if callBack, ok := PacketHandlers[PPPOE]; ok { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1639 | callBack(cntx, device, port, gopkt) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1640 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1641 | logger.Warnw(ctx, "PPPoE handler is not registered, dropping the packet", log.Fields{"Pkt": hex.EncodeToString(gopkt.Data())}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1642 | } |
| 1643 | } |
| 1644 | } |
| 1645 | |
| 1646 | // GetVlans : This utility gets the VLANs from the packet. The VLANs are |
| 1647 | // used to identify the right service that must process the incoming |
| 1648 | // packet |
| 1649 | func GetVlans(pkt gopacket.Packet) []of.VlanType { |
| 1650 | var vlans []of.VlanType |
| 1651 | for _, l := range pkt.Layers() { |
| 1652 | if l.LayerType() == layers.LayerTypeDot1Q { |
| 1653 | q, ok := l.(*layers.Dot1Q) |
| 1654 | if ok { |
| 1655 | vlans = append(vlans, of.VlanType(q.VLANIdentifier)) |
| 1656 | } |
| 1657 | } |
| 1658 | } |
| 1659 | return vlans |
| 1660 | } |
| 1661 | |
| 1662 | // GetPriority to get priority |
| 1663 | func GetPriority(pkt gopacket.Packet) uint8 { |
| 1664 | for _, l := range pkt.Layers() { |
| 1665 | if l.LayerType() == layers.LayerTypeDot1Q { |
| 1666 | q, ok := l.(*layers.Dot1Q) |
| 1667 | if ok { |
| 1668 | return q.Priority |
| 1669 | } |
| 1670 | } |
| 1671 | } |
| 1672 | return PriorityNone |
| 1673 | } |
| 1674 | |
| 1675 | // HandleFlowClearFlag to handle flow clear flag during reboot |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1676 | func (va *VoltApplication) HandleFlowClearFlag(cntx context.Context, deviceID string, serialNum, southBoundID string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1677 | logger.Infow(ctx, "Clear All flags for Device", log.Fields{"Device": deviceID, "SerialNum": serialNum, "SBID": southBoundID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1678 | dev, ok := va.DevicesDisc.Load(deviceID) |
| 1679 | if ok && dev != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1680 | logger.Debugw(ctx, "Clear Flags for device", log.Fields{"voltDevice": dev.(*VoltDevice).Name}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1681 | dev.(*VoltDevice).icmpv6GroupAdded = false |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1682 | logger.Debugw(ctx, "Clearing DS Icmpv6 Map", |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1683 | log.Fields{"voltDevice": dev.(*VoltDevice).Name}) |
| 1684 | dev.(*VoltDevice).ConfiguredVlanForDeviceFlows = util.NewConcurrentMap() |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1685 | logger.Debugw(ctx, "Clearing DS IGMP Map", |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1686 | log.Fields{"voltDevice": dev.(*VoltDevice).Name}) |
| 1687 | for k := range dev.(*VoltDevice).IgmpDsFlowAppliedForMvlan { |
| 1688 | delete(dev.(*VoltDevice).IgmpDsFlowAppliedForMvlan, k) |
| 1689 | } |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1690 | // Delete group 1 - ICMPv6/ARP group |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1691 | if err := ProcessIcmpv6McGroup(deviceID, true); err != nil { |
| 1692 | logger.Errorw(ctx, "ProcessIcmpv6McGroup failed", log.Fields{"Device": deviceID, "Error": err}) |
| 1693 | } |
| 1694 | } else { |
| 1695 | logger.Warnw(ctx, "VoltDevice not found for device ", log.Fields{"deviceID": deviceID}) |
| 1696 | } |
| 1697 | |
| 1698 | getVpvs := func(key interface{}, value interface{}) bool { |
| 1699 | vpvs := value.([]*VoltPortVnet) |
| 1700 | for _, vpv := range vpvs { |
| 1701 | if vpv.Device == deviceID { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1702 | logger.Debugw(ctx, "Clear Flags for vpv", |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1703 | log.Fields{"device": vpv.Device, "port": vpv.Port, |
| 1704 | "svlan": vpv.SVlan, "cvlan": vpv.CVlan, "univlan": vpv.UniVlan}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1705 | vpv.ClearAllServiceFlags(cntx) |
| 1706 | vpv.ClearAllVpvFlags(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1707 | |
| 1708 | if vpv.IgmpEnabled { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1709 | va.ReceiverDownInd(cntx, vpv.Device, vpv.Port) |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1710 | // Also clear service igmp stats |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1711 | vpv.ClearServiceCounters(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1712 | } |
| 1713 | } |
| 1714 | } |
| 1715 | return true |
| 1716 | } |
| 1717 | va.VnetsByPort.Range(getVpvs) |
| 1718 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1719 | // Clear Static Group |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1720 | va.ReceiverDownInd(cntx, deviceID, StaticPort) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1721 | |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1722 | logger.Infow(ctx, "All flags cleared for device", log.Fields{"Device": deviceID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1723 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1724 | // Reset pending group pool |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1725 | va.RemovePendingGroups(cntx, deviceID, true) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1726 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1727 | // Process all Migrate Service Request - force udpate all profiles since resources are already cleaned up |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1728 | if dev != nil { |
| 1729 | triggerForceUpdate := func(key, value interface{}) bool { |
| 1730 | msrList := value.(*util.ConcurrentMap) |
| 1731 | forceUpdateServices := func(key, value interface{}) bool { |
| 1732 | msr := value.(*MigrateServicesRequest) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1733 | forceUpdateAllServices(cntx, msr) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1734 | return true |
| 1735 | } |
| 1736 | msrList.Range(forceUpdateServices) |
| 1737 | return true |
| 1738 | } |
| 1739 | dev.(*VoltDevice).MigratingServices.Range(triggerForceUpdate) |
| 1740 | } else { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1741 | va.FetchAndProcessAllMigrateServicesReq(cntx, deviceID, forceUpdateAllServices) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1742 | } |
| 1743 | } |
| 1744 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1745 | // GetPonPortIDFromUNIPort to get pon port id from uni port |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1746 | func GetPonPortIDFromUNIPort(uniPortID uint32) uint32 { |
| 1747 | ponPortID := (uniPortID & 0x0FF00000) >> 20 |
| 1748 | return ponPortID |
| 1749 | } |
| 1750 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1751 | // ProcessFlowModResultIndication - Processes Flow mod operation indications from controller |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1752 | func (va *VoltApplication) ProcessFlowModResultIndication(cntx context.Context, flowStatus intf.FlowStatus) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1753 | logger.Debugw(ctx, "Received Flow Mod Result Indication.", log.Fields{"Cookie": flowStatus.Cookie, "Device": flowStatus.Device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1754 | d := va.GetDevice(flowStatus.Device) |
| 1755 | if d == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1756 | logger.Warnw(ctx, "Dropping Flow Mod Indication. Device not found", log.Fields{"Cookie": flowStatus.Cookie, "Device": flowStatus.Device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1757 | return |
| 1758 | } |
| 1759 | |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1760 | cookieExists := ExecuteFlowEvent(cntx, d, flowStatus.Cookie, flowStatus) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1761 | |
| 1762 | if flowStatus.Flow != nil { |
| 1763 | flowAdd := (flowStatus.FlowModType == of.CommandAdd) |
| 1764 | if !cookieExists && !isFlowStatusSuccess(flowStatus.Status, flowAdd) { |
| 1765 | pushFlowFailureNotif(flowStatus) |
| 1766 | } |
| 1767 | } |
| 1768 | } |
| 1769 | |
Sridhar Ravindra | 3ec1423 | 2024-01-01 19:11:48 +0530 | [diff] [blame^] | 1770 | // IsFlowDelThresholdReached - check if the attempts for flow delete has reached threshold or not |
| 1771 | func (va *VoltApplication) IsFlowDelThresholdReached(cntx context.Context, cookie string, device string) bool { |
| 1772 | logger.Debugw(ctx, "Check flow delete threshold", log.Fields{"Cookie": cookie, "Device": device}) |
| 1773 | d := va.GetDevice(device) |
| 1774 | if d == nil { |
| 1775 | logger.Warnw(ctx, "Failed to get device during flow delete threshold check", log.Fields{"Cookie": cookie, "Device": device}) |
| 1776 | return false |
| 1777 | } |
| 1778 | |
| 1779 | flowEventMap, err := d.GetFlowEventRegister(of.CommandDel) |
| 1780 | if err != nil { |
| 1781 | logger.Warnw(ctx, "Flow event map does not exists", log.Fields{"flowMod": of.CommandDel, "Error": err}) |
| 1782 | return false |
| 1783 | } |
| 1784 | flowEventMap.MapLock.Lock() |
| 1785 | var event interface{} |
| 1786 | if event, _ = flowEventMap.Get(cookie); event == nil { |
| 1787 | logger.Warnw(ctx, "Event does not exist during flow delete threshold check", log.Fields{"Cookie": cookie}) |
| 1788 | flowEventMap.MapLock.Unlock() |
| 1789 | return false |
| 1790 | } |
| 1791 | flowEventMap.MapLock.Unlock() |
| 1792 | flowEvent := event.(*FlowEvent) |
| 1793 | vs := flowEvent.eventData.(*VoltService) |
| 1794 | vs.ServiceLock.RLock() |
| 1795 | defer vs.ServiceLock.RUnlock() |
| 1796 | return vs.FlowPushCount[cookie] == controller.GetController().GetMaxFlowRetryAttempt() |
| 1797 | } |
| 1798 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1799 | func pushFlowFailureNotif(flowStatus intf.FlowStatus) { |
| 1800 | subFlow := flowStatus.Flow |
| 1801 | cookie := subFlow.Cookie |
| 1802 | uniPort := cookie >> 16 & 0xFFFFFFFF |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1803 | logger.Warnw(ctx, "Flow Failure Notification", log.Fields{"uniPort": uniPort, "Cookie": cookie}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1804 | } |
| 1805 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1806 | // UpdateMvlanProfilesForDevice to update mvlan profile for device |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1807 | func (va *VoltApplication) UpdateMvlanProfilesForDevice(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1808 | logger.Debugw(ctx, "Received Update Mvlan Profiles For Device", log.Fields{"device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1809 | checkAndAddMvlanUpdateTask := func(key, value interface{}) bool { |
| 1810 | mvp := value.(*MvlanProfile) |
| 1811 | if mvp.IsUpdateInProgressForDevice(device) { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 1812 | mvp.UpdateProfile(cntx, device) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1813 | } |
| 1814 | return true |
| 1815 | } |
| 1816 | va.MvlanProfilesByName.Range(checkAndAddMvlanUpdateTask) |
| 1817 | } |
| 1818 | |
| 1819 | // TaskInfo structure that is used to store the task Info. |
| 1820 | type TaskInfo struct { |
| 1821 | ID string |
| 1822 | Name string |
| 1823 | Timestamp string |
| 1824 | } |
| 1825 | |
| 1826 | // GetTaskList to get task list information. |
| 1827 | func (va *VoltApplication) GetTaskList(device string) map[int]*TaskInfo { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1828 | logger.Debugw(ctx, "Received Get Task List", log.Fields{"device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1829 | taskList := cntlr.GetController().GetTaskList(device) |
| 1830 | taskMap := make(map[int]*TaskInfo) |
| 1831 | for i, task := range taskList { |
| 1832 | taskID := strconv.Itoa(int(task.TaskID())) |
| 1833 | name := task.Name() |
| 1834 | timestamp := task.Timestamp() |
| 1835 | taskInfo := &TaskInfo{ID: taskID, Name: name, Timestamp: timestamp} |
| 1836 | taskMap[i] = taskInfo |
| 1837 | } |
| 1838 | return taskMap |
| 1839 | } |
| 1840 | |
| 1841 | // UpdateDeviceSerialNumberList to update the device serial number list after device serial number is updated for vnet and mvlan |
| 1842 | func (va *VoltApplication) UpdateDeviceSerialNumberList(oldOltSlNo string, newOltSlNo string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1843 | logger.Debugw(ctx, "Update Device Serial Number List", log.Fields{"oldOltSlNo": oldOltSlNo, "newOltSlNo": newOltSlNo}) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 1844 | voltDevice, _ := va.GetDeviceBySerialNo(oldOltSlNo) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1845 | |
| 1846 | if voltDevice != nil { |
| 1847 | // Device is present with old serial number ID |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1848 | logger.Warnw(ctx, "OLT Migration cannot be completed as there are dangling devices", log.Fields{"Serial Number": oldOltSlNo}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1849 | } else { |
| 1850 | logger.Infow(ctx, "No device present with old serial number", log.Fields{"Serial Number": oldOltSlNo}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1851 | // Add Serial Number to Blocked Devices List. |
| 1852 | cntlr.GetController().AddBlockedDevices(oldOltSlNo) |
| 1853 | cntlr.GetController().AddBlockedDevices(newOltSlNo) |
| 1854 | |
| 1855 | updateSlNoForVnet := func(key, value interface{}) bool { |
| 1856 | vnet := value.(*VoltVnet) |
| 1857 | for i, deviceSlNo := range vnet.VnetConfig.DevicesList { |
| 1858 | if deviceSlNo == oldOltSlNo { |
| 1859 | vnet.VnetConfig.DevicesList[i] = newOltSlNo |
| 1860 | logger.Infow(ctx, "device serial number updated for vnet profile", log.Fields{"Updated Serial Number": deviceSlNo, "Previous Serial Number": oldOltSlNo}) |
| 1861 | break |
| 1862 | } |
| 1863 | } |
| 1864 | return true |
| 1865 | } |
| 1866 | |
| 1867 | updateSlNoforMvlan := func(key interface{}, value interface{}) bool { |
| 1868 | mvProfile := value.(*MvlanProfile) |
| 1869 | for deviceSlNo := range mvProfile.DevicesList { |
| 1870 | if deviceSlNo == oldOltSlNo { |
| 1871 | mvProfile.DevicesList[newOltSlNo] = mvProfile.DevicesList[oldOltSlNo] |
| 1872 | delete(mvProfile.DevicesList, oldOltSlNo) |
| 1873 | logger.Infow(ctx, "device serial number updated for mvlan profile", log.Fields{"Updated Serial Number": deviceSlNo, "Previous Serial Number": oldOltSlNo}) |
| 1874 | break |
| 1875 | } |
| 1876 | } |
| 1877 | return true |
| 1878 | } |
| 1879 | |
| 1880 | va.VnetsByName.Range(updateSlNoForVnet) |
| 1881 | va.MvlanProfilesByName.Range(updateSlNoforMvlan) |
| 1882 | |
| 1883 | // Clear the serial number from Blocked Devices List |
| 1884 | cntlr.GetController().DelBlockedDevices(oldOltSlNo) |
| 1885 | cntlr.GetController().DelBlockedDevices(newOltSlNo) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1886 | } |
| 1887 | } |
| 1888 | |
| 1889 | // GetVpvsForDsPkt to get vpv for downstream packets |
| 1890 | func (va *VoltApplication) GetVpvsForDsPkt(cvlan of.VlanType, svlan of.VlanType, clientMAC net.HardwareAddr, |
| 1891 | pbit uint8) ([]*VoltPortVnet, error) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1892 | logger.Debugw(ctx, "Received Get Vpvs For Ds Pkt", log.Fields{"Cvlan": cvlan, "Svlan": svlan, "Mac": clientMAC}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1893 | var matchVPVs []*VoltPortVnet |
| 1894 | findVpv := func(key, value interface{}) bool { |
| 1895 | vpvs := value.([]*VoltPortVnet) |
| 1896 | for _, vpv := range vpvs { |
| 1897 | if vpv.isVlanMatching(cvlan, svlan) && vpv.MatchesPriority(pbit) != nil { |
| 1898 | var subMac net.HardwareAddr |
| 1899 | if NonZeroMacAddress(vpv.MacAddr) { |
| 1900 | subMac = vpv.MacAddr |
| 1901 | } else if vpv.LearntMacAddr != nil && NonZeroMacAddress(vpv.LearntMacAddr) { |
| 1902 | subMac = vpv.LearntMacAddr |
| 1903 | } else { |
| 1904 | matchVPVs = append(matchVPVs, vpv) |
| 1905 | continue |
| 1906 | } |
| 1907 | if util.MacAddrsMatch(subMac, clientMAC) { |
| 1908 | matchVPVs = append([]*VoltPortVnet{}, vpv) |
| 1909 | logger.Infow(ctx, "Matching VPV found", log.Fields{"Port": vpv.Port, "SVLAN": vpv.SVlan, "CVLAN": vpv.CVlan, "UNIVlan": vpv.UniVlan, "MAC": clientMAC}) |
| 1910 | return false |
| 1911 | } |
| 1912 | } |
| 1913 | } |
| 1914 | return true |
| 1915 | } |
| 1916 | va.VnetsByPort.Range(findVpv) |
| 1917 | |
| 1918 | if len(matchVPVs) != 1 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1919 | logger.Errorw(ctx, "No matching VPV found or multiple vpvs found", log.Fields{"Match VPVs": matchVPVs, "MAC": clientMAC}) |
| 1920 | return nil, errors.New("no matching VPV found or multiple vpvs found") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1921 | } |
| 1922 | return matchVPVs, nil |
| 1923 | } |
| 1924 | |
| 1925 | // GetMacInPortMap to get PORT value based on MAC key |
| 1926 | func (va *VoltApplication) GetMacInPortMap(macAddr net.HardwareAddr) string { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1927 | logger.Debugw(ctx, "Received Get PORT value based on MAC key", log.Fields{"MacAddr": macAddr.String()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1928 | if NonZeroMacAddress(macAddr) { |
| 1929 | va.macPortLock.Lock() |
| 1930 | defer va.macPortLock.Unlock() |
| 1931 | if port, ok := va.macPortMap[macAddr.String()]; ok { |
| 1932 | logger.Debugw(ctx, "found-entry-macportmap", log.Fields{"MacAddr": macAddr.String(), "Port": port}) |
| 1933 | return port |
| 1934 | } |
| 1935 | } |
| 1936 | logger.Infow(ctx, "entry-not-found-macportmap", log.Fields{"MacAddr": macAddr.String()}) |
| 1937 | return "" |
| 1938 | } |
| 1939 | |
| 1940 | // UpdateMacInPortMap to update MAC PORT (key value) information in MacPortMap |
| 1941 | func (va *VoltApplication) UpdateMacInPortMap(macAddr net.HardwareAddr, port string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1942 | logger.Debugw(ctx, "Update Macportmap", log.Fields{"MacAddr": macAddr.String(), "Port": port}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1943 | if NonZeroMacAddress(macAddr) { |
| 1944 | va.macPortLock.Lock() |
| 1945 | va.macPortMap[macAddr.String()] = port |
| 1946 | va.macPortLock.Unlock() |
| 1947 | logger.Debugw(ctx, "updated-macportmap", log.Fields{"MacAddr": macAddr.String(), "Port": port}) |
| 1948 | } |
| 1949 | } |
| 1950 | |
| 1951 | // DeleteMacInPortMap to remove MAC key from MacPortMap |
| 1952 | func (va *VoltApplication) DeleteMacInPortMap(macAddr net.HardwareAddr) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 1953 | logger.Debugw(ctx, "Delete Mac from Macportmap", log.Fields{"MacAddr": macAddr.String()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1954 | if NonZeroMacAddress(macAddr) { |
| 1955 | port := va.GetMacInPortMap(macAddr) |
| 1956 | va.macPortLock.Lock() |
| 1957 | delete(va.macPortMap, macAddr.String()) |
| 1958 | va.macPortLock.Unlock() |
| 1959 | logger.Debugw(ctx, "deleted-from-macportmap", log.Fields{"MacAddr": macAddr.String(), "Port": port}) |
| 1960 | } |
| 1961 | } |
| 1962 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1963 | // AddGroupToPendingPool - adds the IgmpGroup with active group table entry to global pending pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1964 | func (va *VoltApplication) AddGroupToPendingPool(ig *IgmpGroup) { |
| 1965 | var grpMap map[*IgmpGroup]bool |
| 1966 | var ok bool |
| 1967 | |
| 1968 | va.PendingPoolLock.Lock() |
| 1969 | defer va.PendingPoolLock.Unlock() |
| 1970 | |
| 1971 | logger.Infow(ctx, "Adding IgmpGroup to Global Pending Pool", log.Fields{"GroupID": ig.GroupID, "GroupName": ig.GroupName, "GroupAddr": ig.GroupAddr, "PendingDevices": len(ig.Devices)}) |
| 1972 | // Do Not Reset any current profile info since group table entry tied to mvlan profile |
| 1973 | // The PonVlan is part of set field in group installed |
| 1974 | // Hence, Group created is always tied to the same mvlan profile until deleted |
| 1975 | |
| 1976 | for device := range ig.Devices { |
| 1977 | key := getPendingPoolKey(ig.Mvlan, device) |
| 1978 | |
| 1979 | if grpMap, ok = va.IgmpPendingPool[key]; !ok { |
| 1980 | grpMap = make(map[*IgmpGroup]bool) |
| 1981 | } |
| 1982 | grpMap[ig] = true |
| 1983 | |
| 1984 | //Add grpObj reference to all associated devices |
| 1985 | va.IgmpPendingPool[key] = grpMap |
| 1986 | } |
| 1987 | } |
| 1988 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 1989 | // RemoveGroupFromPendingPool - removes the group from global pending group pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 1990 | func (va *VoltApplication) RemoveGroupFromPendingPool(device string, ig *IgmpGroup) bool { |
| 1991 | GetApplication().PendingPoolLock.Lock() |
| 1992 | defer GetApplication().PendingPoolLock.Unlock() |
| 1993 | |
| 1994 | logger.Infow(ctx, "Removing IgmpGroup from Global Pending Pool", log.Fields{"Device": device, "GroupID": ig.GroupID, "GroupName": ig.GroupName, "GroupAddr": ig.GroupAddr, "PendingDevices": len(ig.Devices)}) |
| 1995 | |
| 1996 | key := getPendingPoolKey(ig.Mvlan, device) |
| 1997 | if _, ok := va.IgmpPendingPool[key]; ok { |
| 1998 | delete(va.IgmpPendingPool[key], ig) |
| 1999 | return true |
| 2000 | } |
| 2001 | return false |
| 2002 | } |
| 2003 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2004 | // RemoveGroupsFromPendingPool - removes the group from global pending group pool |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2005 | func (va *VoltApplication) RemoveGroupsFromPendingPool(cntx context.Context, device string, mvlan of.VlanType) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2006 | GetApplication().PendingPoolLock.Lock() |
| 2007 | defer GetApplication().PendingPoolLock.Unlock() |
| 2008 | |
| 2009 | logger.Infow(ctx, "Removing IgmpGroups from Global Pending Pool for given Deivce & Mvlan", log.Fields{"Device": device, "Mvlan": mvlan.String()}) |
| 2010 | |
| 2011 | key := getPendingPoolKey(mvlan, device) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2012 | va.RemoveGroupListFromPendingPool(cntx, key) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2013 | } |
| 2014 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2015 | // RemoveGroupListFromPendingPool - removes the groups for provided key |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2016 | // 1. Deletes the group from device |
| 2017 | // 2. Delete the IgmpGroup obj and release the group ID to pool |
| 2018 | // Note: Make sure to obtain PendingPoolLock lock before calling this func |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2019 | func (va *VoltApplication) RemoveGroupListFromPendingPool(cntx context.Context, key string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2020 | logger.Infow(ctx, "Remove GroupList from Pending Pool for ", log.Fields{"key": key}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2021 | if grpMap, ok := va.IgmpPendingPool[key]; ok { |
| 2022 | delete(va.IgmpPendingPool, key) |
| 2023 | for ig := range grpMap { |
| 2024 | for device := range ig.Devices { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2025 | ig.DeleteIgmpGroupDevice(cntx, device) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2026 | } |
| 2027 | } |
| 2028 | } |
| 2029 | } |
| 2030 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2031 | // RemoveGroupDevicesFromPendingPool - removes the group from global pending group pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2032 | func (va *VoltApplication) RemoveGroupDevicesFromPendingPool(ig *IgmpGroup) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2033 | logger.Infow(ctx, "Removing IgmpGroup for all devices from Global Pending Pool", log.Fields{"GroupID": ig.GroupID, "GroupName": ig.GroupName, "GroupAddr": ig.GroupAddr, "PendingDevices": len(ig.Devices)}) |
| 2034 | for device := range ig.PendingGroupForDevice { |
| 2035 | va.RemoveGroupFromPendingPool(device, ig) |
| 2036 | } |
| 2037 | } |
| 2038 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2039 | // GetGroupFromPendingPool - Returns IgmpGroup obj from global pending pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2040 | func (va *VoltApplication) GetGroupFromPendingPool(mvlan of.VlanType, device string) *IgmpGroup { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2041 | var ig *IgmpGroup |
| 2042 | |
| 2043 | va.PendingPoolLock.Lock() |
| 2044 | defer va.PendingPoolLock.Unlock() |
| 2045 | |
| 2046 | key := getPendingPoolKey(mvlan, device) |
| 2047 | logger.Infow(ctx, "Getting IgmpGroup from Global Pending Pool", log.Fields{"Device": device, "Mvlan": mvlan.String(), "Key": key}) |
| 2048 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2049 | // Gets all IgmpGrp Obj for the device |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2050 | grpMap, ok := va.IgmpPendingPool[key] |
| 2051 | if !ok || len(grpMap) == 0 { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2052 | logger.Warnw(ctx, "Matching IgmpGroup not found in Global Pending Pool", log.Fields{"Device": device, "Mvlan": mvlan.String()}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2053 | return nil |
| 2054 | } |
| 2055 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2056 | // Gets a random obj from available grps |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2057 | for ig = range grpMap { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2058 | // Remove grp obj reference from all devices associated in pending pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2059 | for dev := range ig.Devices { |
| 2060 | key := getPendingPoolKey(mvlan, dev) |
| 2061 | delete(va.IgmpPendingPool[key], ig) |
| 2062 | } |
| 2063 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2064 | // Safety check to avoid re-allocating group already in use |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2065 | if ig.NumDevicesActive() == 0 { |
| 2066 | return ig |
| 2067 | } |
| 2068 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2069 | // Iteration will continue only if IG is not allocated |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2070 | } |
| 2071 | return nil |
| 2072 | } |
| 2073 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2074 | // RemovePendingGroups - removes all pending groups for provided reference from global pending pool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2075 | // reference - mvlan/device ID |
| 2076 | // isRefDevice - true - Device as reference |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2077 | // false - Mvlan as reference |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2078 | func (va *VoltApplication) RemovePendingGroups(cntx context.Context, reference string, isRefDevice bool) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2079 | va.PendingPoolLock.Lock() |
| 2080 | defer va.PendingPoolLock.Unlock() |
| 2081 | |
| 2082 | logger.Infow(ctx, "Removing IgmpGroups from Global Pending Pool", log.Fields{"Reference": reference, "isRefDevice": isRefDevice}) |
| 2083 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2084 | // Pending Pool key: "<mvlan>_<DeviceID>"" |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2085 | paramPosition := 0 |
| 2086 | if isRefDevice { |
| 2087 | paramPosition = 1 |
| 2088 | } |
| 2089 | |
| 2090 | // 1.Remove the Entry from pending pool |
| 2091 | // 2.Deletes the group from device |
| 2092 | // 3.Delete the IgmpGroup obj and release the group ID to pool |
| 2093 | for key := range va.IgmpPendingPool { |
| 2094 | keyParams := strings.Split(key, "_") |
| 2095 | if keyParams[paramPosition] == reference { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2096 | va.RemoveGroupListFromPendingPool(cntx, key) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2097 | } |
| 2098 | } |
| 2099 | } |
| 2100 | |
| 2101 | func getPendingPoolKey(mvlan of.VlanType, device string) string { |
| 2102 | return mvlan.String() + "_" + device |
| 2103 | } |
| 2104 | |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2105 | func (va *VoltApplication) removeExpiredGroups(cntx context.Context) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2106 | logger.Info(ctx, "Remove expired Igmp Groups") |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2107 | removeExpiredGroups := func(key interface{}, value interface{}) bool { |
| 2108 | ig := value.(*IgmpGroup) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2109 | ig.removeExpiredGroupFromDevice(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2110 | return true |
| 2111 | } |
| 2112 | va.IgmpGroups.Range(removeExpiredGroups) |
| 2113 | } |
| 2114 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2115 | // TriggerPendingProfileDeleteReq - trigger pending profile delete request |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2116 | func (va *VoltApplication) TriggerPendingProfileDeleteReq(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2117 | logger.Infow(ctx, "Trigger Pending Profile Delete for device", log.Fields{"Device": device}) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2118 | va.TriggerPendingServiceDeactivateReq(cntx, device) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2119 | va.TriggerPendingServiceDeleteReq(cntx, device) |
| 2120 | va.TriggerPendingVpvDeleteReq(cntx, device) |
| 2121 | va.TriggerPendingVnetDeleteReq(cntx, device) |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2122 | logger.Infow(ctx, "All Pending Profile Delete triggered for device", log.Fields{"Device": device}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2123 | } |
| 2124 | |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2125 | // TriggerPendingServiceDeactivateReq - trigger pending service deactivate request |
| 2126 | func (va *VoltApplication) TriggerPendingServiceDeactivateReq(cntx context.Context, device string) { |
| 2127 | logger.Infow(ctx, "Pending Services to be deactivated", log.Fields{"Count": len(va.ServicesToDeactivate)}) |
| 2128 | for serviceName := range va.ServicesToDeactivate { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2129 | logger.Debugw(ctx, "Trigger Service Deactivate", log.Fields{"Service": serviceName}) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2130 | if vs := va.GetService(serviceName); vs != nil { |
| 2131 | if vs.Device == device { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2132 | logger.Infow(ctx, "Triggering Pending Service Deactivate", log.Fields{"Service": vs.Name}) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2133 | vpv := va.GetVnetByPort(vs.Port, vs.SVlan, vs.CVlan, vs.UniVlan) |
| 2134 | if vpv == nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2135 | logger.Warnw(ctx, "Vpv Not found for Service", log.Fields{"vs": vs.Name, "port": vs.Port, "Vnet": vs.VnetID}) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2136 | continue |
| 2137 | } |
| 2138 | |
| 2139 | vpv.DelTrapFlows(cntx) |
| 2140 | vs.DelHsiaFlows(cntx) |
| 2141 | vs.WriteToDb(cntx) |
| 2142 | vpv.ClearServiceCounters(cntx) |
| 2143 | } |
| 2144 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2145 | logger.Warnw(ctx, "Pending Service Not found", log.Fields{"Service": serviceName}) |
Hitesh Chhabra | 64be244 | 2023-06-21 17:06:34 +0530 | [diff] [blame] | 2146 | } |
| 2147 | } |
| 2148 | } |
| 2149 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2150 | // TriggerPendingServiceDeleteReq - trigger pending service delete request |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2151 | func (va *VoltApplication) TriggerPendingServiceDeleteReq(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2152 | logger.Infow(ctx, "Pending Services to be deleted", log.Fields{"Count": len(va.ServicesToDelete)}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2153 | for serviceName := range va.ServicesToDelete { |
| 2154 | logger.Debugw(ctx, "Trigger Service Delete", log.Fields{"Service": serviceName}) |
| 2155 | if vs := va.GetService(serviceName); vs != nil { |
| 2156 | if vs.Device == device { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2157 | logger.Infow(ctx, "Triggering Pending Service delete", log.Fields{"Service": vs.Name}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2158 | vs.DelHsiaFlows(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2159 | if vs.ForceDelete { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2160 | vs.DelFromDb(cntx) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2161 | } |
| 2162 | } |
| 2163 | } else { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2164 | logger.Warnw(ctx, "Pending Service Not found", log.Fields{"Service": serviceName}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2165 | } |
| 2166 | } |
| 2167 | } |
| 2168 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2169 | // TriggerPendingVpvDeleteReq - trigger pending VPV delete request |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2170 | func (va *VoltApplication) TriggerPendingVpvDeleteReq(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2171 | logger.Infow(ctx, "Pending VPVs to be deleted", log.Fields{"Count": len(va.VoltPortVnetsToDelete)}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2172 | for vpv := range va.VoltPortVnetsToDelete { |
| 2173 | if vpv.Device == device { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2174 | logger.Debugw(ctx, "Triggering Pending VPv flow delete", log.Fields{"Port": vpv.Port, "Device": vpv.Device, "Vnet": vpv.VnetName}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2175 | va.DelVnetFromPort(cntx, vpv.Port, vpv) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2176 | } |
| 2177 | } |
| 2178 | } |
| 2179 | |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2180 | // TriggerPendingVnetDeleteReq - trigger pending vnet delete request |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2181 | func (va *VoltApplication) TriggerPendingVnetDeleteReq(cntx context.Context, device string) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2182 | logger.Infow(ctx, "Pending Vnets to be deleted", log.Fields{"Count": len(va.VnetsToDelete)}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2183 | for vnetName := range va.VnetsToDelete { |
| 2184 | if vnetIntf, _ := va.VnetsByName.Load(vnetName); vnetIntf != nil { |
| 2185 | vnet := vnetIntf.(*VoltVnet) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2186 | if d, _ := va.GetDeviceBySerialNo(vnet.PendingDeviceToDelete); d != nil && d.SerialNum == vnet.PendingDeviceToDelete { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2187 | logger.Infow(ctx, "Triggering Pending Vnet flows delete", log.Fields{"Vnet": vnet.Name, "Device": vnet.PendingDeviceToDelete}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 2188 | va.DeleteDevFlowForVlanFromDevice(cntx, vnet, vnet.PendingDeviceToDelete) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2189 | va.deleteVnetConfig(vnet) |
| 2190 | } else { |
Tinoj Joseph | 1d10832 | 2022-07-13 10:07:39 +0530 | [diff] [blame] | 2191 | logger.Warnw(ctx, "Vnet Delete Failed : Device Not Found", log.Fields{"Vnet": vnet.Name, "Device": vnet.PendingDeviceToDelete}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 2192 | } |
| 2193 | } |
| 2194 | } |
| 2195 | } |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 2196 | |
| 2197 | type OltFlowService struct { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 2198 | DefaultTechProfileID int `json:"defaultTechProfileId"` |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 2199 | EnableDhcpOnNni bool `json:"enableDhcpOnNni"` |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 2200 | EnableIgmpOnNni bool `json:"enableIgmpOnNni"` |
| 2201 | EnableEapol bool `json:"enableEapol"` |
| 2202 | EnableDhcpV6 bool `json:"enableDhcpV6"` |
| 2203 | EnableDhcpV4 bool `json:"enableDhcpV4"` |
| 2204 | RemoveFlowsOnDisable bool `json:"removeFlowsOnDisable"` |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 2205 | } |
| 2206 | |
| 2207 | func (va *VoltApplication) UpdateOltFlowService(cntx context.Context, oltFlowService OltFlowService) { |
| 2208 | logger.Infow(ctx, "UpdateOltFlowService", log.Fields{"oldValue": va.OltFlowServiceConfig, "newValue": oltFlowService}) |
| 2209 | va.OltFlowServiceConfig = oltFlowService |
| 2210 | b, err := json.Marshal(va.OltFlowServiceConfig) |
| 2211 | if err != nil { |
| 2212 | logger.Warnw(ctx, "Failed to Marshal OltFlowServiceConfig", log.Fields{"OltFlowServiceConfig": va.OltFlowServiceConfig}) |
| 2213 | return |
| 2214 | } |
| 2215 | _ = db.PutOltFlowService(cntx, string(b)) |
| 2216 | } |
Akash Soni | a824697 | 2023-01-03 10:37:08 +0530 | [diff] [blame] | 2217 | |
Tinoj Joseph | 4ead4e0 | 2023-01-30 03:12:44 +0530 | [diff] [blame] | 2218 | // RestoreOltFlowService to read from the DB and restore olt flow service config |
| 2219 | func (va *VoltApplication) RestoreOltFlowService(cntx context.Context) { |
| 2220 | oltflowService, err := db.GetOltFlowService(cntx) |
| 2221 | if err != nil { |
| 2222 | logger.Warnw(ctx, "Failed to Get OltFlowServiceConfig from DB", log.Fields{"Error": err}) |
| 2223 | return |
| 2224 | } |
| 2225 | err = json.Unmarshal([]byte(oltflowService), &va.OltFlowServiceConfig) |
| 2226 | if err != nil { |
| 2227 | logger.Warn(ctx, "Unmarshal of oltflowService failed") |
| 2228 | return |
| 2229 | } |
| 2230 | logger.Infow(ctx, "updated OltFlowServiceConfig from DB", log.Fields{"OltFlowServiceConfig": va.OltFlowServiceConfig}) |
| 2231 | } |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2232 | |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 2233 | func (va *VoltApplication) UpdateDeviceConfig(cntx context.Context, deviceConfig *DeviceConfig) { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2234 | logger.Infow(ctx, "Received UpdateDeviceConfig", log.Fields{"DeviceInfo": deviceConfig}) |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 2235 | var dc *DeviceConfig |
| 2236 | va.DevicesConfig.Store(deviceConfig.SerialNumber, deviceConfig) |
| 2237 | err := dc.WriteDeviceConfigToDb(cntx, deviceConfig.SerialNumber, deviceConfig) |
| 2238 | if err != nil { |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2239 | logger.Warnw(ctx, "DB update for device config failed", log.Fields{"err": err}) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2240 | } |
Hitesh Chhabra | 2b2347d | 2023-07-31 17:36:48 +0530 | [diff] [blame] | 2241 | logger.Debugw(ctx, "Added OLT configurations", log.Fields{"DeviceInfo": deviceConfig}) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2242 | // If device is already discovered update the VoltDevice structure |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 2243 | device, id := va.GetDeviceBySerialNo(deviceConfig.SerialNumber) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2244 | if device != nil { |
Akash Soni | 87a1907 | 2023-02-28 00:46:59 +0530 | [diff] [blame] | 2245 | device.NniDhcpTrapVid = of.VlanType(deviceConfig.NniDhcpTrapVid) |
Tinoj Joseph | 50d722c | 2022-12-06 22:53:22 +0530 | [diff] [blame] | 2246 | va.DevicesDisc.Store(id, device) |
| 2247 | } |
| 2248 | } |