blob: 667fb7f635c422bbf35b061395d0590ea7419cc8 [file] [log] [blame]
/*
* Copyright 2020-present Open Networking Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package l2oam
import (
"github.com/google/gopacket"
)
// GenerateL2switchingDomainActionInletEntryUsDel generates "L2 Switching Domain/Action Delete Inlet entry(for upstream)"
func GenerateL2switchingDomainActionInletEntryUsDel(oc *TomiObjectContext,
tpid []byte, vid []byte, onuID *TomiObjectContext) gopacket.SerializableLayer {
tibitData := &L2switchingDomainRequest{
// IEEE 1904.2
Opcode: 0x03,
// OAM Protocol
Flags: 0x0050,
OAMPDUCode: 0xfe,
OUId: []byte{0x2a, 0xea, 0x15},
// TiBit OLT Management Interface
TOMIOpcode: 0x03,
// Correlation Tag
CTBranch: 0x0c,
CTType: 0x0c7a,
CTLength: 4,
CTInstance: getOltInstance(),
// Object Context
OCBranch: oc.Branch,
OCType: oc.Type,
OCLength: oc.Length,
OCInstance: oc.Instance,
// Vc
VcBranch: 0x5d,
VcLeaf: 0x7002,
VcLength: 21 + uint8(1+1+len(tpid)+1+len(vid)),
// Source OC
SOLength: 5,
SOBranch: 0x0c,
SOType: 0x0011,
SOValLength: 1,
SOInstance: uint8(onuID.Instance),
// TagMatchList
TMLLength: 7,
TMLList: []TpidVid{
{
Length: 3,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 1,
VIdValue: []byte{0x00},
},
{
Length: 2,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 0x80,
VIdValue: []byte{},
},
},
// TagOpPop(UI)
TOPopLength: 1,
TOPopValue: 0x00,
// TagOpSetList
TOSLength: 3,
TOSList: []TpidVid{
{
Length: 2,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 0x80,
VIdValue: []byte{},
},
},
// TagOpPushList
TOPushLength: uint8(1 + 1 + len(tpid) + 1 + len(vid)),
TOPushList: []TpidVid{
{
Length: uint8(1 + len(tpid) + 1 + len(vid)),
TpIDLength: uint8(len(tpid)),
TpIDValue: tpid,
VIdLength: uint8(len(vid)),
VIdValue: vid,
},
},
// End
EndBranch: 0x00,
}
return tibitData
}
// GenerateL2switchingDomainActionInletEntryDsDel generates "L2 Switching Domain/Action Delete Inlet entry(for downstream)"
func GenerateL2switchingDomainActionInletEntryDsDel(oc *TomiObjectContext, tpid []byte, vid []byte) gopacket.SerializableLayer {
tibitData := &L2switchingDomainRequest{
// IEEE 1904.2
Opcode: 0x03,
// OAM Protocol
Flags: 0x0050,
OAMPDUCode: 0xfe,
OUId: []byte{0x2a, 0xea, 0x15},
// TiBit OLT Management Interface
TOMIOpcode: 0x03,
// Correlation Tag
CTBranch: 0x0c,
CTType: 0x0c7a,
CTLength: 4,
CTInstance: getOltInstance(),
// Object Context
OCBranch: oc.Branch,
OCType: oc.Type,
OCLength: oc.Length,
OCInstance: oc.Instance,
// Vc
VcBranch: 0x5d,
VcLeaf: 0x7002,
VcLength: 16 + uint8(1+1+len(tpid)+1+len(vid)+4),
// Source OC
SOLength: 5,
SOBranch: 0x0c,
SOType: 0x0eca,
SOValLength: 1,
SOInstance: 0x00,
// TagMatchList
TMLLength: uint8(1 + 1 + len(tpid) + 1 + len(vid) + 3),
TMLList: []TpidVid{
{
Length: uint8(1 + len(tpid) + 1 + len(vid)),
TpIDLength: uint8(len(tpid)),
TpIDValue: tpid,
VIdLength: uint8(len(vid)),
VIdValue: vid,
},
{
Length: 2,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 0x80,
VIdValue: []byte{},
},
},
// TagOpPop(UI)
TOPopLength: 1,
TOPopValue: 0x01,
// TagOpSetList
TOSLength: 3,
TOSList: []TpidVid{
{
Length: 2,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 0x80,
VIdValue: []byte{},
},
},
// TagOpPushList
TOPushLength: 3,
TOPushList: []TpidVid{
{
Length: 2,
TpIDLength: 0x80,
TpIDValue: []byte{},
VIdLength: 0x80,
VIdValue: []byte{},
},
},
// End
EndBranch: 0x00,
}
return tibitData
}