-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcontext.go
452 lines (377 loc) · 12.7 KB
/
context.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
// 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 (
"fmt"
"net"
"os"
"sync"
"sync/atomic"
"time"
"github.com/google/uuid"
"github.com/omec-project/openapi/Nnrf_NFDiscovery"
"github.com/omec-project/openapi/Nnrf_NFManagement"
"github.com/omec-project/openapi/Nudm_SubscriberDataManagement"
"github.com/omec-project/openapi/models"
"github.com/omec-project/smf/factory"
"github.com/omec-project/smf/logger"
"github.com/omec-project/smf/metrics"
"github.com/omec-project/util/drsm"
)
func init() {
smfContext.NfInstanceID = uuid.New().String()
metrics.SetNfInstanceId(smfContext.NfInstanceID)
}
const (
IPV4 = "IPv4"
)
var smfContext SMFContext
type DrsmCtxts struct {
SeidPool drsm.DrsmInterface
UeIpPool drsm.DrsmInterface
}
type SMFContext struct {
Name string
NfInstanceID string
URIScheme models.UriScheme
BindingIPv4 string
RegisterIPv4 string
UPNodeIDs []NodeID
Key string
PEM string
KeyLog string
SnssaiInfos []SnssaiSmfInfo
NrfUri string
NFManagementClient *Nnrf_NFManagement.APIClient
NFDiscoveryClient *Nnrf_NFDiscovery.APIClient
SubscriberDataManagementClient *Nudm_SubscriberDataManagement.APIClient
UserPlaneInformation *UserPlaneInformation
// Now only "IPv4" supported
// TODO: support "IPv6", "IPv4v6", "Ethernet"
SupportedPDUSessionType string
UEPreConfigPathPool map[string]*UEPreConfigPaths
DrsmCtxts DrsmCtxts
EnterpriseList *map[string]string // map to contain slice-name:enterprise-name
NfStatusSubscriptions sync.Map // map[NfInstanceID]models.NrfSubscriptionData.SubscriptionId
PodIp string
StaticIpInfo *[]factory.StaticIpInfo
CPNodeID NodeID
PFCPPort int
UDMProfile models.NfProfile
NrfCacheEvictionInterval time.Duration
SBIPort int
LocalSEIDCount uint64
EnableNrfCaching bool
// For ULCL
ULCLSupport bool
}
// RetrieveDnnInformation gets the corresponding dnn info from S-NSSAI and DNN
func RetrieveDnnInformation(Snssai models.Snssai, dnn string) *SnssaiSmfDnnInfo {
for _, snssaiInfo := range SMF_Self().SnssaiInfos {
if snssaiInfo.Snssai.Sst == Snssai.Sst && snssaiInfo.Snssai.Sd == Snssai.Sd {
return snssaiInfo.DnnInfos[dnn]
}
}
return nil
}
func AllocateLocalSEID() (uint64, error) {
if factory.SmfConfig.Configuration.EnableDbStore {
if smfContext.DrsmCtxts.SeidPool == nil {
return 0, fmt.Errorf("SEID pool is not initialized")
}
seid32, err := smfContext.DrsmCtxts.SeidPool.AllocateInt32ID()
if err != nil {
logger.CtxLog.Errorf("allocate SEID error: %+v", err)
return 0, err
}
return uint64(seid32), nil
} else {
atomic.AddUint64(&smfContext.LocalSEIDCount, 1)
return smfContext.LocalSEIDCount, nil
}
}
func ReleaseLocalSEID(seid uint64) error {
if factory.SmfConfig.Configuration.EnableDbStore {
seid32 := (int32)(seid)
err := smfContext.DrsmCtxts.SeidPool.ReleaseInt32ID(seid32)
if err != nil {
logger.CtxLog.Errorf("allocate SEID error: %+v", err)
return err
}
}
return nil
}
func InitSmfContext(config *factory.Config) *SMFContext {
if config == nil {
logger.CtxLog.Error("Config is nil")
return nil
}
// Acquire master SMF config lock, no one should update it in parallel,
// until SMF is done updating SMF context
factory.SmfConfigSyncLock.Lock()
defer factory.SmfConfigSyncLock.Unlock()
logger.CtxLog.Infof("smfconfig Info: Version[%s] Description[%s]", config.Info.Version, config.Info.Description)
configuration := config.Configuration
if configuration.SmfName != "" {
smfContext.Name = configuration.SmfName
}
// copy static UE IP Addr config
smfContext.StaticIpInfo = &configuration.StaticIpInfo
sbi := configuration.Sbi
localIp := GetLocalIP()
logger.CtxLog.Infof("sbi lb - localIp %v", localIp)
if sbi == nil {
logger.CtxLog.Errorln("Configuration needs \"sbi\" value")
return nil
} else {
smfContext.URIScheme = models.UriScheme(sbi.Scheme)
smfContext.RegisterIPv4 = factory.SMF_DEFAULT_IPV4 // default localhost
smfContext.SBIPort = factory.SMF_DEFAULT_PORT_INT // default port
if sbi.RegisterIPv4 != "" {
// smfContext.RegisterIPv4 = sbi.RegisterIPv4
sbi.RegisterIPv4 = localIp
smfContext.RegisterIPv4 = localIp
logger.CtxLog.Info("sbi lb - changing smf sbi.RegisterIPv4 ", sbi.RegisterIPv4)
logger.CtxLog.Info("sbi lb - smf smfContext.RegisterIPv4 ", smfContext.RegisterIPv4)
}
if sbi.Port != 0 {
smfContext.SBIPort = sbi.Port
}
if tls := sbi.TLS; tls != nil {
if tls.Key != "" {
smfContext.Key = tls.Key
}
if tls.PEM != "" {
smfContext.PEM = tls.PEM
}
}
smfContext.BindingIPv4 = os.Getenv(sbi.BindingIPv4)
if smfContext.BindingIPv4 != "" {
logger.CtxLog.Info("Parsing ServerIPv4 address from ENV Variable.")
} else {
smfContext.BindingIPv4 = sbi.BindingIPv4
if smfContext.BindingIPv4 == "" {
logger.CtxLog.Warn("Error parsing ServerIPv4 address as string. Using the 0.0.0.0 address as default.")
smfContext.BindingIPv4 = "0.0.0.0"
}
}
}
if configuration.NrfUri != "" {
smfContext.NrfUri = configuration.NrfUri
} else {
logger.CtxLog.Warn("NRF Uri is empty! Using localhost as NRF IPv4 address.")
smfContext.NrfUri = fmt.Sprintf("%s://%s:%d", smfContext.URIScheme, "127.0.0.1", 29510)
}
if pfcp := configuration.PFCP; pfcp != nil {
if pfcp.Port == 0 {
pfcp.Port = factory.DEFAULT_PFCP_PORT
}
pfcpAddrEnv := os.Getenv(pfcp.Addr)
if pfcpAddrEnv != "" {
logger.CtxLog.Info("Parsing PFCP IPv4 address from ENV variable found.")
pfcp.Addr = pfcpAddrEnv
}
if pfcp.Addr == "" {
logger.CtxLog.Warn("Error parsing PFCP IPv4 address as string. Using the 0.0.0.0 address as default.")
pfcp.Addr = "0.0.0.0"
}
addr, err := net.ResolveUDPAddr("udp", fmt.Sprintf("%s:%d", pfcp.Addr, pfcp.Port))
if err != nil {
logger.CtxLog.Warnf("PFCP Parse Addr Fail: %v", err)
}
smfContext.PFCPPort = int(pfcp.Port)
smfContext.CPNodeID.NodeIdType = 0
smfContext.CPNodeID.NodeIdValue = addr.IP.To4()
}
// Static config
for _, snssaiInfoConfig := range configuration.SNssaiInfo {
err := smfContext.insertSmfNssaiInfo(&snssaiInfoConfig)
if err != nil {
logger.CtxLog.Warnln(err)
}
}
// Set client and set url
ManagementConfig := Nnrf_NFManagement.NewConfiguration()
ManagementConfig.SetBasePath(SMF_Self().NrfUri)
smfContext.NFManagementClient = Nnrf_NFManagement.NewAPIClient(ManagementConfig)
NFDiscovryConfig := Nnrf_NFDiscovery.NewConfiguration()
NFDiscovryConfig.SetBasePath(SMF_Self().NrfUri)
smfContext.NFDiscoveryClient = Nnrf_NFDiscovery.NewAPIClient(NFDiscovryConfig)
smfContext.ULCLSupport = configuration.ULCL
smfContext.SupportedPDUSessionType = IPV4
smfContext.UserPlaneInformation = NewUserPlaneInformation(&configuration.UserPlaneInformation)
smfContext.EnableNrfCaching = configuration.EnableNrfCaching
if configuration.EnableNrfCaching {
if configuration.NrfCacheEvictionInterval == 0 {
smfContext.NrfCacheEvictionInterval = time.Duration(900) // 15 mins
} else {
smfContext.NrfCacheEvictionInterval = time.Duration(configuration.NrfCacheEvictionInterval)
}
}
smfContext.PodIp = os.Getenv("POD_IP")
SetupNFProfile(config)
return &smfContext
}
func InitSMFUERouting(routingConfig *factory.RoutingConfig) {
if !smfContext.ULCLSupport {
return
}
if routingConfig == nil {
logger.CtxLog.Error("configuration needs the routing config")
return
}
logger.CtxLog.Infof("ue routing config Info: Version[%s] Description[%s]",
routingConfig.Info.Version, routingConfig.Info.Description)
UERoutingInfo := routingConfig.UERoutingInfo
smfContext.UEPreConfigPathPool = make(map[string]*UEPreConfigPaths)
for _, routingInfo := range UERoutingInfo {
supi := routingInfo.SUPI
uePreConfigPaths, err := NewUEPreConfigPaths(supi, routingInfo.PathList)
if err != nil {
logger.CtxLog.Warnln(err)
continue
}
smfContext.UEPreConfigPathPool[supi] = uePreConfigPaths
}
}
func SMF_Self() *SMFContext {
return &smfContext
}
func GetUserPlaneInformation() *UserPlaneInformation {
return smfContext.UserPlaneInformation
}
func ProcessConfigUpdate() bool {
logger.CtxLog.Infof("Dynamic config update received [%+v]", factory.UpdatedSmfConfig)
sendNrfRegistration := false
// Lets check updated config
updatedCfg := factory.UpdatedSmfConfig
// Lets parse through network slice configs first
if updatedCfg.DelSNssaiInfo != nil {
for _, slice := range *updatedCfg.DelSNssaiInfo {
err := SMF_Self().deleteSmfNssaiInfo(&slice)
if err != nil {
logger.CtxLog.Errorf("delete network slice [%v] failed: %v", slice, err)
}
}
factory.UpdatedSmfConfig.DelSNssaiInfo = nil
sendNrfRegistration = true
}
if updatedCfg.AddSNssaiInfo != nil {
for _, slice := range *updatedCfg.AddSNssaiInfo {
err := SMF_Self().insertSmfNssaiInfo(&slice)
if err != nil {
logger.CtxLog.Errorf("insert network slice [%v] failed: %v", slice, err)
}
}
factory.UpdatedSmfConfig.AddSNssaiInfo = nil
sendNrfRegistration = true
}
if updatedCfg.ModSNssaiInfo != nil {
for _, slice := range *updatedCfg.ModSNssaiInfo {
err := SMF_Self().updateSmfNssaiInfo(&slice)
if err != nil {
logger.CtxLog.Errorf("update network slice [%v] failed: %v", slice, err)
}
}
factory.UpdatedSmfConfig.ModSNssaiInfo = nil
sendNrfRegistration = true
}
// UP Node Links should be deleted before underlying UPFs are deleted
if updatedCfg.DelLinks != nil {
for _, link := range *updatedCfg.DelLinks {
err := GetUserPlaneInformation().DeleteUPNodeLinks(&link)
if err != nil {
logger.CtxLog.Errorf("delete UP Node Links failed: %v", err)
}
}
factory.UpdatedSmfConfig.DelLinks = nil
}
// Iterate through UserPlane Info
if updatedCfg.DelUPNodes != nil {
for name, upf := range *updatedCfg.DelUPNodes {
err := GetUserPlaneInformation().DeleteSmfUserPlaneNode(name, &upf)
if err != nil {
logger.CtxLog.Errorf("delete UP Node [%s] failed: %v", name, err)
}
}
factory.UpdatedSmfConfig.DelUPNodes = nil
}
if updatedCfg.AddUPNodes != nil {
for name, upf := range *updatedCfg.AddUPNodes {
err := GetUserPlaneInformation().InsertSmfUserPlaneNode(name, &upf)
if err != nil {
logger.CtxLog.Errorf("insert UP Node [%s] failed: %v", name, err)
}
}
factory.UpdatedSmfConfig.AddUPNodes = nil
AllocateUPFID()
// TODO: allocate UPF ID
}
if updatedCfg.ModUPNodes != nil {
for name, upf := range *updatedCfg.ModUPNodes {
err := GetUserPlaneInformation().UpdateSmfUserPlaneNode(name, &upf)
if err != nil {
logger.CtxLog.Errorf("update UP Node [%s] failed: %v", name, err)
}
}
factory.UpdatedSmfConfig.ModUPNodes = nil
}
// Iterate through add UP Node Links info
// UP Links should be added only after underlying UPFs have been added
if updatedCfg.AddLinks != nil {
for _, link := range *updatedCfg.AddLinks {
err := GetUserPlaneInformation().InsertUPNodeLinks(&link)
if err != nil {
logger.CtxLog.Errorf("insert UP Node Links failed: %v", err)
}
}
factory.UpdatedSmfConfig.AddLinks = nil
}
// Update Enterprise Info
SMF_Self().EnterpriseList = updatedCfg.EnterpriseList
logger.CtxLog.Infof("Dynamic config update, enterprise info [%v] ", *updatedCfg.EnterpriseList)
// Any time config changes(Slices/UPFs/Links) then reset Default path(Key= nssai+Dnn)
GetUserPlaneInformation().ResetDefaultUserPlanePath()
// Send NRF Re-register if Slice info got updated
if sendNrfRegistration {
SetupNFProfile(&factory.SmfConfig)
}
return sendNrfRegistration
}
func (smfCtxt *SMFContext) InitDrsm() error {
podname := os.Getenv("HOSTNAME")
podip := os.Getenv("POD_IP")
podId := drsm.PodId{PodName: podname, PodInstance: smfCtxt.NfInstanceID, PodIp: podip}
dbName := "sdcore_smf"
dbUrl := "mongodb://mongodb-arbiter-headless"
if factory.SmfConfig.Configuration.Mongodb.Url != "" {
dbUrl = factory.SmfConfig.Configuration.Mongodb.Url
}
if factory.SmfConfig.Configuration.SmfDbName != "" {
dbName = factory.SmfConfig.Configuration.SmfDbName
}
logger.CfgLog.Infof("initialising drsm name [%v]", dbName)
opt := &drsm.Options{ResIdSize: 24, Mode: drsm.ResourceClient}
db := drsm.DbInfo{Url: dbUrl, Name: dbName}
// for local FSEID
if drsmCtxt, err := drsm.InitDRSM("fseid", podId, db, opt); err == nil {
smfCtxt.DrsmCtxts.SeidPool = drsmCtxt
} else {
return err
}
// for IP-Addr
// TODO, use UPF based allocation for now
return nil
}
func (smfCtxt *SMFContext) GetDnnStaticIpInfo(dnn string) *factory.StaticIpInfo {
for _, info := range *smfCtxt.StaticIpInfo {
if info.Dnn == dnn {
logger.CfgLog.Debugf("get static ip info for dnn [%s] found [%v]", dnn, info)
return &info
}
}
return nil
}