-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathngap_build.go
433 lines (385 loc) · 17 KB
/
ngap_build.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"encoding/binary"
"fmt"
"github.com/omec-project/aper"
"github.com/omec-project/ngap/ngapConvert"
"github.com/omec-project/ngap/ngapType"
"github.com/omec-project/openapi/models"
"github.com/omec-project/smf/qos"
)
const DefaultNonGBR5QI = 9
func BuildPDUSessionResourceSetupRequestTransfer(ctx *SMContext) ([]byte, error) {
ANUPF := ctx.Tunnel.DataPathPool.GetDefaultPath().FirstDPNode
UpNode := ANUPF.UPF
teidOct := make([]byte, 4)
binary.BigEndian.PutUint32(teidOct, ANUPF.UpLinkTunnel.TEID)
resourceSetupRequestTransfer := ngapType.PDUSessionResourceSetupRequestTransfer{}
// PDU Session Aggregate Maximum Bit Rate
// This IE is Conditional and shall be present when at least one NonGBR QoS flow is being setup.
// TODO: should check if there is at least one NonGBR QoS flow
ie := ngapType.PDUSessionResourceSetupRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDPDUSessionAggregateMaximumBitRate
ie.Criticality.Value = ngapType.CriticalityPresentReject
sessRule := ctx.SelectedSessionRule()
if sessRule == nil || sessRule.AuthSessAmbr == nil {
return nil, fmt.Errorf("no PDU Session AMBR")
}
ie.Value = ngapType.PDUSessionResourceSetupRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceSetupRequestTransferIEsPresentPDUSessionAggregateMaximumBitRate,
PDUSessionAggregateMaximumBitRate: &ngapType.PDUSessionAggregateMaximumBitRate{
PDUSessionAggregateMaximumBitRateDL: ngapType.BitRate{
Value: ngapConvert.UEAmbrToInt64(sessRule.AuthSessAmbr.Downlink),
},
PDUSessionAggregateMaximumBitRateUL: ngapType.BitRate{
Value: ngapConvert.UEAmbrToInt64(sessRule.AuthSessAmbr.Uplink),
},
},
}
resourceSetupRequestTransfer.ProtocolIEs.List = append(resourceSetupRequestTransfer.ProtocolIEs.List, ie)
// UL NG-U UP TNL Information
ie = ngapType.PDUSessionResourceSetupRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDULNGUUPTNLInformation
ie.Criticality.Value = ngapType.CriticalityPresentReject
if n3IP, err := UpNode.N3Interfaces[0].IP(ctx.SelectedPDUSessionType); err != nil {
return nil, err
} else {
ie.Value = ngapType.PDUSessionResourceSetupRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceSetupRequestTransferIEsPresentULNGUUPTNLInformation,
ULNGUUPTNLInformation: &ngapType.UPTransportLayerInformation{
Present: ngapType.UPTransportLayerInformationPresentGTPTunnel,
GTPTunnel: &ngapType.GTPTunnel{
TransportLayerAddress: ngapType.TransportLayerAddress{
Value: aper.BitString{
Bytes: n3IP,
BitLength: uint64(len(n3IP) * 8),
},
},
GTPTEID: ngapType.GTPTEID{Value: teidOct},
},
},
}
}
resourceSetupRequestTransfer.ProtocolIEs.List = append(resourceSetupRequestTransfer.ProtocolIEs.List, ie)
// PDU Session Type
ie = ngapType.PDUSessionResourceSetupRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDPDUSessionType
ie.Criticality.Value = ngapType.CriticalityPresentReject
ie.Value = ngapType.PDUSessionResourceSetupRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceSetupRequestTransferIEsPresentPDUSessionType,
PDUSessionType: &ngapType.PDUSessionType{
Value: ngapType.PDUSessionTypePresentIpv4,
},
}
resourceSetupRequestTransfer.ProtocolIEs.List = append(resourceSetupRequestTransfer.ProtocolIEs.List, ie)
// Get Qos Flows
var qosAddFlows map[string]*models.QosData
// Initialise QosFlows with existing Ctxt QosFlows, if any
if len(ctx.SmPolicyData.SmCtxtQosData.QosData) > 0 {
qosAddFlows = ctx.SmPolicyData.SmCtxtQosData.QosData
}
// PCF has provided some update
if len(ctx.SmPolicyUpdates) > 0 {
smPolicyUpdates := ctx.SmPolicyUpdates[0]
if smPolicyUpdates.QosFlowUpdate != nil && smPolicyUpdates.QosFlowUpdate.GetAddQosFlowUpdate() != nil {
qosAddFlows = smPolicyUpdates.QosFlowUpdate.GetAddQosFlowUpdate()
}
}
// QoS Flow Setup Request List
if len(qosAddFlows) > 0 {
ie = ngapType.PDUSessionResourceSetupRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDQosFlowSetupRequestList
ie.Criticality.Value = ngapType.CriticalityPresentReject
var qosFlowsList []ngapType.QosFlowSetupRequestItem
for _, qosFlow := range qosAddFlows {
arpPreemptCap := ngapType.PreEmptionCapabilityPresentMayTriggerPreEmption
if qosFlow.Arp.PreemptCap == models.PreemptionCapability_NOT_PREEMPT {
arpPreemptCap = ngapType.PreEmptionCapabilityPresentShallNotTriggerPreEmption
}
arpPreemptVul := ngapType.PreEmptionVulnerabilityPresentNotPreEmptable
if qosFlow.Arp.PreemptVuln == models.PreemptionVulnerability_PREEMPTABLE {
arpPreemptVul = ngapType.PreEmptionVulnerabilityPresentPreEmptable
}
qosFlowItem := ngapType.QosFlowSetupRequestItem{
QosFlowIdentifier: ngapType.QosFlowIdentifier{Value: int64(qos.GetQosFlowIdFromQosId(qosFlow.QosId))},
QosFlowLevelQosParameters: ngapType.QosFlowLevelQosParameters{
QosCharacteristics: ngapType.QosCharacteristics{
Present: ngapType.QosCharacteristicsPresentNonDynamic5QI,
NonDynamic5QI: &ngapType.NonDynamic5QIDescriptor{
FiveQI: ngapType.FiveQI{
Value: int64(qosFlow.Var5qi),
},
},
},
AllocationAndRetentionPriority: ngapType.AllocationAndRetentionPriority{
PriorityLevelARP: ngapType.PriorityLevelARP{
Value: int64(qosFlow.Arp.PriorityLevel),
},
PreEmptionCapability: ngapType.PreEmptionCapability{
Value: arpPreemptCap,
},
PreEmptionVulnerability: ngapType.PreEmptionVulnerability{
Value: arpPreemptVul,
},
},
},
}
qosFlowsList = append(qosFlowsList, qosFlowItem)
}
ie.Value = ngapType.PDUSessionResourceSetupRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceSetupRequestTransferIEsPresentQosFlowSetupRequestList,
QosFlowSetupRequestList: &ngapType.QosFlowSetupRequestList{
List: qosFlowsList,
},
}
resourceSetupRequestTransfer.ProtocolIEs.List = append(resourceSetupRequestTransfer.ProtocolIEs.List, ie)
}
/*else {
//Do not Delete- Might have to enable default Session rule based flow later
// QoS Flow Setup Request List
// Get QFI from PCF
ie = ngapType.PDUSessionResourceSetupRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDQosFlowSetupRequestList
ie.Criticality.Value = ngapType.CriticalityPresentReject
arpPreemptCap := ngapType.PreEmptionCapabilityPresentMayTriggerPreEmption
if sessRule.AuthDefQos.Arp.PreemptCap == models.PreemptionCapability_NOT_PREEMPT {
arpPreemptCap = ngapType.PreEmptionCapabilityPresentShallNotTriggerPreEmption
}
arpPreemptVul := ngapType.PreEmptionVulnerabilityPresentNotPreEmptable
if sessRule.AuthDefQos.Arp.PreemptVuln == models.PreemptionVulnerability_PREEMPTABLE {
arpPreemptVul = ngapType.PreEmptionVulnerabilityPresentPreEmptable
}
//Default Session Rule
ie.Value = ngapType.PDUSessionResourceSetupRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceSetupRequestTransferIEsPresentQosFlowSetupRequestList,
QosFlowSetupRequestList: &ngapType.QosFlowSetupRequestList{
List: []ngapType.QosFlowSetupRequestItem{
{
QosFlowIdentifier: ngapType.QosFlowIdentifier{
Value: int64(sessRule.AuthDefQos.Var5qi), //DefaultNonGBR5QI,
},
QosFlowLevelQosParameters: ngapType.QosFlowLevelQosParameters{
QosCharacteristics: ngapType.QosCharacteristics{
Present: ngapType.QosCharacteristicsPresentNonDynamic5QI,
NonDynamic5QI: &ngapType.NonDynamic5QIDescriptor{
FiveQI: ngapType.FiveQI{
Value: int64(sessRule.AuthDefQos.Var5qi), //DefaultNonGBR5QI,
},
},
},
AllocationAndRetentionPriority: ngapType.AllocationAndRetentionPriority{
PriorityLevelARP: ngapType.PriorityLevelARP{
Value: int64(sessRule.AuthDefQos.Arp.PriorityLevel), //15,
},
PreEmptionCapability: ngapType.PreEmptionCapability{
Value: arpPreemptCap, //ngapType.PreEmptionCapabilityPresentShallNotTriggerPreEmption,
},
PreEmptionVulnerability: ngapType.PreEmptionVulnerability{
Value: arpPreemptVul, //ngapType.PreEmptionVulnerabilityPresentNotPreEmptable,
},
},
},
},
},
},
}
resourceSetupRequestTransfer.ProtocolIEs.List = append(resourceSetupRequestTransfer.ProtocolIEs.List, ie)
}*/
if buf, err := aper.MarshalWithParams(resourceSetupRequestTransfer, "valueExt"); err != nil {
return nil, fmt.Errorf("encode resourceSetupRequestTransfer failed: %s", err)
} else {
return buf, nil
}
}
func BuildPDUSessionResourceModifyRequestTransfer(ctx *SMContext) ([]byte, error) {
resourceModifyRequestTransfer := ngapType.PDUSessionResourceModifyRequestTransfer{}
// PDU Session Aggregate Maximum Bit Rate
// This IE is Conditional and shall be present when at least one NonGBR QoS flow is being setup.
// TODO: should check if there is at least one NonGBR QoS flow
ie := ngapType.PDUSessionResourceModifyRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDPDUSessionAggregateMaximumBitRate
ie.Criticality.Value = ngapType.CriticalityPresentReject
sessRule := ctx.SelectedSessionRule()
if sessRule == nil || sessRule.AuthSessAmbr == nil {
return nil, fmt.Errorf("no PDU Session AMBR")
}
ie.Value = ngapType.PDUSessionResourceModifyRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceModifyRequestTransferIEsPresentPDUSessionAggregateMaximumBitRate,
PDUSessionAggregateMaximumBitRate: &ngapType.PDUSessionAggregateMaximumBitRate{
PDUSessionAggregateMaximumBitRateDL: ngapType.BitRate{
Value: ngapConvert.UEAmbrToInt64(sessRule.AuthSessAmbr.Downlink),
},
PDUSessionAggregateMaximumBitRateUL: ngapType.BitRate{
Value: ngapConvert.UEAmbrToInt64(sessRule.AuthSessAmbr.Uplink),
},
},
}
resourceModifyRequestTransfer.ProtocolIEs.List = append(resourceModifyRequestTransfer.ProtocolIEs.List, ie)
// QoS Flow Modify Request List
// use Default 5qi, arp
// TODO: Get QFI from PCF/UDM
arpPreemptCap := ngapType.PreEmptionCapabilityPresentMayTriggerPreEmption
if sessRule.AuthDefQos.Arp.PreemptCap == models.PreemptionCapability_NOT_PREEMPT {
arpPreemptCap = ngapType.PreEmptionCapabilityPresentShallNotTriggerPreEmption
}
arpPreemptVul := ngapType.PreEmptionVulnerabilityPresentNotPreEmptable
if sessRule.AuthDefQos.Arp.PreemptVuln == models.PreemptionVulnerability_PREEMPTABLE {
arpPreemptVul = ngapType.PreEmptionVulnerabilityPresentPreEmptable
}
ie = ngapType.PDUSessionResourceModifyRequestTransferIEs{}
ie.Id.Value = ngapType.ProtocolIEIDQosFlowAddOrModifyRequestList
ie.Criticality.Value = ngapType.CriticalityPresentReject
ie.Value = ngapType.PDUSessionResourceModifyRequestTransferIEsValue{
Present: ngapType.PDUSessionResourceModifyRequestTransferIEsPresentQosFlowAddOrModifyRequestList,
QosFlowAddOrModifyRequestList: &ngapType.QosFlowAddOrModifyRequestList{
List: []ngapType.QosFlowAddOrModifyRequestItem{
{
QosFlowIdentifier: ngapType.QosFlowIdentifier{
Value: int64(sessRule.AuthDefQos.Var5qi), // DefaultNonGBR5QI,
},
QosFlowLevelQosParameters: &ngapType.QosFlowLevelQosParameters{
QosCharacteristics: ngapType.QosCharacteristics{
Present: ngapType.QosCharacteristicsPresentNonDynamic5QI,
NonDynamic5QI: &ngapType.NonDynamic5QIDescriptor{
FiveQI: ngapType.FiveQI{
Value: int64(sessRule.AuthDefQos.Var5qi), // DefaultNonGBR5QI,
},
},
},
AllocationAndRetentionPriority: ngapType.AllocationAndRetentionPriority{
PriorityLevelARP: ngapType.PriorityLevelARP{
Value: int64(sessRule.AuthDefQos.Arp.PriorityLevel), // 15,
},
PreEmptionCapability: ngapType.PreEmptionCapability{
Value: arpPreemptCap, // ngapType.PreEmptionCapabilityPresentShallNotTriggerPreEmption,
},
PreEmptionVulnerability: ngapType.PreEmptionVulnerability{
Value: arpPreemptVul, // ngapType.PreEmptionVulnerabilityPresentNotPreEmptable,
},
},
},
},
},
},
}
resourceModifyRequestTransfer.ProtocolIEs.List = append(resourceModifyRequestTransfer.ProtocolIEs.List, ie)
// Encode
if buf, err := aper.MarshalWithParams(resourceModifyRequestTransfer, "valueExt"); err != nil {
return nil, fmt.Errorf("encode resourceModifyRequestTransfer failed: %s", err)
} else {
return buf, nil
}
}
func BuildPDUSessionResourceReleaseCommandTransfer(ctx *SMContext) (buf []byte, err error) {
resourceReleaseCommandTransfer := ngapType.PDUSessionResourceReleaseCommandTransfer{
Cause: ngapType.Cause{
Present: ngapType.CausePresentNas,
Nas: &ngapType.CauseNas{
Value: ngapType.CauseNasPresentNormalRelease,
},
},
}
buf, err = aper.MarshalWithParams(resourceReleaseCommandTransfer, "valueExt")
if err != nil {
return nil, err
}
return
}
// TS 38.413 9.3.4.9
func BuildPathSwitchRequestAcknowledgeTransfer(ctx *SMContext) ([]byte, error) {
ANUPF := ctx.Tunnel.DataPathPool.GetDefaultPath().FirstDPNode
UpNode := ANUPF.UPF
teidOct := make([]byte, 4)
binary.BigEndian.PutUint32(teidOct, ANUPF.UpLinkTunnel.TEID)
pathSwitchRequestAcknowledgeTransfer := ngapType.PathSwitchRequestAcknowledgeTransfer{}
// UL NG-U UP TNL Information(optional) TS 38.413 9.3.2.2
pathSwitchRequestAcknowledgeTransfer.
ULNGUUPTNLInformation = new(ngapType.UPTransportLayerInformation)
ULNGUUPTNLInformation := pathSwitchRequestAcknowledgeTransfer.ULNGUUPTNLInformation
ULNGUUPTNLInformation.Present = ngapType.UPTransportLayerInformationPresentGTPTunnel
ULNGUUPTNLInformation.GTPTunnel = new(ngapType.GTPTunnel)
if n3IP, err := UpNode.N3Interfaces[0].IP(ctx.SelectedPDUSessionType); err != nil {
return nil, err
} else {
gtpTunnel := ULNGUUPTNLInformation.GTPTunnel
gtpTunnel.GTPTEID.Value = teidOct
gtpTunnel.TransportLayerAddress.Value = aper.BitString{
Bytes: n3IP,
BitLength: uint64(len(n3IP) * 8),
}
}
// Security Indication(optional) TS 38.413 9.3.1.27
pathSwitchRequestAcknowledgeTransfer.SecurityIndication = new(ngapType.SecurityIndication)
securityIndication := pathSwitchRequestAcknowledgeTransfer.SecurityIndication
// TODO: use real value
securityIndication.IntegrityProtectionIndication.Value = ngapType.IntegrityProtectionIndicationPresentNotNeeded
// TODO: use real value
securityIndication.ConfidentialityProtectionIndication.Value = ngapType.ConfidentialityProtectionIndicationPresentNotNeeded
integrityProtectionInd := securityIndication.IntegrityProtectionIndication.Value
if integrityProtectionInd == ngapType.IntegrityProtectionIndicationPresentRequired ||
integrityProtectionInd == ngapType.IntegrityProtectionIndicationPresentPreferred {
securityIndication.MaximumIntegrityProtectedDataRateUL = new(ngapType.MaximumIntegrityProtectedDataRate)
// TODO: use real value
securityIndication.MaximumIntegrityProtectedDataRateUL.Value = ngapType.MaximumIntegrityProtectedDataRatePresentBitrate64kbs
}
if buf, err := aper.MarshalWithParams(pathSwitchRequestAcknowledgeTransfer, "valueExt"); err != nil {
return nil, err
} else {
return buf, nil
}
}
func BuildPathSwitchRequestUnsuccessfulTransfer(causePresent int, causeValue aper.Enumerated) (buf []byte, err error) {
pathSwitchRequestUnsuccessfulTransfer := ngapType.PathSwitchRequestUnsuccessfulTransfer{}
pathSwitchRequestUnsuccessfulTransfer.Cause.Present = causePresent
cause := &pathSwitchRequestUnsuccessfulTransfer.Cause
switch causePresent {
case ngapType.CausePresentRadioNetwork:
cause.RadioNetwork = new(ngapType.CauseRadioNetwork)
cause.RadioNetwork.Value = causeValue
case ngapType.CausePresentTransport:
cause.Transport = new(ngapType.CauseTransport)
cause.Transport.Value = causeValue
case ngapType.CausePresentNas:
cause.Nas = new(ngapType.CauseNas)
cause.Nas.Value = causeValue
case ngapType.CausePresentProtocol:
cause.Protocol = new(ngapType.CauseProtocol)
cause.Protocol.Value = causeValue
case ngapType.CausePresentMisc:
cause.Misc = new(ngapType.CauseMisc)
cause.Misc.Value = causeValue
}
buf, err = aper.MarshalWithParams(pathSwitchRequestUnsuccessfulTransfer, "valueExt")
if err != nil {
return nil, err
}
return
}
func BuildHandoverCommandTransfer(ctx *SMContext) ([]byte, error) {
ANUPF := ctx.Tunnel.DataPathPool.GetDefaultPath().FirstDPNode
UpNode := ANUPF.UPF
teidOct := make([]byte, 4)
binary.BigEndian.PutUint32(teidOct, ANUPF.UpLinkTunnel.TEID)
handoverCommandTransfer := ngapType.HandoverCommandTransfer{}
handoverCommandTransfer.DLForwardingUPTNLInformation = new(ngapType.UPTransportLayerInformation)
handoverCommandTransfer.DLForwardingUPTNLInformation.Present = ngapType.UPTransportLayerInformationPresentGTPTunnel
handoverCommandTransfer.DLForwardingUPTNLInformation.GTPTunnel = new(ngapType.GTPTunnel)
if n3IP, err := UpNode.N3Interfaces[0].IP(ctx.SelectedPDUSessionType); err != nil {
return nil, err
} else {
gtpTunnel := handoverCommandTransfer.DLForwardingUPTNLInformation.GTPTunnel
gtpTunnel.GTPTEID.Value = teidOct
gtpTunnel.TransportLayerAddress.Value = aper.BitString{
Bytes: n3IP,
BitLength: uint64(len(n3IP) * 8),
}
}
if buf, err := aper.MarshalWithParams(handoverCommandTransfer, "valueExt"); err != nil {
return nil, err
} else {
return buf, nil
}
}