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. |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 14 | */ |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 15 | |
| 16 | package controller |
| 17 | |
| 18 | import ( |
| 19 | "context" |
| 20 | "time" |
| 21 | |
| 22 | "voltha-go-controller/internal/pkg/tasks" |
Tinoj Joseph | 1d10832 | 2022-07-13 10:07:39 +0530 | [diff] [blame] | 23 | "voltha-go-controller/log" |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 24 | |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 25 | "github.com/opencord/voltha-protos/v5/go/common" |
| 26 | ofp "github.com/opencord/voltha-protos/v5/go/openflow_13" |
| 27 | ) |
| 28 | |
| 29 | // AuditEventType type |
| 30 | type AuditEventType uint8 |
| 31 | |
| 32 | const ( |
| 33 | // AuditEventDeviceDisc constant |
| 34 | AuditEventDeviceDisc AuditEventType = 0 |
| 35 | // AuditEventDeviceStateChange constant |
| 36 | AuditEventDeviceStateChange AuditEventType = 1 |
| 37 | ) |
| 38 | |
| 39 | const ( |
| 40 | // NNIPortID NNI port id |
| 41 | NNIPortID uint32 = 0x1000000 |
| 42 | ) |
| 43 | |
| 44 | // AuditDevice structure |
| 45 | type AuditDevice struct { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 46 | ctx context.Context |
| 47 | device *Device |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 48 | timestamp string |
| 49 | event AuditEventType |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 50 | taskID uint8 |
| 51 | stop bool |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | // NewAuditDevice is constructor for AuditDevice |
| 55 | func NewAuditDevice(device *Device, event AuditEventType) *AuditDevice { |
| 56 | var ad AuditDevice |
| 57 | ad.device = device |
| 58 | ad.stop = false |
| 59 | tstamp := (time.Now()).Format(time.RFC3339Nano) |
| 60 | ad.timestamp = tstamp |
| 61 | ad.event = event |
| 62 | return &ad |
| 63 | } |
| 64 | |
| 65 | // Name returns the task name |
| 66 | func (ad *AuditDevice) Name() string { |
| 67 | return "Device Audit Task" |
| 68 | } |
| 69 | |
| 70 | // TaskID returns the task id |
| 71 | func (ad *AuditDevice) TaskID() uint8 { |
| 72 | return ad.taskID |
| 73 | } |
| 74 | |
| 75 | // Timestamp returns the timestamp for the task |
| 76 | func (ad *AuditDevice) Timestamp() string { |
| 77 | return ad.timestamp |
| 78 | } |
| 79 | |
| 80 | // Stop to stop the task |
| 81 | func (ad *AuditDevice) Stop() { |
| 82 | ad.stop = true |
| 83 | } |
| 84 | |
| 85 | // Start to start the task |
| 86 | func (ad *AuditDevice) Start(ctx context.Context, taskID uint8) error { |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 87 | logger.Infow(ctx, "Audit Device Task Triggered", log.Fields{"Context": ctx, "taskId": taskID, "Device": ad.device.ID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 88 | ad.taskID = taskID |
| 89 | ad.ctx = ctx |
| 90 | |
| 91 | if ad.stop { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 92 | logger.Errorw(ctx, "Audit Device Task Canceled", log.Fields{"Context": ad.ctx, "Task": ad.taskID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 93 | return tasks.ErrTaskCancelError |
| 94 | } |
| 95 | |
| 96 | ofpps, err := ad.device.VolthaClient().ListLogicalDevicePorts(ad.ctx, &common.ID{Id: ad.device.ID}) |
| 97 | if err != nil { |
| 98 | return err |
| 99 | } |
| 100 | |
| 101 | // Compute the difference between the ports received and ports at VGC |
| 102 | // First build a map of all the received ports under missing ports. We |
| 103 | // will eliminate the ports that are in the device from the missing ports |
| 104 | // so that the elements remaining are missing ports. The ones that are |
| 105 | // not in missing ports are added to excess ports which should be deleted |
| 106 | // from the VGC. |
| 107 | missingPorts := make(map[uint32]*ofp.OfpPort) |
| 108 | for _, ofpp := range ofpps.Items { |
| 109 | missingPorts[ofpp.OfpPort.PortNo] = ofpp.OfpPort |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 110 | logger.Infow(ctx, "Missing Ports", log.Fields{"Ports": ofpp.OfpPort, "missingPorts": missingPorts}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 111 | } |
| 112 | |
| 113 | var excessPorts []uint32 |
| 114 | GetController().SetAuditFlags(ad.device) |
| 115 | |
| 116 | processPortState := func(id uint32, vgcPort *DevicePort) { |
| 117 | logger.Debugw(ctx, "Process Port State Ind", log.Fields{"Port No": vgcPort.ID, "Port Name": vgcPort.Name}) |
| 118 | |
| 119 | if ofpPort, ok := missingPorts[id]; ok { |
| 120 | if ((vgcPort.State == PortStateDown) && (ofpPort.State == uint32(ofp.OfpPortState_OFPPS_LIVE))) || ((vgcPort.State == PortStateUp) && (ofpPort.State != uint32(ofp.OfpPortState_OFPPS_LIVE))) { |
| 121 | // This port exists in the received list and the map at |
| 122 | // VGC. This is common so delete it |
| 123 | logger.Infow(ctx, "Port State Mismatch", log.Fields{"Port": vgcPort.ID, "OfpPort": ofpPort.PortNo, "ReceivedState": ofpPort.State, "CurrentState": vgcPort.State}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 124 | ad.device.ProcessPortState(ctx, ofpPort.PortNo, ofpPort.State) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 125 | } else { |
| 126 | //To ensure the flows are in sync with port status and no mismatch due to reboot, |
| 127 | // repush/delete flows based on current port status |
| 128 | logger.Infow(ctx, "Port State Processing", log.Fields{"Port": vgcPort.ID, "OfpPort": ofpPort.PortNo, "ReceivedState": ofpPort.State, "CurrentState": vgcPort.State}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 129 | ad.device.ProcessPortStateAfterReboot(ctx, ofpPort.PortNo, ofpPort.State) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 130 | } |
| 131 | delete(missingPorts, id) |
| 132 | } else { |
| 133 | // This port is missing from the received list. This is an |
| 134 | // excess port at VGC. This must be added to excess ports |
| 135 | excessPorts = append(excessPorts, id) |
| 136 | } |
| 137 | logger.Debugw(ctx, "Processed Port State Ind", log.Fields{"Port No": vgcPort.ID, "Port Name": vgcPort.Name}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | // 1st process the NNI port before all other ports so that the device state can be updated. |
| 141 | if vgcPort, ok := ad.device.PortsByID[NNIPortID]; ok { |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 142 | logger.Infow(ctx, "Processing NNI port state", log.Fields{"PortNo": vgcPort.ID, "PortName": vgcPort.Name, "PortState": vgcPort.State}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 143 | processPortState(NNIPortID, vgcPort) |
| 144 | } |
| 145 | |
| 146 | for id, vgcPort := range ad.device.PortsByID { |
| 147 | if id == NNIPortID { |
| 148 | //NNI port already processed |
| 149 | continue |
| 150 | } |
| 151 | if ad.stop { |
| 152 | break |
| 153 | } |
| 154 | processPortState(id, vgcPort) |
| 155 | } |
| 156 | GetController().ResetAuditFlags(ad.device) |
| 157 | |
| 158 | if ad.stop { |
vinokuma | 926cb3e | 2023-03-29 11:41:06 +0530 | [diff] [blame] | 159 | logger.Errorw(ctx, "Audit Device Task Canceled", log.Fields{"Context": ad.ctx, "Task": ad.taskID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 160 | return tasks.ErrTaskCancelError |
| 161 | } |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 162 | ad.AddMissingPorts(ctx, missingPorts) |
| 163 | ad.DelExcessPorts(ctx, excessPorts) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 164 | ad.device.deviceAuditInProgress = false |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 165 | logger.Infow(ctx, "Audit Device Task Completed", log.Fields{"Context": ctx, "taskId": taskID, "Device": ad.device.ID}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 166 | return nil |
| 167 | } |
| 168 | |
| 169 | // AddMissingPorts to add the missing ports |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 170 | func (ad *AuditDevice) AddMissingPorts(cntx context.Context, mps map[uint32]*ofp.OfpPort) { |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 171 | logger.Infow(ctx, "Device Audit - Add Missing Ports", log.Fields{"NumPorts": len(mps), "Ports": mps}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 172 | |
| 173 | addMissingPort := func(mp *ofp.OfpPort) { |
| 174 | logger.Debugw(ctx, "Process Port Add Ind", log.Fields{"Port No": mp.PortNo, "Port Name": mp.Name}) |
| 175 | |
| 176 | // Error is ignored as it only drops duplicate ports |
| 177 | logger.Infow(ctx, "Calling AddPort", log.Fields{"No": mp.PortNo, "Name": mp.Name}) |
Tinoj Joseph | 429b9d9 | 2022-11-16 18:51:05 +0530 | [diff] [blame] | 178 | if err := ad.device.AddPort(cntx, mp); err != nil { |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 179 | logger.Warnw(ctx, "AddPort Failed", log.Fields{"Port No": mp.PortNo, "Port Name": mp.Name, "Reason": err}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 180 | } |
| 181 | if mp.State == uint32(ofp.OfpPortState_OFPPS_LIVE) { |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 182 | ad.device.ProcessPortState(cntx, mp.PortNo, mp.State) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 183 | } |
| 184 | logger.Debugw(ctx, "Processed Port Add Ind", log.Fields{"Port No": mp.PortNo, "Port Name": mp.Name}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 185 | } |
| 186 | |
| 187 | // 1st process the NNI port before all other ports so that the flow provisioning for UNIs can be enabled |
| 188 | if mp, ok := mps[NNIPortID]; ok { |
Akash Soni | 6168f31 | 2023-05-18 20:57:33 +0530 | [diff] [blame] | 189 | logger.Debugw(ctx, "Adding Missing NNI port", log.Fields{"PortNo": mp.PortNo, "Port Name": mp.Name, "Port Status": mp.State}) |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 190 | addMissingPort(mp) |
| 191 | } |
| 192 | |
| 193 | for portNo, mp := range mps { |
| 194 | if portNo != NNIPortID { |
| 195 | addMissingPort(mp) |
| 196 | } |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | // DelExcessPorts to delete the excess ports |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 201 | func (ad *AuditDevice) DelExcessPorts(cntx context.Context, eps []uint32) { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 202 | logger.Debugw(ctx, "Device Audit - Delete Excess Ports", log.Fields{"NumPorts": len(eps)}) |
| 203 | for _, id := range eps { |
| 204 | // Now delete the port from the device @ VGC |
| 205 | logger.Infow(ctx, "Device Audit - Deleting Port", log.Fields{"PortId": id}) |
Tinoj Joseph | 07cc537 | 2022-07-18 22:53:51 +0530 | [diff] [blame] | 206 | if err := ad.device.DelPort(cntx, id); err != nil { |
Naveen Sampath | 04696f7 | 2022-06-13 15:19:14 +0530 | [diff] [blame] | 207 | logger.Warnw(ctx, "DelPort Failed", log.Fields{"PortId": id, "Reason": err}) |
| 208 | } |
| 209 | } |
| 210 | } |