blob: b6ebe30f86580fd28cf80c226b46b73e9323d8e3 [file] [log] [blame]
Shad Ansari1106b022019-01-16 22:22:35 -08001/*
2 * Copyright 2018-present Open Networking Foundation
3
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7
8 * http://www.apache.org/licenses/LICENSE-2.0
9
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package core
18
Shad Ansari53935c02019-01-17 16:41:45 -080019import "log"
Shad Ansari1106b022019-01-16 22:22:35 -080020
21func OmciSim(intfId uint32, onuId uint32, request []byte) ([]byte, error) {
22 var resp []byte
23
24 transactionId, deviceId, msgType, class, instance, content, err := ParsePkt(request)
25 if err != nil {
Mahir Gunyeled7b07b2019-02-11 12:06:02 -080026 log.Printf("ONU {intfid:%d, onuid:%d} - Cannot parse omci msg", intfId, onuId)
Shad Ansari1106b022019-01-16 22:22:35 -080027 return resp, &OmciError{"Cannot parse omci msg"}
28 }
29
Mahir Gunyeled7b07b2019-02-11 12:06:02 -080030 log.Printf("ONU {intfid:%d, onuid:%d} - OmciRun - transactionId: %d msgType: %d, ME Class: %d, ME Instance: %d",
31 intfId, onuId, transactionId, msgType, class, instance)
Shad Ansari1106b022019-01-16 22:22:35 -080032
33 key := OnuKey{intfId, onuId}
34 if _, ok := OnuOmciStateMap[key]; !ok {
35 OnuOmciStateMap[key] = NewOnuOmciState()
36 }
37
38 if _, ok := Handlers[msgType]; !ok {
Mahir Gunyeled7b07b2019-02-11 12:06:02 -080039 log.Printf("ONU {intfid:%d, onuid:%d} - Ignore omci msg (msgType %d not handled)", intfId, onuId, msgType)
Shad Ansari1106b022019-01-16 22:22:35 -080040 return resp, &OmciError{"Unimplemented omci msg"}
41 }
42
43 resp, err = Handlers[msgType](class, content, key)
44 if err != nil {
Mahir Gunyeled7b07b2019-02-11 12:06:02 -080045 log.Println("ONU {intfid:%d, onuid:%d} - Unable to send a successful response, error:%s", intfId, onuId, err)
Keita NISHIMOTO21853b32019-01-25 19:29:59 +090046 return resp, nil
Shad Ansari1106b022019-01-16 22:22:35 -080047 }
Keita NISHIMOTO21853b32019-01-25 19:29:59 +090048
Zdravko Bozakovf56cca42019-04-29 10:06:47 +020049 // In the OMCI message, first 2-bytes is the Transaction Correlation ID
Shad Ansari1106b022019-01-16 22:22:35 -080050 resp[0] = byte(transactionId >> 8)
51 resp[1] = byte(transactionId & 0xFF)
Zdravko Bozakovf56cca42019-04-29 10:06:47 +020052 resp[2] = 0x2<<4 | byte(msgType) // Upper nibble 0x2 is fixed (0010), Lower nibbles defines the msg type (i.e., mib-upload, mib-upload-next, etc)
Shad Ansari1106b022019-01-16 22:22:35 -080053 resp[3] = deviceId
54
Zdravko Bozakovf56cca42019-04-29 10:06:47 +020055 // for create, get and set
56 if ((msgType & 0xFF) != MibUploadNext) && ((msgType & 0xFF) != MibReset) && ((msgType & 0xFF) != MibUpload) {
Zdravko Bozakovf56cca42019-04-29 10:06:47 +020057 // Common fields for create, get, and set
58 resp[4] = byte(class >> 8)
59 resp[5] = byte(class & 0xFF)
60 resp[6] = byte(instance >> 8)
61 resp[7] = byte(instance & 0xFF)
62 resp[8] = 0 // Result: Command Processed Successfully
63
64 // Hardcoding class specific values for Get
65 if (class == 0x82) && ((msgType & 0x0F) == Get) {
66 resp[9] = 0
67 resp[10] = 0x78
68
69 } else if (class == 0x2F) && ((msgType & 0x0F) == Get) {
70 resp[9] = 0x0F
71 resp[10] = 0xB8
72 } else if (class == 0x138) && ((msgType & 0x0F) == Get) {
73 resp[9] = content[0] // 0xBE
74 resp[10] = 0x00
75 }
76 }
77
78 log.Printf("OMCI-SIM Response %+x\n", resp)
79
Shad Ansari1106b022019-01-16 22:22:35 -080080 return resp, nil
81}