-
Notifications
You must be signed in to change notification settings - Fork 13
/
udt.go
194 lines (166 loc) · 4.49 KB
/
udt.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Copyright 2019-2024 go-sccp authors. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be
// found in the LICENSE file.
package sccp
import (
"fmt"
"io"
"github.com/wmnsk/go-sccp/params"
)
// UDT represents a SCCP Message Unit Data(UDT).
type UDT struct {
Type MsgType
params.ProtocolClass
Ptr1, Ptr2, Ptr3 uint8
CalledPartyAddress *params.PartyAddress
CallingPartyAddress *params.PartyAddress
DataLength uint8
Data []byte
}
// NewUDT creates a new UDT.
func NewUDT(pcls int, mhandle bool, cdpa, cgpa *params.PartyAddress, data []byte) *UDT {
u := &UDT{
Type: MsgTypeUDT,
ProtocolClass: params.NewProtocolClass(
pcls, mhandle,
),
Ptr1: 3,
CalledPartyAddress: cdpa,
CallingPartyAddress: cgpa,
Data: data,
}
u.Ptr2 = u.Ptr1 + cdpa.Length
u.Ptr3 = u.Ptr2 + cgpa.Length
u.SetLength()
return u
}
// MarshalBinary returns the byte sequence generated from a UDT instance.
func (u *UDT) MarshalBinary() ([]byte, error) {
b := make([]byte, u.MarshalLen())
if err := u.MarshalTo(b); err != nil {
return nil, err
}
return b, nil
}
// MarshalTo puts the byte sequence in the byte array given as b.
// SCCP is dependent on the Pointers when serializing, which means that it might fail when invalid Pointers are set.
func (u *UDT) MarshalTo(b []byte) error {
l := len(b)
if l < 5 {
return io.ErrUnexpectedEOF
}
b[0] = uint8(u.Type)
b[1] = uint8(u.ProtocolClass)
b[2] = u.Ptr1
if n := int(u.Ptr1); l < n {
return io.ErrUnexpectedEOF
}
b[3] = u.Ptr2
if n := int(u.Ptr2 + 3); l < n {
return io.ErrUnexpectedEOF
}
b[4] = u.Ptr3
if n := int(u.Ptr3 + 5); l < n {
return io.ErrUnexpectedEOF
}
if err := u.CalledPartyAddress.MarshalTo(b[5:int(u.Ptr2+3)]); err != nil {
return err
}
if err := u.CallingPartyAddress.MarshalTo(b[int(u.Ptr2+3):int(u.Ptr3+4)]); err != nil {
return err
}
// succeed if the rest of buffer is longer than u.DataLength
b[u.Ptr3+4] = u.DataLength
if offset := int(u.Ptr3 + 5); len(b[offset:]) >= int(u.DataLength) {
copy(b[offset:], u.Data)
return nil
}
return io.ErrUnexpectedEOF
}
// ParseUDT decodes given byte sequence as a SCCP UDT.
func ParseUDT(b []byte) (*UDT, error) {
u := &UDT{}
if err := u.UnmarshalBinary(b); err != nil {
return nil, err
}
return u, nil
}
// UnmarshalBinary sets the values retrieved from byte sequence in a SCCP UDT.
func (u *UDT) UnmarshalBinary(b []byte) error {
l := len(b)
if l <= 5 { // where CdPA starts
return io.ErrUnexpectedEOF
}
u.Type = MsgType(b[0])
u.ProtocolClass = params.ProtocolClass(b[1])
u.Ptr1 = b[2]
if l < int(u.Ptr1) {
return io.ErrUnexpectedEOF
}
u.Ptr2 = b[3]
if l < int(u.Ptr2+3) { // where CgPA starts
return io.ErrUnexpectedEOF
}
u.Ptr3 = b[4]
if l < int(u.Ptr3+5) { // where u.Data starts
return io.ErrUnexpectedEOF
}
var err error
u.CalledPartyAddress, err = params.ParsePartyAddress(b[5:int(u.Ptr2+3)])
if err != nil {
return err
}
u.CallingPartyAddress, err = params.ParsePartyAddress(b[int(u.Ptr2+3):int(u.Ptr3+4)])
if err != nil {
return err
}
// succeed if the rest of buffer is longer than u.DataLength
u.DataLength = b[int(u.Ptr3+4)]
if offset, dataLen := int(u.Ptr3+5), int(u.DataLength); l >= offset+dataLen {
u.Data = b[offset : offset+dataLen]
return nil
}
return io.ErrUnexpectedEOF
}
// MarshalLen returns the serial length.
func (u *UDT) MarshalLen() int {
l := 6
if param := u.CalledPartyAddress; param != nil {
l += param.MarshalLen()
}
if param := u.CallingPartyAddress; param != nil {
l += param.MarshalLen()
}
l += len(u.Data)
return l
}
// SetLength sets the length in Length field.
func (u *UDT) SetLength() {
u.DataLength = uint8(len(u.Data))
}
// String returns the UDT values in human readable format.
func (u *UDT) String() string {
return fmt.Sprintf("{Type: %d, CalledPartyAddress: %v, CallingPartyAddress: %v, DataLength: %d, Data: %x}",
u.Type,
u.CalledPartyAddress,
u.CallingPartyAddress,
u.DataLength,
u.Data,
)
}
// MessageType returns the Message Type in int.
func (u *UDT) MessageType() MsgType {
return MsgTypeUDT
}
// MessageTypeName returns the Message Type in string.
func (u *UDT) MessageTypeName() string {
return "UDT"
}
// CdGT returns the GT in CalledPartyAddress in human readable string.
func (u *UDT) CdGT() string {
return u.CalledPartyAddress.GTString()
}
// CgGT returns the GT in CalledPartyAddress in human readable string.
func (u *UDT) CgGT() string {
return u.CallingPartyAddress.GTString()
}