-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathdb_uptunnel.go
265 lines (224 loc) · 7.17 KB
/
db_uptunnel.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
// SPDX-FileCopyrightText: 2022-present Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
package context
import (
"encoding/json"
"net"
"github.com/omec-project/smf/logger"
"github.com/omec-project/util/idgenerator"
"github.com/omec-project/util/mongoapi"
"go.mongodb.org/mongo-driver/bson"
)
// DataPathPoolInDB type DataPathPoolInDB map[int64]DataPathInDB
type DataPathPoolInDB map[int64]*DataPathInDB
// UPTunnelInDB UPTunnel
type UPTunnelInDB struct {
PathIDGenerator *idgenerator.IDGenerator
DataPathPool DataPathPoolInDB
ANInformation struct {
IPAddress net.IP
TEID uint32
}
}
type DataPathInDB struct {
// Data Path Double Link List
FirstDPNode *DataPathNodeInDB
// meta data
Destination Destination
Activated bool
IsDefaultPath bool
HasBranchingPoint bool
}
type DataPathNodeInDB struct {
// UPF *UPF
ULTunnelInfo *TunnelInfo
DLTunnelInfo *TunnelInfo
DataPathNodeUPFNodeID NodeIDInDB
IsBranchingPoint bool
}
type TunnelInfo struct {
PDR map[string]*PDR
DataPathNodeUPFNodeID NodeIDInDB
TEID uint32
}
type NodeIDInDB struct {
NodeIdValue []byte
NodeIdType uint8 // 0x00001111
}
type PFCPSessionContextInDB struct {
PDRs map[uint16]*PDR
LocalSEID string
RemoteSEID string
NodeID NodeID
}
type PFCPContextInDB map[string]PFCPSessionContextInDB
func GetNodeIDInDB(nodeID NodeID) NodeIDInDB {
return NodeIDInDB(nodeID)
}
func GetNodeID(nodeIDInDB NodeIDInDB) NodeID {
return NodeID(nodeIDInDB)
}
func testEq(a, b []byte) bool {
if len(a) != len(b) {
return false
}
if (len(a) == len(b)) && (len(a) == 0) {
return true
}
for i := range a {
if a[i] != b[i] {
return false
}
}
return true
}
func RecoverTunnel(tunnelInfo *TunnelInfo) (tunnel *GTPTunnel) {
if tunnelInfo != nil {
tunnel = >PTunnel{
TEID: tunnelInfo.TEID,
PDR: tunnelInfo.PDR,
}
var nilValNode *DataPathNode = nil
empty_nodeID := &NodeIDInDB{}
if (tunnelInfo.DataPathNodeUPFNodeID.NodeIdType == empty_nodeID.NodeIdType) && (testEq(tunnelInfo.DataPathNodeUPFNodeID.NodeIdValue, empty_nodeID.NodeIdValue)) {
endPoint := nilValNode
tunnel.SrcEndPoint = endPoint
} else {
endPoint := RecoverFirstDPNode(tunnelInfo.DataPathNodeUPFNodeID)
tunnel.SrcEndPoint = endPoint
}
}
// TBA: recover dst endPoint
return tunnel
}
func RecoverFirstDPNode(nodeIDInDB NodeIDInDB) (dataPathNode *DataPathNode) {
logger.CtxLog.Infoln("in RecoverFirstDPNode")
nodeInDB := GetNodeInDBFromDB(nodeIDInDB)
dataPathNode = &DataPathNode{
IsBranchingPoint: nodeInDB.IsBranchingPoint,
UPF: RetrieveUPFNodeByNodeID(GetNodeID(nodeInDB.DataPathNodeUPFNodeID)),
// UPF: RetrieveUPFNodeByNodeID(GetNodeID(nodeIDInDB)),
}
var nilVal *TunnelInfo = nil
if nodeInDB.ULTunnelInfo != nilVal {
dataPathNode.UpLinkTunnel = RecoverTunnel(nodeInDB.ULTunnelInfo)
}
if nodeInDB.DLTunnelInfo != nilVal {
dataPathNode.DownLinkTunnel = RecoverTunnel(nodeInDB.DLTunnelInfo)
}
logger.CtxLog.Infoln("RecoverFirstDPNode - dataPathNode", dataPathNode)
if nodeInDB.ULTunnelInfo != nilVal {
logger.CtxLog.Infoln("nodeInDB.ULTunnelInfo != nilVal")
dataPathNode.UpLinkTunnel.DestEndPoint = dataPathNode
}
if nodeInDB.DLTunnelInfo != nilVal {
logger.CtxLog.Infoln("nodeInDB.DLTunnelInfo != nilVal")
dataPathNode.DownLinkTunnel.DestEndPoint = dataPathNode
}
return dataPathNode
}
func ToBsonMNodeInDB(data *DataPathNodeInDB) (ret bson.M) {
// Marshal data into json format
tmp, err := json.Marshal(data)
if err != nil {
logger.DataRepoLog.Errorf("ToBsonMNodeInDB marshall error: %v", err)
}
// unmarshal data into bson format
err = json.Unmarshal(tmp, &ret)
if err != nil {
logger.DataRepoLog.Errorf("ToBsonMNodeInDB unmarshall error: %v", err)
}
return
}
func StoreNodeInDB(nodeInDB *DataPathNodeInDB) {
itemBsonA := ToBsonMNodeInDB(nodeInDB)
filter := bson.M{"nodeIDInDB": nodeInDB.DataPathNodeUPFNodeID}
logger.DataRepoLog.Infof("filter: %+v", filter)
_, postErr := mongoapi.CommonDBClient.RestfulAPIPost(NodeInDBCol, filter, itemBsonA)
if postErr != nil {
logger.DataRepoLog.Warnln(postErr)
}
}
func GetNodeInDBFromDB(nodeIDInDB NodeIDInDB) (dataPathNodeInDB *DataPathNodeInDB) {
filter := bson.M{}
filter["nodeIDInDB"] = nodeIDInDB
result, getOneErr := mongoapi.CommonDBClient.RestfulAPIGetOne(NodeInDBCol, filter)
if getOneErr != nil {
logger.DataRepoLog.Warnln(getOneErr)
}
dataPathNodeInDB = new(DataPathNodeInDB)
logger.CtxLog.Infoln("GetNodeInDBFromDB, smf state json:", result)
logger.CtxLog.Infoln("GetNodeInDBFromDB, smf dataPathNodeInDB:", dataPathNodeInDB)
err := json.Unmarshal(mapToByte(result), dataPathNodeInDB)
if err != nil {
logger.DataRepoLog.Errorf("GetNodeInDBFromDB unmarshall error: %v", err)
return nil
}
return dataPathNodeInDB
}
func RecoverDataPathNode(dataPathNodeInDB *DataPathNodeInDB) (dataPathNode *DataPathNode) {
var nilValDpn *DataPathNodeInDB = nil
var nilVarTunnelInfo *TunnelInfo = nil
if dataPathNodeInDB != nilValDpn {
dataPathNode := &DataPathNode{
UPF: RetrieveUPFNodeByNodeID(GetNodeID(dataPathNodeInDB.DataPathNodeUPFNodeID)),
IsBranchingPoint: dataPathNodeInDB.IsBranchingPoint,
}
upLinkTunnel := new(GTPTunnel)
downLinkTunnel := new(GTPTunnel)
uLTunnelInfo := dataPathNodeInDB.ULTunnelInfo
dLTunnelInfo := dataPathNodeInDB.DLTunnelInfo
if uLTunnelInfo != nilVarTunnelInfo {
upLinkTunnel = RecoverTunnel(dataPathNodeInDB.ULTunnelInfo)
dataPathNode.UpLinkTunnel = upLinkTunnel
dataPathNode.UpLinkTunnel.DestEndPoint = dataPathNode
}
if dLTunnelInfo != nilVarTunnelInfo {
downLinkTunnel = RecoverTunnel(dataPathNodeInDB.DLTunnelInfo)
dataPathNode.DownLinkTunnel = downLinkTunnel
dataPathNode.DownLinkTunnel.DestEndPoint = dataPathNode
}
dataPathNode.UpLinkTunnel = upLinkTunnel
dataPathNode.DownLinkTunnel = downLinkTunnel
return dataPathNode
}
return nil
}
func StoreDataPathNode(dataPathNode *DataPathNode) (dataPathNodeInDB *DataPathNodeInDB) {
var nilValDpn *DataPathNode = nil
var nilValTunnel *GTPTunnel = nil
if dataPathNode != nilValDpn {
dataPathNodeInDB := &DataPathNodeInDB{
DataPathNodeUPFNodeID: GetNodeIDInDB(dataPathNode.UPF.NodeID),
IsBranchingPoint: dataPathNode.IsBranchingPoint,
}
uLTunnelInfo := new(TunnelInfo)
dLTunnelInfo := new(TunnelInfo)
upLinkTunnel := dataPathNode.UpLinkTunnel
downLinkTunnel := dataPathNode.DownLinkTunnel
if upLinkTunnel != nilValTunnel {
// store uLTunnelInfo
uLTunnelInfo.TEID = upLinkTunnel.TEID
uLTunnelInfo.PDR = upLinkTunnel.PDR
// upLinkTunnelDEP := upLinkTunnel.DestEndPoint
upLinkTunnelSEP := upLinkTunnel.SrcEndPoint
if upLinkTunnelSEP != nilValDpn {
uLTunnelInfo.DataPathNodeUPFNodeID = GetNodeIDInDB(upLinkTunnelSEP.UPF.NodeID)
}
dataPathNodeInDB.ULTunnelInfo = uLTunnelInfo
}
if downLinkTunnel != nilValTunnel {
dLTunnelInfo.TEID = downLinkTunnel.TEID
dLTunnelInfo.PDR = downLinkTunnel.PDR
dlLinkTunnelSEP := downLinkTunnel.SrcEndPoint
if dlLinkTunnelSEP != nilValDpn {
dLTunnelInfo.DataPathNodeUPFNodeID = GetNodeIDInDB(dlLinkTunnelSEP.UPF.NodeID)
}
dataPathNodeInDB.DLTunnelInfo = dLTunnelInfo
}
StoreNodeInDB(dataPathNodeInDB)
return dataPathNodeInDB
}
return nil
}