Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020-present Open Networking Foundation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 17 | //Package adaptercoreonu provides the utility for onu devices, flows and statistics |
| 18 | package adaptercoreonu |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 19 | |
| 20 | import ( |
| 21 | "context" |
| 22 | "errors" |
| 23 | |
| 24 | //"sync" |
| 25 | //"time" |
| 26 | |
| 27 | gp "github.com/google/gopacket" |
| 28 | "github.com/opencord/omci-lib-go" |
| 29 | me "github.com/opencord/omci-lib-go/generated" |
| 30 | |
| 31 | //"github.com/opencord/voltha-lib-go/v3/pkg/kafka" |
| 32 | "github.com/opencord/voltha-lib-go/v3/pkg/log" |
| 33 | //ic "github.com/opencord/voltha-protos/v3/go/inter_container" |
| 34 | //"github.com/opencord/voltha-protos/v3/go/openflow_13" |
| 35 | //"github.com/opencord/voltha-protos/v3/go/voltha" |
| 36 | ) |
| 37 | |
| 38 | //OmciTestRequest structure holds the information for the OMCI test |
| 39 | type OmciTestRequest struct { |
| 40 | deviceID string |
| 41 | pDevOmciCC *OmciCC |
| 42 | started bool |
| 43 | result bool |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 44 | exclusiveCc bool |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 45 | allowFailure bool |
| 46 | txSeqNo uint16 |
| 47 | verifyDone chan<- bool |
| 48 | } |
| 49 | |
| 50 | //NewOmciTestRequest returns a new instance of OmciTestRequest |
| 51 | func NewOmciTestRequest(ctx context.Context, |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 52 | deviceID string, omciCc *OmciCC, |
| 53 | exclusive bool, allowFailure bool) *OmciTestRequest { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 54 | logger.Debug("omciTestRequest-init") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 55 | var omciTestRequest OmciTestRequest |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 56 | omciTestRequest.deviceID = deviceID |
| 57 | omciTestRequest.pDevOmciCC = omciCc |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 58 | omciTestRequest.started = false |
| 59 | omciTestRequest.result = false |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 60 | omciTestRequest.exclusiveCc = exclusive |
| 61 | omciTestRequest.allowFailure = allowFailure |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 62 | |
| 63 | return &omciTestRequest |
| 64 | } |
| 65 | |
| 66 | // |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 67 | func (oo *OmciTestRequest) PerformOmciTest(ctx context.Context, execChannel chan<- bool) { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 68 | logger.Debug("omciTestRequest-start-test") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 69 | |
| 70 | if oo.pDevOmciCC != nil { |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 71 | oo.verifyDone = execChannel |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 72 | // test functionality is limited to ONU-2G get request for the moment |
| 73 | // without yet checking the received response automatically here (might be improved ??) |
| 74 | tid := oo.pDevOmciCC.GetNextTid(false) |
| 75 | onu2gBaseGet, _ := oo.CreateOnu2gBaseGet(tid) |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 76 | omciRxCallbackPair := CallbackPair{ |
| 77 | cbKey: tid, |
| 78 | cbEntry: CallbackPairEntry{nil, oo.ReceiveOmciVerifyResponse}, |
| 79 | } |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 80 | |
divyadesai | 4d29955 | 2020-08-18 07:13:49 +0000 | [diff] [blame] | 81 | logger.Debugw("performOmciTest-start sending frame", log.Fields{"for device-id": oo.deviceID}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 82 | // send with default timeout and normal prio |
| 83 | go oo.pDevOmciCC.Send(ctx, onu2gBaseGet, ConstDefaultOmciTimeout, 0, false, omciRxCallbackPair) |
| 84 | |
| 85 | } else { |
divyadesai | 4d29955 | 2020-08-18 07:13:49 +0000 | [diff] [blame] | 86 | logger.Errorw("performOmciTest: Device does not exist", log.Fields{"for device-id": oo.deviceID}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 87 | } |
| 88 | } |
| 89 | |
| 90 | // these are OMCI related functions, could/should be collected in a separate file? TODO!!! |
| 91 | // for a simple start just included in here |
| 92 | //basic approach copied from bbsim, cmp /devices/onu.go and /internal/common/omci/mibpackets.go |
| 93 | func (oo *OmciTestRequest) CreateOnu2gBaseGet(tid uint16) ([]byte, error) { |
| 94 | |
| 95 | request := &omci.GetRequest{ |
| 96 | MeBasePacket: omci.MeBasePacket{ |
| 97 | EntityClass: me.Onu2GClassID, |
| 98 | EntityInstance: 0, //there is only the 0 instance of ONU2-G (still hard-coded - TODO!!!) |
| 99 | }, |
| 100 | AttributeMask: 0xE000, //example hardcoded (TODO!!!) request EquId, OmccVersion, VendorCode |
| 101 | } |
| 102 | |
| 103 | oo.txSeqNo = tid |
| 104 | pkt, err := serialize(omci.GetRequestType, request, tid) |
| 105 | if err != nil { |
| 106 | //omciLogger.WithFields(log.Fields{ ... |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 107 | logger.Errorw("Cannot serialize Onu2-G GetRequest", log.Fields{"Err": err}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 108 | return nil, err |
| 109 | } |
| 110 | // hexEncode would probably work as well, but not needed and leads to wrong logs on OltAdapter frame |
| 111 | // return hexEncode(pkt) |
| 112 | return pkt, nil |
| 113 | } |
| 114 | |
Holger Hildebrandt | ccd390c | 2020-05-29 13:49:04 +0000 | [diff] [blame] | 115 | //supply a response handler - in this testobject the message is evaluated directly, no response channel used |
| 116 | func (oo *OmciTestRequest) ReceiveOmciVerifyResponse(omciMsg *omci.OMCI, packet *gp.Packet, respChan chan Message) error { |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 117 | |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 118 | logger.Debugw("verify-omci-message-response received:", log.Fields{"omciMsgType": omciMsg.MessageType, |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 119 | "transCorrId": omciMsg.TransactionID, "DeviceIdent": omciMsg.DeviceIdentifier}) |
| 120 | |
| 121 | if omciMsg.TransactionID == oo.txSeqNo { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 122 | logger.Debugw("verify-omci-message-response", log.Fields{"correct TransCorrId": omciMsg.TransactionID}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 123 | } else { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 124 | logger.Debugw("verify-omci-message-response error", log.Fields{"incorrect TransCorrId": omciMsg.TransactionID, |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 125 | "expected": oo.txSeqNo}) |
| 126 | oo.verifyDone <- false |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 127 | return errors.New("unexpected TransCorrId") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 128 | } |
| 129 | if omciMsg.MessageType == omci.GetResponseType { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 130 | logger.Debugw("verify-omci-message-response", log.Fields{"correct RespType": omciMsg.MessageType}) |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 131 | } else { |
Holger Hildebrandt | 0f9b88d | 2020-04-20 13:33:25 +0000 | [diff] [blame] | 132 | logger.Debugw("verify-omci-message-response error", log.Fields{"incorrect RespType": omciMsg.MessageType, |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 133 | "expected": omci.GetResponseType}) |
| 134 | oo.verifyDone <- false |
Himani Chawla | 4d90833 | 2020-08-31 12:30:20 +0530 | [diff] [blame^] | 135 | return errors.New("unexpected MessageType") |
Holger Hildebrandt | fa07499 | 2020-03-27 15:42:06 +0000 | [diff] [blame] | 136 | } |
| 137 | |
| 138 | //TODO!!! further tests on the payload should be done here ... |
| 139 | |
| 140 | oo.result = true |
| 141 | oo.verifyDone <- true |
| 142 | |
| 143 | return nil |
| 144 | } |