-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdatapath.go
692 lines (589 loc) · 19.3 KB
/
datapath.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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
// SPDX-FileCopyrightText: 2022-present Intel Corporation
// SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]>
// Copyright 2019 free5GC.org
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"errors"
"fmt"
"strconv"
"github.com/omec-project/openapi/models"
"github.com/omec-project/smf/logger"
"github.com/omec-project/smf/qos"
"github.com/omec-project/smf/util"
"github.com/omec-project/util/util_3gpp"
)
// GTPTunnel represents the GTP tunnel information
type GTPTunnel struct {
SrcEndPoint *DataPathNode
DestEndPoint *DataPathNode
PDR map[string]*PDR
TEID uint32
}
type DataPathNode struct {
UPF *UPF
// DataPathToAN *DataPathDownLink
// DataPathToDN map[string]*DataPathUpLink //uuid to DataPathLink
UpLinkTunnel *GTPTunnel
DownLinkTunnel *GTPTunnel
// for UE Routing Topology
// for special case:
// branching & leafnode
// InUse bool
IsBranchingPoint bool
// DLDataPathLinkForPSA *DataPathUpLink
// BPUpLinkPDRs map[string]*DataPathDownLink // uuid to UpLink
}
type DataPath struct {
// Data Path Double Link List
FirstDPNode *DataPathNode
// meta data
Destination Destination
Activated bool
IsDefaultPath bool
HasBranchingPoint bool
}
type DataPathPool map[int64]*DataPath
type Destination struct {
DestinationIP string
DestinationPort string
Url string
}
func NewDataPathNode() *DataPathNode {
node := &DataPathNode{
UpLinkTunnel: >PTunnel{PDR: make(map[string]*PDR)},
DownLinkTunnel: >PTunnel{PDR: make(map[string]*PDR)},
}
return node
}
func NewDataPath() *DataPath {
dataPath := &DataPath{
Destination: Destination{
DestinationIP: "",
DestinationPort: "",
Url: "",
},
}
return dataPath
}
func NewDataPathPool() DataPathPool {
pool := make(map[int64]*DataPath)
return pool
}
func (node *DataPathNode) AddNext(next *DataPathNode) {
node.DownLinkTunnel.SrcEndPoint = next
}
func (node *DataPathNode) AddPrev(prev *DataPathNode) {
node.UpLinkTunnel.SrcEndPoint = prev
}
func (node *DataPathNode) Next() *DataPathNode {
if node.DownLinkTunnel == nil {
return nil
}
next := node.DownLinkTunnel.SrcEndPoint
return next
}
func (node *DataPathNode) Prev() *DataPathNode {
if node.UpLinkTunnel == nil {
return nil
}
prev := node.UpLinkTunnel.SrcEndPoint
return prev
}
func (node *DataPathNode) ActivateUpLinkTunnel(smContext *SMContext) error {
var err error
var pdr *PDR
var flowQer *QER
logger.CtxLog.Debugln("in ActivateUpLinkTunnel")
node.UpLinkTunnel.SrcEndPoint = node.Prev()
node.UpLinkTunnel.DestEndPoint = node
destUPF := node.UPF
// Iterate through PCC Rules to install PDRs
pccRuleUpdate := smContext.SmPolicyUpdates[0].PccRuleUpdate
if pccRuleUpdate != nil {
addRules := pccRuleUpdate.GetAddPccRuleUpdate()
for name, rule := range addRules {
if pdr, err = destUPF.BuildCreatePdrFromPccRule(rule); err == nil {
// Add PCC Rule Qos Data QER
if flowQer, err = node.CreatePccRuleQer(smContext, rule.RefQosData[0], rule.RefTcData[0]); err == nil {
pdr.QER = append(pdr.QER, flowQer)
}
// Set PDR in Tunnel
node.UpLinkTunnel.PDR[name] = pdr
}
}
} else {
// Default PDR
if pdr, err = destUPF.AddPDR(); err != nil {
logger.CtxLog.Errorln("in ActivateUpLinkTunnel UPF IP:", node.UPF.NodeID.ResolveNodeIdToIp().String())
logger.CtxLog.Errorln("allocate PDR error:", err)
return fmt.Errorf("add PDR failed: %s", err)
} else {
node.UpLinkTunnel.PDR["default"] = pdr
}
}
if err = smContext.PutPDRtoPFCPSession(destUPF.NodeID, node.UpLinkTunnel.PDR); err != nil {
logger.CtxLog.Errorln("put PDR Error:", err)
return err
}
return nil
}
func (node *DataPathNode) ActivateDownLinkTunnel(smContext *SMContext) error {
var err error
var pdr *PDR
var flowQer *QER
node.DownLinkTunnel.SrcEndPoint = node.Next()
node.DownLinkTunnel.DestEndPoint = node
destUPF := node.UPF
// Iterate through PCC Rules to install PDRs
pccRuleUpdate := smContext.SmPolicyUpdates[0].PccRuleUpdate
if pccRuleUpdate != nil {
addRules := pccRuleUpdate.GetAddPccRuleUpdate()
for name, rule := range addRules {
if pdr, err = destUPF.BuildCreatePdrFromPccRule(rule); err == nil {
// Add PCC Rule Qos Data QER
if flowQer, err = node.CreatePccRuleQer(smContext, rule.RefQosData[0], rule.RefTcData[0]); err == nil {
pdr.QER = append(pdr.QER, flowQer)
}
// Set PDR in Tunnel
node.DownLinkTunnel.PDR[name] = pdr
}
}
} else {
// Default PDR
if pdr, err = destUPF.AddPDR(); err != nil {
logger.CtxLog.Errorln("in ActivateDownLinkTunnel UPF IP:", node.UPF.NodeID.ResolveNodeIdToIp().String())
logger.CtxLog.Errorln("allocate PDR Error:", err)
return fmt.Errorf("add PDR failed: %s", err)
} else {
node.DownLinkTunnel.PDR["default"] = pdr
}
}
// Put PDRs in PFCP session
if err = smContext.PutPDRtoPFCPSession(destUPF.NodeID, node.DownLinkTunnel.PDR); err != nil {
logger.CtxLog.Errorln("put PDR error:", err)
return err
}
return nil
}
func (node *DataPathNode) DeactivateUpLinkTunnel(smContext *SMContext) {
for name, pdr := range node.UpLinkTunnel.PDR {
if pdr != nil {
logger.CtxLog.Infof("deactivated UpLinkTunnel PDR name[%v], id[%v]", name, pdr.PDRID)
// Remove PDR from PFCP Session
smContext.RemovePDRfromPFCPSession(node.UPF.NodeID, pdr)
// Remove of UPF
err := node.UPF.RemovePDR(pdr)
if err != nil {
logger.CtxLog.Warnln("deactivated UpLinkTunnel", err)
}
if far := pdr.FAR; far != nil {
err = node.UPF.RemoveFAR(far)
if err != nil {
logger.CtxLog.Warnln("deactivated UpLinkTunnel", err)
}
bar := far.BAR
if bar != nil {
err = node.UPF.RemoveBAR(bar)
if err != nil {
logger.CtxLog.Warnln("deactivated UpLinkTunnel", err)
}
}
}
if qerList := pdr.QER; qerList != nil {
for _, qer := range qerList {
if qer != nil {
err = node.UPF.RemoveQER(qer)
if err != nil {
logger.CtxLog.Warnln("deactivated UpLinkTunnel", err)
}
}
}
}
}
}
node.DownLinkTunnel = >PTunnel{}
}
func (node *DataPathNode) DeactivateDownLinkTunnel(smContext *SMContext) {
for name, pdr := range node.DownLinkTunnel.PDR {
if pdr != nil {
logger.CtxLog.Infof("deactivated DownLinkTunnel PDR name[%v], id[%v]", name, pdr.PDRID)
// Remove PDR from PFCP Session
smContext.RemovePDRfromPFCPSession(node.UPF.NodeID, pdr)
// Remove from UPF
err := node.UPF.RemovePDR(pdr)
if err != nil {
logger.CtxLog.Warnln("deactivated DownLinkTunnel", err)
}
if far := pdr.FAR; far != nil {
err = node.UPF.RemoveFAR(far)
if err != nil {
logger.CtxLog.Warnln("deactivated DownLinkTunnel", err)
}
bar := far.BAR
if bar != nil {
err = node.UPF.RemoveBAR(bar)
if err != nil {
logger.CtxLog.Warnln("deactivated DownLinkTunnel", err)
}
}
}
if qerList := pdr.QER; qerList != nil {
for _, qer := range qerList {
if qer != nil {
err = node.UPF.RemoveQER(qer)
if err != nil {
logger.CtxLog.Warnln("deactivated UpLinkTunnel", err)
}
}
}
}
}
}
node.DownLinkTunnel = >PTunnel{}
}
func (node *DataPathNode) GetUPFID() (id string, err error) {
node_ip := node.GetNodeIP()
var exist bool
if id, exist = smfContext.UserPlaneInformation.UPFsIPtoID[node_ip]; !exist {
AllocateUPFID()
if id, exist = smfContext.UserPlaneInformation.UPFsIPtoID[node_ip]; !exist {
err = fmt.Errorf("UPNode IP %s doesn't exist in smfcfg.yaml", node_ip)
return "", err
}
}
return id, nil
}
func (node *DataPathNode) GetNodeIP() (ip string) {
ip = node.UPF.NodeID.ResolveNodeIdToIp().String()
return
}
func (node *DataPathNode) IsANUPF() bool {
if node.Prev() == nil {
return true
} else {
return false
}
}
func (node *DataPathNode) IsAnchorUPF() bool {
if node.Next() == nil {
return true
} else {
return false
}
}
func (dataPathPool DataPathPool) GetDefaultPath() (dataPath *DataPath) {
for _, path := range dataPathPool {
if path.IsDefaultPath {
dataPath = path
return
}
}
return
}
func (dataPath *DataPath) String() string {
firstDPNode := dataPath.FirstDPNode
var str string
str += "DataPath Meta Information\n"
str += "Activated: " + strconv.FormatBool(dataPath.Activated) + "\n"
str += "IsDefault Path: " + strconv.FormatBool(dataPath.IsDefaultPath) + "\n"
str += "Has Braching Point: " + strconv.FormatBool(dataPath.HasBranchingPoint) + "\n"
str += "Destination IP: " + dataPath.Destination.DestinationIP + "\n"
str += "Destination Port: " + dataPath.Destination.DestinationPort + "\n"
str += "DataPath Routing Information\n"
index := 1
for curDPNode := firstDPNode; curDPNode != nil; curDPNode = curDPNode.Next() {
str += strconv.Itoa(index) + "th Node in the Path\n"
str += "Current UPF IP: " + curDPNode.GetNodeIP() + "\n"
if curDPNode.Prev() != nil {
str += "Previous UPF IP: " + curDPNode.Prev().GetNodeIP() + "\n"
} else {
str += "Previous UPF IP: None\n"
}
if curDPNode.Next() != nil {
str += "Next UPF IP: " + curDPNode.Next().GetNodeIP() + "\n"
} else {
str += "Next UPF IP: None\n"
}
index++
}
return str
}
func (dataPath *DataPath) validateDataPathUpfStatus() error {
firstDPNode := dataPath.FirstDPNode
for curDataPathNode := firstDPNode; curDataPathNode != nil; curDataPathNode = curDataPathNode.Next() {
logger.PduSessLog.Infof("nodes in Data Path [%v] and status [%v]",
curDataPathNode.UPF.NodeID.ResolveNodeIdToIp().String(), curDataPathNode.UPF.UPFStatus.String())
if curDataPathNode.UPF.UPFStatus != AssociatedSetUpSuccess {
logger.PduSessLog.Errorf("UPF [%v] in DataPath not associated",
curDataPathNode.UPF.NodeID.ResolveNodeIdToIp().String())
return errors.New("UPF not associated in DataPath")
}
}
return nil
}
func (dataPath *DataPath) ActivateUlDlTunnel(smContext *SMContext) error {
firstDPNode := dataPath.FirstDPNode
logger.PduSessLog.Debugln("in ActivateTunnelAndPDR")
logger.PduSessLog.Debugln(dataPath.String())
// Activate Tunnels
for curDataPathNode := firstDPNode; curDataPathNode != nil; curDataPathNode = curDataPathNode.Next() {
logger.PduSessLog.Debugln("current DP Node IP:", curDataPathNode.UPF.NodeID.ResolveNodeIdToIp().String())
if err := curDataPathNode.ActivateUpLinkTunnel(smContext); err != nil {
logger.CtxLog.Warnln(err)
return err
}
if err := curDataPathNode.ActivateDownLinkTunnel(smContext); err != nil {
logger.CtxLog.Warnln(err)
return err
}
}
return nil
}
func (dpNode *DataPathNode) CreatePccRuleQer(smContext *SMContext, qosData string, tcData string) (*QER, error) {
smPolicyDec := smContext.SmPolicyUpdates[0].SmPolicyDecision
refQos := qos.GetQoSDataFromPolicyDecision(smPolicyDec, qosData)
tc := qos.GetTcDataFromPolicyDecision(smPolicyDec, tcData)
// Get Flow Status
gateStatus := GateOpen
if tc != nil && tc.FlowStatus == models.FlowStatus_DISABLED {
gateStatus = GateClose
}
var flowQER *QER
if newQER, err := dpNode.UPF.AddQER(); err != nil {
logger.PduSessLog.Errorln("new QER failed")
return nil, err
} else {
newQER.QFI.QFI = qos.GetQosFlowIdFromQosId(refQos.QosId)
// Flow Status
newQER.GateStatus = &GateStatus{
ULGate: gateStatus,
DLGate: gateStatus,
}
// Rates
newQER.MBR = &MBR{
ULMBR: util.BitRateTokbps(refQos.MaxbrUl),
DLMBR: util.BitRateTokbps(refQos.MaxbrDl),
}
flowQER = newQER
}
return flowQER, nil
}
func (dpNode *DataPathNode) CreateSessRuleQer(smContext *SMContext) (*QER, error) {
var flowQER *QER
sessionRule := smContext.SelectedSessionRule()
// Get Default Qos-Data for the session
smPolicyDec := smContext.SmPolicyUpdates[0].SmPolicyDecision
defQosData := qos.GetDefaultQoSDataFromPolicyDecision(smPolicyDec)
if newQER, err := dpNode.UPF.AddQER(); err != nil {
logger.PduSessLog.Errorln("new QER failed")
return nil, err
} else {
newQER.QFI.QFI = qos.GetQosFlowIdFromQosId(defQosData.QosId)
newQER.GateStatus = &GateStatus{
ULGate: GateOpen,
DLGate: GateOpen,
}
newQER.MBR = &MBR{
ULMBR: util.BitRateTokbps(sessionRule.AuthSessAmbr.Uplink),
DLMBR: util.BitRateTokbps(sessionRule.AuthSessAmbr.Downlink),
}
flowQER = newQER
}
return flowQER, nil
}
// ActivateUpLinkPdr
func (dpNode *DataPathNode) ActivateUpLinkPdr(smContext *SMContext, defQER *QER, defPrecedence uint32) error {
ueIpAddr := UEIPAddress{}
if dpNode.UPF.IsUpfSupportUeIpAddrAlloc() {
ueIpAddr.CHV4 = true
} else {
ueIpAddr.V4 = true
ueIpAddr.Ipv4Address = smContext.PDUAddress.Ip.To4()
}
curULTunnel := dpNode.UpLinkTunnel
for name, ULPDR := range curULTunnel.PDR {
ULPDR.QER = append(ULPDR.QER, defQER)
// Set Default precedence
if ULPDR.Precedence == 0 {
ULPDR.Precedence = defPrecedence
}
ULPDR.PDI.SourceInterface = SourceInterface{InterfaceValue: SourceInterfaceAccess}
ULPDR.PDI.LocalFTeid = &FTEID{
Ch: true,
}
ULPDR.PDI.UEIPAddress = &ueIpAddr
ULPDR.PDI.NetworkInstance = util_3gpp.Dnn(smContext.Dnn)
ULPDR.OuterHeaderRemoval = &OuterHeaderRemoval{
OuterHeaderRemovalDescription: OuterHeaderRemovalGtpUUdpIpv4,
}
ULFAR := ULPDR.FAR
ULFAR.ApplyAction = ApplyAction{
Buff: false,
Drop: false,
Dupl: false,
Forw: true,
Nocp: false,
}
ULFAR.ForwardingParameters = &ForwardingParameters{
DestinationInterface: DestinationInterface{
InterfaceValue: DestinationInterfaceCore,
},
NetworkInstance: []byte(smContext.Dnn),
}
if dpNode.IsAnchorUPF() {
ULFAR.ForwardingParameters.
DestinationInterface.InterfaceValue = DestinationInterfaceSgiLanN6Lan
}
if nextULDest := dpNode.Next(); nextULDest != nil {
nextULTunnel := nextULDest.UpLinkTunnel
iface := nextULTunnel.DestEndPoint.UPF.GetInterface(models.UpInterfaceType_N9, smContext.Dnn)
if upIP, err := iface.IP(smContext.SelectedPDUSessionType); err != nil {
logger.CtxLog.Errorf("activate UpLink PDR[%v] failed %v", name, err)
return err
} else {
ULFAR.ForwardingParameters.OuterHeaderCreation = &OuterHeaderCreation{
OuterHeaderCreationDescription: OuterHeaderCreationGtpUUdpIpv4,
Ipv4Address: upIP,
Teid: nextULTunnel.TEID,
}
}
}
logger.CtxLog.Infof("activate UpLink PDR[%v]:[%v]", name, ULPDR)
}
return nil
}
func (dpNode *DataPathNode) ActivateDlLinkPdr(smContext *SMContext, defQER *QER, defPrecedence uint32, dataPath *DataPath) error {
var iface *UPFInterfaceInfo
curDLTunnel := dpNode.DownLinkTunnel
// UPF provided UE ip-addr
ueIpAddr := UEIPAddress{}
if dpNode.UPF.IsUpfSupportUeIpAddrAlloc() {
ueIpAddr.CHV4 = true
} else {
ueIpAddr.V4 = true
ueIpAddr.Ipv4Address = smContext.PDUAddress.Ip.To4()
}
for name, DLPDR := range curDLTunnel.PDR {
logger.CtxLog.Infof("activate Downlink PDR[%v]:[%v]", name, DLPDR)
DLPDR.QER = append(DLPDR.QER, defQER)
if DLPDR.Precedence == 0 {
DLPDR.Precedence = defPrecedence
}
if !dpNode.IsAnchorUPF() {
DLPDR.OuterHeaderRemoval = &OuterHeaderRemoval{
OuterHeaderRemovalDescription: OuterHeaderRemovalGtpUUdpIpv4,
}
}
DLPDR.PDI.SourceInterface = SourceInterface{InterfaceValue: SourceInterfaceCore}
DLPDR.PDI.UEIPAddress = &ueIpAddr
DLFAR := DLPDR.FAR
logger.PduSessLog.Debugln("current DP Node IP:", dpNode.UPF.NodeID.ResolveNodeIdToIp().String())
logger.PduSessLog.Debugln("before DLPDR OuterHeaderCreation")
if nextDLDest := dpNode.Prev(); nextDLDest != nil {
logger.PduSessLog.Debugln("in DLPDR OuterHeaderCreation")
nextDLTunnel := nextDLDest.DownLinkTunnel
DLFAR.ApplyAction = ApplyAction{
Buff: true,
Drop: false,
Dupl: false,
Forw: false,
Nocp: true,
}
iface = nextDLDest.UPF.GetInterface(models.UpInterfaceType_N9, smContext.Dnn)
if upIP, err := iface.IP(smContext.SelectedPDUSessionType); err != nil {
logger.CtxLog.Errorf("activate Downlink PDR[%v] failed %v", name, err)
return err
} else {
DLFAR.ForwardingParameters = &ForwardingParameters{
DestinationInterface: DestinationInterface{InterfaceValue: DestinationInterfaceAccess},
OuterHeaderCreation: &OuterHeaderCreation{
OuterHeaderCreationDescription: OuterHeaderCreationGtpUUdpIpv4,
Ipv4Address: upIP,
Teid: nextDLTunnel.TEID,
},
}
}
} else {
if anIP := smContext.Tunnel.ANInformation.IPAddress; anIP != nil {
ANUPF := dataPath.FirstDPNode
DefaultDLPDR := ANUPF.DownLinkTunnel.PDR["default"] // TODO: Iterate over all PDRs
DLFAR := DefaultDLPDR.FAR
DLFAR.ForwardingParameters = new(ForwardingParameters)
DLFAR.ForwardingParameters.DestinationInterface.InterfaceValue = DestinationInterfaceAccess
DLFAR.ForwardingParameters.NetworkInstance = []byte(smContext.Dnn)
DLFAR.ForwardingParameters.OuterHeaderCreation = new(OuterHeaderCreation)
dlOuterHeaderCreation := DLFAR.ForwardingParameters.OuterHeaderCreation
dlOuterHeaderCreation.OuterHeaderCreationDescription = OuterHeaderCreationGtpUUdpIpv4
dlOuterHeaderCreation.Teid = smContext.Tunnel.ANInformation.TEID
dlOuterHeaderCreation.Ipv4Address = smContext.Tunnel.ANInformation.IPAddress.To4()
}
}
logger.CtxLog.Infof("activate Downlink PDR[%v]:[%v]", name, DLPDR)
}
return nil
}
// ActivateTunnelAndPDR
func (dataPath *DataPath) ActivateTunnelAndPDR(smContext *SMContext, precedence uint32) error {
// Check if UPF association is good
if err := dataPath.validateDataPathUpfStatus(); err != nil {
logger.PduSessLog.Errorln("one or more UPF in DataPath not associated")
return err
}
// Allocate Local SEIDs
smContext.AllocateLocalSEIDForDataPath(dataPath)
// Allocate UL/DL PDRs for the Tunnels
if err := dataPath.ActivateUlDlTunnel(smContext); err != nil {
logger.PduSessLog.Errorf("activate UL/DL tunnel error %v", err.Error())
return err
}
// Activate PDR
for curDataPathNode := dataPath.FirstDPNode; curDataPathNode != nil; curDataPathNode = curDataPathNode.Next() {
// Add flow QER
defQER, err := curDataPathNode.CreateSessRuleQer(smContext)
if err != nil {
return err
}
logger.CtxLog.Debugln("calculate", curDataPathNode.UPF.PFCPAddr().String())
// Setup UpLink PDR
if curDataPathNode.UpLinkTunnel != nil {
if err := curDataPathNode.ActivateUpLinkPdr(smContext, defQER, precedence); err != nil {
logger.CtxLog.Errorf("activate UpLink PDR error %v", err.Error())
}
}
// Setup DownLink PDR
if curDataPathNode.DownLinkTunnel != nil {
if err := curDataPathNode.ActivateDlLinkPdr(smContext, defQER, precedence, dataPath); err != nil {
logger.CtxLog.Errorf("activate DlLink PDR error %v", err.Error())
}
}
ueIpAddr := UEIPAddress{}
if curDataPathNode.UPF.IsUpfSupportUeIpAddrAlloc() {
ueIpAddr.CHV4 = true
} else {
ueIpAddr.V4 = true
ueIpAddr.Ipv4Address = smContext.PDUAddress.Ip.To4()
}
if curDataPathNode.DownLinkTunnel != nil {
if curDataPathNode.DownLinkTunnel.SrcEndPoint == nil {
for _, DNDLPDR := range curDataPathNode.DownLinkTunnel.PDR {
DNDLPDR.PDI.SourceInterface = SourceInterface{InterfaceValue: SourceInterfaceCore}
DNDLPDR.PDI.NetworkInstance = util_3gpp.Dnn(smContext.Dnn)
DNDLPDR.PDI.UEIPAddress = &ueIpAddr
}
}
}
}
dataPath.Activated = true
return nil
}
func (dataPath *DataPath) DeactivateTunnelAndPDR(smContext *SMContext) {
firstDPNode := dataPath.FirstDPNode
// Deactivate Tunnels
for curDataPathNode := firstDPNode; curDataPathNode != nil; curDataPathNode = curDataPathNode.Next() {
curDataPathNode.DeactivateUpLinkTunnel(smContext)
curDataPathNode.DeactivateDownLinkTunnel(smContext)
}
dataPath.Activated = false
}