Changes of Revision 47
open5gs_2.4.9.14.ec9fe.202208120002.dsc
Deleted
x
1
2
-Format: 3.0 (native)
3
-Source: open5gs
4
-Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
5
-Architecture: any
6
-Version: 2.4.9.14.ec9fe.202208120002
7
-Maintainer: Harald Welte <laforge@gnumonks.org>
8
-Uploaders: Sukchan Lee <acetcom@gmail.com>
9
-Homepage: https://open5gs.org
10
-Standards-Version: 4.3.0
11
-Vcs-Browser: https://github.com/open5gs/open5gs
12
-Vcs-Git: git://github.com/open5gs/open5gs
13
-Build-Depends: debhelper (>= 11), git, pkg-config, meson (>= 0.43.0), flex, bison, libgnutls28-dev, libgcrypt-dev, libssl-dev, libidn11-dev, libmongoc-dev, libbson-dev, libsctp-dev, libyaml-dev, libmicrohttpd-dev, libcurl4-gnutls-dev, libnghttp2-dev, libtins-dev, libtalloc-dev
14
-Package-List:
15
- open5gs deb net optional arch=any
16
- open5gs-amf deb net optional arch=any
17
- open5gs-ausf deb net optional arch=any
18
- open5gs-bsf deb net optional arch=any
19
- open5gs-common deb net optional arch=any
20
- open5gs-dbg deb net optional arch=any
21
- open5gs-hss deb net optional arch=any
22
- open5gs-mme deb net optional arch=any
23
- open5gs-nrf deb net optional arch=any
24
- open5gs-nssf deb net optional arch=any
25
- open5gs-pcf deb net optional arch=any
26
- open5gs-pcrf deb net optional arch=any
27
- open5gs-sgwc deb net optional arch=any
28
- open5gs-sgwu deb net optional arch=any
29
- open5gs-smf deb net optional arch=any
30
- open5gs-udm deb net optional arch=any
31
- open5gs-udr deb net optional arch=any
32
- open5gs-upf deb net optional arch=any
33
-Checksums-Sha1:
34
- ae264f05ad536316baeea8d1aac5c0071e760708 11460128 open5gs_2.4.9.14.ec9fe.202208120002.tar.xz
35
-Checksums-Sha256:
36
- 459d8fb11d0d29108b0ca448ab5bf0c9c9f6f112a4dae895564966fea7faf2aa 11460128 open5gs_2.4.9.14.ec9fe.202208120002.tar.xz
37
-Files:
38
- ec5eceee7ff503b1186c0528efca26fd 11460128 open5gs_2.4.9.14.ec9fe.202208120002.tar.xz
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-3gpp-types.c
Deleted
1014
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "ogs-core.h"
22
-
23
-#define PLMN_ID_DIGIT1(x) (((x) / 100) % 10)
24
-#define PLMN_ID_DIGIT2(x) (((x) / 10) % 10)
25
-#define PLMN_ID_DIGIT3(x) ((x) % 10)
26
-
27
-uint32_t ogs_plmn_id_hexdump(void *plmn_id)
28
-{
29
- uint32_t hex;
30
- ogs_assert(plmn_id);
31
- memcpy(&hex, plmn_id, sizeof(ogs_plmn_id_t));
32
- hex = be32toh(hex) >> 8;
33
- return hex;
34
-}
35
-
36
-uint16_t ogs_plmn_id_mcc(ogs_plmn_id_t *plmn_id)
37
-{
38
- return plmn_id->mcc1 * 100 + plmn_id->mcc2 * 10 + plmn_id->mcc3;
39
-}
40
-uint16_t ogs_plmn_id_mnc(ogs_plmn_id_t *plmn_id)
41
-{
42
- return plmn_id->mnc1 == 0xf ? plmn_id->mnc2 * 10 + plmn_id->mnc3 :
43
- plmn_id->mnc1 * 100 + plmn_id->mnc2 * 10 + plmn_id->mnc3;
44
-}
45
-uint16_t ogs_plmn_id_mnc_len(ogs_plmn_id_t *plmn_id)
46
-{
47
- return plmn_id->mnc1 == 0xf ? 2 : 3;
48
-}
49
-
50
-void *ogs_plmn_id_build(ogs_plmn_id_t *plmn_id,
51
- uint16_t mcc, uint16_t mnc, uint16_t mnc_len)
52
-{
53
- plmn_id->mcc1 = PLMN_ID_DIGIT1(mcc);
54
- plmn_id->mcc2 = PLMN_ID_DIGIT2(mcc);
55
- plmn_id->mcc3 = PLMN_ID_DIGIT3(mcc);
56
-
57
- if (mnc_len == 2)
58
- plmn_id->mnc1 = 0xf;
59
- else
60
- plmn_id->mnc1 = PLMN_ID_DIGIT1(mnc);
61
-
62
- plmn_id->mnc2 = PLMN_ID_DIGIT2(mnc);
63
- plmn_id->mnc3 = PLMN_ID_DIGIT3(mnc);
64
-
65
- return plmn_id;
66
-}
67
-
68
-void *ogs_nas_from_plmn_id(
69
- ogs_nas_plmn_id_t *ogs_nas_plmn_id, ogs_plmn_id_t *plmn_id)
70
-{
71
- memcpy(ogs_nas_plmn_id, plmn_id, OGS_PLMN_ID_LEN);
72
- if (plmn_id->mnc1 != 0xf) {
73
- ogs_nas_plmn_id->mnc1 = plmn_id->mnc1;
74
- ogs_nas_plmn_id->mnc2 = plmn_id->mnc2;
75
- ogs_nas_plmn_id->mnc3 = plmn_id->mnc3;
76
- }
77
- return ogs_nas_plmn_id;
78
-}
79
-void *ogs_nas_to_plmn_id(
80
- ogs_plmn_id_t *plmn_id, ogs_nas_plmn_id_t *ogs_nas_plmn_id)
81
-{
82
- memcpy(plmn_id, ogs_nas_plmn_id, OGS_PLMN_ID_LEN);
83
- if (plmn_id->mnc1 != 0xf) {
84
- plmn_id->mnc1 = ogs_nas_plmn_id->mnc1;
85
- plmn_id->mnc2 = ogs_nas_plmn_id->mnc2;
86
- plmn_id->mnc3 = ogs_nas_plmn_id->mnc3;
87
- }
88
- return plmn_id;
89
-}
90
-
91
-char *ogs_serving_network_name_from_plmn_id(ogs_plmn_id_t *plmn_id)
92
-{
93
- ogs_assert(plmn_id);
94
- return ogs_msprintf("5G:mnc%03d.mcc%03d.3gppnetwork.org",
95
- ogs_plmn_id_mnc(plmn_id), ogs_plmn_id_mcc(plmn_id));
96
-}
97
-
98
-char *ogs_plmn_id_mcc_string(ogs_plmn_id_t *plmn_id)
99
-{
100
- ogs_assert(plmn_id);
101
- return ogs_msprintf("%03d", ogs_plmn_id_mcc(plmn_id));
102
-}
103
-
104
-char *ogs_plmn_id_mnc_string(ogs_plmn_id_t *plmn_id)
105
-{
106
- ogs_assert(plmn_id);
107
- if (ogs_plmn_id_mnc_len(plmn_id) == 2)
108
- return ogs_msprintf("%02d", ogs_plmn_id_mnc(plmn_id));
109
- else
110
- return ogs_msprintf("%03d", ogs_plmn_id_mnc(plmn_id));
111
-}
112
-
113
-char *ogs_plmn_id_to_string(ogs_plmn_id_t *plmn_id, char *buf)
114
-{
115
- ogs_assert(plmn_id);
116
- ogs_assert(buf);
117
-
118
- if (ogs_plmn_id_mnc_len(plmn_id) == 2)
119
- ogs_snprintf(buf, OGS_PLMNIDSTRLEN, "%03d%02d",
120
- ogs_plmn_id_mcc(plmn_id), ogs_plmn_id_mnc(plmn_id));
121
- else
122
- ogs_snprintf(buf, OGS_PLMNIDSTRLEN, "%03d%03d",
123
- ogs_plmn_id_mcc(plmn_id), ogs_plmn_id_mnc(plmn_id));
124
-
125
- return buf;
126
-}
127
-
128
-uint32_t ogs_amf_id_hexdump(ogs_amf_id_t *amf_id)
129
-{
130
- uint32_t hex;
131
-
132
- ogs_assert(amf_id);
133
-
134
- memcpy(&hex, amf_id, sizeof(ogs_amf_id_t));
135
- hex = be32toh(hex) >> 8;
136
-
137
- return hex;
138
-}
139
-
140
-ogs_amf_id_t *ogs_amf_id_from_string(ogs_amf_id_t *amf_id, const char *hex)
141
-{
142
- char hexbufsizeof(ogs_amf_id_t);
143
-
144
- ogs_assert(amf_id);
145
- ogs_assert(hex);
146
-
147
- OGS_HEX(hex, strlen(hex), hexbuf);
148
-
149
- amf_id->region = hexbuf0;
150
- amf_id->set1 = hexbuf1;
151
- amf_id->set2 = (hexbuf2 & 0xc0) >> 6;
152
- amf_id->pointer = hexbuf2 & 0x3f;
153
-
154
- return amf_id;
155
-}
156
-
157
-#define OGS_AMFIDSTRLEN (sizeof(ogs_amf_id_t)*2+1)
158
-char *ogs_amf_id_to_string(ogs_amf_id_t *amf_id)
159
-{
160
- char *str = NULL;
161
- ogs_assert(amf_id);
162
-
163
- str = ogs_calloc(1, OGS_AMFIDSTRLEN);
164
- ogs_expect_or_return_val(str, NULL);
165
-
166
- ogs_hex_to_ascii(amf_id, sizeof(ogs_amf_id_t), str, OGS_AMFIDSTRLEN);
167
-
168
- return str;
169
-}
170
-
171
-uint8_t ogs_amf_region_id(ogs_amf_id_t *amf_id)
172
-{
173
- ogs_assert(amf_id);
174
- return amf_id->region;
175
-}
176
-uint16_t ogs_amf_set_id(ogs_amf_id_t *amf_id)
177
-{
178
- ogs_assert(amf_id);
179
- return (amf_id->set1 << 2) + amf_id->set2;
180
-}
181
-uint8_t ogs_amf_pointer(ogs_amf_id_t *amf_id)
182
-{
183
- ogs_assert(amf_id);
184
- return amf_id->pointer;
185
-}
186
-
187
-ogs_amf_id_t *ogs_amf_id_build(ogs_amf_id_t *amf_id,
188
- uint8_t region, uint16_t set, uint8_t pointer)
189
-{
190
- amf_id->region = region;
191
- amf_id->set1 = set >> 2;
192
- amf_id->set2 = set & 0x3;
193
- amf_id->pointer = pointer;
194
-
195
- return amf_id;
196
-}
197
-
198
-char *ogs_supi_from_suci(char *suci)
199
-{
200
-#define MAX_SUCI_TOKEN 16
201
- char *arrayMAX_SUCI_TOKEN;
202
- char *p, *tmp;
203
- int i;
204
- char *supi = NULL;
205
-
206
- ogs_assert(suci);
207
- tmp = ogs_strdup(suci);
208
- ogs_expect_or_return_val(tmp, NULL);
209
-
210
- p = tmp;
211
- i = 0;
212
- while((arrayi++ = strsep(&p, "-"))) {
213
- /* Empty Body */
214
- }
215
-
216
- SWITCH(array0)
217
- CASE("suci")
218
- SWITCH(array1)
219
- CASE("0") /* SUPI format : IMSI */
220
- if (array2 && array3 && array7)
221
- supi = ogs_msprintf("imsi-%s%s%s",
222
- array2, array3, array7);
223
-
224
- break;
225
- DEFAULT
226
- ogs_error("Not implemented %s", array1);
227
- break;
228
- END
229
- break;
230
- DEFAULT
231
- ogs_error("Not implemented %s", array0);
232
- break;
233
- END
234
-
235
- ogs_free(tmp);
236
- return supi;
237
-}
238
-
239
-char *ogs_id_get_type(char *str)
240
-{
241
- char *token, *p, *tmp;
242
- char *type = NULL;
243
-
244
- ogs_assert(str);
245
- tmp = ogs_strdup(str);
246
- ogs_expect_or_return_val(tmp, NULL);
247
-
248
- p = tmp;
249
- token = strsep(&p, "-");
250
- ogs_assert(token);
251
- type = ogs_strdup(token);
252
- ogs_expect_or_return_val(type, NULL);
253
-
254
- ogs_free(tmp);
255
- return type;
256
-}
257
-
258
-char *ogs_id_get_value(char *str)
259
-{
260
- char *token, *p, *tmp;
261
- char *ueid = NULL;
262
-
263
- ogs_assert(str);
264
- tmp = ogs_strdup(str);
265
- ogs_expect_or_return_val(tmp, NULL);
266
-
267
- p = tmp;
268
- token = strsep(&p, "-");
269
- ogs_assert(token);
270
- token = strsep(&p, "-");
271
- ogs_assert(token);
272
- ueid = ogs_strdup(token);
273
- ogs_expect_or_return_val(ueid, NULL);
274
-
275
- ogs_free(tmp);
276
- return ueid;
277
-}
278
-
279
-char *ogs_s_nssai_sd_to_string(ogs_uint24_t sd)
280
-{
281
- char *string = NULL;
282
-
283
- if (sd.v == OGS_S_NSSAI_NO_SD_VALUE)
284
- return NULL;
285
-
286
- string = ogs_uint24_to_0string(sd);
287
- ogs_expect(string);
288
-
289
- return string;
290
-}
291
-
292
-ogs_uint24_t ogs_s_nssai_sd_from_string(const char *hex)
293
-{
294
- ogs_uint24_t sd;
295
-
296
- sd.v = OGS_S_NSSAI_NO_SD_VALUE;
297
- if (hex == NULL)
298
- return sd;
299
-
300
- return ogs_uint24_from_string((char *)hex);
301
-}
302
-
303
-int ogs_fqdn_build(char *dst, char *src, int length)
304
-{
305
- int i = 0, j = 0;
306
-
307
- for (i = 0, j = 0; i < length; i++, j++) {
308
- if (srci == '.') {
309
- dsti-j = j;
310
- j = -1;
311
- } else {
312
- dsti+1 = srci;
313
- }
314
- }
315
- dsti-j = j;
316
-
317
- return length+1;
318
-}
319
-
320
-int ogs_fqdn_parse(char *dst, char *src, int length)
321
-{
322
- int i = 0, j = 0;
323
- uint8_t len = 0;
324
-
325
- while (i+1 < length) {
326
- len = srci++;
327
- if ((j + len + 1) > length) {
328
- ogs_error("Invalid FQDN encodinglen:%d + 1 > length%d",
329
- len, length);
330
- ogs_log_hexdump(OGS_LOG_ERROR, (unsigned char *)src, length);
331
- return 0;
332
- }
333
- memcpy(&dstj, &srci, len);
334
-
335
- i += len;
336
- j += len;
337
-
338
- if (i+1 < length)
339
- dstj++ = '.';
340
- else
341
- dstj = 0;
342
- }
343
-
344
- return j;
345
-}
346
-
347
-/* 8.13 Protocol Configuration Options (PCO)
348
- * 10.5.6.3 Protocol configuration options in 3GPP TS 24.008 */
349
-int ogs_pco_parse(ogs_pco_t *pco, unsigned char *data, int data_len)
350
-{
351
- ogs_pco_t *source = (ogs_pco_t *)data;
352
- int size = 0;
353
- int i = 0;
354
-
355
- ogs_assert(pco);
356
- ogs_assert(data);
357
- ogs_assert(data_len);
358
-
359
- memset(pco, 0, sizeof(ogs_pco_t));
360
-
361
- pco->ext = source->ext;
362
- pco->configuration_protocol = source->configuration_protocol;
363
- size++;
364
-
365
- while(size < data_len && i < OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID) {
366
- ogs_pco_id_t *id = &pco->idsi;
367
- ogs_assert(size + sizeof(id->id) <= data_len);
368
- memcpy(&id->id, data + size, sizeof(id->id));
369
- id->id = be16toh(id->id);
370
- size += sizeof(id->id);
371
-
372
- ogs_assert(size + sizeof(id->len) <= data_len);
373
- memcpy(&id->len, data + size, sizeof(id->len));
374
- size += sizeof(id->len);
375
-
376
- id->data = data + size;
377
- size += id->len;
378
-
379
- i++;
380
- }
381
- pco->num_of_id = i;
382
- ogs_assert(size == data_len);
383
-
384
- return size;
385
-}
386
-int ogs_pco_build(unsigned char *data, int data_len, ogs_pco_t *pco)
387
-{
388
- ogs_pco_t target;
389
- int size = 0;
390
- int i = 0;
391
-
392
- ogs_assert(pco);
393
- ogs_assert(data);
394
- ogs_assert(data_len);
395
-
396
- memcpy(&target, pco, sizeof(ogs_pco_t));
397
-
398
- ogs_assert(size + 1 <= data_len);
399
- memcpy(data + size, &target, 1);
400
- size += 1;
401
-
402
- ogs_assert(target.num_of_id <= OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID);
403
- for (i = 0; i < target.num_of_id; i++) {
404
- ogs_pco_id_t *id = &target.idsi;
405
-
406
- ogs_assert(size + sizeof(id->id) <= data_len);
407
- id->id = htobe16(id->id);
408
- memcpy(data + size, &id->id, sizeof(id->id));
409
- size += sizeof(id->id);
410
-
411
- ogs_assert(size + sizeof(id->len) <= data_len);
412
- memcpy(data + size, &id->len, sizeof(id->len));
413
- size += sizeof(id->len);
414
-
415
- ogs_assert(size + id->len <= data_len);
416
- memcpy(data + size, id->data, id->len);
417
- size += id->len;
418
- }
419
-
420
- return size;
421
-}
422
-
423
-int ogs_ip_to_sockaddr(ogs_ip_t *ip, uint16_t port, ogs_sockaddr_t **list)
424
-{
425
- ogs_sockaddr_t *addr = NULL, *addr6 = NULL;
426
-
427
- ogs_assert(ip);
428
- ogs_assert(list);
429
-
430
- addr = ogs_calloc(1, sizeof(ogs_sockaddr_t));
431
- if (!addr) {
432
- ogs_error("ogs_calloc() failed");
433
- return OGS_ERROR;
434
- }
435
- addr->ogs_sa_family = AF_INET;
436
- addr->ogs_sin_port = htobe16(port);
437
-
438
- addr6 = ogs_calloc(1, sizeof(ogs_sockaddr_t));
439
- if (!addr6) {
440
- ogs_error("ogs_calloc() failed");
441
- ogs_free(addr);
442
- return OGS_ERROR;
443
- }
444
- addr6->ogs_sa_family = AF_INET6;
445
- addr6->ogs_sin_port = htobe16(port);
446
-
447
- if (ip->ipv4 && ip->ipv6) {
448
- addr->next = addr6;
449
-
450
- addr->sin.sin_addr.s_addr = ip->addr;
451
- memcpy(addr6->sin6.sin6_addr.s6_addr, ip->addr6, OGS_IPV6_LEN);
452
-
453
- *list = addr;
454
- } else if (ip->ipv4) {
455
- addr->sin.sin_addr.s_addr = ip->addr;
456
- ogs_free(addr6);
457
-
458
- *list = addr;
459
- } else if (ip->ipv6) {
460
- memcpy(addr6->sin6.sin6_addr.s6_addr, ip->addr6, OGS_IPV6_LEN);
461
- ogs_free(addr);
462
-
463
- *list = addr6;
464
- } else {
465
- ogs_error("No IPv4 and IPv6");
466
- ogs_free(addr);
467
- ogs_free(addr6);
468
- return OGS_ERROR;
469
- }
470
-
471
- return OGS_OK;
472
-}
473
-
474
-int ogs_sockaddr_to_ip(
475
- ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6, ogs_ip_t *ip)
476
-{
477
- ogs_expect_or_return_val(ip, OGS_ERROR);
478
- ogs_expect_or_return_val(addr || addr6, OGS_ERROR);
479
-
480
- memset(ip, 0, sizeof(ogs_ip_t));
481
-
482
- if (addr && addr6) {
483
- ip->ipv4 = 1;
484
- ip->ipv6 = 1;
485
- ip->len = OGS_IPV4V6_LEN;
486
- ip->addr = addr->sin.sin_addr.s_addr;
487
- memcpy(ip->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
488
- } else if (addr) {
489
- ip->ipv4 = 1;
490
- ip->len = OGS_IPV4_LEN;
491
- ip->addr = addr->sin.sin_addr.s_addr;
492
- } else if (addr6) {
493
- ip->ipv6 = 1;
494
- ip->len = OGS_IPV6_LEN;
495
- memcpy(ip->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
496
- } else
497
- ogs_assert_if_reached();
498
-
499
- return OGS_OK;
500
-}
501
-
502
-char *ogs_ipv4_to_string(uint32_t addr)
503
-{
504
- char *buf = NULL;
505
-
506
- buf = ogs_calloc(1, OGS_ADDRSTRLEN);
507
- ogs_expect_or_return_val(buf, NULL);
508
-
509
- return (char*)OGS_INET_NTOP(&addr, buf);
510
-}
511
-
512
-char *ogs_ipv6addr_to_string(uint8_t *addr6)
513
-{
514
- char *buf = NULL;
515
- ogs_assert(addr6);
516
-
517
- buf = ogs_calloc(1, OGS_ADDRSTRLEN);
518
- ogs_expect_or_return_val(buf, NULL);
519
-
520
- return (char *)OGS_INET6_NTOP(addr6, buf);
521
-}
522
-
523
-char *ogs_ipv6prefix_to_string(uint8_t *addr6, uint8_t prefixlen)
524
-{
525
- char *buf = NULL;
526
- uint8_t tmpOGS_IPV6_LEN;
527
- ogs_assert(addr6);
528
-
529
- memset(tmp, 0, OGS_IPV6_LEN);
530
- memcpy(tmp, addr6, prefixlen >> 3);
531
-
532
- buf = ogs_calloc(1, OGS_ADDRSTRLEN);
533
- ogs_expect_or_return_val(buf, NULL);
534
-
535
- if (OGS_INET6_NTOP(tmp, buf) == NULL) {
536
- ogs_fatal("Invalid IPv6 address");
537
- ogs_log_hexdump(OGS_LOG_FATAL, addr6, OGS_IPV6_LEN);
538
- ogs_assert_if_reached();
539
- }
540
- return ogs_mstrcatf(buf, "/%d", prefixlen);
541
-}
542
-
543
-int ogs_ipv4_from_string(uint32_t *addr, char *string)
544
-{
545
- int rv;
546
- ogs_sockaddr_t tmp;
547
-
548
- ogs_assert(addr);
549
- ogs_assert(string);
550
-
551
- rv = ogs_inet_pton(AF_INET, string, &tmp);
552
- if (rv != OGS_OK) {
553
- ogs_error("Invalid IPv4 string = %s", string);
554
- return OGS_ERROR;
555
- }
556
-
557
- *addr = tmp.sin.sin_addr.s_addr;
558
-
559
- return OGS_OK;
560
-}
561
-
562
-int ogs_ipv6addr_from_string(uint8_t *addr6, char *string)
563
-{
564
- int rv;
565
- ogs_sockaddr_t tmp;
566
-
567
- ogs_assert(addr6);
568
- ogs_assert(string);
569
-
570
- rv = ogs_inet_pton(AF_INET6, string, &tmp);
571
- if (rv != OGS_OK) {
572
- ogs_error("Invalid IPv6 string = %s", string);
573
- return OGS_ERROR;
574
- }
575
-
576
- memcpy(addr6, tmp.sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
577
-
578
- return OGS_OK;
579
-}
580
-
581
-int ogs_ipv6prefix_from_string(uint8_t *addr6, uint8_t *prefixlen, char *string)
582
-{
583
- int rv;
584
- ogs_sockaddr_t tmp;
585
- char *v = NULL, *pv = NULL, *ipstr = NULL, *mask_or_numbits = NULL;
586
-
587
- ogs_assert(addr6);
588
- ogs_assert(prefixlen);
589
- ogs_assert(string);
590
- pv = v = ogs_strdup(string);
591
- ogs_expect_or_return_val(v, OGS_ERROR);
592
-
593
- ipstr = strsep(&v, "/");
594
- if (ipstr)
595
- mask_or_numbits = v;
596
-
597
- if (!ipstr || !mask_or_numbits) {
598
- ogs_error("Invalid IPv6 Prefix string = %s", v);
599
- ogs_free(v);
600
- return OGS_ERROR;
601
- }
602
-
603
- rv = ogs_inet_pton(AF_INET6, ipstr, &tmp);
604
- ogs_expect_or_return_val(rv == OGS_OK, rv);
605
-
606
- memcpy(addr6, tmp.sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
607
- *prefixlen = atoi(mask_or_numbits);
608
-
609
- ogs_free(pv);
610
- return OGS_OK;
611
-}
612
-
613
-int ogs_sockaddr_to_user_plane_ip_resource_info(
614
- ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6,
615
- ogs_user_plane_ip_resource_info_t *info)
616
-{
617
- ogs_assert(addr || addr6);
618
- ogs_assert(info);
619
-
620
- if (addr) {
621
- info->v4 = 1;
622
- info->addr = addr->sin.sin_addr.s_addr;
623
- }
624
- if (addr6) {
625
- info->v6 = 1;
626
- memcpy(info->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
627
- }
628
-
629
- return OGS_OK;
630
-}
631
-
632
-int ogs_user_plane_ip_resource_info_to_sockaddr(
633
- ogs_user_plane_ip_resource_info_t *info,
634
- ogs_sockaddr_t **addr, ogs_sockaddr_t **addr6)
635
-{
636
- ogs_assert(addr && addr6);
637
- ogs_assert(info);
638
-
639
- *addr = NULL;
640
- *addr6 = NULL;
641
-
642
- if (info->v4) {
643
- *addr = ogs_calloc(1, sizeof(**addr));
644
- ogs_assert(*addr);
645
- (*addr)->sin.sin_addr.s_addr = info->addr;
646
- (*addr)->ogs_sa_family = AF_INET;
647
- }
648
-
649
- if (info->v6) {
650
- *addr6 = ogs_calloc(1, sizeof(**addr6));
651
- ogs_assert(*addr6);
652
- memcpy((*addr6)->sin6.sin6_addr.s6_addr, info->addr6, OGS_IPV6_LEN);
653
- (*addr6)->ogs_sa_family = AF_INET6;
654
- }
655
-
656
- return OGS_OK;
657
-}
658
-
659
-ogs_slice_data_t *ogs_slice_find_by_s_nssai(
660
- ogs_slice_data_t *slice_data, int num_of_slice_data,
661
- ogs_s_nssai_t *s_nssai)
662
-{
663
- int i;
664
-
665
- ogs_assert(slice_data);
666
- ogs_assert(num_of_slice_data);
667
- ogs_assert(s_nssai);
668
-
669
- /* Compare S-NSSAI */
670
- for (i = 0; i < num_of_slice_data; i++) {
671
- if (s_nssai->sst == slice_datai.s_nssai.sst &&
672
- s_nssai->sd.v == slice_datai.s_nssai.sd.v) {
673
- return slice_data + i;
674
- }
675
- }
676
-
677
- return NULL;
678
-}
679
-
680
-void ogs_subscription_data_free(ogs_subscription_data_t *subscription_data)
681
-{
682
- int i, j;
683
-
684
- ogs_assert(subscription_data);
685
-
686
- for (i = 0; i < subscription_data->num_of_slice; i++) {
687
- ogs_slice_data_t *slice_data = &subscription_data->slicei;
688
-
689
- for (j = 0; j < slice_data->num_of_session; j++) {
690
- if (slice_data->sessionj.name)
691
- ogs_free(slice_data->sessionj.name);
692
- }
693
-
694
- slice_data->num_of_session = 0;
695
- }
696
-
697
- subscription_data->num_of_slice = 0;
698
-
699
- subscription_data->num_of_msisdn = 0;
700
-}
701
-
702
-void ogs_session_data_free(ogs_session_data_t *session_data)
703
-{
704
- int i;
705
-
706
- ogs_assert(session_data);
707
-
708
- if (session_data->session.name)
709
- ogs_free(session_data->session.name);
710
-
711
- for (i = 0; i < session_data->num_of_pcc_rule; i++)
712
- OGS_PCC_RULE_FREE(&session_data->pcc_rulei);
713
-}
714
-
715
-void ogs_ims_data_free(ogs_ims_data_t *ims_data)
716
-{
717
- int i, j, k;
718
-
719
- ogs_assert(ims_data);
720
-
721
- for (i = 0; i < ims_data->num_of_media_component; i++) {
722
- ogs_media_component_t *media_component = &ims_data->media_componenti;
723
-
724
- for (j = 0; j < media_component->num_of_sub; j++) {
725
- ogs_media_sub_component_t *sub = &media_component->subj;
726
-
727
- for (k = 0; k < sub->num_of_flow; k++) {
728
- ogs_flow_t *flow = &sub->flowk;
729
-
730
- if (flow->description) {
731
- ogs_free(flow->description);
732
- } else
733
- ogs_assert_if_reached();
734
- }
735
- }
736
- }
737
-}
738
-
739
-static int flow_rx_to_gx(ogs_flow_t *rx_flow, ogs_flow_t *gx_flow)
740
-{
741
- int len;
742
- char *from_str, *to_str;
743
-
744
- ogs_assert(rx_flow);
745
- ogs_assert(gx_flow);
746
-
747
- if (!strncmp(rx_flow->description,
748
- "permit out", strlen("permit out"))) {
749
- gx_flow->direction = OGS_FLOW_DOWNLINK_ONLY;
750
- gx_flow->description = ogs_strdup(rx_flow->description);
751
- ogs_assert(gx_flow->description);
752
-
753
- } else if (!strncmp(rx_flow->description,
754
- "permit in", strlen("permit in"))) {
755
- gx_flow->direction = OGS_FLOW_UPLINK_ONLY;
756
-
757
- /* 'permit in' should be changed
758
- * 'permit out' in Gx Diameter */
759
- len = strlen(rx_flow->description)+2;
760
- gx_flow->description = ogs_calloc(1, len);
761
- ogs_assert(gx_flow->description);
762
- strcpy(gx_flow->description, "permit out");
763
- from_str = strstr(&rx_flow->descriptionstrlen("permit in"), "from");
764
- ogs_assert(from_str);
765
- to_str = strstr(&rx_flow->descriptionstrlen("permit in"), "to");
766
- ogs_assert(to_str);
767
- strncat(gx_flow->description,
768
- &rx_flow->descriptionstrlen("permit in"),
769
- strlen(rx_flow->description) -
770
- strlen("permit in") - strlen(from_str));
771
- strcat(gx_flow->description, "from");
772
- strcat(gx_flow->description, &to_strstrlen("to"));
773
- strcat(gx_flow->description, " to");
774
- strncat(gx_flow->description, &from_strstrlen("from"),
775
- strlen(from_str) - strlen(to_str) - strlen("from") - 1);
776
- ogs_assert(len == strlen(gx_flow->description)+1);
777
- } else {
778
- ogs_error("Invalid Flow Descripton : %s", rx_flow->description);
779
- return OGS_ERROR;
780
- }
781
-
782
- return OGS_OK;
783
-}
784
-
785
-int ogs_pcc_rule_num_of_flow_equal_to_media(
786
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
787
-{
788
- int rv;
789
- int i, j, k;
790
- int matched = 0;
791
- int new = 0;
792
-
793
- ogs_assert(pcc_rule);
794
- ogs_assert(media_component);
795
-
796
- for (i = 0; i < media_component->num_of_sub; i++) {
797
- ogs_media_sub_component_t *sub = &media_component->subi;
798
-
799
- for (j = 0; j < sub->num_of_flow; j++) {
800
- new++;
801
- }
802
- }
803
-
804
- if (new == 0) {
805
- /* No new flow in Media-Component */
806
- return pcc_rule->num_of_flow;
807
- }
808
-
809
- for (i = 0; i < media_component->num_of_sub; i++) {
810
- ogs_media_sub_component_t *sub = &media_component->subi;
811
-
812
- for (j = 0; j < sub->num_of_flow &&
813
- j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
814
- ogs_flow_t gx_flow;
815
- ogs_flow_t *rx_flow = &sub->flowj;
816
-
817
- rv = flow_rx_to_gx(rx_flow, &gx_flow);
818
- if (rv != OGS_OK) {
819
- ogs_error("flow reformatting error");
820
- return OGS_ERROR;
821
- }
822
-
823
- for (k = 0; k < pcc_rule->num_of_flow; k++) {
824
- if (gx_flow.direction == pcc_rule->flowk.direction &&
825
- !strcmp(gx_flow.description,
826
- pcc_rule->flowk.description)) {
827
- matched++;
828
- break;
829
- }
830
- }
831
-
832
- OGS_FLOW_FREE(&gx_flow);
833
- }
834
- }
835
-
836
- return matched;
837
-}
838
-
839
-int ogs_pcc_rule_install_flow_from_media(
840
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
841
-{
842
- int rv;
843
- int i, j;
844
-
845
- ogs_assert(pcc_rule);
846
- ogs_assert(media_component);
847
-
848
- /* Remove Flow from PCC Rule */
849
- for (i = 0; i < pcc_rule->num_of_flow; i++) {
850
- OGS_FLOW_FREE(&pcc_rule->flowi);
851
- }
852
- pcc_rule->num_of_flow = 0;
853
-
854
- for (i = 0; i < media_component->num_of_sub; i++) {
855
- ogs_media_sub_component_t *sub = &media_component->subi;
856
-
857
- /* Copy Flow to PCC Rule */
858
- for (j = 0; j < sub->num_of_flow &&
859
- j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
860
- ogs_flow_t *rx_flow = NULL;
861
- ogs_flow_t *gx_flow = NULL;
862
-
863
- if (pcc_rule->num_of_flow < OGS_MAX_NUM_OF_FLOW_IN_PCC_RULE) {
864
- rx_flow = &sub->flowj;
865
- gx_flow = &pcc_rule->flowpcc_rule->num_of_flow;
866
-
867
- rv = flow_rx_to_gx(rx_flow, gx_flow);
868
- if (rv != OGS_OK) {
869
- ogs_error("flow reformatting error");
870
- return OGS_ERROR;
871
- }
872
-
873
- pcc_rule->num_of_flow++;
874
- } else {
875
- ogs_error("Overflow: Number of Flow");
876
- return OGS_ERROR;
877
- }
878
- }
879
- }
880
-
881
- return OGS_OK;
882
-}
883
-
884
-int ogs_pcc_rule_update_qos_from_media(
885
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
886
-{
887
- int rv;
888
- int i, j;
889
-
890
- ogs_assert(pcc_rule);
891
- ogs_assert(media_component);
892
-
893
- pcc_rule->qos.mbr.downlink = 0;
894
- pcc_rule->qos.mbr.uplink = 0;
895
- pcc_rule->qos.gbr.downlink = 0;
896
- pcc_rule->qos.gbr.uplink = 0;
897
-
898
- for (i = 0; i < media_component->num_of_sub; i++) {
899
- ogs_media_sub_component_t *sub = &media_component->subi;
900
-
901
- for (j = 0; j < sub->num_of_flow &&
902
- j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
903
- ogs_flow_t gx_flow;
904
- ogs_flow_t *rx_flow = &sub->flowj;
905
-
906
- rv = flow_rx_to_gx(rx_flow, &gx_flow);
907
- if (rv != OGS_OK) {
908
- ogs_error("flow reformatting error");
909
- return OGS_ERROR;
910
- }
911
-
912
- if (gx_flow.direction == OGS_FLOW_DOWNLINK_ONLY) {
913
- if (sub->flow_usage == OGS_FLOW_USAGE_RTCP) {
914
- if (media_component->rr_bandwidth &&
915
- media_component->rs_bandwidth) {
916
- pcc_rule->qos.mbr.downlink +=
917
- (media_component->rr_bandwidth +
918
- media_component->rs_bandwidth);
919
- } else if (media_component->max_requested_bandwidth_dl) {
920
- if (media_component->rr_bandwidth &&
921
- !media_component->rs_bandwidth) {
922
- pcc_rule->qos.mbr.downlink +=
923
- ogs_max(0.05 *
924
- media_component->max_requested_bandwidth_dl,
925
- media_component->rr_bandwidth);
926
- }
927
- if (!media_component->rr_bandwidth &&
928
- media_component->rs_bandwidth) {
929
- pcc_rule->qos.mbr.downlink +=
930
- ogs_max(0.05 *
931
- media_component->max_requested_bandwidth_dl,
932
- media_component->rs_bandwidth);
933
- }
934
- if (!media_component->rr_bandwidth &&
935
- !media_component->rs_bandwidth) {
936
- pcc_rule->qos.mbr.downlink +=
937
- 0.05 *
938
- media_component->max_requested_bandwidth_dl;
939
- }
940
- }
941
- } else {
942
- if (gx_flow.description) {
943
- pcc_rule->qos.mbr.downlink +=
944
- media_component->max_requested_bandwidth_dl;
945
- pcc_rule->qos.gbr.downlink +=
946
- media_component->min_requested_bandwidth_dl;
947
- }
948
- }
949
- } else if (gx_flow.direction == OGS_FLOW_UPLINK_ONLY) {
950
- if (sub->flow_usage == OGS_FLOW_USAGE_RTCP) {
951
- if (media_component->rr_bandwidth &&
952
- media_component->rs_bandwidth) {
953
- pcc_rule->qos.mbr.uplink +=
954
- (media_component->rr_bandwidth +
955
- media_component->rs_bandwidth);
956
- } else if (media_component->max_requested_bandwidth_ul) {
957
- if (media_component->rr_bandwidth &&
958
- !media_component->rs_bandwidth) {
959
- pcc_rule->qos.mbr.uplink +=
960
- ogs_max(0.05 *
961
- media_component->max_requested_bandwidth_ul,
962
- media_component->rr_bandwidth);
963
- }
964
- if (!media_component->rr_bandwidth &&
965
- media_component->rs_bandwidth) {
966
- pcc_rule->qos.mbr.uplink +=
967
- ogs_max(0.05 *
968
- media_component->max_requested_bandwidth_ul,
969
- media_component->rs_bandwidth);
970
- }
971
- if (!media_component->rr_bandwidth &&
972
- !media_component->rs_bandwidth) {
973
- pcc_rule->qos.mbr.uplink +=
974
- 0.05 *
975
- media_component->max_requested_bandwidth_ul;
976
- }
977
- }
978
- } else {
979
- if (gx_flow.description) {
980
- pcc_rule->qos.mbr.uplink +=
981
- media_component->max_requested_bandwidth_ul;
982
- pcc_rule->qos.gbr.uplink +=
983
- media_component->min_requested_bandwidth_ul;
984
- }
985
- }
986
- } else
987
- ogs_assert_if_reached();
988
-
989
- OGS_FLOW_FREE(&gx_flow);
990
- }
991
- }
992
-
993
- if (pcc_rule->qos.mbr.downlink == 0) {
994
- pcc_rule->qos.mbr.downlink +=
995
- media_component->max_requested_bandwidth_dl;
996
- pcc_rule->qos.mbr.downlink +=
997
- (media_component->rr_bandwidth + media_component->rs_bandwidth);
998
- }
999
-
1000
- if (pcc_rule->qos.mbr.uplink == 0) {
1001
- pcc_rule->qos.mbr.uplink +=
1002
- media_component->max_requested_bandwidth_ul;
1003
- pcc_rule->qos.mbr.uplink +=
1004
- (media_component->rr_bandwidth + media_component->rs_bandwidth);
1005
- }
1006
-
1007
- if (pcc_rule->qos.gbr.downlink == 0)
1008
- pcc_rule->qos.gbr.downlink = pcc_rule->qos.mbr.downlink;
1009
- if (pcc_rule->qos.gbr.uplink == 0)
1010
- pcc_rule->qos.gbr.uplink = pcc_rule->qos.mbr.uplink;
1011
-
1012
- return OGS_OK;
1013
-}
1014
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-3gpp-types.h
Deleted
783
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#if !defined(OGS_CORE_INSIDE) && !defined(OGS_CORE_COMPILATION)
22
-#error "This header cannot be included directly."
23
-#endif
24
-
25
-#ifndef OGS_3GPP_TYPES_H
26
-#define OGS_3GPP_TYPES_H
27
-
28
-#ifdef __cplusplus
29
-extern "C" {
30
-#endif /* __cplusplus */
31
-
32
-#define OGS_MAX_NUM_OF_SESS 4 /* Num of APN(Session) per UE */
33
-#define OGS_MAX_NUM_OF_BEARER 4 /* Num of Bearer per Session */
34
-#define OGS_BEARER_PER_UE 8 /* Num of Bearer per UE */
35
-#define OGS_MAX_NUM_OF_PACKET_BUFFER 64 /* Num of PacketBuffer per UE */
36
-
37
-/* Num of NF Service per NF Instance */
38
-#define OGS_MAX_NUM_OF_NF_SERVICE 16
39
-
40
-/*
41
- * The array of TLV messages is limited to 8.
42
- * So, Flow(PDI.SDF_Filter) in PDR is limited to 8.
43
- *
44
- * However, the number of flow in bearer context seems to need more than 16.
45
- *
46
- * Therefore, the maximum number of flows of messages is defined as 8,
47
- * and the maximum number of flows stored by the context is 16.
48
- */
49
-#define OGS_MAX_NUM_OF_FLOW_IN_PDR 8
50
-#define OGS_MAX_NUM_OF_FLOW_IN_GTP OGS_MAX_NUM_OF_FLOW_IN_PDR
51
-#define OGS_MAX_NUM_OF_FLOW_IN_NAS OGS_MAX_NUM_OF_FLOW_IN_PDR
52
-#define OGS_MAX_NUM_OF_FLOW_IN_PCC_RULE OGS_MAX_NUM_OF_FLOW_IN_PDR
53
-#define OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT OGS_MAX_NUM_OF_FLOW_IN_PDR
54
-#define OGS_MAX_NUM_OF_FLOW_IN_BEARER 16
55
-
56
-#define OGS_MAX_NUM_OF_GTPU_RESOURCE 4
57
-
58
-#define OGS_MAX_SDU_LEN 8192
59
-#define OGS_MAX_PKT_LEN 2048
60
-#define OGS_PLMN_ID_LEN 3
61
-#define OGS_MAX_PLMN_ID_BCD_LEN 6
62
-
63
-#define OGS_CHRGCHARS_LEN 2
64
-
65
-#define OGS_BCD_TO_BUFFER_LEN(x) (((x)+1)/2)
66
-#define OGS_MAX_IMSI_BCD_LEN 15
67
-#define OGS_MAX_IMSI_LEN \
68
- OGS_BCD_TO_BUFFER_LEN(OGS_MAX_IMSI_BCD_LEN)
69
-
70
-#define OGS_MAX_IMEISV_BCD_LEN 16
71
-#define OGS_MAX_IMEISV_LEN \
72
- OGS_BCD_TO_BUFFER_LEN(OGS_MAX_IMEISV_BCD_LEN)
73
-
74
-#define OGS_MAX_MSISDN_BCD_LEN 15
75
-#define OGS_MAX_MSISDN_LEN \
76
- OGS_BCD_TO_BUFFER_LEN(OGS_MAX_MSISDN_BCD_LEN)
77
-
78
-#define OGS_MAX_NUM_OF_CELL_ID 16
79
-#define OGS_MAX_NUM_OF_ENB_ID 16
80
-#define OGS_MAX_NUM_OF_DNN 16
81
-#define OGS_MAX_NUM_OF_APN OGS_MAX_NUM_OF_DNN
82
-#define OGS_MAX_NUM_OF_HOSTNAME 16
83
-#define OGS_MAX_DNN_LEN 100
84
-#define OGS_MAX_APN_LEN OGS_MAX_DNN_LEN
85
-#define OGS_MAX_PCO_LEN 251
86
-#define OGS_MAX_FQDN_LEN 256
87
-
88
-#define OGS_MAX_NUM_OF_SERVED_TAI 16
89
-#define OGS_MAX_NUM_OF_ALGORITHM 8
90
-
91
-#define OGS_MAX_NUM_OF_BPLMN 6
92
-
93
-#define OGS_NEXT_ID(__id, __min, __max) \
94
- ((__id) = ((__id) == (__max) ? (__min) : ((__id) + 1)))
95
-#define OGS_COMPARE_ID(__id1, __id2, __max) \
96
- ((__id2) > (__id1) ? ((__id2) - (__id1) < ((__max)-1) ? -1 : 1) : \
97
- (__id1) > (__id2) ? ((__id1) - (__id2) < ((__max)-1) ? 1 : -1) : 0)
98
-
99
-#define OGS_TIME_TO_BCD(x) \
100
- (((((x) % 10) << 4) & 0xf0) | (((x) / 10) & 0x0f))
101
-
102
-#define OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED 0
103
-#define OGS_NAS_PDU_SESSION_IDENTITY_UNASSIGNED 0
104
-
105
-#define OGS_ACCESS_TYPE_3GPP 1
106
-#define OGS_ACCESS_TYPE_NON_3GPP 2
107
-#define OGS_ACCESS_TYPE_BOTH_3GPP_AND_NON_3GPP 3
108
-
109
-#define OGS_MAX_QOS_FLOW_ID 63
110
-
111
-#define OGS_DEFAULT_SCTP_MAX_NUM_OF_OSTREAMS 30
112
-
113
-/************************************
114
- * PLMN_ID Structure */
115
-#define OGS_MAX_NUM_OF_PLMN 6
116
-typedef struct ogs_plmn_id_s {
117
-ED2(uint8_t mcc2:4;,
118
- uint8_t mcc1:4;)
119
-ED2(uint8_t mnc1:4;,
120
- uint8_t mcc3:4;)
121
-ED2(uint8_t mnc3:4;,
122
- uint8_t mnc2:4;)
123
-} __attribute__ ((packed)) ogs_plmn_id_t;
124
-
125
-uint32_t ogs_plmn_id_hexdump(void *plmn_id);
126
-
127
-uint16_t ogs_plmn_id_mcc(ogs_plmn_id_t *plmn_id);
128
-uint16_t ogs_plmn_id_mnc(ogs_plmn_id_t *plmn_id);
129
-uint16_t ogs_plmn_id_mnc_len(ogs_plmn_id_t *plmn_id);
130
-
131
-void *ogs_plmn_id_build(ogs_plmn_id_t *plmn_id,
132
- uint16_t mcc, uint16_t mnc, uint16_t mnc_len);
133
-
134
-char *ogs_serving_network_name_from_plmn_id(ogs_plmn_id_t *plmn_id);
135
-char *ogs_plmn_id_mcc_string(ogs_plmn_id_t *plmn_id);
136
-char *ogs_plmn_id_mnc_string(ogs_plmn_id_t *plmn_id);
137
-
138
-#define OGS_PLMNIDSTRLEN (sizeof(ogs_plmn_id_t)*2+1)
139
-char *ogs_plmn_id_to_string(ogs_plmn_id_t *plmn_id, char *buf);
140
-
141
-/*************************
142
- * NAS PLMN_ID Structure */
143
-typedef struct ogs_nas_plmn_id_s {
144
-ED2(uint8_t mcc2:4;,
145
- uint8_t mcc1:4;)
146
-ED2(uint8_t mnc3:4;,
147
- uint8_t mcc3:4;)
148
-ED2(uint8_t mnc2:4;,
149
- uint8_t mnc1:4;)
150
-} __attribute__ ((packed)) ogs_nas_plmn_id_t;
151
-
152
-void *ogs_nas_from_plmn_id(
153
- ogs_nas_plmn_id_t *ogs_nas_plmn_id, ogs_plmn_id_t *plmn_id);
154
-void *ogs_nas_to_plmn_id(
155
- ogs_plmn_id_t *plmn_id, ogs_nas_plmn_id_t *ogs_nas_plmn_id);
156
-
157
-/************************************
158
- * AMF_ID Structure */
159
-typedef struct ogs_amf_id_s {
160
- uint8_t region;
161
- uint8_t set1;
162
-ED2(uint8_t set2:2;,
163
- uint8_t pointer:6;)
164
-} __attribute__ ((packed)) ogs_amf_id_t;
165
-
166
-typedef struct ogs_guami_s {
167
- ogs_plmn_id_t plmn_id;
168
- ogs_amf_id_t amf_id;
169
-} ogs_guami_t;
170
-
171
-uint32_t ogs_amf_id_hexdump(ogs_amf_id_t *amf_id);
172
-
173
-ogs_amf_id_t *ogs_amf_id_from_string(ogs_amf_id_t *amf_id, const char *hex);
174
-char *ogs_amf_id_to_string(ogs_amf_id_t *amf_id);
175
-
176
-uint8_t ogs_amf_region_id(ogs_amf_id_t *amf_id);
177
-uint16_t ogs_amf_set_id(ogs_amf_id_t *amf_id);
178
-uint8_t ogs_amf_pointer(ogs_amf_id_t *amf_id);
179
-
180
-ogs_amf_id_t *ogs_amf_id_build(ogs_amf_id_t *amf_id,
181
- uint8_t region, uint16_t set, uint8_t pointer);
182
-
183
-/************************************
184
- * SUPI/SUCI */
185
-char *ogs_supi_from_suci(char *suci);
186
-
187
-/************************************
188
- * SUPI/GPSI */
189
-#define OGS_ID_SUPI_TYPE_IMSI "imsi"
190
-#define OGS_ID_GPSI_TYPE_MSISDN "msisdn"
191
-char *ogs_id_get_type(char *str);
192
-char *ogs_id_get_value(char *str);
193
-
194
-/************************************
195
- * TAI Structure */
196
-#define OGS_MAX_NUM_OF_TAI 16
197
-typedef struct ogs_eps_tai_s {
198
- ogs_plmn_id_t plmn_id;
199
- uint16_t tac;
200
-} __attribute__ ((packed)) ogs_eps_tai_t;
201
-
202
-typedef struct ogs_5gs_tai_s {
203
- ogs_plmn_id_t plmn_id;
204
- ogs_uint24_t tac;
205
-} __attribute__ ((packed)) ogs_5gs_tai_t;
206
-
207
-typedef struct ogs_e_cgi_s {
208
- ogs_plmn_id_t plmn_id;
209
- uint32_t cell_id; /* 28 bit */
210
-} __attribute__ ((packed)) ogs_e_cgi_t;
211
-
212
-typedef struct ogs_nr_cgi_s {
213
- ogs_plmn_id_t plmn_id;
214
- uint64_t cell_id; /* 36 bit */
215
-} __attribute__ ((packed)) ogs_nr_cgi_t;
216
-
217
-/************************************
218
- * S-NSSAI Structure */
219
-#define OGS_MAX_NUM_OF_SLICE 8
220
-#define OGS_S_NSSAI_NO_SD_VALUE 0xffffff
221
-typedef struct ogs_s_nssai_s {
222
- uint8_t sst;
223
- ogs_uint24_t sd;
224
-} __attribute__ ((packed)) ogs_s_nssai_t;
225
-
226
-char *ogs_s_nssai_sd_to_string(ogs_uint24_t sd);
227
-ogs_uint24_t ogs_s_nssai_sd_from_string(const char *hex);
228
-
229
-/**************************************************
230
- * Common Structure
231
- * S1AP : 9.2.2.1 Transport Layer Address, See 36.414
232
- * GTP : 8.22 Fully Qualified TEID (F-TEID) */
233
-#define OGS_IPV4_LEN 4
234
-#define OGS_IPV6_LEN 16
235
-#define OGS_IPV6_DEFAULT_PREFIX_LEN 64
236
-#define OGS_IPV6_128_PREFIX_LEN 128
237
-#define OGS_IPV4V6_LEN 20
238
-typedef struct ogs_ip_s {
239
- uint32_t addr;
240
- uint8_t addr6OGS_IPV6_LEN;
241
- uint32_t len;
242
-ED3(uint8_t ipv4:1;,
243
- uint8_t ipv6:1;,
244
- uint8_t reserved:6;)
245
-} ogs_ip_t;
246
-
247
-int ogs_ip_to_sockaddr(ogs_ip_t *ip, uint16_t port, ogs_sockaddr_t **list);
248
-int ogs_sockaddr_to_ip(
249
- ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6, ogs_ip_t *ip);
250
-
251
-char *ogs_ipv4_to_string(uint32_t addr);
252
-char *ogs_ipv6addr_to_string(uint8_t *addr6);
253
-char *ogs_ipv6prefix_to_string(uint8_t *addr6, uint8_t prefixlen);
254
-int ogs_ipv4_from_string(uint32_t *addr, char *string);
255
-int ogs_ipv6addr_from_string(uint8_t *addr6, char *string);
256
-int ogs_ipv6prefix_from_string(
257
- uint8_t *addr6, uint8_t *prefixlen, char *string);
258
-
259
-/**************************************************
260
- * GTPv1-C: TS 29.060 7.7.27 End User Address (EUA) */
261
-#define OGS_PDP_EUA_ORG_ETSI 0
262
-#define OGS_PDP_EUA_ORG_IETF 1
263
-#define OGS_PDP_EUA_ETSI_PPP 1
264
-#define OGS_PDP_EUA_IETF_IPV4 0x21
265
-#define OGS_PDP_EUA_IETF_IPV6 0x57
266
-#define OGS_PDP_EUA_IETF_IPV4V6 0x8D
267
-typedef struct ogs_eua_s {
268
-ED2(uint8_t spare:4;,
269
- uint8_t organization:4;)
270
- uint8_t type;
271
- union {
272
- /* PDU_SESSION_TYPE_IPV4 */
273
- uint32_t addr;
274
-
275
- /* PDU_SESSION_TYPE_IPV6 */
276
- uint8_t addr6OGS_IPV6_LEN;
277
-
278
- /* PDU_SESSION_TYPE_IPV4V6 */
279
- struct {
280
- uint32_t addr;
281
- uint8_t addr6OGS_IPV6_LEN;
282
- } __attribute__ ((packed)) both;
283
- };
284
-} __attribute__ ((packed)) ogs_eua_t;
285
-
286
-/**************************************************
287
- * GTPv2-C: TS 29.274 8.14 PDN Address Allocation (PAA) */
288
-#define OGS_PAA_IPV4_LEN 5
289
-#define OGS_PAA_IPV6_LEN 18
290
-#define OGS_PAA_IPV4V6_LEN 22
291
-typedef struct ogs_paa_s {
292
-ED2(uint8_t spare:5;,
293
-/* 8.34 PDN Type */
294
-#define OGS_PDU_SESSION_TYPE_IS_VALID(x) \
295
- ((x) == OGS_PDU_SESSION_TYPE_IPV4 || \
296
- (x) == OGS_PDU_SESSION_TYPE_IPV6 || \
297
- (x) == OGS_PDU_SESSION_TYPE_IPV4V6) \
298
-
299
- uint8_t session_type:3;)
300
- union {
301
- /* PDU_SESSION_TYPE_IPV4 */
302
- uint32_t addr;
303
-
304
- /* PDU_SESSION_TYPE_IPV6 */
305
- struct {
306
- /* the IPv6 Prefix Length */
307
- uint8_t len;
308
- /* IPv6 Prefix and Interface Identifier */
309
- uint8_t addr6OGS_IPV6_LEN;
310
- };
311
-
312
- /* PDU_SESSION_TYPE_IPV4V6 */
313
- struct {
314
- struct {
315
- /* the IPv6 Prefix Length */
316
- uint8_t len;
317
- /* IPv6 Prefix and Interface Identifier */
318
- uint8_t addr6OGS_IPV6_LEN;
319
- };
320
- uint32_t addr;
321
- } __attribute__ ((packed)) both;
322
- };
323
-} __attribute__ ((packed)) ogs_paa_t;
324
-
325
-#define MAX_BIT_RATE 10000000000UL
326
-
327
-typedef struct ogs_bitrate_s {
328
- uint64_t downlink; /* bits per seconds */
329
- uint64_t uplink; /* bits per seconds */
330
-} ogs_bitrate_t;
331
-
332
-/**********************************
333
- * QoS Structure */
334
-typedef struct ogs_qos_s {
335
-#define OGS_QOS_INDEX_1 1
336
-#define OGS_QOS_INDEX_2 2
337
-#define OGS_QOS_INDEX_5 5
338
- uint8_t index;
339
-
340
- struct {
341
- /* Values 1 to 8 should only be assigned for services that are
342
- * authorized to receive prioritized treatment within an operator domain.
343
- * Values 9 to 15 may be assigned to resources that are authorized
344
- * by the home network and thus applicable when a UE is roaming. */
345
- uint8_t priority_level;
346
-/*
347
- * Ch 7.3.40 Allocation-Retenion-Proirty in TS 29.272 V15.9.0
348
- *
349
- * If the Pre-emption-Capability AVP is not present in the
350
- * Allocation-Retention-Priority AVP, the default value shall be
351
- * PRE-EMPTION_CAPABILITY_DISABLED (1).
352
- *
353
- * If the Pre-emption-Vulnerability AVP is not present in the
354
- * Allocation-Retention-Priority AVP, the default value shall be
355
- * PRE-EMPTION_VULNERABILITY_ENABLED (0).
356
- *
357
- * However, to easily set up VoLTE service,
358
- * enable Pre-emption Capability/Vulnerablility
359
- * in Default Bearer
360
- */
361
-#define OGS_EPC_PRE_EMPTION_DISABLED 1
362
-#define OGS_EPC_PRE_EMPTION_ENABLED 0
363
-
364
-#define OGS_5GC_PRE_EMPTION_DISABLED 1
365
-#define OGS_5GC_PRE_EMPTION_ENABLED 2
366
- uint8_t pre_emption_capability;
367
- uint8_t pre_emption_vulnerability;
368
- } arp;
369
-
370
- ogs_bitrate_t mbr; /* Maxmimum Bit Rate (MBR) */
371
- ogs_bitrate_t gbr; /* Guaranteed Bit Rate (GBR) */
372
-} ogs_qos_t;
373
-
374
-/**********************************
375
- * Flow Structure */
376
-#define OGS_FLOW_DOWNLINK_ONLY 1
377
-#define OGS_FLOW_UPLINK_ONLY 2
378
-typedef struct ogs_flow_s {
379
- uint8_t direction;
380
- char *description;
381
-} ogs_flow_t;
382
-
383
-#define OGS_FLOW_FREE(__fLOW) \
384
- do { \
385
- if ((__fLOW)->description) { \
386
- ogs_free((__fLOW)->description); \
387
- } \
388
- else \
389
- ogs_assert_if_reached(); \
390
- } while(0)
391
-
392
-/**********************************
393
- * PCC Rule Structure */
394
-typedef struct ogs_pcc_rule_s {
395
-#define OGS_PCC_RULE_TYPE_INSTALL 1
396
-#define OGS_PCC_RULE_TYPE_REMOVE 2
397
- uint8_t type;
398
-
399
- char *id; /* 5GC */
400
- char *name; /* EPC */
401
-
402
- ogs_flow_t flowOGS_MAX_NUM_OF_FLOW_IN_PCC_RULE;
403
- int num_of_flow;
404
-
405
- int flow_status;
406
- uint32_t precedence;
407
-
408
- ogs_qos_t qos;
409
-} ogs_pcc_rule_t;
410
-
411
-#define OGS_STORE_PCC_RULE(__dST, __sRC) \
412
- do { \
413
- int __iNDEX; \
414
- ogs_assert((__sRC)); \
415
- ogs_assert((__dST)); \
416
- OGS_PCC_RULE_FREE(__dST); \
417
- (__dST)->type = (__sRC)->type; \
418
- if ((__sRC)->name) { \
419
- (__dST)->name = ogs_strdup((__sRC)->name); \
420
- ogs_assert((__dST)->name); \
421
- } \
422
- if ((__sRC)->id) { \
423
- (__dST)->id = ogs_strdup((__sRC)->id); \
424
- ogs_assert((__dST)->id); \
425
- } \
426
- for (__iNDEX = 0; __iNDEX < (__sRC)->num_of_flow; __iNDEX++) { \
427
- (__dST)->flow__iNDEX.direction = \
428
- (__sRC)->flow__iNDEX.direction; \
429
- (__dST)->flow__iNDEX.description = \
430
- ogs_strdup((__sRC)->flow__iNDEX.description); \
431
- ogs_assert((__dST)->flow__iNDEX.description); \
432
- } \
433
- (__dST)->num_of_flow = (__sRC)->num_of_flow; \
434
- (__dST)->flow_status = (__sRC)->flow_status; \
435
- (__dST)->precedence = (__sRC)->precedence; \
436
- memcpy(&(__dST)->qos, &(__sRC)->qos, sizeof(ogs_qos_t)); \
437
- } while(0)
438
-
439
-#define OGS_PCC_RULE_FREE(__pCCrULE) \
440
- do { \
441
- int __pCCrULE_iNDEX; \
442
- ogs_assert((__pCCrULE)); \
443
- if ((__pCCrULE)->id) \
444
- ogs_free((__pCCrULE)->id); \
445
- if ((__pCCrULE)->name) \
446
- ogs_free((__pCCrULE)->name); \
447
- for (__pCCrULE_iNDEX = 0; \
448
- __pCCrULE_iNDEX < (__pCCrULE)->num_of_flow; __pCCrULE_iNDEX++) { \
449
- OGS_FLOW_FREE(&((__pCCrULE)->flow__pCCrULE_iNDEX)); \
450
- } \
451
- (__pCCrULE)->num_of_flow = 0; \
452
- } while(0)
453
-
454
-/**********************************
455
- * PDN Structure */
456
-typedef struct ogs_session_s {
457
- char *name;
458
-
459
- uint32_t context_identifier; /* EPC */
460
- bool default_dnn_indicator; /* 5GC */
461
-
462
- uint8_t charging_characteristicsOGS_CHRGCHARS_LEN;
463
- bool charging_characteristics_presence;
464
-
465
-#define OGS_PDU_SESSION_TYPE_IPV4 1
466
-#define OGS_PDU_SESSION_TYPE_IPV6 2
467
-#define OGS_PDU_SESSION_TYPE_IPV4V6 3
468
-#define OGS_PDU_SESSION_TYPE_UNSTRUCTURED 4
469
-#define OGS_PDU_SESSION_TYPE_ETHERNET 5
470
-
471
-#define OGS_PDU_SESSION_TYPE_TO_DIAMETER(x) ((x)-1)
472
-#define OGS_PDU_SESSION_TYPE_FROM_DIAMETER(x) ((x)+1)
473
- uint8_t session_type;
474
-
475
-#define OGS_SSC_MODE_1 1
476
-#define OGS_SSC_MODE_2 2
477
-#define OGS_SSC_MODE_3 3
478
- uint8_t ssc_mode;
479
-
480
- ogs_qos_t qos;
481
- ogs_bitrate_t ambr; /* APN-AMBR */
482
-
483
- ogs_paa_t paa;
484
- ogs_ip_t ue_ip;
485
- ogs_ip_t smf_ip;
486
-} ogs_session_t;
487
-
488
-int ogs_fqdn_build(char *dst, char *src, int len);
489
-int ogs_fqdn_parse(char *dst, char *src, int len);
490
-
491
-/**************************************************
492
- * Protocol Configuration Options Structure
493
- * 8.13 Protocol Configuration Options (PCO)
494
- * 10.5.6.3 Protocol configuration options in 3GPP TS 24.008
495
- * RFC 3232 103
496
- * RFC 1661 102 */
497
-#define OGS_PCO_PPP_FOR_USE_WITH_IP_PDP_TYPE_OR_IP_PDN_TYPE 0
498
-
499
-#define OGS_PCO_ID_INTERNET_PROTOCOL_CONTROL_PROTOCOL 0x8021
500
-#define OGS_PCO_ID_PASSWORD_AUTHENTICATION_PROTOCOL 0xc023
501
-#define OGS_PCO_ID_CHALLENGE_HANDSHAKE_AUTHENTICATION_PROTOCOL 0xc223
502
-#define OGS_PCO_ID_P_CSCF_IPV6_ADDRESS_REQUEST 0x0001
503
-#define OGS_PCO_ID_DNS_SERVER_IPV6_ADDRESS_REQUEST 0x0003
504
-#define OGS_PCO_ID_MS_SUPPORTS_BCM 0x0005
505
-#define OGS_PCO_ID_IP_ADDRESS_ALLOCATION_VIA_NAS_SIGNALLING 0x000a
506
-#define OGS_PCO_ID_P_CSCF_IPV4_ADDRESS_REQUEST 0x000c
507
-#define OGS_PCO_ID_DNS_SERVER_IPV4_ADDRESS_REQUEST 0x000d
508
-#define OGS_PCO_ID_IPV4_LINK_MTU_REQUEST 0x0010
509
-#define OGS_PCO_ID_MS_SUPPORT_LOCAL_ADDR_TFT_INDICATOR 0x0011
510
-#define OGS_PCO_ID_P_CSCF_RE_SELECTION_SUPPORT 0x0012
511
-
512
-enum ogs_pco_ipcp_options {
513
- OGS_IPCP_OPT_IPADDR = 3,
514
- OGS_IPCP_OPT_PRIMARY_DNS = 129,
515
- OGS_IPCP_OPT_SECONDARY_DNS = 131,
516
-};
517
-
518
-typedef struct ogs_pco_ipcp_options_s {
519
- uint8_t type;
520
- uint8_t len;
521
- uint32_t addr;
522
-} __attribute__ ((packed)) ogs_pco_ipcp_options_t;
523
-
524
-#define OGS_PCO_MAX_NUM_OF_IPCP_OPTIONS 4
525
-typedef struct ogs_pco_ipcp_s {
526
- uint8_t code;
527
- uint8_t identifier;
528
- uint16_t len;
529
- ogs_pco_ipcp_options_t optionsOGS_PCO_MAX_NUM_OF_IPCP_OPTIONS;
530
-} __attribute__ ((packed)) ogs_pco_ipcp_t;
531
-
532
-typedef struct ogs_pco_pap_s {
533
- uint8_t code;
534
- uint8_t identifier;
535
- uint16_t len;
536
- uint8_t welcome_len;
537
- char welcome255;
538
-} __attribute__ ((packed)) ogs_pco_pap_t;
539
-
540
-typedef struct ogs_pco_chap_s {
541
- uint8_t code;
542
- uint8_t identifier;
543
- uint16_t len;
544
-} __attribute__ ((packed)) ogs_pco_chap_t;
545
-
546
-typedef struct ogs_pco_id_s {
547
- uint16_t id;
548
- uint8_t len;
549
- void *data;
550
-} ogs_pco_id_t;
551
-
552
-#define OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID 16
553
-typedef struct ogs_pco_s {
554
-ED3(uint8_t ext:1;,
555
- uint8_t spare:4;,
556
- uint8_t configuration_protocol:3;)
557
- uint8_t num_of_id;
558
- ogs_pco_id_t idsOGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID;
559
-} ogs_pco_t;
560
-
561
-int ogs_pco_parse(ogs_pco_t *pco, unsigned char *data, int data_len);
562
-int ogs_pco_build(unsigned char *data, int data_len, ogs_pco_t *pco);
563
-
564
-/*
565
- * PFCP Specification
566
- *
567
- * TS29.244, Ch 8.2.82 User Plane IP Resource Information
568
- *
569
- * The following flags are coded within Octet 5:
570
- * - Bit 1 – V4: If this bit is set to "1", then the IPv4 address field
571
- * shall be present, otherwise the IPv4 address field shall not be present.
572
- * - Bit 2 – V6: If this bit is set to "1", then the IPv6 address field
573
- * shall be present, otherwise the IPv6 address field shall not be present.
574
- * - Bit 3-5 – TEID Range Indication (TEIDRI): the value of this field
575
- * indicates the number of bits in the most significant octet of a TEID
576
- * that are used to partition the TEID range,
577
- * e.g. if this field is set to "4", then the first 4 bits in the TEID
578
- * are used to partition the TEID range.
579
- * - Bit 6 – Associated Network Instance (ASSONI): if this bit is set to "1",
580
- * then the Network Instance field shall be present, otherwise the Network
581
- * Instance field shall not be present.
582
- * - Bit 7 – Associated Source Interface (ASSOSI): if this bit is set to "1",
583
- * then the Source Interface field shall be present,
584
- * otherwise the Source Interface field shall not be present.
585
- * - Bit 8: Spare, for future use and set to 0.
586
- *
587
- * At least one of the V4 and V6 flags shall be set to "1",
588
- * and both may be set to "1".
589
- *
590
- * If both the ASSONI and ASSOSI flags are set to "0", this shall indicate
591
- * that the User Plane IP Resource Information provided can be used
592
- * by CP function for any Network Instance and any Source Interface
593
- * of GTP-U user plane in the UP function. Octet 6 (TEID Range) shall be
594
- * present if the TEID Range Indication is not set to zero and
595
- * shall contain a value of the bits which are used to partition the TEID range.
596
- * E.g. if the TEID Range Indication is set to "4", then Octet 6 shall be
597
- * one of values between 0 and 15. When TEID Range Indication is set to zero,
598
- * the Octet 6 shall not be present, the TEID is not partitioned,
599
- * i.e. all TEID values are available for use by the CP function.
600
- *
601
- * Octets "m to (m+3)" and/or "p to (p+15)" (IPv4 address / IPv6 address fields)
602
- * , if present, shall contain the respective IP address values.
603
- *
604
- * Octets "k to l", if present, shall contain a Network Instance value
605
- * as encoded in octet "5 to n+4" of the Figure 8.2.4-1 in clause 8.2.4,
606
- * identifying a Network Instance with which the IP address or TEID Range
607
- * is associated.
608
- *
609
- * Octet r, if present, shall contain a Source Interface value as encoded
610
- * in octet 5 of the Figure 8.2.2-1 in clause 8.2.2,
611
- * identifying the Source Interface with which the IP address or TEID Range
612
- * is associated.
613
- */
614
-
615
-/* Flags(1) + TEID Range(1) + IPV4(4) + IPV6(16) + Source Interface(1) = 23 */
616
-#define OGS_MAX_USER_PLANE_IP_RESOURCE_INFO_LEN \
617
- (23 + (OGS_MAX_APN_LEN+1))
618
-typedef struct ogs_user_plane_ip_resource_info_s {
619
- union {
620
- struct {
621
-ED6(uint8_t spare:1;,
622
- uint8_t assosi:1;,
623
- uint8_t assoni:1;,
624
- uint8_t teidri:3;,
625
- uint8_t v6:1;,
626
- uint8_t v4:1;)
627
- };
628
- uint8_t flags;
629
- };
630
-
631
- /*
632
- * OGS_PFCP-GTPU-TEID = INDEX | TEID_RANGE
633
- * INDEX = OGS_PFCP-GTPU-TEID & ~TEID_RANGE
634
- */
635
-#define OGS_PFCP_GTPU_TEID_TO_INDEX(__tEID, __iND, __rANGE) \
636
- (__tEID & ~(__rANGE << (32 - __iND)))
637
-#define OGS_PFCP_GTPU_INDEX_TO_TEID(__iNDEX, __iND, __rANGE) \
638
- (__iNDEX | (__rANGE << (32 - __iND)))
639
- uint8_t teid_range;
640
- uint32_t addr;
641
- uint8_t addr6OGS_IPV6_LEN;
642
- char network_instanceOGS_MAX_APN_LEN+1;
643
- uint8_t source_interface;
644
-} __attribute__ ((packed)) ogs_user_plane_ip_resource_info_t;
645
-
646
-int ogs_sockaddr_to_user_plane_ip_resource_info(
647
- ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6,
648
- ogs_user_plane_ip_resource_info_t *info);
649
-int ogs_user_plane_ip_resource_info_to_sockaddr(
650
- ogs_user_plane_ip_resource_info_t *info,
651
- ogs_sockaddr_t **addr, ogs_sockaddr_t **addr6);
652
-
653
-typedef struct ogs_slice_data_s {
654
- ogs_s_nssai_t s_nssai;
655
- bool default_indicator;
656
-
657
- uint32_t context_identifier; /* EPC for checking default APN */
658
-
659
- int num_of_session;
660
- ogs_session_t sessionOGS_MAX_NUM_OF_SESS;
661
-} ogs_slice_data_t;
662
-
663
-ogs_slice_data_t *ogs_slice_find_by_s_nssai(
664
- ogs_slice_data_t *slice_data, int num_of_slice_data,
665
- ogs_s_nssai_t *s_nssai);
666
-
667
-typedef struct ogs_subscription_data_s {
668
-#define OGS_ACCESS_RESTRICTION_UTRAN_NOT_ALLOWED (1)
669
-#define OGS_ACCESS_RESTRICTION_GERAN_NOT_ALLOWED (1<<1)
670
-#define OGS_ACCESS_RESTRICTION_GAN_NOT_ALLOWED (1<<2)
671
-#define OGS_ACCESS_RESTRICTION_I_HSPA_EVOLUTION_NOT_ALLOWED (1<<3)
672
-#define OGS_ACCESS_RESTRICTION_WB_E_UTRAN_NOT_ALLOWED (1<<4)
673
-#define OGS_ACCESS_RESTRICTION_HO_TO_NON_3GPP_ACCESS_NOT_ALLOWED (1<<5)
674
-#define OGS_ACCESS_RESTRICTION_NB_IOT_NOT_ALLOWED (1<<6)
675
- uint32_t access_restriction_data;
676
-#define OGS_SUBSCRIBER_STATUS_SERVICE_GRANTED 0
677
-#define OGS_SUBSCRIBER_STATUS_OPERATOR_DETERMINED_BARRING 1
678
- uint32_t subscriber_status;
679
-#define OGS_NETWORK_ACCESS_MODE_PACKET_AND_CIRCUIT 0
680
-#define OGS_NETWORK_ACCESS_MODE_RESERVED 1
681
-#define OGS_NETWORK_ACCESS_MODE_ONLY_PACKET 2
682
- uint32_t network_access_mode;
683
-
684
- ogs_bitrate_t ambr; /* UE-AMBR */
685
-
686
-#define OGS_RAU_TAU_DEFAULT_TIME (12*60) /* 12 min */
687
- uint32_t subscribed_rau_tau_timer; /* unit : seconds */
688
-
689
- int num_of_slice;
690
- ogs_slice_data_t sliceOGS_MAX_NUM_OF_SLICE;
691
-
692
-#define OGS_MAX_NUM_OF_MSISDN 2
693
- int num_of_msisdn;
694
- struct {
695
- uint8_t bufOGS_MAX_MSISDN_LEN;
696
- int len;
697
- char bcdOGS_MAX_MSISDN_BCD_LEN+1;
698
- } msisdnOGS_MAX_NUM_OF_MSISDN;
699
-} ogs_subscription_data_t;
700
-
701
-void ogs_subscription_data_free(ogs_subscription_data_t *subscription_data);
702
-
703
-typedef struct ogs_session_data_s {
704
- ogs_session_t session;
705
-#define OGS_MAX_NUM_OF_PCC_RULE 8 /* Num of PCC Rule */
706
- ogs_pcc_rule_t pcc_ruleOGS_MAX_NUM_OF_PCC_RULE;
707
- int num_of_pcc_rule;
708
-} ogs_session_data_t;
709
-
710
-void ogs_session_data_free(ogs_session_data_t *session_data);
711
-
712
-typedef struct ogs_media_sub_component_s {
713
- uint32_t flow_number;
714
-/*
715
- * TS29.214
716
- * 5.3.12 Flow-Usage AVP
717
- * NO_INFORMATION(0)
718
- * RTCP(1)
719
- * AF_SIGNALLING(2)
720
- *
721
- * TS29.514
722
- * 5.6.3.14 Enumeration: FlowUsage
723
- * NO_INFO : 1
724
- * RTCP : 2
725
- * AF_SIGNALLING : 3
726
- *
727
- * EPC and 5GC have different values for FlowUsage
728
- * At this point, we will use the 5GC value.
729
- */
730
-#define OGS_FLOW_USAGE_NO_INFO 1
731
-#define OGS_FLOW_USAGE_RTCP 2
732
-#define OGS_FLOW_USAGE_AF_SIGNALLING 3
733
- uint32_t flow_usage;
734
- ogs_flow_t flowOGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT;
735
- int num_of_flow;
736
-} ogs_media_sub_component_t;
737
-
738
-typedef struct ogs_media_component_s {
739
- uint32_t media_component_number;
740
- uint32_t media_type;
741
-
742
- uint64_t max_requested_bandwidth_dl;
743
- uint64_t max_requested_bandwidth_ul;
744
- uint64_t min_requested_bandwidth_dl;
745
- uint64_t min_requested_bandwidth_ul;
746
- uint64_t rr_bandwidth;
747
- uint64_t rs_bandwidth;
748
-
749
- int flow_status;
750
-
751
-#define OGS_MAX_NUM_OF_MEDIA_SUB_COMPONENT 8
752
- ogs_media_sub_component_t subOGS_MAX_NUM_OF_MEDIA_SUB_COMPONENT;
753
- int num_of_sub;
754
-} ogs_media_component_t;
755
-
756
-typedef struct ogs_ims_data_s {
757
- int num_of_msisdn;
758
- struct {
759
- uint8_t bufOGS_MAX_MSISDN_LEN;
760
- int len;
761
- char bcdOGS_MAX_MSISDN_BCD_LEN+1;
762
- } msisdnOGS_MAX_NUM_OF_MSISDN;
763
-
764
-#define OGS_MAX_NUM_OF_MEDIA_COMPONENT 16
765
- ogs_media_component_t media_componentOGS_MAX_NUM_OF_MEDIA_COMPONENT;
766
- int num_of_media_component;
767
-} ogs_ims_data_t;
768
-
769
-void ogs_ims_data_free(ogs_ims_data_t *ims_data);
770
-
771
-int ogs_pcc_rule_num_of_flow_equal_to_media(
772
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
773
-int ogs_pcc_rule_install_flow_from_media(
774
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
775
-int ogs_pcc_rule_update_qos_from_media(
776
- ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
777
-
778
-#ifdef __cplusplus
779
-}
780
-#endif
781
-
782
-#endif /* OGS_3GPP_TYPES_H */
783
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nf-sm.c
Deleted
469
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void amf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- amf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- amf_nf_state_initial, amf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void amf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- amf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void amf_nf_state_initial(ogs_fsm_t *s, amf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- amf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- amf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- amf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- amf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- amf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &amf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &amf_nf_state_registered);
83
- }
84
-}
85
-
86
-void amf_nf_state_final(ogs_fsm_t *s, amf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- amf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void amf_nf_state_will_register(ogs_fsm_t *s, amf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- amf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, amf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case AMF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- amf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &amf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP Response Status Code %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &amf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case AMF_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, amf_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- amf_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("Unknown event %s", amf_event_get_name(e));
196
- break;
197
- }
198
-}
199
-
200
-void amf_nf_state_registered(ogs_fsm_t *s, amf_event_t *e)
201
-{
202
- ogs_sbi_nf_instance_t *nf_instance = NULL;
203
- ogs_sbi_client_t *client = NULL;
204
- ogs_sbi_message_t *message = NULL;
205
- ogs_assert(s);
206
- ogs_assert(e);
207
-
208
- amf_sm_debug(e);
209
-
210
- nf_instance = e->sbi.data;
211
- ogs_assert(nf_instance);
212
- ogs_assert(ogs_sbi_self()->nf_instance);
213
-
214
- switch (e->id) {
215
- case OGS_FSM_ENTRY_SIG:
216
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
217
- ogs_info("%s NF registered Heartbeat:%ds",
218
- ogs_sbi_self()->nf_instance->id,
219
- nf_instance->time.heartbeat_interval);
220
-
221
- client = nf_instance->client;
222
- ogs_assert(client);
223
-
224
- if (nf_instance->time.heartbeat_interval) {
225
- ogs_timer_start(nf_instance->t_heartbeat_interval,
226
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
227
- ogs_timer_start(nf_instance->t_no_heartbeat,
228
- ogs_time_from_sec(
229
- nf_instance->time.heartbeat_interval +
230
- ogs_app()->time.nf_instance.no_heartbeat_margin));
231
- }
232
-
233
- ogs_assert(true ==
234
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
235
- ogs_sbi_self()->nf_instance->nf_type,
236
- ogs_sbi_self()->nf_instance->id,
237
- OpenAPI_nf_type_AUSF));
238
- ogs_assert(true ==
239
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
240
- ogs_sbi_self()->nf_instance->nf_type,
241
- ogs_sbi_self()->nf_instance->id,
242
- OpenAPI_nf_type_UDM));
243
- ogs_assert(true ==
244
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
245
- ogs_sbi_self()->nf_instance->nf_type,
246
- ogs_sbi_self()->nf_instance->id,
247
- OpenAPI_nf_type_PCF));
248
- ogs_assert(true ==
249
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
250
- ogs_sbi_self()->nf_instance->nf_type,
251
- ogs_sbi_self()->nf_instance->id,
252
- OpenAPI_nf_type_SMF));
253
- ogs_assert(true ==
254
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
255
- ogs_sbi_self()->nf_instance->nf_type,
256
- ogs_sbi_self()->nf_instance->id,
257
- OpenAPI_nf_type_NSSF));
258
- }
259
-
260
- break;
261
-
262
- case OGS_FSM_EXIT_SIG:
263
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
264
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
265
-
266
- if (nf_instance->time.heartbeat_interval) {
267
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
268
- ogs_timer_stop(nf_instance->t_no_heartbeat);
269
- }
270
-
271
- if (!OGS_FSM_CHECK(&nf_instance->sm, amf_nf_state_exception)) {
272
- ogs_assert(true ==
273
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
274
- }
275
- }
276
- break;
277
-
278
- case AMF_EVT_SBI_CLIENT:
279
- message = e->sbi.message;
280
- ogs_assert(message);
281
-
282
- SWITCH(message->h.service.name)
283
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
284
-
285
- SWITCH(message->h.resource.component0)
286
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
287
-
288
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
289
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
290
- if (nf_instance->time.heartbeat_interval)
291
- ogs_timer_start(nf_instance->t_no_heartbeat,
292
- ogs_time_from_sec(
293
- nf_instance->time.heartbeat_interval +
294
- ogs_app()->time.nf_instance.
295
- no_heartbeat_margin));
296
- } else {
297
- ogs_warn("%s HTTP response error %d",
298
- ogs_sbi_self()->nf_instance->id,
299
- message->res_status);
300
- OGS_FSM_TRAN(s, &amf_nf_state_exception);
301
- }
302
-
303
- break;
304
-
305
- DEFAULT
306
- ogs_error("%s Invalid resource name %s",
307
- ogs_sbi_self()->nf_instance->id,
308
- message->h.resource.component0);
309
- END
310
- break;
311
-
312
- DEFAULT
313
- ogs_error("%s Invalid API name %s",
314
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
315
- END
316
- break;
317
-
318
- case AMF_EVT_SBI_TIMER:
319
- switch(e->timer_id) {
320
- case AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
321
- if (nf_instance->time.heartbeat_interval)
322
- ogs_timer_start(nf_instance->t_heartbeat_interval,
323
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
324
-
325
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
326
- break;
327
-
328
- case AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
329
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
330
- OGS_FSM_TRAN(s, &amf_nf_state_will_register);
331
- break;
332
-
333
- case AMF_TIMER_NF_INSTANCE_VALIDITY:
334
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
335
- ogs_assert(nf_instance->id);
336
-
337
- ogs_info("%s NF expired", nf_instance->id);
338
- OGS_FSM_TRAN(s, &amf_nf_state_de_registered);
339
- break;
340
-
341
- default:
342
- ogs_error("%s:%s Unknown timer%s:%d",
343
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
344
- nf_instance->id ? nf_instance->id : "Undefined",
345
- amf_timer_get_name(e->timer_id), e->timer_id);
346
- }
347
- break;
348
-
349
- default:
350
- ogs_error("%s:%s Unknown event %s",
351
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
352
- nf_instance->id ? nf_instance->id : "Undefined",
353
- amf_event_get_name(e));
354
- break;
355
- }
356
-}
357
-
358
-void amf_nf_state_de_registered(ogs_fsm_t *s, amf_event_t *e)
359
-{
360
- ogs_sbi_nf_instance_t *nf_instance = NULL;
361
- ogs_assert(s);
362
- ogs_assert(e);
363
-
364
- amf_sm_debug(e);
365
-
366
- nf_instance = e->sbi.data;
367
- ogs_assert(nf_instance);
368
- ogs_assert(ogs_sbi_self()->nf_instance);
369
-
370
- switch (e->id) {
371
- case OGS_FSM_ENTRY_SIG:
372
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
373
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
374
- }
375
- break;
376
-
377
- case OGS_FSM_EXIT_SIG:
378
- break;
379
-
380
- default:
381
- ogs_error("%s:%s Unknown event %s",
382
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
383
- nf_instance->id ? nf_instance->id : "Undefined",
384
- amf_event_get_name(e));
385
- break;
386
- }
387
-}
388
-
389
-void amf_nf_state_exception(ogs_fsm_t *s, amf_event_t *e)
390
-{
391
- ogs_sbi_nf_instance_t *nf_instance = NULL;
392
- ogs_sbi_client_t *client = NULL;
393
- ogs_sbi_message_t *message = NULL;
394
- ogs_sockaddr_t *addr = NULL;
395
- ogs_assert(s);
396
- ogs_assert(e);
397
-
398
- amf_sm_debug(e);
399
-
400
- nf_instance = e->sbi.data;
401
- ogs_assert(nf_instance);
402
- ogs_assert(ogs_sbi_self()->nf_instance);
403
-
404
- switch (e->id) {
405
- case OGS_FSM_ENTRY_SIG:
406
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
407
- ogs_timer_start(nf_instance->t_registration_interval,
408
- ogs_app()->time.message.sbi.
409
- nf_register_interval_in_exception);
410
- }
411
- break;
412
-
413
- case OGS_FSM_EXIT_SIG:
414
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
415
- ogs_timer_stop(nf_instance->t_registration_interval);
416
- }
417
- break;
418
-
419
- case AMF_EVT_SBI_TIMER:
420
- switch(e->timer_id) {
421
- case AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
422
- client = nf_instance->client;
423
- ogs_assert(client);
424
- addr = client->node.addr;
425
- ogs_assert(addr);
426
-
427
- ogs_warn("%s Retry to registration with NRF",
428
- ogs_sbi_self()->nf_instance->id);
429
-
430
- OGS_FSM_TRAN(s, &amf_nf_state_will_register);
431
- break;
432
-
433
- default:
434
- ogs_error("%s:%s Unknown timer%s:%d",
435
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
436
- nf_instance->id ? nf_instance->id : "Undefined",
437
- amf_timer_get_name(e->timer_id), e->timer_id);
438
- }
439
- break;
440
-
441
- case AMF_EVT_SBI_CLIENT:
442
- message = e->sbi.message;
443
- ogs_assert(message);
444
-
445
- SWITCH(message->h.service.name)
446
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
447
-
448
- SWITCH(message->h.resource.component0)
449
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
450
- break;
451
- DEFAULT
452
- ogs_error("Invalid resource name %s",
453
- message->h.resource.component0);
454
- END
455
- break;
456
- DEFAULT
457
- ogs_error("Invalid API name %s", message->h.service.name);
458
- END
459
- break;
460
-
461
- default:
462
- ogs_error("%s:%s Unknown event %s",
463
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
464
- nf_instance->id ? nf_instance->id : "Undefined",
465
- amf_event_get_name(e));
466
- break;
467
- }
468
-}
469
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/nf-sm.c
Deleted
449
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void ausf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- ausf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- ausf_nf_state_initial, ausf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void ausf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- ausf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void ausf_nf_state_initial(ogs_fsm_t *s, ausf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- ausf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- ausf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- ausf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- ausf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- ausf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &ausf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &ausf_nf_state_registered);
83
- }
84
-}
85
-
86
-void ausf_nf_state_final(ogs_fsm_t *s, ausf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- ausf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void ausf_nf_state_will_register(ogs_fsm_t *s, ausf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- ausf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, ausf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case AUSF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- ausf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &ausf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP response error %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &ausf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case AUSF_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, ausf_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- ausf_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("Unknown event %s", ausf_event_get_name(e));
196
- break;
197
- }
198
-}
199
-
200
-void ausf_nf_state_registered(ogs_fsm_t *s, ausf_event_t *e)
201
-{
202
- ogs_sbi_nf_instance_t *nf_instance = NULL;
203
- ogs_sbi_client_t *client = NULL;
204
- ogs_sbi_message_t *message = NULL;
205
- ogs_assert(s);
206
- ogs_assert(e);
207
-
208
- ausf_sm_debug(e);
209
-
210
- nf_instance = e->sbi.data;
211
- ogs_assert(nf_instance);
212
- ogs_assert(ogs_sbi_self()->nf_instance);
213
-
214
- switch (e->id) {
215
- case OGS_FSM_ENTRY_SIG:
216
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
217
- ogs_info("%s NF registered Heartbeat:%ds",
218
- ogs_sbi_self()->nf_instance->id,
219
- nf_instance->time.heartbeat_interval);
220
-
221
- client = nf_instance->client;
222
- ogs_assert(client);
223
-
224
- if (nf_instance->time.heartbeat_interval) {
225
- ogs_timer_start(nf_instance->t_heartbeat_interval,
226
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
227
- ogs_timer_start(nf_instance->t_no_heartbeat,
228
- ogs_time_from_sec(
229
- nf_instance->time.heartbeat_interval +
230
- ogs_app()->time.nf_instance.no_heartbeat_margin));
231
- }
232
-
233
- ogs_assert(true ==
234
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
235
- ogs_sbi_self()->nf_instance->nf_type,
236
- ogs_sbi_self()->nf_instance->id,
237
- OpenAPI_nf_type_UDM));
238
- }
239
-
240
- break;
241
-
242
- case OGS_FSM_EXIT_SIG:
243
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
244
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
245
-
246
- if (nf_instance->time.heartbeat_interval) {
247
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
248
- ogs_timer_stop(nf_instance->t_no_heartbeat);
249
- }
250
-
251
- if (!OGS_FSM_CHECK(&nf_instance->sm, ausf_nf_state_exception)) {
252
- ogs_assert(true ==
253
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
254
- }
255
- }
256
- break;
257
-
258
- case AUSF_EVT_SBI_CLIENT:
259
- message = e->sbi.message;
260
- ogs_assert(message);
261
-
262
- SWITCH(message->h.service.name)
263
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
264
-
265
- SWITCH(message->h.resource.component0)
266
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
267
-
268
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
269
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
270
- if (nf_instance->time.heartbeat_interval)
271
- ogs_timer_start(nf_instance->t_no_heartbeat,
272
- ogs_time_from_sec(
273
- nf_instance->time.heartbeat_interval +
274
- ogs_app()->time.nf_instance.
275
- no_heartbeat_margin));
276
- } else {
277
- ogs_warn("%s HTTP response error %d",
278
- ogs_sbi_self()->nf_instance->id,
279
- message->res_status);
280
- OGS_FSM_TRAN(s, &ausf_nf_state_exception);
281
- }
282
-
283
- break;
284
-
285
- DEFAULT
286
- ogs_error("%s Invalid resource name %s",
287
- ogs_sbi_self()->nf_instance->id,
288
- message->h.resource.component0);
289
- END
290
- break;
291
-
292
- DEFAULT
293
- ogs_error("%s Invalid API name %s",
294
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
295
- END
296
- break;
297
-
298
- case AUSF_EVT_SBI_TIMER:
299
- switch(e->timer_id) {
300
- case AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
301
- if (nf_instance->time.heartbeat_interval)
302
- ogs_timer_start(nf_instance->t_heartbeat_interval,
303
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
304
-
305
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
306
- break;
307
-
308
- case AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
309
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
310
- OGS_FSM_TRAN(s, &ausf_nf_state_will_register);
311
- break;
312
-
313
- case AUSF_TIMER_NF_INSTANCE_VALIDITY:
314
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
315
- ogs_assert(nf_instance->id);
316
-
317
- ogs_info("%s NF expired", nf_instance->id);
318
- OGS_FSM_TRAN(s, &ausf_nf_state_de_registered);
319
- break;
320
-
321
- default:
322
- ogs_error("%s:%s Unknown timer%s:%d",
323
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
324
- nf_instance->id ? nf_instance->id : "Undefined",
325
- ausf_timer_get_name(e->timer_id), e->timer_id);
326
- }
327
- break;
328
-
329
- default:
330
- ogs_error("%s:%s Unknown event %s",
331
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
332
- nf_instance->id ? nf_instance->id : "Undefined",
333
- ausf_event_get_name(e));
334
- break;
335
- }
336
-}
337
-
338
-void ausf_nf_state_de_registered(ogs_fsm_t *s, ausf_event_t *e)
339
-{
340
- ogs_sbi_nf_instance_t *nf_instance = NULL;
341
- ogs_assert(s);
342
- ogs_assert(e);
343
-
344
- ausf_sm_debug(e);
345
-
346
- nf_instance = e->sbi.data;
347
- ogs_assert(nf_instance);
348
- ogs_assert(ogs_sbi_self()->nf_instance);
349
-
350
- switch (e->id) {
351
- case OGS_FSM_ENTRY_SIG:
352
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
353
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
354
- }
355
- break;
356
-
357
- case OGS_FSM_EXIT_SIG:
358
- break;
359
-
360
- default:
361
- ogs_error("%s:%s Unknown event %s",
362
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
363
- nf_instance->id ? nf_instance->id : "Undefined",
364
- ausf_event_get_name(e));
365
- break;
366
- }
367
-}
368
-
369
-void ausf_nf_state_exception(ogs_fsm_t *s, ausf_event_t *e)
370
-{
371
- ogs_sbi_nf_instance_t *nf_instance = NULL;
372
- ogs_sbi_client_t *client = NULL;
373
- ogs_sbi_message_t *message = NULL;
374
- ogs_sockaddr_t *addr = NULL;
375
- ogs_assert(s);
376
- ogs_assert(e);
377
-
378
- ausf_sm_debug(e);
379
-
380
- nf_instance = e->sbi.data;
381
- ogs_assert(nf_instance);
382
- ogs_assert(ogs_sbi_self()->nf_instance);
383
-
384
- switch (e->id) {
385
- case OGS_FSM_ENTRY_SIG:
386
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
387
- ogs_timer_start(nf_instance->t_registration_interval,
388
- ogs_app()->time.message.sbi.
389
- nf_register_interval_in_exception);
390
- }
391
- break;
392
-
393
- case OGS_FSM_EXIT_SIG:
394
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
395
- ogs_timer_stop(nf_instance->t_registration_interval);
396
- }
397
- break;
398
-
399
- case AUSF_EVT_SBI_TIMER:
400
- switch(e->timer_id) {
401
- case AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
402
- client = nf_instance->client;
403
- ogs_assert(client);
404
- addr = client->node.addr;
405
- ogs_assert(addr);
406
-
407
- ogs_warn("%s Retry to registration with NRF",
408
- ogs_sbi_self()->nf_instance->id);
409
-
410
- OGS_FSM_TRAN(s, &ausf_nf_state_will_register);
411
- break;
412
-
413
- default:
414
- ogs_error("%s:%s Unknown timer%s:%d",
415
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
416
- nf_instance->id ? nf_instance->id : "Undefined",
417
- ausf_timer_get_name(e->timer_id), e->timer_id);
418
- }
419
- break;
420
-
421
- case AUSF_EVT_SBI_CLIENT:
422
- message = e->sbi.message;
423
- ogs_assert(message);
424
-
425
- SWITCH(message->h.service.name)
426
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
427
-
428
- SWITCH(message->h.resource.component0)
429
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
430
- break;
431
- DEFAULT
432
- ogs_error("Invalid resource name %s",
433
- message->h.resource.component0);
434
- END
435
- break;
436
- DEFAULT
437
- ogs_error("Invalid API name %s", message->h.service.name);
438
- END
439
- break;
440
-
441
- default:
442
- ogs_error("%s:%s Unknown event %s",
443
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
444
- nf_instance->id ? nf_instance->id : "Undefined",
445
- ausf_event_get_name(e));
446
- break;
447
- }
448
-}
449
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *ausf_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef AUSF_NNRF_BUILD_H
22
-#define AUSF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *ausf_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* AUSF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/timer.c
Deleted
118
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *ausf_timer_get_name(ausf_timer_e id)
24
-{
25
- switch (id) {
26
- case AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case AUSF_TIMER_NF_INSTANCE_VALIDITY:
33
- return "AUSF_TIMER_NF_INSTANCE_VALIDITY";
34
- case AUSF_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "AUSF_TIMER_SUBSCRIPTION_VALIDITY";
36
- case AUSF_TIMER_SBI_CLIENT_WAIT:
37
- return "AUSF_TIMER_SBI_CLIENT_WAIT";
38
- default:
39
- break;
40
- }
41
-
42
- return "UNKNOWN_TIMER";
43
-}
44
-
45
-static void sbi_timer_send_event(int timer_id, void *data)
46
-{
47
- int rv;
48
- ausf_event_t *e = NULL;
49
- ogs_assert(data);
50
-
51
- switch (timer_id) {
52
- case AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
53
- case AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
54
- case AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
55
- case AUSF_TIMER_NF_INSTANCE_VALIDITY:
56
- case AUSF_TIMER_SUBSCRIPTION_VALIDITY:
57
- e = ausf_event_new(AUSF_EVT_SBI_TIMER);
58
- ogs_assert(e);
59
- e->timer_id = timer_id;
60
- e->sbi.data = data;
61
- break;
62
- case AUSF_TIMER_SBI_CLIENT_WAIT:
63
- e = ausf_event_new(AUSF_EVT_SBI_TIMER);
64
- if (!e) {
65
- ogs_sbi_xact_t *sbi_xact = data;
66
- ogs_assert(sbi_xact);
67
-
68
- ogs_error("sbi_timer_send_event() failed");
69
- ogs_sbi_xact_remove(sbi_xact);
70
- return;
71
- }
72
- e->timer_id = timer_id;
73
- e->sbi.data = data;
74
- break;
75
- default:
76
- ogs_fatal("Unknown timer id%d", timer_id);
77
- ogs_assert_if_reached();
78
- break;
79
- }
80
-
81
- rv = ogs_queue_push(ogs_app()->queue, e);
82
- if (rv != OGS_OK) {
83
- ogs_error("ogs_queue_push() failed %d in %s",
84
- (int)rv, ausf_timer_get_name(e->timer_id));
85
- ausf_event_free(e);
86
- }
87
-}
88
-
89
-void ausf_timer_nf_instance_registration_interval(void *data)
90
-{
91
- sbi_timer_send_event(AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
92
-}
93
-
94
-void ausf_timer_nf_instance_heartbeat_interval(void *data)
95
-{
96
- sbi_timer_send_event(AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
97
-}
98
-
99
-void ausf_timer_nf_instance_no_heartbeat(void *data)
100
-{
101
- sbi_timer_send_event(AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
102
-}
103
-
104
-void ausf_timer_nf_instance_validity(void *data)
105
-{
106
- sbi_timer_send_event(AUSF_TIMER_NF_INSTANCE_VALIDITY, data);
107
-}
108
-
109
-void ausf_timer_subscription_validity(void *data)
110
-{
111
- sbi_timer_send_event(AUSF_TIMER_SUBSCRIPTION_VALIDITY, data);
112
-}
113
-
114
-void ausf_timer_sbi_client_wait_expire(void *data)
115
-{
116
- sbi_timer_send_event(AUSF_TIMER_SBI_CLIENT_WAIT, data);
117
-}
118
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef AUSF_TIMER_H
22
-#define AUSF_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- AUSF_TIMER_BASE = 0,
33
-
34
- AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- AUSF_TIMER_NF_INSTANCE_VALIDITY,
38
- AUSF_TIMER_SUBSCRIPTION_VALIDITY,
39
- AUSF_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_AUSF_TIMER,
42
-
43
-} ausf_timer_e;
44
-
45
-const char *ausf_timer_get_name(ausf_timer_e id);
46
-
47
-void ausf_timer_nf_instance_registration_interval(void *data);
48
-void ausf_timer_nf_instance_heartbeat_interval(void *data);
49
-void ausf_timer_nf_instance_no_heartbeat(void *data);
50
-void ausf_timer_nf_instance_validity(void *data);
51
-void ausf_timer_subscription_validity(void *data);
52
-void ausf_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* AUSF_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nf-sm.c
Deleted
444
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void bsf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- bsf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- bsf_nf_state_initial, bsf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void bsf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- bsf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void bsf_nf_state_initial(ogs_fsm_t *s, bsf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- bsf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- bsf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- bsf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- bsf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- bsf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &bsf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &bsf_nf_state_registered);
83
- }
84
-}
85
-
86
-void bsf_nf_state_final(ogs_fsm_t *s, bsf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- bsf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void bsf_nf_state_will_register(ogs_fsm_t *s, bsf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- bsf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, bsf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case BSF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- bsf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &bsf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP Response Status Code %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &bsf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case BSF_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, bsf_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- bsf_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("%s Unknown event %s",
196
- ogs_sbi_self()->nf_instance->id, bsf_event_get_name(e));
197
- break;
198
- }
199
-}
200
-
201
-void bsf_nf_state_registered(ogs_fsm_t *s, bsf_event_t *e)
202
-{
203
- ogs_sbi_nf_instance_t *nf_instance = NULL;
204
- ogs_sbi_client_t *client = NULL;
205
- ogs_sbi_message_t *message = NULL;
206
- ogs_assert(s);
207
- ogs_assert(e);
208
-
209
- bsf_sm_debug(e);
210
-
211
- nf_instance = e->sbi.data;
212
- ogs_assert(nf_instance);
213
- ogs_assert(ogs_sbi_self()->nf_instance);
214
-
215
- switch (e->id) {
216
- case OGS_FSM_ENTRY_SIG:
217
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
218
- ogs_info("%s NF registered Heartbeat:%ds",
219
- ogs_sbi_self()->nf_instance->id,
220
- nf_instance->time.heartbeat_interval);
221
-
222
- client = nf_instance->client;
223
- ogs_assert(client);
224
-
225
- if (nf_instance->time.heartbeat_interval) {
226
- ogs_timer_start(nf_instance->t_heartbeat_interval,
227
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
228
- ogs_timer_start(nf_instance->t_no_heartbeat,
229
- ogs_time_from_sec(
230
- nf_instance->time.heartbeat_interval +
231
- ogs_app()->time.nf_instance.no_heartbeat_margin));
232
- }
233
- }
234
-
235
- break;
236
-
237
- case OGS_FSM_EXIT_SIG:
238
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
239
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
240
-
241
- if (nf_instance->time.heartbeat_interval) {
242
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
243
- ogs_timer_stop(nf_instance->t_no_heartbeat);
244
- }
245
-
246
- if (!OGS_FSM_CHECK(&nf_instance->sm, bsf_nf_state_exception)) {
247
- ogs_assert(true ==
248
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
249
- }
250
- }
251
- break;
252
-
253
- case BSF_EVT_SBI_CLIENT:
254
- message = e->sbi.message;
255
- ogs_assert(message);
256
-
257
- SWITCH(message->h.service.name)
258
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
259
-
260
- SWITCH(message->h.resource.component0)
261
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
262
-
263
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
264
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
265
- if (nf_instance->time.heartbeat_interval)
266
- ogs_timer_start(nf_instance->t_no_heartbeat,
267
- ogs_time_from_sec(
268
- nf_instance->time.heartbeat_interval +
269
- ogs_app()->time.nf_instance.
270
- no_heartbeat_margin));
271
- } else {
272
- ogs_warn("%s HTTP response error %d",
273
- ogs_sbi_self()->nf_instance->id,
274
- message->res_status);
275
- OGS_FSM_TRAN(s, &bsf_nf_state_exception);
276
- }
277
-
278
- break;
279
-
280
- DEFAULT
281
- ogs_error("%s Invalid resource name %s",
282
- ogs_sbi_self()->nf_instance->id,
283
- message->h.resource.component0);
284
- END
285
- break;
286
-
287
- DEFAULT
288
- ogs_error("%s Invalid API name %s",
289
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
290
- END
291
- break;
292
-
293
- case BSF_EVT_SBI_TIMER:
294
- switch(e->timer_id) {
295
- case BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
296
- if (nf_instance->time.heartbeat_interval)
297
- ogs_timer_start(nf_instance->t_heartbeat_interval,
298
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
299
-
300
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
301
- break;
302
-
303
- case BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
304
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
305
- OGS_FSM_TRAN(s, &bsf_nf_state_will_register);
306
- break;
307
-
308
- case BSF_TIMER_NF_INSTANCE_VALIDITY:
309
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
310
- ogs_assert(nf_instance->id);
311
-
312
- ogs_info("%s NF expired", nf_instance->id);
313
- OGS_FSM_TRAN(s, &bsf_nf_state_de_registered);
314
- break;
315
-
316
- default:
317
- ogs_error("%s:%s Unknown timer%s:%d",
318
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
319
- nf_instance->id ? nf_instance->id : "Undefined",
320
- bsf_timer_get_name(e->timer_id), e->timer_id);
321
- }
322
- break;
323
-
324
- default:
325
- ogs_error("%s:%s Unknown event %s",
326
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
327
- nf_instance->id ? nf_instance->id : "Undefined",
328
- bsf_event_get_name(e));
329
- break;
330
- }
331
-}
332
-
333
-void bsf_nf_state_de_registered(ogs_fsm_t *s, bsf_event_t *e)
334
-{
335
- ogs_sbi_nf_instance_t *nf_instance = NULL;
336
- ogs_assert(s);
337
- ogs_assert(e);
338
-
339
- bsf_sm_debug(e);
340
-
341
- nf_instance = e->sbi.data;
342
- ogs_assert(nf_instance);
343
- ogs_assert(ogs_sbi_self()->nf_instance);
344
-
345
- switch (e->id) {
346
- case OGS_FSM_ENTRY_SIG:
347
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
348
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
349
- }
350
- break;
351
-
352
- case OGS_FSM_EXIT_SIG:
353
- break;
354
-
355
- default:
356
- ogs_error("%s:%s Unknown event %s",
357
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
358
- nf_instance->id ? nf_instance->id : "Undefined",
359
- bsf_event_get_name(e));
360
- break;
361
- }
362
-}
363
-
364
-void bsf_nf_state_exception(ogs_fsm_t *s, bsf_event_t *e)
365
-{
366
- ogs_sbi_nf_instance_t *nf_instance = NULL;
367
- ogs_sbi_client_t *client = NULL;
368
- ogs_sbi_message_t *message = NULL;
369
- ogs_sockaddr_t *addr = NULL;
370
- ogs_assert(s);
371
- ogs_assert(e);
372
-
373
- bsf_sm_debug(e);
374
-
375
- nf_instance = e->sbi.data;
376
- ogs_assert(nf_instance);
377
- ogs_assert(ogs_sbi_self()->nf_instance);
378
-
379
- switch (e->id) {
380
- case OGS_FSM_ENTRY_SIG:
381
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
382
- ogs_timer_start(nf_instance->t_registration_interval,
383
- ogs_app()->time.message.sbi.
384
- nf_register_interval_in_exception);
385
- }
386
- break;
387
-
388
- case OGS_FSM_EXIT_SIG:
389
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
390
- ogs_timer_stop(nf_instance->t_registration_interval);
391
- }
392
- break;
393
-
394
- case BSF_EVT_SBI_TIMER:
395
- switch(e->timer_id) {
396
- case BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
397
- client = nf_instance->client;
398
- ogs_assert(client);
399
- addr = client->node.addr;
400
- ogs_assert(addr);
401
-
402
- ogs_warn("%s Retry to registration with NRF",
403
- ogs_sbi_self()->nf_instance->id);
404
-
405
- OGS_FSM_TRAN(s, &bsf_nf_state_will_register);
406
- break;
407
-
408
- default:
409
- ogs_error("%s:%s Unknown timer%s:%d",
410
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
411
- nf_instance->id ? nf_instance->id : "Undefined",
412
- bsf_timer_get_name(e->timer_id), e->timer_id);
413
- }
414
- break;
415
-
416
- case BSF_EVT_SBI_CLIENT:
417
- message = e->sbi.message;
418
- ogs_assert(message);
419
-
420
- SWITCH(message->h.service.name)
421
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
422
-
423
- SWITCH(message->h.resource.component0)
424
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
425
- break;
426
- DEFAULT
427
- ogs_error("Invalid resource name %s",
428
- message->h.resource.component0);
429
- END
430
- break;
431
- DEFAULT
432
- ogs_error("Invalid API name %s", message->h.service.name);
433
- END
434
- break;
435
-
436
- default:
437
- ogs_error("%s:%s Unknown event %s",
438
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
439
- nf_instance->id ? nf_instance->id : "Undefined",
440
- bsf_event_get_name(e));
441
- break;
442
- }
443
-}
444
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *bsf_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef BSF_NNRF_BUILD_H
22
-#define BSF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *bsf_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* BSF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/timer.c
Deleted
120
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "timer.h"
22
-#include "event.h"
23
-#include "context.h"
24
-
25
-const char *bsf_timer_get_name(bsf_timer_e id)
26
-{
27
- switch (id) {
28
- case BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
29
- return "BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
30
- case BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
31
- return "BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
32
- case BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
33
- return "BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
34
- case BSF_TIMER_NF_INSTANCE_VALIDITY:
35
- return "BSF_TIMER_NF_INSTANCE_VALIDITY";
36
- case BSF_TIMER_SUBSCRIPTION_VALIDITY:
37
- return "BSF_TIMER_SUBSCRIPTION_VALIDITY";
38
- case BSF_TIMER_SBI_CLIENT_WAIT:
39
- return "BSF_TIMER_SBI_CLIENT_WAIT";
40
- default:
41
- break;
42
- }
43
-
44
- return "UNKNOWN_TIMER";
45
-}
46
-
47
-static void timer_send_event(int timer_id, void *data)
48
-{
49
- int rv;
50
- bsf_event_t *e = NULL;
51
- ogs_assert(data);
52
-
53
- switch (timer_id) {
54
- case BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
55
- case BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
56
- case BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
57
- case BSF_TIMER_NF_INSTANCE_VALIDITY:
58
- case BSF_TIMER_SUBSCRIPTION_VALIDITY:
59
- e = bsf_event_new(BSF_EVT_SBI_TIMER);
60
- ogs_assert(e);
61
- e->timer_id = timer_id;
62
- e->sbi.data = data;
63
- break;
64
- case BSF_TIMER_SBI_CLIENT_WAIT:
65
- e = bsf_event_new(BSF_EVT_SBI_TIMER);
66
- if (!e) {
67
- ogs_sbi_xact_t *sbi_xact = data;
68
- ogs_assert(sbi_xact);
69
-
70
- ogs_error("timer_send_event() failed");
71
- ogs_sbi_xact_remove(sbi_xact);
72
- return;
73
- }
74
- e->timer_id = timer_id;
75
- e->sbi.data = data;
76
- break;
77
- default:
78
- ogs_fatal("Unknown timer id%d", timer_id);
79
- ogs_assert_if_reached();
80
- break;
81
- }
82
-
83
- rv = ogs_queue_push(ogs_app()->queue, e);
84
- if (rv != OGS_OK) {
85
- ogs_error("ogs_queue_push() failed %d in %s",
86
- (int)rv, bsf_timer_get_name(e->timer_id));
87
- bsf_event_free(e);
88
- }
89
-}
90
-
91
-void bsf_timer_nf_instance_registration_interval(void *data)
92
-{
93
- timer_send_event(BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
94
-}
95
-
96
-void bsf_timer_nf_instance_heartbeat_interval(void *data)
97
-{
98
- timer_send_event(BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
99
-}
100
-
101
-void bsf_timer_nf_instance_no_heartbeat(void *data)
102
-{
103
- timer_send_event(BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
104
-}
105
-
106
-void bsf_timer_nf_instance_validity(void *data)
107
-{
108
- timer_send_event(BSF_TIMER_NF_INSTANCE_VALIDITY, data);
109
-}
110
-
111
-void bsf_timer_subscription_validity(void *data)
112
-{
113
- timer_send_event(BSF_TIMER_SUBSCRIPTION_VALIDITY, data);
114
-}
115
-
116
-void bsf_timer_sbi_client_wait_expire(void *data)
117
-{
118
- timer_send_event(BSF_TIMER_SBI_CLIENT_WAIT, data);
119
-}
120
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef BSF_TIMER_H
22
-#define BSF_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- BSF_TIMER_BASE = 0,
33
-
34
- BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- BSF_TIMER_NF_INSTANCE_VALIDITY,
38
- BSF_TIMER_SUBSCRIPTION_VALIDITY,
39
- BSF_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_BSF_TIMER,
42
-
43
-} bsf_timer_e;
44
-
45
-const char *bsf_timer_get_name(bsf_timer_e id);
46
-
47
-void bsf_timer_nf_instance_registration_interval(void *data);
48
-void bsf_timer_nf_instance_heartbeat_interval(void *data);
49
-void bsf_timer_nf_instance_no_heartbeat(void *data);
50
-void bsf_timer_nf_instance_validity(void *data);
51
-void bsf_timer_subscription_validity(void *data);
52
-void bsf_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* BSF_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nf-sm.c
Deleted
443
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void nssf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- nssf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- nssf_nf_state_initial, nssf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void nssf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- nssf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void nssf_nf_state_initial(ogs_fsm_t *s, nssf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- nssf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- nssf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- nssf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- nssf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- nssf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &nssf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &nssf_nf_state_registered);
83
- }
84
-}
85
-
86
-void nssf_nf_state_final(ogs_fsm_t *s, nssf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- nssf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void nssf_nf_state_will_register(ogs_fsm_t *s, nssf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- nssf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, nssf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case NSSF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- nssf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &nssf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP response error %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &nssf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case NSSF_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, nssf_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- nssf_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("Unknown event %s", nssf_event_get_name(e));
196
- break;
197
- }
198
-}
199
-
200
-void nssf_nf_state_registered(ogs_fsm_t *s, nssf_event_t *e)
201
-{
202
- ogs_sbi_nf_instance_t *nf_instance = NULL;
203
- ogs_sbi_client_t *client = NULL;
204
- ogs_sbi_message_t *message = NULL;
205
- ogs_assert(s);
206
- ogs_assert(e);
207
-
208
- nssf_sm_debug(e);
209
-
210
- nf_instance = e->sbi.data;
211
- ogs_assert(nf_instance);
212
- ogs_assert(ogs_sbi_self()->nf_instance);
213
-
214
- switch (e->id) {
215
- case OGS_FSM_ENTRY_SIG:
216
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
217
- ogs_info("%s NF registered Heartbeat:%ds",
218
- ogs_sbi_self()->nf_instance->id,
219
- nf_instance->time.heartbeat_interval);
220
-
221
- client = nf_instance->client;
222
- ogs_assert(client);
223
-
224
- if (nf_instance->time.heartbeat_interval) {
225
- ogs_timer_start(nf_instance->t_heartbeat_interval,
226
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
227
- ogs_timer_start(nf_instance->t_no_heartbeat,
228
- ogs_time_from_sec(
229
- nf_instance->time.heartbeat_interval +
230
- ogs_app()->time.nf_instance.no_heartbeat_margin));
231
- }
232
- }
233
-
234
- break;
235
-
236
- case OGS_FSM_EXIT_SIG:
237
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
238
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
239
-
240
- if (nf_instance->time.heartbeat_interval) {
241
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
242
- ogs_timer_stop(nf_instance->t_no_heartbeat);
243
- }
244
-
245
- if (!OGS_FSM_CHECK(&nf_instance->sm, nssf_nf_state_exception)) {
246
- ogs_assert(true ==
247
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
248
- }
249
- }
250
- break;
251
-
252
- case NSSF_EVT_SBI_CLIENT:
253
- message = e->sbi.message;
254
- ogs_assert(message);
255
-
256
- SWITCH(message->h.service.name)
257
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
258
-
259
- SWITCH(message->h.resource.component0)
260
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
261
-
262
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
263
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
264
- if (nf_instance->time.heartbeat_interval)
265
- ogs_timer_start(nf_instance->t_no_heartbeat,
266
- ogs_time_from_sec(
267
- nf_instance->time.heartbeat_interval +
268
- ogs_app()->time.nf_instance.
269
- no_heartbeat_margin));
270
- } else {
271
- ogs_warn("%s HTTP response error %d",
272
- ogs_sbi_self()->nf_instance->id,
273
- message->res_status);
274
- OGS_FSM_TRAN(s, &nssf_nf_state_exception);
275
- }
276
-
277
- break;
278
-
279
- DEFAULT
280
- ogs_error("%s Invalid resource name %s",
281
- ogs_sbi_self()->nf_instance->id,
282
- message->h.resource.component0);
283
- END
284
- break;
285
-
286
- DEFAULT
287
- ogs_error("%s Invalid API name %s",
288
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
289
- END
290
- break;
291
-
292
- case NSSF_EVT_SBI_TIMER:
293
- switch(e->timer_id) {
294
- case NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
295
- if (nf_instance->time.heartbeat_interval)
296
- ogs_timer_start(nf_instance->t_heartbeat_interval,
297
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
298
-
299
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
300
- break;
301
-
302
- case NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
303
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
304
- OGS_FSM_TRAN(s, &nssf_nf_state_will_register);
305
- break;
306
-
307
- case NSSF_TIMER_NF_INSTANCE_VALIDITY:
308
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
309
- ogs_assert(nf_instance->id);
310
-
311
- ogs_info("%s NF expired", nf_instance->id);
312
- OGS_FSM_TRAN(s, &nssf_nf_state_de_registered);
313
- break;
314
-
315
- default:
316
- ogs_error("%s:%s Unknown timer%s:%d",
317
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
318
- nf_instance->id ? nf_instance->id : "Undefined",
319
- nssf_timer_get_name(e->timer_id), e->timer_id);
320
- }
321
- break;
322
-
323
- default:
324
- ogs_error("%s:%s Unknown event %s",
325
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
326
- nf_instance->id ? nf_instance->id : "Undefined",
327
- nssf_event_get_name(e));
328
- break;
329
- }
330
-}
331
-
332
-void nssf_nf_state_de_registered(ogs_fsm_t *s, nssf_event_t *e)
333
-{
334
- ogs_sbi_nf_instance_t *nf_instance = NULL;
335
- ogs_assert(s);
336
- ogs_assert(e);
337
-
338
- nssf_sm_debug(e);
339
-
340
- nf_instance = e->sbi.data;
341
- ogs_assert(nf_instance);
342
- ogs_assert(ogs_sbi_self()->nf_instance);
343
-
344
- switch (e->id) {
345
- case OGS_FSM_ENTRY_SIG:
346
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
347
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
348
- }
349
- break;
350
-
351
- case OGS_FSM_EXIT_SIG:
352
- break;
353
-
354
- default:
355
- ogs_error("%s:%s Unknown event %s",
356
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
357
- nf_instance->id ? nf_instance->id : "Undefined",
358
- nssf_event_get_name(e));
359
- break;
360
- }
361
-}
362
-
363
-void nssf_nf_state_exception(ogs_fsm_t *s, nssf_event_t *e)
364
-{
365
- ogs_sbi_nf_instance_t *nf_instance = NULL;
366
- ogs_sbi_client_t *client = NULL;
367
- ogs_sbi_message_t *message = NULL;
368
- ogs_sockaddr_t *addr = NULL;
369
- ogs_assert(s);
370
- ogs_assert(e);
371
-
372
- nssf_sm_debug(e);
373
-
374
- nf_instance = e->sbi.data;
375
- ogs_assert(nf_instance);
376
- ogs_assert(ogs_sbi_self()->nf_instance);
377
-
378
- switch (e->id) {
379
- case OGS_FSM_ENTRY_SIG:
380
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
381
- ogs_timer_start(nf_instance->t_registration_interval,
382
- ogs_app()->time.message.sbi.
383
- nf_register_interval_in_exception);
384
- }
385
- break;
386
-
387
- case OGS_FSM_EXIT_SIG:
388
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
389
- ogs_timer_stop(nf_instance->t_registration_interval);
390
- }
391
- break;
392
-
393
- case NSSF_EVT_SBI_TIMER:
394
- switch(e->timer_id) {
395
- case NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
396
- client = nf_instance->client;
397
- ogs_assert(client);
398
- addr = client->node.addr;
399
- ogs_assert(addr);
400
-
401
- ogs_warn("%s Retry to registration with NRF",
402
- ogs_sbi_self()->nf_instance->id);
403
-
404
- OGS_FSM_TRAN(s, &nssf_nf_state_will_register);
405
- break;
406
-
407
- default:
408
- ogs_error("%s:%s Unknown timer%s:%d",
409
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
410
- nf_instance->id ? nf_instance->id : "Undefined",
411
- nssf_timer_get_name(e->timer_id), e->timer_id);
412
- }
413
- break;
414
-
415
- case NSSF_EVT_SBI_CLIENT:
416
- message = e->sbi.message;
417
- ogs_assert(message);
418
-
419
- SWITCH(message->h.service.name)
420
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
421
-
422
- SWITCH(message->h.resource.component0)
423
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
424
- break;
425
- DEFAULT
426
- ogs_error("Invalid resource name %s",
427
- message->h.resource.component0);
428
- END
429
- break;
430
- DEFAULT
431
- ogs_error("Invalid API name %s", message->h.service.name);
432
- END
433
- break;
434
-
435
- default:
436
- ogs_error("%s:%s Unknown event %s",
437
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
438
- nf_instance->id ? nf_instance->id : "Undefined",
439
- nssf_event_get_name(e));
440
- break;
441
- }
442
-}
443
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *nssf_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef NSSF_NNRF_BUILD_H
22
-#define NSSF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *nssf_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* NSSF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nnrf-handler.c
Deleted
249
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "sbi-path.h"
22
-#include "nnrf-handler.h"
23
-
24
-void nssf_nnrf_handle_nf_register(
25
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
26
-{
27
- OpenAPI_nf_profile_t *NFProfile = NULL;
28
- ogs_sbi_client_t *client = NULL;
29
-
30
- ogs_assert(recvmsg);
31
- ogs_assert(nf_instance);
32
- client = nf_instance->client;
33
- ogs_assert(client);
34
-
35
- NFProfile = recvmsg->NFProfile;
36
- if (!NFProfile) {
37
- ogs_error("No NFProfile");
38
- return;
39
- }
40
-
41
- /* TIME : Update heartbeat from NRF */
42
- if (NFProfile->is_heart_beat_timer == true)
43
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
44
-}
45
-
46
-void nssf_nnrf_handle_nf_status_subscribe(
47
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
48
-{
49
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
50
- ogs_sbi_client_t *client = NULL;
51
-
52
- ogs_assert(recvmsg);
53
- ogs_assert(subscription);
54
- client = subscription->client;
55
- ogs_assert(client);
56
-
57
- SubscriptionData = recvmsg->SubscriptionData;
58
- if (!SubscriptionData) {
59
- ogs_error("No SubscriptionData");
60
- return;
61
- }
62
-
63
- if (!SubscriptionData->subscription_id) {
64
- ogs_error("No SubscriptionId");
65
- return;
66
- }
67
- ogs_sbi_subscription_set_id(
68
- subscription, SubscriptionData->subscription_id);
69
-
70
- if (SubscriptionData->validity_time) {
71
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
72
- ogs_time_t time, duration;
73
- if (ogs_sbi_time_from_string(
74
- &time, SubscriptionData->validity_time) == true) {
75
- duration = time - ogs_time_now();
76
- if (duration < VALIDITY_MINIMUM) {
77
- duration = VALIDITY_MINIMUM;
78
- ogs_warn("%s Forced to %lld seconds", subscription->id,
79
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
80
- }
81
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
82
- nssf_timer_subscription_validity, subscription);
83
- ogs_assert(subscription->t_validity);
84
- ogs_timer_start(subscription->t_validity, duration);
85
- } else {
86
- ogs_error("Cannot parse validitiyTime %s",
87
- SubscriptionData->validity_time);
88
- }
89
- }
90
-}
91
-
92
-bool nssf_nnrf_handle_nf_status_notify(
93
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
94
-{
95
- int rv;
96
- bool handled;
97
-
98
- ogs_sbi_response_t *response = NULL;
99
- OpenAPI_notification_data_t *NotificationData = NULL;
100
- ogs_sbi_nf_instance_t *nf_instance = NULL;
101
-
102
- ogs_sbi_message_t message;
103
- ogs_sbi_header_t header;
104
-
105
- ogs_assert(stream);
106
- ogs_assert(recvmsg);
107
-
108
- NotificationData = recvmsg->NotificationData;
109
- if (!NotificationData) {
110
- ogs_error("No NotificationData");
111
- ogs_assert(true ==
112
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
113
- recvmsg, "No NotificationData", NULL));
114
- return false;
115
- }
116
-
117
- if (!NotificationData->nf_instance_uri) {
118
- ogs_error("No nfInstanceUri");
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "No nfInstanceUri", NULL));
122
- return false;
123
- }
124
-
125
- memset(&header, 0, sizeof(header));
126
- header.uri = NotificationData->nf_instance_uri;
127
-
128
- rv = ogs_sbi_parse_header(&message, &header);
129
- if (rv != OGS_OK) {
130
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
131
- ogs_assert(true ==
132
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
133
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
134
- return false;
135
- }
136
-
137
- if (!message.h.resource.component1) {
138
- ogs_error("No nfInstanceId %s", header.uri);
139
- ogs_assert(true ==
140
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
141
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
142
- ogs_sbi_header_free(&header);
143
- return false;
144
- }
145
-
146
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
147
- ogs_warn("%s The notification is not allowed",
148
- message.h.resource.component1);
149
- ogs_assert(true ==
150
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
151
- recvmsg, "The notification is not allowed",
152
- message.h.resource.component1));
153
- ogs_sbi_header_free(&header);
154
- return false;
155
- }
156
-
157
- if (NotificationData->event ==
158
- OpenAPI_notification_event_type_NF_REGISTERED) {
159
-
160
- OpenAPI_nf_profile_t *NFProfile = NULL;
161
-
162
- NFProfile = NotificationData->nf_profile;
163
- if (!NFProfile) {
164
- ogs_error("No NFProfile");
165
- ogs_assert(true ==
166
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
167
- recvmsg, "No NFProfile", NULL));
168
- ogs_sbi_header_free(&header);
169
- return false;
170
- }
171
-
172
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
173
- if (!nf_instance) {
174
- nf_instance = ogs_sbi_nf_instance_add();
175
- ogs_assert(nf_instance);
176
- ogs_sbi_nf_instance_set_id(nf_instance,
177
- message.h.resource.component1);
178
-
179
- nssf_nf_fsm_init(nf_instance);
180
-
181
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
182
-
183
- } else {
184
- OGS_FSM_TRAN(&nf_instance->sm, nssf_nf_state_registered);
185
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
186
-
187
- ogs_warn("%s (NRF-notify) NF has already been added",
188
- message.h.resource.component1);
189
-
190
- }
191
-
192
- handled = ogs_sbi_nnrf_handle_nf_profile(
193
- nf_instance, NFProfile, stream, recvmsg);
194
- if (!handled) {
195
- NSSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
196
- ogs_sbi_header_free(&header);
197
- return false;
198
- }
199
-
200
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
201
-
202
- handled = ogs_sbi_client_associate(nf_instance);
203
- if (!handled) {
204
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
205
- ogs_assert(true ==
206
- ogs_sbi_server_send_error(stream,
207
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
208
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
209
- NSSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
210
- ogs_sbi_header_free(&header);
211
- return false;
212
- }
213
-
214
- } else if (NotificationData->event ==
215
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
216
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
217
- if (nf_instance) {
218
- NSSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
219
- } else {
220
- ogs_warn("%s (NRF-notify) Not found",
221
- message.h.resource.component1);
222
- ogs_assert(true ==
223
- ogs_sbi_server_send_error(stream,
224
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
225
- recvmsg, "Not found", message.h.resource.component1));
226
- ogs_sbi_header_free(&header);
227
- return false;
228
- }
229
- } else {
230
- char *eventstr = OpenAPI_notification_event_type_ToString(
231
- NotificationData->event);
232
- ogs_error("Not supported event %d:%s",
233
- NotificationData->event, eventstr ? eventstr : "Unknown");
234
- ogs_assert(true ==
235
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
236
- recvmsg, "Not supported event",
237
- eventstr ? eventstr : "Unknown"));
238
- ogs_sbi_header_free(&header);
239
- return false;
240
- }
241
-
242
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
243
- ogs_assert(response);
244
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
245
-
246
- ogs_sbi_header_free(&header);
247
- return true;
248
-}
249
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nnrf-handler.h
Deleted
43
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef NSSF_NNRF_HANDLER_H
22
-#define NSSF_NNRF_HANDLER_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-void nssf_nnrf_handle_nf_register(
31
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
32
-void nssf_nnrf_handle_nf_status_subscribe(
33
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
34
-
35
-bool nssf_nnrf_handle_nf_status_notify(
36
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
37
-
38
-#ifdef __cplusplus
39
-}
40
-#endif
41
-
42
-#endif /* NSSF_NNRF_HANDLER_H */
43
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/timer.c
Deleted
103
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *nssf_timer_get_name(nssf_timer_e id)
24
-{
25
- switch (id) {
26
- case NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case NSSF_TIMER_NF_INSTANCE_VALIDITY:
33
- return "NSSF_TIMER_NF_INSTANCE_VALIDITY";
34
- case NSSF_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "NSSF_TIMER_SUBSCRIPTION_VALIDITY";
36
- default:
37
- break;
38
- }
39
-
40
- return "UNKNOWN_TIMER";
41
-}
42
-
43
-static void sbi_timer_send_event(int timer_id, void *data)
44
-{
45
- int rv;
46
- nssf_event_t *e = NULL;
47
- ogs_assert(data);
48
-
49
- switch (timer_id) {
50
- case NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
51
- case NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
52
- case NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
53
- case NSSF_TIMER_NF_INSTANCE_VALIDITY:
54
- case NSSF_TIMER_SUBSCRIPTION_VALIDITY:
55
- e = nssf_event_new(NSSF_EVT_SBI_TIMER);
56
- ogs_assert(e);
57
- e->timer_id = timer_id;
58
- e->sbi.data = data;
59
- break;
60
- default:
61
- ogs_fatal("Unknown timer id%d", timer_id);
62
- ogs_assert_if_reached();
63
- break;
64
- }
65
-
66
- rv = ogs_queue_push(ogs_app()->queue, e);
67
- if (rv != OGS_OK) {
68
- ogs_error("ogs_queue_push() failed %d in %s",
69
- (int)rv, nssf_timer_get_name(e->timer_id));
70
- nssf_event_free(e);
71
- }
72
-}
73
-
74
-void nssf_timer_nf_instance_registration_interval(void *data)
75
-{
76
- sbi_timer_send_event(NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
77
-}
78
-
79
-void nssf_timer_nf_instance_heartbeat_interval(void *data)
80
-{
81
- sbi_timer_send_event(NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
82
-}
83
-
84
-void nssf_timer_nf_instance_no_heartbeat(void *data)
85
-{
86
- sbi_timer_send_event(NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
87
-}
88
-
89
-void nssf_timer_nf_instance_validity(void *data)
90
-{
91
- sbi_timer_send_event(NSSF_TIMER_NF_INSTANCE_VALIDITY, data);
92
-}
93
-
94
-void nssf_timer_subscription_validity(void *data)
95
-{
96
- sbi_timer_send_event(NSSF_TIMER_SUBSCRIPTION_VALIDITY, data);
97
-}
98
-
99
-void nssf_timer_sbi_client_wait_expire(void *data)
100
-{
101
- sbi_timer_send_event(NSSF_TIMER_SBI_CLIENT_WAIT, data);
102
-}
103
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef NSSF_TIMER_H
22
-#define NSSF_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- NSSF_TIMER_BASE = 0,
33
-
34
- NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- NSSF_TIMER_NF_INSTANCE_VALIDITY,
38
- NSSF_TIMER_SUBSCRIPTION_VALIDITY,
39
- NSSF_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_NSSF_TIMER,
42
-
43
-} nssf_timer_e;
44
-
45
-const char *nssf_timer_get_name(nssf_timer_e id);
46
-
47
-void nssf_timer_nf_instance_registration_interval(void *data);
48
-void nssf_timer_nf_instance_heartbeat_interval(void *data);
49
-void nssf_timer_nf_instance_no_heartbeat(void *data);
50
-void nssf_timer_nf_instance_validity(void *data);
51
-void nssf_timer_subscription_validity(void *data);
52
-void nssf_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* NSSF_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nf-sm.c
Deleted
455
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void pcf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- pcf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- pcf_nf_state_initial, pcf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void pcf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- pcf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void pcf_nf_state_initial(ogs_fsm_t *s, pcf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- pcf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- pcf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- pcf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- pcf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- pcf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &pcf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &pcf_nf_state_registered);
83
- }
84
-}
85
-
86
-void pcf_nf_state_final(ogs_fsm_t *s, pcf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- pcf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void pcf_nf_state_will_register(ogs_fsm_t *s, pcf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- pcf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, pcf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case PCF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- pcf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &pcf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP response error %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &pcf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id,
166
- message->h.service.name);
167
- END
168
- break;
169
-
170
- case PCF_EVT_SBI_TIMER:
171
- switch(e->timer_id) {
172
- case PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
173
- client = nf_instance->client;
174
- ogs_assert(client);
175
- addr = client->node.addr;
176
- ogs_assert(addr);
177
-
178
- ogs_warn("%s Retry to registration with NRF",
179
- ogs_sbi_self()->nf_instance->id);
180
-
181
- ogs_timer_start(nf_instance->t_registration_interval,
182
- ogs_app()->time.message.sbi.nf_register_interval);
183
-
184
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
185
- nf_instance, pcf_nnrf_nfm_build_register));
186
- break;
187
-
188
- default:
189
- ogs_error("%s Unknown timer%s:%d",
190
- ogs_sbi_self()->nf_instance->id,
191
- pcf_timer_get_name(e->timer_id), e->timer_id);
192
- }
193
- break;
194
-
195
- default:
196
- ogs_error("Unknown event %s", pcf_event_get_name(e));
197
- break;
198
- }
199
-}
200
-
201
-void pcf_nf_state_registered(ogs_fsm_t *s, pcf_event_t *e)
202
-{
203
- ogs_sbi_nf_instance_t *nf_instance = NULL;
204
- ogs_sbi_client_t *client = NULL;
205
- ogs_sbi_message_t *message = NULL;
206
- ogs_assert(s);
207
- ogs_assert(e);
208
-
209
- pcf_sm_debug(e);
210
-
211
- nf_instance = e->sbi.data;
212
- ogs_assert(nf_instance);
213
- ogs_assert(ogs_sbi_self()->nf_instance);
214
-
215
- switch (e->id) {
216
- case OGS_FSM_ENTRY_SIG:
217
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
218
- ogs_info("%s NF registered Heartbeat:%ds",
219
- ogs_sbi_self()->nf_instance->id,
220
- nf_instance->time.heartbeat_interval);
221
-
222
- client = nf_instance->client;
223
- ogs_assert(client);
224
-
225
- if (nf_instance->time.heartbeat_interval) {
226
- ogs_timer_start(nf_instance->t_heartbeat_interval,
227
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
228
- ogs_timer_start(nf_instance->t_no_heartbeat,
229
- ogs_time_from_sec(
230
- nf_instance->time.heartbeat_interval +
231
- ogs_app()->time.nf_instance.no_heartbeat_margin));
232
- }
233
-
234
- ogs_assert(true ==
235
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
236
- ogs_sbi_self()->nf_instance->nf_type,
237
- ogs_sbi_self()->nf_instance->id,
238
- OpenAPI_nf_type_BSF));
239
- ogs_assert(true ==
240
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
241
- ogs_sbi_self()->nf_instance->nf_type,
242
- ogs_sbi_self()->nf_instance->id,
243
- OpenAPI_nf_type_UDR));
244
- }
245
-
246
- break;
247
-
248
- case OGS_FSM_EXIT_SIG:
249
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
250
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
251
-
252
- if (nf_instance->time.heartbeat_interval) {
253
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
254
- ogs_timer_stop(nf_instance->t_no_heartbeat);
255
- }
256
-
257
- if (!OGS_FSM_CHECK(&nf_instance->sm, pcf_nf_state_exception)) {
258
- ogs_assert(true ==
259
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
260
- }
261
- }
262
- break;
263
-
264
- case PCF_EVT_SBI_CLIENT:
265
- message = e->sbi.message;
266
- ogs_assert(message);
267
-
268
- SWITCH(message->h.service.name)
269
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
270
-
271
- SWITCH(message->h.resource.component0)
272
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
273
-
274
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
275
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
276
- if (nf_instance->time.heartbeat_interval)
277
- ogs_timer_start(nf_instance->t_no_heartbeat,
278
- ogs_time_from_sec(
279
- nf_instance->time.heartbeat_interval +
280
- ogs_app()->time.nf_instance.
281
- no_heartbeat_margin));
282
- } else {
283
- ogs_warn("%s HTTP response error %d",
284
- ogs_sbi_self()->nf_instance->id,
285
- message->res_status);
286
- OGS_FSM_TRAN(s, &pcf_nf_state_exception);
287
- }
288
-
289
- break;
290
-
291
- DEFAULT
292
- ogs_error("%s Invalid resource name %s",
293
- ogs_sbi_self()->nf_instance->id,
294
- message->h.resource.component0);
295
- END
296
- break;
297
-
298
- DEFAULT
299
- ogs_error("%s Invalid API name %s",
300
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
301
- END
302
- break;
303
-
304
- case PCF_EVT_SBI_TIMER:
305
- switch(e->timer_id) {
306
- case PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
307
- if (nf_instance->time.heartbeat_interval)
308
- ogs_timer_start(nf_instance->t_heartbeat_interval,
309
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
310
-
311
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
312
- break;
313
-
314
- case PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
315
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
316
- OGS_FSM_TRAN(s, &pcf_nf_state_will_register);
317
- break;
318
-
319
- case PCF_TIMER_NF_INSTANCE_VALIDITY:
320
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
321
- ogs_assert(nf_instance->id);
322
-
323
- ogs_info("%s NF expired", nf_instance->id);
324
- OGS_FSM_TRAN(s, &pcf_nf_state_de_registered);
325
- break;
326
-
327
- default:
328
- ogs_error("%s:%s Unknown timer%s:%d",
329
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
330
- nf_instance->id ? nf_instance->id : "Undefined",
331
- pcf_timer_get_name(e->timer_id), e->timer_id);
332
- }
333
- break;
334
-
335
- default:
336
- ogs_error("%s:%s Unknown event %s",
337
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
338
- nf_instance->id ? nf_instance->id : "Undefined",
339
- pcf_event_get_name(e));
340
- break;
341
- }
342
-}
343
-
344
-void pcf_nf_state_de_registered(ogs_fsm_t *s, pcf_event_t *e)
345
-{
346
- ogs_sbi_nf_instance_t *nf_instance = NULL;
347
- ogs_assert(s);
348
- ogs_assert(e);
349
-
350
- pcf_sm_debug(e);
351
-
352
- nf_instance = e->sbi.data;
353
- ogs_assert(nf_instance);
354
- ogs_assert(ogs_sbi_self()->nf_instance);
355
-
356
- switch (e->id) {
357
- case OGS_FSM_ENTRY_SIG:
358
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
359
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
360
- }
361
- break;
362
-
363
- case OGS_FSM_EXIT_SIG:
364
- break;
365
-
366
- default:
367
- ogs_error("%s:%s Unknown event %s",
368
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
369
- nf_instance->id ? nf_instance->id : "Undefined",
370
- pcf_event_get_name(e));
371
- break;
372
- }
373
-}
374
-
375
-void pcf_nf_state_exception(ogs_fsm_t *s, pcf_event_t *e)
376
-{
377
- ogs_sbi_nf_instance_t *nf_instance = NULL;
378
- ogs_sbi_client_t *client = NULL;
379
- ogs_sbi_message_t *message = NULL;
380
- ogs_sockaddr_t *addr = NULL;
381
- ogs_assert(s);
382
- ogs_assert(e);
383
-
384
- pcf_sm_debug(e);
385
-
386
- nf_instance = e->sbi.data;
387
- ogs_assert(nf_instance);
388
- ogs_assert(ogs_sbi_self()->nf_instance);
389
-
390
- switch (e->id) {
391
- case OGS_FSM_ENTRY_SIG:
392
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
393
- ogs_timer_start(nf_instance->t_registration_interval,
394
- ogs_app()->time.message.sbi.
395
- nf_register_interval_in_exception);
396
- }
397
- break;
398
-
399
- case OGS_FSM_EXIT_SIG:
400
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
401
- ogs_timer_stop(nf_instance->t_registration_interval);
402
- }
403
- break;
404
-
405
- case PCF_EVT_SBI_TIMER:
406
- switch(e->timer_id) {
407
- case PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
408
- client = nf_instance->client;
409
- ogs_assert(client);
410
- addr = client->node.addr;
411
- ogs_assert(addr);
412
-
413
- ogs_warn("%s Retry to registration with NRF",
414
- ogs_sbi_self()->nf_instance->id);
415
-
416
- OGS_FSM_TRAN(s, &pcf_nf_state_will_register);
417
- break;
418
-
419
- default:
420
- ogs_error("%s:%s Unknown timer%s:%d",
421
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
422
- nf_instance->id ? nf_instance->id : "Undefined",
423
- pcf_timer_get_name(e->timer_id), e->timer_id);
424
- }
425
- break;
426
-
427
- case PCF_EVT_SBI_CLIENT:
428
- message = e->sbi.message;
429
- ogs_assert(message);
430
-
431
- SWITCH(message->h.service.name)
432
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
433
-
434
- SWITCH(message->h.resource.component0)
435
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
436
- break;
437
- DEFAULT
438
- ogs_error("Invalid resource name %s",
439
- message->h.resource.component0);
440
- END
441
- break;
442
- DEFAULT
443
- ogs_error("Invalid API name %s", message->h.service.name);
444
- END
445
- break;
446
-
447
- default:
448
- ogs_error("%s:%s Unknown event %s",
449
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
450
- nf_instance->id ? nf_instance->id : "Undefined",
451
- pcf_event_get_name(e));
452
- break;
453
- }
454
-}
455
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *pcf_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef PCF_NNRF_BUILD_H
22
-#define PCF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *pcf_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* PCF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/timer.c
Deleted
118
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *pcf_timer_get_name(pcf_timer_e id)
24
-{
25
- switch (id) {
26
- case PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case PCF_TIMER_NF_INSTANCE_VALIDITY:
33
- return "PCF_TIMER_NF_INSTANCE_VALIDITY";
34
- case PCF_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "PCF_TIMER_SUBSCRIPTION_VALIDITY";
36
- case PCF_TIMER_SBI_CLIENT_WAIT:
37
- return "PCF_TIMER_SBI_CLIENT_WAIT";
38
- default:
39
- break;
40
- }
41
-
42
- return "UNKNOWN_TIMER";
43
-}
44
-
45
-static void sbi_timer_send_event(int timer_id, void *data)
46
-{
47
- int rv;
48
- pcf_event_t *e = NULL;
49
- ogs_assert(data);
50
-
51
- switch (timer_id) {
52
- case PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
53
- case PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
54
- case PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
55
- case PCF_TIMER_NF_INSTANCE_VALIDITY:
56
- case PCF_TIMER_SUBSCRIPTION_VALIDITY:
57
- e = pcf_event_new(PCF_EVT_SBI_TIMER);
58
- ogs_assert(e);
59
- e->timer_id = timer_id;
60
- e->sbi.data = data;
61
- break;
62
- case PCF_TIMER_SBI_CLIENT_WAIT:
63
- e = pcf_event_new(PCF_EVT_SBI_TIMER);
64
- if (!e) {
65
- ogs_sbi_xact_t *sbi_xact = data;
66
- ogs_assert(sbi_xact);
67
-
68
- ogs_error("sbi_timer_send_event() failed");
69
- ogs_sbi_xact_remove(sbi_xact);
70
- return;
71
- }
72
- e->timer_id = timer_id;
73
- e->sbi.data = data;
74
- break;
75
- default:
76
- ogs_fatal("Unknown timer id%d", timer_id);
77
- ogs_assert_if_reached();
78
- break;
79
- }
80
-
81
- rv = ogs_queue_push(ogs_app()->queue, e);
82
- if (rv != OGS_OK) {
83
- ogs_error("ogs_queue_push() failed %d in %s",
84
- (int)rv, pcf_timer_get_name(e->timer_id));
85
- pcf_event_free(e);
86
- }
87
-}
88
-
89
-void pcf_timer_nf_instance_registration_interval(void *data)
90
-{
91
- sbi_timer_send_event(PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
92
-}
93
-
94
-void pcf_timer_nf_instance_heartbeat_interval(void *data)
95
-{
96
- sbi_timer_send_event(PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
97
-}
98
-
99
-void pcf_timer_nf_instance_no_heartbeat(void *data)
100
-{
101
- sbi_timer_send_event(PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
102
-}
103
-
104
-void pcf_timer_nf_instance_validity(void *data)
105
-{
106
- sbi_timer_send_event(PCF_TIMER_NF_INSTANCE_VALIDITY, data);
107
-}
108
-
109
-void pcf_timer_subscription_validity(void *data)
110
-{
111
- sbi_timer_send_event(PCF_TIMER_SUBSCRIPTION_VALIDITY, data);
112
-}
113
-
114
-void pcf_timer_sbi_client_wait_expire(void *data)
115
-{
116
- sbi_timer_send_event(PCF_TIMER_SBI_CLIENT_WAIT, data);
117
-}
118
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef PCF_TIMER_H
22
-#define PCF_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- PCF_TIMER_BASE = 0,
33
-
34
- PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- PCF_TIMER_NF_INSTANCE_VALIDITY,
38
- PCF_TIMER_SUBSCRIPTION_VALIDITY,
39
- PCF_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_PCF_TIMER,
42
-
43
-} pcf_timer_e;
44
-
45
-const char *pcf_timer_get_name(pcf_timer_e id);
46
-
47
-void pcf_timer_nf_instance_registration_interval(void *data);
48
-void pcf_timer_nf_instance_heartbeat_interval(void *data);
49
-void pcf_timer_nf_instance_no_heartbeat(void *data);
50
-void pcf_timer_nf_instance_validity(void *data);
51
-void pcf_timer_subscription_validity(void *data);
52
-void pcf_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* PCF_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/nf-sm.c
Deleted
485
1
2
-/*
3
- * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void scp_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- scp_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- scp_nf_state_initial, scp_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void scp_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- scp_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void scp_nf_state_initial(ogs_fsm_t *s, scp_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- scp_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- scp_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- scp_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- scp_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- scp_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &scp_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &scp_nf_state_registered);
83
- }
84
-}
85
-
86
-void scp_nf_state_final(ogs_fsm_t *s, scp_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- scp_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void scp_nf_state_will_register(ogs_fsm_t *s, scp_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- scp_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, scp_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case SCP_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- scp_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &scp_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP Response Status Code %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &scp_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case SCP_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, scp_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- scp_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("%s Unknown event %s",
196
- ogs_sbi_self()->nf_instance->id, scp_event_get_name(e));
197
- break;
198
- }
199
-}
200
-
201
-void scp_nf_state_registered(ogs_fsm_t *s, scp_event_t *e)
202
-{
203
- ogs_sbi_nf_instance_t *nf_instance = NULL;
204
- ogs_sbi_client_t *client = NULL;
205
- ogs_sbi_message_t *message = NULL;
206
- ogs_assert(s);
207
- ogs_assert(e);
208
-
209
- scp_sm_debug(e);
210
-
211
- nf_instance = e->sbi.data;
212
- ogs_assert(nf_instance);
213
- ogs_assert(ogs_sbi_self()->nf_instance);
214
-
215
- switch (e->id) {
216
- case OGS_FSM_ENTRY_SIG:
217
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
218
- ogs_info("%s NF registered Heartbeat:%ds",
219
- ogs_sbi_self()->nf_instance->id,
220
- nf_instance->time.heartbeat_interval);
221
-
222
- client = nf_instance->client;
223
- ogs_assert(client);
224
-
225
- if (nf_instance->time.heartbeat_interval) {
226
- ogs_timer_start(nf_instance->t_heartbeat_interval,
227
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
228
- ogs_timer_start(nf_instance->t_no_heartbeat,
229
- ogs_time_from_sec(
230
- nf_instance->time.heartbeat_interval +
231
- ogs_app()->time.nf_instance.no_heartbeat_margin));
232
- }
233
-
234
- ogs_assert(true ==
235
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
236
- ogs_sbi_self()->nf_instance->nf_type,
237
- ogs_sbi_self()->nf_instance->id,
238
- OpenAPI_nf_type_AMF));
239
- ogs_assert(true ==
240
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
241
- ogs_sbi_self()->nf_instance->nf_type,
242
- ogs_sbi_self()->nf_instance->id,
243
- OpenAPI_nf_type_AUSF));
244
- ogs_assert(true ==
245
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
246
- ogs_sbi_self()->nf_instance->nf_type,
247
- ogs_sbi_self()->nf_instance->id,
248
- OpenAPI_nf_type_BSF));
249
- ogs_assert(true ==
250
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
251
- ogs_sbi_self()->nf_instance->nf_type,
252
- ogs_sbi_self()->nf_instance->id,
253
- OpenAPI_nf_type_NSSF));
254
- ogs_assert(true ==
255
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
256
- ogs_sbi_self()->nf_instance->nf_type,
257
- ogs_sbi_self()->nf_instance->id,
258
- OpenAPI_nf_type_PCF));
259
- ogs_assert(true ==
260
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
261
- ogs_sbi_self()->nf_instance->nf_type,
262
- ogs_sbi_self()->nf_instance->id,
263
- OpenAPI_nf_type_SMF));
264
- ogs_assert(true ==
265
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
266
- ogs_sbi_self()->nf_instance->nf_type,
267
- ogs_sbi_self()->nf_instance->id,
268
- OpenAPI_nf_type_UDM));
269
- ogs_assert(true ==
270
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
271
- ogs_sbi_self()->nf_instance->nf_type,
272
- ogs_sbi_self()->nf_instance->id,
273
- OpenAPI_nf_type_UDR));
274
- }
275
-
276
- break;
277
-
278
- case OGS_FSM_EXIT_SIG:
279
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
280
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
281
-
282
- if (nf_instance->time.heartbeat_interval) {
283
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
284
- ogs_timer_stop(nf_instance->t_no_heartbeat);
285
- }
286
-
287
- if (!OGS_FSM_CHECK(&nf_instance->sm, scp_nf_state_exception)) {
288
- ogs_assert(true ==
289
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
290
- }
291
- }
292
- break;
293
-
294
- case SCP_EVT_SBI_CLIENT:
295
- message = e->sbi.message;
296
- ogs_assert(message);
297
-
298
- SWITCH(message->h.service.name)
299
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
300
-
301
- SWITCH(message->h.resource.component0)
302
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
303
-
304
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
305
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
306
- if (nf_instance->time.heartbeat_interval)
307
- ogs_timer_start(nf_instance->t_no_heartbeat,
308
- ogs_time_from_sec(
309
- nf_instance->time.heartbeat_interval +
310
- ogs_app()->time.nf_instance.
311
- no_heartbeat_margin));
312
- } else {
313
- ogs_warn("%s HTTP response error %d",
314
- ogs_sbi_self()->nf_instance->id,
315
- message->res_status);
316
- OGS_FSM_TRAN(s, &scp_nf_state_exception);
317
- }
318
-
319
- break;
320
-
321
- DEFAULT
322
- ogs_error("%s Invalid resource name %s",
323
- ogs_sbi_self()->nf_instance->id,
324
- message->h.resource.component0);
325
- END
326
- break;
327
-
328
- DEFAULT
329
- ogs_error("%s Invalid API name %s",
330
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
331
- END
332
- break;
333
-
334
- case SCP_EVT_SBI_TIMER:
335
- switch(e->timer_id) {
336
- case SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
337
- if (nf_instance->time.heartbeat_interval)
338
- ogs_timer_start(nf_instance->t_heartbeat_interval,
339
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
340
-
341
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
342
- break;
343
-
344
- case SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT:
345
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
346
- OGS_FSM_TRAN(s, &scp_nf_state_will_register);
347
- break;
348
-
349
- case SCP_TIMER_NF_INSTANCE_VALIDITY:
350
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
351
- ogs_assert(nf_instance->id);
352
-
353
- ogs_info("%s NF expired", nf_instance->id);
354
- OGS_FSM_TRAN(s, &scp_nf_state_de_registered);
355
- break;
356
-
357
- default:
358
- ogs_error("%s:%s Unknown timer%s:%d",
359
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
360
- nf_instance->id ? nf_instance->id : "Undefined",
361
- scp_timer_get_name(e->timer_id), e->timer_id);
362
- }
363
- break;
364
-
365
- default:
366
- ogs_error("%s:%s Unknown event %s",
367
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
368
- nf_instance->id ? nf_instance->id : "Undefined",
369
- scp_event_get_name(e));
370
- break;
371
- }
372
-}
373
-
374
-void scp_nf_state_de_registered(ogs_fsm_t *s, scp_event_t *e)
375
-{
376
- ogs_sbi_nf_instance_t *nf_instance = NULL;
377
- ogs_assert(s);
378
- ogs_assert(e);
379
-
380
- scp_sm_debug(e);
381
-
382
- nf_instance = e->sbi.data;
383
- ogs_assert(nf_instance);
384
- ogs_assert(ogs_sbi_self()->nf_instance);
385
-
386
- switch (e->id) {
387
- case OGS_FSM_ENTRY_SIG:
388
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
389
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
390
- }
391
- break;
392
-
393
- case OGS_FSM_EXIT_SIG:
394
- break;
395
-
396
- default:
397
- ogs_error("%s:%s Unknown event %s",
398
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
399
- nf_instance->id ? nf_instance->id : "Undefined",
400
- scp_event_get_name(e));
401
- break;
402
- }
403
-}
404
-
405
-void scp_nf_state_exception(ogs_fsm_t *s, scp_event_t *e)
406
-{
407
- ogs_sbi_nf_instance_t *nf_instance = NULL;
408
- ogs_sbi_client_t *client = NULL;
409
- ogs_sbi_message_t *message = NULL;
410
- ogs_sockaddr_t *addr = NULL;
411
- ogs_assert(s);
412
- ogs_assert(e);
413
-
414
- scp_sm_debug(e);
415
-
416
- nf_instance = e->sbi.data;
417
- ogs_assert(nf_instance);
418
- ogs_assert(ogs_sbi_self()->nf_instance);
419
-
420
- switch (e->id) {
421
- case OGS_FSM_ENTRY_SIG:
422
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
423
- ogs_timer_start(nf_instance->t_registration_interval,
424
- ogs_app()->time.message.sbi.
425
- nf_register_interval_in_exception);
426
- }
427
- break;
428
-
429
- case OGS_FSM_EXIT_SIG:
430
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
431
- ogs_timer_stop(nf_instance->t_registration_interval);
432
- }
433
- break;
434
-
435
- case SCP_EVT_SBI_TIMER:
436
- switch(e->timer_id) {
437
- case SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
438
- client = nf_instance->client;
439
- ogs_assert(client);
440
- addr = client->node.addr;
441
- ogs_assert(addr);
442
-
443
- ogs_warn("%s Retry to registration with NRF",
444
- ogs_sbi_self()->nf_instance->id);
445
-
446
- OGS_FSM_TRAN(s, &scp_nf_state_will_register);
447
- break;
448
-
449
- default:
450
- ogs_error("%s:%s Unknown timer%s:%d",
451
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
452
- nf_instance->id ? nf_instance->id : "Undefined",
453
- scp_timer_get_name(e->timer_id), e->timer_id);
454
- }
455
- break;
456
-
457
- case SCP_EVT_SBI_CLIENT:
458
- message = e->sbi.message;
459
- ogs_assert(message);
460
-
461
- SWITCH(message->h.service.name)
462
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
463
-
464
- SWITCH(message->h.resource.component0)
465
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
466
- break;
467
- DEFAULT
468
- ogs_error("Invalid resource name %s",
469
- message->h.resource.component0);
470
- END
471
- break;
472
- DEFAULT
473
- ogs_error("Invalid API name %s", message->h.service.name);
474
- END
475
- break;
476
-
477
- default:
478
- ogs_error("%s:%s Unknown event %s",
479
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
480
- nf_instance->id ? nf_instance->id : "Undefined",
481
- scp_event_get_name(e));
482
- break;
483
- }
484
-}
485
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *scp_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef SCP_NNRF_BUILD_H
22
-#define SCP_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *scp_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* SCP_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/timer.c
Deleted
120
1
2
-/*
3
- * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "timer.h"
22
-#include "event.h"
23
-#include "context.h"
24
-
25
-const char *scp_timer_get_name(scp_timer_e id)
26
-{
27
- switch (id) {
28
- case SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
29
- return "SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
30
- case SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
31
- return "SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
32
- case SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT:
33
- return "SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT";
34
- case SCP_TIMER_NF_INSTANCE_VALIDITY:
35
- return "SCP_TIMER_NF_INSTANCE_VALIDITY";
36
- case SCP_TIMER_SUBSCRIPTION_VALIDITY:
37
- return "SCP_TIMER_SUBSCRIPTION_VALIDITY";
38
- case SCP_TIMER_SBI_CLIENT_WAIT:
39
- return "SCP_TIMER_SBI_CLIENT_WAIT";
40
- default:
41
- break;
42
- }
43
-
44
- return "UNKNOWN_TIMER";
45
-}
46
-
47
-static void timer_send_event(int timer_id, void *data)
48
-{
49
- int rv;
50
- scp_event_t *e = NULL;
51
- ogs_assert(data);
52
-
53
- switch (timer_id) {
54
- case SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
55
- case SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
56
- case SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT:
57
- case SCP_TIMER_NF_INSTANCE_VALIDITY:
58
- case SCP_TIMER_SUBSCRIPTION_VALIDITY:
59
- e = scp_event_new(SCP_EVT_SBI_TIMER);
60
- ogs_assert(e);
61
- e->timer_id = timer_id;
62
- e->sbi.data = data;
63
- break;
64
- case SCP_TIMER_SBI_CLIENT_WAIT:
65
- e = scp_event_new(SCP_EVT_SBI_TIMER);
66
- if (!e) {
67
- ogs_sbi_xact_t *sbi_xact = data;
68
- ogs_assert(sbi_xact);
69
-
70
- ogs_error("timer_send_event() failed");
71
- ogs_sbi_xact_remove(sbi_xact);
72
- return;
73
- }
74
- e->timer_id = timer_id;
75
- e->sbi.data = data;
76
- break;
77
- default:
78
- ogs_fatal("Unknown timer id%d", timer_id);
79
- ogs_assert_if_reached();
80
- break;
81
- }
82
-
83
- rv = ogs_queue_push(ogs_app()->queue, e);
84
- if (rv != OGS_OK) {
85
- ogs_warn("ogs_queue_push() failed %d in %s",
86
- (int)rv, scp_timer_get_name(e->timer_id));
87
- scp_event_free(e);
88
- }
89
-}
90
-
91
-void scp_timer_nf_instance_registration_interval(void *data)
92
-{
93
- timer_send_event(SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
94
-}
95
-
96
-void scp_timer_nf_instance_heartbeat_interval(void *data)
97
-{
98
- timer_send_event(SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
99
-}
100
-
101
-void scp_timer_nf_instance_no_heartbeat(void *data)
102
-{
103
- timer_send_event(SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
104
-}
105
-
106
-void scp_timer_nf_instance_validity(void *data)
107
-{
108
- timer_send_event(SCP_TIMER_NF_INSTANCE_VALIDITY, data);
109
-}
110
-
111
-void scp_timer_subscription_validity(void *data)
112
-{
113
- timer_send_event(SCP_TIMER_SUBSCRIPTION_VALIDITY, data);
114
-}
115
-
116
-void scp_timer_sbi_client_wait_expire(void *data)
117
-{
118
- timer_send_event(SCP_TIMER_SBI_CLIENT_WAIT, data);
119
-}
120
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef SCP_TIMER_H
22
-#define SCP_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- SCP_TIMER_BASE = 0,
33
-
34
- SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- SCP_TIMER_NF_INSTANCE_VALIDITY,
38
- SCP_TIMER_SUBSCRIPTION_VALIDITY,
39
- SCP_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_SCP_TIMER,
42
-
43
-} scp_timer_e;
44
-
45
-const char *scp_timer_get_name(scp_timer_e id);
46
-
47
-void scp_timer_nf_instance_registration_interval(void *data);
48
-void scp_timer_nf_instance_heartbeat_interval(void *data);
49
-void scp_timer_nf_instance_no_heartbeat(void *data);
50
-void scp_timer_nf_instance_validity(void *data);
51
-void scp_timer_subscription_validity(void *data);
52
-void scp_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* SCP_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nf-sm.c
Deleted
464
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void smf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- smf_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- smf_nf_state_initial, smf_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void smf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- smf_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void smf_nf_state_initial(ogs_fsm_t *s, smf_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- smf_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- smf_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- smf_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- smf_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- smf_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &smf_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &smf_nf_state_registered);
83
- }
84
-}
85
-
86
-void smf_nf_state_final(ogs_fsm_t *s, smf_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- smf_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void smf_nf_state_will_register(ogs_fsm_t *s, smf_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- smf_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, smf_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case SMF_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- smf_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &smf_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP Response Status Code %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &smf_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case SMF_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, smf_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- smf_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("%s Unknown event %s",
196
- ogs_sbi_self()->nf_instance->id, smf_event_get_name(e));
197
- break;
198
- }
199
-}
200
-
201
-void smf_nf_state_registered(ogs_fsm_t *s, smf_event_t *e)
202
-{
203
- ogs_sbi_nf_instance_t *nf_instance = NULL;
204
- ogs_sbi_client_t *client = NULL;
205
- ogs_sbi_message_t *message = NULL;
206
- ogs_assert(s);
207
- ogs_assert(e);
208
-
209
- smf_sm_debug(e);
210
-
211
- nf_instance = e->sbi.data;
212
- ogs_assert(nf_instance);
213
- ogs_assert(ogs_sbi_self()->nf_instance);
214
-
215
- switch (e->id) {
216
- case OGS_FSM_ENTRY_SIG:
217
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
218
- ogs_info("%s NF registered Heartbeat:%ds",
219
- ogs_sbi_self()->nf_instance->id,
220
- nf_instance->time.heartbeat_interval);
221
-
222
- client = nf_instance->client;
223
- ogs_assert(client);
224
-
225
- if (nf_instance->time.heartbeat_interval) {
226
- ogs_timer_start(nf_instance->t_heartbeat_interval,
227
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
228
- ogs_timer_start(nf_instance->t_no_heartbeat,
229
- ogs_time_from_sec(
230
- nf_instance->time.heartbeat_interval +
231
- ogs_app()->time.nf_instance.no_heartbeat_margin));
232
- }
233
-
234
- ogs_assert(true ==
235
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
236
- ogs_sbi_self()->nf_instance->nf_type,
237
- ogs_sbi_self()->nf_instance->id,
238
- OpenAPI_nf_type_AMF));
239
- ogs_assert(true ==
240
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
241
- ogs_sbi_self()->nf_instance->nf_type,
242
- ogs_sbi_self()->nf_instance->id,
243
- OpenAPI_nf_type_UDM));
244
- ogs_assert(true ==
245
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
246
- ogs_sbi_self()->nf_instance->nf_type,
247
- ogs_sbi_self()->nf_instance->id,
248
- OpenAPI_nf_type_PCF));
249
- ogs_assert(true ==
250
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
251
- ogs_sbi_self()->nf_instance->nf_type,
252
- ogs_sbi_self()->nf_instance->id,
253
- OpenAPI_nf_type_UPF));
254
- }
255
- break;
256
-
257
- case OGS_FSM_EXIT_SIG:
258
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
259
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
260
-
261
- if (nf_instance->time.heartbeat_interval) {
262
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
263
- ogs_timer_stop(nf_instance->t_no_heartbeat);
264
- }
265
-
266
- if (!OGS_FSM_CHECK(&nf_instance->sm, smf_nf_state_exception)) {
267
- ogs_assert(true ==
268
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
269
- }
270
- }
271
- break;
272
-
273
- case SMF_EVT_SBI_CLIENT:
274
- message = e->sbi.message;
275
- ogs_assert(message);
276
-
277
- SWITCH(message->h.service.name)
278
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
279
-
280
- SWITCH(message->h.resource.component0)
281
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
282
-
283
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
284
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
285
- if (nf_instance->time.heartbeat_interval)
286
- ogs_timer_start(nf_instance->t_no_heartbeat,
287
- ogs_time_from_sec(
288
- nf_instance->time.heartbeat_interval +
289
- ogs_app()->time.nf_instance.
290
- no_heartbeat_margin));
291
- } else {
292
- ogs_warn("%s HTTP response error %d",
293
- ogs_sbi_self()->nf_instance->id,
294
- message->res_status);
295
- OGS_FSM_TRAN(s, &smf_nf_state_exception);
296
- }
297
-
298
- break;
299
-
300
- DEFAULT
301
- ogs_error("%s Invalid resource name %s",
302
- ogs_sbi_self()->nf_instance->id,
303
- message->h.resource.component0);
304
- END
305
- break;
306
-
307
- DEFAULT
308
- ogs_error("%s Invalid API name %s",
309
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
310
- END
311
- break;
312
-
313
- case SMF_EVT_SBI_TIMER:
314
- switch(e->timer_id) {
315
- case SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
316
- if (nf_instance->time.heartbeat_interval)
317
- ogs_timer_start(nf_instance->t_heartbeat_interval,
318
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
319
-
320
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
321
- break;
322
-
323
- case SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
324
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
325
- OGS_FSM_TRAN(s, &smf_nf_state_will_register);
326
- break;
327
-
328
- case SMF_TIMER_NF_INSTANCE_VALIDITY:
329
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
330
- ogs_assert(nf_instance->id);
331
-
332
- ogs_info("%s NF expired", nf_instance->id);
333
- OGS_FSM_TRAN(s, &smf_nf_state_de_registered);
334
- break;
335
-
336
- default:
337
- ogs_error("%s:%s Unknown timer%s:%d",
338
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
339
- nf_instance->id ? nf_instance->id : "Undefined",
340
- smf_timer_get_name(e->timer_id), e->timer_id);
341
- }
342
- break;
343
-
344
- default:
345
- ogs_error("%s:%s Unknown event %s",
346
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
347
- nf_instance->id ? nf_instance->id : "Undefined",
348
- smf_event_get_name(e));
349
- break;
350
- }
351
-}
352
-
353
-void smf_nf_state_de_registered(ogs_fsm_t *s, smf_event_t *e)
354
-{
355
- ogs_sbi_nf_instance_t *nf_instance = NULL;
356
- ogs_assert(s);
357
- ogs_assert(e);
358
-
359
- smf_sm_debug(e);
360
-
361
- nf_instance = e->sbi.data;
362
- ogs_assert(nf_instance);
363
- ogs_assert(ogs_sbi_self()->nf_instance);
364
-
365
- switch (e->id) {
366
- case OGS_FSM_ENTRY_SIG:
367
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
368
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
369
- }
370
- break;
371
-
372
- case OGS_FSM_EXIT_SIG:
373
- break;
374
-
375
- default:
376
- ogs_error("%s:%s Unknown event %s",
377
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
378
- nf_instance->id ? nf_instance->id : "Undefined",
379
- smf_event_get_name(e));
380
- break;
381
- }
382
-}
383
-
384
-void smf_nf_state_exception(ogs_fsm_t *s, smf_event_t *e)
385
-{
386
- ogs_sbi_nf_instance_t *nf_instance = NULL;
387
- ogs_sbi_client_t *client = NULL;
388
- ogs_sbi_message_t *message = NULL;
389
- ogs_sockaddr_t *addr = NULL;
390
- ogs_assert(s);
391
- ogs_assert(e);
392
-
393
- smf_sm_debug(e);
394
-
395
- nf_instance = e->sbi.data;
396
- ogs_assert(nf_instance);
397
- ogs_assert(ogs_sbi_self()->nf_instance);
398
-
399
- switch (e->id) {
400
- case OGS_FSM_ENTRY_SIG:
401
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
402
- ogs_timer_start(nf_instance->t_registration_interval,
403
- ogs_app()->time.message.sbi.
404
- nf_register_interval_in_exception);
405
- }
406
- break;
407
-
408
- case OGS_FSM_EXIT_SIG:
409
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
410
- ogs_timer_stop(nf_instance->t_registration_interval);
411
- }
412
- break;
413
-
414
- case SMF_EVT_SBI_TIMER:
415
- switch(e->timer_id) {
416
- case SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
417
- client = nf_instance->client;
418
- ogs_assert(client);
419
- addr = client->node.addr;
420
- ogs_assert(addr);
421
-
422
- ogs_warn("%s Retry to registration with NRF",
423
- ogs_sbi_self()->nf_instance->id);
424
-
425
- OGS_FSM_TRAN(s, &smf_nf_state_will_register);
426
- break;
427
-
428
- default:
429
- ogs_error("%s:%s Unknown timer%s:%d",
430
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
431
- nf_instance->id ? nf_instance->id : "Undefined",
432
- smf_timer_get_name(e->timer_id), e->timer_id);
433
- }
434
- break;
435
-
436
- case SMF_EVT_SBI_CLIENT:
437
- message = e->sbi.message;
438
- ogs_assert(message);
439
-
440
- SWITCH(message->h.service.name)
441
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
442
-
443
- SWITCH(message->h.resource.component0)
444
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
445
- break;
446
- DEFAULT
447
- ogs_error("Invalid resource name %s",
448
- message->h.resource.component0);
449
- END
450
- break;
451
- DEFAULT
452
- ogs_error("Invalid API name %s", message->h.service.name);
453
- END
454
- break;
455
-
456
- default:
457
- ogs_error("%s:%s Unknown event %s",
458
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
459
- nf_instance->id ? nf_instance->id : "Undefined",
460
- smf_event_get_name(e));
461
- break;
462
- }
463
-}
464
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nnrf-build.c
Deleted
295
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *smf_nnrf_nfm_build_register(void)
24
-{
25
- int i, j;
26
- ogs_sbi_nf_instance_t *nf_instance = NULL;
27
- ogs_sbi_nf_info_t *nf_info = NULL;
28
-
29
- ogs_sbi_message_t message;
30
- ogs_sbi_request_t *request = NULL;
31
-
32
- OpenAPI_nf_profile_t *NFProfile = NULL;
33
-
34
- OpenAPI_list_t *SmfInfoList = NULL;
35
- OpenAPI_map_t *SmfInfoMap = NULL;
36
- OpenAPI_smf_info_t *SmfInfo = NULL;
37
- int SmfInfoMapKey;
38
-
39
- OpenAPI_list_t *sNssaiSmfInfoList = NULL;
40
- OpenAPI_snssai_smf_info_item_t *sNssaiSmfInfoItem = NULL;
41
- OpenAPI_snssai_t *sNssai = NULL;
42
- OpenAPI_list_t *DnnSmfInfoList = NULL;
43
- OpenAPI_dnn_smf_info_item_t *DnnSmfInfoItem = NULL;
44
-
45
- OpenAPI_list_t *TaiList = NULL;
46
- OpenAPI_tai_t *TaiItem = NULL;
47
- OpenAPI_list_t *TaiRangeList = NULL;
48
- OpenAPI_tai_range_t *TaiRangeItem = NULL;
49
- OpenAPI_list_t *TacRangeList = NULL;
50
- OpenAPI_tac_range_t *TacRangeItem = NULL;
51
-
52
- OpenAPI_lnode_t *node = NULL, *node2 = NULL, *node3 = NULL;
53
-
54
- nf_instance = ogs_sbi_self()->nf_instance;
55
- ogs_assert(nf_instance);
56
- ogs_assert(nf_instance->id);
57
-
58
- memset(&message, 0, sizeof(message));
59
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
60
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
61
- message.h.api.version = (char *)OGS_SBI_API_V1;
62
- message.h.resource.component0 =
63
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
64
- message.h.resource.component1 = nf_instance->id;
65
-
66
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
67
-
68
- SmfInfoList = OpenAPI_list_create();
69
- ogs_assert(SmfInfoList);
70
-
71
- SmfInfoMapKey = 0;
72
-
73
- ogs_list_for_each(&nf_instance->nf_info_list, nf_info) {
74
- if (nf_info->nf_type != OpenAPI_nf_type_SMF) {
75
- ogs_fatal("Not implemented NF-type%s",
76
- OpenAPI_nf_type_ToString(nf_info->nf_type));
77
- ogs_assert_if_reached();
78
- }
79
-
80
- if (nf_info->smf.num_of_slice == 0) {
81
- ogs_fatal("CHECK CONFIGURATION: No S-NSSAI");
82
- ogs_assert_if_reached();
83
- }
84
-
85
- SmfInfo = ogs_calloc(1, sizeof(*SmfInfo));
86
- ogs_expect_or_return_val(SmfInfo, NULL);
87
-
88
- sNssaiSmfInfoList = OpenAPI_list_create();
89
- ogs_assert(sNssaiSmfInfoList);
90
-
91
- for (i = 0; i < nf_info->smf.num_of_slice; i++) {
92
- DnnSmfInfoList = OpenAPI_list_create();
93
- ogs_assert(DnnSmfInfoList);
94
-
95
- for (j = 0; j < nf_info->smf.slicei.num_of_dnn; j++) {
96
- DnnSmfInfoItem = ogs_calloc(1, sizeof(*DnnSmfInfoItem));
97
- ogs_expect_or_return_val(DnnSmfInfoItem, NULL);
98
- DnnSmfInfoItem->dnn = nf_info->smf.slicei.dnnj;
99
-
100
- OpenAPI_list_add(DnnSmfInfoList, DnnSmfInfoItem);
101
- }
102
-
103
- if (!DnnSmfInfoList->count) {
104
- OpenAPI_list_free(DnnSmfInfoList);
105
-
106
- ogs_error("CHECK CONFIGURATION: No DNN");
107
- ogs_expect_or_return_val(0, NULL);
108
- }
109
-
110
- sNssaiSmfInfoItem = ogs_calloc(1, sizeof(*sNssaiSmfInfoItem));
111
- ogs_expect_or_return_val(sNssaiSmfInfoItem, NULL);
112
-
113
- sNssaiSmfInfoItem->dnn_smf_info_list = DnnSmfInfoList;
114
-
115
- sNssaiSmfInfoItem->s_nssai = sNssai =
116
- ogs_calloc(1, sizeof(*sNssai));
117
- ogs_expect_or_return_val(sNssai, NULL);
118
- sNssai->sst = nf_info->smf.slicei.s_nssai.sst;
119
- sNssai->sd =
120
- ogs_s_nssai_sd_to_string(nf_info->smf.slicei.s_nssai.sd);
121
-
122
- OpenAPI_list_add(sNssaiSmfInfoList, sNssaiSmfInfoItem);
123
- }
124
-
125
- if (sNssaiSmfInfoList->count)
126
- SmfInfo->s_nssai_smf_info_list = sNssaiSmfInfoList;
127
- else
128
- OpenAPI_list_free(sNssaiSmfInfoList);
129
-
130
- TaiList = OpenAPI_list_create();
131
- ogs_assert(TaiList);
132
-
133
- for (i = 0; i < nf_info->smf.num_of_nr_tai; i++) {
134
- TaiItem = ogs_calloc(1, sizeof(*TaiItem));
135
- ogs_expect_or_return_val(TaiItem, NULL);
136
- TaiItem->plmn_id = ogs_sbi_build_plmn_id(
137
- &nf_info->smf.nr_taii.plmn_id);
138
- ogs_expect_or_return_val(TaiItem->plmn_id, NULL);
139
- TaiItem->tac = ogs_uint24_to_0string(nf_info->smf.nr_taii.tac);
140
- ogs_expect_or_return_val(TaiItem->tac, NULL);
141
-
142
- OpenAPI_list_add(TaiList, TaiItem);
143
- }
144
-
145
- if (TaiList->count)
146
- SmfInfo->tai_list = TaiList;
147
- else
148
- OpenAPI_list_free(TaiList);
149
-
150
- TaiRangeList = OpenAPI_list_create();
151
- ogs_assert(TaiRangeList);
152
-
153
- for (i = 0; i < nf_info->smf.num_of_nr_tai_range; i++) {
154
- TacRangeList = OpenAPI_list_create();
155
- ogs_assert(TacRangeList);
156
-
157
- for (j = 0;
158
- j < nf_info->smf.nr_tai_rangei.num_of_tac_range; j++) {
159
- TacRangeItem = ogs_calloc(1, sizeof(*TacRangeItem));
160
- ogs_expect_or_return_val(TacRangeItem, NULL);
161
-
162
- TacRangeItem->start = ogs_uint24_to_0string(
163
- nf_info->smf.nr_tai_rangei.startj);
164
- ogs_expect_or_return_val(TacRangeItem->start, NULL);
165
- TacRangeItem->end =
166
- ogs_uint24_to_0string(nf_info->smf.nr_tai_rangei.endj);
167
- ogs_expect_or_return_val(TacRangeItem->end, NULL);
168
-
169
- OpenAPI_list_add(TacRangeList, TacRangeItem);
170
- }
171
-
172
- if (!TacRangeList->count) {
173
- OpenAPI_list_free(TacRangeList);
174
-
175
- ogs_error("CHECK CONFIGURATION: No Start/End in TacRange");
176
- ogs_expect_or_return_val(0, NULL);
177
- }
178
-
179
- TaiRangeItem = ogs_calloc(1, sizeof(*TaiRangeItem));
180
- ogs_expect_or_return_val(TaiRangeItem, NULL);
181
-
182
- TaiRangeItem->plmn_id = ogs_sbi_build_plmn_id(
183
- &nf_info->smf.nr_tai_rangei.plmn_id);
184
- ogs_expect_or_return_val(TaiRangeItem->plmn_id, NULL);
185
-
186
- TaiRangeItem->tac_range_list = TacRangeList;
187
-
188
- OpenAPI_list_add(TaiRangeList, TaiRangeItem);
189
- }
190
-
191
- if (TaiRangeList->count)
192
- SmfInfo->tai_range_list = TaiRangeList;
193
- else
194
- OpenAPI_list_free(TaiRangeList);
195
-
196
- SmfInfoMap = OpenAPI_map_create(
197
- ogs_msprintf("%d", ++SmfInfoMapKey), SmfInfo);
198
- ogs_assert(SmfInfoMap);
199
-
200
- OpenAPI_list_add(SmfInfoList, SmfInfoMap);
201
- }
202
-
203
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
204
- ogs_expect_or_return_val(NFProfile, NULL);
205
-
206
- if (SmfInfoList->count == 1) {
207
- NFProfile->smf_info = SmfInfo;
208
- } else if (SmfInfoList->count > 1) {
209
- NFProfile->smf_info_list = SmfInfoList;
210
- }
211
-
212
- message.NFProfile = NFProfile;
213
-
214
- request = ogs_sbi_build_request(&message);
215
-
216
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
217
-
218
- OpenAPI_list_for_each(SmfInfoList, node) {
219
- SmfInfoMap = node->data;
220
- if (SmfInfoMap) {
221
- SmfInfo = SmfInfoMap->value;
222
- if (SmfInfo) {
223
- sNssaiSmfInfoList = SmfInfo->s_nssai_smf_info_list;
224
- OpenAPI_list_for_each(sNssaiSmfInfoList, node2) {
225
- sNssaiSmfInfoItem = node2->data;
226
- ogs_assert(sNssaiSmfInfoItem);
227
-
228
- DnnSmfInfoList = sNssaiSmfInfoItem->dnn_smf_info_list;
229
- OpenAPI_list_for_each(DnnSmfInfoList, node3) {
230
- DnnSmfInfoItem = node3->data;
231
- ogs_assert(DnnSmfInfoItem);
232
- ogs_free(DnnSmfInfoItem);
233
- }
234
- OpenAPI_list_free(DnnSmfInfoList);
235
-
236
- sNssai = sNssaiSmfInfoItem->s_nssai;
237
- if (sNssai) {
238
- if (sNssai->sd)
239
- ogs_free(sNssai->sd);
240
- ogs_free(sNssai);
241
- }
242
-
243
- ogs_free(sNssaiSmfInfoItem);
244
- }
245
- OpenAPI_list_free(sNssaiSmfInfoList);
246
-
247
- TaiList = SmfInfo->tai_list;
248
- OpenAPI_list_for_each(TaiList, node2) {
249
- TaiItem = node2->data;
250
- ogs_assert(TaiItem);
251
- if (TaiItem->plmn_id)
252
- ogs_sbi_free_plmn_id(TaiItem->plmn_id);
253
- if (TaiItem->tac)
254
- ogs_free(TaiItem->tac);
255
- ogs_free(TaiItem);
256
- }
257
- OpenAPI_list_free(TaiList);
258
-
259
- TaiRangeList = SmfInfo->tai_range_list;
260
- OpenAPI_list_for_each(TaiRangeList, node2) {
261
- TaiRangeItem = node2->data;
262
- ogs_assert(TaiRangeItem);
263
-
264
- if (TaiRangeItem->plmn_id)
265
- ogs_sbi_free_plmn_id(TaiRangeItem->plmn_id);
266
-
267
- TacRangeList = TaiRangeItem->tac_range_list;
268
- OpenAPI_list_for_each(TacRangeList, node3) {
269
- TacRangeItem = node3->data;
270
- ogs_assert(TacRangeItem);
271
- if (TacRangeItem->start)
272
- ogs_free(TacRangeItem->start);
273
- if (TacRangeItem->end)
274
- ogs_free(TacRangeItem->end);
275
-
276
- ogs_free(TacRangeItem);
277
- }
278
- OpenAPI_list_free(TacRangeList);
279
-
280
- ogs_free(TaiRangeItem);
281
- }
282
- OpenAPI_list_free(TaiRangeList);
283
-
284
- ogs_free(SmfInfo);
285
- }
286
- if (SmfInfoMap->key)
287
- ogs_free(SmfInfoMap->key);
288
- ogs_free(SmfInfoMap);
289
- }
290
- }
291
- OpenAPI_list_free(SmfInfoList);
292
-
293
- return request;
294
-}
295
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef SMF_NNRF_BUILD_H
22
-#define SMF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *smf_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* SMF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/nf-sm.c
Deleted
449
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void udm_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- udm_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- udm_nf_state_initial, udm_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void udm_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- udm_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void udm_nf_state_initial(ogs_fsm_t *s, udm_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- udm_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- udm_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- udm_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- udm_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- udm_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &udm_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &udm_nf_state_registered);
83
- }
84
-}
85
-
86
-void udm_nf_state_final(ogs_fsm_t *s, udm_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- udm_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void udm_nf_state_will_register(ogs_fsm_t *s, udm_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- udm_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, udm_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case UDM_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- udm_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &udm_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP response error %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &udm_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case UDM_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, udm_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- udm_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("Unknown event %s", udm_event_get_name(e));
196
- break;
197
- }
198
-}
199
-
200
-void udm_nf_state_registered(ogs_fsm_t *s, udm_event_t *e)
201
-{
202
- ogs_sbi_nf_instance_t *nf_instance = NULL;
203
- ogs_sbi_client_t *client = NULL;
204
- ogs_sbi_message_t *message = NULL;
205
- ogs_assert(s);
206
- ogs_assert(e);
207
-
208
- udm_sm_debug(e);
209
-
210
- nf_instance = e->sbi.data;
211
- ogs_assert(nf_instance);
212
- ogs_assert(ogs_sbi_self()->nf_instance);
213
-
214
- switch (e->id) {
215
- case OGS_FSM_ENTRY_SIG:
216
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
217
- ogs_info("%s NF registered Heartbeat:%ds",
218
- ogs_sbi_self()->nf_instance->id,
219
- nf_instance->time.heartbeat_interval);
220
-
221
- client = nf_instance->client;
222
- ogs_assert(client);
223
-
224
- if (nf_instance->time.heartbeat_interval) {
225
- ogs_timer_start(nf_instance->t_heartbeat_interval,
226
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
227
- ogs_timer_start(nf_instance->t_no_heartbeat,
228
- ogs_time_from_sec(
229
- nf_instance->time.heartbeat_interval +
230
- ogs_app()->time.nf_instance.no_heartbeat_margin));
231
- }
232
-
233
- ogs_assert(true ==
234
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
235
- ogs_sbi_self()->nf_instance->nf_type,
236
- ogs_sbi_self()->nf_instance->id,
237
- OpenAPI_nf_type_UDR));
238
- }
239
-
240
- break;
241
-
242
- case OGS_FSM_EXIT_SIG:
243
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
244
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
245
-
246
- if (nf_instance->time.heartbeat_interval) {
247
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
248
- ogs_timer_stop(nf_instance->t_no_heartbeat);
249
- }
250
-
251
- if (!OGS_FSM_CHECK(&nf_instance->sm, udm_nf_state_exception)) {
252
- ogs_assert(true ==
253
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
254
- }
255
- }
256
- break;
257
-
258
- case UDM_EVT_SBI_CLIENT:
259
- message = e->sbi.message;
260
- ogs_assert(message);
261
-
262
- SWITCH(message->h.service.name)
263
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
264
-
265
- SWITCH(message->h.resource.component0)
266
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
267
-
268
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
269
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
270
- if (nf_instance->time.heartbeat_interval)
271
- ogs_timer_start(nf_instance->t_no_heartbeat,
272
- ogs_time_from_sec(
273
- nf_instance->time.heartbeat_interval +
274
- ogs_app()->time.nf_instance.
275
- no_heartbeat_margin));
276
- } else {
277
- ogs_warn("%s HTTP response error %d",
278
- ogs_sbi_self()->nf_instance->id,
279
- message->res_status);
280
- OGS_FSM_TRAN(s, &udm_nf_state_exception);
281
- }
282
-
283
- break;
284
-
285
- DEFAULT
286
- ogs_error("%s Invalid resource name %s",
287
- ogs_sbi_self()->nf_instance->id,
288
- message->h.resource.component0);
289
- END
290
- break;
291
-
292
- DEFAULT
293
- ogs_error("%s Invalid API name %s",
294
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
295
- END
296
- break;
297
-
298
- case UDM_EVT_SBI_TIMER:
299
- switch(e->timer_id) {
300
- case UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
301
- if (nf_instance->time.heartbeat_interval)
302
- ogs_timer_start(nf_instance->t_heartbeat_interval,
303
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
304
-
305
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
306
- break;
307
-
308
- case UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT:
309
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
310
- OGS_FSM_TRAN(s, &udm_nf_state_will_register);
311
- break;
312
-
313
- case UDM_TIMER_NF_INSTANCE_VALIDITY:
314
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
315
- ogs_assert(nf_instance->id);
316
-
317
- ogs_info("%s NF expired", nf_instance->id);
318
- OGS_FSM_TRAN(s, &udm_nf_state_de_registered);
319
- break;
320
-
321
- default:
322
- ogs_error("%s:%s Unknown timer%s:%d",
323
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
324
- nf_instance->id ? nf_instance->id : "Undefined",
325
- udm_timer_get_name(e->timer_id), e->timer_id);
326
- }
327
- break;
328
-
329
- default:
330
- ogs_error("%s:%s Unknown event %s",
331
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
332
- nf_instance->id ? nf_instance->id : "Undefined",
333
- udm_event_get_name(e));
334
- break;
335
- }
336
-}
337
-
338
-void udm_nf_state_de_registered(ogs_fsm_t *s, udm_event_t *e)
339
-{
340
- ogs_sbi_nf_instance_t *nf_instance = NULL;
341
- ogs_assert(s);
342
- ogs_assert(e);
343
-
344
- udm_sm_debug(e);
345
-
346
- nf_instance = e->sbi.data;
347
- ogs_assert(nf_instance);
348
- ogs_assert(ogs_sbi_self()->nf_instance);
349
-
350
- switch (e->id) {
351
- case OGS_FSM_ENTRY_SIG:
352
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
353
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
354
- }
355
- break;
356
-
357
- case OGS_FSM_EXIT_SIG:
358
- break;
359
-
360
- default:
361
- ogs_error("%s:%s Unknown event %s",
362
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
363
- nf_instance->id ? nf_instance->id : "Undefined",
364
- udm_event_get_name(e));
365
- break;
366
- }
367
-}
368
-
369
-void udm_nf_state_exception(ogs_fsm_t *s, udm_event_t *e)
370
-{
371
- ogs_sbi_nf_instance_t *nf_instance = NULL;
372
- ogs_sbi_client_t *client = NULL;
373
- ogs_sbi_message_t *message = NULL;
374
- ogs_sockaddr_t *addr = NULL;
375
- ogs_assert(s);
376
- ogs_assert(e);
377
-
378
- udm_sm_debug(e);
379
-
380
- nf_instance = e->sbi.data;
381
- ogs_assert(nf_instance);
382
- ogs_assert(ogs_sbi_self()->nf_instance);
383
-
384
- switch (e->id) {
385
- case OGS_FSM_ENTRY_SIG:
386
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
387
- ogs_timer_start(nf_instance->t_registration_interval,
388
- ogs_app()->time.message.sbi.
389
- nf_register_interval_in_exception);
390
- }
391
- break;
392
-
393
- case OGS_FSM_EXIT_SIG:
394
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
395
- ogs_timer_stop(nf_instance->t_registration_interval);
396
- }
397
- break;
398
-
399
- case UDM_EVT_SBI_TIMER:
400
- switch(e->timer_id) {
401
- case UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
402
- client = nf_instance->client;
403
- ogs_assert(client);
404
- addr = client->node.addr;
405
- ogs_assert(addr);
406
-
407
- ogs_warn("%s Retry to registration with NRF",
408
- ogs_sbi_self()->nf_instance->id);
409
-
410
- OGS_FSM_TRAN(s, &udm_nf_state_will_register);
411
- break;
412
-
413
- default:
414
- ogs_error("%s:%s Unknown timer%s:%d",
415
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
416
- nf_instance->id ? nf_instance->id : "Undefined",
417
- udm_timer_get_name(e->timer_id), e->timer_id);
418
- }
419
- break;
420
-
421
- case UDM_EVT_SBI_CLIENT:
422
- message = e->sbi.message;
423
- ogs_assert(message);
424
-
425
- SWITCH(message->h.service.name)
426
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
427
-
428
- SWITCH(message->h.resource.component0)
429
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
430
- break;
431
- DEFAULT
432
- ogs_error("Invalid resource name %s",
433
- message->h.resource.component0);
434
- END
435
- break;
436
- DEFAULT
437
- ogs_error("Invalid API name %s", message->h.service.name);
438
- END
439
- break;
440
-
441
- default:
442
- ogs_error("%s:%s Unknown event %s",
443
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
444
- nf_instance->id ? nf_instance->id : "Undefined",
445
- udm_event_get_name(e));
446
- break;
447
- }
448
-}
449
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *udm_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef UDM_NNRF_BUILD_H
22
-#define UDM_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *udm_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* UDM_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/timer.c
Deleted
118
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *udm_timer_get_name(udm_timer_e id)
24
-{
25
- switch (id) {
26
- case UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case UDM_TIMER_NF_INSTANCE_VALIDITY:
33
- return "UDM_TIMER_NF_INSTANCE_VALIDITY";
34
- case UDM_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "UDM_TIMER_SUBSCRIPTION_VALIDITY";
36
- case UDM_TIMER_SBI_CLIENT_WAIT:
37
- return "UDM_TIMER_SBI_CLIENT_WAIT";
38
- default:
39
- break;
40
- }
41
-
42
- return "UNKNOWN_TIMER";
43
-}
44
-
45
-static void sbi_timer_send_event(int timer_id, void *data)
46
-{
47
- int rv;
48
- udm_event_t *e = NULL;
49
- ogs_assert(data);
50
-
51
- switch (timer_id) {
52
- case UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
53
- case UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
54
- case UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT:
55
- case UDM_TIMER_NF_INSTANCE_VALIDITY:
56
- case UDM_TIMER_SUBSCRIPTION_VALIDITY:
57
- e = udm_event_new(UDM_EVT_SBI_TIMER);
58
- ogs_assert(e);
59
- e->timer_id = timer_id;
60
- e->sbi.data = data;
61
- break;
62
- case UDM_TIMER_SBI_CLIENT_WAIT:
63
- e = udm_event_new(UDM_EVT_SBI_TIMER);
64
- if (!e) {
65
- ogs_sbi_xact_t *sbi_xact = data;
66
- ogs_assert(sbi_xact);
67
-
68
- ogs_error("sbi_timer_send_event() failed");
69
- ogs_sbi_xact_remove(sbi_xact);
70
- return;
71
- }
72
- e->timer_id = timer_id;
73
- e->sbi.data = data;
74
- break;
75
- default:
76
- ogs_fatal("Unknown timer id%d", timer_id);
77
- ogs_assert_if_reached();
78
- break;
79
- }
80
-
81
- rv = ogs_queue_push(ogs_app()->queue, e);
82
- if (rv != OGS_OK) {
83
- ogs_error("ogs_queue_push() failed %d in %s",
84
- (int)rv, udm_timer_get_name(e->timer_id));
85
- udm_event_free(e);
86
- }
87
-}
88
-
89
-void udm_timer_nf_instance_registration_interval(void *data)
90
-{
91
- sbi_timer_send_event(UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
92
-}
93
-
94
-void udm_timer_nf_instance_heartbeat_interval(void *data)
95
-{
96
- sbi_timer_send_event(UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
97
-}
98
-
99
-void udm_timer_nf_instance_no_heartbeat(void *data)
100
-{
101
- sbi_timer_send_event(UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
102
-}
103
-
104
-void udm_timer_nf_instance_validity(void *data)
105
-{
106
- sbi_timer_send_event(UDM_TIMER_NF_INSTANCE_VALIDITY, data);
107
-}
108
-
109
-void udm_timer_subscription_validity(void *data)
110
-{
111
- sbi_timer_send_event(UDM_TIMER_SUBSCRIPTION_VALIDITY, data);
112
-}
113
-
114
-void udm_timer_sbi_client_wait_expire(void *data)
115
-{
116
- sbi_timer_send_event(UDM_TIMER_SBI_CLIENT_WAIT, data);
117
-}
118
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef UDM_TIMER_H
22
-#define UDM_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- UDM_TIMER_BASE = 0,
33
-
34
- UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- UDM_TIMER_NF_INSTANCE_VALIDITY,
38
- UDM_TIMER_SUBSCRIPTION_VALIDITY,
39
- UDM_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_UDM_TIMER,
42
-
43
-} udm_timer_e;
44
-
45
-const char *udm_timer_get_name(udm_timer_e id);
46
-
47
-void udm_timer_nf_instance_registration_interval(void *data);
48
-void udm_timer_nf_instance_heartbeat_interval(void *data);
49
-void udm_timer_nf_instance_no_heartbeat(void *data);
50
-void udm_timer_nf_instance_validity(void *data);
51
-void udm_timer_subscription_validity(void *data);
52
-void udm_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* UDM_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nf-sm.c
Deleted
443
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void udr_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- udr_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- udr_nf_state_initial, udr_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void udr_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- udr_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void udr_nf_state_initial(ogs_fsm_t *s, udr_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- udr_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- udr_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- udr_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- udr_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- udr_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &udr_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &udr_nf_state_registered);
83
- }
84
-}
85
-
86
-void udr_nf_state_final(ogs_fsm_t *s, udr_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- udr_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void udr_nf_state_will_register(ogs_fsm_t *s, udr_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- udr_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
127
- nf_instance, udr_nnrf_nfm_build_register));
128
- break;
129
-
130
- case OGS_FSM_EXIT_SIG:
131
- ogs_timer_stop(nf_instance->t_registration_interval);
132
- break;
133
-
134
- case UDR_EVT_SBI_CLIENT:
135
- message = e->sbi.message;
136
- ogs_assert(message);
137
-
138
- SWITCH(message->h.service.name)
139
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
140
-
141
- SWITCH(message->h.resource.component0)
142
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
143
-
144
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
145
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
146
- udr_nnrf_handle_nf_register(nf_instance, message);
147
- OGS_FSM_TRAN(s, &udr_nf_state_registered);
148
- } else {
149
- ogs_error("%s HTTP response error %d",
150
- ogs_sbi_self()->nf_instance->id,
151
- message->res_status);
152
- OGS_FSM_TRAN(s, &udr_nf_state_exception);
153
- }
154
- break;
155
-
156
- DEFAULT
157
- ogs_error("%s Invalid resource name %s",
158
- ogs_sbi_self()->nf_instance->id,
159
- message->h.resource.component0);
160
- END
161
- break;
162
-
163
- DEFAULT
164
- ogs_error("%s Invalid API name %s",
165
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
166
- END
167
- break;
168
-
169
- case UDR_EVT_SBI_TIMER:
170
- switch(e->timer_id) {
171
- case UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
172
- client = nf_instance->client;
173
- ogs_assert(client);
174
- addr = client->node.addr;
175
- ogs_assert(addr);
176
-
177
- ogs_warn("%s Retry to registration with NRF",
178
- ogs_sbi_self()->nf_instance->id);
179
-
180
- ogs_timer_start(nf_instance->t_registration_interval,
181
- ogs_app()->time.message.sbi.nf_register_interval);
182
-
183
- ogs_assert(true == ogs_nnrf_nfm_send_nf_register(
184
- nf_instance, udr_nnrf_nfm_build_register));
185
- break;
186
-
187
- default:
188
- ogs_error("%s Unknown timer%s:%d",
189
- ogs_sbi_self()->nf_instance->id,
190
- udr_timer_get_name(e->timer_id), e->timer_id);
191
- }
192
- break;
193
-
194
- default:
195
- ogs_error("Unknown event %s", udr_event_get_name(e));
196
- break;
197
- }
198
-}
199
-
200
-void udr_nf_state_registered(ogs_fsm_t *s, udr_event_t *e)
201
-{
202
- ogs_sbi_nf_instance_t *nf_instance = NULL;
203
- ogs_sbi_client_t *client = NULL;
204
- ogs_sbi_message_t *message = NULL;
205
- ogs_assert(s);
206
- ogs_assert(e);
207
-
208
- udr_sm_debug(e);
209
-
210
- nf_instance = e->sbi.data;
211
- ogs_assert(nf_instance);
212
- ogs_assert(ogs_sbi_self()->nf_instance);
213
-
214
- switch (e->id) {
215
- case OGS_FSM_ENTRY_SIG:
216
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
217
- ogs_info("%s NF registered Heartbeat:%ds",
218
- ogs_sbi_self()->nf_instance->id,
219
- nf_instance->time.heartbeat_interval);
220
-
221
- client = nf_instance->client;
222
- ogs_assert(client);
223
-
224
- if (nf_instance->time.heartbeat_interval) {
225
- ogs_timer_start(nf_instance->t_heartbeat_interval,
226
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
227
- ogs_timer_start(nf_instance->t_no_heartbeat,
228
- ogs_time_from_sec(
229
- nf_instance->time.heartbeat_interval +
230
- ogs_app()->time.nf_instance.no_heartbeat_margin));
231
- }
232
- }
233
-
234
- break;
235
-
236
- case OGS_FSM_EXIT_SIG:
237
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
238
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
239
-
240
- if (nf_instance->time.heartbeat_interval) {
241
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
242
- ogs_timer_stop(nf_instance->t_no_heartbeat);
243
- }
244
-
245
- if (!OGS_FSM_CHECK(&nf_instance->sm, udr_nf_state_exception)) {
246
- ogs_assert(true ==
247
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
248
- }
249
- }
250
- break;
251
-
252
- case UDR_EVT_SBI_CLIENT:
253
- message = e->sbi.message;
254
- ogs_assert(message);
255
-
256
- SWITCH(message->h.service.name)
257
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
258
-
259
- SWITCH(message->h.resource.component0)
260
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
261
-
262
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
263
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
264
- if (nf_instance->time.heartbeat_interval)
265
- ogs_timer_start(nf_instance->t_no_heartbeat,
266
- ogs_time_from_sec(
267
- nf_instance->time.heartbeat_interval +
268
- ogs_app()->time.nf_instance.
269
- no_heartbeat_margin));
270
- } else {
271
- ogs_warn("%s HTTP response error %d",
272
- ogs_sbi_self()->nf_instance->id,
273
- message->res_status);
274
- OGS_FSM_TRAN(s, &udr_nf_state_exception);
275
- }
276
-
277
- break;
278
-
279
- DEFAULT
280
- ogs_error("%s Invalid resource name %s",
281
- ogs_sbi_self()->nf_instance->id,
282
- message->h.resource.component0);
283
- END
284
- break;
285
-
286
- DEFAULT
287
- ogs_error("%s Invalid API name %s",
288
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
289
- END
290
- break;
291
-
292
- case UDR_EVT_SBI_TIMER:
293
- switch(e->timer_id) {
294
- case UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
295
- if (nf_instance->time.heartbeat_interval)
296
- ogs_timer_start(nf_instance->t_heartbeat_interval,
297
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
298
-
299
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
300
- break;
301
-
302
- case UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT:
303
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
304
- OGS_FSM_TRAN(s, &udr_nf_state_will_register);
305
- break;
306
-
307
- case UDR_TIMER_NF_INSTANCE_VALIDITY:
308
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
309
- ogs_assert(nf_instance->id);
310
-
311
- ogs_info("%s NF expired", nf_instance->id);
312
- OGS_FSM_TRAN(s, &udr_nf_state_de_registered);
313
- break;
314
-
315
- default:
316
- ogs_error("%s:%s Unknown timer%s:%d",
317
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
318
- nf_instance->id ? nf_instance->id : "Undefined",
319
- udr_timer_get_name(e->timer_id), e->timer_id);
320
- }
321
- break;
322
-
323
- default:
324
- ogs_error("%s:%s Unknown event %s",
325
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
326
- nf_instance->id ? nf_instance->id : "Undefined",
327
- udr_event_get_name(e));
328
- break;
329
- }
330
-}
331
-
332
-void udr_nf_state_de_registered(ogs_fsm_t *s, udr_event_t *e)
333
-{
334
- ogs_sbi_nf_instance_t *nf_instance = NULL;
335
- ogs_assert(s);
336
- ogs_assert(e);
337
-
338
- udr_sm_debug(e);
339
-
340
- nf_instance = e->sbi.data;
341
- ogs_assert(nf_instance);
342
- ogs_assert(ogs_sbi_self()->nf_instance);
343
-
344
- switch (e->id) {
345
- case OGS_FSM_ENTRY_SIG:
346
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
347
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
348
- }
349
- break;
350
-
351
- case OGS_FSM_EXIT_SIG:
352
- break;
353
-
354
- default:
355
- ogs_error("%s:%s Unknown event %s",
356
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
357
- nf_instance->id ? nf_instance->id : "Undefined",
358
- udr_event_get_name(e));
359
- break;
360
- }
361
-}
362
-
363
-void udr_nf_state_exception(ogs_fsm_t *s, udr_event_t *e)
364
-{
365
- ogs_sbi_nf_instance_t *nf_instance = NULL;
366
- ogs_sbi_client_t *client = NULL;
367
- ogs_sbi_message_t *message = NULL;
368
- ogs_sockaddr_t *addr = NULL;
369
- ogs_assert(s);
370
- ogs_assert(e);
371
-
372
- udr_sm_debug(e);
373
-
374
- nf_instance = e->sbi.data;
375
- ogs_assert(nf_instance);
376
- ogs_assert(ogs_sbi_self()->nf_instance);
377
-
378
- switch (e->id) {
379
- case OGS_FSM_ENTRY_SIG:
380
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
381
- ogs_timer_start(nf_instance->t_registration_interval,
382
- ogs_app()->time.message.sbi.
383
- nf_register_interval_in_exception);
384
- }
385
- break;
386
-
387
- case OGS_FSM_EXIT_SIG:
388
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
389
- ogs_timer_stop(nf_instance->t_registration_interval);
390
- }
391
- break;
392
-
393
- case UDR_EVT_SBI_TIMER:
394
- switch(e->timer_id) {
395
- case UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
396
- client = nf_instance->client;
397
- ogs_assert(client);
398
- addr = client->node.addr;
399
- ogs_assert(addr);
400
-
401
- ogs_warn("%s Retry to registration with NRF",
402
- ogs_sbi_self()->nf_instance->id);
403
-
404
- OGS_FSM_TRAN(s, &udr_nf_state_will_register);
405
- break;
406
-
407
- default:
408
- ogs_error("%s:%s Unknown timer%s:%d",
409
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
410
- nf_instance->id ? nf_instance->id : "Undefined",
411
- udr_timer_get_name(e->timer_id), e->timer_id);
412
- }
413
- break;
414
-
415
- case UDR_EVT_SBI_CLIENT:
416
- message = e->sbi.message;
417
- ogs_assert(message);
418
-
419
- SWITCH(message->h.service.name)
420
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
421
-
422
- SWITCH(message->h.resource.component0)
423
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
424
- break;
425
- DEFAULT
426
- ogs_error("Invalid resource name %s",
427
- message->h.resource.component0);
428
- END
429
- break;
430
- DEFAULT
431
- ogs_error("Invalid API name %s", message->h.service.name);
432
- END
433
- break;
434
-
435
- default:
436
- ogs_error("%s:%s Unknown event %s",
437
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
438
- nf_instance->id ? nf_instance->id : "Undefined",
439
- udr_event_get_name(e));
440
- break;
441
- }
442
-}
443
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *udr_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef UDR_NNRF_BUILD_H
22
-#define UDR_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *udr_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* UDR_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nnrf-handler.c
Deleted
250
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "sbi-path.h"
22
-#include "nnrf-handler.h"
23
-
24
-void udr_nnrf_handle_nf_register(
25
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
26
-{
27
- OpenAPI_nf_profile_t *NFProfile = NULL;
28
- ogs_sbi_client_t *client = NULL;
29
-
30
- ogs_assert(recvmsg);
31
- ogs_assert(nf_instance);
32
- client = nf_instance->client;
33
- ogs_assert(client);
34
-
35
- NFProfile = recvmsg->NFProfile;
36
- if (!NFProfile) {
37
- ogs_error("No NFProfile");
38
- return;
39
- }
40
-
41
- /* TIME : Update heartbeat from NRF */
42
- if (NFProfile->is_heart_beat_timer == true)
43
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
44
-}
45
-
46
-void udr_nnrf_handle_nf_status_subscribe(
47
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
48
-{
49
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
50
- ogs_sbi_client_t *client = NULL;
51
-
52
- ogs_assert(recvmsg);
53
- ogs_assert(subscription);
54
- client = subscription->client;
55
- ogs_assert(client);
56
-
57
- SubscriptionData = recvmsg->SubscriptionData;
58
- if (!SubscriptionData) {
59
- ogs_error("No SubscriptionData");
60
- return;
61
- }
62
-
63
- if (!SubscriptionData->subscription_id) {
64
- ogs_error("No SubscriptionId");
65
- return;
66
- }
67
- ogs_sbi_subscription_set_id(
68
- subscription, SubscriptionData->subscription_id);
69
-
70
- if (SubscriptionData->validity_time) {
71
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
72
- ogs_time_t time, duration;
73
- if (ogs_sbi_time_from_string(
74
- &time, SubscriptionData->validity_time) == true) {
75
- duration = time - ogs_time_now();
76
- if (duration < VALIDITY_MINIMUM) {
77
- duration = VALIDITY_MINIMUM;
78
- ogs_warn("%s Forced to %lld seconds", subscription->id,
79
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
80
- }
81
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
82
- udr_timer_subscription_validity, subscription);
83
- ogs_assert(subscription->t_validity);
84
- ogs_timer_start(subscription->t_validity, duration);
85
- } else {
86
- ogs_error("Cannot parse validitiyTime %s",
87
- SubscriptionData->validity_time);
88
- }
89
- }
90
-}
91
-
92
-bool udr_nnrf_handle_nf_status_notify(
93
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
94
-{
95
- int rv;
96
- bool handled;
97
-
98
- ogs_sbi_response_t *response = NULL;
99
- OpenAPI_notification_data_t *NotificationData = NULL;
100
- ogs_sbi_nf_instance_t *nf_instance = NULL;
101
-
102
- ogs_sbi_message_t message;
103
- ogs_sbi_header_t header;
104
-
105
- ogs_assert(stream);
106
- ogs_assert(recvmsg);
107
-
108
- NotificationData = recvmsg->NotificationData;
109
- if (!NotificationData) {
110
- ogs_error("No NotificationData");
111
- ogs_assert(true ==
112
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
113
- recvmsg, "No NotificationData", NULL));
114
- return false;
115
- }
116
-
117
- if (!NotificationData->nf_instance_uri) {
118
- ogs_error("No nfInstanceUri");
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "No nfInstanceUri", NULL));
122
- return false;
123
- }
124
-
125
- memset(&header, 0, sizeof(header));
126
- header.uri = NotificationData->nf_instance_uri;
127
-
128
- rv = ogs_sbi_parse_header(&message, &header);
129
- if (rv != OGS_OK) {
130
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
131
- ogs_assert(true ==
132
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
133
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
134
- return false;
135
- }
136
-
137
- if (!message.h.resource.component1) {
138
- ogs_error("No nfInstanceId %s", header.uri);
139
- ogs_assert(true ==
140
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
141
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
142
- ogs_sbi_header_free(&header);
143
- return false;
144
- }
145
-
146
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
147
- ogs_warn("%s The notification is not allowed",
148
- message.h.resource.component1);
149
- ogs_assert(true ==
150
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
151
- recvmsg, "The notification is not allowed",
152
- message.h.resource.component1));
153
- ogs_sbi_header_free(&header);
154
- return false;
155
- }
156
-
157
- if (NotificationData->event ==
158
- OpenAPI_notification_event_type_NF_REGISTERED) {
159
-
160
- OpenAPI_nf_profile_t *NFProfile = NULL;
161
-
162
- NFProfile = NotificationData->nf_profile;
163
- if (!NFProfile) {
164
- ogs_error("No NFProfile");
165
- ogs_assert(true ==
166
- ogs_sbi_server_send_error(
167
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
168
- recvmsg, "No NFProfile", NULL));
169
- ogs_sbi_header_free(&header);
170
- return false;
171
- }
172
-
173
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
174
- if (!nf_instance) {
175
- nf_instance = ogs_sbi_nf_instance_add();
176
- ogs_assert(nf_instance);
177
- ogs_sbi_nf_instance_set_id(nf_instance,
178
- message.h.resource.component1);
179
-
180
- udr_nf_fsm_init(nf_instance);
181
-
182
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
183
-
184
- } else {
185
- OGS_FSM_TRAN(&nf_instance->sm, udr_nf_state_registered);
186
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
187
-
188
- ogs_warn("%s (NRF-notify) NF has already been added",
189
- message.h.resource.component1);
190
-
191
- }
192
-
193
- handled = ogs_sbi_nnrf_handle_nf_profile(
194
- nf_instance, NFProfile, stream, recvmsg);
195
- if (!handled) {
196
- UDR_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
197
- ogs_sbi_header_free(&header);
198
- return false;
199
- }
200
-
201
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
202
-
203
- handled = ogs_sbi_client_associate(nf_instance);
204
- if (!handled) {
205
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
206
- ogs_assert(true ==
207
- ogs_sbi_server_send_error(stream,
208
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
209
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
210
- UDR_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
211
- ogs_sbi_header_free(&header);
212
- return false;
213
- }
214
-
215
- } else if (NotificationData->event ==
216
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
217
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
218
- if (nf_instance) {
219
- UDR_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
220
- } else {
221
- ogs_warn("%s (NRF-notify) Not found",
222
- message.h.resource.component1);
223
- ogs_assert(true ==
224
- ogs_sbi_server_send_error(stream,
225
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
226
- recvmsg, "Not found", message.h.resource.component1));
227
- ogs_sbi_header_free(&header);
228
- return false;
229
- }
230
- } else {
231
- char *eventstr = OpenAPI_notification_event_type_ToString(
232
- NotificationData->event);
233
- ogs_error("Not supported event %d:%s",
234
- NotificationData->event, eventstr ? eventstr : "Unknown");
235
- ogs_assert(true ==
236
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
237
- recvmsg, "Not supported event",
238
- eventstr ? eventstr : "Unknown"));
239
- ogs_sbi_header_free(&header);
240
- return false;
241
- }
242
-
243
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
244
- ogs_assert(response);
245
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
246
-
247
- ogs_sbi_header_free(&header);
248
- return true;
249
-}
250
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nnrf-handler.h
Deleted
43
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef UDR_NNRF_HANDLER_H
22
-#define UDR_NNRF_HANDLER_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-void udr_nnrf_handle_nf_register(
31
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
32
-void udr_nnrf_handle_nf_status_subscribe(
33
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
34
-
35
-bool udr_nnrf_handle_nf_status_notify(
36
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
37
-
38
-#ifdef __cplusplus
39
-}
40
-#endif
41
-
42
-#endif /* UDR_NNRF_HANDLER_H */
43
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/timer.c
Deleted
103
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *udr_timer_get_name(udr_timer_e id)
24
-{
25
- switch (id) {
26
- case UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case UDR_TIMER_NF_INSTANCE_VALIDITY:
33
- return "UDR_TIMER_NF_INSTANCE_VALIDITY";
34
- case UDR_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "UDR_TIMER_SUBSCRIPTION_VALIDITY";
36
- default:
37
- break;
38
- }
39
-
40
- return "UNKNOWN_TIMER";
41
-}
42
-
43
-static void sbi_timer_send_event(int timer_id, void *data)
44
-{
45
- int rv;
46
- udr_event_t *e = NULL;
47
- ogs_assert(data);
48
-
49
- switch (timer_id) {
50
- case UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
51
- case UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
52
- case UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT:
53
- case UDR_TIMER_NF_INSTANCE_VALIDITY:
54
- case UDR_TIMER_SUBSCRIPTION_VALIDITY:
55
- e = udr_event_new(UDR_EVT_SBI_TIMER);
56
- ogs_assert(e);
57
- e->timer_id = timer_id;
58
- e->sbi.data = data;
59
- break;
60
- default:
61
- ogs_fatal("Unknown timer id%d", timer_id);
62
- ogs_assert_if_reached();
63
- break;
64
- }
65
-
66
- rv = ogs_queue_push(ogs_app()->queue, e);
67
- if (rv != OGS_OK) {
68
- ogs_error("ogs_queue_push() failed %d in %s",
69
- (int)rv, udr_timer_get_name(e->timer_id));
70
- udr_event_free(e);
71
- }
72
-}
73
-
74
-void udr_timer_nf_instance_registration_interval(void *data)
75
-{
76
- sbi_timer_send_event(UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
77
-}
78
-
79
-void udr_timer_nf_instance_heartbeat_interval(void *data)
80
-{
81
- sbi_timer_send_event(UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
82
-}
83
-
84
-void udr_timer_nf_instance_no_heartbeat(void *data)
85
-{
86
- sbi_timer_send_event(UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
87
-}
88
-
89
-void udr_timer_nf_instance_validity(void *data)
90
-{
91
- sbi_timer_send_event(UDR_TIMER_NF_INSTANCE_VALIDITY, data);
92
-}
93
-
94
-void udr_timer_subscription_validity(void *data)
95
-{
96
- sbi_timer_send_event(UDR_TIMER_SUBSCRIPTION_VALIDITY, data);
97
-}
98
-
99
-void udr_timer_sbi_client_wait_expire(void *data)
100
-{
101
- sbi_timer_send_event(UDR_TIMER_SBI_CLIENT_WAIT, data);
102
-}
103
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef UDR_TIMER_H
22
-#define UDR_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- UDR_TIMER_BASE = 0,
33
-
34
- UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- UDR_TIMER_NF_INSTANCE_VALIDITY,
38
- UDR_TIMER_SUBSCRIPTION_VALIDITY,
39
- UDR_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_UDR_TIMER,
42
-
43
-} udr_timer_e;
44
-
45
-const char *udr_timer_get_name(udr_timer_e id);
46
-
47
-void udr_timer_nf_instance_registration_interval(void *data);
48
-void udr_timer_nf_instance_heartbeat_interval(void *data);
49
-void udr_timer_nf_instance_no_heartbeat(void *data);
50
-void udr_timer_nf_instance_validity(void *data);
51
-void udr_timer_subscription_validity(void *data);
52
-void udr_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* UDR_TIMER_H */
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nf-sm.c
Deleted
450
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-#include "sbi-path.h"
24
-#include "nnrf-handler.h"
25
-
26
-void af_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
27
-{
28
- af_event_t e;
29
-
30
- ogs_assert(nf_instance);
31
-
32
- memset(&e, 0, sizeof(e));
33
- e.sbi.data = nf_instance;
34
-
35
- ogs_fsm_create(&nf_instance->sm,
36
- af_nf_state_initial, af_nf_state_final);
37
- ogs_fsm_init(&nf_instance->sm, &e);
38
-}
39
-
40
-void af_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
41
-{
42
- af_event_t e;
43
-
44
- ogs_assert(nf_instance);
45
-
46
- memset(&e, 0, sizeof(e));
47
- e.sbi.data = nf_instance;
48
-
49
- ogs_fsm_fini(&nf_instance->sm, &e);
50
- ogs_fsm_delete(&nf_instance->sm);
51
-}
52
-
53
-void af_nf_state_initial(ogs_fsm_t *s, af_event_t *e)
54
-{
55
- ogs_sbi_nf_instance_t *nf_instance = NULL;
56
-
57
- ogs_assert(s);
58
- ogs_assert(e);
59
-
60
- af_sm_debug(e);
61
-
62
- nf_instance = e->sbi.data;
63
- ogs_assert(nf_instance);
64
-
65
- nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
66
- af_timer_nf_instance_registration_interval, nf_instance);
67
- ogs_assert(nf_instance->t_registration_interval);
68
- nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
69
- af_timer_nf_instance_heartbeat_interval, nf_instance);
70
- ogs_assert(nf_instance->t_heartbeat_interval);
71
- nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
72
- af_timer_nf_instance_no_heartbeat, nf_instance);
73
- ogs_assert(nf_instance->t_no_heartbeat);
74
- nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
75
- af_timer_nf_instance_validity, nf_instance);
76
- ogs_assert(nf_instance->t_validity);
77
-
78
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
79
- OGS_FSM_TRAN(s, &af_nf_state_will_register);
80
- } else {
81
- ogs_assert(nf_instance->id);
82
- OGS_FSM_TRAN(s, &af_nf_state_registered);
83
- }
84
-}
85
-
86
-void af_nf_state_final(ogs_fsm_t *s, af_event_t *e)
87
-{
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_assert(s);
91
- ogs_assert(e);
92
-
93
- af_sm_debug(e);
94
-
95
- nf_instance = e->sbi.data;
96
- ogs_assert(nf_instance);
97
-
98
- ogs_timer_delete(nf_instance->t_registration_interval);
99
- ogs_timer_delete(nf_instance->t_heartbeat_interval);
100
- ogs_timer_delete(nf_instance->t_no_heartbeat);
101
- ogs_timer_delete(nf_instance->t_validity);
102
-}
103
-
104
-void af_nf_state_will_register(ogs_fsm_t *s, af_event_t *e)
105
-{
106
- ogs_sbi_nf_instance_t *nf_instance = NULL;
107
- ogs_sbi_client_t *client = NULL;
108
- ogs_sbi_message_t *message = NULL;
109
- ogs_sockaddr_t *addr = NULL;
110
-
111
- ogs_assert(s);
112
- ogs_assert(e);
113
-
114
- af_sm_debug(e);
115
-
116
- nf_instance = e->sbi.data;
117
- ogs_assert(nf_instance);
118
- ogs_assert(ogs_sbi_self()->nf_instance);
119
- ogs_assert(NF_INSTANCE_IS_NRF(nf_instance));
120
-
121
- switch (e->id) {
122
- case OGS_FSM_ENTRY_SIG:
123
- ogs_timer_start(nf_instance->t_registration_interval,
124
- ogs_app()->time.message.sbi.nf_register_interval);
125
-
126
- ogs_assert(true == af_nnrf_nfm_send_nf_register(nf_instance));
127
- break;
128
-
129
- case OGS_FSM_EXIT_SIG:
130
- ogs_timer_stop(nf_instance->t_registration_interval);
131
- break;
132
-
133
- case AF_EVT_SBI_CLIENT:
134
- message = e->sbi.message;
135
- ogs_assert(message);
136
-
137
- SWITCH(message->h.service.name)
138
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
139
-
140
- SWITCH(message->h.resource.component0)
141
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
142
-
143
- if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
144
- message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
145
- af_nnrf_handle_nf_register(nf_instance, message);
146
- OGS_FSM_TRAN(s, &af_nf_state_registered);
147
- } else {
148
- ogs_error("%s HTTP Response Status Code %d",
149
- ogs_sbi_self()->nf_instance->id,
150
- message->res_status);
151
- OGS_FSM_TRAN(s, &af_nf_state_exception);
152
- }
153
- break;
154
-
155
- DEFAULT
156
- ogs_error("%s Invalid resource name %s",
157
- ogs_sbi_self()->nf_instance->id,
158
- message->h.resource.component0);
159
- END
160
- break;
161
-
162
- DEFAULT
163
- ogs_error("%s Invalid API name %s",
164
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
165
- END
166
- break;
167
-
168
- case AF_EVT_SBI_TIMER:
169
- switch(e->timer_id) {
170
- case AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
171
- client = nf_instance->client;
172
- ogs_assert(client);
173
- addr = client->node.addr;
174
- ogs_assert(addr);
175
-
176
- ogs_warn("%s Retry to registration with NRF",
177
- ogs_sbi_self()->nf_instance->id);
178
-
179
- ogs_timer_start(nf_instance->t_registration_interval,
180
- ogs_app()->time.message.sbi.nf_register_interval);
181
-
182
- ogs_assert(true == af_nnrf_nfm_send_nf_register(nf_instance));
183
- break;
184
-
185
- default:
186
- ogs_error("%s Unknown timer%s:%d",
187
- ogs_sbi_self()->nf_instance->id,
188
- af_timer_get_name(e->timer_id), e->timer_id);
189
- }
190
- break;
191
-
192
- default:
193
- ogs_error("%s Unknown event %s",
194
- ogs_sbi_self()->nf_instance->id, af_event_get_name(e));
195
- break;
196
- }
197
-}
198
-
199
-void af_nf_state_registered(ogs_fsm_t *s, af_event_t *e)
200
-{
201
- ogs_sbi_nf_instance_t *nf_instance = NULL;
202
- ogs_sbi_client_t *client = NULL;
203
- ogs_sbi_message_t *message = NULL;
204
- ogs_assert(s);
205
- ogs_assert(e);
206
-
207
- af_sm_debug(e);
208
-
209
- nf_instance = e->sbi.data;
210
- ogs_assert(nf_instance);
211
- ogs_assert(ogs_sbi_self()->nf_instance);
212
-
213
- switch (e->id) {
214
- case OGS_FSM_ENTRY_SIG:
215
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
216
- ogs_info("%s NF registered Heartbeat:%ds",
217
- ogs_sbi_self()->nf_instance->id,
218
- nf_instance->time.heartbeat_interval);
219
-
220
- client = nf_instance->client;
221
- ogs_assert(client);
222
-
223
- if (nf_instance->time.heartbeat_interval) {
224
- ogs_timer_start(nf_instance->t_heartbeat_interval,
225
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
226
- ogs_timer_start(nf_instance->t_no_heartbeat,
227
- ogs_time_from_sec(
228
- nf_instance->time.heartbeat_interval +
229
- ogs_app()->time.nf_instance.no_heartbeat_margin));
230
- }
231
-
232
- ogs_assert(true ==
233
- ogs_nnrf_nfm_send_nf_status_subscribe(client,
234
- ogs_sbi_self()->nf_instance->nf_type,
235
- ogs_sbi_self()->nf_instance->id,
236
- OpenAPI_nf_type_BSF));
237
- }
238
-
239
- break;
240
-
241
- case OGS_FSM_EXIT_SIG:
242
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
243
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
244
-
245
- if (nf_instance->time.heartbeat_interval) {
246
- ogs_timer_stop(nf_instance->t_heartbeat_interval);
247
- ogs_timer_stop(nf_instance->t_no_heartbeat);
248
- }
249
-
250
- if (!OGS_FSM_CHECK(&nf_instance->sm, af_nf_state_exception)) {
251
- ogs_assert(true ==
252
- ogs_nnrf_nfm_send_nf_de_register(nf_instance));
253
- }
254
- }
255
- break;
256
-
257
- case AF_EVT_SBI_CLIENT:
258
- message = e->sbi.message;
259
- ogs_assert(message);
260
-
261
- SWITCH(message->h.service.name)
262
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
263
-
264
- SWITCH(message->h.resource.component0)
265
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
266
-
267
- if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
268
- message->res_status == OGS_SBI_HTTP_STATUS_OK) {
269
- if (nf_instance->time.heartbeat_interval)
270
- ogs_timer_start(nf_instance->t_no_heartbeat,
271
- ogs_time_from_sec(
272
- nf_instance->time.heartbeat_interval +
273
- ogs_app()->time.nf_instance.
274
- no_heartbeat_margin));
275
- } else {
276
- ogs_warn("%s HTTP response error %d",
277
- ogs_sbi_self()->nf_instance->id,
278
- message->res_status);
279
- OGS_FSM_TRAN(s, &af_nf_state_exception);
280
- }
281
-
282
- break;
283
-
284
- DEFAULT
285
- ogs_error("%s Invalid resource name %s",
286
- ogs_sbi_self()->nf_instance->id,
287
- message->h.resource.component0);
288
- END
289
- break;
290
-
291
- DEFAULT
292
- ogs_error("%s Invalid API name %s",
293
- ogs_sbi_self()->nf_instance->id, message->h.service.name);
294
- END
295
- break;
296
-
297
- case AF_EVT_SBI_TIMER:
298
- switch(e->timer_id) {
299
- case AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
300
- if (nf_instance->time.heartbeat_interval)
301
- ogs_timer_start(nf_instance->t_heartbeat_interval,
302
- ogs_time_from_sec(nf_instance->time.heartbeat_interval));
303
-
304
- ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
305
- break;
306
-
307
- case AF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
308
- ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
309
- OGS_FSM_TRAN(s, &af_nf_state_will_register);
310
- break;
311
-
312
- case AF_TIMER_NF_INSTANCE_VALIDITY:
313
- ogs_assert(!NF_INSTANCE_IS_NRF(nf_instance));
314
- ogs_assert(nf_instance->id);
315
-
316
- ogs_info("%s NF expired", nf_instance->id);
317
- OGS_FSM_TRAN(s, &af_nf_state_de_registered);
318
- break;
319
-
320
- default:
321
- ogs_error("%s:%s Unknown timer%s:%d",
322
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
323
- nf_instance->id ? nf_instance->id : "Undefined",
324
- af_timer_get_name(e->timer_id), e->timer_id);
325
- break;
326
- }
327
- break;
328
-
329
- default:
330
- ogs_error("%s:%s Unknown event %s",
331
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
332
- nf_instance->id ? nf_instance->id : "Undefined",
333
- af_event_get_name(e));
334
- break;
335
- }
336
-}
337
-
338
-void af_nf_state_de_registered(ogs_fsm_t *s, af_event_t *e)
339
-{
340
- ogs_sbi_nf_instance_t *nf_instance = NULL;
341
- ogs_assert(s);
342
- ogs_assert(e);
343
-
344
- af_sm_debug(e);
345
-
346
- nf_instance = e->sbi.data;
347
- ogs_assert(nf_instance);
348
- ogs_assert(ogs_sbi_self()->nf_instance);
349
-
350
- switch (e->id) {
351
- case OGS_FSM_ENTRY_SIG:
352
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
353
- ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
354
- }
355
- break;
356
-
357
- case OGS_FSM_EXIT_SIG:
358
- break;
359
-
360
- default:
361
- ogs_error("%s:%s Unknown event %s",
362
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
363
- nf_instance->id ? nf_instance->id : "Undefined",
364
- af_event_get_name(e));
365
- break;
366
- }
367
-}
368
-
369
-void af_nf_state_exception(ogs_fsm_t *s, af_event_t *e)
370
-{
371
- ogs_sbi_nf_instance_t *nf_instance = NULL;
372
- ogs_sbi_client_t *client = NULL;
373
- ogs_sbi_message_t *message = NULL;
374
- ogs_sockaddr_t *addr = NULL;
375
- ogs_assert(s);
376
- ogs_assert(e);
377
-
378
- af_sm_debug(e);
379
-
380
- nf_instance = e->sbi.data;
381
- ogs_assert(nf_instance);
382
- ogs_assert(ogs_sbi_self()->nf_instance);
383
-
384
- switch (e->id) {
385
- case OGS_FSM_ENTRY_SIG:
386
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
387
- ogs_timer_start(nf_instance->t_registration_interval,
388
- ogs_app()->time.message.sbi.
389
- nf_register_interval_in_exception);
390
- }
391
- break;
392
-
393
- case OGS_FSM_EXIT_SIG:
394
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
395
- ogs_timer_stop(nf_instance->t_registration_interval);
396
- }
397
- break;
398
-
399
- case AF_EVT_SBI_TIMER:
400
- switch(e->timer_id) {
401
- case AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
402
- client = nf_instance->client;
403
- ogs_assert(client);
404
- addr = client->node.addr;
405
- ogs_assert(addr);
406
-
407
- ogs_warn("%s Retry to registration with NRF",
408
- ogs_sbi_self()->nf_instance->id);
409
-
410
- OGS_FSM_TRAN(s, &af_nf_state_will_register);
411
- break;
412
-
413
- default:
414
- ogs_error("%s:%s Unknown timer%s:%d",
415
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
416
- nf_instance->id ? nf_instance->id : "Undefined",
417
- af_timer_get_name(e->timer_id), e->timer_id);
418
- break;
419
- }
420
- break;
421
-
422
- case AF_EVT_SBI_CLIENT:
423
- message = e->sbi.message;
424
- ogs_assert(message);
425
-
426
- SWITCH(message->h.service.name)
427
- CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
428
-
429
- SWITCH(message->h.resource.component0)
430
- CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
431
- break;
432
- DEFAULT
433
- ogs_error("Invalid resource name %s",
434
- message->h.resource.component0);
435
- END
436
- break;
437
- DEFAULT
438
- ogs_error("Invalid API name %s", message->h.service.name);
439
- END
440
- break;
441
-
442
- default:
443
- ogs_error("%s:%s Unknown event %s",
444
- OpenAPI_nf_type_ToString(nf_instance->nf_type),
445
- nf_instance->id ? nf_instance->id : "Undefined",
446
- af_event_get_name(e));
447
- break;
448
- }
449
-}
450
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nnrf-build.c
Deleted
57
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "nnrf-build.h"
22
-
23
-ogs_sbi_request_t *af_nnrf_nfm_build_register(void)
24
-{
25
- ogs_sbi_nf_instance_t *nf_instance = NULL;
26
-
27
- ogs_sbi_message_t message;
28
- ogs_sbi_request_t *request = NULL;
29
-
30
- OpenAPI_nf_profile_t *NFProfile = NULL;
31
-
32
- nf_instance = ogs_sbi_self()->nf_instance;
33
- ogs_assert(nf_instance);
34
- ogs_assert(nf_instance->id);
35
-
36
- memset(&message, 0, sizeof(message));
37
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
38
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
39
- message.h.api.version = (char *)OGS_SBI_API_V1;
40
- message.h.resource.component0 =
41
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
42
- message.h.resource.component1 = nf_instance->id;
43
-
44
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
45
-
46
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
47
- ogs_expect_or_return_val(NFProfile, NULL);
48
-
49
- message.NFProfile = NFProfile;
50
-
51
- request = ogs_sbi_build_request(&message);
52
-
53
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
54
-
55
- return request;
56
-}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nnrf-build.h
Deleted
37
1
2
-/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef AF_NNRF_BUILD_H
22
-#define AF_NNRF_BUILD_H
23
-
24
-#include "context.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-ogs_sbi_request_t *af_nnrf_nfm_build_register(void);
31
-
32
-#ifdef __cplusplus
33
-}
34
-#endif
35
-
36
-#endif /* AF_NNRF_BUILD_H */
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/timer.c
Deleted
118
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#include "context.h"
22
-
23
-const char *af_timer_get_name(af_timer_e id)
24
-{
25
- switch (id) {
26
- case AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
27
- return "AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
28
- case AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
29
- return "AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
30
- case AF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
31
- return "AF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
32
- case AF_TIMER_NF_INSTANCE_VALIDITY:
33
- return "AF_TIMER_NF_INSTANCE_VALIDITY";
34
- case AF_TIMER_SUBSCRIPTION_VALIDITY:
35
- return "AF_TIMER_SUBSCRIPTION_VALIDITY";
36
- case AF_TIMER_SBI_CLIENT_WAIT:
37
- return "AF_TIMER_SBI_CLIENT_WAIT";
38
- default:
39
- break;
40
- }
41
-
42
- return "UNKNOWN_TIMER";
43
-}
44
-
45
-static void timer_send_event(int timer_id, void *data)
46
-{
47
- int rv;
48
- af_event_t *e = NULL;
49
- ogs_assert(data);
50
-
51
- switch (timer_id) {
52
- case AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
53
- case AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
54
- case AF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
55
- case AF_TIMER_NF_INSTANCE_VALIDITY:
56
- case AF_TIMER_SUBSCRIPTION_VALIDITY:
57
- e = af_event_new(AF_EVT_SBI_TIMER);
58
- ogs_assert(e);
59
- e->timer_id = timer_id;
60
- e->sbi.data = data;
61
- break;
62
- case AF_TIMER_SBI_CLIENT_WAIT:
63
- e = af_event_new(AF_EVT_SBI_TIMER);
64
- if (!e) {
65
- ogs_sbi_xact_t *sbi_xact = data;
66
- ogs_assert(sbi_xact);
67
-
68
- ogs_error("timer_send_event() failed");
69
- ogs_sbi_xact_remove(sbi_xact);
70
- return;
71
- }
72
- e->timer_id = timer_id;
73
- e->sbi.data = data;
74
- break;
75
- default:
76
- ogs_fatal("Unknown timer id%d", timer_id);
77
- ogs_assert_if_reached();
78
- break;
79
- }
80
-
81
- rv = ogs_queue_push(ogs_app()->queue, e);
82
- if (rv != OGS_OK) {
83
- ogs_error("ogs_queue_push() failed %d in %s",
84
- (int)rv, af_timer_get_name(e->timer_id));
85
- af_event_free(e);
86
- }
87
-}
88
-
89
-void af_timer_nf_instance_registration_interval(void *data)
90
-{
91
- timer_send_event(AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
92
-}
93
-
94
-void af_timer_nf_instance_heartbeat_interval(void *data)
95
-{
96
- timer_send_event(AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
97
-}
98
-
99
-void af_timer_nf_instance_no_heartbeat(void *data)
100
-{
101
- timer_send_event(AF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
102
-}
103
-
104
-void af_timer_nf_instance_validity(void *data)
105
-{
106
- timer_send_event(AF_TIMER_NF_INSTANCE_VALIDITY, data);
107
-}
108
-
109
-void af_timer_subscription_validity(void *data)
110
-{
111
- timer_send_event(AF_TIMER_SUBSCRIPTION_VALIDITY, data);
112
-}
113
-
114
-void af_timer_sbi_client_wait_expire(void *data)
115
-{
116
- timer_send_event(AF_TIMER_SBI_CLIENT_WAIT, data);
117
-}
118
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/timer.h
Deleted
59
1
2
-/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
- *
5
- * This file is part of Open5GS.
6
- *
7
- * This program is free software: you can redistribute it and/or modify
8
- * it under the terms of the GNU Affero General Public License as published by
9
- * the Free Software Foundation, either version 3 of the License, or
10
- * (at your option) any later version.
11
- *
12
- * This program is distributed in the hope that it will be useful,
13
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
- * GNU General Public License for more details.
16
- *
17
- * You should have received a copy of the GNU General Public License
18
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
- */
20
-
21
-#ifndef AF_TIMER_H
22
-#define AF_TIMER_H
23
-
24
-#include "ogs-core.h"
25
-
26
-#ifdef __cplusplus
27
-extern "C" {
28
-#endif
29
-
30
-/* forward declaration */
31
-typedef enum {
32
- AF_TIMER_BASE = 0,
33
-
34
- AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
35
- AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
36
- AF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
37
- AF_TIMER_NF_INSTANCE_VALIDITY,
38
- AF_TIMER_SUBSCRIPTION_VALIDITY,
39
- AF_TIMER_SBI_CLIENT_WAIT,
40
-
41
- MAX_NUM_OF_AF_TIMER,
42
-
43
-} af_timer_e;
44
-
45
-const char *af_timer_get_name(af_timer_e id);
46
-
47
-void af_timer_nf_instance_registration_interval(void *data);
48
-void af_timer_nf_instance_heartbeat_interval(void *data);
49
-void af_timer_nf_instance_no_heartbeat(void *data);
50
-void af_timer_nf_instance_validity(void *data);
51
-void af_timer_subscription_validity(void *data);
52
-void af_timer_sbi_client_wait_expire(void *data);
53
-
54
-#ifdef __cplusplus
55
-}
56
-#endif
57
-
58
-#endif /* AF_TIMER_H */
59
open5gs_2.4.9.17.603a74.202208130002.dsc
Added
39
1
2
+Format: 3.0 (native)
3
+Source: open5gs
4
+Binary: open5gs-common, open5gs-mme, open5gs-sgwc, open5gs-smf, open5gs-amf, open5gs-sgwu, open5gs-upf, open5gs-hss, open5gs-pcrf, open5gs-nrf, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
5
+Architecture: any
6
+Version: 2.4.9.17.603a74.202208130002
7
+Maintainer: Harald Welte <laforge@gnumonks.org>
8
+Uploaders: Sukchan Lee <acetcom@gmail.com>
9
+Homepage: https://open5gs.org
10
+Standards-Version: 4.3.0
11
+Vcs-Browser: https://github.com/open5gs/open5gs
12
+Vcs-Git: git://github.com/open5gs/open5gs
13
+Build-Depends: debhelper (>= 11), git, pkg-config, meson (>= 0.43.0), flex, bison, libgnutls28-dev, libgcrypt-dev, libssl-dev, libidn11-dev, libmongoc-dev, libbson-dev, libsctp-dev, libyaml-dev, libmicrohttpd-dev, libcurl4-gnutls-dev, libnghttp2-dev, libtins-dev, libtalloc-dev
14
+Package-List:
15
+ open5gs deb net optional arch=any
16
+ open5gs-amf deb net optional arch=any
17
+ open5gs-ausf deb net optional arch=any
18
+ open5gs-bsf deb net optional arch=any
19
+ open5gs-common deb net optional arch=any
20
+ open5gs-dbg deb net optional arch=any
21
+ open5gs-hss deb net optional arch=any
22
+ open5gs-mme deb net optional arch=any
23
+ open5gs-nrf deb net optional arch=any
24
+ open5gs-nssf deb net optional arch=any
25
+ open5gs-pcf deb net optional arch=any
26
+ open5gs-pcrf deb net optional arch=any
27
+ open5gs-sgwc deb net optional arch=any
28
+ open5gs-sgwu deb net optional arch=any
29
+ open5gs-smf deb net optional arch=any
30
+ open5gs-udm deb net optional arch=any
31
+ open5gs-udr deb net optional arch=any
32
+ open5gs-upf deb net optional arch=any
33
+Checksums-Sha1:
34
+ e203a793b184481f4118b650788901f8c3ab4795 11453272 open5gs_2.4.9.17.603a74.202208130002.tar.xz
35
+Checksums-Sha256:
36
+ 0e75ffd8f354655a844fab388da684486a9d963712aac4e42a50b8018fce4f40 11453272 open5gs_2.4.9.17.603a74.202208130002.tar.xz
37
+Files:
38
+ 34082e17e1cc6e33ae701cb7bda61dd1 11453272 open5gs_2.4.9.17.603a74.202208130002.tar.xz
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/.tarball-version -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/.tarball-version
Changed
4
1
2
-2.4.9.14-ec9fe.202208120002
3
+2.4.9.17-603a74.202208130002
4
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/debian/changelog -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.4.9.14.ec9fe.202208120002) unstable; urgency=medium
3
+open5gs (2.4.9.17.603a74.202208130002) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom nightly feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Fri, 12 Aug 2022 00:04:33 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Sat, 13 Aug 2022 00:04:25 +0000
9
10
open5gs (2.4.9) unstable; urgency=medium
11
12
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/app/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/app/meson.build
Changed
15
1
2
version : libogslib_version,
3
c_args : '-DOGS_APP_COMPILATION',
4
include_directories : libapp_inc, libinc,
5
- dependencies : libcore_dep, yaml_dep,
6
+ dependencies : libproto_dep, yaml_dep,
7
install : true)
8
9
libapp_dep = declare_dependency(
10
link_with : libapp,
11
include_directories : libapp_inc, libinc,
12
- dependencies : libcore_dep, yaml_dep,
13
+ dependencies : libproto_dep, yaml_dep,
14
)
15
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/app/ogs-app.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/app/ogs-app.h
Changed
10
1
2
#ifndef OGS_APP_H
3
#define OGS_APP_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#define OGS_APP_INSIDE
9
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/app/ogs-context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/app/ogs-context.c
Changed
67
1
2
#define USRSCTP_LOCAL_UDP_PORT 9899
3
self.usrsctp.udp_port = USRSCTP_LOCAL_UDP_PORT;
4
5
- self.sctp.heartbit_interval = 5000; /* 5 seconds */
6
- self.sctp.sack_delay = 200; /* 200 ms */
7
- self.sctp.rto_initial = 3000; /* 3 seconds */
8
- self.sctp.rto_min = 1000; /* 1 seconds */
9
- self.sctp.rto_max = 5000; /* 5 seconds */
10
- self.sctp.max_num_of_ostreams = OGS_DEFAULT_SCTP_MAX_NUM_OF_OSTREAMS;
11
- self.sctp.max_num_of_istreams = 65535;
12
- self.sctp.max_attempts = 4;
13
- self.sctp.max_initial_timeout = 8000; /* 8 seconds */
14
-
15
self.sockopt.no_delay = true;
16
17
#define MAX_NUM_OF_UE 1024 /* Num of UEs */
18
19
} else
20
ogs_warn("unknown key `%s`", sockopt_key);
21
}
22
- } else if (!strcmp(root_key, "sctp")) {
23
- ogs_yaml_iter_t sctp_iter;
24
- ogs_yaml_iter_recurse(&root_iter, &sctp_iter);
25
- while (ogs_yaml_iter_next(&sctp_iter)) {
26
- const char *sctp_key = ogs_yaml_iter_key(&sctp_iter);
27
- ogs_assert(sctp_key);
28
- if (!strcmp(sctp_key, "heartbit_interval")) {
29
- const char *v = ogs_yaml_iter_value(&sctp_iter);
30
- if (v) self.sctp.heartbit_interval = atoi(v);
31
- } else if (!strcmp(sctp_key, "sack_delay")) {
32
- const char *v = ogs_yaml_iter_value(&sctp_iter);
33
- if (v) self.sctp.sack_delay = atoi(v);
34
- } else if (!strcmp(sctp_key, "rto_initial")) {
35
- const char *v = ogs_yaml_iter_value(&sctp_iter);
36
- if (v) self.sctp.rto_initial = atoi(v);
37
- } else if (!strcmp(sctp_key, "rto_min")) {
38
- const char *v = ogs_yaml_iter_value(&sctp_iter);
39
- if (v) self.sctp.rto_min = atoi(v);
40
- } else if (!strcmp(sctp_key, "rto_max")) {
41
- const char *v = ogs_yaml_iter_value(&sctp_iter);
42
- if (v) self.sctp.rto_max = atoi(v);
43
- } else if (!strcmp(sctp_key, "max_num_of_ostreams")) {
44
- const char *v = ogs_yaml_iter_value(&sctp_iter);
45
- if (v)
46
- self.sctp.max_num_of_ostreams = atoi(v);
47
- } else if (!strcmp(sctp_key, "max_num_of_istreams")) {
48
- const char *v = ogs_yaml_iter_value(&sctp_iter);
49
- if (v)
50
- self.sctp.max_num_of_istreams = atoi(v);
51
- } else if (!strcmp(sctp_key, "max_attempts")) {
52
- const char *v = ogs_yaml_iter_value(&sctp_iter);
53
- if (v) self.sctp.max_attempts = atoi(v);
54
- } else if (!strcmp(sctp_key, "max_initial_timeout")) {
55
- const char *v = ogs_yaml_iter_value(&sctp_iter);
56
- if (v)
57
- self.sctp.max_initial_timeout = atoi(v);
58
- } else if (!strcmp(sctp_key, "usrsctp_udp_port")) {
59
- const char *v = ogs_yaml_iter_value(&sctp_iter);
60
- if (v) self.usrsctp.udp_port = atoi(v);
61
- } else
62
- ogs_warn("unknown key `%s`", sctp_key);
63
- }
64
} else if (!strcmp(root_key, "max")) {
65
ogs_yaml_iter_t max_iter;
66
ogs_yaml_iter_recurse(&root_iter, &max_iter);
67
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/app/ogs-context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/app/ogs-context.h
Changed
20
1
2
} sockopt;
3
4
struct {
5
- int heartbit_interval;
6
- int sack_delay;
7
- int rto_initial;
8
- int rto_min;
9
- int rto_max;
10
- int max_num_of_ostreams;
11
- int max_num_of_istreams;
12
- int max_attempts;
13
- int max_initial_timeout;
14
- } sctp;
15
-
16
- struct {
17
int udp_port;
18
} usrsctp;
19
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/asn1c/common/asn_internal.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/asn1c/common/asn_internal.h
Changed
10
1
2
#define REALLOC(oldptr, size) realloc(oldptr, size)
3
#define FREEMEM(ptr) free(ptr)
4
#else
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
static ogs_inline void *ogs_asn_malloc(size_t size, const char *file_line)
9
{
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/asn1c/common/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/asn1c/common/meson.build
Changed
14
1
2
version : libogslib_version,
3
c_args : libasn1c_common_cc_flags,
4
include_directories : libasn1c_common_inc,
5
- dependencies : libcore_dep,
6
+ dependencies : libproto_dep,
7
install : true)
8
9
libasn1c_common_dep = declare_dependency(
10
link_with : libasn1c_common,
11
include_directories : libasn1c_common_inc,
12
- dependencies : libcore_dep)
13
+ dependencies : libproto_dep)
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/meson.build
Changed
17
1
2
ogs-hash.h
3
ogs-misc.h
4
ogs-getopt.h
5
- ogs-3gpp-types.h
6
abts.h
7
8
ogs-abort.c
9
10
ogs-hash.c
11
ogs-misc.c
12
ogs-getopt.c
13
- ogs-3gpp-types.c
14
ogs-core.c
15
abts.c
16
'''.split())
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-conv.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-conv.c
Changed
27
1
2
3
return x;
4
}
5
-
6
-void ogs_extract_digit_from_string(char *digit, char *string)
7
-{
8
- bool extracting = false;
9
- int i = 0;
10
-
11
- ogs_assert(string);
12
- ogs_assert(digit);
13
-
14
- while (*string && i < OGS_MAX_IMSI_BCD_LEN) {
15
- if (*string >= '0' && *string <= '9') {
16
- *digit++ = *string;
17
- extracting = true;
18
- } else if (extracting == true) {
19
- break;
20
- }
21
- string++;
22
- i++;
23
- }
24
-
25
- *digit = 0;
26
-}
27
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-conv.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-conv.h
Changed
10
1
2
ogs_uint24_t ogs_uint24_from_string(char *str);
3
uint64_t ogs_uint64_from_string(char *str);
4
5
-void ogs_extract_digit_from_string(char *digit, char *string);
6
-
7
#ifdef __cplusplus
8
}
9
#endif
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-core.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-core.h
Changed
9
1
2
#include "core/ogs-hash.h"
3
#include "core/ogs-misc.h"
4
#include "core/ogs-getopt.h"
5
-#include "core/ogs-3gpp-types.h"
6
7
#undef OGS_CORE_INSIDE
8
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-fsm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-fsm.c
Changed
163
1
2
const char *OGS_FSM_NAME_ENTRY_SIG = "ENTRY";
3
const char *OGS_FSM_NAME_EXIT_SIG = "EXIT";
4
5
-void ogs_fsm_init(void *sm, void *event)
6
+static void fsm_entry(ogs_fsm_t *sm, ogs_fsm_handler_t state, fsm_event_t *e)
7
{
8
- ogs_fsm_t *s = sm;
9
+ ogs_assert(sm);
10
+ ogs_assert(state);
11
+
12
+ if (e) {
13
+ e->id = OGS_FSM_ENTRY_SIG;
14
+ (*state)(sm, e);
15
+ } else {
16
+ (*state)(sm, &entry_event);
17
+ }
18
+}
19
+
20
+static void fsm_exit(ogs_fsm_t *sm, ogs_fsm_handler_t state, fsm_event_t *e)
21
+{
22
+ ogs_assert(sm);
23
+ ogs_assert(state);
24
+
25
+ if (e) {
26
+ e->id = OGS_FSM_EXIT_SIG;
27
+ (*state)(sm, e);
28
+ } else {
29
+ (*state)(sm, &exit_event);
30
+ }
31
+}
32
+
33
+static void fsm_change(
34
+ ogs_fsm_t *sm,
35
+ ogs_fsm_handler_t oldstate,
36
+ ogs_fsm_handler_t newstate,
37
+ fsm_event_t *e)
38
+{
39
+ ogs_assert(sm);
40
+ ogs_assert(oldstate);
41
+ ogs_assert(newstate);
42
+
43
+ fsm_exit(sm, oldstate, e);
44
+ fsm_entry(sm, newstate, e);
45
+}
46
+
47
+void ogs_fsm_init(void *fsm, void *init, void *fini, void *event)
48
+{
49
+ ogs_fsm_t *sm = fsm;
50
fsm_event_t *e = event;
51
- ogs_assert(s);
52
53
- if (s->init != NULL) {
54
- (*s->init)(s, e);
55
- if (s->init != s->state) {
56
- if (e) {
57
- e->id = OGS_FSM_ENTRY_SIG;
58
- (*s->state)(s, e);
59
- } else {
60
- (*s->state)(s, &entry_event);
61
- }
62
+ ogs_assert(sm);
63
+
64
+ sm->init = sm->state = init;
65
+ sm->fini = fini;
66
+
67
+ if (sm->init) {
68
+ (*sm->init)(sm, e);
69
+
70
+ if (sm->init != sm->state) {
71
+ ogs_assert(sm->state);
72
+ fsm_entry(sm, sm->state, e);
73
}
74
}
75
}
76
77
-void ogs_fsm_dispatch(void *sm, void *event)
78
+void ogs_fsm_tran(void *fsm, void *state, void *event)
79
{
80
- ogs_fsm_t *s = sm;
81
+ ogs_fsm_t *sm = fsm;
82
fsm_event_t *e = event;
83
- ogs_assert(s);
84
- ogs_fsm_handler_t tmp = s->state;
85
+ ogs_fsm_handler_t tmp = NULL;
86
+
87
+ ogs_assert(sm);
88
+
89
+ tmp = sm->state;
90
+ ogs_assert(tmp);
91
+
92
+ sm->state = state;
93
+ ogs_assert(sm->state);
94
+
95
+ if (sm->state != tmp)
96
+ fsm_change(fsm, tmp, sm->state, e);
97
+}
98
+
99
+void ogs_fsm_dispatch(void *fsm, void *event)
100
+{
101
+ ogs_fsm_t *sm = fsm;
102
+ fsm_event_t *e = event;
103
+ ogs_fsm_handler_t tmp = NULL;
104
+
105
+ ogs_assert(sm);
106
+
107
+ tmp = sm->state;
108
+ ogs_assert(tmp);
109
110
if (e)
111
- (*tmp)(s, e);
112
+ (*tmp)(sm, e);
113
114
- if (s->state != tmp) {
115
- if (e) {
116
- e->id = OGS_FSM_EXIT_SIG;
117
- (*tmp)(s, e);
118
- } else {
119
- (*tmp)(s, &exit_event);
120
- }
121
- if (e) {
122
- e->id = OGS_FSM_ENTRY_SIG;
123
- (*s->state)(s, e);
124
- } else {
125
- (*s->state)(s, &entry_event);
126
- }
127
- }
128
+ if (sm->state != tmp)
129
+ fsm_change(fsm, tmp, sm->state, e);
130
}
131
132
-void ogs_fsm_fini(void *sm, void *event)
133
+void ogs_fsm_fini(void *fsm, void *event)
134
{
135
- ogs_fsm_t *s = sm;
136
+ ogs_fsm_t *sm = fsm;
137
fsm_event_t *e = event;
138
- ogs_assert(s);
139
140
- if (s->fini != s->state) {
141
- if (e) {
142
- e->id = OGS_FSM_EXIT_SIG;
143
- (*s->state)(s, e);
144
- } else {
145
- (*s->state)(s, &exit_event);
146
- }
147
- }
148
+ ogs_assert(sm);
149
+
150
+ if (sm->fini != sm->state) {
151
+ ogs_assert(sm->state);
152
+ fsm_exit(sm, sm->state, e);
153
154
- if (s->fini != NULL) {
155
- (*s->fini)(s, e);
156
+ if (sm->fini)
157
+ (*sm->fini)(sm, e);
158
}
159
160
- s->state = s->init;
161
+ sm->init = sm->state = sm->fini = NULL;
162
}
163
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-fsm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-fsm.h
Changed
22
1
2
ogs_fsm_handler_t state;
3
} ogs_fsm_t;
4
5
-#define ogs_fsm_create(__s, __i, __f) \
6
- (((__s)->init = (__s)->state = (ogs_fsm_handler_t)(__i)), \
7
- (__s)->fini = (ogs_fsm_handler_t)(__f))
8
-
9
-#define ogs_fsm_delete(__s) \
10
- ((__s)->init = (__s)->state = (__s)->fini = NULL)
11
-
12
-void ogs_fsm_init(void *sm, void *event);
13
-void ogs_fsm_dispatch(void *sm, void *event);
14
-void ogs_fsm_fini(void *sm, void *event);
15
+void ogs_fsm_init(void *fsm, void *init, void *fini, void *event);
16
+void ogs_fsm_tran(void *fsm, void *state, void *event);
17
+void ogs_fsm_dispatch(void *fsm, void *event);
18
+void ogs_fsm_fini(void *fsm, void *event);
19
20
#define OGS_FSM_TRAN(__s, __target) \
21
((ogs_fsm_t *)__s)->state = (ogs_fsm_handler_t)(__target)
22
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-macros.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-macros.h
Changed
16
1
2
3
#define ogs_uint64_to_uint32(x) ((x >= 0xffffffffUL) ? 0xffffffffU : x)
4
5
+#define OGS_OBJECT_REF(__oBJ) \
6
+ ((__oBJ)->reference_count)++, \
7
+ ogs_debug("REF %d", ((__oBJ)->reference_count))
8
+#define OGS_OBJECT_UNREF(__oBJ) \
9
+ ogs_debug("UNREF %d", ((__oBJ)->reference_count)), \
10
+ ((__oBJ)->reference_count)--
11
+#define OGS_OBJECT_IS_REF(__oBJ) ((__oBJ)->reference_count > 1)
12
+
13
#ifdef __cplusplus
14
}
15
#endif
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-pkbuf.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-pkbuf.c
Changed
31
1
2
}
3
memset(pkbuf, 0, sizeof(*pkbuf));
4
5
- cluster->ref++;
6
+ OGS_OBJECT_REF(cluster);
7
8
pkbuf->cluster = cluster;
9
10
11
cluster = pkbuf->cluster;
12
ogs_assert(cluster);
13
14
- cluster->ref--;
15
- if (cluster->ref == 0)
16
+ if (OGS_OBJECT_IS_REF(cluster))
17
+ OGS_OBJECT_UNREF(cluster);
18
+ else
19
cluster_free(pool, pkbuf->cluster);
20
21
ogs_pool_free(&pool->pkbuf, pkbuf);
22
23
ogs_assert(newbuf);
24
memcpy(newbuf, pkbuf, sizeof *pkbuf);
25
26
- newbuf->cluster->ref++;
27
+ OGS_OBJECT_REF(newbuf->cluster);
28
29
ogs_thread_mutex_unlock(&pool->mutex);
30
#endif
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-pkbuf.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-pkbuf.h
Changed
10
1
2
unsigned char *buffer;
3
unsigned int size;
4
5
- unsigned int ref;
6
+ unsigned int reference_count;
7
} ogs_cluster_t;
8
9
#if OGS_USE_TALLOC
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/core/ogs-sockopt.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/core/ogs-sockopt.h
Changed
9
1
2
uint32_t srto_initial;
3
uint32_t srto_min;
4
uint32_t srto_max;
5
+#define OGS_DEFAULT_SCTP_MAX_NUM_OF_OSTREAMS 30
6
uint16_t sinit_num_ostreams;
7
uint16_t sinit_max_instreams;
8
uint16_t sinit_max_attempts;
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/crypt/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/crypt/meson.build
Changed
14
1
2
version : libogslib_version,
3
c_args : '-DOGS_CRYPT_COMPILATION',
4
include_directories : libcrypt_inc, libinc,
5
- dependencies : libcore_dep,
6
+ dependencies : libproto_dep,
7
install : true)
8
9
libcrypt_dep = declare_dependency(
10
link_with : libcrypt,
11
include_directories : libcrypt_inc, libinc,
12
- dependencies : libcore_dep)
13
+ dependencies : libproto_dep)
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/crypt/ogs-crypt.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/crypt/ogs-crypt.h
Changed
10
1
2
#ifndef OGS_CRYPT_H
3
#define OGS_CRYPT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#define OGS_CRYPT_INSIDE
9
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/diameter/common/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/diameter/common/meson.build
Changed
14
1
2
version : libogslib_version,
3
c_args : libdiameter_common_cc_flags,
4
include_directories : libdiameter_common_inc, libinc,
5
- dependencies : libcore_dep, libfdcore_dep,
6
+ dependencies : libproto_dep, libfdcore_dep,
7
install : true)
8
9
libdiameter_common_dep = declare_dependency(
10
link_with : libdiameter_common,
11
include_directories : libdiameter_common_inc, libinc,
12
- dependencies : libcore_dep, libfdcore_dep)
13
+ dependencies : libproto_dep, libfdcore_dep)
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/diameter/common/ogs-diameter-common.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/diameter/common/ogs-diameter-common.h
Changed
10
1
2
#pragma GCC diagnostic pop
3
#endif
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#define OGS_DIAMETER_INSIDE
9
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/gtp/xact.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/gtp/xact.c
Changed
11
1
2
3
xact->gtp_version = gtp_version;
4
xact->org = OGS_GTP_REMOTE_ORIGINATOR;
5
- xact->xid = (gtp_version == 1) ? OGS_GTP1_SQN_TO_XID(sqn) : OGS_GTP2_SQN_TO_XID(sqn);
6
+ xact->xid = (gtp_version == 1) ?
7
+ OGS_GTP1_SQN_TO_XID(sqn) : OGS_GTP2_SQN_TO_XID(sqn);
8
xact->gnode = gnode;
9
10
xact->tm_response = ogs_timer_add(
11
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/ipfw/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/ipfw/meson.build
Changed
14
1
2
version : libogslib_version,
3
c_args : '-include', 'glue.h', ipfw_cc_flags,
4
include_directories : libipfw_inc,
5
- dependencies : libcore_dep,
6
+ dependencies : libproto_dep,
7
install : true)
8
9
libipfw_dep = declare_dependency(
10
link_with : libipfw,
11
include_directories : libinc,
12
- dependencies : libcore_dep)
13
+ dependencies : libproto_dep)
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/ipfw/ogs-ipfw.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/ipfw/ogs-ipfw.h
Changed
10
1
2
extern "C" {
3
#endif
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
typedef struct ogs_ipfw_rule_s {
9
uint8_t proto;
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/meson.build
Changed
12
1
2
libinc = include_directories('.')
3
4
subdir('core')
5
-subdir('ipfw')
6
+subdir('proto')
7
subdir('crypt')
8
+subdir('ipfw')
9
subdir('app')
10
subdir('metrics')
11
subdir('sctp')
12
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/pfcp/handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/pfcp/handler.c
Changed
163
1
2
if (req->up_function_features.data && req->up_function_features.len) {
3
node->up_function_features_len = req->up_function_features.len;
4
memcpy(&node->up_function_features, req->up_function_features.data,
5
- node->up_function_features_len);
6
+ ogs_min(sizeof(node->up_function_features),
7
+ node->up_function_features_len));
8
}
9
}
10
11
12
if (rsp->up_function_features.data && rsp->up_function_features.len) {
13
node->up_function_features_len = rsp->up_function_features.len;
14
memcpy(&node->up_function_features, rsp->up_function_features.data,
15
- node->up_function_features_len);
16
+ ogs_min(sizeof(node->up_function_features),
17
+ node->up_function_features_len));
18
}
19
}
20
21
22
if (len == OGS_IPV4_LEN) {
23
report->error_indication.remote_f_teid.ipv4 = 1;
24
memcpy(&report->error_indication.remote_f_teid.addr,
25
- far->hash.f_teid.key.addr, len);
26
+ far->hash.f_teid.key.addr,
27
+ ogs_min(sizeof(report->error_indication.remote_f_teid.addr), len));
28
} else if (len == OGS_IPV6_LEN) {
29
report->error_indication.remote_f_teid.ipv6 = 1;
30
memcpy(report->error_indication.remote_f_teid.addr6,
31
- far->hash.f_teid.key.addr, len);
32
+ far->hash.f_teid.key.addr,
33
+ ogs_min(sizeof(report->error_indication.remote_f_teid.addr6), len));
34
} else {
35
ogs_error("Invalid Length %d", len);
36
return false;
37
38
ogs_pfcp_f_teid_t f_teid;
39
40
memcpy(&f_teid, message->pdi.local_f_teid.data,
41
- message->pdi.local_f_teid.len);
42
+ ogs_min(sizeof(f_teid), message->pdi.local_f_teid.len));
43
if (f_teid.ipv4 == 0 && f_teid.ipv6 == 0) {
44
ogs_error("One of the IPv4 and IPv6 flags should be 1 "
45
"in the local F-TEID");
46
47
48
if (oppsite_direction_rule) {
49
/* Copy oppsite direction rule and Swap */
50
- memcpy(&rule->ipfw,
51
- &oppsite_direction_rule->ipfw, sizeof(rule->ipfw));
52
+ memcpy(&rule->ipfw, &oppsite_direction_rule->ipfw,
53
+ sizeof(rule->ipfw));
54
ogs_ipfw_rule_swap(&rule->ipfw);
55
}
56
57
58
59
if (message->pdi.local_f_teid.presence) {
60
pdr->f_teid_len = message->pdi.local_f_teid.len;
61
- memcpy(&pdr->f_teid, message->pdi.local_f_teid.data, pdr->f_teid_len);
62
+ memcpy(&pdr->f_teid, message->pdi.local_f_teid.data,
63
+ ogs_min(sizeof(pdr->f_teid), pdr->f_teid_len));
64
ogs_assert(pdr->f_teid.ipv4 || pdr->f_teid.ipv6);
65
pdr->f_teid.teid = be32toh(pdr->f_teid.teid);
66
}
67
68
69
if (message->pdi.ue_ip_address.presence) {
70
pdr->ue_ip_addr_len = message->pdi.ue_ip_address.len;
71
- memcpy(&pdr->ue_ip_addr,
72
- message->pdi.ue_ip_address.data, pdr->ue_ip_addr_len);
73
+ memcpy(&pdr->ue_ip_addr, message->pdi.ue_ip_address.data,
74
+ ogs_min(sizeof(pdr->ue_ip_addr), pdr->ue_ip_addr_len));
75
}
76
77
memset(&pdr->outer_header_removal, 0, sizeof(pdr->outer_header_removal));
78
79
if (message->outer_header_removal.presence) {
80
pdr->outer_header_removal_len = message->outer_header_removal.len;
81
memcpy(&pdr->outer_header_removal, message->outer_header_removal.data,
82
- pdr->outer_header_removal_len);
83
+ ogs_min(sizeof(pdr->outer_header_removal),
84
+ pdr->outer_header_removal_len));
85
}
86
87
pdr->far = NULL;
88
89
if (message->local_f_teid.presence) {
90
ogs_pfcp_f_teid_t f_teid;
91
92
- memcpy(&f_teid, message->local_f_teid.data, message->local_f_teid.len);
93
+ memcpy(&f_teid, message->local_f_teid.data,
94
+ ogs_min(sizeof(f_teid), message->local_f_teid.len));
95
if (f_teid.ipv4 == 0 && f_teid.ipv6 == 0) {
96
ogs_error("One of the IPv4 and IPv6 flags should be 1 "
97
"in the local F-TEID");
98
99
}
100
101
pdr->f_teid_len = message->local_f_teid.len;
102
- memcpy(&pdr->f_teid, message->local_f_teid.data, pdr->f_teid_len);
103
+ memcpy(&pdr->f_teid, message->local_f_teid.data,
104
+ ogs_min(sizeof(pdr->f_teid), pdr->f_teid_len));
105
ogs_assert(pdr->f_teid.ipv4 || pdr->f_teid.ipv6);
106
pdr->f_teid.teid = be32toh(pdr->f_teid.teid);
107
}
108
109
ogs_pfcp_f_teid_t f_teid;
110
111
memcpy(&f_teid, message->pdi.local_f_teid.data,
112
- message->pdi.local_f_teid.len);
113
+ ogs_min(sizeof(f_teid), message->pdi.local_f_teid.len));
114
if (f_teid.ipv4 == 0 && f_teid.ipv6 == 0) {
115
ogs_error("One of the IPv4 and IPv6 flags should be 1 "
116
"in the local F-TEID");
117
118
119
if (oppsite_direction_rule) {
120
/* Copy oppsite direction rule and Swap */
121
- memcpy(&rule->ipfw,
122
- &oppsite_direction_rule->ipfw, sizeof(rule->ipfw));
123
+ memcpy(&rule->ipfw, &oppsite_direction_rule->ipfw,
124
+ sizeof(rule->ipfw));
125
ogs_ipfw_rule_swap(&rule->ipfw);
126
}
127
128
129
130
if (message->pdi.local_f_teid.presence) {
131
pdr->f_teid_len = message->pdi.local_f_teid.len;
132
- memcpy(&pdr->f_teid,
133
- message->pdi.local_f_teid.data, pdr->f_teid_len);
134
+ memcpy(&pdr->f_teid, message->pdi.local_f_teid.data,
135
+ ogs_min(sizeof(pdr->f_teid), pdr->f_teid_len));
136
pdr->f_teid.teid = be32toh(pdr->f_teid.teid);
137
}
138
139
140
ogs_assert(outer_header_creation->data);
141
ogs_assert(outer_header_creation->len);
142
143
- memcpy(&far->outer_header_creation,
144
- outer_header_creation->data, outer_header_creation->len);
145
+ memcpy(&far->outer_header_creation, outer_header_creation->data,
146
+ ogs_min(sizeof(far->outer_header_creation),
147
+ outer_header_creation->len));
148
far->outer_header_creation.teid =
149
be32toh(far->outer_header_creation.teid);
150
}
151
152
ogs_assert(outer_header_creation->data);
153
ogs_assert(outer_header_creation->len);
154
155
- memcpy(&far->outer_header_creation,
156
- outer_header_creation->data, outer_header_creation->len);
157
+ memcpy(&far->outer_header_creation, outer_header_creation->data,
158
+ ogs_min(sizeof(far->outer_header_creation),
159
+ outer_header_creation->len));
160
far->outer_header_creation.teid =
161
be32toh(far->outer_header_creation.teid);
162
}
163
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto
Added
2
1
+(directory)
2
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/conv.c
Added
44
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-proto.h"
22
+
23
+void ogs_extract_digit_from_string(char *digit, char *string)
24
+{
25
+ bool extracting = false;
26
+ int i = 0;
27
+
28
+ ogs_assert(string);
29
+ ogs_assert(digit);
30
+
31
+ while (*string && i < OGS_MAX_IMSI_BCD_LEN) {
32
+ if (*string >= '0' && *string <= '9') {
33
+ *digit++ = *string;
34
+ extracting = true;
35
+ } else if (extracting == true) {
36
+ break;
37
+ }
38
+ string++;
39
+ i++;
40
+ }
41
+
42
+ *digit = 0;
43
+}
44
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/conv.h
Added
39
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_PROTO_INSIDE) && !defined(OGS_PROTO_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_PROTO_CONV_H
26
+#define OGS_PROTO_CONV_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif
31
+
32
+void ogs_extract_digit_from_string(char *digit, char *string);
33
+
34
+#ifdef __cplusplus
35
+}
36
+#endif
37
+
38
+#endif /* OGS_PROTO_CONV_H */
39
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/event.c
Added
76
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-proto.h"
22
+
23
+const char *OGS_EVENT_NAME_SBI_SERVER = "OGS_EVENT_NAME_SBI_SERVER";
24
+const char *OGS_EVENT_NAME_SBI_CLIENT = "OGS_EVENT_NAME_SBI_CLIENT";
25
+const char *OGS_EVENT_NAME_SBI_TIMER = "OGS_EVENT_NAME_SBI_TIMER";
26
+
27
+void *ogs_event_size(int id, size_t size)
28
+{
29
+ ogs_event_t *e = NULL;
30
+
31
+ e = ogs_calloc(1, size);
32
+ ogs_assert(e);
33
+
34
+ e->id = id;
35
+
36
+ return e;
37
+}
38
+
39
+ogs_event_t *ogs_event_new(int id)
40
+{
41
+ return ogs_event_size(id, sizeof(ogs_event_t));
42
+}
43
+
44
+void ogs_event_free(void *e)
45
+{
46
+ ogs_assert(e);
47
+ ogs_free(e);
48
+}
49
+
50
+const char *ogs_event_get_name(ogs_event_t *e)
51
+{
52
+ if (e == NULL) {
53
+ return OGS_FSM_NAME_INIT_SIG;
54
+ }
55
+
56
+ switch (e->id) {
57
+ case OGS_FSM_ENTRY_SIG:
58
+ return OGS_FSM_NAME_ENTRY_SIG;
59
+ case OGS_FSM_EXIT_SIG:
60
+ return OGS_FSM_NAME_EXIT_SIG;
61
+
62
+ case OGS_EVENT_SBI_SERVER:
63
+ return OGS_EVENT_NAME_SBI_SERVER;
64
+ case OGS_EVENT_SBI_CLIENT:
65
+ return OGS_EVENT_NAME_SBI_CLIENT;
66
+ case OGS_EVENT_SBI_TIMER:
67
+ return OGS_EVENT_NAME_SBI_TIMER;
68
+
69
+ default:
70
+ break;
71
+ }
72
+
73
+ ogs_error("Unknown Event%d", e->id);
74
+ return "UNKNOWN_EVENT";
75
+}
76
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/event.h
Added
76
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_PROTO_INSIDE) && !defined(OGS_PROTO_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_PROTO_EVENT_H
26
+#define OGS_PROTO_EVENT_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif
31
+
32
+extern const char *OGS_EVENT_NAME_SBI_SERVER;
33
+extern const char *OGS_EVENT_NAME_SBI_CLIENT;
34
+extern const char *OGS_EVENT_NAME_SBI_TIMER;
35
+
36
+typedef enum {
37
+ OGS_EVENT_BASE = OGS_FSM_USER_SIG,
38
+
39
+ OGS_EVENT_SBI_SERVER,
40
+ OGS_EVENT_SBI_CLIENT,
41
+ OGS_EVENT_SBI_TIMER,
42
+
43
+ OGS_MAX_NUM_OF_PROTO_EVENT,
44
+
45
+} ogs_event_e;
46
+
47
+typedef struct ogs_sbi_request_s ogs_sbi_request_t;
48
+typedef struct ogs_sbi_response_s ogs_sbi_response_t;
49
+typedef struct ogs_sbi_message_s ogs_sbi_message_t;
50
+
51
+typedef struct ogs_event_s {
52
+ int id;
53
+ int timer_id;
54
+
55
+ struct {
56
+ ogs_sbi_request_t *request;
57
+ ogs_sbi_response_t *response;
58
+ void *data;
59
+ int state;
60
+
61
+ ogs_sbi_message_t *message;
62
+ } sbi;
63
+} ogs_event_t;
64
+
65
+void *ogs_event_size(int id, size_t size);
66
+ogs_event_t *ogs_event_new(int id);
67
+void ogs_event_free(void *e);
68
+
69
+const char *ogs_event_get_name(ogs_event_t *e);
70
+
71
+#ifdef __cplusplus
72
+}
73
+#endif
74
+
75
+#endif /* OGS_PROTO_EVENT_H */
76
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/meson.build
Added
47
1
2
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
3
+
4
+# This file is part of Open5GS.
5
+
6
+# This program is free software: you can redistribute it and/or modify
7
+# it under the terms of the GNU Affero General Public License as published by
8
+# the Free Software Foundation, either version 3 of the License, or
9
+# (at your option) any later version.
10
+#
11
+# This program is distributed in the hope that it will be useful,
12
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+# GNU General Public License for more details.
15
+#
16
+# You should have received a copy of the GNU General Public License
17
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
18
+
19
+libproto_sources = files('''
20
+ ogs-proto.h
21
+
22
+ types.h
23
+ conv.h
24
+ event.h
25
+ timer.h
26
+
27
+ types.c
28
+ conv.c
29
+ event.c
30
+ timer.c
31
+'''.split())
32
+
33
+libproto_inc = include_directories('.')
34
+
35
+libproto = library('ogsproto',
36
+ sources : libproto_sources,
37
+ version : libogslib_version,
38
+ c_args : '-DOGS_PROTO_COMPILATION',
39
+ include_directories : libproto_inc, libinc,
40
+ dependencies : libcore_dep,
41
+ install : true)
42
+
43
+libproto_dep = declare_dependency(
44
+ link_with : libproto,
45
+ include_directories : libproto_inc, libinc,
46
+ dependencies : libcore_dep)
47
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/ogs-proto.h
Added
44
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#ifndef OGS_PROTO_H
22
+#define OGS_PROTO_H
23
+
24
+#include "ogs-core.h"
25
+
26
+#define OGS_PROTO_INSIDE
27
+
28
+#include "proto/types.h"
29
+#include "proto/conv.h"
30
+#include "proto/event.h"
31
+#include "proto/timer.h"
32
+
33
+#undef OGS_PROTO_INSIDE
34
+
35
+#ifdef __cplusplus
36
+extern "C" {
37
+#endif
38
+
39
+#ifdef __cplusplus
40
+}
41
+#endif
42
+
43
+#endif /* OGS_PROTO_H */
44
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/timer.c
Added
58
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-proto.h"
22
+
23
+const char *OGS_TIMER_NAME_NF_INSTANCE_REGISTRATION_INTERVAL =
24
+ "OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
25
+const char *OGS_TIMER_NAME_NF_INSTANCE_HEARTBEAT_INTERVAL =
26
+ "OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
27
+const char *OGS_TIMER_NAME_NF_INSTANCE_NO_HEARTBEAT =
28
+ "OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT";
29
+const char *OGS_TIMER_NAME_NF_INSTANCE_VALIDITY =
30
+ "OGS_TIMER_NF_INSTANCE_VALIDITY";
31
+const char *OGS_TIMER_NAME_SUBSCRIPTION_VALIDITY =
32
+ "OGS_TIMER_SUBSCRIPTION_VALIDITY";
33
+const char *OGS_TIMER_NAME_SBI_CLIENT_WAIT =
34
+ "OGS_TIMER_SBI_CLIENT_WAIT";
35
+
36
+const char *ogs_timer_get_name(int timer_id)
37
+{
38
+ switch (timer_id) {
39
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
40
+ return OGS_TIMER_NAME_NF_INSTANCE_REGISTRATION_INTERVAL;
41
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
42
+ return OGS_TIMER_NAME_NF_INSTANCE_HEARTBEAT_INTERVAL;
43
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
44
+ return OGS_TIMER_NAME_NF_INSTANCE_NO_HEARTBEAT;
45
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
46
+ return OGS_TIMER_NAME_NF_INSTANCE_VALIDITY;
47
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
48
+ return OGS_TIMER_NAME_SUBSCRIPTION_VALIDITY;
49
+ case OGS_TIMER_SBI_CLIENT_WAIT:
50
+ return OGS_TIMER_NAME_SBI_CLIENT_WAIT;
51
+ default:
52
+ break;
53
+ }
54
+
55
+ ogs_error("Unknown Timer%d", timer_id);
56
+ return "UNKNOWN_TIMER";
57
+}
58
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/timer.h
Added
61
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_PROTO_INSIDE) && !defined(OGS_PROTO_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_PROTO_TIMER_H
26
+#define OGS_PROTO_TIMER_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif
31
+
32
+extern const char *OGS_TIMER_NAME_NF_INSTANCE_REGISTRATION_INTERVAL;
33
+extern const char *OGS_TIMER_NAME_NF_INSTANCE_HEARTBEAT_INTERVAL;
34
+extern const char *OGS_TIMER_NAME_NF_INSTANCE_NO_HEARTBEAT;
35
+extern const char *OGS_TIMER_NAME_NF_INSTANCE_VALIDITY;
36
+extern const char *OGS_TIMER_NAME_SUBSCRIPTION_VALIDITY;
37
+extern const char *OGS_TIMER_NAME_SBI_CLIENT_WAIT;
38
+
39
+/* forward declaration */
40
+typedef enum {
41
+ OGS_TIMER_BASE = 0,
42
+
43
+ OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
44
+ OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
45
+ OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT,
46
+ OGS_TIMER_NF_INSTANCE_VALIDITY,
47
+ OGS_TIMER_SUBSCRIPTION_VALIDITY,
48
+ OGS_TIMER_SBI_CLIENT_WAIT,
49
+
50
+ OGS_MAX_NUM_OF_PROTO_TIMER,
51
+
52
+} ogs_timer_e;
53
+
54
+const char *ogs_timer_get_name(int timer_id);
55
+
56
+#ifdef __cplusplus
57
+}
58
+#endif
59
+
60
+#endif /* OGS_PROTO_TIMER_H */
61
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/types.c
Added
1014
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-proto.h"
22
+
23
+#define PLMN_ID_DIGIT1(x) (((x) / 100) % 10)
24
+#define PLMN_ID_DIGIT2(x) (((x) / 10) % 10)
25
+#define PLMN_ID_DIGIT3(x) ((x) % 10)
26
+
27
+uint32_t ogs_plmn_id_hexdump(void *plmn_id)
28
+{
29
+ uint32_t hex;
30
+ ogs_assert(plmn_id);
31
+ memcpy(&hex, plmn_id, sizeof(ogs_plmn_id_t));
32
+ hex = be32toh(hex) >> 8;
33
+ return hex;
34
+}
35
+
36
+uint16_t ogs_plmn_id_mcc(ogs_plmn_id_t *plmn_id)
37
+{
38
+ return plmn_id->mcc1 * 100 + plmn_id->mcc2 * 10 + plmn_id->mcc3;
39
+}
40
+uint16_t ogs_plmn_id_mnc(ogs_plmn_id_t *plmn_id)
41
+{
42
+ return plmn_id->mnc1 == 0xf ? plmn_id->mnc2 * 10 + plmn_id->mnc3 :
43
+ plmn_id->mnc1 * 100 + plmn_id->mnc2 * 10 + plmn_id->mnc3;
44
+}
45
+uint16_t ogs_plmn_id_mnc_len(ogs_plmn_id_t *plmn_id)
46
+{
47
+ return plmn_id->mnc1 == 0xf ? 2 : 3;
48
+}
49
+
50
+void *ogs_plmn_id_build(ogs_plmn_id_t *plmn_id,
51
+ uint16_t mcc, uint16_t mnc, uint16_t mnc_len)
52
+{
53
+ plmn_id->mcc1 = PLMN_ID_DIGIT1(mcc);
54
+ plmn_id->mcc2 = PLMN_ID_DIGIT2(mcc);
55
+ plmn_id->mcc3 = PLMN_ID_DIGIT3(mcc);
56
+
57
+ if (mnc_len == 2)
58
+ plmn_id->mnc1 = 0xf;
59
+ else
60
+ plmn_id->mnc1 = PLMN_ID_DIGIT1(mnc);
61
+
62
+ plmn_id->mnc2 = PLMN_ID_DIGIT2(mnc);
63
+ plmn_id->mnc3 = PLMN_ID_DIGIT3(mnc);
64
+
65
+ return plmn_id;
66
+}
67
+
68
+void *ogs_nas_from_plmn_id(
69
+ ogs_nas_plmn_id_t *ogs_nas_plmn_id, ogs_plmn_id_t *plmn_id)
70
+{
71
+ memcpy(ogs_nas_plmn_id, plmn_id, OGS_PLMN_ID_LEN);
72
+ if (plmn_id->mnc1 != 0xf) {
73
+ ogs_nas_plmn_id->mnc1 = plmn_id->mnc1;
74
+ ogs_nas_plmn_id->mnc2 = plmn_id->mnc2;
75
+ ogs_nas_plmn_id->mnc3 = plmn_id->mnc3;
76
+ }
77
+ return ogs_nas_plmn_id;
78
+}
79
+void *ogs_nas_to_plmn_id(
80
+ ogs_plmn_id_t *plmn_id, ogs_nas_plmn_id_t *ogs_nas_plmn_id)
81
+{
82
+ memcpy(plmn_id, ogs_nas_plmn_id, OGS_PLMN_ID_LEN);
83
+ if (plmn_id->mnc1 != 0xf) {
84
+ plmn_id->mnc1 = ogs_nas_plmn_id->mnc1;
85
+ plmn_id->mnc2 = ogs_nas_plmn_id->mnc2;
86
+ plmn_id->mnc3 = ogs_nas_plmn_id->mnc3;
87
+ }
88
+ return plmn_id;
89
+}
90
+
91
+char *ogs_serving_network_name_from_plmn_id(ogs_plmn_id_t *plmn_id)
92
+{
93
+ ogs_assert(plmn_id);
94
+ return ogs_msprintf("5G:mnc%03d.mcc%03d.3gppnetwork.org",
95
+ ogs_plmn_id_mnc(plmn_id), ogs_plmn_id_mcc(plmn_id));
96
+}
97
+
98
+char *ogs_plmn_id_mcc_string(ogs_plmn_id_t *plmn_id)
99
+{
100
+ ogs_assert(plmn_id);
101
+ return ogs_msprintf("%03d", ogs_plmn_id_mcc(plmn_id));
102
+}
103
+
104
+char *ogs_plmn_id_mnc_string(ogs_plmn_id_t *plmn_id)
105
+{
106
+ ogs_assert(plmn_id);
107
+ if (ogs_plmn_id_mnc_len(plmn_id) == 2)
108
+ return ogs_msprintf("%02d", ogs_plmn_id_mnc(plmn_id));
109
+ else
110
+ return ogs_msprintf("%03d", ogs_plmn_id_mnc(plmn_id));
111
+}
112
+
113
+char *ogs_plmn_id_to_string(ogs_plmn_id_t *plmn_id, char *buf)
114
+{
115
+ ogs_assert(plmn_id);
116
+ ogs_assert(buf);
117
+
118
+ if (ogs_plmn_id_mnc_len(plmn_id) == 2)
119
+ ogs_snprintf(buf, OGS_PLMNIDSTRLEN, "%03d%02d",
120
+ ogs_plmn_id_mcc(plmn_id), ogs_plmn_id_mnc(plmn_id));
121
+ else
122
+ ogs_snprintf(buf, OGS_PLMNIDSTRLEN, "%03d%03d",
123
+ ogs_plmn_id_mcc(plmn_id), ogs_plmn_id_mnc(plmn_id));
124
+
125
+ return buf;
126
+}
127
+
128
+uint32_t ogs_amf_id_hexdump(ogs_amf_id_t *amf_id)
129
+{
130
+ uint32_t hex;
131
+
132
+ ogs_assert(amf_id);
133
+
134
+ memcpy(&hex, amf_id, sizeof(ogs_amf_id_t));
135
+ hex = be32toh(hex) >> 8;
136
+
137
+ return hex;
138
+}
139
+
140
+ogs_amf_id_t *ogs_amf_id_from_string(ogs_amf_id_t *amf_id, const char *hex)
141
+{
142
+ char hexbufsizeof(ogs_amf_id_t);
143
+
144
+ ogs_assert(amf_id);
145
+ ogs_assert(hex);
146
+
147
+ OGS_HEX(hex, strlen(hex), hexbuf);
148
+
149
+ amf_id->region = hexbuf0;
150
+ amf_id->set1 = hexbuf1;
151
+ amf_id->set2 = (hexbuf2 & 0xc0) >> 6;
152
+ amf_id->pointer = hexbuf2 & 0x3f;
153
+
154
+ return amf_id;
155
+}
156
+
157
+#define OGS_AMFIDSTRLEN (sizeof(ogs_amf_id_t)*2+1)
158
+char *ogs_amf_id_to_string(ogs_amf_id_t *amf_id)
159
+{
160
+ char *str = NULL;
161
+ ogs_assert(amf_id);
162
+
163
+ str = ogs_calloc(1, OGS_AMFIDSTRLEN);
164
+ ogs_expect_or_return_val(str, NULL);
165
+
166
+ ogs_hex_to_ascii(amf_id, sizeof(ogs_amf_id_t), str, OGS_AMFIDSTRLEN);
167
+
168
+ return str;
169
+}
170
+
171
+uint8_t ogs_amf_region_id(ogs_amf_id_t *amf_id)
172
+{
173
+ ogs_assert(amf_id);
174
+ return amf_id->region;
175
+}
176
+uint16_t ogs_amf_set_id(ogs_amf_id_t *amf_id)
177
+{
178
+ ogs_assert(amf_id);
179
+ return (amf_id->set1 << 2) + amf_id->set2;
180
+}
181
+uint8_t ogs_amf_pointer(ogs_amf_id_t *amf_id)
182
+{
183
+ ogs_assert(amf_id);
184
+ return amf_id->pointer;
185
+}
186
+
187
+ogs_amf_id_t *ogs_amf_id_build(ogs_amf_id_t *amf_id,
188
+ uint8_t region, uint16_t set, uint8_t pointer)
189
+{
190
+ amf_id->region = region;
191
+ amf_id->set1 = set >> 2;
192
+ amf_id->set2 = set & 0x3;
193
+ amf_id->pointer = pointer;
194
+
195
+ return amf_id;
196
+}
197
+
198
+char *ogs_supi_from_suci(char *suci)
199
+{
200
+#define MAX_SUCI_TOKEN 16
201
+ char *arrayMAX_SUCI_TOKEN;
202
+ char *p, *tmp;
203
+ int i;
204
+ char *supi = NULL;
205
+
206
+ ogs_assert(suci);
207
+ tmp = ogs_strdup(suci);
208
+ ogs_expect_or_return_val(tmp, NULL);
209
+
210
+ p = tmp;
211
+ i = 0;
212
+ while((arrayi++ = strsep(&p, "-"))) {
213
+ /* Empty Body */
214
+ }
215
+
216
+ SWITCH(array0)
217
+ CASE("suci")
218
+ SWITCH(array1)
219
+ CASE("0") /* SUPI format : IMSI */
220
+ if (array2 && array3 && array7)
221
+ supi = ogs_msprintf("imsi-%s%s%s",
222
+ array2, array3, array7);
223
+
224
+ break;
225
+ DEFAULT
226
+ ogs_error("Not implemented %s", array1);
227
+ break;
228
+ END
229
+ break;
230
+ DEFAULT
231
+ ogs_error("Not implemented %s", array0);
232
+ break;
233
+ END
234
+
235
+ ogs_free(tmp);
236
+ return supi;
237
+}
238
+
239
+char *ogs_id_get_type(char *str)
240
+{
241
+ char *token, *p, *tmp;
242
+ char *type = NULL;
243
+
244
+ ogs_assert(str);
245
+ tmp = ogs_strdup(str);
246
+ ogs_expect_or_return_val(tmp, NULL);
247
+
248
+ p = tmp;
249
+ token = strsep(&p, "-");
250
+ ogs_assert(token);
251
+ type = ogs_strdup(token);
252
+ ogs_expect_or_return_val(type, NULL);
253
+
254
+ ogs_free(tmp);
255
+ return type;
256
+}
257
+
258
+char *ogs_id_get_value(char *str)
259
+{
260
+ char *token, *p, *tmp;
261
+ char *ueid = NULL;
262
+
263
+ ogs_assert(str);
264
+ tmp = ogs_strdup(str);
265
+ ogs_expect_or_return_val(tmp, NULL);
266
+
267
+ p = tmp;
268
+ token = strsep(&p, "-");
269
+ ogs_assert(token);
270
+ token = strsep(&p, "-");
271
+ ogs_assert(token);
272
+ ueid = ogs_strdup(token);
273
+ ogs_expect_or_return_val(ueid, NULL);
274
+
275
+ ogs_free(tmp);
276
+ return ueid;
277
+}
278
+
279
+char *ogs_s_nssai_sd_to_string(ogs_uint24_t sd)
280
+{
281
+ char *string = NULL;
282
+
283
+ if (sd.v == OGS_S_NSSAI_NO_SD_VALUE)
284
+ return NULL;
285
+
286
+ string = ogs_uint24_to_0string(sd);
287
+ ogs_expect(string);
288
+
289
+ return string;
290
+}
291
+
292
+ogs_uint24_t ogs_s_nssai_sd_from_string(const char *hex)
293
+{
294
+ ogs_uint24_t sd;
295
+
296
+ sd.v = OGS_S_NSSAI_NO_SD_VALUE;
297
+ if (hex == NULL)
298
+ return sd;
299
+
300
+ return ogs_uint24_from_string((char *)hex);
301
+}
302
+
303
+int ogs_fqdn_build(char *dst, char *src, int length)
304
+{
305
+ int i = 0, j = 0;
306
+
307
+ for (i = 0, j = 0; i < length; i++, j++) {
308
+ if (srci == '.') {
309
+ dsti-j = j;
310
+ j = -1;
311
+ } else {
312
+ dsti+1 = srci;
313
+ }
314
+ }
315
+ dsti-j = j;
316
+
317
+ return length+1;
318
+}
319
+
320
+int ogs_fqdn_parse(char *dst, char *src, int length)
321
+{
322
+ int i = 0, j = 0;
323
+ uint8_t len = 0;
324
+
325
+ while (i+1 < length) {
326
+ len = srci++;
327
+ if ((j + len + 1) > length) {
328
+ ogs_error("Invalid FQDN encodinglen:%d + 1 > length%d",
329
+ len, length);
330
+ ogs_log_hexdump(OGS_LOG_ERROR, (unsigned char *)src, length);
331
+ return 0;
332
+ }
333
+ memcpy(&dstj, &srci, len);
334
+
335
+ i += len;
336
+ j += len;
337
+
338
+ if (i+1 < length)
339
+ dstj++ = '.';
340
+ else
341
+ dstj = 0;
342
+ }
343
+
344
+ return j;
345
+}
346
+
347
+/* 8.13 Protocol Configuration Options (PCO)
348
+ * 10.5.6.3 Protocol configuration options in 3GPP TS 24.008 */
349
+int ogs_pco_parse(ogs_pco_t *pco, unsigned char *data, int data_len)
350
+{
351
+ ogs_pco_t *source = (ogs_pco_t *)data;
352
+ int size = 0;
353
+ int i = 0;
354
+
355
+ ogs_assert(pco);
356
+ ogs_assert(data);
357
+ ogs_assert(data_len);
358
+
359
+ memset(pco, 0, sizeof(ogs_pco_t));
360
+
361
+ pco->ext = source->ext;
362
+ pco->configuration_protocol = source->configuration_protocol;
363
+ size++;
364
+
365
+ while(size < data_len && i < OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID) {
366
+ ogs_pco_id_t *id = &pco->idsi;
367
+ ogs_assert(size + sizeof(id->id) <= data_len);
368
+ memcpy(&id->id, data + size, sizeof(id->id));
369
+ id->id = be16toh(id->id);
370
+ size += sizeof(id->id);
371
+
372
+ ogs_assert(size + sizeof(id->len) <= data_len);
373
+ memcpy(&id->len, data + size, sizeof(id->len));
374
+ size += sizeof(id->len);
375
+
376
+ id->data = data + size;
377
+ size += id->len;
378
+
379
+ i++;
380
+ }
381
+ pco->num_of_id = i;
382
+ ogs_assert(size == data_len);
383
+
384
+ return size;
385
+}
386
+int ogs_pco_build(unsigned char *data, int data_len, ogs_pco_t *pco)
387
+{
388
+ ogs_pco_t target;
389
+ int size = 0;
390
+ int i = 0;
391
+
392
+ ogs_assert(pco);
393
+ ogs_assert(data);
394
+ ogs_assert(data_len);
395
+
396
+ memcpy(&target, pco, sizeof(ogs_pco_t));
397
+
398
+ ogs_assert(size + 1 <= data_len);
399
+ memcpy(data + size, &target, 1);
400
+ size += 1;
401
+
402
+ ogs_assert(target.num_of_id <= OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID);
403
+ for (i = 0; i < target.num_of_id; i++) {
404
+ ogs_pco_id_t *id = &target.idsi;
405
+
406
+ ogs_assert(size + sizeof(id->id) <= data_len);
407
+ id->id = htobe16(id->id);
408
+ memcpy(data + size, &id->id, sizeof(id->id));
409
+ size += sizeof(id->id);
410
+
411
+ ogs_assert(size + sizeof(id->len) <= data_len);
412
+ memcpy(data + size, &id->len, sizeof(id->len));
413
+ size += sizeof(id->len);
414
+
415
+ ogs_assert(size + id->len <= data_len);
416
+ memcpy(data + size, id->data, id->len);
417
+ size += id->len;
418
+ }
419
+
420
+ return size;
421
+}
422
+
423
+int ogs_ip_to_sockaddr(ogs_ip_t *ip, uint16_t port, ogs_sockaddr_t **list)
424
+{
425
+ ogs_sockaddr_t *addr = NULL, *addr6 = NULL;
426
+
427
+ ogs_assert(ip);
428
+ ogs_assert(list);
429
+
430
+ addr = ogs_calloc(1, sizeof(ogs_sockaddr_t));
431
+ if (!addr) {
432
+ ogs_error("ogs_calloc() failed");
433
+ return OGS_ERROR;
434
+ }
435
+ addr->ogs_sa_family = AF_INET;
436
+ addr->ogs_sin_port = htobe16(port);
437
+
438
+ addr6 = ogs_calloc(1, sizeof(ogs_sockaddr_t));
439
+ if (!addr6) {
440
+ ogs_error("ogs_calloc() failed");
441
+ ogs_free(addr);
442
+ return OGS_ERROR;
443
+ }
444
+ addr6->ogs_sa_family = AF_INET6;
445
+ addr6->ogs_sin_port = htobe16(port);
446
+
447
+ if (ip->ipv4 && ip->ipv6) {
448
+ addr->next = addr6;
449
+
450
+ addr->sin.sin_addr.s_addr = ip->addr;
451
+ memcpy(addr6->sin6.sin6_addr.s6_addr, ip->addr6, OGS_IPV6_LEN);
452
+
453
+ *list = addr;
454
+ } else if (ip->ipv4) {
455
+ addr->sin.sin_addr.s_addr = ip->addr;
456
+ ogs_free(addr6);
457
+
458
+ *list = addr;
459
+ } else if (ip->ipv6) {
460
+ memcpy(addr6->sin6.sin6_addr.s6_addr, ip->addr6, OGS_IPV6_LEN);
461
+ ogs_free(addr);
462
+
463
+ *list = addr6;
464
+ } else {
465
+ ogs_error("No IPv4 and IPv6");
466
+ ogs_free(addr);
467
+ ogs_free(addr6);
468
+ return OGS_ERROR;
469
+ }
470
+
471
+ return OGS_OK;
472
+}
473
+
474
+int ogs_sockaddr_to_ip(
475
+ ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6, ogs_ip_t *ip)
476
+{
477
+ ogs_expect_or_return_val(ip, OGS_ERROR);
478
+ ogs_expect_or_return_val(addr || addr6, OGS_ERROR);
479
+
480
+ memset(ip, 0, sizeof(ogs_ip_t));
481
+
482
+ if (addr && addr6) {
483
+ ip->ipv4 = 1;
484
+ ip->ipv6 = 1;
485
+ ip->len = OGS_IPV4V6_LEN;
486
+ ip->addr = addr->sin.sin_addr.s_addr;
487
+ memcpy(ip->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
488
+ } else if (addr) {
489
+ ip->ipv4 = 1;
490
+ ip->len = OGS_IPV4_LEN;
491
+ ip->addr = addr->sin.sin_addr.s_addr;
492
+ } else if (addr6) {
493
+ ip->ipv6 = 1;
494
+ ip->len = OGS_IPV6_LEN;
495
+ memcpy(ip->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
496
+ } else
497
+ ogs_assert_if_reached();
498
+
499
+ return OGS_OK;
500
+}
501
+
502
+char *ogs_ipv4_to_string(uint32_t addr)
503
+{
504
+ char *buf = NULL;
505
+
506
+ buf = ogs_calloc(1, OGS_ADDRSTRLEN);
507
+ ogs_expect_or_return_val(buf, NULL);
508
+
509
+ return (char*)OGS_INET_NTOP(&addr, buf);
510
+}
511
+
512
+char *ogs_ipv6addr_to_string(uint8_t *addr6)
513
+{
514
+ char *buf = NULL;
515
+ ogs_assert(addr6);
516
+
517
+ buf = ogs_calloc(1, OGS_ADDRSTRLEN);
518
+ ogs_expect_or_return_val(buf, NULL);
519
+
520
+ return (char *)OGS_INET6_NTOP(addr6, buf);
521
+}
522
+
523
+char *ogs_ipv6prefix_to_string(uint8_t *addr6, uint8_t prefixlen)
524
+{
525
+ char *buf = NULL;
526
+ uint8_t tmpOGS_IPV6_LEN;
527
+ ogs_assert(addr6);
528
+
529
+ memset(tmp, 0, OGS_IPV6_LEN);
530
+ memcpy(tmp, addr6, prefixlen >> 3);
531
+
532
+ buf = ogs_calloc(1, OGS_ADDRSTRLEN);
533
+ ogs_expect_or_return_val(buf, NULL);
534
+
535
+ if (OGS_INET6_NTOP(tmp, buf) == NULL) {
536
+ ogs_fatal("Invalid IPv6 address");
537
+ ogs_log_hexdump(OGS_LOG_FATAL, addr6, OGS_IPV6_LEN);
538
+ ogs_assert_if_reached();
539
+ }
540
+ return ogs_mstrcatf(buf, "/%d", prefixlen);
541
+}
542
+
543
+int ogs_ipv4_from_string(uint32_t *addr, char *string)
544
+{
545
+ int rv;
546
+ ogs_sockaddr_t tmp;
547
+
548
+ ogs_assert(addr);
549
+ ogs_assert(string);
550
+
551
+ rv = ogs_inet_pton(AF_INET, string, &tmp);
552
+ if (rv != OGS_OK) {
553
+ ogs_error("Invalid IPv4 string = %s", string);
554
+ return OGS_ERROR;
555
+ }
556
+
557
+ *addr = tmp.sin.sin_addr.s_addr;
558
+
559
+ return OGS_OK;
560
+}
561
+
562
+int ogs_ipv6addr_from_string(uint8_t *addr6, char *string)
563
+{
564
+ int rv;
565
+ ogs_sockaddr_t tmp;
566
+
567
+ ogs_assert(addr6);
568
+ ogs_assert(string);
569
+
570
+ rv = ogs_inet_pton(AF_INET6, string, &tmp);
571
+ if (rv != OGS_OK) {
572
+ ogs_error("Invalid IPv6 string = %s", string);
573
+ return OGS_ERROR;
574
+ }
575
+
576
+ memcpy(addr6, tmp.sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
577
+
578
+ return OGS_OK;
579
+}
580
+
581
+int ogs_ipv6prefix_from_string(uint8_t *addr6, uint8_t *prefixlen, char *string)
582
+{
583
+ int rv;
584
+ ogs_sockaddr_t tmp;
585
+ char *v = NULL, *pv = NULL, *ipstr = NULL, *mask_or_numbits = NULL;
586
+
587
+ ogs_assert(addr6);
588
+ ogs_assert(prefixlen);
589
+ ogs_assert(string);
590
+ pv = v = ogs_strdup(string);
591
+ ogs_expect_or_return_val(v, OGS_ERROR);
592
+
593
+ ipstr = strsep(&v, "/");
594
+ if (ipstr)
595
+ mask_or_numbits = v;
596
+
597
+ if (!ipstr || !mask_or_numbits) {
598
+ ogs_error("Invalid IPv6 Prefix string = %s", v);
599
+ ogs_free(v);
600
+ return OGS_ERROR;
601
+ }
602
+
603
+ rv = ogs_inet_pton(AF_INET6, ipstr, &tmp);
604
+ ogs_expect_or_return_val(rv == OGS_OK, rv);
605
+
606
+ memcpy(addr6, tmp.sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
607
+ *prefixlen = atoi(mask_or_numbits);
608
+
609
+ ogs_free(pv);
610
+ return OGS_OK;
611
+}
612
+
613
+int ogs_sockaddr_to_user_plane_ip_resource_info(
614
+ ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6,
615
+ ogs_user_plane_ip_resource_info_t *info)
616
+{
617
+ ogs_assert(addr || addr6);
618
+ ogs_assert(info);
619
+
620
+ if (addr) {
621
+ info->v4 = 1;
622
+ info->addr = addr->sin.sin_addr.s_addr;
623
+ }
624
+ if (addr6) {
625
+ info->v6 = 1;
626
+ memcpy(info->addr6, addr6->sin6.sin6_addr.s6_addr, OGS_IPV6_LEN);
627
+ }
628
+
629
+ return OGS_OK;
630
+}
631
+
632
+int ogs_user_plane_ip_resource_info_to_sockaddr(
633
+ ogs_user_plane_ip_resource_info_t *info,
634
+ ogs_sockaddr_t **addr, ogs_sockaddr_t **addr6)
635
+{
636
+ ogs_assert(addr && addr6);
637
+ ogs_assert(info);
638
+
639
+ *addr = NULL;
640
+ *addr6 = NULL;
641
+
642
+ if (info->v4) {
643
+ *addr = ogs_calloc(1, sizeof(**addr));
644
+ ogs_assert(*addr);
645
+ (*addr)->sin.sin_addr.s_addr = info->addr;
646
+ (*addr)->ogs_sa_family = AF_INET;
647
+ }
648
+
649
+ if (info->v6) {
650
+ *addr6 = ogs_calloc(1, sizeof(**addr6));
651
+ ogs_assert(*addr6);
652
+ memcpy((*addr6)->sin6.sin6_addr.s6_addr, info->addr6, OGS_IPV6_LEN);
653
+ (*addr6)->ogs_sa_family = AF_INET6;
654
+ }
655
+
656
+ return OGS_OK;
657
+}
658
+
659
+ogs_slice_data_t *ogs_slice_find_by_s_nssai(
660
+ ogs_slice_data_t *slice_data, int num_of_slice_data,
661
+ ogs_s_nssai_t *s_nssai)
662
+{
663
+ int i;
664
+
665
+ ogs_assert(slice_data);
666
+ ogs_assert(num_of_slice_data);
667
+ ogs_assert(s_nssai);
668
+
669
+ /* Compare S-NSSAI */
670
+ for (i = 0; i < num_of_slice_data; i++) {
671
+ if (s_nssai->sst == slice_datai.s_nssai.sst &&
672
+ s_nssai->sd.v == slice_datai.s_nssai.sd.v) {
673
+ return slice_data + i;
674
+ }
675
+ }
676
+
677
+ return NULL;
678
+}
679
+
680
+void ogs_subscription_data_free(ogs_subscription_data_t *subscription_data)
681
+{
682
+ int i, j;
683
+
684
+ ogs_assert(subscription_data);
685
+
686
+ for (i = 0; i < subscription_data->num_of_slice; i++) {
687
+ ogs_slice_data_t *slice_data = &subscription_data->slicei;
688
+
689
+ for (j = 0; j < slice_data->num_of_session; j++) {
690
+ if (slice_data->sessionj.name)
691
+ ogs_free(slice_data->sessionj.name);
692
+ }
693
+
694
+ slice_data->num_of_session = 0;
695
+ }
696
+
697
+ subscription_data->num_of_slice = 0;
698
+
699
+ subscription_data->num_of_msisdn = 0;
700
+}
701
+
702
+void ogs_session_data_free(ogs_session_data_t *session_data)
703
+{
704
+ int i;
705
+
706
+ ogs_assert(session_data);
707
+
708
+ if (session_data->session.name)
709
+ ogs_free(session_data->session.name);
710
+
711
+ for (i = 0; i < session_data->num_of_pcc_rule; i++)
712
+ OGS_PCC_RULE_FREE(&session_data->pcc_rulei);
713
+}
714
+
715
+void ogs_ims_data_free(ogs_ims_data_t *ims_data)
716
+{
717
+ int i, j, k;
718
+
719
+ ogs_assert(ims_data);
720
+
721
+ for (i = 0; i < ims_data->num_of_media_component; i++) {
722
+ ogs_media_component_t *media_component = &ims_data->media_componenti;
723
+
724
+ for (j = 0; j < media_component->num_of_sub; j++) {
725
+ ogs_media_sub_component_t *sub = &media_component->subj;
726
+
727
+ for (k = 0; k < sub->num_of_flow; k++) {
728
+ ogs_flow_t *flow = &sub->flowk;
729
+
730
+ if (flow->description) {
731
+ ogs_free(flow->description);
732
+ } else
733
+ ogs_assert_if_reached();
734
+ }
735
+ }
736
+ }
737
+}
738
+
739
+static int flow_rx_to_gx(ogs_flow_t *rx_flow, ogs_flow_t *gx_flow)
740
+{
741
+ int len;
742
+ char *from_str, *to_str;
743
+
744
+ ogs_assert(rx_flow);
745
+ ogs_assert(gx_flow);
746
+
747
+ if (!strncmp(rx_flow->description,
748
+ "permit out", strlen("permit out"))) {
749
+ gx_flow->direction = OGS_FLOW_DOWNLINK_ONLY;
750
+ gx_flow->description = ogs_strdup(rx_flow->description);
751
+ ogs_assert(gx_flow->description);
752
+
753
+ } else if (!strncmp(rx_flow->description,
754
+ "permit in", strlen("permit in"))) {
755
+ gx_flow->direction = OGS_FLOW_UPLINK_ONLY;
756
+
757
+ /* 'permit in' should be changed
758
+ * 'permit out' in Gx Diameter */
759
+ len = strlen(rx_flow->description)+2;
760
+ gx_flow->description = ogs_calloc(1, len);
761
+ ogs_assert(gx_flow->description);
762
+ strcpy(gx_flow->description, "permit out");
763
+ from_str = strstr(&rx_flow->descriptionstrlen("permit in"), "from");
764
+ ogs_assert(from_str);
765
+ to_str = strstr(&rx_flow->descriptionstrlen("permit in"), "to");
766
+ ogs_assert(to_str);
767
+ strncat(gx_flow->description,
768
+ &rx_flow->descriptionstrlen("permit in"),
769
+ strlen(rx_flow->description) -
770
+ strlen("permit in") - strlen(from_str));
771
+ strcat(gx_flow->description, "from");
772
+ strcat(gx_flow->description, &to_strstrlen("to"));
773
+ strcat(gx_flow->description, " to");
774
+ strncat(gx_flow->description, &from_strstrlen("from"),
775
+ strlen(from_str) - strlen(to_str) - strlen("from") - 1);
776
+ ogs_assert(len == strlen(gx_flow->description)+1);
777
+ } else {
778
+ ogs_error("Invalid Flow Descripton : %s", rx_flow->description);
779
+ return OGS_ERROR;
780
+ }
781
+
782
+ return OGS_OK;
783
+}
784
+
785
+int ogs_pcc_rule_num_of_flow_equal_to_media(
786
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
787
+{
788
+ int rv;
789
+ int i, j, k;
790
+ int matched = 0;
791
+ int new = 0;
792
+
793
+ ogs_assert(pcc_rule);
794
+ ogs_assert(media_component);
795
+
796
+ for (i = 0; i < media_component->num_of_sub; i++) {
797
+ ogs_media_sub_component_t *sub = &media_component->subi;
798
+
799
+ for (j = 0; j < sub->num_of_flow; j++) {
800
+ new++;
801
+ }
802
+ }
803
+
804
+ if (new == 0) {
805
+ /* No new flow in Media-Component */
806
+ return pcc_rule->num_of_flow;
807
+ }
808
+
809
+ for (i = 0; i < media_component->num_of_sub; i++) {
810
+ ogs_media_sub_component_t *sub = &media_component->subi;
811
+
812
+ for (j = 0; j < sub->num_of_flow &&
813
+ j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
814
+ ogs_flow_t gx_flow;
815
+ ogs_flow_t *rx_flow = &sub->flowj;
816
+
817
+ rv = flow_rx_to_gx(rx_flow, &gx_flow);
818
+ if (rv != OGS_OK) {
819
+ ogs_error("flow reformatting error");
820
+ return OGS_ERROR;
821
+ }
822
+
823
+ for (k = 0; k < pcc_rule->num_of_flow; k++) {
824
+ if (gx_flow.direction == pcc_rule->flowk.direction &&
825
+ !strcmp(gx_flow.description,
826
+ pcc_rule->flowk.description)) {
827
+ matched++;
828
+ break;
829
+ }
830
+ }
831
+
832
+ OGS_FLOW_FREE(&gx_flow);
833
+ }
834
+ }
835
+
836
+ return matched;
837
+}
838
+
839
+int ogs_pcc_rule_install_flow_from_media(
840
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
841
+{
842
+ int rv;
843
+ int i, j;
844
+
845
+ ogs_assert(pcc_rule);
846
+ ogs_assert(media_component);
847
+
848
+ /* Remove Flow from PCC Rule */
849
+ for (i = 0; i < pcc_rule->num_of_flow; i++) {
850
+ OGS_FLOW_FREE(&pcc_rule->flowi);
851
+ }
852
+ pcc_rule->num_of_flow = 0;
853
+
854
+ for (i = 0; i < media_component->num_of_sub; i++) {
855
+ ogs_media_sub_component_t *sub = &media_component->subi;
856
+
857
+ /* Copy Flow to PCC Rule */
858
+ for (j = 0; j < sub->num_of_flow &&
859
+ j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
860
+ ogs_flow_t *rx_flow = NULL;
861
+ ogs_flow_t *gx_flow = NULL;
862
+
863
+ if (pcc_rule->num_of_flow < OGS_MAX_NUM_OF_FLOW_IN_PCC_RULE) {
864
+ rx_flow = &sub->flowj;
865
+ gx_flow = &pcc_rule->flowpcc_rule->num_of_flow;
866
+
867
+ rv = flow_rx_to_gx(rx_flow, gx_flow);
868
+ if (rv != OGS_OK) {
869
+ ogs_error("flow reformatting error");
870
+ return OGS_ERROR;
871
+ }
872
+
873
+ pcc_rule->num_of_flow++;
874
+ } else {
875
+ ogs_error("Overflow: Number of Flow");
876
+ return OGS_ERROR;
877
+ }
878
+ }
879
+ }
880
+
881
+ return OGS_OK;
882
+}
883
+
884
+int ogs_pcc_rule_update_qos_from_media(
885
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component)
886
+{
887
+ int rv;
888
+ int i, j;
889
+
890
+ ogs_assert(pcc_rule);
891
+ ogs_assert(media_component);
892
+
893
+ pcc_rule->qos.mbr.downlink = 0;
894
+ pcc_rule->qos.mbr.uplink = 0;
895
+ pcc_rule->qos.gbr.downlink = 0;
896
+ pcc_rule->qos.gbr.uplink = 0;
897
+
898
+ for (i = 0; i < media_component->num_of_sub; i++) {
899
+ ogs_media_sub_component_t *sub = &media_component->subi;
900
+
901
+ for (j = 0; j < sub->num_of_flow &&
902
+ j < OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT; j++) {
903
+ ogs_flow_t gx_flow;
904
+ ogs_flow_t *rx_flow = &sub->flowj;
905
+
906
+ rv = flow_rx_to_gx(rx_flow, &gx_flow);
907
+ if (rv != OGS_OK) {
908
+ ogs_error("flow reformatting error");
909
+ return OGS_ERROR;
910
+ }
911
+
912
+ if (gx_flow.direction == OGS_FLOW_DOWNLINK_ONLY) {
913
+ if (sub->flow_usage == OGS_FLOW_USAGE_RTCP) {
914
+ if (media_component->rr_bandwidth &&
915
+ media_component->rs_bandwidth) {
916
+ pcc_rule->qos.mbr.downlink +=
917
+ (media_component->rr_bandwidth +
918
+ media_component->rs_bandwidth);
919
+ } else if (media_component->max_requested_bandwidth_dl) {
920
+ if (media_component->rr_bandwidth &&
921
+ !media_component->rs_bandwidth) {
922
+ pcc_rule->qos.mbr.downlink +=
923
+ ogs_max(0.05 *
924
+ media_component->max_requested_bandwidth_dl,
925
+ media_component->rr_bandwidth);
926
+ }
927
+ if (!media_component->rr_bandwidth &&
928
+ media_component->rs_bandwidth) {
929
+ pcc_rule->qos.mbr.downlink +=
930
+ ogs_max(0.05 *
931
+ media_component->max_requested_bandwidth_dl,
932
+ media_component->rs_bandwidth);
933
+ }
934
+ if (!media_component->rr_bandwidth &&
935
+ !media_component->rs_bandwidth) {
936
+ pcc_rule->qos.mbr.downlink +=
937
+ 0.05 *
938
+ media_component->max_requested_bandwidth_dl;
939
+ }
940
+ }
941
+ } else {
942
+ if (gx_flow.description) {
943
+ pcc_rule->qos.mbr.downlink +=
944
+ media_component->max_requested_bandwidth_dl;
945
+ pcc_rule->qos.gbr.downlink +=
946
+ media_component->min_requested_bandwidth_dl;
947
+ }
948
+ }
949
+ } else if (gx_flow.direction == OGS_FLOW_UPLINK_ONLY) {
950
+ if (sub->flow_usage == OGS_FLOW_USAGE_RTCP) {
951
+ if (media_component->rr_bandwidth &&
952
+ media_component->rs_bandwidth) {
953
+ pcc_rule->qos.mbr.uplink +=
954
+ (media_component->rr_bandwidth +
955
+ media_component->rs_bandwidth);
956
+ } else if (media_component->max_requested_bandwidth_ul) {
957
+ if (media_component->rr_bandwidth &&
958
+ !media_component->rs_bandwidth) {
959
+ pcc_rule->qos.mbr.uplink +=
960
+ ogs_max(0.05 *
961
+ media_component->max_requested_bandwidth_ul,
962
+ media_component->rr_bandwidth);
963
+ }
964
+ if (!media_component->rr_bandwidth &&
965
+ media_component->rs_bandwidth) {
966
+ pcc_rule->qos.mbr.uplink +=
967
+ ogs_max(0.05 *
968
+ media_component->max_requested_bandwidth_ul,
969
+ media_component->rs_bandwidth);
970
+ }
971
+ if (!media_component->rr_bandwidth &&
972
+ !media_component->rs_bandwidth) {
973
+ pcc_rule->qos.mbr.uplink +=
974
+ 0.05 *
975
+ media_component->max_requested_bandwidth_ul;
976
+ }
977
+ }
978
+ } else {
979
+ if (gx_flow.description) {
980
+ pcc_rule->qos.mbr.uplink +=
981
+ media_component->max_requested_bandwidth_ul;
982
+ pcc_rule->qos.gbr.uplink +=
983
+ media_component->min_requested_bandwidth_ul;
984
+ }
985
+ }
986
+ } else
987
+ ogs_assert_if_reached();
988
+
989
+ OGS_FLOW_FREE(&gx_flow);
990
+ }
991
+ }
992
+
993
+ if (pcc_rule->qos.mbr.downlink == 0) {
994
+ pcc_rule->qos.mbr.downlink +=
995
+ media_component->max_requested_bandwidth_dl;
996
+ pcc_rule->qos.mbr.downlink +=
997
+ (media_component->rr_bandwidth + media_component->rs_bandwidth);
998
+ }
999
+
1000
+ if (pcc_rule->qos.mbr.uplink == 0) {
1001
+ pcc_rule->qos.mbr.uplink +=
1002
+ media_component->max_requested_bandwidth_ul;
1003
+ pcc_rule->qos.mbr.uplink +=
1004
+ (media_component->rr_bandwidth + media_component->rs_bandwidth);
1005
+ }
1006
+
1007
+ if (pcc_rule->qos.gbr.downlink == 0)
1008
+ pcc_rule->qos.gbr.downlink = pcc_rule->qos.mbr.downlink;
1009
+ if (pcc_rule->qos.gbr.uplink == 0)
1010
+ pcc_rule->qos.gbr.uplink = pcc_rule->qos.mbr.uplink;
1011
+
1012
+ return OGS_OK;
1013
+}
1014
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/proto/types.h
Added
781
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_PROTO_INSIDE) && !defined(OGS_PROTO_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_PROTO_TYPES_H
26
+#define OGS_PROTO_TYPES_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif /* __cplusplus */
31
+
32
+#define OGS_MAX_NUM_OF_SESS 4 /* Num of APN(Session) per UE */
33
+#define OGS_MAX_NUM_OF_BEARER 4 /* Num of Bearer per Session */
34
+#define OGS_BEARER_PER_UE 8 /* Num of Bearer per UE */
35
+#define OGS_MAX_NUM_OF_PACKET_BUFFER 64 /* Num of PacketBuffer per UE */
36
+
37
+/* Num of NF Service per NF Instance */
38
+#define OGS_MAX_NUM_OF_NF_SERVICE 16
39
+
40
+/*
41
+ * The array of TLV messages is limited to 8.
42
+ * So, Flow(PDI.SDF_Filter) in PDR is limited to 8.
43
+ *
44
+ * However, the number of flow in bearer context seems to need more than 16.
45
+ *
46
+ * Therefore, the maximum number of flows of messages is defined as 8,
47
+ * and the maximum number of flows stored by the context is 16.
48
+ */
49
+#define OGS_MAX_NUM_OF_FLOW_IN_PDR 8
50
+#define OGS_MAX_NUM_OF_FLOW_IN_GTP OGS_MAX_NUM_OF_FLOW_IN_PDR
51
+#define OGS_MAX_NUM_OF_FLOW_IN_NAS OGS_MAX_NUM_OF_FLOW_IN_PDR
52
+#define OGS_MAX_NUM_OF_FLOW_IN_PCC_RULE OGS_MAX_NUM_OF_FLOW_IN_PDR
53
+#define OGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT OGS_MAX_NUM_OF_FLOW_IN_PDR
54
+#define OGS_MAX_NUM_OF_FLOW_IN_BEARER 16
55
+
56
+#define OGS_MAX_NUM_OF_GTPU_RESOURCE 4
57
+
58
+#define OGS_MAX_SDU_LEN 8192
59
+#define OGS_MAX_PKT_LEN 2048
60
+#define OGS_PLMN_ID_LEN 3
61
+#define OGS_MAX_PLMN_ID_BCD_LEN 6
62
+
63
+#define OGS_CHRGCHARS_LEN 2
64
+
65
+#define OGS_BCD_TO_BUFFER_LEN(x) (((x)+1)/2)
66
+#define OGS_MAX_IMSI_BCD_LEN 15
67
+#define OGS_MAX_IMSI_LEN \
68
+ OGS_BCD_TO_BUFFER_LEN(OGS_MAX_IMSI_BCD_LEN)
69
+
70
+#define OGS_MAX_IMEISV_BCD_LEN 16
71
+#define OGS_MAX_IMEISV_LEN \
72
+ OGS_BCD_TO_BUFFER_LEN(OGS_MAX_IMEISV_BCD_LEN)
73
+
74
+#define OGS_MAX_MSISDN_BCD_LEN 15
75
+#define OGS_MAX_MSISDN_LEN \
76
+ OGS_BCD_TO_BUFFER_LEN(OGS_MAX_MSISDN_BCD_LEN)
77
+
78
+#define OGS_MAX_NUM_OF_CELL_ID 16
79
+#define OGS_MAX_NUM_OF_ENB_ID 16
80
+#define OGS_MAX_NUM_OF_DNN 16
81
+#define OGS_MAX_NUM_OF_APN OGS_MAX_NUM_OF_DNN
82
+#define OGS_MAX_NUM_OF_HOSTNAME 16
83
+#define OGS_MAX_DNN_LEN 100
84
+#define OGS_MAX_APN_LEN OGS_MAX_DNN_LEN
85
+#define OGS_MAX_PCO_LEN 251
86
+#define OGS_MAX_FQDN_LEN 256
87
+
88
+#define OGS_MAX_NUM_OF_SERVED_TAI 16
89
+#define OGS_MAX_NUM_OF_ALGORITHM 8
90
+
91
+#define OGS_MAX_NUM_OF_BPLMN 6
92
+
93
+#define OGS_NEXT_ID(__id, __min, __max) \
94
+ ((__id) = ((__id) == (__max) ? (__min) : ((__id) + 1)))
95
+#define OGS_COMPARE_ID(__id1, __id2, __max) \
96
+ ((__id2) > (__id1) ? ((__id2) - (__id1) < ((__max)-1) ? -1 : 1) : \
97
+ (__id1) > (__id2) ? ((__id1) - (__id2) < ((__max)-1) ? 1 : -1) : 0)
98
+
99
+#define OGS_TIME_TO_BCD(x) \
100
+ (((((x) % 10) << 4) & 0xf0) | (((x) / 10) & 0x0f))
101
+
102
+#define OGS_NAS_PROCEDURE_TRANSACTION_IDENTITY_UNASSIGNED 0
103
+#define OGS_NAS_PDU_SESSION_IDENTITY_UNASSIGNED 0
104
+
105
+#define OGS_ACCESS_TYPE_3GPP 1
106
+#define OGS_ACCESS_TYPE_NON_3GPP 2
107
+#define OGS_ACCESS_TYPE_BOTH_3GPP_AND_NON_3GPP 3
108
+
109
+#define OGS_MAX_QOS_FLOW_ID 63
110
+
111
+/************************************
112
+ * PLMN_ID Structure */
113
+#define OGS_MAX_NUM_OF_PLMN 6
114
+typedef struct ogs_plmn_id_s {
115
+ED2(uint8_t mcc2:4;,
116
+ uint8_t mcc1:4;)
117
+ED2(uint8_t mnc1:4;,
118
+ uint8_t mcc3:4;)
119
+ED2(uint8_t mnc3:4;,
120
+ uint8_t mnc2:4;)
121
+} __attribute__ ((packed)) ogs_plmn_id_t;
122
+
123
+uint32_t ogs_plmn_id_hexdump(void *plmn_id);
124
+
125
+uint16_t ogs_plmn_id_mcc(ogs_plmn_id_t *plmn_id);
126
+uint16_t ogs_plmn_id_mnc(ogs_plmn_id_t *plmn_id);
127
+uint16_t ogs_plmn_id_mnc_len(ogs_plmn_id_t *plmn_id);
128
+
129
+void *ogs_plmn_id_build(ogs_plmn_id_t *plmn_id,
130
+ uint16_t mcc, uint16_t mnc, uint16_t mnc_len);
131
+
132
+char *ogs_serving_network_name_from_plmn_id(ogs_plmn_id_t *plmn_id);
133
+char *ogs_plmn_id_mcc_string(ogs_plmn_id_t *plmn_id);
134
+char *ogs_plmn_id_mnc_string(ogs_plmn_id_t *plmn_id);
135
+
136
+#define OGS_PLMNIDSTRLEN (sizeof(ogs_plmn_id_t)*2+1)
137
+char *ogs_plmn_id_to_string(ogs_plmn_id_t *plmn_id, char *buf);
138
+
139
+/*************************
140
+ * NAS PLMN_ID Structure */
141
+typedef struct ogs_nas_plmn_id_s {
142
+ED2(uint8_t mcc2:4;,
143
+ uint8_t mcc1:4;)
144
+ED2(uint8_t mnc3:4;,
145
+ uint8_t mcc3:4;)
146
+ED2(uint8_t mnc2:4;,
147
+ uint8_t mnc1:4;)
148
+} __attribute__ ((packed)) ogs_nas_plmn_id_t;
149
+
150
+void *ogs_nas_from_plmn_id(
151
+ ogs_nas_plmn_id_t *ogs_nas_plmn_id, ogs_plmn_id_t *plmn_id);
152
+void *ogs_nas_to_plmn_id(
153
+ ogs_plmn_id_t *plmn_id, ogs_nas_plmn_id_t *ogs_nas_plmn_id);
154
+
155
+/************************************
156
+ * AMF_ID Structure */
157
+typedef struct ogs_amf_id_s {
158
+ uint8_t region;
159
+ uint8_t set1;
160
+ED2(uint8_t set2:2;,
161
+ uint8_t pointer:6;)
162
+} __attribute__ ((packed)) ogs_amf_id_t;
163
+
164
+typedef struct ogs_guami_s {
165
+ ogs_plmn_id_t plmn_id;
166
+ ogs_amf_id_t amf_id;
167
+} ogs_guami_t;
168
+
169
+uint32_t ogs_amf_id_hexdump(ogs_amf_id_t *amf_id);
170
+
171
+ogs_amf_id_t *ogs_amf_id_from_string(ogs_amf_id_t *amf_id, const char *hex);
172
+char *ogs_amf_id_to_string(ogs_amf_id_t *amf_id);
173
+
174
+uint8_t ogs_amf_region_id(ogs_amf_id_t *amf_id);
175
+uint16_t ogs_amf_set_id(ogs_amf_id_t *amf_id);
176
+uint8_t ogs_amf_pointer(ogs_amf_id_t *amf_id);
177
+
178
+ogs_amf_id_t *ogs_amf_id_build(ogs_amf_id_t *amf_id,
179
+ uint8_t region, uint16_t set, uint8_t pointer);
180
+
181
+/************************************
182
+ * SUPI/SUCI */
183
+char *ogs_supi_from_suci(char *suci);
184
+
185
+/************************************
186
+ * SUPI/GPSI */
187
+#define OGS_ID_SUPI_TYPE_IMSI "imsi"
188
+#define OGS_ID_GPSI_TYPE_MSISDN "msisdn"
189
+char *ogs_id_get_type(char *str);
190
+char *ogs_id_get_value(char *str);
191
+
192
+/************************************
193
+ * TAI Structure */
194
+#define OGS_MAX_NUM_OF_TAI 16
195
+typedef struct ogs_eps_tai_s {
196
+ ogs_plmn_id_t plmn_id;
197
+ uint16_t tac;
198
+} __attribute__ ((packed)) ogs_eps_tai_t;
199
+
200
+typedef struct ogs_5gs_tai_s {
201
+ ogs_plmn_id_t plmn_id;
202
+ ogs_uint24_t tac;
203
+} __attribute__ ((packed)) ogs_5gs_tai_t;
204
+
205
+typedef struct ogs_e_cgi_s {
206
+ ogs_plmn_id_t plmn_id;
207
+ uint32_t cell_id; /* 28 bit */
208
+} __attribute__ ((packed)) ogs_e_cgi_t;
209
+
210
+typedef struct ogs_nr_cgi_s {
211
+ ogs_plmn_id_t plmn_id;
212
+ uint64_t cell_id; /* 36 bit */
213
+} __attribute__ ((packed)) ogs_nr_cgi_t;
214
+
215
+/************************************
216
+ * S-NSSAI Structure */
217
+#define OGS_MAX_NUM_OF_SLICE 8
218
+#define OGS_S_NSSAI_NO_SD_VALUE 0xffffff
219
+typedef struct ogs_s_nssai_s {
220
+ uint8_t sst;
221
+ ogs_uint24_t sd;
222
+} __attribute__ ((packed)) ogs_s_nssai_t;
223
+
224
+char *ogs_s_nssai_sd_to_string(ogs_uint24_t sd);
225
+ogs_uint24_t ogs_s_nssai_sd_from_string(const char *hex);
226
+
227
+/**************************************************
228
+ * Common Structure
229
+ * S1AP : 9.2.2.1 Transport Layer Address, See 36.414
230
+ * GTP : 8.22 Fully Qualified TEID (F-TEID) */
231
+#define OGS_IPV4_LEN 4
232
+#define OGS_IPV6_LEN 16
233
+#define OGS_IPV6_DEFAULT_PREFIX_LEN 64
234
+#define OGS_IPV6_128_PREFIX_LEN 128
235
+#define OGS_IPV4V6_LEN 20
236
+typedef struct ogs_ip_s {
237
+ uint32_t addr;
238
+ uint8_t addr6OGS_IPV6_LEN;
239
+ uint32_t len;
240
+ED3(uint8_t ipv4:1;,
241
+ uint8_t ipv6:1;,
242
+ uint8_t reserved:6;)
243
+} ogs_ip_t;
244
+
245
+int ogs_ip_to_sockaddr(ogs_ip_t *ip, uint16_t port, ogs_sockaddr_t **list);
246
+int ogs_sockaddr_to_ip(
247
+ ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6, ogs_ip_t *ip);
248
+
249
+char *ogs_ipv4_to_string(uint32_t addr);
250
+char *ogs_ipv6addr_to_string(uint8_t *addr6);
251
+char *ogs_ipv6prefix_to_string(uint8_t *addr6, uint8_t prefixlen);
252
+int ogs_ipv4_from_string(uint32_t *addr, char *string);
253
+int ogs_ipv6addr_from_string(uint8_t *addr6, char *string);
254
+int ogs_ipv6prefix_from_string(
255
+ uint8_t *addr6, uint8_t *prefixlen, char *string);
256
+
257
+/**************************************************
258
+ * GTPv1-C: TS 29.060 7.7.27 End User Address (EUA) */
259
+#define OGS_PDP_EUA_ORG_ETSI 0
260
+#define OGS_PDP_EUA_ORG_IETF 1
261
+#define OGS_PDP_EUA_ETSI_PPP 1
262
+#define OGS_PDP_EUA_IETF_IPV4 0x21
263
+#define OGS_PDP_EUA_IETF_IPV6 0x57
264
+#define OGS_PDP_EUA_IETF_IPV4V6 0x8D
265
+typedef struct ogs_eua_s {
266
+ED2(uint8_t spare:4;,
267
+ uint8_t organization:4;)
268
+ uint8_t type;
269
+ union {
270
+ /* PDU_SESSION_TYPE_IPV4 */
271
+ uint32_t addr;
272
+
273
+ /* PDU_SESSION_TYPE_IPV6 */
274
+ uint8_t addr6OGS_IPV6_LEN;
275
+
276
+ /* PDU_SESSION_TYPE_IPV4V6 */
277
+ struct {
278
+ uint32_t addr;
279
+ uint8_t addr6OGS_IPV6_LEN;
280
+ } __attribute__ ((packed)) both;
281
+ };
282
+} __attribute__ ((packed)) ogs_eua_t;
283
+
284
+/**************************************************
285
+ * GTPv2-C: TS 29.274 8.14 PDN Address Allocation (PAA) */
286
+#define OGS_PAA_IPV4_LEN 5
287
+#define OGS_PAA_IPV6_LEN 18
288
+#define OGS_PAA_IPV4V6_LEN 22
289
+typedef struct ogs_paa_s {
290
+ED2(uint8_t spare:5;,
291
+/* 8.34 PDN Type */
292
+#define OGS_PDU_SESSION_TYPE_IS_VALID(x) \
293
+ ((x) == OGS_PDU_SESSION_TYPE_IPV4 || \
294
+ (x) == OGS_PDU_SESSION_TYPE_IPV6 || \
295
+ (x) == OGS_PDU_SESSION_TYPE_IPV4V6) \
296
+
297
+ uint8_t session_type:3;)
298
+ union {
299
+ /* PDU_SESSION_TYPE_IPV4 */
300
+ uint32_t addr;
301
+
302
+ /* PDU_SESSION_TYPE_IPV6 */
303
+ struct {
304
+ /* the IPv6 Prefix Length */
305
+ uint8_t len;
306
+ /* IPv6 Prefix and Interface Identifier */
307
+ uint8_t addr6OGS_IPV6_LEN;
308
+ };
309
+
310
+ /* PDU_SESSION_TYPE_IPV4V6 */
311
+ struct {
312
+ struct {
313
+ /* the IPv6 Prefix Length */
314
+ uint8_t len;
315
+ /* IPv6 Prefix and Interface Identifier */
316
+ uint8_t addr6OGS_IPV6_LEN;
317
+ };
318
+ uint32_t addr;
319
+ } __attribute__ ((packed)) both;
320
+ };
321
+} __attribute__ ((packed)) ogs_paa_t;
322
+
323
+#define MAX_BIT_RATE 10000000000UL
324
+
325
+typedef struct ogs_bitrate_s {
326
+ uint64_t downlink; /* bits per seconds */
327
+ uint64_t uplink; /* bits per seconds */
328
+} ogs_bitrate_t;
329
+
330
+/**********************************
331
+ * QoS Structure */
332
+typedef struct ogs_qos_s {
333
+#define OGS_QOS_INDEX_1 1
334
+#define OGS_QOS_INDEX_2 2
335
+#define OGS_QOS_INDEX_5 5
336
+ uint8_t index;
337
+
338
+ struct {
339
+ /* Values 1 to 8 should only be assigned for services that are
340
+ * authorized to receive prioritized treatment within an operator domain.
341
+ * Values 9 to 15 may be assigned to resources that are authorized
342
+ * by the home network and thus applicable when a UE is roaming. */
343
+ uint8_t priority_level;
344
+/*
345
+ * Ch 7.3.40 Allocation-Retenion-Proirty in TS 29.272 V15.9.0
346
+ *
347
+ * If the Pre-emption-Capability AVP is not present in the
348
+ * Allocation-Retention-Priority AVP, the default value shall be
349
+ * PRE-EMPTION_CAPABILITY_DISABLED (1).
350
+ *
351
+ * If the Pre-emption-Vulnerability AVP is not present in the
352
+ * Allocation-Retention-Priority AVP, the default value shall be
353
+ * PRE-EMPTION_VULNERABILITY_ENABLED (0).
354
+ *
355
+ * However, to easily set up VoLTE service,
356
+ * enable Pre-emption Capability/Vulnerablility
357
+ * in Default Bearer
358
+ */
359
+#define OGS_EPC_PRE_EMPTION_DISABLED 1
360
+#define OGS_EPC_PRE_EMPTION_ENABLED 0
361
+
362
+#define OGS_5GC_PRE_EMPTION_DISABLED 1
363
+#define OGS_5GC_PRE_EMPTION_ENABLED 2
364
+ uint8_t pre_emption_capability;
365
+ uint8_t pre_emption_vulnerability;
366
+ } arp;
367
+
368
+ ogs_bitrate_t mbr; /* Maxmimum Bit Rate (MBR) */
369
+ ogs_bitrate_t gbr; /* Guaranteed Bit Rate (GBR) */
370
+} ogs_qos_t;
371
+
372
+/**********************************
373
+ * Flow Structure */
374
+#define OGS_FLOW_DOWNLINK_ONLY 1
375
+#define OGS_FLOW_UPLINK_ONLY 2
376
+typedef struct ogs_flow_s {
377
+ uint8_t direction;
378
+ char *description;
379
+} ogs_flow_t;
380
+
381
+#define OGS_FLOW_FREE(__fLOW) \
382
+ do { \
383
+ if ((__fLOW)->description) { \
384
+ ogs_free((__fLOW)->description); \
385
+ } \
386
+ else \
387
+ ogs_assert_if_reached(); \
388
+ } while(0)
389
+
390
+/**********************************
391
+ * PCC Rule Structure */
392
+typedef struct ogs_pcc_rule_s {
393
+#define OGS_PCC_RULE_TYPE_INSTALL 1
394
+#define OGS_PCC_RULE_TYPE_REMOVE 2
395
+ uint8_t type;
396
+
397
+ char *id; /* 5GC */
398
+ char *name; /* EPC */
399
+
400
+ ogs_flow_t flowOGS_MAX_NUM_OF_FLOW_IN_PCC_RULE;
401
+ int num_of_flow;
402
+
403
+ int flow_status;
404
+ uint32_t precedence;
405
+
406
+ ogs_qos_t qos;
407
+} ogs_pcc_rule_t;
408
+
409
+#define OGS_STORE_PCC_RULE(__dST, __sRC) \
410
+ do { \
411
+ int __iNDEX; \
412
+ ogs_assert((__sRC)); \
413
+ ogs_assert((__dST)); \
414
+ OGS_PCC_RULE_FREE(__dST); \
415
+ (__dST)->type = (__sRC)->type; \
416
+ if ((__sRC)->name) { \
417
+ (__dST)->name = ogs_strdup((__sRC)->name); \
418
+ ogs_assert((__dST)->name); \
419
+ } \
420
+ if ((__sRC)->id) { \
421
+ (__dST)->id = ogs_strdup((__sRC)->id); \
422
+ ogs_assert((__dST)->id); \
423
+ } \
424
+ for (__iNDEX = 0; __iNDEX < (__sRC)->num_of_flow; __iNDEX++) { \
425
+ (__dST)->flow__iNDEX.direction = \
426
+ (__sRC)->flow__iNDEX.direction; \
427
+ (__dST)->flow__iNDEX.description = \
428
+ ogs_strdup((__sRC)->flow__iNDEX.description); \
429
+ ogs_assert((__dST)->flow__iNDEX.description); \
430
+ } \
431
+ (__dST)->num_of_flow = (__sRC)->num_of_flow; \
432
+ (__dST)->flow_status = (__sRC)->flow_status; \
433
+ (__dST)->precedence = (__sRC)->precedence; \
434
+ memcpy(&(__dST)->qos, &(__sRC)->qos, sizeof(ogs_qos_t)); \
435
+ } while(0)
436
+
437
+#define OGS_PCC_RULE_FREE(__pCCrULE) \
438
+ do { \
439
+ int __pCCrULE_iNDEX; \
440
+ ogs_assert((__pCCrULE)); \
441
+ if ((__pCCrULE)->id) \
442
+ ogs_free((__pCCrULE)->id); \
443
+ if ((__pCCrULE)->name) \
444
+ ogs_free((__pCCrULE)->name); \
445
+ for (__pCCrULE_iNDEX = 0; \
446
+ __pCCrULE_iNDEX < (__pCCrULE)->num_of_flow; __pCCrULE_iNDEX++) { \
447
+ OGS_FLOW_FREE(&((__pCCrULE)->flow__pCCrULE_iNDEX)); \
448
+ } \
449
+ (__pCCrULE)->num_of_flow = 0; \
450
+ } while(0)
451
+
452
+/**********************************
453
+ * PDN Structure */
454
+typedef struct ogs_session_s {
455
+ char *name;
456
+
457
+ uint32_t context_identifier; /* EPC */
458
+ bool default_dnn_indicator; /* 5GC */
459
+
460
+ uint8_t charging_characteristicsOGS_CHRGCHARS_LEN;
461
+ bool charging_characteristics_presence;
462
+
463
+#define OGS_PDU_SESSION_TYPE_IPV4 1
464
+#define OGS_PDU_SESSION_TYPE_IPV6 2
465
+#define OGS_PDU_SESSION_TYPE_IPV4V6 3
466
+#define OGS_PDU_SESSION_TYPE_UNSTRUCTURED 4
467
+#define OGS_PDU_SESSION_TYPE_ETHERNET 5
468
+
469
+#define OGS_PDU_SESSION_TYPE_TO_DIAMETER(x) ((x)-1)
470
+#define OGS_PDU_SESSION_TYPE_FROM_DIAMETER(x) ((x)+1)
471
+ uint8_t session_type;
472
+
473
+#define OGS_SSC_MODE_1 1
474
+#define OGS_SSC_MODE_2 2
475
+#define OGS_SSC_MODE_3 3
476
+ uint8_t ssc_mode;
477
+
478
+ ogs_qos_t qos;
479
+ ogs_bitrate_t ambr; /* APN-AMBR */
480
+
481
+ ogs_paa_t paa;
482
+ ogs_ip_t ue_ip;
483
+ ogs_ip_t smf_ip;
484
+} ogs_session_t;
485
+
486
+int ogs_fqdn_build(char *dst, char *src, int len);
487
+int ogs_fqdn_parse(char *dst, char *src, int len);
488
+
489
+/**************************************************
490
+ * Protocol Configuration Options Structure
491
+ * 8.13 Protocol Configuration Options (PCO)
492
+ * 10.5.6.3 Protocol configuration options in 3GPP TS 24.008
493
+ * RFC 3232 103
494
+ * RFC 1661 102 */
495
+#define OGS_PCO_PPP_FOR_USE_WITH_IP_PDP_TYPE_OR_IP_PDN_TYPE 0
496
+
497
+#define OGS_PCO_ID_INTERNET_PROTOCOL_CONTROL_PROTOCOL 0x8021
498
+#define OGS_PCO_ID_PASSWORD_AUTHENTICATION_PROTOCOL 0xc023
499
+#define OGS_PCO_ID_CHALLENGE_HANDSHAKE_AUTHENTICATION_PROTOCOL 0xc223
500
+#define OGS_PCO_ID_P_CSCF_IPV6_ADDRESS_REQUEST 0x0001
501
+#define OGS_PCO_ID_DNS_SERVER_IPV6_ADDRESS_REQUEST 0x0003
502
+#define OGS_PCO_ID_MS_SUPPORTS_BCM 0x0005
503
+#define OGS_PCO_ID_IP_ADDRESS_ALLOCATION_VIA_NAS_SIGNALLING 0x000a
504
+#define OGS_PCO_ID_P_CSCF_IPV4_ADDRESS_REQUEST 0x000c
505
+#define OGS_PCO_ID_DNS_SERVER_IPV4_ADDRESS_REQUEST 0x000d
506
+#define OGS_PCO_ID_IPV4_LINK_MTU_REQUEST 0x0010
507
+#define OGS_PCO_ID_MS_SUPPORT_LOCAL_ADDR_TFT_INDICATOR 0x0011
508
+#define OGS_PCO_ID_P_CSCF_RE_SELECTION_SUPPORT 0x0012
509
+
510
+enum ogs_pco_ipcp_options {
511
+ OGS_IPCP_OPT_IPADDR = 3,
512
+ OGS_IPCP_OPT_PRIMARY_DNS = 129,
513
+ OGS_IPCP_OPT_SECONDARY_DNS = 131,
514
+};
515
+
516
+typedef struct ogs_pco_ipcp_options_s {
517
+ uint8_t type;
518
+ uint8_t len;
519
+ uint32_t addr;
520
+} __attribute__ ((packed)) ogs_pco_ipcp_options_t;
521
+
522
+#define OGS_PCO_MAX_NUM_OF_IPCP_OPTIONS 4
523
+typedef struct ogs_pco_ipcp_s {
524
+ uint8_t code;
525
+ uint8_t identifier;
526
+ uint16_t len;
527
+ ogs_pco_ipcp_options_t optionsOGS_PCO_MAX_NUM_OF_IPCP_OPTIONS;
528
+} __attribute__ ((packed)) ogs_pco_ipcp_t;
529
+
530
+typedef struct ogs_pco_pap_s {
531
+ uint8_t code;
532
+ uint8_t identifier;
533
+ uint16_t len;
534
+ uint8_t welcome_len;
535
+ char welcome255;
536
+} __attribute__ ((packed)) ogs_pco_pap_t;
537
+
538
+typedef struct ogs_pco_chap_s {
539
+ uint8_t code;
540
+ uint8_t identifier;
541
+ uint16_t len;
542
+} __attribute__ ((packed)) ogs_pco_chap_t;
543
+
544
+typedef struct ogs_pco_id_s {
545
+ uint16_t id;
546
+ uint8_t len;
547
+ void *data;
548
+} ogs_pco_id_t;
549
+
550
+#define OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID 16
551
+typedef struct ogs_pco_s {
552
+ED3(uint8_t ext:1;,
553
+ uint8_t spare:4;,
554
+ uint8_t configuration_protocol:3;)
555
+ uint8_t num_of_id;
556
+ ogs_pco_id_t idsOGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID;
557
+} ogs_pco_t;
558
+
559
+int ogs_pco_parse(ogs_pco_t *pco, unsigned char *data, int data_len);
560
+int ogs_pco_build(unsigned char *data, int data_len, ogs_pco_t *pco);
561
+
562
+/*
563
+ * PFCP Specification
564
+ *
565
+ * TS29.244, Ch 8.2.82 User Plane IP Resource Information
566
+ *
567
+ * The following flags are coded within Octet 5:
568
+ * - Bit 1 – V4: If this bit is set to "1", then the IPv4 address field
569
+ * shall be present, otherwise the IPv4 address field shall not be present.
570
+ * - Bit 2 – V6: If this bit is set to "1", then the IPv6 address field
571
+ * shall be present, otherwise the IPv6 address field shall not be present.
572
+ * - Bit 3-5 – TEID Range Indication (TEIDRI): the value of this field
573
+ * indicates the number of bits in the most significant octet of a TEID
574
+ * that are used to partition the TEID range,
575
+ * e.g. if this field is set to "4", then the first 4 bits in the TEID
576
+ * are used to partition the TEID range.
577
+ * - Bit 6 – Associated Network Instance (ASSONI): if this bit is set to "1",
578
+ * then the Network Instance field shall be present, otherwise the Network
579
+ * Instance field shall not be present.
580
+ * - Bit 7 – Associated Source Interface (ASSOSI): if this bit is set to "1",
581
+ * then the Source Interface field shall be present,
582
+ * otherwise the Source Interface field shall not be present.
583
+ * - Bit 8: Spare, for future use and set to 0.
584
+ *
585
+ * At least one of the V4 and V6 flags shall be set to "1",
586
+ * and both may be set to "1".
587
+ *
588
+ * If both the ASSONI and ASSOSI flags are set to "0", this shall indicate
589
+ * that the User Plane IP Resource Information provided can be used
590
+ * by CP function for any Network Instance and any Source Interface
591
+ * of GTP-U user plane in the UP function. Octet 6 (TEID Range) shall be
592
+ * present if the TEID Range Indication is not set to zero and
593
+ * shall contain a value of the bits which are used to partition the TEID range.
594
+ * E.g. if the TEID Range Indication is set to "4", then Octet 6 shall be
595
+ * one of values between 0 and 15. When TEID Range Indication is set to zero,
596
+ * the Octet 6 shall not be present, the TEID is not partitioned,
597
+ * i.e. all TEID values are available for use by the CP function.
598
+ *
599
+ * Octets "m to (m+3)" and/or "p to (p+15)" (IPv4 address / IPv6 address fields)
600
+ * , if present, shall contain the respective IP address values.
601
+ *
602
+ * Octets "k to l", if present, shall contain a Network Instance value
603
+ * as encoded in octet "5 to n+4" of the Figure 8.2.4-1 in clause 8.2.4,
604
+ * identifying a Network Instance with which the IP address or TEID Range
605
+ * is associated.
606
+ *
607
+ * Octet r, if present, shall contain a Source Interface value as encoded
608
+ * in octet 5 of the Figure 8.2.2-1 in clause 8.2.2,
609
+ * identifying the Source Interface with which the IP address or TEID Range
610
+ * is associated.
611
+ */
612
+
613
+/* Flags(1) + TEID Range(1) + IPV4(4) + IPV6(16) + Source Interface(1) = 23 */
614
+#define OGS_MAX_USER_PLANE_IP_RESOURCE_INFO_LEN \
615
+ (23 + (OGS_MAX_APN_LEN+1))
616
+typedef struct ogs_user_plane_ip_resource_info_s {
617
+ union {
618
+ struct {
619
+ED6(uint8_t spare:1;,
620
+ uint8_t assosi:1;,
621
+ uint8_t assoni:1;,
622
+ uint8_t teidri:3;,
623
+ uint8_t v6:1;,
624
+ uint8_t v4:1;)
625
+ };
626
+ uint8_t flags;
627
+ };
628
+
629
+ /*
630
+ * OGS_PFCP-GTPU-TEID = INDEX | TEID_RANGE
631
+ * INDEX = OGS_PFCP-GTPU-TEID & ~TEID_RANGE
632
+ */
633
+#define OGS_PFCP_GTPU_TEID_TO_INDEX(__tEID, __iND, __rANGE) \
634
+ (__tEID & ~(__rANGE << (32 - __iND)))
635
+#define OGS_PFCP_GTPU_INDEX_TO_TEID(__iNDEX, __iND, __rANGE) \
636
+ (__iNDEX | (__rANGE << (32 - __iND)))
637
+ uint8_t teid_range;
638
+ uint32_t addr;
639
+ uint8_t addr6OGS_IPV6_LEN;
640
+ char network_instanceOGS_MAX_APN_LEN+1;
641
+ uint8_t source_interface;
642
+} __attribute__ ((packed)) ogs_user_plane_ip_resource_info_t;
643
+
644
+int ogs_sockaddr_to_user_plane_ip_resource_info(
645
+ ogs_sockaddr_t *addr, ogs_sockaddr_t *addr6,
646
+ ogs_user_plane_ip_resource_info_t *info);
647
+int ogs_user_plane_ip_resource_info_to_sockaddr(
648
+ ogs_user_plane_ip_resource_info_t *info,
649
+ ogs_sockaddr_t **addr, ogs_sockaddr_t **addr6);
650
+
651
+typedef struct ogs_slice_data_s {
652
+ ogs_s_nssai_t s_nssai;
653
+ bool default_indicator;
654
+
655
+ uint32_t context_identifier; /* EPC for checking default APN */
656
+
657
+ int num_of_session;
658
+ ogs_session_t sessionOGS_MAX_NUM_OF_SESS;
659
+} ogs_slice_data_t;
660
+
661
+ogs_slice_data_t *ogs_slice_find_by_s_nssai(
662
+ ogs_slice_data_t *slice_data, int num_of_slice_data,
663
+ ogs_s_nssai_t *s_nssai);
664
+
665
+typedef struct ogs_subscription_data_s {
666
+#define OGS_ACCESS_RESTRICTION_UTRAN_NOT_ALLOWED (1)
667
+#define OGS_ACCESS_RESTRICTION_GERAN_NOT_ALLOWED (1<<1)
668
+#define OGS_ACCESS_RESTRICTION_GAN_NOT_ALLOWED (1<<2)
669
+#define OGS_ACCESS_RESTRICTION_I_HSPA_EVOLUTION_NOT_ALLOWED (1<<3)
670
+#define OGS_ACCESS_RESTRICTION_WB_E_UTRAN_NOT_ALLOWED (1<<4)
671
+#define OGS_ACCESS_RESTRICTION_HO_TO_NON_3GPP_ACCESS_NOT_ALLOWED (1<<5)
672
+#define OGS_ACCESS_RESTRICTION_NB_IOT_NOT_ALLOWED (1<<6)
673
+ uint32_t access_restriction_data;
674
+#define OGS_SUBSCRIBER_STATUS_SERVICE_GRANTED 0
675
+#define OGS_SUBSCRIBER_STATUS_OPERATOR_DETERMINED_BARRING 1
676
+ uint32_t subscriber_status;
677
+#define OGS_NETWORK_ACCESS_MODE_PACKET_AND_CIRCUIT 0
678
+#define OGS_NETWORK_ACCESS_MODE_RESERVED 1
679
+#define OGS_NETWORK_ACCESS_MODE_ONLY_PACKET 2
680
+ uint32_t network_access_mode;
681
+
682
+ ogs_bitrate_t ambr; /* UE-AMBR */
683
+
684
+#define OGS_RAU_TAU_DEFAULT_TIME (12*60) /* 12 min */
685
+ uint32_t subscribed_rau_tau_timer; /* unit : seconds */
686
+
687
+ int num_of_slice;
688
+ ogs_slice_data_t sliceOGS_MAX_NUM_OF_SLICE;
689
+
690
+#define OGS_MAX_NUM_OF_MSISDN 2
691
+ int num_of_msisdn;
692
+ struct {
693
+ uint8_t bufOGS_MAX_MSISDN_LEN;
694
+ int len;
695
+ char bcdOGS_MAX_MSISDN_BCD_LEN+1;
696
+ } msisdnOGS_MAX_NUM_OF_MSISDN;
697
+} ogs_subscription_data_t;
698
+
699
+void ogs_subscription_data_free(ogs_subscription_data_t *subscription_data);
700
+
701
+typedef struct ogs_session_data_s {
702
+ ogs_session_t session;
703
+#define OGS_MAX_NUM_OF_PCC_RULE 8 /* Num of PCC Rule */
704
+ ogs_pcc_rule_t pcc_ruleOGS_MAX_NUM_OF_PCC_RULE;
705
+ int num_of_pcc_rule;
706
+} ogs_session_data_t;
707
+
708
+void ogs_session_data_free(ogs_session_data_t *session_data);
709
+
710
+typedef struct ogs_media_sub_component_s {
711
+ uint32_t flow_number;
712
+/*
713
+ * TS29.214
714
+ * 5.3.12 Flow-Usage AVP
715
+ * NO_INFORMATION(0)
716
+ * RTCP(1)
717
+ * AF_SIGNALLING(2)
718
+ *
719
+ * TS29.514
720
+ * 5.6.3.14 Enumeration: FlowUsage
721
+ * NO_INFO : 1
722
+ * RTCP : 2
723
+ * AF_SIGNALLING : 3
724
+ *
725
+ * EPC and 5GC have different values for FlowUsage
726
+ * At this point, we will use the 5GC value.
727
+ */
728
+#define OGS_FLOW_USAGE_NO_INFO 1
729
+#define OGS_FLOW_USAGE_RTCP 2
730
+#define OGS_FLOW_USAGE_AF_SIGNALLING 3
731
+ uint32_t flow_usage;
732
+ ogs_flow_t flowOGS_MAX_NUM_OF_FLOW_IN_MEDIA_SUB_COMPONENT;
733
+ int num_of_flow;
734
+} ogs_media_sub_component_t;
735
+
736
+typedef struct ogs_media_component_s {
737
+ uint32_t media_component_number;
738
+ uint32_t media_type;
739
+
740
+ uint64_t max_requested_bandwidth_dl;
741
+ uint64_t max_requested_bandwidth_ul;
742
+ uint64_t min_requested_bandwidth_dl;
743
+ uint64_t min_requested_bandwidth_ul;
744
+ uint64_t rr_bandwidth;
745
+ uint64_t rs_bandwidth;
746
+
747
+ int flow_status;
748
+
749
+#define OGS_MAX_NUM_OF_MEDIA_SUB_COMPONENT 8
750
+ ogs_media_sub_component_t subOGS_MAX_NUM_OF_MEDIA_SUB_COMPONENT;
751
+ int num_of_sub;
752
+} ogs_media_component_t;
753
+
754
+typedef struct ogs_ims_data_s {
755
+ int num_of_msisdn;
756
+ struct {
757
+ uint8_t bufOGS_MAX_MSISDN_LEN;
758
+ int len;
759
+ char bcdOGS_MAX_MSISDN_BCD_LEN+1;
760
+ } msisdnOGS_MAX_NUM_OF_MSISDN;
761
+
762
+#define OGS_MAX_NUM_OF_MEDIA_COMPONENT 16
763
+ ogs_media_component_t media_componentOGS_MAX_NUM_OF_MEDIA_COMPONENT;
764
+ int num_of_media_component;
765
+} ogs_ims_data_t;
766
+
767
+void ogs_ims_data_free(ogs_ims_data_t *ims_data);
768
+
769
+int ogs_pcc_rule_num_of_flow_equal_to_media(
770
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
771
+int ogs_pcc_rule_install_flow_from_media(
772
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
773
+int ogs_pcc_rule_update_qos_from_media(
774
+ ogs_pcc_rule_t *pcc_rule, ogs_media_component_t *media_component);
775
+
776
+#ifdef __cplusplus
777
+}
778
+#endif
779
+
780
+#endif /* OGS_PROTO_TYPES_H */
781
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/client.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/client.c
Changed
52
1
2
ogs_assert(client);
3
memset(client, 0, sizeof(ogs_sbi_client_t));
4
5
- client->reference_count++;
6
- ogs_trace("ogs_sbi_client_add()");
7
+ ogs_debug("ogs_sbi_client_add()");
8
+ OGS_OBJECT_REF(client);
9
10
ogs_assert(OGS_OK == ogs_copyaddrinfo(&client->node.addr, addr));
11
12
13
curl_multi_setopt(multi, CURLMOPT_SOCKETDATA, client);
14
curl_multi_setopt(multi, CURLMOPT_TIMERFUNCTION, multi_timer_cb);
15
curl_multi_setopt(multi, CURLMOPT_TIMERDATA, client);
16
+#ifdef CURLMOPT_MAX_CONCURRENT_STREAMS
17
curl_multi_setopt(multi, CURLMOPT_MAX_CONCURRENT_STREAMS,
18
ogs_app()->pool.stream);
19
+#endif
20
21
ogs_list_add(&ogs_sbi_self()->client_list, client);
22
23
24
25
void ogs_sbi_client_remove(ogs_sbi_client_t *client)
26
{
27
+ ogs_sockaddr_t *addr = NULL;
28
+ char bufOGS_ADDRSTRLEN;
29
+
30
ogs_assert(client);
31
32
- /* ogs_sbi_client_t is always created with reference context */
33
- ogs_assert(client->reference_count > 0);
34
+ addr = client->node.addr;
35
+ ogs_assert(addr);
36
+ ogs_debug("ogs_sbi_client_remove() %s:%d",
37
+ OGS_ADDR(addr, buf), OGS_PORT(addr));
38
39
- ogs_trace("client->reference_count = %d", client->reference_count);
40
- client->reference_count--;
41
- if (client->reference_count > 0)
42
+ /* ogs_sbi_client_t is always created with reference context */
43
+ if (OGS_OBJECT_IS_REF(client)) {
44
+ OGS_OBJECT_UNREF(client);
45
return;
46
+ }
47
48
- ogs_trace("ogs_sbi_client_remove()");
49
ogs_list_remove(&ogs_sbi_self()->client_list, client);
50
51
connection_remove_all(client);
52
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/client.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/client.h
Changed
13
1
2
ogs_sbi_client_remove(client); \
3
} \
4
\
5
- (__pClient)->reference_count++; \
6
+ OGS_OBJECT_REF(__pClient); \
7
((__cTX)->client) = (__pClient); \
8
- ogs_trace("client->reference_count = %d", \
9
- (__pClient)->reference_count); \
10
} while(0)
11
12
typedef int (*ogs_sbi_client_cb_f)(
13
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/context.c
Changed
185
1
2
* along with this program. If not, see <https://www.gnu.org/licenses/>.
3
*/
4
5
-#include "app/ogs-app.h"
6
+#include "ogs-app.h"
7
#include "ogs-sbi.h"
8
9
int __ogs_sbi_domain;
10
11
return OGS_OK;
12
}
13
14
+void ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_e nf_type)
15
+{
16
+ ogs_assert(nf_type);
17
+
18
+ if (self.num_of_to_be_notified_nf_type < OGS_SBI_MAX_NUM_OF_NF_TYPE) {
19
+ self.to_be_notified_nf_typeself.num_of_to_be_notified_nf_type = nf_type;
20
+ self.num_of_to_be_notified_nf_type++;
21
+ }
22
+}
23
+
24
bool ogs_sbi_nf_service_is_available(const char *name)
25
{
26
int i;
27
28
ogs_assert(nf_instance);
29
memset(nf_instance, 0, sizeof(ogs_sbi_nf_instance_t));
30
31
- nf_instance->reference_count++;
32
- ogs_trace("ogs_sbi_nf_instance_add()");
33
+ ogs_debug("ogs_sbi_nf_instance_add()");
34
+
35
+ OGS_OBJECT_REF(nf_instance);
36
37
nf_instance->time.heartbeat_interval =
38
ogs_app()->time.nf_instance.heartbeat_interval;
39
40
ogs_assert(allowed_nf_type);
41
42
if (nf_instance->num_of_allowed_nf_type < OGS_SBI_MAX_NUM_OF_NF_TYPE) {
43
- nf_instance->allowed_nf_typesnf_instance->num_of_allowed_nf_type =
44
+ nf_instance->allowed_nf_typenf_instance->num_of_allowed_nf_type =
45
allowed_nf_type;
46
nf_instance->num_of_allowed_nf_type++;
47
}
48
49
{
50
ogs_assert(nf_instance);
51
52
- ogs_trace("nf_instance->reference_count = %d",
53
- nf_instance->reference_count);
54
- nf_instance->reference_count--;
55
- if (nf_instance->reference_count > 0)
56
+ ogs_debug("ogs_sbi_nf_instance_remove()");
57
+
58
+ if (OGS_OBJECT_IS_REF(nf_instance)) {
59
+ OGS_OBJECT_UNREF(nf_instance);
60
return;
61
+ }
62
63
- ogs_trace("ogs_sbi_nf_instance_remove()");
64
ogs_list_remove(&ogs_sbi_self()->nf_instance_list, nf_instance);
65
66
ogs_sbi_nf_info_remove_all(&nf_instance->nf_info_list);
67
68
ogs_assert(full);
69
70
if (nf_service->num_of_version < OGS_SBI_MAX_NUM_OF_SERVICE_VERSION) {
71
- nf_service->versionsnf_service->num_of_version.in_uri =
72
+ nf_service->versionnf_service->num_of_version.in_uri =
73
ogs_strdup(in_uri);
74
- ogs_assert(nf_service->versionsnf_service->num_of_version.in_uri);
75
- nf_service->versionsnf_service->num_of_version.full =
76
+ ogs_assert(nf_service->versionnf_service->num_of_version.in_uri);
77
+ nf_service->versionnf_service->num_of_version.full =
78
ogs_strdup(full);
79
- ogs_assert(nf_service->versionsnf_service->num_of_version.full);
80
+ ogs_assert(nf_service->versionnf_service->num_of_version.full);
81
if (expiry) {
82
- nf_service->versionsnf_service->num_of_version.expiry =
83
+ nf_service->versionnf_service->num_of_version.expiry =
84
ogs_strdup(expiry);
85
ogs_assert(
86
- nf_service->versionsnf_service->num_of_version.expiry);
87
+ nf_service->versionnf_service->num_of_version.expiry);
88
89
}
90
nf_service->num_of_version++;
91
92
ogs_free(nf_service->fqdn);
93
94
for (i = 0; i < nf_service->num_of_version; i++) {
95
- if (nf_service->versionsi.in_uri)
96
- ogs_free(nf_service->versionsi.in_uri);
97
- if (nf_service->versionsi.full)
98
- ogs_free(nf_service->versionsi.full);
99
- if (nf_service->versionsi.expiry)
100
- ogs_free(nf_service->versionsi.expiry);
101
+ if (nf_service->versioni.in_uri)
102
+ ogs_free(nf_service->versioni.in_uri);
103
+ if (nf_service->versioni.full)
104
+ ogs_free(nf_service->versioni.full);
105
+ if (nf_service->versioni.expiry)
106
+ ogs_free(nf_service->versioni.expiry);
107
}
108
nf_service->num_of_version = 0;
109
110
111
ogs_sbi_discovery_option_t *discovery_option)
112
{
113
ogs_assert(nf_instance);
114
- ogs_assert(ogs_sbi_self()->nf_state_registered);
115
ogs_assert(target_nf_type);
116
117
- if (!OGS_FSM_CHECK(&nf_instance->sm,
118
- ogs_sbi_self()->nf_state_registered)) return false;
119
+ if (!OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_registered))
120
+ return false;
121
122
- if (nf_instance->nf_type != target_nf_type) return false;
123
+ if (nf_instance->nf_type != target_nf_type)
124
+ return false;
125
126
if (discovery_option) {
127
if (discovery_option->target_nf_instance_id &&
128
129
{
130
ogs_sbi_nf_instance_t *nf_instance = NULL;
131
132
- ogs_assert(ogs_sbi_self()->nf_state_registered);
133
ogs_assert(sbi_object);
134
ogs_assert(target_nf_type);
135
136
137
}
138
}
139
140
-bool ogs_sbi_client_associate(ogs_sbi_nf_instance_t *nf_instance)
141
+void ogs_sbi_client_associate(ogs_sbi_nf_instance_t *nf_instance)
142
{
143
ogs_sbi_client_t *client = NULL;
144
145
ogs_assert(nf_instance);
146
147
client = nf_instance_find_client(nf_instance);
148
- if (!client) return false;
149
+ ogs_assert(client);
150
151
OGS_SBI_SETUP_CLIENT(nf_instance, client);
152
153
nf_service_associate_client_all(nf_instance);
154
-
155
- return true;
156
}
157
158
OpenAPI_uri_scheme_e ogs_sbi_default_uri_scheme(void)
159
160
ogs_assert(nf_service->name);
161
if (strcmp(nf_service->name, name) == 0) {
162
for (i = 0; i < nf_service->num_of_version; i++) {
163
- if (strcmp(nf_service->versionsi.in_uri, version) == 0) {
164
+ if (strcmp(nf_service->versioni.in_uri, version) == 0) {
165
return nf_service->client;
166
}
167
}
168
169
{
170
ogs_sbi_xact_t *xact = NULL;
171
172
- ogs_assert(ogs_sbi_self()->client_wait_expire);
173
ogs_assert(sbi_object);
174
175
ogs_pool_alloc(&xact_pool, &xact);
176
177
}
178
179
xact->t_response = ogs_timer_add(
180
- ogs_app()->timer_mgr, ogs_sbi_self()->client_wait_expire, xact);
181
+ ogs_app()->timer_mgr, ogs_timer_sbi_client_wait_expire, xact);
182
if (!xact->t_response) {
183
ogs_error("ogs_timer_add() failed");
184
ogs_sbi_request_free(xact->request);
185
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/context.h
Changed
85
1
2
3
const char *content_encoding;
4
5
- void (*client_wait_expire)(void *data);
6
- ogs_fsm_handler_t nf_state_registered;
7
-
8
int num_of_service_name;
9
const char *service_nameOGS_MAX_NUM_OF_NF_SERVICE;
10
+
11
+#define OGS_SBI_MAX_NUM_OF_NF_TYPE 16
12
+ int num_of_to_be_notified_nf_type;
13
+ OpenAPI_nf_type_e to_be_notified_nf_typeOGS_SBI_MAX_NUM_OF_NF_TYPE;
14
} ogs_sbi_context_t;
15
16
typedef struct ogs_sbi_nf_instance_s {
17
18
ogs_timer_t *t_no_heartbeat; /* check heartbeat */
19
ogs_timer_t *t_validity; /* check validation */
20
21
-#define NF_INSTANCE_IS_SELF(_iD) \
22
+#define NF_INSTANCE_ID_IS_SELF(_iD) \
23
(_iD) && ogs_sbi_self()->nf_instance && \
24
strcmp((_iD), ogs_sbi_self()->nf_instance->id) == 0
25
-#define NF_INSTANCE_IS_OTHERS(_iD) \
26
+#define NF_INSTANCE_ID_IS_OTHERS(_iD) \
27
(_iD) && ogs_sbi_self()->nf_instance && \
28
strcmp((_iD), ogs_sbi_self()->nf_instance->id) != 0
29
30
-#define NF_INSTANCE_IS_NRF(__nFInstance) \
31
+#define NF_INSTANCE_TYPE_IS_NRF(__nFInstance) \
32
((__nFInstance->nf_type) == OpenAPI_nf_type_NRF)
33
34
char *id; /* NFInstanceId */
35
36
int num_of_ipv6;
37
ogs_sockaddr_t *ipv6OGS_SBI_MAX_NUM_OF_IP_ADDRESS;
38
39
-#define OGS_SBI_MAX_NUM_OF_NF_TYPE 16
40
int num_of_allowed_nf_type;
41
- OpenAPI_nf_type_e allowed_nf_typesOGS_SBI_MAX_NUM_OF_NF_TYPE;
42
+ OpenAPI_nf_type_e allowed_nf_typeOGS_SBI_MAX_NUM_OF_NF_TYPE;
43
44
#define OGS_SBI_DEFAULT_PRIORITY 0
45
#define OGS_SBI_DEFAULT_CAPACITY 100
46
47
char *in_uri;
48
char *full;
49
char *expiry;
50
- } versionsOGS_SBI_MAX_NUM_OF_SERVICE_VERSION;
51
+ } versionOGS_SBI_MAX_NUM_OF_SERVICE_VERSION;
52
53
char *fqdn;
54
int num_of_addr;
55
56
int ogs_sbi_context_parse_config(
57
const char *local, const char *nrf, const char *scp);
58
59
+void ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_e nf_type);
60
+
61
bool ogs_sbi_nf_service_is_available(const char *name);
62
63
ogs_sbi_nf_instance_t *ogs_sbi_scp_instance(void);
64
65
ogs_sbi_client_t *ogs_sbi_client_find_by_service_name(
66
ogs_sbi_nf_instance_t *nf_instance, char *name, char *version);
67
68
-bool ogs_sbi_client_associate(ogs_sbi_nf_instance_t *nf_instance);
69
+void ogs_sbi_client_associate(ogs_sbi_nf_instance_t *nf_instance);
70
71
OpenAPI_uri_scheme_e ogs_sbi_default_uri_scheme(void);
72
73
74
OGS_SBI_NF_INSTANCE((__sBIObject), (__nFType))); \
75
} \
76
\
77
- (__nFInstance)->reference_count++; \
78
+ OGS_OBJECT_REF(__nFInstance); \
79
OGS_SBI_NF_INSTANCE((__sBIObject), (__nFType)) = (__nFInstance); \
80
- ogs_trace("nf_instance->reference_count = %d", \
81
- (__nFInstance)->reference_count); \
82
} while(0)
83
84
bool ogs_sbi_discovery_param_is_matched(
85
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/meson.build
Changed
40
1
2
3
yuarel.c
4
conv.c
5
+ timer.c
6
message.c
7
8
mhd-server.c
9
10
11
nnrf-build.c
12
nnrf-handler.c
13
-
14
+
15
path.c
16
+ nf-sm.c
17
'''.split())
18
19
libsbi_inc = include_directories('.')
20
21
version : libogslib_version,
22
c_args : sbi_cc_flags,
23
include_directories : libsbi_inc, libinc,
24
- dependencies : libcore_dep,
25
- libcrypt_dep,
26
+ dependencies : libcrypt_dep,
27
libapp_dep,
28
libsbi_openapi_dep,
29
libgnutls_dep,
30
31
libsbi_dep = declare_dependency(
32
link_with : libsbi,
33
include_directories : libsbi_inc, libinc,
34
- dependencies : libcore_dep,
35
- libcrypt_dep,
36
+ dependencies : libcrypt_dep,
37
libapp_dep,
38
libsbi_openapi_dep,
39
libgnutls_dep,
40
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nf-sm.c
Added
466
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-app.h"
22
+#include "ogs-sbi.h"
23
+
24
+void ogs_sbi_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance)
25
+{
26
+ ogs_event_t e;
27
+
28
+ ogs_assert(nf_instance);
29
+
30
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
31
+ } else if (NF_INSTANCE_ID_IS_OTHERS(nf_instance->id)) {
32
+ } else {
33
+ ogs_fatal("FSM is available in NRF or OTHERS");
34
+ ogs_assert_if_reached();
35
+ }
36
+
37
+ memset(&e, 0, sizeof(e));
38
+ e.sbi.data = nf_instance;
39
+
40
+ ogs_fsm_init(&nf_instance->sm,
41
+ ogs_sbi_nf_state_initial, ogs_sbi_nf_state_final, &e);
42
+}
43
+
44
+void ogs_sbi_nf_fsm_tran(ogs_sbi_nf_instance_t *nf_instance, void *state)
45
+{
46
+ ogs_event_t e;
47
+
48
+ ogs_assert(nf_instance);
49
+
50
+ memset(&e, 0, sizeof(e));
51
+ e.sbi.data = nf_instance;
52
+
53
+ ogs_fsm_tran(&nf_instance->sm, state, &e);
54
+}
55
+
56
+void ogs_sbi_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
57
+{
58
+ ogs_event_t e;
59
+
60
+ ogs_assert(nf_instance);
61
+
62
+ memset(&e, 0, sizeof(e));
63
+ e.sbi.data = nf_instance;
64
+
65
+ ogs_fsm_fini(&nf_instance->sm, &e);
66
+}
67
+
68
+void ogs_sbi_nf_state_initial(ogs_fsm_t *s, ogs_event_t *e)
69
+{
70
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
71
+
72
+ ogs_assert(s);
73
+ ogs_assert(e);
74
+
75
+ ogs_sbi_sm_debug(e);
76
+
77
+ nf_instance = e->sbi.data;
78
+ ogs_assert(nf_instance);
79
+
80
+ nf_instance->t_registration_interval = ogs_timer_add(ogs_app()->timer_mgr,
81
+ ogs_timer_nf_instance_registration_interval, nf_instance);
82
+ ogs_assert(nf_instance->t_registration_interval);
83
+ nf_instance->t_heartbeat_interval = ogs_timer_add(ogs_app()->timer_mgr,
84
+ ogs_timer_nf_instance_heartbeat_interval, nf_instance);
85
+ ogs_assert(nf_instance->t_heartbeat_interval);
86
+ nf_instance->t_no_heartbeat = ogs_timer_add(ogs_app()->timer_mgr,
87
+ ogs_timer_nf_instance_no_heartbeat, nf_instance);
88
+ ogs_assert(nf_instance->t_no_heartbeat);
89
+ nf_instance->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
90
+ ogs_timer_nf_instance_validity, nf_instance);
91
+ ogs_assert(nf_instance->t_validity);
92
+
93
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
94
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_will_register);
95
+ } else {
96
+ ogs_assert(nf_instance->id);
97
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_registered);
98
+ }
99
+}
100
+
101
+void ogs_sbi_nf_state_final(ogs_fsm_t *s, ogs_event_t *e)
102
+{
103
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
104
+
105
+ ogs_assert(s);
106
+ ogs_assert(e);
107
+
108
+ ogs_sbi_sm_debug(e);
109
+
110
+ nf_instance = e->sbi.data;
111
+ ogs_assert(nf_instance);
112
+
113
+ ogs_timer_delete(nf_instance->t_registration_interval);
114
+ ogs_timer_delete(nf_instance->t_heartbeat_interval);
115
+ ogs_timer_delete(nf_instance->t_no_heartbeat);
116
+ ogs_timer_delete(nf_instance->t_validity);
117
+}
118
+
119
+void ogs_sbi_nf_state_will_register(ogs_fsm_t *s, ogs_event_t *e)
120
+{
121
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
122
+ ogs_sbi_client_t *client = NULL;
123
+ ogs_sbi_message_t *message = NULL;
124
+ ogs_sockaddr_t *addr = NULL;
125
+
126
+ ogs_assert(s);
127
+ ogs_assert(e);
128
+
129
+ ogs_sbi_sm_debug(e);
130
+
131
+ nf_instance = e->sbi.data;
132
+ ogs_assert(nf_instance);
133
+ ogs_assert(ogs_sbi_self()->nf_instance);
134
+ ogs_assert(NF_INSTANCE_TYPE_IS_NRF(nf_instance));
135
+
136
+ switch (e->id) {
137
+ case OGS_FSM_ENTRY_SIG:
138
+ ogs_timer_start(nf_instance->t_registration_interval,
139
+ ogs_app()->time.message.sbi.nf_register_interval);
140
+
141
+ ogs_assert(true == ogs_nnrf_nfm_send_nf_register(nf_instance));
142
+ break;
143
+
144
+ case OGS_FSM_EXIT_SIG:
145
+ ogs_timer_stop(nf_instance->t_registration_interval);
146
+ break;
147
+
148
+ case OGS_EVENT_SBI_CLIENT:
149
+ message = e->sbi.message;
150
+ ogs_assert(message);
151
+
152
+ SWITCH(message->h.service.name)
153
+ CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
154
+
155
+ SWITCH(message->h.resource.component0)
156
+ CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
157
+
158
+ if (message->res_status == OGS_SBI_HTTP_STATUS_OK ||
159
+ message->res_status == OGS_SBI_HTTP_STATUS_CREATED) {
160
+ ogs_sbi_nnrf_handle_nf_register(nf_instance, message);
161
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_registered);
162
+ } else {
163
+ ogs_error("%s HTTP Response Status Code %d",
164
+ ogs_sbi_self()->nf_instance->id,
165
+ message->res_status);
166
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_exception);
167
+ }
168
+ break;
169
+
170
+ DEFAULT
171
+ ogs_error("%s Invalid resource name %s",
172
+ ogs_sbi_self()->nf_instance->id,
173
+ message->h.resource.component0);
174
+ END
175
+ break;
176
+
177
+ DEFAULT
178
+ ogs_error("%s Invalid API name %s",
179
+ ogs_sbi_self()->nf_instance->id, message->h.service.name);
180
+ END
181
+ break;
182
+
183
+ case OGS_EVENT_SBI_TIMER:
184
+ switch(e->timer_id) {
185
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
186
+ client = nf_instance->client;
187
+ ogs_assert(client);
188
+ addr = client->node.addr;
189
+ ogs_assert(addr);
190
+
191
+ ogs_warn("%s Retry to registration with NRF",
192
+ ogs_sbi_self()->nf_instance->id);
193
+
194
+ ogs_timer_start(nf_instance->t_registration_interval,
195
+ ogs_app()->time.message.sbi.nf_register_interval);
196
+
197
+ ogs_assert(true == ogs_nnrf_nfm_send_nf_register(nf_instance));
198
+ break;
199
+
200
+ default:
201
+ ogs_error("%s Unknown timer%s:%d",
202
+ ogs_sbi_self()->nf_instance->id,
203
+ ogs_timer_get_name(e->timer_id), e->timer_id);
204
+ }
205
+ break;
206
+
207
+ default:
208
+ ogs_error("Unknown event %s", ogs_event_get_name(e));
209
+ break;
210
+ }
211
+}
212
+
213
+void ogs_sbi_nf_state_registered(ogs_fsm_t *s, ogs_event_t *e)
214
+{
215
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
216
+ ogs_sbi_client_t *client = NULL;
217
+ ogs_sbi_message_t *message = NULL;
218
+ ogs_assert(s);
219
+ ogs_assert(e);
220
+
221
+ ogs_sbi_sm_debug(e);
222
+
223
+ nf_instance = e->sbi.data;
224
+ ogs_assert(nf_instance);
225
+ ogs_assert(ogs_sbi_self()->nf_instance);
226
+
227
+ switch (e->id) {
228
+ case OGS_FSM_ENTRY_SIG:
229
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
230
+ int i;
231
+
232
+ ogs_info("%s NF registered Heartbeat:%ds",
233
+ ogs_sbi_self()->nf_instance->id,
234
+ nf_instance->time.heartbeat_interval);
235
+
236
+ client = nf_instance->client;
237
+ ogs_assert(client);
238
+
239
+ if (nf_instance->time.heartbeat_interval) {
240
+ ogs_timer_start(nf_instance->t_heartbeat_interval,
241
+ ogs_time_from_sec(nf_instance->time.heartbeat_interval));
242
+ ogs_timer_start(nf_instance->t_no_heartbeat,
243
+ ogs_time_from_sec(
244
+ nf_instance->time.heartbeat_interval +
245
+ ogs_app()->time.nf_instance.no_heartbeat_margin));
246
+ }
247
+
248
+ for (i = 0;
249
+ i < ogs_sbi_self()->num_of_to_be_notified_nf_type; i++) {
250
+ ogs_assert(true ==
251
+ ogs_nnrf_nfm_send_nf_status_subscribe(client,
252
+ ogs_sbi_self()->nf_instance->nf_type,
253
+ ogs_sbi_self()->nf_instance->id,
254
+ ogs_sbi_self()->to_be_notified_nf_typei));
255
+ }
256
+ }
257
+ break;
258
+
259
+ case OGS_FSM_EXIT_SIG:
260
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
261
+ ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
262
+
263
+ if (nf_instance->time.heartbeat_interval) {
264
+ ogs_timer_stop(nf_instance->t_heartbeat_interval);
265
+ ogs_timer_stop(nf_instance->t_no_heartbeat);
266
+ }
267
+
268
+ if (!OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception)) {
269
+ ogs_assert(true ==
270
+ ogs_nnrf_nfm_send_nf_de_register(nf_instance));
271
+ }
272
+ }
273
+ break;
274
+
275
+ case OGS_EVENT_SBI_CLIENT:
276
+ message = e->sbi.message;
277
+ ogs_assert(message);
278
+
279
+ SWITCH(message->h.service.name)
280
+ CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
281
+
282
+ SWITCH(message->h.resource.component0)
283
+ CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
284
+
285
+ if (message->res_status == OGS_SBI_HTTP_STATUS_NO_CONTENT ||
286
+ message->res_status == OGS_SBI_HTTP_STATUS_OK) {
287
+ if (nf_instance->time.heartbeat_interval)
288
+ ogs_timer_start(nf_instance->t_no_heartbeat,
289
+ ogs_time_from_sec(
290
+ nf_instance->time.heartbeat_interval +
291
+ ogs_app()->time.nf_instance.
292
+ no_heartbeat_margin));
293
+ } else {
294
+ ogs_warn("%s HTTP response error %d",
295
+ ogs_sbi_self()->nf_instance->id,
296
+ message->res_status);
297
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_exception);
298
+ }
299
+
300
+ break;
301
+
302
+ DEFAULT
303
+ ogs_error("%s Invalid resource name %s",
304
+ ogs_sbi_self()->nf_instance->id,
305
+ message->h.resource.component0);
306
+ END
307
+ break;
308
+
309
+ DEFAULT
310
+ ogs_error("%s Invalid API name %s",
311
+ ogs_sbi_self()->nf_instance->id, message->h.service.name);
312
+ END
313
+ break;
314
+
315
+ case OGS_EVENT_SBI_TIMER:
316
+ switch(e->timer_id) {
317
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
318
+ if (nf_instance->time.heartbeat_interval)
319
+ ogs_timer_start(nf_instance->t_heartbeat_interval,
320
+ ogs_time_from_sec(nf_instance->time.heartbeat_interval));
321
+
322
+ ogs_assert(true == ogs_nnrf_nfm_send_nf_update(nf_instance));
323
+ break;
324
+
325
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
326
+ ogs_error("%s No heartbeat", ogs_sbi_self()->nf_instance->id);
327
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_will_register);
328
+ break;
329
+
330
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
331
+ ogs_assert(!NF_INSTANCE_TYPE_IS_NRF(nf_instance));
332
+ ogs_assert(nf_instance->id);
333
+
334
+ ogs_info("%s NF expired", nf_instance->id);
335
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_de_registered);
336
+ break;
337
+
338
+ default:
339
+ ogs_error("%s:%s Unknown timer%s:%d",
340
+ OpenAPI_nf_type_ToString(nf_instance->nf_type),
341
+ nf_instance->id ? nf_instance->id : "Undefined",
342
+ ogs_timer_get_name(e->timer_id), e->timer_id);
343
+ }
344
+ break;
345
+
346
+ default:
347
+ ogs_error("%s:%s Unknown event %s",
348
+ OpenAPI_nf_type_ToString(nf_instance->nf_type),
349
+ nf_instance->id ? nf_instance->id : "Undefined",
350
+ ogs_event_get_name(e));
351
+ break;
352
+ }
353
+}
354
+
355
+void ogs_sbi_nf_state_de_registered(ogs_fsm_t *s, ogs_event_t *e)
356
+{
357
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
358
+ ogs_assert(s);
359
+ ogs_assert(e);
360
+
361
+ ogs_sbi_sm_debug(e);
362
+
363
+ nf_instance = e->sbi.data;
364
+ ogs_assert(nf_instance);
365
+ ogs_assert(ogs_sbi_self()->nf_instance);
366
+
367
+ switch (e->id) {
368
+ case OGS_FSM_ENTRY_SIG:
369
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
370
+ ogs_info("%s NF de-registered", ogs_sbi_self()->nf_instance->id);
371
+ }
372
+ break;
373
+
374
+ case OGS_FSM_EXIT_SIG:
375
+ break;
376
+
377
+ default:
378
+ ogs_error("%s:%s Unknown event %s",
379
+ OpenAPI_nf_type_ToString(nf_instance->nf_type),
380
+ nf_instance->id ? nf_instance->id : "Undefined",
381
+ ogs_event_get_name(e));
382
+ break;
383
+ }
384
+}
385
+
386
+void ogs_sbi_nf_state_exception(ogs_fsm_t *s, ogs_event_t *e)
387
+{
388
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
389
+ ogs_sbi_client_t *client = NULL;
390
+ ogs_sbi_message_t *message = NULL;
391
+ ogs_sockaddr_t *addr = NULL;
392
+ ogs_assert(s);
393
+ ogs_assert(e);
394
+
395
+ ogs_sbi_sm_debug(e);
396
+
397
+ nf_instance = e->sbi.data;
398
+ ogs_assert(nf_instance);
399
+ ogs_assert(ogs_sbi_self()->nf_instance);
400
+
401
+ switch (e->id) {
402
+ case OGS_FSM_ENTRY_SIG:
403
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
404
+ ogs_timer_start(nf_instance->t_registration_interval,
405
+ ogs_app()->time.message.sbi.
406
+ nf_register_interval_in_exception);
407
+ }
408
+ break;
409
+
410
+ case OGS_FSM_EXIT_SIG:
411
+ if (NF_INSTANCE_TYPE_IS_NRF(nf_instance)) {
412
+ ogs_timer_stop(nf_instance->t_registration_interval);
413
+ }
414
+ break;
415
+
416
+ case OGS_EVENT_SBI_TIMER:
417
+ switch(e->timer_id) {
418
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
419
+ client = nf_instance->client;
420
+ ogs_assert(client);
421
+ addr = client->node.addr;
422
+ ogs_assert(addr);
423
+
424
+ ogs_warn("%s Retry to registration with NRF",
425
+ ogs_sbi_self()->nf_instance->id);
426
+
427
+ OGS_FSM_TRAN(s, &ogs_sbi_nf_state_will_register);
428
+ break;
429
+
430
+ default:
431
+ ogs_error("%s:%s Unknown timer%s:%d",
432
+ OpenAPI_nf_type_ToString(nf_instance->nf_type),
433
+ nf_instance->id ? nf_instance->id : "Undefined",
434
+ ogs_timer_get_name(e->timer_id), e->timer_id);
435
+ }
436
+ break;
437
+
438
+ case OGS_EVENT_SBI_CLIENT:
439
+ message = e->sbi.message;
440
+ ogs_assert(message);
441
+
442
+ SWITCH(message->h.service.name)
443
+ CASE(OGS_SBI_SERVICE_NAME_NNRF_NFM)
444
+
445
+ SWITCH(message->h.resource.component0)
446
+ CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
447
+ break;
448
+ DEFAULT
449
+ ogs_error("Invalid resource name %s",
450
+ message->h.resource.component0);
451
+ END
452
+ break;
453
+ DEFAULT
454
+ ogs_error("Invalid API name %s", message->h.service.name);
455
+ END
456
+ break;
457
+
458
+ default:
459
+ ogs_error("%s:%s Unknown event %s",
460
+ OpenAPI_nf_type_ToString(nf_instance->nf_type),
461
+ nf_instance->id ? nf_instance->id : "Undefined",
462
+ ogs_event_get_name(e));
463
+ break;
464
+ }
465
+}
466
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nf-sm.h
Added
51
1
2
+/*
3
+ * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_SBI_INSIDE) && !defined(OGS_SBI_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_SBI_NF_SM_H
26
+#define OGS_SBI_NF_SM_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif
31
+
32
+void ogs_sbi_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
33
+void ogs_sbi_nf_fsm_tran(ogs_sbi_nf_instance_t *nf_instance, void *state);
34
+void ogs_sbi_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
35
+
36
+void ogs_sbi_nf_state_initial(ogs_fsm_t *s, ogs_event_t *e);
37
+void ogs_sbi_nf_state_final(ogs_fsm_t *s, ogs_event_t *e);
38
+void ogs_sbi_nf_state_will_register(ogs_fsm_t *s, ogs_event_t *e);
39
+void ogs_sbi_nf_state_registered(ogs_fsm_t *s, ogs_event_t *e);
40
+void ogs_sbi_nf_state_de_registered(ogs_fsm_t *s, ogs_event_t *e);
41
+void ogs_sbi_nf_state_exception(ogs_fsm_t *s, ogs_event_t *e);
42
+
43
+#define ogs_sbi_sm_debug(__e) \
44
+ ogs_debug("%s(): %s", __func__, ogs_event_get_name(__e))
45
+
46
+#ifdef __cplusplus
47
+}
48
+#endif
49
+
50
+#endif /* OGS_SBI_NF_SM_H */
51
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/nnrf-build.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nnrf-build.c
Changed
383
1
2
OpenAPI_list_t *NFServiceList = NULL;
3
4
int i = 0;
5
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
6
- int fqdn_len;
7
- char fqdnOGS_MAX_FQDN_LEN;
8
-#endif
9
-
10
char *ipstr = NULL;
11
12
nf_instance = ogs_sbi_self()->nf_instance;
13
14
NFProfile->is_nf_profile_changes_support_ind = true;
15
NFProfile->nf_profile_changes_support_ind = true;
16
17
- if (nf_instance->fqdn) {
18
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
19
- memset(fqdn, 0, sizeof(fqdn));
20
- fqdn_len = ogs_fqdn_build(fqdn,
21
- nf_instance->fqdn, strlen(nf_instance->fqdn));
22
- NFProfile->fqdn = ogs_memdup(fqdn, fqdn_len+1);
23
- ogs_expect_or_return_val(NFProfile->fqdn, NULL);
24
- NFProfile->fqdnfqdn_len = 0;
25
-
26
- ogs_debug("NFInstance-FQDN%s", nf_instance->fqdn);
27
- ogs_log_hexdump(OGS_LOG_DEBUG,
28
- (unsigned char *)NFProfile->fqdn, fqdn_len);
29
-#else
30
+ if (nf_instance->fqdn)
31
NFProfile->fqdn = ogs_strdup(nf_instance->fqdn);
32
-#endif
33
- }
34
35
NFProfile->is_priority = true;
36
NFProfile->priority = nf_instance->priority;
37
38
39
for (i = 0; i < nf_instance->num_of_allowed_nf_type; i++) {
40
OpenAPI_list_add(AllowedNfTypeList,
41
- (void *)(uintptr_t)nf_instance->allowed_nf_typesi);
42
+ (void *)(uintptr_t)nf_instance->allowed_nf_typei);
43
}
44
45
if (AllowedNfTypeList->count)
46
47
48
NFServiceVersion = ogs_calloc(1, sizeof(*NFServiceVersion));
49
ogs_expect_or_return_val(NFServiceVersion, NULL);
50
- if (nf_service->versionsi.in_uri) {
51
+ if (nf_service->versioni.in_uri) {
52
NFServiceVersion->api_version_in_uri =
53
- ogs_strdup(nf_service->versionsi.in_uri);
54
+ ogs_strdup(nf_service->versioni.in_uri);
55
ogs_expect_or_return_val(
56
NFServiceVersion->api_version_in_uri, NULL);
57
}
58
- if (nf_service->versionsi.full) {
59
+ if (nf_service->versioni.full) {
60
NFServiceVersion->api_full_version =
61
- ogs_strdup(nf_service->versionsi.full);
62
+ ogs_strdup(nf_service->versioni.full);
63
ogs_expect_or_return_val(
64
NFServiceVersion->api_full_version, NULL);
65
}
66
- if (nf_service->versionsi.expiry) {
67
+ if (nf_service->versioni.expiry) {
68
NFServiceVersion->expiry =
69
- ogs_strdup(nf_service->versionsi.expiry);
70
+ ogs_strdup(nf_service->versioni.expiry);
71
ogs_expect_or_return_val(
72
NFServiceVersion->expiry, NULL);
73
}
74
75
NFService->scheme = nf_service->scheme;
76
NFService->nf_service_status = nf_service->status;
77
78
- if (nf_service->fqdn) {
79
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
80
- memset(fqdn, 0, sizeof(fqdn));
81
- fqdn_len = ogs_fqdn_build(fqdn,
82
- nf_service->fqdn, strlen(nf_service->fqdn));
83
- NFService->fqdn = ogs_memdup(fqdn, fqdn_len+1);
84
- ogs_expect_or_return_val(NFService->fqdn, NULL);
85
- NFService->fqdnfqdn_len = 0;
86
-
87
- ogs_debug("NFService-FQDN%s", nf_service->fqdn);
88
- ogs_log_hexdump(OGS_LOG_DEBUG,
89
- (unsigned char *)NFService->fqdn, fqdn_len);
90
-#else
91
+ if (nf_service->fqdn)
92
NFService->fqdn = ogs_strdup(nf_service->fqdn);
93
-#endif
94
- }
95
96
IpEndPointList = OpenAPI_list_create();
97
ogs_assert(IpEndPointList);
98
99
ogs_free(NFProfile);
100
}
101
102
+ogs_sbi_request_t *ogs_nnrf_nfm_build_register(void)
103
+{
104
+ int i, j;
105
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
106
+ ogs_sbi_nf_info_t *nf_info = NULL;
107
+
108
+ ogs_sbi_message_t message;
109
+ ogs_sbi_request_t *request = NULL;
110
+
111
+ OpenAPI_nf_profile_t *NFProfile = NULL;
112
+
113
+ OpenAPI_list_t *SmfInfoList = NULL;
114
+ OpenAPI_map_t *SmfInfoMap = NULL;
115
+ OpenAPI_smf_info_t *SmfInfo = NULL;
116
+ int SmfInfoMapKey;
117
+
118
+ OpenAPI_list_t *sNssaiSmfInfoList = NULL;
119
+ OpenAPI_snssai_smf_info_item_t *sNssaiSmfInfoItem = NULL;
120
+ OpenAPI_snssai_t *sNssai = NULL;
121
+ OpenAPI_list_t *DnnSmfInfoList = NULL;
122
+ OpenAPI_dnn_smf_info_item_t *DnnSmfInfoItem = NULL;
123
+
124
+ OpenAPI_list_t *TaiList = NULL;
125
+ OpenAPI_tai_t *TaiItem = NULL;
126
+ OpenAPI_list_t *TaiRangeList = NULL;
127
+ OpenAPI_tai_range_t *TaiRangeItem = NULL;
128
+ OpenAPI_list_t *TacRangeList = NULL;
129
+ OpenAPI_tac_range_t *TacRangeItem = NULL;
130
+
131
+ OpenAPI_lnode_t *node = NULL, *node2 = NULL, *node3 = NULL;
132
+
133
+ nf_instance = ogs_sbi_self()->nf_instance;
134
+ ogs_assert(nf_instance);
135
+ ogs_assert(nf_instance->id);
136
+
137
+ memset(&message, 0, sizeof(message));
138
+ message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
139
+ message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
140
+ message.h.api.version = (char *)OGS_SBI_API_V1;
141
+ message.h.resource.component0 =
142
+ (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
143
+ message.h.resource.component1 = nf_instance->id;
144
+
145
+ message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
146
+
147
+ SmfInfoList = OpenAPI_list_create();
148
+ ogs_assert(SmfInfoList);
149
+
150
+ SmfInfoMapKey = 0;
151
+
152
+ ogs_list_for_each(&nf_instance->nf_info_list, nf_info) {
153
+ if (nf_info->nf_type == OpenAPI_nf_type_SMF) {
154
+
155
+ if (nf_info->smf.num_of_slice == 0) {
156
+ ogs_fatal("CHECK CONFIGURATION: No S-NSSAI");
157
+ ogs_assert_if_reached();
158
+ }
159
+
160
+ SmfInfo = ogs_calloc(1, sizeof(*SmfInfo));
161
+ ogs_expect_or_return_val(SmfInfo, NULL);
162
+
163
+ sNssaiSmfInfoList = OpenAPI_list_create();
164
+ ogs_assert(sNssaiSmfInfoList);
165
+
166
+ for (i = 0; i < nf_info->smf.num_of_slice; i++) {
167
+ DnnSmfInfoList = OpenAPI_list_create();
168
+ ogs_assert(DnnSmfInfoList);
169
+
170
+ for (j = 0; j < nf_info->smf.slicei.num_of_dnn; j++) {
171
+ DnnSmfInfoItem = ogs_calloc(1, sizeof(*DnnSmfInfoItem));
172
+ ogs_expect_or_return_val(DnnSmfInfoItem, NULL);
173
+ DnnSmfInfoItem->dnn = nf_info->smf.slicei.dnnj;
174
+
175
+ OpenAPI_list_add(DnnSmfInfoList, DnnSmfInfoItem);
176
+ }
177
+
178
+ if (!DnnSmfInfoList->count) {
179
+ OpenAPI_list_free(DnnSmfInfoList);
180
+
181
+ ogs_error("CHECK CONFIGURATION: No DNN");
182
+ ogs_expect_or_return_val(0, NULL);
183
+ }
184
+
185
+ sNssaiSmfInfoItem = ogs_calloc(1, sizeof(*sNssaiSmfInfoItem));
186
+ ogs_expect_or_return_val(sNssaiSmfInfoItem, NULL);
187
+
188
+ sNssaiSmfInfoItem->dnn_smf_info_list = DnnSmfInfoList;
189
+
190
+ sNssaiSmfInfoItem->s_nssai = sNssai =
191
+ ogs_calloc(1, sizeof(*sNssai));
192
+ ogs_expect_or_return_val(sNssai, NULL);
193
+ sNssai->sst = nf_info->smf.slicei.s_nssai.sst;
194
+ sNssai->sd =
195
+ ogs_s_nssai_sd_to_string(nf_info->smf.slicei.s_nssai.sd);
196
+
197
+ OpenAPI_list_add(sNssaiSmfInfoList, sNssaiSmfInfoItem);
198
+ }
199
+
200
+ if (sNssaiSmfInfoList->count)
201
+ SmfInfo->s_nssai_smf_info_list = sNssaiSmfInfoList;
202
+ else
203
+ OpenAPI_list_free(sNssaiSmfInfoList);
204
+
205
+ TaiList = OpenAPI_list_create();
206
+ ogs_assert(TaiList);
207
+
208
+ for (i = 0; i < nf_info->smf.num_of_nr_tai; i++) {
209
+ TaiItem = ogs_calloc(1, sizeof(*TaiItem));
210
+ ogs_expect_or_return_val(TaiItem, NULL);
211
+ TaiItem->plmn_id = ogs_sbi_build_plmn_id(
212
+ &nf_info->smf.nr_taii.plmn_id);
213
+ ogs_expect_or_return_val(TaiItem->plmn_id, NULL);
214
+ TaiItem->tac =
215
+ ogs_uint24_to_0string(nf_info->smf.nr_taii.tac);
216
+ ogs_expect_or_return_val(TaiItem->tac, NULL);
217
+
218
+ OpenAPI_list_add(TaiList, TaiItem);
219
+ }
220
+
221
+ if (TaiList->count)
222
+ SmfInfo->tai_list = TaiList;
223
+ else
224
+ OpenAPI_list_free(TaiList);
225
+
226
+ TaiRangeList = OpenAPI_list_create();
227
+ ogs_assert(TaiRangeList);
228
+
229
+ for (i = 0; i < nf_info->smf.num_of_nr_tai_range; i++) {
230
+ TacRangeList = OpenAPI_list_create();
231
+ ogs_assert(TacRangeList);
232
+
233
+ for (j = 0;
234
+ j < nf_info->smf.nr_tai_rangei.num_of_tac_range;
235
+ j++) {
236
+ TacRangeItem = ogs_calloc(1, sizeof(*TacRangeItem));
237
+ ogs_expect_or_return_val(TacRangeItem, NULL);
238
+
239
+ TacRangeItem->start = ogs_uint24_to_0string(
240
+ nf_info->smf.nr_tai_rangei.startj);
241
+ ogs_expect_or_return_val(TacRangeItem->start, NULL);
242
+ TacRangeItem->end =
243
+ ogs_uint24_to_0string(
244
+ nf_info->smf.nr_tai_rangei.endj);
245
+ ogs_expect_or_return_val(TacRangeItem->end, NULL);
246
+
247
+ OpenAPI_list_add(TacRangeList, TacRangeItem);
248
+ }
249
+
250
+ if (!TacRangeList->count) {
251
+ OpenAPI_list_free(TacRangeList);
252
+
253
+ ogs_error("CHECK CONFIGURATION: No Start/End in TacRange");
254
+ ogs_expect_or_return_val(0, NULL);
255
+ }
256
+
257
+ TaiRangeItem = ogs_calloc(1, sizeof(*TaiRangeItem));
258
+ ogs_expect_or_return_val(TaiRangeItem, NULL);
259
+
260
+ TaiRangeItem->plmn_id = ogs_sbi_build_plmn_id(
261
+ &nf_info->smf.nr_tai_rangei.plmn_id);
262
+ ogs_expect_or_return_val(TaiRangeItem->plmn_id, NULL);
263
+
264
+ TaiRangeItem->tac_range_list = TacRangeList;
265
+
266
+ OpenAPI_list_add(TaiRangeList, TaiRangeItem);
267
+ }
268
+
269
+ if (TaiRangeList->count)
270
+ SmfInfo->tai_range_list = TaiRangeList;
271
+ else
272
+ OpenAPI_list_free(TaiRangeList);
273
+
274
+ SmfInfoMap = OpenAPI_map_create(
275
+ ogs_msprintf("%d", ++SmfInfoMapKey), SmfInfo);
276
+ ogs_assert(SmfInfoMap);
277
+
278
+ OpenAPI_list_add(SmfInfoList, SmfInfoMap);
279
+
280
+ } else {
281
+ ogs_fatal("Not implemented NF-type%s",
282
+ OpenAPI_nf_type_ToString(nf_info->nf_type));
283
+ ogs_assert_if_reached();
284
+ }
285
+ }
286
+
287
+ NFProfile = ogs_nnrf_nfm_build_nf_profile();
288
+ ogs_expect_or_return_val(NFProfile, NULL);
289
+
290
+ if (SmfInfoList->count == 1) {
291
+ NFProfile->smf_info = SmfInfo;
292
+ } else if (SmfInfoList->count > 1) {
293
+ NFProfile->smf_info_list = SmfInfoList;
294
+ }
295
+
296
+ message.NFProfile = NFProfile;
297
+
298
+ request = ogs_sbi_build_request(&message);
299
+
300
+ ogs_sbi_nnrf_free_nf_profile(NFProfile);
301
+
302
+ OpenAPI_list_for_each(SmfInfoList, node) {
303
+ SmfInfoMap = node->data;
304
+ if (SmfInfoMap) {
305
+ SmfInfo = SmfInfoMap->value;
306
+ if (SmfInfo) {
307
+ sNssaiSmfInfoList = SmfInfo->s_nssai_smf_info_list;
308
+ OpenAPI_list_for_each(sNssaiSmfInfoList, node2) {
309
+ sNssaiSmfInfoItem = node2->data;
310
+ ogs_assert(sNssaiSmfInfoItem);
311
+
312
+ DnnSmfInfoList = sNssaiSmfInfoItem->dnn_smf_info_list;
313
+ OpenAPI_list_for_each(DnnSmfInfoList, node3) {
314
+ DnnSmfInfoItem = node3->data;
315
+ ogs_assert(DnnSmfInfoItem);
316
+ ogs_free(DnnSmfInfoItem);
317
+ }
318
+ OpenAPI_list_free(DnnSmfInfoList);
319
+
320
+ sNssai = sNssaiSmfInfoItem->s_nssai;
321
+ if (sNssai) {
322
+ if (sNssai->sd)
323
+ ogs_free(sNssai->sd);
324
+ ogs_free(sNssai);
325
+ }
326
+
327
+ ogs_free(sNssaiSmfInfoItem);
328
+ }
329
+ OpenAPI_list_free(sNssaiSmfInfoList);
330
+
331
+ TaiList = SmfInfo->tai_list;
332
+ OpenAPI_list_for_each(TaiList, node2) {
333
+ TaiItem = node2->data;
334
+ ogs_assert(TaiItem);
335
+ if (TaiItem->plmn_id)
336
+ ogs_sbi_free_plmn_id(TaiItem->plmn_id);
337
+ if (TaiItem->tac)
338
+ ogs_free(TaiItem->tac);
339
+ ogs_free(TaiItem);
340
+ }
341
+ OpenAPI_list_free(TaiList);
342
+
343
+ TaiRangeList = SmfInfo->tai_range_list;
344
+ OpenAPI_list_for_each(TaiRangeList, node2) {
345
+ TaiRangeItem = node2->data;
346
+ ogs_assert(TaiRangeItem);
347
+
348
+ if (TaiRangeItem->plmn_id)
349
+ ogs_sbi_free_plmn_id(TaiRangeItem->plmn_id);
350
+
351
+ TacRangeList = TaiRangeItem->tac_range_list;
352
+ OpenAPI_list_for_each(TacRangeList, node3) {
353
+ TacRangeItem = node3->data;
354
+ ogs_assert(TacRangeItem);
355
+ if (TacRangeItem->start)
356
+ ogs_free(TacRangeItem->start);
357
+ if (TacRangeItem->end)
358
+ ogs_free(TacRangeItem->end);
359
+
360
+ ogs_free(TacRangeItem);
361
+ }
362
+ OpenAPI_list_free(TacRangeList);
363
+
364
+ ogs_free(TaiRangeItem);
365
+ }
366
+ OpenAPI_list_free(TaiRangeList);
367
+
368
+ ogs_free(SmfInfo);
369
+ }
370
+ if (SmfInfoMap->key)
371
+ ogs_free(SmfInfoMap->key);
372
+ ogs_free(SmfInfoMap);
373
+ }
374
+ }
375
+ OpenAPI_list_free(SmfInfoList);
376
+
377
+ return request;
378
+}
379
+
380
ogs_sbi_request_t *ogs_nnrf_nfm_build_update(void)
381
{
382
ogs_sbi_nf_instance_t *nf_instance = NULL;
383
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/nnrf-build.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nnrf-build.h
Changed
9
1
2
OpenAPI_nf_profile_t *ogs_nnrf_nfm_build_nf_profile(void);
3
void ogs_sbi_nnrf_free_nf_profile(OpenAPI_nf_profile_t *NFProfile);
4
5
+ogs_sbi_request_t *ogs_nnrf_nfm_build_register(void);
6
ogs_sbi_request_t *ogs_nnrf_nfm_build_update(void);
7
ogs_sbi_request_t *ogs_nnrf_nfm_build_de_register(void);
8
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nnrf-handler.c
Changed
708
1
2
#include "ogs-app.h"
3
4
static void handle_smf_info(
5
- ogs_sbi_nf_instance_t *nf_instance, OpenAPI_smf_info_t *SmfInfo)
6
-{
7
- ogs_sbi_nf_info_t *nf_info = NULL;
8
-
9
- OpenAPI_list_t *sNssaiSmfInfoList = NULL;
10
- OpenAPI_snssai_smf_info_item_t *sNssaiSmfInfoItem = NULL;
11
- OpenAPI_snssai_t *sNssai = NULL;
12
- OpenAPI_list_t *DnnSmfInfoList = NULL;
13
- OpenAPI_dnn_smf_info_item_t *DnnSmfInfoItem = NULL;
14
-
15
- OpenAPI_list_t *TaiList = NULL;
16
- OpenAPI_tai_t *TaiItem = NULL;
17
- OpenAPI_list_t *TaiRangeList = NULL;
18
- OpenAPI_tai_range_t *TaiRangeItem = NULL;
19
- OpenAPI_list_t *TacRangeList = NULL;
20
- OpenAPI_tac_range_t *TacRangeItem = NULL;
21
+ ogs_sbi_nf_instance_t *nf_instance, OpenAPI_smf_info_t *SmfInfo);
22
23
- OpenAPI_lnode_t *node = NULL, *node2 = NULL;
24
+void ogs_sbi_nnrf_handle_nf_register(
25
+ ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
26
+{
27
+ OpenAPI_nf_profile_t *NFProfile = NULL;
28
+ ogs_sbi_client_t *client = NULL;
29
30
+ ogs_assert(recvmsg);
31
ogs_assert(nf_instance);
32
- ogs_assert(SmfInfo);
33
-
34
- nf_info = ogs_sbi_nf_info_add(
35
- &nf_instance->nf_info_list, OpenAPI_nf_type_SMF);
36
- ogs_assert(nf_info);
37
-
38
- sNssaiSmfInfoList = SmfInfo->s_nssai_smf_info_list;
39
- OpenAPI_list_for_each(sNssaiSmfInfoList, node) {
40
- sNssaiSmfInfoItem = node->data;
41
- if (sNssaiSmfInfoItem) {
42
- ogs_assert(nf_info->smf.num_of_slice < OGS_MAX_NUM_OF_SLICE);
43
-
44
- DnnSmfInfoList = sNssaiSmfInfoItem->dnn_smf_info_list;
45
- OpenAPI_list_for_each(DnnSmfInfoList, node2) {
46
- DnnSmfInfoItem = node2->data;
47
- if (DnnSmfInfoItem && DnnSmfInfoItem->dnn) {
48
- int dnn_index = nf_info->smf.slice
49
- nf_info->smf.num_of_slice.num_of_dnn;
50
-
51
- ogs_assert(dnn_index < OGS_MAX_NUM_OF_DNN);
52
- nf_info->smf.slicenf_info->smf.num_of_slice.
53
- dnndnn_index = ogs_strdup(DnnSmfInfoItem->dnn);
54
- ogs_assert(
55
- nf_info->smf.slicenf_info->smf.num_of_slice.
56
- dnndnn_index);
57
- nf_info->smf.slicenf_info->smf.num_of_slice.
58
- num_of_dnn++;
59
- }
60
- }
61
-
62
- if (!nf_info->smf.slicenf_info->smf.num_of_slice.num_of_dnn) {
63
- ogs_error("No DNN");
64
- continue;
65
- }
66
+ client = nf_instance->client;
67
+ ogs_assert(client);
68
69
- sNssai = sNssaiSmfInfoItem->s_nssai;
70
- if (sNssai) {
71
- ogs_s_nssai_t *s_nssai = NULL;
72
-
73
- s_nssai = &nf_info->smf.
74
- slicenf_info->smf.num_of_slice.s_nssai;
75
- s_nssai->sst = sNssai->sst;
76
- s_nssai->sd = ogs_s_nssai_sd_from_string(sNssai->sd);
77
- nf_info->smf.num_of_slice++;
78
- }
79
- }
80
- }
81
-
82
- if (nf_info->smf.num_of_slice == 0) {
83
- ogs_error("No S-NSSAI(DNN) in smfInfo");
84
- ogs_sbi_nf_info_remove(&nf_instance->nf_info_list, nf_info);
85
+ NFProfile = recvmsg->NFProfile;
86
+ if (!NFProfile) {
87
+ ogs_error("No NFProfile");
88
return;
89
}
90
91
- TaiList = SmfInfo->tai_list;
92
- OpenAPI_list_for_each(TaiList, node) {
93
- TaiItem = node->data;
94
- if (TaiItem && TaiItem->plmn_id && TaiItem->tac) {
95
- ogs_5gs_tai_t *nr_tai = NULL;
96
- ogs_assert(nf_info->smf.num_of_nr_tai < OGS_MAX_NUM_OF_TAI);
97
-
98
- nr_tai = &nf_info->smf.nr_tainf_info->smf.num_of_nr_tai;
99
- ogs_assert(nr_tai);
100
- ogs_sbi_parse_plmn_id(&nr_tai->plmn_id, TaiItem->plmn_id);
101
- nr_tai->tac = ogs_uint24_from_string(TaiItem->tac);
102
-
103
- nf_info->smf.num_of_nr_tai++;
104
- }
105
- }
106
-
107
- TaiRangeList = SmfInfo->tai_range_list;
108
- OpenAPI_list_for_each(TaiRangeList, node) {
109
- TaiRangeItem = node->data;
110
- if (TaiRangeItem && TaiRangeItem->plmn_id &&
111
- TaiRangeItem->tac_range_list) {
112
- ogs_assert(nf_info->smf.num_of_nr_tai_range <
113
- OGS_MAX_NUM_OF_TAI);
114
-
115
- ogs_sbi_parse_plmn_id(
116
- &nf_info->smf.nr_tai_range
117
- nf_info->smf.num_of_nr_tai_range.plmn_id,
118
- TaiRangeItem->plmn_id);
119
-
120
- TacRangeList = TaiRangeItem->tac_range_list;
121
- OpenAPI_list_for_each(TacRangeList, node2) {
122
- TacRangeItem = node2->data;
123
- if (TacRangeItem &&
124
- TacRangeItem->start && TacRangeItem->end) {
125
- int tac_index = nf_info->smf.nr_tai_range
126
- nf_info->smf.num_of_nr_tai_range.num_of_tac_range;
127
- ogs_assert(tac_index < OGS_MAX_NUM_OF_TAI);
128
-
129
- nf_info->smf.nr_tai_range
130
- nf_info->smf.num_of_nr_tai_range.
131
- starttac_index =
132
- ogs_uint24_from_string(TacRangeItem->start);
133
- nf_info->smf.nr_tai_range
134
- nf_info->smf.num_of_nr_tai_range.
135
- endtac_index =
136
- ogs_uint24_from_string(TacRangeItem->end);
137
-
138
- nf_info->smf.nr_tai_range
139
- nf_info->smf.num_of_nr_tai_range.
140
- num_of_tac_range++;
141
- }
142
- }
143
-
144
- nf_info->smf.num_of_nr_tai_range++;
145
- }
146
- }
147
+ /* TIME : Update heartbeat from NRF */
148
+ if (NFProfile->is_heart_beat_timer == true)
149
+ nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
150
}
151
152
-bool ogs_sbi_nnrf_handle_nf_profile(ogs_sbi_nf_instance_t *nf_instance,
153
+void ogs_sbi_nnrf_handle_nf_profile(ogs_sbi_nf_instance_t *nf_instance,
154
OpenAPI_nf_profile_t *NFProfile,
155
ogs_sbi_stream_t *stream, ogs_sbi_message_t *message)
156
{
157
158
159
OpenAPI_lnode_t *node;
160
ogs_sbi_nf_service_t *nf_service = NULL, *next_nf_service = NULL;
161
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
162
- char fqdnOGS_MAX_FQDN_LEN+1;
163
-#endif
164
165
ogs_assert(nf_instance);
166
ogs_assert(NFProfile);
167
-
168
- if (!NFProfile) {
169
- ogs_error("No NFProfile");
170
- if (stream)
171
- ogs_assert(true ==
172
- ogs_sbi_server_send_error(
173
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
174
- message, "No NFProfile", NULL));
175
- return false;
176
- }
177
-
178
- if (!NFProfile->nf_instance_id) {
179
- ogs_error("No NFProfile.NFInstanceId");
180
- if (stream)
181
- ogs_assert(true ==
182
- ogs_sbi_server_send_error(
183
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
184
- message, "NFProfile", "No NFInstanceId"));
185
- return false;
186
- }
187
-
188
- if (!NFProfile->nf_type) {
189
- ogs_error("No NFProfile.NFType");
190
- if (stream)
191
- ogs_assert(true ==
192
- ogs_sbi_server_send_error(
193
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
194
- message, "NFProfile", "No NFType"));
195
- return false;
196
- }
197
-
198
- if (!NFProfile->nf_status) {
199
- ogs_error("No NFProfile.NFStatus");
200
- if (stream)
201
- ogs_assert(true ==
202
- ogs_sbi_server_send_error(
203
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
204
- message, "NFProfile", "No NFStatus"));
205
- return false;
206
- }
207
+ ogs_assert(NFProfile->nf_instance_id);
208
+ ogs_assert(NFProfile->nf_type);
209
+ ogs_assert(NFProfile->nf_status);
210
211
ogs_list_for_each_safe(&nf_instance->nf_service_list,
212
next_nf_service, nf_service) {
213
214
if (NFProfile->is_heart_beat_timer == true)
215
nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
216
217
- if (NFProfile->fqdn) {
218
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
219
- if (ogs_fqdn_parse(
220
- fqdn, NFProfile->fqdn,
221
- ogs_min(strlen(NFProfile->fqdn), OGS_MAX_FQDN_LEN)) > 0) {
222
-
223
- /* Nothing : succeeded to parse FQDN */
224
- nf_instance->fqdn = ogs_strdup(fqdn);
225
- ogs_assert(nf_instance);
226
-
227
- } else {
228
- ogs_error("ogs_fqdn_parse() failed%s", NFProfile->fqdn);
229
- return false;
230
- }
231
-#else
232
+ if (NFProfile->fqdn)
233
nf_instance->fqdn = ogs_strdup(NFProfile->fqdn);
234
-#endif
235
- }
236
237
if (NFProfile->is_priority == true)
238
nf_instance->priority = NFProfile->priority;
239
240
NFServiceVersion->expiry);
241
}
242
243
- if (NFService->fqdn) {
244
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
245
- if (ogs_fqdn_parse(
246
- fqdn, NFService->fqdn,
247
- ogs_min(strlen(NFService->fqdn), OGS_MAX_FQDN_LEN)) > 0) {
248
-
249
- /* Nothing : succeeded to parse FQDN */
250
- nf_service->fqdn = ogs_strdup(fqdn);
251
- ogs_assert(nf_service);
252
-
253
- } else {
254
- ogs_error("ogs_fqdn_parse() failed%s", NFService->fqdn);
255
- return false;
256
- }
257
-#else
258
+ if (NFService->fqdn)
259
nf_service->fqdn = ogs_strdup(NFService->fqdn);
260
- ogs_assert(nf_service);
261
-#endif
262
- }
263
264
OpenAPI_list_for_each(IpEndPointList, node2) {
265
OpenAPI_ip_end_point_t *IpEndPoint = node2->data;
266
267
if (SmfInfoMap && SmfInfoMap->value)
268
handle_smf_info(nf_instance, SmfInfoMap->value);
269
}
270
+}
271
+
272
+static void handle_smf_info(
273
+ ogs_sbi_nf_instance_t *nf_instance, OpenAPI_smf_info_t *SmfInfo)
274
+{
275
+ ogs_sbi_nf_info_t *nf_info = NULL;
276
+
277
+ OpenAPI_list_t *sNssaiSmfInfoList = NULL;
278
+ OpenAPI_snssai_smf_info_item_t *sNssaiSmfInfoItem = NULL;
279
+ OpenAPI_snssai_t *sNssai = NULL;
280
+ OpenAPI_list_t *DnnSmfInfoList = NULL;
281
+ OpenAPI_dnn_smf_info_item_t *DnnSmfInfoItem = NULL;
282
+
283
+ OpenAPI_list_t *TaiList = NULL;
284
+ OpenAPI_tai_t *TaiItem = NULL;
285
+ OpenAPI_list_t *TaiRangeList = NULL;
286
+ OpenAPI_tai_range_t *TaiRangeItem = NULL;
287
+ OpenAPI_list_t *TacRangeList = NULL;
288
+ OpenAPI_tac_range_t *TacRangeItem = NULL;
289
+
290
+ OpenAPI_lnode_t *node = NULL, *node2 = NULL;
291
+
292
+ ogs_assert(nf_instance);
293
+ ogs_assert(SmfInfo);
294
+
295
+ nf_info = ogs_sbi_nf_info_add(
296
+ &nf_instance->nf_info_list, OpenAPI_nf_type_SMF);
297
+ ogs_assert(nf_info);
298
+
299
+ sNssaiSmfInfoList = SmfInfo->s_nssai_smf_info_list;
300
+ OpenAPI_list_for_each(sNssaiSmfInfoList, node) {
301
+ sNssaiSmfInfoItem = node->data;
302
+ if (sNssaiSmfInfoItem) {
303
+ ogs_assert(nf_info->smf.num_of_slice < OGS_MAX_NUM_OF_SLICE);
304
+
305
+ DnnSmfInfoList = sNssaiSmfInfoItem->dnn_smf_info_list;
306
+ OpenAPI_list_for_each(DnnSmfInfoList, node2) {
307
+ DnnSmfInfoItem = node2->data;
308
+ if (DnnSmfInfoItem && DnnSmfInfoItem->dnn) {
309
+ int dnn_index = nf_info->smf.slice
310
+ nf_info->smf.num_of_slice.num_of_dnn;
311
+
312
+ ogs_assert(dnn_index < OGS_MAX_NUM_OF_DNN);
313
+ nf_info->smf.slicenf_info->smf.num_of_slice.
314
+ dnndnn_index = ogs_strdup(DnnSmfInfoItem->dnn);
315
+ ogs_assert(
316
+ nf_info->smf.slicenf_info->smf.num_of_slice.
317
+ dnndnn_index);
318
+ nf_info->smf.slicenf_info->smf.num_of_slice.
319
+ num_of_dnn++;
320
+ }
321
+ }
322
+
323
+ if (!nf_info->smf.slicenf_info->smf.num_of_slice.num_of_dnn) {
324
+ ogs_error("No DNN");
325
+ continue;
326
+ }
327
+
328
+ sNssai = sNssaiSmfInfoItem->s_nssai;
329
+ if (sNssai) {
330
+ ogs_s_nssai_t *s_nssai = NULL;
331
+
332
+ s_nssai = &nf_info->smf.
333
+ slicenf_info->smf.num_of_slice.s_nssai;
334
+ s_nssai->sst = sNssai->sst;
335
+ s_nssai->sd = ogs_s_nssai_sd_from_string(sNssai->sd);
336
+ nf_info->smf.num_of_slice++;
337
+ }
338
+ }
339
+ }
340
+
341
+ if (nf_info->smf.num_of_slice == 0) {
342
+ ogs_error("No S-NSSAI(DNN) in smfInfo");
343
+ ogs_sbi_nf_info_remove(&nf_instance->nf_info_list, nf_info);
344
+ return;
345
+ }
346
+
347
+ TaiList = SmfInfo->tai_list;
348
+ OpenAPI_list_for_each(TaiList, node) {
349
+ TaiItem = node->data;
350
+ if (TaiItem && TaiItem->plmn_id && TaiItem->tac) {
351
+ ogs_5gs_tai_t *nr_tai = NULL;
352
+ ogs_assert(nf_info->smf.num_of_nr_tai < OGS_MAX_NUM_OF_TAI);
353
+
354
+ nr_tai = &nf_info->smf.nr_tainf_info->smf.num_of_nr_tai;
355
+ ogs_assert(nr_tai);
356
+ ogs_sbi_parse_plmn_id(&nr_tai->plmn_id, TaiItem->plmn_id);
357
+ nr_tai->tac = ogs_uint24_from_string(TaiItem->tac);
358
+
359
+ nf_info->smf.num_of_nr_tai++;
360
+ }
361
+ }
362
+
363
+ TaiRangeList = SmfInfo->tai_range_list;
364
+ OpenAPI_list_for_each(TaiRangeList, node) {
365
+ TaiRangeItem = node->data;
366
+ if (TaiRangeItem && TaiRangeItem->plmn_id &&
367
+ TaiRangeItem->tac_range_list) {
368
+ ogs_assert(nf_info->smf.num_of_nr_tai_range <
369
+ OGS_MAX_NUM_OF_TAI);
370
+
371
+ ogs_sbi_parse_plmn_id(
372
+ &nf_info->smf.nr_tai_range
373
+ nf_info->smf.num_of_nr_tai_range.plmn_id,
374
+ TaiRangeItem->plmn_id);
375
+
376
+ TacRangeList = TaiRangeItem->tac_range_list;
377
+ OpenAPI_list_for_each(TacRangeList, node2) {
378
+ TacRangeItem = node2->data;
379
+ if (TacRangeItem &&
380
+ TacRangeItem->start && TacRangeItem->end) {
381
+ int tac_index = nf_info->smf.nr_tai_range
382
+ nf_info->smf.num_of_nr_tai_range.num_of_tac_range;
383
+ ogs_assert(tac_index < OGS_MAX_NUM_OF_TAI);
384
+
385
+ nf_info->smf.nr_tai_range
386
+ nf_info->smf.num_of_nr_tai_range.
387
+ starttac_index =
388
+ ogs_uint24_from_string(TacRangeItem->start);
389
+ nf_info->smf.nr_tai_range
390
+ nf_info->smf.num_of_nr_tai_range.
391
+ endtac_index =
392
+ ogs_uint24_from_string(TacRangeItem->end);
393
+
394
+ nf_info->smf.nr_tai_range
395
+ nf_info->smf.num_of_nr_tai_range.
396
+ num_of_tac_range++;
397
+ }
398
+ }
399
+
400
+ nf_info->smf.num_of_nr_tai_range++;
401
+ }
402
+ }
403
+}
404
+
405
+void ogs_nnrf_handle_nf_status_subscribe(
406
+ ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
407
+{
408
+ OpenAPI_subscription_data_t *SubscriptionData = NULL;
409
+ ogs_sbi_client_t *client = NULL;
410
+
411
+ ogs_assert(recvmsg);
412
+ ogs_assert(subscription);
413
+ client = subscription->client;
414
+ ogs_assert(client);
415
+
416
+ SubscriptionData = recvmsg->SubscriptionData;
417
+ if (!SubscriptionData) {
418
+ ogs_error("No SubscriptionData");
419
+ return;
420
+ }
421
+
422
+ if (!SubscriptionData->subscription_id) {
423
+ ogs_error("No SubscriptionId");
424
+ return;
425
+ }
426
+ ogs_sbi_subscription_set_id(
427
+ subscription, SubscriptionData->subscription_id);
428
429
+ if (SubscriptionData->validity_time) {
430
+#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
431
+ ogs_time_t time, duration;
432
+ if (ogs_sbi_time_from_string(
433
+ &time, SubscriptionData->validity_time) == true) {
434
+ duration = time - ogs_time_now();
435
+ if (duration < VALIDITY_MINIMUM) {
436
+ duration = VALIDITY_MINIMUM;
437
+ ogs_warn("%s Forced to %lld seconds", subscription->id,
438
+ (long long)ogs_time_sec(VALIDITY_MINIMUM));
439
+ }
440
+ subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
441
+ ogs_timer_subscription_validity, subscription);
442
+ ogs_assert(subscription->t_validity);
443
+ ogs_timer_start(subscription->t_validity, duration);
444
+ } else {
445
+ ogs_error("Cannot parse validitiyTime %s",
446
+ SubscriptionData->validity_time);
447
+ }
448
+ }
449
+}
450
+
451
+bool ogs_nnrf_handle_nf_status_notify(
452
+ ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
453
+{
454
+ int rv;
455
+
456
+ ogs_sbi_response_t *response = NULL;
457
+ OpenAPI_notification_data_t *NotificationData = NULL;
458
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
459
+
460
+ ogs_sbi_message_t message;
461
+ ogs_sbi_header_t header;
462
+
463
+ ogs_assert(stream);
464
+ ogs_assert(recvmsg);
465
+
466
+ NotificationData = recvmsg->NotificationData;
467
+ if (!NotificationData) {
468
+ ogs_error("No NotificationData");
469
+ ogs_assert(true ==
470
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
471
+ recvmsg, "No NotificationData", NULL));
472
+ return false;
473
+ }
474
+
475
+ if (!NotificationData->nf_instance_uri) {
476
+ ogs_error("No nfInstanceUri");
477
+ ogs_assert(true ==
478
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
479
+ recvmsg, "No nfInstanceUri", NULL));
480
+ return false;
481
+ }
482
+
483
+ memset(&header, 0, sizeof(header));
484
+ header.uri = NotificationData->nf_instance_uri;
485
+
486
+ rv = ogs_sbi_parse_header(&message, &header);
487
+ if (rv != OGS_OK) {
488
+ ogs_error("Cannot parse nfInstanceUri %s", header.uri);
489
+ ogs_assert(true ==
490
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
491
+ recvmsg, "Cannot parse nfInstanceUri", header.uri));
492
+ return false;
493
+ }
494
+
495
+ if (!message.h.resource.component1) {
496
+ ogs_error("No nfInstanceId %s", header.uri);
497
+ ogs_assert(true ==
498
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
499
+ recvmsg, "Cannot parse nfInstanceUri", header.uri));
500
+ ogs_sbi_header_free(&header);
501
+ return false;
502
+ }
503
+
504
+ if (NF_INSTANCE_ID_IS_SELF(message.h.resource.component1)) {
505
+ ogs_warn("%s The notification is not allowed",
506
+ message.h.resource.component1);
507
+ ogs_assert(true ==
508
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
509
+ recvmsg, "The notification is not allowed",
510
+ message.h.resource.component1));
511
+ ogs_sbi_header_free(&header);
512
+ return false;
513
+ }
514
+
515
+ if (NotificationData->event ==
516
+ OpenAPI_notification_event_type_NF_REGISTERED) {
517
+
518
+ OpenAPI_nf_profile_t *NFProfile = NULL;
519
+
520
+ NFProfile = NotificationData->nf_profile;
521
+ if (!NFProfile) {
522
+ ogs_error("No NFProfile");
523
+ ogs_assert(true ==
524
+ ogs_sbi_server_send_error(
525
+ stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
526
+ recvmsg, "No NFProfile", NULL));
527
+ ogs_sbi_header_free(&header);
528
+ return false;
529
+ }
530
+
531
+ if (!NFProfile->nf_instance_id) {
532
+ ogs_error("No NFProfile.NFInstanceId");
533
+ ogs_assert(true ==
534
+ ogs_sbi_server_send_error(
535
+ stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
536
+ recvmsg, "No NFProfile.NFInstanceId", NULL));
537
+ ogs_sbi_header_free(&header);
538
+ return false;
539
+ }
540
+
541
+ if (!NFProfile->nf_type) {
542
+ ogs_error("No NFProfile.NFType");
543
+ ogs_assert(true ==
544
+ ogs_sbi_server_send_error(
545
+ stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
546
+ recvmsg, "No NFProfile.NFType", NULL));
547
+ ogs_sbi_header_free(&header);
548
+ return false;
549
+ }
550
+
551
+ if (!NFProfile->nf_status) {
552
+ ogs_error("No NFProfile.NFStatus");
553
+ ogs_assert(true ==
554
+ ogs_sbi_server_send_error(
555
+ stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
556
+ recvmsg, "No NFProfile.NFStatus", NULL));
557
+ ogs_sbi_header_free(&header);
558
+ return false;
559
+ }
560
+
561
+ nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
562
+ if (!nf_instance) {
563
+ nf_instance = ogs_sbi_nf_instance_add();
564
+ ogs_assert(nf_instance);
565
+
566
+ ogs_sbi_nf_instance_set_id(
567
+ nf_instance, message.h.resource.component1);
568
+ ogs_sbi_nf_fsm_init(nf_instance);
569
+
570
+ ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
571
+ } else {
572
+ ogs_sbi_nf_fsm_tran(nf_instance, ogs_sbi_nf_state_registered);
573
+
574
+ ogs_warn("%s (NRF-notify) NF has already been added",
575
+ message.h.resource.component1);
576
+ }
577
+
578
+ ogs_sbi_nnrf_handle_nf_profile(nf_instance, NFProfile, stream, recvmsg);
579
+
580
+ ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
581
+
582
+ ogs_sbi_client_associate(nf_instance);
583
+
584
+ } else if (NotificationData->event ==
585
+ OpenAPI_notification_event_type_NF_DEREGISTERED) {
586
+ nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
587
+ if (nf_instance) {
588
+ if (OGS_OBJECT_IS_REF(nf_instance)) {
589
+ /* There are references to other contexts. */
590
+ ogs_warn("%s:%d NF was referenced in other contexts",
591
+ nf_instance->id, nf_instance->reference_count);
592
+ ogs_sbi_nf_fsm_tran(
593
+ nf_instance, ogs_sbi_nf_state_de_registered);
594
+ } else {
595
+ ogs_info("%s NF removed", nf_instance->id);
596
+ ogs_sbi_nf_fsm_fini((nf_instance));
597
+ ogs_sbi_nf_instance_remove(nf_instance);
598
+ }
599
+ } else {
600
+ ogs_warn("%s (NRF-notify) Not found",
601
+ message.h.resource.component1);
602
+ ogs_assert(true ==
603
+ ogs_sbi_server_send_error(stream,
604
+ OGS_SBI_HTTP_STATUS_NOT_FOUND,
605
+ recvmsg, "Not found", message.h.resource.component1));
606
+ ogs_sbi_header_free(&header);
607
+ return false;
608
+ }
609
+ } else {
610
+ char *eventstr = OpenAPI_notification_event_type_ToString(
611
+ NotificationData->event);
612
+ ogs_error("Not supported event %d:%s",
613
+ NotificationData->event, eventstr ? eventstr : "Unknown");
614
+ ogs_assert(true ==
615
+ ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
616
+ recvmsg, "Not supported event",
617
+ eventstr ? eventstr : "Unknown"));
618
+ ogs_sbi_header_free(&header);
619
+ return false;
620
+ }
621
+
622
+ response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
623
+ ogs_assert(response);
624
+ ogs_assert(true == ogs_sbi_server_send_response(stream, response));
625
+
626
+ ogs_sbi_header_free(&header);
627
return true;
628
}
629
+
630
+void ogs_nnrf_handle_nf_discover_search_result(
631
+ ogs_sbi_object_t *sbi_object,
632
+ OpenAPI_nf_type_e target_nf_type,
633
+ ogs_sbi_discovery_option_t *discovery_option,
634
+ OpenAPI_search_result_t *SearchResult)
635
+{
636
+ OpenAPI_lnode_t *node = NULL;
637
+ ogs_sbi_nf_instance_t *nf_instance = NULL;
638
+
639
+ ogs_assert(sbi_object);
640
+ ogs_assert(SearchResult);
641
+
642
+ OpenAPI_list_for_each(SearchResult->nf_instances, node) {
643
+ OpenAPI_nf_profile_t *NFProfile = NULL;
644
+
645
+ if (!node->data) continue;
646
+
647
+ NFProfile = node->data;
648
+
649
+ if (!NFProfile) {
650
+ ogs_error("No NFProfile");
651
+ continue;
652
+ }
653
+
654
+ if (!NFProfile->nf_instance_id) {
655
+ ogs_error("No NFProfile.NFInstanceId");
656
+ continue;
657
+ }
658
+
659
+ if (!NFProfile->nf_type) {
660
+ ogs_error("No NFProfile.NFType");
661
+ continue;
662
+ }
663
+
664
+ if (!NFProfile->nf_status) {
665
+ ogs_error("No NFProfile.NFStatus");
666
+ continue;
667
+ }
668
+
669
+ nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
670
+ if (!nf_instance) {
671
+ nf_instance = ogs_sbi_nf_instance_add();
672
+ ogs_assert(nf_instance);
673
+
674
+ ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
675
+ ogs_sbi_nf_fsm_init(nf_instance);
676
+
677
+ ogs_info("%s (NF-discover) NF registered", nf_instance->id);
678
+ } else {
679
+ ogs_sbi_nf_fsm_tran(nf_instance, ogs_sbi_nf_state_registered);
680
+
681
+ ogs_warn("%s (NF-discover) NF has already been added",
682
+ NFProfile->nf_instance_id);
683
+ }
684
+
685
+ if (NF_INSTANCE_ID_IS_OTHERS(nf_instance->id)) {
686
+ ogs_sbi_nnrf_handle_nf_profile(nf_instance, NFProfile, NULL, NULL);
687
+
688
+ ogs_sbi_client_associate(nf_instance);
689
+
690
+ /* TIME : Update validity from NRF */
691
+ if (SearchResult->is_validity_period &&
692
+ SearchResult->validity_period) {
693
+ nf_instance->time.validity_duration =
694
+ SearchResult->validity_period;
695
+
696
+ ogs_assert(nf_instance->t_validity);
697
+ ogs_timer_start(nf_instance->t_validity,
698
+ ogs_time_from_sec(nf_instance->time.validity_duration));
699
+
700
+ } else
701
+ ogs_warn("%s NF Instance validity-time should not 0",
702
+ nf_instance->id);
703
+
704
+ ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
705
+ }
706
+ }
707
+}
708
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/nnrf-handler.h
Changed
26
1
2
extern "C" {
3
#endif
4
5
-bool ogs_sbi_nnrf_handle_nf_profile(ogs_sbi_nf_instance_t *nf_instance,
6
+void ogs_sbi_nnrf_handle_nf_register(
7
+ ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
8
+void ogs_sbi_nnrf_handle_nf_profile(ogs_sbi_nf_instance_t *nf_instance,
9
OpenAPI_nf_profile_t *NFProfile,
10
ogs_sbi_stream_t *stream, ogs_sbi_message_t *message);
11
12
+void ogs_nnrf_handle_nf_status_subscribe(
13
+ ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
14
+bool ogs_nnrf_handle_nf_status_notify(
15
+ ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
16
+
17
+void ogs_nnrf_handle_nf_discover_search_result(
18
+ ogs_sbi_object_t *sbi_object,
19
+ OpenAPI_nf_type_e target_nf_type,
20
+ ogs_sbi_discovery_option_t *discovery_option,
21
+ OpenAPI_search_result_t *SearchResult);
22
+
23
#ifdef __cplusplus
24
}
25
#endif
26
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/ogs-sbi.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/ogs-sbi.h
Changed
26
1
2
#ifndef OGS_SBI_H
3
#define OGS_SBI_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#if defined(__GNUC__)
9
#pragma GCC diagnostic push
10
11
#define OGS_SBI_INSIDE
12
13
#include "sbi/conv.h"
14
+#include "sbi/timer.h"
15
#include "sbi/message.h"
16
17
#include "sbi/server.h"
18
#include "sbi/client.h"
19
#include "sbi/context.h"
20
21
+#include "sbi/nf-sm.h"
22
+
23
#include "sbi/nnrf-build.h"
24
#include "sbi/nnrf-handler.h"
25
26
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/path.c
Changed
22
1
2
return false;
3
}
4
5
-bool ogs_nnrf_nfm_send_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_request_t *(*build)(void))
7
+bool ogs_nnrf_nfm_send_nf_register(ogs_sbi_nf_instance_t *nf_instance)
8
{
9
ogs_sbi_request_t *request = NULL;
10
ogs_sbi_client_t *client = NULL;
11
12
ogs_assert(nf_instance);
13
client = nf_instance->client;
14
ogs_assert(client);
15
- ogs_assert(build);
16
17
- request = (*build)();
18
+ request = ogs_nnrf_nfm_build_register();
19
ogs_expect_or_return_val(request, false);
20
21
return ogs_sbi_scp_send_request(client, client->cb, request, nf_instance);
22
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/sbi/path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/path.h
Changed
11
1
2
ogs_sbi_discovery_option_t *discovery_option,
3
ogs_sbi_client_cb_f client_cb, void *data);
4
5
-bool ogs_nnrf_nfm_send_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_request_t *(*build)(void));
7
+bool ogs_nnrf_nfm_send_nf_register(ogs_sbi_nf_instance_t *nf_instance);
8
bool ogs_nnrf_nfm_send_nf_update(ogs_sbi_nf_instance_t *nf_instance);
9
bool ogs_nnrf_nfm_send_nf_de_register(ogs_sbi_nf_instance_t *nf_instance);
10
bool ogs_nnrf_nfm_send_nf_profile_retrieve(ogs_sbi_nf_instance_t *nf_instance,
11
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/timer.c
Added
85
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#include "ogs-sbi.h"
22
+#include "ogs-app.h"
23
+
24
+static void timer_send_event(int timer_id, void *data)
25
+{
26
+ int rv;
27
+ ogs_event_t *e = NULL;
28
+ ogs_assert(data);
29
+
30
+ switch (timer_id) {
31
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
32
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
33
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
34
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
35
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
36
+ case OGS_TIMER_SBI_CLIENT_WAIT:
37
+ e = ogs_event_new(OGS_EVENT_SBI_TIMER);
38
+ ogs_assert(e);
39
+ e->timer_id = timer_id;
40
+ e->sbi.data = data;
41
+ break;
42
+ default:
43
+ ogs_fatal("Unknown timer id%d", timer_id);
44
+ ogs_assert_if_reached();
45
+ break;
46
+ }
47
+
48
+ rv = ogs_queue_push(ogs_app()->queue, e);
49
+ if (rv != OGS_OK) {
50
+ ogs_error("ogs_queue_push() failed %d in %s",
51
+ (int)rv, ogs_timer_get_name(e->timer_id));
52
+ ogs_event_free(e);
53
+ }
54
+}
55
+
56
+void ogs_timer_nf_instance_registration_interval(void *data)
57
+{
58
+ timer_send_event(OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
59
+}
60
+
61
+void ogs_timer_nf_instance_heartbeat_interval(void *data)
62
+{
63
+ timer_send_event(OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
64
+}
65
+
66
+void ogs_timer_nf_instance_no_heartbeat(void *data)
67
+{
68
+ timer_send_event(OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
69
+}
70
+
71
+void ogs_timer_nf_instance_validity(void *data)
72
+{
73
+ timer_send_event(OGS_TIMER_NF_INSTANCE_VALIDITY, data);
74
+}
75
+
76
+void ogs_timer_subscription_validity(void *data)
77
+{
78
+ timer_send_event(OGS_TIMER_SUBSCRIPTION_VALIDITY, data);
79
+}
80
+
81
+void ogs_timer_sbi_client_wait_expire(void *data)
82
+{
83
+ timer_send_event(OGS_TIMER_SBI_CLIENT_WAIT, data);
84
+}
85
open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/sbi/timer.h
Added
44
1
2
+/*
3
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
+ *
5
+ * This file is part of Open5GS.
6
+ *
7
+ * This program is free software: you can redistribute it and/or modify
8
+ * it under the terms of the GNU Affero General Public License as published by
9
+ * the Free Software Foundation, either version 3 of the License, or
10
+ * (at your option) any later version.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU General Public License
18
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
19
+ */
20
+
21
+#if !defined(OGS_SBI_INSIDE) && !defined(OGS_SBI_COMPILATION)
22
+#error "This header cannot be included directly."
23
+#endif
24
+
25
+#ifndef OGS_SBI_TIMER_H
26
+#define OGS_SBI_TIMER_H
27
+
28
+#ifdef __cplusplus
29
+extern "C" {
30
+#endif
31
+
32
+void ogs_timer_nf_instance_registration_interval(void *data);
33
+void ogs_timer_nf_instance_heartbeat_interval(void *data);
34
+void ogs_timer_nf_instance_no_heartbeat(void *data);
35
+void ogs_timer_nf_instance_validity(void *data);
36
+void ogs_timer_subscription_validity(void *data);
37
+void ogs_timer_sbi_client_wait_expire(void *data);
38
+
39
+#ifdef __cplusplus
40
+}
41
+#endif
42
+
43
+#endif /* OGS_SBI_TIMER_H */
44
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/tun/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/tun/meson.build
Changed
14
1
2
version : libogslib_version,
3
c_args : '-DOGS_TUN_COMPILATION',
4
include_directories : libtun_inc, libinc,
5
- dependencies : libcore_dep, libipfw_dep,
6
+ dependencies : libipfw_dep,
7
install : true)
8
9
libtun_dep = declare_dependency(
10
link_with : libtun,
11
include_directories : libtun_inc, libinc,
12
- dependencies : libcore_dep, libipfw_dep)
13
+ dependencies : libipfw_dep)
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/lib/tun/ogs-tun.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/lib/tun/ogs-tun.h
Changed
10
1
2
#ifndef OGS_TUN_H
3
#define OGS_TUN_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/amf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/amf-sm.c
Changed
272
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case AMF_EVT_SBI_SERVER:
21
- sbi_request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ sbi_request = e->h.sbi.request;
24
ogs_assert(sbi_request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&sbi_message, sbi_request);
30
31
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
32
SWITCH(sbi_message.h.method)
33
CASE(OGS_SBI_HTTP_METHOD_POST)
34
- amf_nnrf_handle_nf_status_notify(stream, &sbi_message);
35
+ ogs_nnrf_handle_nf_status_notify(stream, &sbi_message);
36
break;
37
38
DEFAULT
39
40
ogs_sbi_message_free(&sbi_message);
41
break;
42
43
- case AMF_EVT_SBI_CLIENT:
44
+ case OGS_EVENT_SBI_CLIENT:
45
ogs_assert(e);
46
47
- sbi_response = e->sbi.response;
48
+ sbi_response = e->h.sbi.response;
49
ogs_assert(sbi_response);
50
rv = ogs_sbi_parse_response(&sbi_message, sbi_response);
51
if (rv != OGS_OK) {
52
53
54
SWITCH(sbi_message.h.resource.component0)
55
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
56
- nf_instance = e->sbi.data;
57
+ nf_instance = e->h.sbi.data;
58
ogs_assert(nf_instance);
59
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
60
61
- e->sbi.message = &sbi_message;
62
+ e->h.sbi.message = &sbi_message;
63
ogs_fsm_dispatch(&nf_instance->sm, e);
64
break;
65
66
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
67
- subscription = e->sbi.data;
68
+ subscription = e->h.sbi.data;
69
ogs_assert(subscription);
70
71
SWITCH(sbi_message.h.method)
72
CASE(OGS_SBI_HTTP_METHOD_POST)
73
if (sbi_message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
74
sbi_message.res_status == OGS_SBI_HTTP_STATUS_OK) {
75
- amf_nnrf_handle_nf_status_subscribe(
76
+ ogs_nnrf_handle_nf_status_subscribe(
77
subscription, &sbi_message);
78
} else {
79
ogs_error("%s HTTP response error %d",
80
81
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
82
SWITCH(sbi_message.h.resource.component0)
83
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
84
- sbi_xact = e->sbi.data;
85
+ sbi_xact = e->h.sbi.data;
86
ogs_assert(sbi_xact);
87
88
SWITCH(sbi_message.h.method)
89
90
CASE(OGS_SBI_SERVICE_NAME_NUDM_UECM)
91
CASE(OGS_SBI_SERVICE_NAME_NUDM_SDM)
92
CASE(OGS_SBI_SERVICE_NAME_NPCF_AM_POLICY_CONTROL)
93
- sbi_xact = e->sbi.data;
94
+ sbi_xact = e->h.sbi.data;
95
ogs_assert(sbi_xact);
96
97
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
98
99
ogs_assert(OGS_FSM_STATE(&amf_ue->sm));
100
101
e->amf_ue = amf_ue;
102
- e->sbi.message = &sbi_message;;
103
+ e->h.sbi.message = &sbi_message;;
104
105
ogs_fsm_dispatch(&amf_ue->sm, e);
106
} else {
107
108
break;
109
110
CASE(OGS_SBI_SERVICE_NAME_NSMF_PDUSESSION)
111
- sbi_xact = e->sbi.data;
112
+ sbi_xact = e->h.sbi.data;
113
ogs_assert(sbi_xact);
114
115
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
116
117
118
e->amf_ue = amf_ue;
119
e->sess = sess;
120
- e->sbi.message = &sbi_message;;
121
+ e->h.sbi.message = &sbi_message;;
122
123
SWITCH(sbi_message.h.resource.component2)
124
CASE(OGS_SBI_RESOURCE_NAME_MODIFY)
125
126
break;
127
128
CASE(OGS_SBI_SERVICE_NAME_NNSSF_NSSELECTION)
129
- sbi_xact = e->sbi.data;
130
+ sbi_xact = e->h.sbi.data;
131
ogs_assert(sbi_xact);
132
133
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
134
135
136
e->amf_ue = amf_ue;
137
e->sess = sess;
138
- e->sbi.message = &sbi_message;;
139
+ e->h.sbi.message = &sbi_message;;
140
141
amf_nnssf_nsselection_handle_get(sess, &sbi_message);
142
break;
143
144
ogs_sbi_response_free(sbi_response);
145
break;
146
147
- case AMF_EVT_SBI_TIMER:
148
+ case OGS_EVENT_SBI_TIMER:
149
ogs_assert(e);
150
151
- switch(e->timer_id) {
152
- case AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
153
- case AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
154
- case AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
155
- case AMF_TIMER_NF_INSTANCE_VALIDITY:
156
- nf_instance = e->sbi.data;
157
+ switch(e->h.timer_id) {
158
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
159
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
160
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
161
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
162
+ nf_instance = e->h.sbi.data;
163
ogs_assert(nf_instance);
164
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
165
166
ogs_fsm_dispatch(&nf_instance->sm, e);
167
- if (OGS_FSM_CHECK(&nf_instance->sm, amf_nf_state_exception))
168
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
169
ogs_error("%s:%s State machine exception %d",
170
OpenAPI_nf_type_ToString(nf_instance->nf_type),
171
- nf_instance->id, e->timer_id);
172
+ nf_instance->id, e->h.timer_id);
173
break;
174
175
- case AMF_TIMER_SUBSCRIPTION_VALIDITY:
176
- subscription = e->sbi.data;
177
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
178
+ subscription = e->h.sbi.data;
179
ogs_assert(subscription);
180
181
ogs_assert(ogs_sbi_self()->nf_instance);
182
183
ogs_sbi_subscription_remove(subscription);
184
break;
185
186
- case AMF_TIMER_SBI_CLIENT_WAIT:
187
- sbi_xact = e->sbi.data;
188
+ case OGS_TIMER_SBI_CLIENT_WAIT:
189
+ sbi_xact = e->h.sbi.data;
190
ogs_assert(sbi_xact);
191
192
sbi_object = sbi_xact->sbi_object;
193
194
195
default:
196
ogs_error("Unknown timer%s:%d",
197
- amf_timer_get_name(e->timer_id), e->timer_id);
198
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
199
}
200
break;
201
202
- case AMF_EVT_NGAP_LO_ACCEPT:
203
+ case AMF_EVENT_NGAP_LO_ACCEPT:
204
sock = e->ngap.sock;
205
ogs_assert(sock);
206
addr = e->ngap.addr;
207
208
209
break;
210
211
- case AMF_EVT_NGAP_LO_SCTP_COMM_UP:
212
+ case AMF_EVENT_NGAP_LO_SCTP_COMM_UP:
213
sock = e->ngap.sock;
214
ogs_assert(sock);
215
addr = e->ngap.addr;
216
217
218
break;
219
220
- case AMF_EVT_NGAP_LO_CONNREFUSED:
221
+ case AMF_EVENT_NGAP_LO_CONNREFUSED:
222
sock = e->ngap.sock;
223
ogs_assert(sock);
224
addr = e->ngap.addr;
225
226
ogs_free(addr);
227
228
break;
229
- case AMF_EVT_NGAP_MESSAGE:
230
+ case AMF_EVENT_NGAP_MESSAGE:
231
sock = e->ngap.sock;
232
ogs_assert(sock);
233
addr = e->ngap.addr;
234
235
ogs_pkbuf_free(pkbuf);
236
break;
237
238
- case AMF_EVT_NGAP_TIMER:
239
+ case AMF_EVENT_NGAP_TIMER:
240
ran_ue = e->ran_ue;
241
ogs_assert(ran_ue);
242
243
- switch (e->timer_id) {
244
+ switch (e->h.timer_id) {
245
case AMF_TIMER_NG_DELAYED_SEND:
246
gnb = e->gnb;
247
ogs_assert(gnb);
248
249
break;
250
default:
251
ogs_error("Unknown timer%s:%d",
252
- amf_timer_get_name(e->timer_id), e->timer_id);
253
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
254
break;
255
}
256
break;
257
258
- case AMF_EVT_5GMM_MESSAGE:
259
+ case AMF_EVENT_5GMM_MESSAGE:
260
ran_ue = e->ran_ue;
261
ogs_assert(ran_ue);
262
pkbuf = e->pkbuf;
263
264
265
ogs_pkbuf_free(pkbuf);
266
break;
267
- case AMF_EVT_5GMM_TIMER:
268
+ case AMF_EVENT_5GMM_TIMER:
269
amf_ue = e->amf_ue;
270
ogs_assert(amf_ue);
271
ogs_assert(OGS_FSM_STATE(&amf_ue->sm));
272
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/amf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/amf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void amf_state_final(ogs_fsm_t *s, amf_event_t *e);
10
void amf_state_operational(ogs_fsm_t *s, amf_event_t *e);
11
12
-void amf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void amf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void amf_nf_state_initial(ogs_fsm_t *s, amf_event_t *e);
16
-void amf_nf_state_final(ogs_fsm_t *s, amf_event_t *e);
17
-void amf_nf_state_will_register(ogs_fsm_t *s, amf_event_t *e);
18
-void amf_nf_state_registered(ogs_fsm_t *s, amf_event_t *e);
19
-void amf_nf_state_de_registered(ogs_fsm_t *s, amf_event_t *e);
20
-void amf_nf_state_exception(ogs_fsm_t *s, amf_event_t *e);
21
-
22
void ngap_state_initial(ogs_fsm_t *s, amf_event_t *e);
23
void ngap_state_final(ogs_fsm_t *s, amf_event_t *e);
24
void ngap_state_operational(ogs_fsm_t *s, amf_event_t *e);
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/context.c
Changed
52
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
memset(&e, 0, sizeof(e));
11
e.gnb = gnb;
12
- ogs_fsm_create(&gnb->sm, ngap_state_initial, ngap_state_final);
13
- ogs_fsm_init(&gnb->sm, &e);
14
+ ogs_fsm_init(&gnb->sm, ngap_state_initial, ngap_state_final, &e);
15
16
ogs_list_add(&self.gnb_list, gnb);
17
amf_metrics_inst_global_inc(AMF_METR_GLOB_GAUGE_GNB);
18
19
memset(&e, 0, sizeof(e));
20
e.gnb = gnb;
21
ogs_fsm_fini(&gnb->sm, &e);
22
- ogs_fsm_delete(&gnb->sm);
23
24
ogs_hash_set(self.gnb_addr_hash,
25
gnb->sctp.addr, sizeof(ogs_sockaddr_t), NULL);
26
27
28
memset(&e, 0, sizeof(e));
29
e.amf_ue = amf_ue;
30
- ogs_fsm_create(&amf_ue->sm, gmm_state_initial, gmm_state_final);
31
- ogs_fsm_init(&amf_ue->sm, &e);
32
+ ogs_fsm_init(&amf_ue->sm, gmm_state_initial, gmm_state_final, &e);
33
}
34
35
void amf_ue_fsm_fini(amf_ue_t *amf_ue)
36
37
memset(&e, 0, sizeof(e));
38
e.amf_ue = amf_ue;
39
ogs_fsm_fini(&amf_ue->sm, &e);
40
- ogs_fsm_delete(&amf_ue->sm);
41
}
42
43
amf_ue_t *amf_ue_find_by_guti(ogs_nas_5gs_guti_t *guti)
44
45
ogs_sbi_nf_instance_t *nf_instance = NULL;
46
amf_sess_t *sess = NULL;
47
48
- ogs_assert(ogs_sbi_self()->nf_state_registered);
49
ogs_assert(sbi_object);
50
ogs_assert(target_nf_type);
51
52
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/context.h
Changed
31
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
amf_ue_t *amf_ue;
10
};
11
12
-#define AMF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
13
- do { \
14
- ogs_assert(_nFInstance); \
15
- if ((_nFInstance)->reference_count == 1) { \
16
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
17
- amf_nf_fsm_fini((_nFInstance)); \
18
- ogs_sbi_nf_instance_remove(_nFInstance); \
19
- } else { \
20
- /* There is an assocation with other context */ \
21
- ogs_info("%s:%d (%s) NF suspended", \
22
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
23
- OGS_FSM_TRAN(&_nFInstance->sm, amf_nf_state_de_registered); \
24
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
25
- } \
26
- } while(0)
27
-
28
struct amf_ue_s {
29
ogs_sbi_object_t sbi;
30
ogs_fsm_t sm;
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/event.c
Changed
146
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "event.h"
10
#include "context.h"
11
12
-static OGS_POOL(pool, amf_event_t);
13
-static ogs_thread_mutex_t amf_event_alloc_mutex;
14
-
15
-void amf_event_init(void)
16
-{
17
- ogs_pool_init(&pool, ogs_app()->pool.event);
18
- ogs_thread_mutex_init(&amf_event_alloc_mutex);
19
-}
20
-
21
-void amf_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
- ogs_thread_mutex_destroy(&amf_event_alloc_mutex);
25
-}
26
-
27
-amf_event_t *amf_event_new(amf_event_e id)
28
+amf_event_t *amf_event_new(int id)
29
{
30
amf_event_t *e = NULL;
31
32
- ogs_thread_mutex_lock(&amf_event_alloc_mutex);
33
- ogs_pool_alloc(&pool, &e);
34
- ogs_thread_mutex_unlock(&amf_event_alloc_mutex);
35
+ e = ogs_event_size(id, sizeof(amf_event_t));
36
ogs_assert(e);
37
- memset(e, 0, sizeof(*e));
38
39
- e->id = id;
40
+ e->h.id = id;
41
42
return e;
43
}
44
45
-void amf_event_free(amf_event_t *e)
46
-{
47
- ogs_assert(e);
48
- ogs_thread_mutex_lock(&amf_event_alloc_mutex);
49
- ogs_pool_free(&pool, e);
50
- ogs_thread_mutex_unlock(&amf_event_alloc_mutex);
51
-}
52
-
53
const char *amf_event_get_name(amf_event_t *e)
54
{
55
- if (e == NULL)
56
+ if (e == NULL) {
57
return OGS_FSM_NAME_INIT_SIG;
58
+ }
59
60
- switch (e->id) {
61
- case OGS_FSM_ENTRY_SIG:
62
+ switch (e->h.id) {
63
+ case OGS_FSM_ENTRY_SIG:
64
return OGS_FSM_NAME_ENTRY_SIG;
65
- case OGS_FSM_EXIT_SIG:
66
+ case OGS_FSM_EXIT_SIG:
67
return OGS_FSM_NAME_EXIT_SIG;
68
69
- case AMF_EVT_SBI_SERVER:
70
- return "AMF_EVT_SBI_SERVER";
71
- case AMF_EVT_SBI_CLIENT:
72
- return "AMF_EVT_SBI_CLIENT";
73
- case AMF_EVT_SBI_TIMER:
74
- return "AMF_EVT_SBI_TIMER";
75
-
76
- case AMF_EVT_NGAP_MESSAGE:
77
- return "AMF_EVT_NGAP_MESSAGE";
78
- case AMF_EVT_NGAP_TIMER:
79
- return "AMF_EVT_NGAP_TIMER";
80
- case AMF_EVT_NGAP_LO_ACCEPT:
81
- return "AMF_EVT_NGAP_LO_ACCEPT";
82
- case AMF_EVT_NGAP_LO_SCTP_COMM_UP:
83
- return "AMF_EVT_NGAP_LO_SCTP_COMM_UP";
84
- case AMF_EVT_NGAP_LO_CONNREFUSED:
85
- return "AMF_EVT_NGAP_LO_CONNREFUSED";
86
-
87
- case AMF_EVT_5GMM_MESSAGE:
88
- return "AMF_EVT_5GMM_MESSAGE";
89
- case AMF_EVT_5GMM_TIMER:
90
- return "AMF_EVT_5GMM_TIMER";
91
- case AMF_EVT_5GSM_MESSAGE:
92
- return "AMF_EVT_5GSM_MESSAGE";
93
- case AMF_EVT_5GSM_TIMER:
94
- return "AMF_EVT_5GSM_TIMER";
95
+ case OGS_EVENT_SBI_SERVER:
96
+ return OGS_EVENT_NAME_SBI_SERVER;
97
+ case OGS_EVENT_SBI_CLIENT:
98
+ return OGS_EVENT_NAME_SBI_CLIENT;
99
+ case OGS_EVENT_SBI_TIMER:
100
+ return OGS_EVENT_NAME_SBI_TIMER;
101
+
102
+ case AMF_EVENT_NGAP_MESSAGE:
103
+ return "AMF_EVENT_NGAP_MESSAGE";
104
+ case AMF_EVENT_NGAP_TIMER:
105
+ return "AMF_EVENT_NGAP_TIMER";
106
+ case AMF_EVENT_NGAP_LO_ACCEPT:
107
+ return "AMF_EVENT_NGAP_LO_ACCEPT";
108
+ case AMF_EVENT_NGAP_LO_SCTP_COMM_UP:
109
+ return "AMF_EVENT_NGAP_LO_SCTP_COMM_UP";
110
+ case AMF_EVENT_NGAP_LO_CONNREFUSED:
111
+ return "AMF_EVENT_NGAP_LO_CONNREFUSED";
112
+
113
+ case AMF_EVENT_5GMM_MESSAGE:
114
+ return "AMF_EVENT_5GMM_MESSAGE";
115
+ case AMF_EVENT_5GMM_TIMER:
116
+ return "AMF_EVENT_5GMM_TIMER";
117
+ case AMF_EVENT_5GSM_MESSAGE:
118
+ return "AMF_EVENT_5GSM_MESSAGE";
119
+ case AMF_EVENT_5GSM_TIMER:
120
+ return "AMF_EVENT_5GSM_TIMER";
121
122
- default:
123
- break;
124
+ default:
125
+ break;
126
}
127
128
+ ogs_error("Unknown Event%d", e->h.id);
129
return "UNKNOWN_EVENT";
130
}
131
132
-void amf_sctp_event_push(amf_event_e id,
133
+void amf_sctp_event_push(int id,
134
void *sock, ogs_sockaddr_t *addr, ogs_pkbuf_t *pkbuf,
135
uint16_t max_num_of_istreams, uint16_t max_num_of_ostreams)
136
{
137
138
ogs_free(e->ngap.addr);
139
if (e->pkbuf)
140
ogs_pkbuf_free(e->pkbuf);
141
- amf_event_free(e);
142
+ ogs_event_free(e);
143
}
144
#if HAVE_USRSCTP
145
else {
146
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/event.h
Changed
100
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AMF_EVENT_H
10
#define AMF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
typedef struct ogs_nas_5gs_message_s ogs_nas_5gs_message_t;
26
typedef struct NGAP_NGAP_PDU ogs_ngap_message_t;
27
typedef long NGAP_ProcedureCode_t;
28
29
typedef struct amf_bearer_s amf_bearer_t;
30
31
typedef enum {
32
- AMF_EVT_BASE = OGS_FSM_USER_SIG,
33
+ AMF_EVENT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
34
35
- AMF_EVT_SBI_SERVER,
36
- AMF_EVT_SBI_CLIENT,
37
- AMF_EVT_SBI_TIMER,
38
-
39
- AMF_EVT_NGAP_MESSAGE,
40
- AMF_EVT_NGAP_TIMER,
41
- AMF_EVT_NGAP_LO_ACCEPT,
42
- AMF_EVT_NGAP_LO_SCTP_COMM_UP,
43
- AMF_EVT_NGAP_LO_CONNREFUSED,
44
-
45
- AMF_EVT_5GMM_MESSAGE,
46
- AMF_EVT_5GMM_TIMER,
47
- AMF_EVT_5GSM_MESSAGE,
48
- AMF_EVT_5GSM_TIMER,
49
+ AMF_EVENT_NGAP_MESSAGE,
50
+ AMF_EVENT_NGAP_TIMER,
51
+ AMF_EVENT_NGAP_LO_ACCEPT,
52
+ AMF_EVENT_NGAP_LO_SCTP_COMM_UP,
53
+ AMF_EVENT_NGAP_LO_CONNREFUSED,
54
+
55
+ AMF_EVENT_5GMM_MESSAGE,
56
+ AMF_EVENT_5GMM_TIMER,
57
+ AMF_EVENT_5GSM_MESSAGE,
58
+ AMF_EVENT_5GSM_TIMER,
59
60
- AMF_EVT_TOP,
61
+ MAX_NUM_OF_AMF_EVENT,
62
63
} amf_event_e;
64
65
typedef struct amf_event_s {
66
- int id;
67
- ogs_pkbuf_t *pkbuf;
68
- int timer_id;
69
-
70
- struct {
71
- ogs_sbi_request_t *request;
72
- ogs_sbi_response_t *response;
73
- void *data;
74
+ ogs_event_t h;
75
76
- ogs_sbi_message_t *message;
77
- } sbi;
78
+ ogs_pkbuf_t *pkbuf;
79
80
struct {
81
ogs_sock_t *sock;
82
83
ogs_timer_t *timer;
84
} amf_event_t;
85
86
-void amf_event_init(void);
87
-void amf_event_final(void);
88
-
89
-amf_event_t *amf_event_new(amf_event_e id);
90
-void amf_event_free(amf_event_t *e);
91
+amf_event_t *amf_event_new(int id);
92
93
const char *amf_event_get_name(amf_event_t *e);
94
95
-void amf_sctp_event_push(amf_event_e id,
96
+void amf_sctp_event_push(int id,
97
void *sock, ogs_sockaddr_t *addr, ogs_pkbuf_t *pkbuf,
98
uint16_t max_num_of_istreams, uint16_t max_num_of_ostreams);
99
100
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/gmm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/gmm-sm.c
Changed
207
1
2
amf_ue = e->amf_ue;
3
ogs_assert(amf_ue);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
AMF_UE_CLEAR_PAGING_INFO(amf_ue);
9
AMF_UE_CLEAR_N2_TRANSFER(amf_ue, pdu_session_resource_setup_request);
10
11
ogs_assert(amf_ue);
12
}
13
14
- switch (e->id) {
15
+ switch (e->h.id) {
16
case OGS_FSM_ENTRY_SIG:
17
break;
18
case OGS_FSM_EXIT_SIG:
19
break;
20
21
- case AMF_EVT_5GMM_MESSAGE:
22
+ case AMF_EVENT_5GMM_MESSAGE:
23
nas_message = e->nas.message;
24
ogs_assert(nas_message);
25
26
27
}
28
break;
29
30
- case AMF_EVT_5GMM_TIMER:
31
- switch (e->timer_id) {
32
+ case AMF_EVENT_5GMM_TIMER:
33
+ switch (e->h.timer_id) {
34
case AMF_TIMER_T3513:
35
if (amf_ue->t3513.retry_count >=
36
amf_timer_cfg(AMF_TIMER_T3513)->max_count) {
37
38
39
default:
40
ogs_error("Unknown timer%s:%d",
41
- amf_timer_get_name(e->timer_id), e->timer_id);
42
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
43
}
44
break;
45
46
- case AMF_EVT_SBI_CLIENT:
47
- sbi_response = e->sbi.response;
48
+ case OGS_EVENT_SBI_CLIENT:
49
+ sbi_response = e->h.sbi.response;
50
ogs_assert(sbi_response);
51
- sbi_message = e->sbi.message;
52
+ sbi_message = e->h.sbi.message;
53
ogs_assert(sbi_message);
54
55
SWITCH(sbi_message->h.service.name)
56
57
ogs_assert(amf_ue);
58
}
59
60
- switch (e->id) {
61
+ switch (e->h.id) {
62
case OGS_FSM_ENTRY_SIG:
63
break;
64
case OGS_FSM_EXIT_SIG:
65
break;
66
- case AMF_EVT_5GMM_MESSAGE:
67
+ case AMF_EVENT_5GMM_MESSAGE:
68
nas_message = e->nas.message;
69
ogs_assert(nas_message);
70
71
72
break;
73
}
74
break;
75
- case AMF_EVT_5GMM_TIMER:
76
- switch (e->timer_id) {
77
+ case AMF_EVENT_5GMM_TIMER:
78
+ switch (e->h.timer_id) {
79
case AMF_TIMER_T3560:
80
if (amf_ue->t3560.retry_count >=
81
amf_timer_cfg(AMF_TIMER_T3560)->max_count) {
82
83
break;
84
default:
85
ogs_error("%s Unknown timer%s:%d", amf_ue->suci,
86
- amf_timer_get_name(e->timer_id), e->timer_id);
87
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
88
break;
89
}
90
break;
91
- case AMF_EVT_SBI_CLIENT:
92
- sbi_response = e->sbi.response;
93
+ case OGS_EVENT_SBI_CLIENT:
94
+ sbi_response = e->h.sbi.response;
95
ogs_assert(sbi_response);
96
- sbi_message = e->sbi.message;
97
+ sbi_message = e->h.sbi.message;
98
ogs_assert(sbi_message);
99
100
SWITCH(sbi_message->h.service.name)
101
102
amf_ue = e->amf_ue;
103
ogs_assert(amf_ue);
104
105
- switch (e->id) {
106
+ switch (e->h.id) {
107
case OGS_FSM_ENTRY_SIG:
108
CLEAR_AMF_UE_TIMER(amf_ue->t3560);
109
ogs_assert(OGS_OK ==
110
111
break;
112
case OGS_FSM_EXIT_SIG:
113
break;
114
- case AMF_EVT_5GMM_MESSAGE:
115
+ case AMF_EVENT_5GMM_MESSAGE:
116
nas_message = e->nas.message;
117
ogs_assert(nas_message);
118
119
120
break;
121
}
122
break;
123
- case AMF_EVT_5GMM_TIMER:
124
- switch (e->timer_id) {
125
+ case AMF_EVENT_5GMM_TIMER:
126
+ switch (e->h.timer_id) {
127
case AMF_TIMER_T3560:
128
if (amf_ue->t3560.retry_count >=
129
amf_timer_cfg(AMF_TIMER_T3560)->max_count) {
130
131
break;
132
default:
133
ogs_error("Unknown timer%s:%d",
134
- amf_timer_get_name(e->timer_id), e->timer_id);
135
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
136
break;
137
}
138
break;
139
140
ogs_assert(amf_ue);
141
}
142
143
- switch (e->id) {
144
+ switch (e->h.id) {
145
case OGS_FSM_ENTRY_SIG:
146
break;
147
case OGS_FSM_EXIT_SIG:
148
break;
149
150
- case AMF_EVT_SBI_CLIENT:
151
- sbi_response = e->sbi.response;
152
+ case OGS_EVENT_SBI_CLIENT:
153
+ sbi_response = e->h.sbi.response;
154
ogs_assert(sbi_response);
155
- sbi_message = e->sbi.message;
156
+ sbi_message = e->h.sbi.message;
157
ogs_assert(sbi_message);
158
159
SWITCH(sbi_message->h.service.name)
160
161
END
162
break;
163
164
- case AMF_EVT_5GMM_MESSAGE:
165
+ case AMF_EVENT_5GMM_MESSAGE:
166
nas_message = e->nas.message;
167
ogs_assert(nas_message);
168
169
170
break;
171
}
172
break;
173
- case AMF_EVT_5GMM_TIMER:
174
- switch (e->timer_id) {
175
+ case AMF_EVENT_5GMM_TIMER:
176
+ switch (e->h.timer_id) {
177
case AMF_TIMER_T3550:
178
if (amf_ue->t3550.retry_count >=
179
amf_timer_cfg(AMF_TIMER_T3550)->max_count) {
180
181
break;
182
default:
183
ogs_error("%s Unknown timer%s:%d", amf_ue->suci,
184
- amf_timer_get_name(e->timer_id), e->timer_id);
185
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
186
break;
187
}
188
break;
189
190
ogs_assert(amf_ue);
191
}
192
193
- switch (e->id) {
194
+ switch (e->h.id) {
195
case OGS_FSM_ENTRY_SIG:
196
AMF_UE_CLEAR_PAGING_INFO(amf_ue);
197
AMF_UE_CLEAR_N2_TRANSFER(amf_ue, pdu_session_resource_setup_request);
198
199
case OGS_FSM_EXIT_SIG:
200
break;
201
202
- case AMF_EVT_5GMM_MESSAGE:
203
+ case AMF_EVENT_5GMM_MESSAGE:
204
nas_message = e->nas.message;
205
ogs_assert(nas_message);
206
207
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
amf_context_init();
12
- amf_event_init();
13
14
rv = ogs_sbi_context_parse_config("amf", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- amf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
amf_context_final();
27
ogs_sbi_context_final();
28
ogs_metrics_context_final();
29
-
30
- amf_event_final(); /* Destroy event */
31
}
32
33
static void amf_main(void *data)
34
35
ogs_fsm_t amf_sm;
36
int rv;
37
38
- ogs_fsm_create(&amf_sm, amf_state_initial, amf_state_final);
39
- ogs_fsm_init(&amf_sm, 0);
40
+ ogs_fsm_init(&amf_sm, amf_state_initial, amf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&amf_sm, e);
48
- amf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&amf_sm, 0);
55
- ogs_fsm_delete(&amf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/meson.build
Changed
16
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
namf-handler.c
9
sbi-path.c
10
11
- nf-sm.c
12
-
13
ngap-sctp.c
14
ngap-build.c
15
ngap-handler.c
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/ngap-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/ngap-path.c
Changed
46
1
2
if (duration) {
3
amf_event_t *e = NULL;
4
5
- e = amf_event_new(AMF_EVT_NGAP_TIMER);
6
+ e = amf_event_new(AMF_EVENT_NGAP_TIMER);
7
ogs_assert(e);
8
e->timer = ogs_timer_add(
9
ogs_app()->timer_mgr, amf_timer_ng_delayed_send, e);
10
11
ogs_assert(amf_ue);
12
ogs_assert(esmbuf);
13
14
- e = amf_event_new(AMF_EVT_5GSM_MESSAGE);
15
+ e = amf_event_new(AMF_EVENT_5GSM_MESSAGE);
16
ogs_assert(e);
17
e->amf_ue = amf_ue;
18
e->pkbuf = esmbuf;
19
20
if (rv != OGS_OK) {
21
ogs_error("ogs_queue_push() failed:%d", (int)rv);
22
ogs_pkbuf_free(e->pkbuf);
23
- amf_event_free(e);
24
+ ogs_event_free(e);
25
}
26
27
return rv;
28
29
if (h->extended_protocol_discriminator ==
30
OGS_NAS_EXTENDED_PROTOCOL_DISCRIMINATOR_5GMM) {
31
int rv;
32
- e = amf_event_new(AMF_EVT_5GMM_MESSAGE);
33
+ e = amf_event_new(AMF_EVENT_5GMM_MESSAGE);
34
if (!e) {
35
ogs_error("ngap_send_to_nas() failed");
36
ogs_pkbuf_free(nasbuf);
37
38
if (rv != OGS_OK) {
39
ogs_error("ngap_send_to_nas() failed:%d", (int)rv);
40
ogs_pkbuf_free(e->pkbuf);
41
- amf_event_free(e);
42
+ ogs_event_free(e);
43
}
44
return rv;
45
} else if (h->extended_protocol_discriminator ==
46
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/ngap-sctp.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/ngap-sctp.c
Changed
46
1
2
ogs_info("gNB-N2 accepted%s:%d in ng-path module",
3
OGS_ADDR(addr, buf), OGS_PORT(addr));
4
5
- ngap_event_push(AMF_EVT_NGAP_LO_ACCEPT,
6
+ ngap_event_push(AMF_EVENT_NGAP_LO_ACCEPT,
7
new, addr, NULL, 0, 0);
8
} else {
9
ogs_log_message(OGS_LOG_ERROR, ogs_socket_errno, "accept() failed");
10
11
ogs_assert(addr);
12
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
13
14
- ngap_event_push(AMF_EVT_NGAP_LO_SCTP_COMM_UP,
15
+ ngap_event_push(AMF_EVENT_NGAP_LO_SCTP_COMM_UP,
16
sock, addr, NULL,
17
not->sn_assoc_change.sac_inbound_streams,
18
not->sn_assoc_change.sac_outbound_streams);
19
20
ogs_assert(addr);
21
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
22
23
- ngap_event_push(AMF_EVT_NGAP_LO_CONNREFUSED,
24
+ ngap_event_push(AMF_EVENT_NGAP_LO_CONNREFUSED,
25
sock, addr, NULL, 0, 0);
26
}
27
break;
28
29
ogs_assert(addr);
30
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
31
32
- ngap_event_push(AMF_EVT_NGAP_LO_CONNREFUSED,
33
+ ngap_event_push(AMF_EVENT_NGAP_LO_CONNREFUSED,
34
sock, addr, NULL, 0, 0);
35
break;
36
37
38
ogs_assert(addr);
39
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
40
41
- ngap_event_push(AMF_EVT_NGAP_MESSAGE, sock, addr, pkbuf, 0, 0);
42
+ ngap_event_push(AMF_EVENT_NGAP_MESSAGE, sock, addr, pkbuf, 0, 0);
43
return;
44
} else {
45
if (ogs_socket_errno != OGS_EAGAIN) {
46
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/ngap-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/ngap-sm.c
Changed
45
1
2
gnb = e->gnb;
3
ogs_assert(gnb);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
break;
9
case OGS_FSM_EXIT_SIG:
10
break;
11
- case AMF_EVT_NGAP_MESSAGE:
12
+ case AMF_EVENT_NGAP_MESSAGE:
13
pdu = e->ngap.message;
14
ogs_assert(pdu);
15
16
17
}
18
19
break;
20
- case AMF_EVT_NGAP_TIMER:
21
- switch (e->timer_id) {
22
+ case AMF_EVENT_NGAP_TIMER:
23
+ switch (e->h.timer_id) {
24
case AMF_TIMER_NG_DELAYED_SEND:
25
ogs_assert(e->ran_ue);
26
ogs_assert(e->pkbuf);
27
28
break;
29
default:
30
ogs_error("Unknown timer%s:%d",
31
- amf_timer_get_name(e->timer_id), e->timer_id);
32
+ amf_timer_get_name(e->h.timer_id), e->h.timer_id);
33
break;
34
}
35
break;
36
37
38
amf_sm_debug(e);
39
40
- switch (e->id) {
41
+ switch (e->h.id) {
42
case OGS_FSM_ENTRY_SIG:
43
break;
44
case OGS_FSM_EXIT_SIG:
45
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nnrf-build.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/nnrf-build.c
Changed
50
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
#include "nnrf-build.h"
11
12
-ogs_sbi_request_t *amf_nnrf_nfm_build_register(void)
13
-{
14
- ogs_sbi_nf_instance_t *nf_instance = NULL;
15
-
16
- ogs_sbi_message_t message;
17
- ogs_sbi_request_t *request = NULL;
18
-
19
- OpenAPI_nf_profile_t *NFProfile = NULL;
20
-
21
- nf_instance = ogs_sbi_self()->nf_instance;
22
- ogs_assert(nf_instance);
23
- ogs_assert(nf_instance->id);
24
-
25
- memset(&message, 0, sizeof(message));
26
- message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
27
- message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NNRF_NFM;
28
- message.h.api.version = (char *)OGS_SBI_API_V1;
29
- message.h.resource.component0 =
30
- (char *)OGS_SBI_RESOURCE_NAME_NF_INSTANCES;
31
- message.h.resource.component1 = nf_instance->id;
32
-
33
- message.http.content_encoding = (char*)ogs_sbi_self()->content_encoding;
34
-
35
- NFProfile = ogs_nnrf_nfm_build_nf_profile();
36
- ogs_expect_or_return_val(NFProfile, NULL);
37
-
38
- message.NFProfile = NFProfile;
39
-
40
- request = ogs_sbi_build_request(&message);
41
-
42
- ogs_sbi_nnrf_free_nf_profile(NFProfile);
43
-
44
- return request;
45
-}
46
-
47
ogs_sbi_request_t *amf_nnrf_disc_build_discover(
48
char *nrf_id,
49
OpenAPI_nf_type_e target_nf_type, OpenAPI_nf_type_e requester_nf_type)
50
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nnrf-build.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/nnrf-build.h
Changed
17
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-ogs_sbi_request_t *amf_nnrf_nfm_build_register(void);
13
-
14
ogs_sbi_request_t *amf_nnrf_disc_build_discover(
15
char *nrf_id,
16
OpenAPI_nf_type_e target_nf_type, OpenAPI_nf_type_e requester_nf_type);
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/nnrf-handler.c
Changed
328
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ngap-path.h"
10
#include "nnrf-handler.h"
11
12
-void amf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->is_heart_beat_timer == true)
31
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
32
-}
33
-
34
-void amf_nnrf_handle_nf_status_subscribe(
35
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
36
-{
37
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
38
- ogs_sbi_client_t *client = NULL;
39
-
40
- ogs_assert(recvmsg);
41
- ogs_assert(subscription);
42
- client = subscription->client;
43
- ogs_assert(client);
44
-
45
- SubscriptionData = recvmsg->SubscriptionData;
46
- if (!SubscriptionData) {
47
- ogs_error("No SubscriptionData");
48
- return;
49
- }
50
-
51
- if (!SubscriptionData->subscription_id) {
52
- ogs_error("No SubscriptionId");
53
- return;
54
- }
55
- ogs_sbi_subscription_set_id(
56
- subscription, SubscriptionData->subscription_id);
57
-
58
- if (SubscriptionData->validity_time) {
59
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
60
- ogs_time_t time, duration;
61
- if (ogs_sbi_time_from_string(
62
- &time, SubscriptionData->validity_time) == true) {
63
- duration = time - ogs_time_now();
64
- if (duration < VALIDITY_MINIMUM) {
65
- duration = VALIDITY_MINIMUM;
66
- ogs_warn("%s Forced to %lld seconds", subscription->id,
67
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
68
- }
69
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
70
- amf_timer_subscription_validity, subscription);
71
- ogs_assert(subscription->t_validity);
72
- ogs_timer_start(subscription->t_validity, duration);
73
- } else {
74
- ogs_error("Cannot parse validitiyTime %s",
75
- SubscriptionData->validity_time);
76
- }
77
- }
78
-}
79
-
80
-bool amf_nnrf_handle_nf_status_notify(
81
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
82
-{
83
- int rv;
84
- bool handled;
85
-
86
- ogs_sbi_response_t *response = NULL;
87
- OpenAPI_notification_data_t *NotificationData = NULL;
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_sbi_message_t message;
91
- ogs_sbi_header_t header;
92
-
93
- ogs_assert(stream);
94
- ogs_assert(recvmsg);
95
-
96
- NotificationData = recvmsg->NotificationData;
97
- if (!NotificationData) {
98
- ogs_error("No NotificationData");
99
- ogs_assert(true ==
100
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
101
- recvmsg, "No NotificationData", NULL));
102
- return false;
103
- }
104
-
105
- if (!NotificationData->nf_instance_uri) {
106
- ogs_error("No nfInstanceUri");
107
- ogs_assert(true ==
108
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
109
- recvmsg, "No nfInstanceUri", NULL));
110
- return false;
111
- }
112
-
113
- memset(&header, 0, sizeof(header));
114
- header.uri = NotificationData->nf_instance_uri;
115
-
116
- rv = ogs_sbi_parse_header(&message, &header);
117
- if (rv != OGS_OK) {
118
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
122
- return false;
123
- }
124
-
125
- if (!message.h.resource.component1) {
126
- ogs_error("No nfInstanceId %s", header.uri);
127
- ogs_assert(true ==
128
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
129
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
130
- ogs_sbi_header_free(&header);
131
- return false;
132
- }
133
-
134
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
135
- ogs_warn("%s The notification is not allowed",
136
- message.h.resource.component1);
137
- ogs_assert(true ==
138
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
139
- recvmsg, "The notification is not allowed",
140
- message.h.resource.component1));
141
- ogs_sbi_header_free(&header);
142
- return false;
143
- }
144
-
145
- if (NotificationData->event ==
146
- OpenAPI_notification_event_type_NF_REGISTERED) {
147
-
148
- OpenAPI_nf_profile_t *NFProfile = NULL;
149
-
150
- NFProfile = NotificationData->nf_profile;
151
- if (!NFProfile) {
152
- ogs_error("No NFProfile");
153
- ogs_assert(true ==
154
- ogs_sbi_server_send_error(
155
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
156
- recvmsg, "No NFProfile", NULL));
157
- ogs_sbi_header_free(&header);
158
- return false;
159
- }
160
-
161
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
162
- if (!nf_instance) {
163
- nf_instance = ogs_sbi_nf_instance_add();
164
- ogs_assert(nf_instance);
165
- ogs_sbi_nf_instance_set_id(nf_instance,
166
- message.h.resource.component1);
167
-
168
- amf_nf_fsm_init(nf_instance);
169
-
170
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
171
-
172
- } else {
173
- OGS_FSM_TRAN(&nf_instance->sm, amf_nf_state_registered);
174
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
175
-
176
- ogs_warn("%s (NRF-notify) NF has already been added",
177
- message.h.resource.component1);
178
-
179
- }
180
-
181
- handled = ogs_sbi_nnrf_handle_nf_profile(
182
- nf_instance, NFProfile, stream, recvmsg);
183
- if (!handled) {
184
- AMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
185
- ogs_sbi_header_free(&header);
186
- return false;
187
- }
188
-
189
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
190
-
191
- handled = ogs_sbi_client_associate(nf_instance);
192
- if (!handled) {
193
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
194
- ogs_assert(true ==
195
- ogs_sbi_server_send_error(stream,
196
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
197
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
198
- AMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
199
- ogs_sbi_header_free(&header);
200
- return false;
201
- }
202
-
203
- } else if (NotificationData->event ==
204
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
205
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
206
- if (nf_instance) {
207
- AMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
208
- } else {
209
- ogs_warn("%s (NRF-notify) Not found",
210
- message.h.resource.component1);
211
- ogs_assert(true ==
212
- ogs_sbi_server_send_error(stream,
213
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
214
- recvmsg, "Not found", message.h.resource.component1));
215
- ogs_sbi_header_free(&header);
216
- return false;
217
- }
218
- } else {
219
- char *eventstr = OpenAPI_notification_event_type_ToString(
220
- NotificationData->event);
221
- ogs_error("Not supported event %d:%s",
222
- NotificationData->event, eventstr ? eventstr : "Unknown");
223
- ogs_assert(true ==
224
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
225
- recvmsg, "Not supported event",
226
- eventstr ? eventstr : "Unknown"));
227
- ogs_sbi_header_free(&header);
228
- return false;
229
- }
230
-
231
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
232
- ogs_assert(response);
233
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
234
-
235
- ogs_sbi_header_free(&header);
236
- return true;
237
-}
238
-
239
void amf_nnrf_handle_nf_discover(
240
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
241
{
242
243
return;
244
}
245
246
- amf_nnrf_handle_nf_discover_search_result(
247
+ ogs_nnrf_handle_nf_discover_search_result(
248
sbi_object, target_nf_type, discovery_option, SearchResult);
249
250
amf_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
251
252
ogs_expect(true == amf_sbi_send_request(sbi_object, target_nf_type, xact));
253
}
254
-
255
-void amf_nnrf_handle_nf_discover_search_result(
256
- ogs_sbi_object_t *sbi_object,
257
- OpenAPI_nf_type_e target_nf_type,
258
- ogs_sbi_discovery_option_t *discovery_option,
259
- OpenAPI_search_result_t *SearchResult)
260
-{
261
- bool handled;
262
-
263
- OpenAPI_lnode_t *node = NULL;
264
- ogs_sbi_nf_instance_t *nf_instance = NULL;
265
-
266
- ogs_assert(sbi_object);
267
- ogs_assert(SearchResult);
268
-
269
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
270
- OpenAPI_nf_profile_t *NFProfile = NULL;
271
-
272
- if (!node->data) continue;
273
-
274
- NFProfile = node->data;
275
-
276
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
277
- if (!nf_instance) {
278
- nf_instance = ogs_sbi_nf_instance_add();
279
- ogs_assert(nf_instance);
280
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
281
-
282
- amf_nf_fsm_init(nf_instance);
283
-
284
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
285
- } else {
286
- OGS_FSM_TRAN(&nf_instance->sm, amf_nf_state_registered);
287
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
288
-
289
- ogs_warn("%s (NF-discover) NF has already been added",
290
- NFProfile->nf_instance_id);
291
- }
292
-
293
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
294
- handled = ogs_sbi_nnrf_handle_nf_profile(
295
- nf_instance, NFProfile, NULL, NULL);
296
- if (!handled) {
297
- ogs_error("ogs_sbi_nnrf_handle_nf_profile() failed %s",
298
- nf_instance->id);
299
- AMF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
300
- continue;
301
- }
302
-
303
- handled = ogs_sbi_client_associate(nf_instance);
304
- if (!handled) {
305
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
306
- AMF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
307
- continue;
308
- }
309
-
310
- /* TIME : Update validity from NRF */
311
- if (SearchResult->is_validity_period &&
312
- SearchResult->validity_period) {
313
- nf_instance->time.validity_duration =
314
- SearchResult->validity_period;
315
-
316
- ogs_assert(nf_instance->t_validity);
317
- ogs_timer_start(nf_instance->t_validity,
318
- ogs_time_from_sec(nf_instance->time.validity_duration));
319
-
320
- } else
321
- ogs_warn("%s NF Instance validity-time should not 0",
322
- nf_instance->id);
323
-
324
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
325
- }
326
- }
327
-}
328
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/nnrf-handler.h
Changed
30
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void amf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void amf_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool amf_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void amf_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
-void amf_nnrf_handle_nf_discover_search_result(
23
- ogs_sbi_object_t *sbi_object,
24
- OpenAPI_nf_type_e target_nf_type,
25
- ogs_sbi_discovery_option_t *discovery_option,
26
- OpenAPI_search_result_t *SearchResult);
27
28
#ifdef __cplusplus
29
}
30
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/nsmf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/nsmf-handler.c
Changed
109
1
2
amf_sess_t *sess, int state, ogs_sbi_message_t *recvmsg)
3
{
4
amf_ue_t *amf_ue = NULL;
5
+ ran_ue_t *ran_ue = NULL;
6
+
7
ogs_assert(sess);
8
amf_ue = sess->amf_ue;
9
ogs_assert(amf_ue);
10
11
if (!n2smbuf) {
12
ogs_error("%s:%d No N2 SM Content",
13
amf_ue->supi, sess->psi);
14
- ogs_assert(OGS_OK ==
15
+ ogs_expect(OGS_OK ==
16
ngap_send_error_indication2(amf_ue,
17
NGAP_Cause_PR_protocol,
18
NGAP_CauseProtocol_semantic_error));
19
20
if (!n2smbuf) {
21
ogs_error("%s:%d No N2 SM Content",
22
amf_ue->supi, sess->psi);
23
- ogs_assert(OGS_OK ==
24
+ ogs_expect(OGS_OK ==
25
ngap_send_error_indication2(amf_ue,
26
NGAP_Cause_PR_protocol,
27
NGAP_CauseProtocol_semantic_error));
28
29
default:
30
ogs_error("Not implemented %d",
31
SmContextUpdatedData->n2_sm_info_type);
32
- ogs_assert(OGS_OK ==
33
+ ogs_expect(OGS_OK ==
34
ngap_send_error_indication2(amf_ue,
35
NGAP_Cause_PR_protocol,
36
NGAP_CauseProtocol_semantic_error));
37
38
39
} else if (state == AMF_REMOVE_S1_CONTEXT_BY_LO_CONNREFUSED) {
40
if (AMF_SESSION_SYNC_DONE(amf_ue, state)) {
41
- ran_ue_t *ran_ue = ran_ue_cycle(amf_ue->ran_ue);
42
+ ran_ue = ran_ue_cycle(amf_ue->ran_ue);
43
44
amf_ue_deassociate(amf_ue);
45
46
47
} else if (state == AMF_REMOVE_S1_CONTEXT_BY_RESET_PARTIAL) {
48
if (AMF_SESSION_SYNC_DONE(amf_ue, state)) {
49
ran_ue_t *iter = NULL;
50
- ran_ue_t *ran_ue = ran_ue_cycle(amf_ue->ran_ue);
51
+ ran_ue = ran_ue_cycle(amf_ue->ran_ue);
52
53
amf_ue_deassociate(amf_ue);
54
55
56
}
57
}
58
} else {
59
- amf_ue_t *amf_ue = NULL;
60
-
61
OpenAPI_sm_context_update_error_t *SmContextUpdateError = NULL;
62
OpenAPI_ref_to_binary_data_t *n1SmMsg = NULL;
63
ogs_pkbuf_t *n1smbuf = NULL;
64
65
if (!SmContextUpdateError) {
66
ogs_error("%d:%d No SmContextUpdateError %d",
67
sess->psi, sess->pti, recvmsg->res_status);
68
- ogs_assert(OGS_OK ==
69
+ ogs_expect(OGS_OK ==
70
ngap_send_error_indication2(amf_ue,
71
NGAP_Cause_PR_protocol, NGAP_CauseProtocol_semantic_error));
72
73
74
if (!SmContextUpdateError->error) {
75
ogs_error("%d:%d No Error %d",
76
sess->psi, sess->pti, recvmsg->res_status);
77
- ogs_assert(OGS_OK ==
78
+ ogs_expect(OGS_OK ==
79
ngap_send_error_indication2(amf_ue,
80
NGAP_Cause_PR_protocol, NGAP_CauseProtocol_semantic_error));
81
82
83
n2SmInfo = SmContextUpdateError->n2_sm_info;
84
if (!n2SmInfo || !n2SmInfo->content_id) {
85
ogs_error("%d:%d No N2 SM Message", sess->psi, sess->pti);
86
- ogs_assert(OGS_OK ==
87
+ ogs_expect(OGS_OK ==
88
ngap_send_error_indication2(amf_ue,
89
NGAP_Cause_PR_protocol, NGAP_CauseProtocol_semantic_error));
90
91
92
if (!n2smbuf) {
93
ogs_error("%d:%d No N2 SM Content %s",
94
sess->psi, sess->pti, n2SmInfo->content_id);
95
- ogs_assert(OGS_OK ==
96
+ ogs_expect(OGS_OK ==
97
ngap_send_error_indication2(amf_ue,
98
NGAP_Cause_PR_protocol, NGAP_CauseProtocol_semantic_error));
99
100
101
102
ogs_error("%d:%d Error Indication", sess->psi, sess->pti);
103
104
- ogs_assert(OGS_OK ==
105
+ ogs_expect(OGS_OK ==
106
ngap_send_error_indication2(amf_ue,
107
NGAP_Cause_PR_protocol, NGAP_CauseProtocol_semantic_error));
108
109
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/sbi-path.c
Changed
93
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = amf_event_new(AMF_EVT_SBI_SERVER);
13
+ e = amf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- amf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = amf_event_new(AMF_EVT_SBI_CLIENT);
35
+ e = amf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- amf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_AUSF);
58
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDM);
59
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_PCF);
60
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_SMF);
61
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_NSSF);
62
+
63
/* Add SELF NF instance */
64
nf_instance = ogs_sbi_self()->nf_instance;
65
ogs_assert(nf_instance);
66
67
68
/* NFRegister is sent and the response is received
69
* by the above client callback. */
70
- amf_nf_fsm_init(nf_instance);
71
+ ogs_sbi_nf_fsm_init(nf_instance);
72
}
73
74
- /* Timer expiration handler of client wait timer */
75
- ogs_sbi_self()->client_wait_expire = amf_timer_sbi_client_wait_expire;
76
-
77
- /* NF register state in NF state machine */
78
- ogs_sbi_self()->nf_state_registered =
79
- (ogs_fsm_handler_t)amf_nf_state_registered;
80
-
81
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
82
return OGS_ERROR;
83
84
85
goto cleanup;
86
}
87
88
- amf_nnrf_handle_nf_discover_search_result(
89
+ ogs_nnrf_handle_nf_discover_search_result(
90
&sess->sbi, OpenAPI_nf_type_SMF, NULL, message.SearchResult);
91
92
amf_sbi_select_nf(&sess->sbi, OpenAPI_nf_type_SMF, NULL);
93
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/sbi-path.h
Changed
8
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/timer.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/timer.c
Changed
240
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "context.h"
10
11
static amf_timer_cfg_t g_amf_timer_cfgMAX_NUM_OF_AMF_TIMER = {
12
- AMF_TIMER_SBI_CLIENT_WAIT =
13
- { .duration = ogs_time_from_msec(500) },
14
-
15
/* Paging procedure for EPS services initiated */
16
AMF_TIMER_T3513 =
17
- { .max_count = 2, .duration = ogs_time_from_sec(2) },
18
+ { .have = true, .max_count = 2, .duration = ogs_time_from_sec(2) },
19
20
/* DEREGISTRATION REQUEST sent */
21
AMF_TIMER_T3522 =
22
- { .max_count = 4, .duration = ogs_time_from_sec(3) },
23
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(3) },
24
25
/* REGISTRATION ACCEPT sent */
26
AMF_TIMER_T3550 =
27
- { .max_count = 4, .duration = ogs_time_from_sec(6) },
28
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(6) },
29
30
/* CONFIGURATION UPDATE COMMAND sent */
31
AMF_TIMER_T3555 =
32
- { .max_count = 4, .duration = ogs_time_from_sec(6) },
33
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(6) },
34
35
/* AUTHENTICATION REQUEST sent
36
* SECURITY MODE COMMAND sent */
37
AMF_TIMER_T3560 =
38
- { .max_count = 4, .duration = ogs_time_from_sec(6) },
39
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(6) },
40
41
/* IDENTITY REQUEST sent */
42
AMF_TIMER_T3570 =
43
- { .max_count = 4, .duration = ogs_time_from_sec(3) },
44
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(3) },
45
46
AMF_TIMER_NG_HOLDING =
47
- { .duration = ogs_time_from_sec(30) },
48
+ { .have = true, .duration = ogs_time_from_sec(30) },
49
};
50
51
static void gmm_timer_event_send(
52
53
amf_timer_cfg_t *amf_timer_cfg(amf_timer_e id)
54
{
55
ogs_assert(id < MAX_NUM_OF_AMF_TIMER);
56
+ if (g_amf_timer_cfgid.have != true) {
57
+ ogs_fatal("No timer%d configuration", id);
58
+ ogs_assert_if_reached();
59
+ }
60
return &g_amf_timer_cfgid;
61
}
62
63
-const char *amf_timer_get_name(amf_timer_e id)
64
+const char *amf_timer_get_name(int timer_id)
65
{
66
- switch (id) {
67
- case AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
68
- return "AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
69
- case AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
70
- return "AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
71
- case AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
72
- return "AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
73
- case AMF_TIMER_NF_INSTANCE_VALIDITY:
74
- return "AMF_TIMER_NF_INSTANCE_VALIDITY";
75
- case AMF_TIMER_SUBSCRIPTION_VALIDITY:
76
- return "AMF_TIMER_SUBSCRIPTION_VALIDITY";
77
- case AMF_TIMER_SBI_CLIENT_WAIT:
78
- return "AMF_TIMER_SBI_CLIENT_WAIT";
79
+ switch (timer_id) {
80
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
81
+ return OGS_TIMER_NAME_NF_INSTANCE_REGISTRATION_INTERVAL;
82
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
83
+ return OGS_TIMER_NAME_NF_INSTANCE_HEARTBEAT_INTERVAL;
84
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
85
+ return OGS_TIMER_NAME_NF_INSTANCE_NO_HEARTBEAT;
86
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
87
+ return OGS_TIMER_NAME_NF_INSTANCE_VALIDITY;
88
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
89
+ return OGS_TIMER_NAME_SUBSCRIPTION_VALIDITY;
90
+ case OGS_TIMER_SBI_CLIENT_WAIT:
91
+ return OGS_TIMER_NAME_SBI_CLIENT_WAIT;
92
case AMF_TIMER_NG_DELAYED_SEND:
93
return "AMF_TIMER_NG_DELAYED_SEND";
94
case AMF_TIMER_T3513:
95
96
case AMF_TIMER_NG_HOLDING:
97
return "AMF_TIMER_NG_HOLDING";
98
default:
99
- break;
100
+ break;
101
}
102
103
+ ogs_error("Unknown Timer%d", timer_id);
104
return "UNKNOWN_TIMER";
105
}
106
107
108
amf_event_t *e = data;
109
ogs_assert(e);
110
111
- e->timer_id = AMF_TIMER_NG_DELAYED_SEND;
112
+ e->h.timer_id = AMF_TIMER_NG_DELAYED_SEND;
113
114
rv = ogs_queue_push(ogs_app()->queue, e);
115
if (rv != OGS_OK) {
116
ogs_error("ogs_queue_push() failed:%d", (int)rv);
117
ogs_timer_delete(e->timer);
118
- amf_event_free(e);
119
+ ogs_event_free(e);
120
}
121
}
122
123
-static void sbi_timer_send_event(int timer_id, void *data)
124
-{
125
- int rv;
126
- amf_event_t *e = NULL;
127
- ogs_assert(data);
128
-
129
- switch (timer_id) {
130
- case AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
131
- case AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
132
- case AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
133
- case AMF_TIMER_NF_INSTANCE_VALIDITY:
134
- case AMF_TIMER_SUBSCRIPTION_VALIDITY:
135
- e = amf_event_new(AMF_EVT_SBI_TIMER);
136
- ogs_assert(e);
137
- e->timer_id = timer_id;
138
- e->sbi.data = data;
139
- break;
140
- case AMF_TIMER_SBI_CLIENT_WAIT:
141
- e = amf_event_new(AMF_EVT_SBI_TIMER);
142
- if (!e) {
143
- ogs_sbi_xact_t *sbi_xact = data;
144
- ogs_assert(sbi_xact);
145
-
146
- ogs_error("sbi_timer_send_event() failed");
147
- ogs_sbi_xact_remove(sbi_xact);
148
- return;
149
- }
150
- e->timer_id = timer_id;
151
- e->sbi.data = data;
152
- break;
153
- default:
154
- ogs_fatal("Unknown timer id%d", timer_id);
155
- ogs_assert_if_reached();
156
- break;
157
- }
158
-
159
- rv = ogs_queue_push(ogs_app()->queue, e);
160
- if (rv != OGS_OK) {
161
- ogs_error("ogs_queue_push() failed %d in %s",
162
- (int)rv, amf_timer_get_name(e->timer_id));
163
- amf_event_free(e);
164
- }
165
-}
166
-
167
-void amf_timer_nf_instance_registration_interval(void *data)
168
-{
169
- sbi_timer_send_event(AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
170
-}
171
-
172
-void amf_timer_nf_instance_heartbeat_interval(void *data)
173
-{
174
- sbi_timer_send_event(AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
175
-}
176
-
177
-void amf_timer_nf_instance_no_heartbeat(void *data)
178
-{
179
- sbi_timer_send_event(AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
180
-}
181
-
182
-void amf_timer_nf_instance_validity(void *data)
183
-{
184
- sbi_timer_send_event(AMF_TIMER_NF_INSTANCE_VALIDITY, data);
185
-}
186
-
187
-void amf_timer_subscription_validity(void *data)
188
-{
189
- sbi_timer_send_event(AMF_TIMER_SUBSCRIPTION_VALIDITY, data);
190
-}
191
-
192
-void amf_timer_sbi_client_wait_expire(void *data)
193
-{
194
- sbi_timer_send_event(AMF_TIMER_SBI_CLIENT_WAIT, data);
195
-}
196
-
197
static void gmm_timer_event_send(
198
amf_timer_e timer_id, amf_ue_t *amf_ue)
199
{
200
201
amf_event_t *e = NULL;
202
ogs_assert(amf_ue);
203
204
- e = amf_event_new(AMF_EVT_5GMM_TIMER);
205
+ e = amf_event_new(AMF_EVENT_5GMM_TIMER);
206
ogs_assert(e);
207
- e->timer_id = timer_id;
208
+ e->h.timer_id = timer_id;
209
e->amf_ue = amf_ue;
210
211
rv = ogs_queue_push(ogs_app()->queue, e);
212
if (rv != OGS_OK) {
213
- ogs_error("ogs_queue_push() failed:%d", (int)rv);
214
- amf_event_free(e);
215
+ ogs_error("ogs_queue_push() failed:%d in %s",
216
+ (int)rv, amf_timer_get_name(timer_id));
217
+ ogs_event_free(e);
218
}
219
}
220
221
222
ogs_assert(data);
223
ran_ue = data;
224
225
- e = amf_event_new(AMF_EVT_NGAP_TIMER);
226
+ e = amf_event_new(AMF_EVENT_NGAP_TIMER);
227
ogs_assert(e);
228
229
- e->timer_id = AMF_TIMER_NG_HOLDING;
230
+ e->h.timer_id = AMF_TIMER_NG_HOLDING;
231
e->ran_ue = ran_ue;
232
233
rv = ogs_queue_push(ogs_app()->queue, e);
234
if (rv != OGS_OK) {
235
ogs_error("ogs_queue_push() failed:%d", (int)rv);
236
- amf_event_free(e);
237
+ ogs_event_free(e);
238
}
239
}
240
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/amf/timer.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/amf/timer.h
Changed
56
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AMF_TIMER_H
10
#define AMF_TIMER_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
18
19
/* forward declaration */
20
typedef enum {
21
- AMF_TIMER_BASE = 0,
22
-
23
- AMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
24
- AMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
25
- AMF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
26
- AMF_TIMER_NF_INSTANCE_VALIDITY,
27
- AMF_TIMER_SUBSCRIPTION_VALIDITY,
28
- AMF_TIMER_SBI_CLIENT_WAIT,
29
+ AMF_TIMER_BASE = OGS_MAX_NUM_OF_PROTO_TIMER,
30
31
AMF_TIMER_NG_DELAYED_SEND,
32
AMF_TIMER_NG_HOLDING,
33
34
} amf_timer_e;
35
36
typedef struct amf_timer_cfg_s {
37
+ bool have;
38
int max_count;
39
ogs_time_t duration;
40
} amf_timer_cfg_t;
41
42
amf_timer_cfg_t *amf_timer_cfg(amf_timer_e id);
43
44
-const char *amf_timer_get_name(amf_timer_e id);
45
-
46
-void amf_timer_nf_instance_registration_interval(void *data);
47
-void amf_timer_nf_instance_heartbeat_interval(void *data);
48
-void amf_timer_nf_instance_no_heartbeat(void *data);
49
-void amf_timer_nf_instance_validity(void *data);
50
-void amf_timer_subscription_validity(void *data);
51
-void amf_timer_sbi_client_wait_expire(void *data);
52
+const char *amf_timer_get_name(int timer_id);
53
54
void amf_timer_ng_delayed_send(void *data);
55
56
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/ausf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/ausf-sm.c
Changed
184
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case AUSF_EVT_SBI_SERVER:
21
- request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ request = e->h.sbi.request;
24
ogs_assert(request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&message, request);
30
31
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
32
SWITCH(message.h.method)
33
CASE(OGS_SBI_HTTP_METHOD_POST)
34
- ausf_nnrf_handle_nf_status_notify(stream, &message);
35
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
36
break;
37
38
DEFAULT
39
40
ogs_assert(OGS_FSM_STATE(&ausf_ue->sm));
41
42
e->ausf_ue = ausf_ue;
43
- e->sbi.message = &message;
44
+ e->h.sbi.message = &message;
45
ogs_fsm_dispatch(&ausf_ue->sm, e);
46
if (OGS_FSM_CHECK(&ausf_ue->sm, ausf_ue_state_exception)) {
47
ogs_error("%s State machine exception", ausf_ue->suci);
48
49
ogs_sbi_message_free(&message);
50
break;
51
52
- case AUSF_EVT_SBI_CLIENT:
53
+ case OGS_EVENT_SBI_CLIENT:
54
ogs_assert(e);
55
56
- response = e->sbi.response;
57
+ response = e->h.sbi.response;
58
ogs_assert(response);
59
rv = ogs_sbi_parse_response(&message, response);
60
if (rv != OGS_OK) {
61
62
63
SWITCH(message.h.resource.component0)
64
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
65
- nf_instance = e->sbi.data;
66
+ nf_instance = e->h.sbi.data;
67
ogs_assert(nf_instance);
68
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
69
70
- e->sbi.message = &message;
71
+ e->h.sbi.message = &message;
72
ogs_fsm_dispatch(&nf_instance->sm, e);
73
break;
74
75
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
76
- subscription = e->sbi.data;
77
+ subscription = e->h.sbi.data;
78
ogs_assert(subscription);
79
80
SWITCH(message.h.method)
81
CASE(OGS_SBI_HTTP_METHOD_POST)
82
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
83
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
84
- ausf_nnrf_handle_nf_status_subscribe(
85
+ ogs_nnrf_handle_nf_status_subscribe(
86
subscription, &message);
87
} else {
88
ogs_error("%s HTTP response error %d",
89
90
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
91
SWITCH(message.h.resource.component0)
92
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
93
- sbi_xact = e->sbi.data;
94
+ sbi_xact = e->h.sbi.data;
95
ogs_assert(sbi_xact);
96
97
SWITCH(message.h.method)
98
99
break;
100
101
CASE(OGS_SBI_SERVICE_NAME_NUDM_UEAU)
102
- sbi_xact = e->sbi.data;
103
+ sbi_xact = e->h.sbi.data;
104
ogs_assert(sbi_xact);
105
106
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
107
108
ausf_ue = (ausf_ue_t *)sbi_xact->sbi_object;
109
ogs_assert(ausf_ue);
110
111
- e->sbi.data = sbi_xact->assoc_stream;
112
+ e->h.sbi.data = sbi_xact->assoc_stream;
113
114
ogs_sbi_xact_remove(sbi_xact);
115
116
117
}
118
119
e->ausf_ue = ausf_ue;
120
- e->sbi.message = &message;
121
+ e->h.sbi.message = &message;
122
123
ogs_fsm_dispatch(&ausf_ue->sm, e);
124
if (OGS_FSM_CHECK(&ausf_ue->sm, ausf_ue_state_exception)) {
125
126
ogs_sbi_response_free(response);
127
break;
128
129
- case AUSF_EVT_SBI_TIMER:
130
+ case OGS_EVENT_SBI_TIMER:
131
ogs_assert(e);
132
133
- switch(e->timer_id) {
134
- case AUSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
135
- case AUSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
136
- case AUSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
137
- case AUSF_TIMER_NF_INSTANCE_VALIDITY:
138
- nf_instance = e->sbi.data;
139
+ switch(e->h.timer_id) {
140
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
141
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
142
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
143
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
144
+ nf_instance = e->h.sbi.data;
145
ogs_assert(nf_instance);
146
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
147
148
ogs_fsm_dispatch(&nf_instance->sm, e);
149
- if (OGS_FSM_CHECK(&nf_instance->sm, ausf_nf_state_exception))
150
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
151
ogs_error("%s:%s State machine exception %d",
152
OpenAPI_nf_type_ToString(nf_instance->nf_type),
153
- nf_instance->id, e->timer_id);
154
+ nf_instance->id, e->h.timer_id);
155
break;
156
157
- case AUSF_TIMER_SUBSCRIPTION_VALIDITY:
158
- subscription = e->sbi.data;
159
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
160
+ subscription = e->h.sbi.data;
161
ogs_assert(subscription);
162
163
ogs_assert(ogs_sbi_self()->nf_instance);
164
165
ogs_sbi_subscription_remove(subscription);
166
break;
167
168
- case AUSF_TIMER_SBI_CLIENT_WAIT:
169
- sbi_xact = e->sbi.data;
170
+ case OGS_TIMER_SBI_CLIENT_WAIT:
171
+ sbi_xact = e->h.sbi.data;
172
ogs_assert(sbi_xact);
173
174
stream = sbi_xact->assoc_stream;
175
176
break;
177
default:
178
ogs_error("Unknown timer%s:%d",
179
- ausf_timer_get_name(e->timer_id), e->timer_id);
180
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
181
}
182
break;
183
184
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/ausf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/ausf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void ausf_state_final(ogs_fsm_t *s, ausf_event_t *e);
10
void ausf_state_operational(ogs_fsm_t *s, ausf_event_t *e);
11
12
-void ausf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void ausf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void ausf_nf_state_initial(ogs_fsm_t *s, ausf_event_t *e);
16
-void ausf_nf_state_final(ogs_fsm_t *s, ausf_event_t *e);
17
-void ausf_nf_state_will_register(ogs_fsm_t *s, ausf_event_t *e);
18
-void ausf_nf_state_registered(ogs_fsm_t *s, ausf_event_t *e);
19
-void ausf_nf_state_de_registered(ogs_fsm_t *s, ausf_event_t *e);
20
-void ausf_nf_state_exception(ogs_fsm_t *s, ausf_event_t *e);
21
-
22
void ausf_ue_state_initial(ogs_fsm_t *s, ausf_event_t *e);
23
void ausf_ue_state_final(ogs_fsm_t *s, ausf_event_t *e);
24
void ausf_ue_state_operational(ogs_fsm_t *s, ausf_event_t *e);
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/context.c
Changed
26
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
memset(&e, 0, sizeof(e));
11
e.ausf_ue = ausf_ue;
12
- ogs_fsm_create(&ausf_ue->sm, ausf_ue_state_initial, ausf_ue_state_final);
13
- ogs_fsm_init(&ausf_ue->sm, &e);
14
+ ogs_fsm_init(&ausf_ue->sm, ausf_ue_state_initial, ausf_ue_state_final, &e);
15
16
ogs_list_add(&self.ausf_ue_list, ausf_ue);
17
18
19
memset(&e, 0, sizeof(e));
20
e.ausf_ue = ausf_ue;
21
ogs_fsm_fini(&ausf_ue->sm, &e);
22
- ogs_fsm_delete(&ausf_ue->sm);
23
24
/* Free SBI object memory */
25
ogs_sbi_object_free(&ausf_ue->sbi);
26
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-sbi.h"
10
11
#include "ausf-sm.h"
12
-#include "timer.h"
13
14
#ifdef __cplusplus
15
extern "C" {
16
17
uint8_t hxres_starOGS_MAX_RES_LEN;
18
uint8_t kausfOGS_SHA256_DIGEST_SIZE;
19
uint8_t kseafOGS_SHA256_DIGEST_SIZE;
20
-
21
-#define AUSF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
22
- do { \
23
- ogs_assert(_nFInstance); \
24
- if ((_nFInstance)->reference_count == 1) { \
25
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
26
- ausf_nf_fsm_fini((_nFInstance)); \
27
- ogs_sbi_nf_instance_remove(_nFInstance); \
28
- } else { \
29
- /* There is an assocation with other context */ \
30
- ogs_info("%s:%d (%s) NF suspended", \
31
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
32
- OGS_FSM_TRAN(&_nFInstance->sm, ausf_nf_state_de_registered); \
33
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
34
- } \
35
- } while(0)
36
};
37
38
void ausf_context_init(void);
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/event.c
Changed
86
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, ausf_event_t);
15
-
16
-void ausf_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void ausf_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-ausf_event_t *ausf_event_new(ausf_event_e id)
27
+ausf_event_t *ausf_event_new(int id)
28
{
29
ausf_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(ausf_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void ausf_event_free(ausf_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *ausf_event_get_name(ausf_event_t *e)
49
{
50
- if (e == NULL)
51
+ if (e == NULL) {
52
return OGS_FSM_NAME_INIT_SIG;
53
+ }
54
55
- switch (e->id) {
56
- case OGS_FSM_ENTRY_SIG:
57
+ switch (e->h.id) {
58
+ case OGS_FSM_ENTRY_SIG:
59
return OGS_FSM_NAME_ENTRY_SIG;
60
- case OGS_FSM_EXIT_SIG:
61
+ case OGS_FSM_EXIT_SIG:
62
return OGS_FSM_NAME_EXIT_SIG;
63
64
- case AUSF_EVT_SBI_SERVER:
65
- return "AUSF_EVT_SBI_SERVER";
66
- case AUSF_EVT_SBI_CLIENT:
67
- return "AUSF_EVT_SBI_CLIENT";
68
- case AUSF_EVT_SBI_TIMER:
69
- return "AUSF_EVT_SBI_TIMER";
70
+ case OGS_EVENT_SBI_SERVER:
71
+ return OGS_EVENT_NAME_SBI_SERVER;
72
+ case OGS_EVENT_SBI_CLIENT:
73
+ return OGS_EVENT_NAME_SBI_CLIENT;
74
+ case OGS_EVENT_SBI_TIMER:
75
+ return OGS_EVENT_NAME_SBI_TIMER;
76
77
- default:
78
- break;
79
+ default:
80
+ break;
81
}
82
83
+ ogs_error("Unknown Event%d", e->h.id);
84
return "UNKNOWN_EVENT";
85
}
86
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/event.h
Changed
65
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AUSF_EVENT_H
10
#define AUSF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
typedef struct ausf_ue_s ausf_ue_t;
26
27
-typedef enum {
28
- AUSF_EVT_BASE = OGS_FSM_USER_SIG,
29
-
30
- AUSF_EVT_SBI_SERVER,
31
- AUSF_EVT_SBI_CLIENT,
32
- AUSF_EVT_SBI_TIMER,
33
-
34
- AUSF_EVT_TOP,
35
-
36
-} ausf_event_e;
37
-
38
typedef struct ausf_event_s {
39
- int id;
40
- int timer_id;
41
-
42
- struct {
43
- ogs_sbi_request_t *request;
44
- ogs_sbi_response_t *response;
45
- void *data;
46
-
47
- ogs_sbi_message_t *message;
48
- } sbi;
49
+ ogs_event_t h;
50
51
ausf_ue_t *ausf_ue;
52
-
53
- ogs_timer_t *timer;
54
} ausf_event_t;
55
56
-void ausf_event_init(void);
57
-void ausf_event_final(void);
58
-
59
-ausf_event_t *ausf_event_new(ausf_event_e id);
60
-void ausf_event_free(ausf_event_t *e);
61
+ausf_event_t *ausf_event_new(int id);
62
63
const char *ausf_event_get_name(ausf_event_t *e);
64
65
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
ausf_context_init();
12
- ausf_event_init();
13
14
rv = ogs_sbi_context_parse_config("ausf", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- ausf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
ausf_context_final();
28
ogs_sbi_context_final();
29
-
30
- ausf_event_final(); /* Destroy event */
31
}
32
33
static void ausf_main(void *data)
34
35
ogs_fsm_t ausf_sm;
36
int rv;
37
38
- ogs_fsm_create(&ausf_sm, ausf_state_initial, ausf_state_final);
39
- ogs_fsm_init(&ausf_sm, 0);
40
+ ogs_fsm_init(&ausf_sm, ausf_state_initial, ausf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&ausf_sm, e);
48
- ausf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&ausf_sm, 0);
55
- ogs_fsm_delete(&ausf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/meson.build
Changed
20
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libausf_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
13
- nnrf-build.c
14
nnrf-handler.c
15
- nf-sm.c
16
-
17
nausf-handler.c
18
19
nudm-build.c
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/nnrf-handler.c
Changed
319
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "sbi-path.h"
10
#include "nnrf-handler.h"
11
12
-void ausf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->is_heart_beat_timer == true)
31
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
32
-}
33
-
34
-void ausf_nnrf_handle_nf_status_subscribe(
35
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
36
-{
37
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
38
- ogs_sbi_client_t *client = NULL;
39
-
40
- ogs_assert(recvmsg);
41
- ogs_assert(subscription);
42
- client = subscription->client;
43
- ogs_assert(client);
44
-
45
- SubscriptionData = recvmsg->SubscriptionData;
46
- if (!SubscriptionData) {
47
- ogs_error("No SubscriptionData");
48
- return;
49
- }
50
-
51
- if (!SubscriptionData->subscription_id) {
52
- ogs_error("No SubscriptionId");
53
- return;
54
- }
55
- ogs_sbi_subscription_set_id(
56
- subscription, SubscriptionData->subscription_id);
57
-
58
- if (SubscriptionData->validity_time) {
59
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
60
- ogs_time_t time, duration;
61
- if (ogs_sbi_time_from_string(
62
- &time, SubscriptionData->validity_time) == true) {
63
- duration = time - ogs_time_now();
64
- if (duration < VALIDITY_MINIMUM) {
65
- duration = VALIDITY_MINIMUM;
66
- ogs_warn("%s Forced to %lld seconds", subscription->id,
67
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
68
- }
69
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
70
- ausf_timer_subscription_validity, subscription);
71
- ogs_assert(subscription->t_validity);
72
- ogs_timer_start(subscription->t_validity, duration);
73
- } else {
74
- ogs_error("Cannot parse validitiyTime %s",
75
- SubscriptionData->validity_time);
76
- }
77
- }
78
-}
79
-
80
-bool ausf_nnrf_handle_nf_status_notify(
81
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
82
-{
83
- int rv;
84
- bool handled;
85
-
86
- ogs_sbi_response_t *response = NULL;
87
- OpenAPI_notification_data_t *NotificationData = NULL;
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_sbi_message_t message;
91
- ogs_sbi_header_t header;
92
-
93
- ogs_assert(stream);
94
- ogs_assert(recvmsg);
95
-
96
- NotificationData = recvmsg->NotificationData;
97
- if (!NotificationData) {
98
- ogs_error("No NotificationData");
99
- ogs_assert(true ==
100
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
101
- recvmsg, "No NotificationData", NULL));
102
- return false;
103
- }
104
-
105
- if (!NotificationData->nf_instance_uri) {
106
- ogs_error("No nfInstanceUri");
107
- ogs_assert(true ==
108
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
109
- recvmsg, "No nfInstanceUri", NULL));
110
- return false;
111
- }
112
-
113
- memset(&header, 0, sizeof(header));
114
- header.uri = NotificationData->nf_instance_uri;
115
-
116
- rv = ogs_sbi_parse_header(&message, &header);
117
- if (rv != OGS_OK) {
118
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
122
- return false;
123
- }
124
-
125
- if (!message.h.resource.component1) {
126
- ogs_error("No nfInstanceId %s", header.uri);
127
- ogs_assert(true ==
128
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
129
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
130
- ogs_sbi_header_free(&header);
131
- return false;
132
- }
133
-
134
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
135
- ogs_warn("%s The notification is not allowed",
136
- message.h.resource.component1);
137
- ogs_assert(true ==
138
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
139
- recvmsg, "The notification is not allowed",
140
- message.h.resource.component1));
141
- ogs_sbi_header_free(&header);
142
- return false;
143
- }
144
-
145
- if (NotificationData->event ==
146
- OpenAPI_notification_event_type_NF_REGISTERED) {
147
-
148
- OpenAPI_nf_profile_t *NFProfile = NULL;
149
-
150
- NFProfile = NotificationData->nf_profile;
151
- if (!NFProfile) {
152
- ogs_error("No NFProfile");
153
- ogs_assert(true ==
154
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
155
- recvmsg, "No NFProfile", NULL));
156
- ogs_sbi_header_free(&header);
157
- return false;
158
- }
159
-
160
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
161
- if (!nf_instance) {
162
- nf_instance = ogs_sbi_nf_instance_add();
163
- ogs_assert(nf_instance);
164
- ogs_sbi_nf_instance_set_id(nf_instance,
165
- message.h.resource.component1);
166
-
167
- ausf_nf_fsm_init(nf_instance);
168
-
169
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
170
-
171
- } else {
172
- OGS_FSM_TRAN(&nf_instance->sm, ausf_nf_state_registered);
173
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
174
-
175
- ogs_warn("%s (NRF-notify) NF has already been added",
176
- message.h.resource.component1);
177
-
178
- }
179
-
180
- handled = ogs_sbi_nnrf_handle_nf_profile(
181
- nf_instance, NFProfile, stream, recvmsg);
182
- if (!handled) {
183
- AUSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
184
- ogs_sbi_header_free(&header);
185
- return false;
186
- }
187
-
188
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
189
-
190
- handled = ogs_sbi_client_associate(nf_instance);
191
- if (!handled) {
192
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
193
- ogs_assert(true ==
194
- ogs_sbi_server_send_error(stream,
195
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
196
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
197
- AUSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
198
- ogs_sbi_header_free(&header);
199
- return false;
200
- }
201
-
202
- } else if (NotificationData->event ==
203
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
204
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
205
- if (nf_instance) {
206
- AUSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
207
- } else {
208
- ogs_warn("%s (NRF-notify) Not found",
209
- message.h.resource.component1);
210
- ogs_assert(true ==
211
- ogs_sbi_server_send_error(stream,
212
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
213
- recvmsg, "Not found", message.h.resource.component1));
214
- ogs_sbi_header_free(&header);
215
- return false;
216
- }
217
- } else {
218
- char *eventstr = OpenAPI_notification_event_type_ToString(
219
- NotificationData->event);
220
- ogs_error("Not supported event %d:%s",
221
- NotificationData->event, eventstr ? eventstr : "Unknown");
222
- ogs_assert(true ==
223
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
224
- recvmsg, "Not supported event",
225
- eventstr ? eventstr : "Unknown"));
226
- ogs_sbi_header_free(&header);
227
- return false;
228
- }
229
-
230
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
231
- ogs_assert(response);
232
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
233
-
234
- ogs_sbi_header_free(&header);
235
- return true;
236
-}
237
-
238
void ausf_nnrf_handle_nf_discover(
239
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
240
{
241
ogs_sbi_object_t *sbi_object = NULL;
242
OpenAPI_nf_type_e target_nf_type = 0;
243
ogs_sbi_discovery_option_t *discovery_option = NULL;
244
- ogs_sbi_nf_instance_t *nf_instance = NULL;
245
246
OpenAPI_search_result_t *SearchResult = NULL;
247
- OpenAPI_lnode_t *node = NULL;
248
- bool handled;
249
250
ogs_assert(recvmsg);
251
ogs_assert(xact);
252
253
return;
254
}
255
256
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
257
- OpenAPI_nf_profile_t *NFProfile = NULL;
258
-
259
- if (!node->data) continue;
260
-
261
- NFProfile = node->data;
262
-
263
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
264
- if (!nf_instance) {
265
- nf_instance = ogs_sbi_nf_instance_add();
266
- ogs_assert(nf_instance);
267
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
268
-
269
- ausf_nf_fsm_init(nf_instance);
270
-
271
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
272
- } else {
273
- OGS_FSM_TRAN(&nf_instance->sm, ausf_nf_state_registered);
274
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
275
-
276
- ogs_warn("%s (NF-discover) NF has already been added",
277
- NFProfile->nf_instance_id);
278
- }
279
-
280
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
281
- handled = ogs_sbi_nnrf_handle_nf_profile(
282
- nf_instance, NFProfile, NULL, NULL);
283
- if (!handled) {
284
- ogs_error("%s ogs_sbi_nnrf_handle_nf_profile() failed",
285
- nf_instance->id);
286
- AUSF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
287
- continue;
288
- }
289
-
290
- handled = ogs_sbi_client_associate(nf_instance);
291
- if (!handled) {
292
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
293
- AUSF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
294
- continue;
295
- }
296
-
297
- /* TIME : Update validity from NRF */
298
- if (SearchResult->is_validity_period &&
299
- SearchResult->validity_period) {
300
- nf_instance->time.validity_duration =
301
- SearchResult->validity_period;
302
-
303
- ogs_assert(nf_instance->t_validity);
304
- ogs_timer_start(nf_instance->t_validity,
305
- ogs_time_from_sec(nf_instance->time.validity_duration));
306
-
307
- } else
308
- ogs_warn("%s NF Instance validity-time should not 0",
309
- nf_instance->id);
310
-
311
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
312
- }
313
- }
314
+ ogs_nnrf_handle_nf_discover_search_result(
315
+ sbi_object, target_nf_type, discovery_option, SearchResult);
316
317
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
318
319
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/nnrf-handler.h
Changed
23
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void ausf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void ausf_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool ausf_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void ausf_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
23
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/sbi-path.c
Changed
103
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = ausf_event_new(AUSF_EVT_SBI_SERVER);
13
+ e = ausf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- ausf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = ausf_event_new(AUSF_EVT_SBI_CLIENT);
35
+ e = ausf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- ausf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDM);
58
+
59
/* Add SELF NF instance */
60
nf_instance = ogs_sbi_self()->nf_instance;
61
ogs_assert(nf_instance);
62
63
}
64
65
/* Initialize NRF NF Instance */
66
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
67
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
68
- ogs_sbi_client_t *client = NULL;
69
-
70
- /* Client callback is only used when NF sends to NRF */
71
- client = nf_instance->client;
72
- ogs_assert(client);
73
- client->cb = client_cb;
74
-
75
- /* NFRegister is sent and the response is received
76
- * by the above client callback. */
77
- ausf_nf_fsm_init(nf_instance);
78
- }
79
+ nf_instance = ogs_sbi_self()->nrf_instance;
80
+ if (nf_instance) {
81
+ ogs_sbi_client_t *client = NULL;
82
+
83
+ /* Client callback is only used when NF sends to NRF */
84
+ client = nf_instance->client;
85
+ ogs_assert(client);
86
+ client->cb = client_cb;
87
+
88
+ /* NFRegister is sent and the response is received
89
+ * by the above client callback. */
90
+ ogs_sbi_nf_fsm_init(nf_instance);
91
}
92
93
- /* Timer expiration handler of client wait timer */
94
- ogs_sbi_self()->client_wait_expire = ausf_timer_sbi_client_wait_expire;
95
-
96
- /* NF register state in NF state machine */
97
- ogs_sbi_self()->nf_state_registered =
98
- (ogs_fsm_handler_t)ausf_nf_state_registered;
99
-
100
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
101
return OGS_ERROR;
102
103
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/sbi-path.h
Changed
16
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AUSF_SBI_PATH_H
10
#define AUSF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
#include "nudm-build.h"
14
15
#ifdef __cplusplus
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/ausf/ue-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/ausf/ue-sm.c
Changed
56
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ausf_ue = e->ausf_ue;
10
ogs_assert(ausf_ue);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case AUSF_EVT_SBI_SERVER:
21
- message = e->sbi.message;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ message = e->h.sbi.message;
24
ogs_assert(message);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
SWITCH(message->h.method)
30
31
32
break;
33
34
- case AUSF_EVT_SBI_CLIENT:
35
- message = e->sbi.message;
36
+ case OGS_EVENT_SBI_CLIENT:
37
+ message = e->h.sbi.message;
38
ogs_assert(message);
39
40
ausf_ue = e->ausf_ue;
41
ogs_assert(ausf_ue);
42
- stream = e->sbi.data;
43
+ stream = e->h.sbi.data;
44
ogs_assert(stream);
45
46
SWITCH(message->h.service.name)
47
48
ausf_ue = e->ausf_ue;
49
ogs_assert(ausf_ue);
50
51
- switch (e->id) {
52
+ switch (e->h.id) {
53
case OGS_FSM_ENTRY_SIG:
54
break;
55
56
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/bsf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/bsf-sm.c
Changed
148
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case BSF_EVT_SBI_SERVER:
21
- request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ request = e->h.sbi.request;
24
ogs_assert(request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&message, request);
30
31
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
32
SWITCH(message.h.method)
33
CASE(OGS_SBI_HTTP_METHOD_POST)
34
- bsf_nnrf_handle_nf_status_notify(stream, &message);
35
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
36
break;
37
38
DEFAULT
39
40
ogs_sbi_message_free(&message);
41
break;
42
43
- case BSF_EVT_SBI_CLIENT:
44
+ case OGS_EVENT_SBI_CLIENT:
45
ogs_assert(e);
46
47
- response = e->sbi.response;
48
+ response = e->h.sbi.response;
49
ogs_assert(response);
50
rv = ogs_sbi_parse_response(&message, response);
51
if (rv != OGS_OK) {
52
53
54
SWITCH(message.h.resource.component0)
55
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
56
- nf_instance = e->sbi.data;
57
+ nf_instance = e->h.sbi.data;
58
ogs_assert(nf_instance);
59
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
60
61
- e->sbi.message = &message;
62
+ e->h.sbi.message = &message;
63
ogs_fsm_dispatch(&nf_instance->sm, e);
64
break;
65
66
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
67
- subscription = e->sbi.data;
68
+ subscription = e->h.sbi.data;
69
ogs_assert(subscription);
70
71
SWITCH(message.h.method)
72
CASE(OGS_SBI_HTTP_METHOD_POST)
73
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
74
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
75
- bsf_nnrf_handle_nf_status_subscribe(
76
+ ogs_nnrf_handle_nf_status_subscribe(
77
subscription, &message);
78
} else {
79
ogs_error("HTTP response error : %d",
80
81
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
82
SWITCH(message.h.resource.component0)
83
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
84
- sbi_xact = e->sbi.data;
85
+ sbi_xact = e->h.sbi.data;
86
ogs_assert(sbi_xact);
87
88
SWITCH(message.h.method)
89
90
ogs_sbi_response_free(response);
91
break;
92
93
- case BSF_EVT_SBI_TIMER:
94
+ case OGS_EVENT_SBI_TIMER:
95
ogs_assert(e);
96
97
- switch(e->timer_id) {
98
- case BSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
99
- case BSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
100
- case BSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
101
- case BSF_TIMER_NF_INSTANCE_VALIDITY:
102
- nf_instance = e->sbi.data;
103
+ switch(e->h.timer_id) {
104
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
105
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
106
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
107
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
108
+ nf_instance = e->h.sbi.data;
109
ogs_assert(nf_instance);
110
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
111
112
ogs_fsm_dispatch(&nf_instance->sm, e);
113
- if (OGS_FSM_CHECK(&nf_instance->sm, bsf_nf_state_exception))
114
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
115
ogs_error("%s:%s State machine exception %d",
116
OpenAPI_nf_type_ToString(nf_instance->nf_type),
117
- nf_instance->id, e->timer_id);
118
+ nf_instance->id, e->h.timer_id);
119
break;
120
121
- case BSF_TIMER_SUBSCRIPTION_VALIDITY:
122
- subscription = e->sbi.data;
123
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
124
+ subscription = e->h.sbi.data;
125
ogs_assert(subscription);
126
127
ogs_assert(ogs_sbi_self()->nf_instance);
128
129
ogs_sbi_subscription_remove(subscription);
130
break;
131
132
- case BSF_TIMER_SBI_CLIENT_WAIT:
133
- sbi_xact = e->sbi.data;
134
+ case OGS_TIMER_SBI_CLIENT_WAIT:
135
+ sbi_xact = e->h.sbi.data;
136
ogs_assert(sbi_xact);
137
138
stream = sbi_xact->assoc_stream;
139
140
141
default:
142
ogs_error("Unknown timer%s:%d",
143
- bsf_timer_get_name(e->timer_id), e->timer_id);
144
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
145
}
146
break;
147
148
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/bsf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/bsf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void bsf_state_operational(ogs_fsm_t *s, bsf_event_t *e);
10
void bsf_state_exception(ogs_fsm_t *s, bsf_event_t *e);
11
12
-void bsf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void bsf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void bsf_nf_state_initial(ogs_fsm_t *s, bsf_event_t *e);
16
-void bsf_nf_state_final(ogs_fsm_t *s, bsf_event_t *e);
17
-void bsf_nf_state_will_register(ogs_fsm_t *s, bsf_event_t *e);
18
-void bsf_nf_state_registered(ogs_fsm_t *s, bsf_event_t *e);
19
-void bsf_nf_state_de_registered(ogs_fsm_t *s, bsf_event_t *e);
20
-void bsf_nf_state_exception(ogs_fsm_t *s, bsf_event_t *e);
21
-
22
#define bsf_sm_debug(__pe) \
23
ogs_debug("%s(): %s", __func__, bsf_event_get_name(__pe))
24
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/context.c
Changed
8
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-sbi.h"
10
#include "ogs-app.h"
11
12
-#include "timer.h"
13
#include "bsf-sm.h"
14
15
#ifdef __cplusplus
16
17
ogs_list_t sess_list;
18
} bsf_context_t;
19
20
-#define BSF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
21
- do { \
22
- ogs_assert(_nFInstance); \
23
- if ((_nFInstance)->reference_count == 1) { \
24
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
25
- bsf_nf_fsm_fini((_nFInstance)); \
26
- ogs_sbi_nf_instance_remove(_nFInstance); \
27
- } else { \
28
- /* There is an assocation with other context */ \
29
- ogs_info("%s:%d (%s) NF suspended", \
30
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
31
- OGS_FSM_TRAN(&_nFInstance->sm, bsf_nf_state_de_registered); \
32
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
33
- } \
34
- } while(0)
35
-
36
typedef struct bsf_sess_s bsf_sess_t;
37
38
typedef struct bsf_sess_s {
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/event.c
Changed
86
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, bsf_event_t);
15
-
16
-void bsf_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void bsf_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-bsf_event_t *bsf_event_new(bsf_event_e id)
27
+bsf_event_t *bsf_event_new(int id)
28
{
29
bsf_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(bsf_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void bsf_event_free(bsf_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *bsf_event_get_name(bsf_event_t *e)
49
{
50
- if (e == NULL)
51
+ if (e == NULL) {
52
return OGS_FSM_NAME_INIT_SIG;
53
+ }
54
55
- switch (e->id) {
56
- case OGS_FSM_ENTRY_SIG:
57
+ switch (e->h.id) {
58
+ case OGS_FSM_ENTRY_SIG:
59
return OGS_FSM_NAME_ENTRY_SIG;
60
- case OGS_FSM_EXIT_SIG:
61
+ case OGS_FSM_EXIT_SIG:
62
return OGS_FSM_NAME_EXIT_SIG;
63
64
- case BSF_EVT_SBI_SERVER:
65
- return "BSF_EVT_SBI_SERVER";
66
- case BSF_EVT_SBI_CLIENT:
67
- return "BSF_EVT_SBI_CLIENT";
68
- case BSF_EVT_SBI_TIMER:
69
- return "BSF_EVT_SBI_TIMER";
70
+ case OGS_EVENT_SBI_SERVER:
71
+ return OGS_EVENT_NAME_SBI_SERVER;
72
+ case OGS_EVENT_SBI_CLIENT:
73
+ return OGS_EVENT_NAME_SBI_CLIENT;
74
+ case OGS_EVENT_SBI_TIMER:
75
+ return OGS_EVENT_NAME_SBI_TIMER;
76
77
- default:
78
- break;
79
+ default:
80
+ break;
81
}
82
83
+ ogs_error("Unknown Event%d", e->h.id);
84
return "UNKNOWN_EVENT";
85
}
86
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/event.h
Changed
63
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef BSF_EVENT_H
10
#define BSF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
typedef struct bsf_sess_s bsf_sess_t;
20
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
21
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
22
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
-typedef enum {
26
- BSF_EVT_BASE = OGS_FSM_USER_SIG,
27
-
28
- BSF_EVT_SBI_SERVER,
29
- BSF_EVT_SBI_CLIENT,
30
- BSF_EVT_SBI_TIMER,
31
-
32
- BSF_EVT_TOP,
33
-
34
-} bsf_event_e;
35
36
typedef struct bsf_event_s {
37
- int id;
38
- ogs_pkbuf_t *pkbuf;
39
- int timer_id;
40
-
41
- struct {
42
- ogs_sbi_request_t *request;
43
- ogs_sbi_response_t *response;
44
- void *data;
45
- int state;
46
-
47
- ogs_sbi_message_t *message;
48
- } sbi;
49
-
50
+ ogs_event_t h;
51
bsf_sess_t *sess;
52
} bsf_event_t;
53
54
-void bsf_event_init(void);
55
-void bsf_event_final(void);
56
-
57
-bsf_event_t *bsf_event_new(bsf_event_e id);
58
-void bsf_event_free(bsf_event_t *e);
59
+bsf_event_t *bsf_event_new(int id);
60
61
const char *bsf_event_get_name(bsf_event_t *e);
62
63
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
bsf_context_init();
12
- bsf_event_init();
13
14
rv = ogs_sbi_context_parse_config("bsf", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- bsf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
bsf_context_final();
27
28
ogs_sbi_context_final();
29
-
30
- bsf_event_final(); /* Destroy event */
31
}
32
33
static void bsf_main(void *data)
34
35
ogs_fsm_t bsf_sm;
36
int rv;
37
38
- ogs_fsm_create(&bsf_sm, bsf_state_initial, bsf_state_final);
39
- ogs_fsm_init(&bsf_sm, 0);
40
+ ogs_fsm_init(&bsf_sm, bsf_state_initial, bsf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&bsf_sm, e);
48
- bsf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&bsf_sm, 0);
55
- ogs_fsm_delete(&bsf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/meson.build
Changed
20
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libbsf_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
13
- nnrf-build.c
14
nnrf-handler.c
15
- nf-sm.c
16
-
17
nbsf-handler.c
18
19
sbi-path.c
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nbsf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/nbsf-handler.c
Changed
55
1
2
OpenAPI_pcf_binding_t *RecvPcfBinding = NULL;
3
OpenAPI_pcf_binding_t SendPcfBinding;
4
OpenAPI_snssai_t Snssai;
5
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
6
- char fqdnOGS_MAX_FQDN_LEN+1;
7
- int fqdn_len;
8
-#endif
9
10
ogs_assert(stream);
11
ogs_assert(recvmsg);
12
13
bsf_sess_set_ipv6prefix(sess, RecvPcfBinding->ipv6_prefix);
14
15
if (RecvPcfBinding->pcf_fqdn) {
16
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
17
- ogs_assert(0 < ogs_fqdn_parse(
18
- fqdn, RecvPcfBinding->pcf_fqdn,
19
- ogs_min(strlen(RecvPcfBinding->pcf_fqdn),
20
- OGS_MAX_FQDN_LEN)));
21
-
22
- if (sess->pcf_fqdn)
23
- ogs_free(sess->pcf_fqdn);
24
- sess->pcf_fqdn = ogs_strdup(fqdn);
25
- ogs_assert(sess->pcf_fqdn);
26
-#else
27
if (sess->pcf_fqdn)
28
ogs_free(sess->pcf_fqdn);
29
sess->pcf_fqdn = ogs_strdup(RecvPcfBinding->pcf_fqdn);
30
ogs_assert(sess->pcf_fqdn);
31
-#endif
32
}
33
34
PcfIpEndPointList = RecvPcfBinding->pcf_ip_end_points;
35
36
PcfIpEndPointList = OpenAPI_list_create();
37
ogs_assert(PcfIpEndPointList);
38
39
- if (sess->pcf_fqdn && strlen(sess->pcf_fqdn)) {
40
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
41
- memset(fqdn, 0, sizeof(fqdn));
42
- fqdn_len = ogs_fqdn_build(fqdn,
43
- sess->pcf_fqdn, strlen(sess->pcf_fqdn));
44
- SendPcfBinding.pcf_fqdn = ogs_memdup(fqdn, fqdn_len+1);
45
- ogs_assert(SendPcfBinding.pcf_fqdn);
46
- SendPcfBinding.pcf_fqdnfqdn_len = 0;
47
-#else
48
+ if (sess->pcf_fqdn && strlen(sess->pcf_fqdn))
49
SendPcfBinding.pcf_fqdn = ogs_strdup(sess->pcf_fqdn);
50
-#endif
51
- }
52
53
for (i = 0; i < sess->num_of_pcf_ip; i++) {
54
OpenAPI_ip_end_point_t *PcfIpEndPoint = NULL;
55
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/nnrf-handler.c
Changed
320
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "sbi-path.h"
10
#include "nnrf-handler.h"
11
12
-void bsf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->is_heart_beat_timer == true)
31
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
32
-}
33
-
34
-void bsf_nnrf_handle_nf_status_subscribe(
35
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
36
-{
37
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
38
- ogs_sbi_client_t *client = NULL;
39
-
40
- ogs_assert(recvmsg);
41
- ogs_assert(subscription);
42
- client = subscription->client;
43
- ogs_assert(client);
44
-
45
- SubscriptionData = recvmsg->SubscriptionData;
46
- if (!SubscriptionData) {
47
- ogs_error("No SubscriptionData");
48
- return;
49
- }
50
-
51
- if (!SubscriptionData->subscription_id) {
52
- ogs_error("No SubscriptionId");
53
- return;
54
- }
55
- ogs_sbi_subscription_set_id(
56
- subscription, SubscriptionData->subscription_id);
57
-
58
- if (SubscriptionData->validity_time) {
59
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
60
- ogs_time_t time, duration;
61
- if (ogs_sbi_time_from_string(
62
- &time, SubscriptionData->validity_time) == true) {
63
- duration = time - ogs_time_now();
64
- if (duration < VALIDITY_MINIMUM) {
65
- duration = VALIDITY_MINIMUM;
66
- ogs_warn("%s Forced to %lld seconds", subscription->id,
67
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
68
- }
69
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
70
- bsf_timer_subscription_validity, subscription);
71
- ogs_assert(subscription->t_validity);
72
- ogs_timer_start(subscription->t_validity, duration);
73
- } else {
74
- ogs_error("Cannot parse validitiyTime %s",
75
- SubscriptionData->validity_time);
76
- }
77
- }
78
-}
79
-
80
-bool bsf_nnrf_handle_nf_status_notify(
81
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
82
-{
83
- int rv;
84
- bool handled;
85
-
86
- ogs_sbi_response_t *response = NULL;
87
- OpenAPI_notification_data_t *NotificationData = NULL;
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_sbi_message_t message;
91
- ogs_sbi_header_t header;
92
-
93
- ogs_assert(stream);
94
- ogs_assert(recvmsg);
95
-
96
- NotificationData = recvmsg->NotificationData;
97
- if (!NotificationData) {
98
- ogs_error("No NotificationData");
99
- ogs_assert(true ==
100
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
101
- recvmsg, "No NotificationData", NULL));
102
- return false;
103
- }
104
-
105
- if (!NotificationData->nf_instance_uri) {
106
- ogs_error("No nfInstanceUri");
107
- ogs_assert(true ==
108
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
109
- recvmsg, "No nfInstanceUri", NULL));
110
- return false;
111
- }
112
-
113
- memset(&header, 0, sizeof(header));
114
- header.uri = NotificationData->nf_instance_uri;
115
-
116
- rv = ogs_sbi_parse_header(&message, &header);
117
- if (rv != OGS_OK) {
118
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
122
- return false;
123
- }
124
-
125
- if (!message.h.resource.component1) {
126
- ogs_error("No nfInstanceId %s", header.uri);
127
- ogs_assert(true ==
128
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
129
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
130
- ogs_sbi_header_free(&header);
131
- return false;
132
- }
133
-
134
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
135
- ogs_warn("%s The notification is not allowed",
136
- message.h.resource.component1);
137
- ogs_assert(true ==
138
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
139
- recvmsg, "The notification is not allowed",
140
- message.h.resource.component1));
141
- ogs_sbi_header_free(&header);
142
- return false;
143
- }
144
-
145
- if (NotificationData->event ==
146
- OpenAPI_notification_event_type_NF_REGISTERED) {
147
-
148
- OpenAPI_nf_profile_t *NFProfile = NULL;
149
-
150
- NFProfile = NotificationData->nf_profile;
151
- if (!NFProfile) {
152
- ogs_error("No NFProfile");
153
- ogs_assert(true ==
154
- ogs_sbi_server_send_error(
155
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
156
- recvmsg, "No NFProfile", NULL));
157
- ogs_sbi_header_free(&header);
158
- return false;
159
- }
160
-
161
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
162
- if (!nf_instance) {
163
- nf_instance = ogs_sbi_nf_instance_add();
164
- ogs_assert(nf_instance);
165
- ogs_sbi_nf_instance_set_id(nf_instance,
166
- message.h.resource.component1);
167
-
168
- bsf_nf_fsm_init(nf_instance);
169
-
170
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
171
-
172
- } else {
173
- OGS_FSM_TRAN(&nf_instance->sm, bsf_nf_state_registered);
174
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
175
-
176
- ogs_warn("%s (NRF-notify) NF has already been added",
177
- message.h.resource.component1);
178
-
179
- }
180
-
181
- handled = ogs_sbi_nnrf_handle_nf_profile(
182
- nf_instance, NFProfile, stream, recvmsg);
183
- if (!handled) {
184
- BSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
185
- ogs_sbi_header_free(&header);
186
- return false;
187
- }
188
-
189
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
190
-
191
- handled = ogs_sbi_client_associate(nf_instance);
192
- if (!handled) {
193
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
194
- ogs_assert(true ==
195
- ogs_sbi_server_send_error(stream,
196
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
197
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
198
- BSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
199
- ogs_sbi_header_free(&header);
200
- return false;
201
- }
202
-
203
- } else if (NotificationData->event ==
204
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
205
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
206
- if (nf_instance) {
207
- BSF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
208
- } else {
209
- ogs_warn("%s (NRF-notify) Not found",
210
- message.h.resource.component1);
211
- ogs_assert(true ==
212
- ogs_sbi_server_send_error(stream,
213
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
214
- recvmsg, "Not found", message.h.resource.component1));
215
- ogs_sbi_header_free(&header);
216
- return false;
217
- }
218
- } else {
219
- char *eventstr = OpenAPI_notification_event_type_ToString(
220
- NotificationData->event);
221
- ogs_error("Not supported event %d:%s",
222
- NotificationData->event, eventstr ? eventstr : "Unknown");
223
- ogs_assert(true ==
224
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
225
- recvmsg, "Not supported event",
226
- eventstr ? eventstr : "Unknown"));
227
- ogs_sbi_header_free(&header);
228
- return false;
229
- }
230
-
231
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
232
- ogs_assert(response);
233
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
234
-
235
- ogs_sbi_header_free(&header);
236
- return true;
237
-}
238
-
239
void bsf_nnrf_handle_nf_discover(
240
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
241
{
242
ogs_sbi_object_t *sbi_object = NULL;
243
OpenAPI_nf_type_e target_nf_type = 0;
244
ogs_sbi_discovery_option_t *discovery_option = NULL;
245
- ogs_sbi_nf_instance_t *nf_instance = NULL;
246
247
OpenAPI_search_result_t *SearchResult = NULL;
248
- OpenAPI_lnode_t *node = NULL;
249
- bool handled;
250
251
ogs_assert(recvmsg);
252
ogs_assert(xact);
253
254
return;
255
}
256
257
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
258
- OpenAPI_nf_profile_t *NFProfile = NULL;
259
-
260
- if (!node->data) continue;
261
-
262
- NFProfile = node->data;
263
-
264
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
265
- if (!nf_instance) {
266
- nf_instance = ogs_sbi_nf_instance_add();
267
- ogs_assert(nf_instance);
268
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
269
-
270
- bsf_nf_fsm_init(nf_instance);
271
-
272
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
273
- } else {
274
- OGS_FSM_TRAN(&nf_instance->sm, bsf_nf_state_registered);
275
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
276
-
277
- ogs_warn("%s (NF-discover) NF has already been added",
278
- NFProfile->nf_instance_id);
279
- }
280
-
281
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
282
- handled = ogs_sbi_nnrf_handle_nf_profile(
283
- nf_instance, NFProfile, NULL, NULL);
284
- if (!handled) {
285
- ogs_error("ogs_sbi_nnrf_handle_nf_profile() failed %s",
286
- nf_instance->id);
287
- BSF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
288
- continue;
289
- }
290
-
291
- handled = ogs_sbi_client_associate(nf_instance);
292
- if (!handled) {
293
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
294
- BSF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
295
- continue;
296
- }
297
-
298
- /* TIME : Update validity from NRF */
299
- if (SearchResult->is_validity_period &&
300
- SearchResult->validity_period) {
301
- nf_instance->time.validity_duration =
302
- SearchResult->validity_period;
303
-
304
- ogs_assert(nf_instance->t_validity);
305
- ogs_timer_start(nf_instance->t_validity,
306
- ogs_time_from_sec(nf_instance->time.validity_duration));
307
-
308
- } else
309
- ogs_warn("%s NF Instance validity-time should not 0",
310
- nf_instance->id);
311
-
312
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
313
- }
314
- }
315
+ ogs_nnrf_handle_nf_discover_search_result(
316
+ sbi_object, target_nf_type, discovery_option, SearchResult);
317
318
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
319
320
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/nnrf-handler.h
Changed
23
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void bsf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void bsf_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool bsf_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void bsf_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
23
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/sbi-path.c
Changed
103
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = bsf_event_new(BSF_EVT_SBI_SERVER);
13
+ e = bsf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- bsf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = bsf_event_new(BSF_EVT_SBI_CLIENT);
35
+ e = bsf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- bsf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDM);
58
+
59
/* Add SELF NF instance */
60
nf_instance = ogs_sbi_self()->nf_instance;
61
ogs_assert(nf_instance);
62
63
}
64
65
/* Initialize NRF NF Instance */
66
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
67
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
68
- ogs_sbi_client_t *client = NULL;
69
-
70
- /* Client callback is only used when NF sends to NRF */
71
- client = nf_instance->client;
72
- ogs_assert(client);
73
- client->cb = client_cb;
74
-
75
- /* NFRegister is sent and the response is received
76
- * by the above client callback. */
77
- bsf_nf_fsm_init(nf_instance);
78
- }
79
+ nf_instance = ogs_sbi_self()->nrf_instance;
80
+ if (nf_instance) {
81
+ ogs_sbi_client_t *client = NULL;
82
+
83
+ /* Client callback is only used when NF sends to NRF */
84
+ client = nf_instance->client;
85
+ ogs_assert(client);
86
+ client->cb = client_cb;
87
+
88
+ /* NFRegister is sent and the response is received
89
+ * by the above client callback. */
90
+ ogs_sbi_nf_fsm_init(nf_instance);
91
}
92
93
- /* Timer expiration handler of client wait timer */
94
- ogs_sbi_self()->client_wait_expire = bsf_timer_sbi_client_wait_expire;
95
-
96
- /* NF register state in NF state machine */
97
- ogs_sbi_self()->nf_state_registered =
98
- (ogs_fsm_handler_t)bsf_nf_state_registered;
99
-
100
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
101
return OGS_ERROR;
102
103
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/bsf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/bsf/sbi-path.h
Changed
17
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef BSF_SBI_PATH_H
10
#define BSF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
+#include "context.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/emm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/emm-sm.c
Changed
82
1
2
case OGS_FSM_EXIT_SIG:
3
break;
4
5
- case MME_EVT_EMM_MESSAGE:
6
+ case MME_EVENT_EMM_MESSAGE:
7
message = e->nas_message;
8
ogs_assert(message);
9
10
11
}
12
break;
13
14
- case MME_EVT_EMM_TIMER:
15
+ case MME_EVENT_EMM_TIMER:
16
switch (e->timer_id) {
17
case MME_TIMER_T3413:
18
if (mme_ue->t3413.retry_count >=
19
20
break;
21
case OGS_FSM_EXIT_SIG:
22
break;
23
- case MME_EVT_EMM_MESSAGE:
24
+ case MME_EVENT_EMM_MESSAGE:
25
message = e->nas_message;
26
ogs_assert(message);
27
28
29
break;
30
}
31
break;
32
- case MME_EVT_EMM_TIMER:
33
+ case MME_EVENT_EMM_TIMER:
34
switch (e->timer_id) {
35
case MME_TIMER_T3460:
36
if (mme_ue->t3460.retry_count >=
37
38
break;
39
case OGS_FSM_EXIT_SIG:
40
break;
41
- case MME_EVT_EMM_MESSAGE:
42
+ case MME_EVENT_EMM_MESSAGE:
43
message = e->nas_message;
44
ogs_assert(message);
45
46
47
break;
48
}
49
break;
50
- case MME_EVT_EMM_TIMER:
51
+ case MME_EVENT_EMM_TIMER:
52
switch (e->timer_id) {
53
case MME_TIMER_T3460:
54
if (mme_ue->t3460.retry_count >=
55
56
break;
57
case OGS_FSM_EXIT_SIG:
58
break;
59
- case MME_EVT_EMM_MESSAGE:
60
+ case MME_EVENT_EMM_MESSAGE:
61
message = e->nas_message;
62
ogs_assert(message);
63
64
65
break;
66
}
67
break;
68
- case MME_EVT_EMM_TIMER:
69
+ case MME_EVENT_EMM_TIMER:
70
switch (e->timer_id) {
71
case MME_TIMER_T3450:
72
if (mme_ue->t3450.retry_count >=
73
74
case OGS_FSM_EXIT_SIG:
75
break;
76
77
- case MME_EVT_EMM_MESSAGE:
78
+ case MME_EVENT_EMM_MESSAGE:
79
message = e->nas_message;
80
ogs_assert(message);
81
82
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/esm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/esm-sm.c
Changed
37
1
2
break;
3
case OGS_FSM_EXIT_SIG:
4
break;
5
- case MME_EVT_ESM_MESSAGE:
6
+ case MME_EVENT_ESM_MESSAGE:
7
message = e->nas_message;
8
ogs_assert(message);
9
10
11
break;
12
}
13
break;
14
- case MME_EVT_ESM_TIMER:
15
+ case MME_EVENT_ESM_TIMER:
16
switch (e->timer_id) {
17
case MME_TIMER_T3489:
18
if (bearer->t3489.retry_count >=
19
20
break;
21
case OGS_FSM_EXIT_SIG:
22
break;
23
- case MME_EVT_ESM_MESSAGE:
24
+ case MME_EVENT_ESM_MESSAGE:
25
message = e->nas_message;
26
ogs_assert(message);
27
28
29
break;
30
case OGS_FSM_EXIT_SIG:
31
break;
32
- case MME_EVT_ESM_MESSAGE:
33
+ case MME_EVENT_ESM_MESSAGE:
34
message = e->nas_message;
35
ogs_assert(message);
36
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-context.c
Changed
55
1
2
3
memset(&e, 0, sizeof(e));
4
e.enb = enb;
5
- ogs_fsm_create(&enb->sm, s1ap_state_initial, s1ap_state_final);
6
- ogs_fsm_init(&enb->sm, &e);
7
+ ogs_fsm_init(&enb->sm, s1ap_state_initial, s1ap_state_final, &e);
8
9
ogs_list_add(&self.enb_list, enb);
10
mme_metrics_inst_global_inc(MME_METR_GLOB_GAUGE_ENB);
11
12
memset(&e, 0, sizeof(e));
13
e.enb = enb;
14
ogs_fsm_fini(&enb->sm, &e);
15
- ogs_fsm_delete(&enb->sm);
16
17
ogs_hash_set(self.enb_addr_hash,
18
enb->sctp.addr, sizeof(ogs_sockaddr_t), NULL);
19
20
21
memset(&e, 0, sizeof(e));
22
e.mme_ue = mme_ue;
23
- ogs_fsm_create(&mme_ue->sm, emm_state_initial, emm_state_final);
24
- ogs_fsm_init(&mme_ue->sm, &e);
25
+ ogs_fsm_init(&mme_ue->sm, emm_state_initial, emm_state_final, &e);
26
}
27
28
void mme_ue_fsm_fini(mme_ue_t *mme_ue)
29
30
memset(&e, 0, sizeof(e));
31
e.mme_ue = mme_ue;
32
ogs_fsm_fini(&mme_ue->sm, &e);
33
- ogs_fsm_delete(&mme_ue->sm);
34
}
35
36
mme_ue_t *mme_ue_find_by_imsi_bcd(char *imsi_bcd)
37
38
39
memset(&e, 0, sizeof(e));
40
e.bearer = bearer;
41
- ogs_fsm_create(&bearer->sm, esm_state_initial, esm_state_final);
42
- ogs_fsm_init(&bearer->sm, &e);
43
+ ogs_fsm_init(&bearer->sm, esm_state_initial, esm_state_final, &e);
44
45
return bearer;
46
}
47
48
memset(&e, 0, sizeof(e));
49
e.bearer = bearer;
50
ogs_fsm_fini(&bearer->sm, &e);
51
- ogs_fsm_delete(&bearer->sm);
52
53
CLEAR_BEARER_ALL_TIMERS(bearer);
54
ogs_timer_delete(bearer->t3489.timer);
55
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-event.c
Changed
78
1
2
case OGS_FSM_EXIT_SIG:
3
return OGS_FSM_NAME_EXIT_SIG;
4
5
- case MME_EVT_S1AP_MESSAGE:
6
- return "MME_EVT_S1AP_MESSAGE";
7
- case MME_EVT_S1AP_TIMER:
8
- return "MME_EVT_S1AP_TIMER";
9
- case MME_EVT_S1AP_LO_ACCEPT:
10
- return "MME_EVT_S1AP_LO_ACCEPT";
11
- case MME_EVT_S1AP_LO_SCTP_COMM_UP:
12
- return "MME_EVT_S1AP_LO_SCTP_COMM_UP";
13
- case MME_EVT_S1AP_LO_CONNREFUSED:
14
- return "MME_EVT_S1AP_LO_CONNREFUSED";
15
+ case MME_EVENT_S1AP_MESSAGE:
16
+ return "MME_EVENT_S1AP_MESSAGE";
17
+ case MME_EVENT_S1AP_TIMER:
18
+ return "MME_EVENT_S1AP_TIMER";
19
+ case MME_EVENT_S1AP_LO_ACCEPT:
20
+ return "MME_EVENT_S1AP_LO_ACCEPT";
21
+ case MME_EVENT_S1AP_LO_SCTP_COMM_UP:
22
+ return "MME_EVENT_S1AP_LO_SCTP_COMM_UP";
23
+ case MME_EVENT_S1AP_LO_CONNREFUSED:
24
+ return "MME_EVENT_S1AP_LO_CONNREFUSED";
25
26
- case MME_EVT_EMM_MESSAGE:
27
- return "MME_EVT_EMM_MESSAGE";
28
- case MME_EVT_EMM_TIMER:
29
- return "MME_EVT_EMM_TIMER";
30
- case MME_EVT_ESM_MESSAGE:
31
- return "MME_EVT_ESM_MESSAGE";
32
- case MME_EVT_ESM_TIMER:
33
- return "MME_EVT_ESM_TIMER";
34
- case MME_EVT_S11_MESSAGE:
35
- return "MME_EVT_S11_MESSAGE";
36
- case MME_EVT_S11_TIMER:
37
- return "MME_EVT_S11_TIMER";
38
- case MME_EVT_S6A_MESSAGE:
39
- return "MME_EVT_S6A_MESSAGE";
40
- case MME_EVT_S6A_TIMER:
41
- return "MME_EVT_S6A_TIMER";
42
+ case MME_EVENT_EMM_MESSAGE:
43
+ return "MME_EVENT_EMM_MESSAGE";
44
+ case MME_EVENT_EMM_TIMER:
45
+ return "MME_EVENT_EMM_TIMER";
46
+ case MME_EVENT_ESM_MESSAGE:
47
+ return "MME_EVENT_ESM_MESSAGE";
48
+ case MME_EVENT_ESM_TIMER:
49
+ return "MME_EVENT_ESM_TIMER";
50
+ case MME_EVENT_S11_MESSAGE:
51
+ return "MME_EVENT_S11_MESSAGE";
52
+ case MME_EVENT_S11_TIMER:
53
+ return "MME_EVENT_S11_TIMER";
54
+ case MME_EVENT_S6A_MESSAGE:
55
+ return "MME_EVENT_S6A_MESSAGE";
56
+ case MME_EVENT_S6A_TIMER:
57
+ return "MME_EVENT_S6A_TIMER";
58
59
- case MME_EVT_SGSAP_MESSAGE:
60
- return "MME_EVT_SGSAP_MESSAGE";
61
- case MME_EVT_SGSAP_TIMER:
62
- return "MME_EVT_SGSAP_TIMER";
63
- case MME_EVT_SGSAP_LO_SCTP_COMM_UP:
64
- return "MME_EVT_SGSAP_LO_SCTP_COMM_UP";
65
- case MME_EVT_SGSAP_LO_CONNREFUSED:
66
- return "MME_EVT_SGSAP_LO_CONNREFUSED";
67
+ case MME_EVENT_SGSAP_MESSAGE:
68
+ return "MME_EVENT_SGSAP_MESSAGE";
69
+ case MME_EVENT_SGSAP_TIMER:
70
+ return "MME_EVENT_SGSAP_TIMER";
71
+ case MME_EVENT_SGSAP_LO_SCTP_COMM_UP:
72
+ return "MME_EVENT_SGSAP_LO_SCTP_COMM_UP";
73
+ case MME_EVENT_SGSAP_LO_CONNREFUSED:
74
+ return "MME_EVENT_SGSAP_LO_CONNREFUSED";
75
76
default:
77
break;
78
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-event.h
Changed
73
1
2
#ifndef MME_EVENT_H
3
#define MME_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
11
12
/* forward declaration */
13
typedef enum {
14
- MME_EVT_BASE = OGS_FSM_USER_SIG,
15
+ MME_EVENT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
16
17
- MME_EVT_S1AP_MESSAGE,
18
- MME_EVT_S1AP_TIMER,
19
- MME_EVT_S1AP_LO_ACCEPT,
20
- MME_EVT_S1AP_LO_SCTP_COMM_UP,
21
- MME_EVT_S1AP_LO_CONNREFUSED,
22
-
23
- MME_EVT_EMM_MESSAGE,
24
- MME_EVT_EMM_TIMER,
25
- MME_EVT_ESM_MESSAGE,
26
- MME_EVT_ESM_TIMER,
27
- MME_EVT_S11_MESSAGE,
28
- MME_EVT_S11_TIMER,
29
- MME_EVT_S6A_MESSAGE,
30
- MME_EVT_S6A_TIMER,
31
-
32
- MME_EVT_SGSAP_MESSAGE,
33
- MME_EVT_SGSAP_TIMER,
34
- MME_EVT_SGSAP_LO_SCTP_COMM_UP,
35
- MME_EVT_SGSAP_LO_CONNREFUSED,
36
+ MME_EVENT_S1AP_MESSAGE,
37
+ MME_EVENT_S1AP_TIMER,
38
+ MME_EVENT_S1AP_LO_ACCEPT,
39
+ MME_EVENT_S1AP_LO_SCTP_COMM_UP,
40
+ MME_EVENT_S1AP_LO_CONNREFUSED,
41
+
42
+ MME_EVENT_EMM_MESSAGE,
43
+ MME_EVENT_EMM_TIMER,
44
+ MME_EVENT_ESM_MESSAGE,
45
+ MME_EVENT_ESM_TIMER,
46
+ MME_EVENT_S11_MESSAGE,
47
+ MME_EVENT_S11_TIMER,
48
+ MME_EVENT_S6A_MESSAGE,
49
+ MME_EVENT_S6A_TIMER,
50
+
51
+ MME_EVENT_SGSAP_MESSAGE,
52
+ MME_EVENT_SGSAP_TIMER,
53
+ MME_EVENT_SGSAP_LO_SCTP_COMM_UP,
54
+ MME_EVENT_SGSAP_LO_CONNREFUSED,
55
56
- MME_EVT_TOP,
57
+ MAX_NUM_OF_MME_EVENT,
58
59
} mme_event_e;
60
61
62
63
typedef struct mme_event_s {
64
int id;
65
- ogs_pkbuf_t *pkbuf;
66
int timer_id;
67
68
+ ogs_pkbuf_t *pkbuf;
69
+
70
ogs_sock_t *sock;
71
ogs_sockaddr_t *addr;
72
73
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-fd-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-fd-path.c
Changed
28
1
2
out:
3
if (!error) {
4
int rv;
5
- e = mme_event_new(MME_EVT_S6A_MESSAGE);
6
+ e = mme_event_new(MME_EVENT_S6A_MESSAGE);
7
ogs_assert(e);
8
e->mme_ue = mme_ue;
9
e->s6a_message = s6a_message;
10
11
12
if (!error) {
13
int rv;
14
- e = mme_event_new(MME_EVT_S6A_MESSAGE);
15
+ e = mme_event_new(MME_EVENT_S6A_MESSAGE);
16
ogs_assert(e);
17
e->mme_ue = mme_ue;
18
e->s6a_message = s6a_message;
19
20
ogs_diam_logger_self()->stats.nb_echoed++;
21
ogs_assert( pthread_mutex_unlock(&ogs_diam_logger_self()->stats_lock) == 0);
22
23
- e = mme_event_new(MME_EVT_S6A_MESSAGE);
24
+ e = mme_event_new(MME_EVENT_S6A_MESSAGE);
25
ogs_assert(e);
26
e->mme_ue = mme_ue;
27
e->s6a_message = s6a_message;
28
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-gtp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-gtp-path.c
Changed
10
1
2
}
3
ogs_assert(sgw);
4
5
- e = mme_event_new(MME_EVT_S11_MESSAGE);
6
+ e = mme_event_new(MME_EVENT_S11_MESSAGE);
7
ogs_assert(e);
8
e->gnode = (ogs_gtp_node_t *)sgw;
9
e->pkbuf = pkbuf;
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-init.c
Changed
17
1
2
ogs_fsm_t mme_sm;
3
int rv;
4
5
- ogs_fsm_create(&mme_sm, mme_state_initial, mme_state_final);
6
- ogs_fsm_init(&mme_sm, 0);
7
+ ogs_fsm_init(&mme_sm, mme_state_initial, mme_state_final, 0);
8
9
for ( ;; ) {
10
ogs_pollset_poll(ogs_app()->pollset,
11
12
done:
13
14
ogs_fsm_fini(&mme_sm, 0);
15
- ogs_fsm_delete(&mme_sm);
16
}
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-sm.c
Changed
145
1
2
case OGS_FSM_EXIT_SIG:
3
break;
4
5
- case MME_EVT_S1AP_LO_ACCEPT:
6
+ case MME_EVENT_S1AP_LO_ACCEPT:
7
sock = e->sock;
8
ogs_assert(sock);
9
addr = e->addr;
10
11
12
break;
13
14
- case MME_EVT_S1AP_LO_SCTP_COMM_UP:
15
+ case MME_EVENT_S1AP_LO_SCTP_COMM_UP:
16
sock = e->sock;
17
ogs_assert(sock);
18
addr = e->addr;
19
20
21
break;
22
23
- case MME_EVT_S1AP_LO_CONNREFUSED:
24
+ case MME_EVENT_S1AP_LO_CONNREFUSED:
25
sock = e->sock;
26
ogs_assert(sock);
27
addr = e->addr;
28
29
ogs_free(addr);
30
31
break;
32
- case MME_EVT_S1AP_MESSAGE:
33
+ case MME_EVENT_S1AP_MESSAGE:
34
sock = e->sock;
35
ogs_assert(sock);
36
addr = e->addr;
37
38
ogs_pkbuf_free(pkbuf);
39
break;
40
41
- case MME_EVT_S1AP_TIMER:
42
+ case MME_EVENT_S1AP_TIMER:
43
enb_ue = e->enb_ue;
44
ogs_assert(enb_ue);
45
46
47
}
48
break;
49
50
- case MME_EVT_EMM_MESSAGE:
51
+ case MME_EVENT_EMM_MESSAGE:
52
enb_ue = e->enb_ue;
53
ogs_assert(enb_ue);
54
pkbuf = e->pkbuf;
55
56
57
ogs_pkbuf_free(pkbuf);
58
break;
59
- case MME_EVT_EMM_TIMER:
60
+ case MME_EVENT_EMM_TIMER:
61
mme_ue = e->mme_ue;
62
ogs_assert(mme_ue);
63
ogs_assert(OGS_FSM_STATE(&mme_ue->sm));
64
65
ogs_fsm_dispatch(&mme_ue->sm, e);
66
break;
67
68
- case MME_EVT_ESM_MESSAGE:
69
+ case MME_EVENT_ESM_MESSAGE:
70
mme_ue = e->mme_ue;
71
ogs_assert(mme_ue);
72
73
74
ogs_pkbuf_free(pkbuf);
75
break;
76
77
- case MME_EVT_ESM_TIMER:
78
+ case MME_EVENT_ESM_TIMER:
79
bearer = e->bearer;
80
ogs_assert(bearer);
81
ogs_assert(OGS_FSM_STATE(&bearer->sm));
82
83
ogs_fsm_dispatch(&bearer->sm, e);
84
break;
85
86
- case MME_EVT_S6A_MESSAGE:
87
+ case MME_EVENT_S6A_MESSAGE:
88
mme_ue = e->mme_ue;
89
ogs_assert(mme_ue);
90
s6a_message = e->s6a_message;
91
92
ogs_free(s6a_message);
93
break;
94
95
- case MME_EVT_S11_MESSAGE:
96
+ case MME_EVENT_S11_MESSAGE:
97
pkbuf = e->pkbuf;
98
ogs_assert(pkbuf);
99
100
101
ogs_pkbuf_free(pkbuf);
102
break;
103
104
- case MME_EVT_S11_TIMER:
105
+ case MME_EVENT_S11_TIMER:
106
sgw_ue = e->sgw_ue;
107
ogs_assert(sgw_ue);
108
mme_ue = sgw_ue->mme_ue;
109
110
break;
111
112
113
- case MME_EVT_SGSAP_LO_SCTP_COMM_UP:
114
+ case MME_EVENT_SGSAP_LO_SCTP_COMM_UP:
115
sock = e->sock;
116
ogs_assert(sock);
117
addr = e->addr;
118
119
ogs_fsm_dispatch(&vlr->sm, e);
120
break;
121
122
- case MME_EVT_SGSAP_LO_CONNREFUSED:
123
+ case MME_EVENT_SGSAP_LO_CONNREFUSED:
124
sock = e->sock;
125
ogs_assert(sock);
126
addr = e->addr;
127
128
}
129
130
break;
131
- case MME_EVT_SGSAP_MESSAGE:
132
+ case MME_EVENT_SGSAP_MESSAGE:
133
sock = e->sock;
134
ogs_assert(sock);
135
addr = e->addr;
136
137
ogs_pkbuf_free(pkbuf);
138
break;
139
140
- case MME_EVT_SGSAP_TIMER:
141
+ case MME_EVENT_SGSAP_TIMER:
142
vlr = e->vlr;
143
ogs_assert(vlr);
144
ogs_assert(OGS_FSM_STATE(&vlr->sm));
145
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-timer.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-timer.c
Changed
107
1
2
static mme_timer_cfg_t g_mme_timer_cfgMAX_NUM_OF_MME_TIMER = {
3
/* Paging procedure for EPS services initiated */
4
MME_TIMER_T3413 =
5
- { .max_count = 2, .duration = ogs_time_from_sec(2) },
6
+ { .have = true, .max_count = 2, .duration = ogs_time_from_sec(2) },
7
8
/* DETACH REQUEST sent */
9
MME_TIMER_T3422 =
10
- { .max_count = 4, .duration = ogs_time_from_sec(3) },
11
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(3) },
12
13
/* ATTACH ACCEPT sent
14
* TRACKING AREA UPDATE ACCEPT sent with GUTI
15
* TRACKING AREA UPDATE ACCEPT sent with TMSI
16
* GUTI REALLOCATION COMMAND sent */
17
MME_TIMER_T3450 =
18
- { .max_count = 4, .duration = ogs_time_from_sec(6) },
19
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(6) },
20
21
/* AUTHENTICATION REQUEST sent
22
* SECURITY MODE COMMAND sent */
23
MME_TIMER_T3460 =
24
- { .max_count = 4, .duration = ogs_time_from_sec(3) },
25
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(3) },
26
27
/* IDENTITY REQUEST sent */
28
MME_TIMER_T3470 =
29
- { .max_count = 4, .duration = ogs_time_from_sec(3) },
30
+ { .have = true, .max_count = 4, .duration = ogs_time_from_sec(3) },
31
32
/* ESM INFORMATION REQUEST sent */
33
MME_TIMER_T3489 =
34
- { .max_count = 2, .duration = ogs_time_from_sec(4) },
35
+ { .have = true, .max_count = 2, .duration = ogs_time_from_sec(4) },
36
37
MME_TIMER_SGS_CLI_CONN_TO_SRV =
38
- { .duration = ogs_time_from_sec(3) },
39
+ { .have = true, .duration = ogs_time_from_sec(3) },
40
41
MME_TIMER_S1_HOLDING =
42
- { .duration = ogs_time_from_sec(30) },
43
+ { .have = true, .duration = ogs_time_from_sec(30) },
44
45
MME_TIMER_S11_HOLDING =
46
- { .duration = ogs_time_from_msec(300) },
47
+ { .have = true, .duration = ogs_time_from_msec(300) },
48
};
49
50
static void emm_timer_event_send(
51
52
mme_timer_cfg_t *mme_timer_cfg(mme_timer_e id)
53
{
54
ogs_assert(id < MAX_NUM_OF_MME_TIMER);
55
+ if (g_mme_timer_cfgid.have != true) {
56
+ ogs_fatal("No timer%d configuration", id);
57
+ ogs_assert_if_reached();
58
+ }
59
return &g_mme_timer_cfgid;
60
}
61
62
63
mme_event_t *e = NULL;
64
ogs_assert(mme_ue);
65
66
- e = mme_event_new(MME_EVT_EMM_TIMER);
67
+ e = mme_event_new(MME_EVENT_EMM_TIMER);
68
e->timer_id = timer_id;
69
e->mme_ue = mme_ue;
70
71
72
mme_ue = bearer->mme_ue;
73
ogs_assert(bearer);
74
75
- e = mme_event_new(MME_EVT_ESM_TIMER);
76
+ e = mme_event_new(MME_EVENT_ESM_TIMER);
77
e->timer_id = timer_id;
78
e->mme_ue = mme_ue;
79
e->bearer = bearer;
80
81
mme_event_t *e = NULL;
82
ogs_assert(data);
83
84
- e = mme_event_new(MME_EVT_SGSAP_TIMER);
85
+ e = mme_event_new(MME_EVENT_SGSAP_TIMER);
86
e->timer_id = MME_TIMER_SGS_CLI_CONN_TO_SRV;
87
e->vlr = data;
88
89
90
ogs_assert(data);
91
enb_ue = data;
92
93
- e = mme_event_new(MME_EVT_S1AP_TIMER);
94
+ e = mme_event_new(MME_EVENT_S1AP_TIMER);
95
96
e->timer_id = MME_TIMER_S1_HOLDING;
97
e->enb_ue = enb_ue;
98
99
ogs_assert(data);
100
sgw_ue = data;
101
102
- e = mme_event_new(MME_EVT_S11_TIMER);
103
+ e = mme_event_new(MME_EVENT_S11_TIMER);
104
105
e->timer_id = MME_TIMER_S11_HOLDING;
106
e->sgw_ue = sgw_ue;
107
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/mme-timer.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/mme-timer.h
Changed
9
1
2
} mme_timer_e;
3
4
typedef struct mme_timer_cfg_s {
5
+ bool have;
6
int max_count;
7
ogs_time_t duration;
8
} mme_timer_cfg_t;
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/s1ap-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/s1ap-path.c
Changed
28
1
2
if (duration) {
3
mme_event_t *e = NULL;
4
5
- e = mme_event_new(MME_EVT_S1AP_TIMER);
6
+ e = mme_event_new(MME_EVENT_S1AP_TIMER);
7
ogs_assert(e);
8
e->timer = ogs_timer_add(
9
ogs_app()->timer_mgr, mme_timer_s1_delayed_send, e);
10
11
ogs_assert(mme_ue);
12
ogs_assert(esmbuf);
13
14
- e = mme_event_new(MME_EVT_ESM_MESSAGE);
15
+ e = mme_event_new(MME_EVENT_ESM_MESSAGE);
16
ogs_assert(e);
17
e->mme_ue = mme_ue;
18
e->pkbuf = esmbuf;
19
20
ogs_assert(h);
21
if (h->protocol_discriminator == OGS_NAS_PROTOCOL_DISCRIMINATOR_EMM) {
22
int rv;
23
- e = mme_event_new(MME_EVT_EMM_MESSAGE);
24
+ e = mme_event_new(MME_EVENT_EMM_MESSAGE);
25
if (!e) {
26
ogs_error("s1ap_send_to_nas() failed");
27
ogs_pkbuf_free(nasbuf);
28
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/s1ap-sctp.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/s1ap-sctp.c
Changed
46
1
2
ogs_info("eNB-S1 accepted%s:%d in s1_path module",
3
OGS_ADDR(addr, buf), OGS_PORT(addr));
4
5
- s1ap_event_push(MME_EVT_S1AP_LO_ACCEPT, new, addr, NULL, 0, 0);
6
+ s1ap_event_push(MME_EVENT_S1AP_LO_ACCEPT, new, addr, NULL, 0, 0);
7
} else {
8
ogs_log_message(OGS_LOG_ERROR, ogs_socket_errno, "accept() failed");
9
}
10
11
ogs_assert(addr);
12
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
13
14
- s1ap_event_push(MME_EVT_S1AP_LO_SCTP_COMM_UP,
15
+ s1ap_event_push(MME_EVENT_S1AP_LO_SCTP_COMM_UP,
16
sock, addr, NULL,
17
not->sn_assoc_change.sac_inbound_streams,
18
not->sn_assoc_change.sac_outbound_streams);
19
20
ogs_assert(addr);
21
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
22
23
- s1ap_event_push(MME_EVT_S1AP_LO_CONNREFUSED,
24
+ s1ap_event_push(MME_EVENT_S1AP_LO_CONNREFUSED,
25
sock, addr, NULL, 0, 0);
26
}
27
break;
28
29
ogs_assert(addr);
30
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
31
32
- s1ap_event_push(MME_EVT_S1AP_LO_CONNREFUSED,
33
+ s1ap_event_push(MME_EVENT_S1AP_LO_CONNREFUSED,
34
sock, addr, NULL, 0, 0);
35
break;
36
37
38
ogs_assert(addr);
39
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
40
41
- s1ap_event_push(MME_EVT_S1AP_MESSAGE, sock, addr, pkbuf, 0, 0);
42
+ s1ap_event_push(MME_EVENT_S1AP_MESSAGE, sock, addr, pkbuf, 0, 0);
43
return;
44
} else {
45
if (ogs_socket_errno != OGS_EAGAIN) {
46
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/s1ap-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/s1ap-sm.c
Changed
10
1
2
break;
3
case OGS_FSM_EXIT_SIG:
4
break;
5
- case MME_EVT_S1AP_MESSAGE:
6
+ case MME_EVENT_S1AP_MESSAGE:
7
pdu = e->s1ap_message;
8
ogs_assert(pdu);
9
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/sgsap-conv.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/sgsap-conv.h
Changed
10
1
2
#ifndef SGSAP_CONV_H
3
#define SGSAP_CONV_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/sgsap-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/sgsap-path.c
Changed
19
1
2
memset(&e, 0, sizeof(e));
3
e.vlr = vlr;
4
5
- ogs_fsm_create(&vlr->sm, sgsap_state_initial, sgsap_state_final);
6
- ogs_fsm_init(&vlr->sm, &e);
7
+ ogs_fsm_init(&vlr->sm, sgsap_state_initial, sgsap_state_final, &e);
8
}
9
10
return OGS_OK;
11
12
e.vlr = vlr;
13
14
ogs_fsm_fini(&vlr->sm, &e);
15
- ogs_fsm_delete(&vlr->sm);
16
}
17
}
18
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/sgsap-sctp.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/sgsap-sctp.c
Changed
37
1
2
ogs_assert(addr);
3
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
4
5
- sgsap_event_push(MME_EVT_SGSAP_LO_SCTP_COMM_UP,
6
+ sgsap_event_push(MME_EVENT_SGSAP_LO_SCTP_COMM_UP,
7
sock, addr, NULL,
8
not->sn_assoc_change.sac_inbound_streams,
9
not->sn_assoc_change.sac_outbound_streams);
10
11
ogs_assert(addr);
12
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
13
14
- sgsap_event_push(MME_EVT_SGSAP_LO_CONNREFUSED,
15
+ sgsap_event_push(MME_EVENT_SGSAP_LO_CONNREFUSED,
16
sock, addr, NULL, 0, 0);
17
}
18
break;
19
20
ogs_assert(addr);
21
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
22
23
- sgsap_event_push(MME_EVT_SGSAP_LO_CONNREFUSED,
24
+ sgsap_event_push(MME_EVENT_SGSAP_LO_CONNREFUSED,
25
sock, addr, NULL, 0, 0);
26
break;
27
case SCTP_PEER_ADDR_CHANGE:
28
29
ogs_assert(addr);
30
memcpy(addr, &from, sizeof(ogs_sockaddr_t));
31
32
- sgsap_event_push(MME_EVT_SGSAP_MESSAGE, sock, addr, pkbuf, 0, 0);
33
+ sgsap_event_push(MME_EVENT_SGSAP_MESSAGE, sock, addr, pkbuf, 0, 0);
34
return;
35
} else {
36
ogs_fatal("Invalid flag(0x%x)", flags);
37
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/mme/sgsap-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/mme/sgsap-sm.c
Changed
33
1
2
case OGS_FSM_EXIT_SIG:
3
ogs_timer_stop(vlr->t_conn);
4
break;
5
- case MME_EVT_SGSAP_TIMER:
6
+ case MME_EVENT_SGSAP_TIMER:
7
switch(e->timer_id) {
8
case MME_TIMER_SGS_CLI_CONN_TO_SRV:
9
vlr = e->vlr;
10
11
break;
12
}
13
break;
14
- case MME_EVT_SGSAP_LO_SCTP_COMM_UP:
15
+ case MME_EVENT_SGSAP_LO_SCTP_COMM_UP:
16
OGS_FSM_TRAN(s, sgsap_state_connected);
17
break;
18
default:
19
20
break;
21
case OGS_FSM_EXIT_SIG:
22
break;
23
- case MME_EVT_SGSAP_LO_CONNREFUSED:
24
+ case MME_EVENT_SGSAP_LO_CONNREFUSED:
25
mme_vlr_close(vlr);
26
OGS_FSM_TRAN(s, sgsap_state_will_connect);
27
break;
28
- case MME_EVT_SGSAP_MESSAGE:
29
+ case MME_EVENT_SGSAP_MESSAGE:
30
pkbuf = e->pkbuf;
31
ogs_assert(pkbuf);
32
type = *(unsigned char *)(pkbuf->data);
33
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/context.c
Changed
10
1
2
3
ogs_list_for_each_safe(
4
&ogs_sbi_self()->nf_instance_list, next_nf_instance, nf_instance)
5
- nrf_nf_fsm_fini(nf_instance);
6
+ if (OGS_FSM_STATE(&nf_instance->sm)) nrf_nf_fsm_fini(nf_instance);
7
8
context_initialized = 0;
9
}
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/event.h
Changed
19
1
2
#ifndef NRF_EVENT_H
3
#define NRF_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
11
typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
12
13
typedef enum {
14
- NRF_EVT_BASE = OGS_FSM_USER_SIG,
15
+ NRF_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
16
17
NRF_EVT_SBI_SERVER,
18
NRF_EVT_SBI_CLIENT,
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/init.c
Changed
17
1
2
ogs_fsm_t nrf_sm;
3
int rv;
4
5
- ogs_fsm_create(&nrf_sm, nrf_state_initial, nrf_state_final);
6
- ogs_fsm_init(&nrf_sm, 0);
7
+ ogs_fsm_init(&nrf_sm, nrf_state_initial, nrf_state_final, 0);
8
9
for ( ;; ) {
10
ogs_pollset_poll(ogs_app()->pollset,
11
12
done:
13
14
ogs_fsm_fini(&nrf_sm, 0);
15
- ogs_fsm_delete(&nrf_sm);
16
}
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/nf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/nf-sm.c
Changed
21
1
2
memset(&e, 0, sizeof(e));
3
e.nf_instance = nf_instance;
4
5
- ogs_fsm_create(&nf_instance->sm,
6
- nrf_nf_state_initial, nrf_nf_state_final);
7
- ogs_fsm_init(&nf_instance->sm, &e);
8
+ ogs_fsm_init(&nf_instance->sm,
9
+ nrf_nf_state_initial, nrf_nf_state_final, &e);
10
}
11
12
void nrf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance)
13
14
e.nf_instance = nf_instance;
15
16
ogs_fsm_fini(&nf_instance->sm, &e);
17
- ogs_fsm_delete(&nf_instance->sm);
18
}
19
20
void nrf_nf_state_initial(ogs_fsm_t *s, nrf_event_t *e)
21
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/nnrf-handler.c
Changed
20
1
2
ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
3
{
4
int status;
5
- bool handled;
6
ogs_sbi_response_t *response = NULL;
7
8
OpenAPI_nf_profile_t *NFProfile = NULL;
9
10
nf_instance->nf_profile, NFProfile);
11
12
/* ogs_sbi_nnrf_handle_nf_profile() sends error response */
13
- handled = ogs_sbi_nnrf_handle_nf_profile(
14
- nf_instance, NFProfile, stream, recvmsg);
15
- if (!handled) return false;
16
+ ogs_sbi_nnrf_handle_nf_profile(nf_instance, NFProfile, stream, recvmsg);
17
18
if (OGS_FSM_CHECK(&nf_instance->sm, nrf_nf_state_will_register)) {
19
recvmsg->http.location = recvmsg->h.uri;
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/sbi-path.c
Changed
15
1
2
client->cb = client_notify_cb;
3
}
4
5
- /* Timer expiration handler of client wait timer */
6
- ogs_sbi_self()->client_wait_expire = nrf_timer_sbi_client_wait_expire;
7
-
8
- /* NF register state in NF state machine */
9
- ogs_sbi_self()->nf_state_registered =
10
- (ogs_fsm_handler_t)nrf_nf_state_registered;
11
-
12
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
13
return OGS_ERROR;
14
15
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/timer.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/timer.c
Changed
27
1
2
3
#include "context.h"
4
5
-static nrf_timer_cfg_t g_nrf_timer_cfgMAX_NUM_OF_NRF_TIMER = {
6
- /* Nothing */
7
-};
8
-
9
-nrf_timer_cfg_t *nrf_timer_cfg(nrf_timer_e id)
10
-{
11
- ogs_assert(id < MAX_NUM_OF_NRF_TIMER);
12
- return &g_nrf_timer_cfgid;
13
-}
14
-
15
const char *nrf_timer_get_name(nrf_timer_e id)
16
{
17
switch (id) {
18
19
{
20
timer_send_event(NRF_TIMER_SUBSCRIPTION_VALIDITY, data);
21
}
22
-
23
-void nrf_timer_sbi_client_wait_expire(void *data)
24
-{
25
- timer_send_event(NRF_TIMER_SBI_CLIENT_WAIT, data);
26
-}
27
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nrf/timer.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nrf/timer.h
Changed
20
1
2
3
} nrf_timer_e;
4
5
-typedef struct nrf_timer_cfg_s {
6
- int max_count;
7
- ogs_time_t duration;
8
-} nrf_timer_cfg_t;
9
-
10
-nrf_timer_cfg_t *nrf_timer_cfg(nrf_timer_e id);
11
-
12
const char *nrf_timer_get_name(nrf_timer_e id);
13
14
void nrf_timer_nf_instance_no_heartbeat(void *data);
15
void nrf_timer_subscription_validity(void *data);
16
-void nrf_timer_sbi_client_wait_expire(void *data);
17
18
#ifdef __cplusplus
19
}
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/context.c
Changed
8
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-sbi.h"
10
11
#include "nssf-sm.h"
12
-#include "timer.h"
13
14
#ifdef __cplusplus
15
extern "C" {
16
17
ogs_list_t nsi_list; /* NSI List */
18
} nssf_context_t;
19
20
-#define NSSF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
21
- do { \
22
- ogs_assert(_nFInstance); \
23
- if ((_nFInstance)->reference_count == 1) { \
24
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
25
- nssf_nf_fsm_fini((_nFInstance)); \
26
- ogs_sbi_nf_instance_remove(_nFInstance); \
27
- } else { \
28
- /* There is an assocation with other context */ \
29
- ogs_info("%s:%d (%s) NF suspended", \
30
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
31
- OGS_FSM_TRAN(&_nFInstance->sm, nssf_nf_state_de_registered); \
32
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
33
- } \
34
- } while(0)
35
-
36
void nssf_context_init(void);
37
void nssf_context_final(void);
38
nssf_context_t *nssf_self(void);
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/event.c
Changed
86
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, nssf_event_t);
15
-
16
-void nssf_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void nssf_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-nssf_event_t *nssf_event_new(nssf_event_e id)
27
+nssf_event_t *nssf_event_new(int id)
28
{
29
nssf_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(nssf_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void nssf_event_free(nssf_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *nssf_event_get_name(nssf_event_t *e)
49
{
50
- if (e == NULL)
51
+ if (e == NULL) {
52
return OGS_FSM_NAME_INIT_SIG;
53
+ }
54
55
- switch (e->id) {
56
- case OGS_FSM_ENTRY_SIG:
57
+ switch (e->h.id) {
58
+ case OGS_FSM_ENTRY_SIG:
59
return OGS_FSM_NAME_ENTRY_SIG;
60
- case OGS_FSM_EXIT_SIG:
61
+ case OGS_FSM_EXIT_SIG:
62
return OGS_FSM_NAME_EXIT_SIG;
63
64
- case NSSF_EVT_SBI_SERVER:
65
- return "NSSF_EVT_SBI_SERVER";
66
- case NSSF_EVT_SBI_CLIENT:
67
- return "NSSF_EVT_SBI_CLIENT";
68
- case NSSF_EVT_SBI_TIMER:
69
- return "NSSF_EVT_SBI_TIMER";
70
+ case OGS_EVENT_SBI_SERVER:
71
+ return OGS_EVENT_NAME_SBI_SERVER;
72
+ case OGS_EVENT_SBI_CLIENT:
73
+ return OGS_EVENT_NAME_SBI_CLIENT;
74
+ case OGS_EVENT_SBI_TIMER:
75
+ return OGS_EVENT_NAME_SBI_TIMER;
76
77
- default:
78
- break;
79
+ default:
80
+ break;
81
}
82
83
+ ogs_error("Unknown Event%d", e->h.id);
84
return "UNKNOWN_EVENT";
85
}
86
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/event.h
Changed
62
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef NSSF_EVENT_H
10
#define NSSF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
-typedef enum {
26
- NSSF_EVT_BASE = OGS_FSM_USER_SIG,
27
-
28
- NSSF_EVT_SBI_SERVER,
29
- NSSF_EVT_SBI_CLIENT,
30
- NSSF_EVT_SBI_TIMER,
31
-
32
- NSSF_EVT_TOP,
33
-
34
-} nssf_event_e;
35
+typedef struct nssf_ue_s nssf_ue_t;
36
37
typedef struct nssf_event_s {
38
- int id;
39
- int timer_id;
40
-
41
- struct {
42
- ogs_sbi_request_t *request;
43
- ogs_sbi_response_t *response;
44
- void *data;
45
-
46
- ogs_sbi_message_t *message;
47
- } sbi;
48
-
49
- ogs_timer_t *timer;
50
+ ogs_event_t h;
51
} nssf_event_t;
52
53
-void nssf_event_init(void);
54
-void nssf_event_final(void);
55
-
56
-nssf_event_t *nssf_event_new(nssf_event_e id);
57
-void nssf_event_free(nssf_event_t *e);
58
+nssf_event_t *nssf_event_new(int id);
59
60
const char *nssf_event_get_name(nssf_event_t *e);
61
62
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
nssf_context_init();
12
- nssf_event_init();
13
14
rv = ogs_sbi_context_parse_config("nssf", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- nssf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
nssf_context_final();
28
ogs_sbi_context_final();
29
-
30
- nssf_event_final(); /* Destroy event */
31
}
32
33
static void nssf_main(void *data)
34
35
ogs_fsm_t nssf_sm;
36
int rv;
37
38
- ogs_fsm_create(&nssf_sm, nssf_state_initial, nssf_state_final);
39
- ogs_fsm_init(&nssf_sm, 0);
40
+ ogs_fsm_init(&nssf_sm, nssf_state_initial, nssf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&nssf_sm, e);
48
- nssf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&nssf_sm, 0);
55
- ogs_fsm_delete(&nssf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/meson.build
Changed
19
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libnssf_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
-
13
- nnrf-build.c
14
- nnrf-handler.c
15
- nf-sm.c
16
17
nnssf-handler.c
18
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nssf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/nssf-sm.c
Changed
119
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case NSSF_EVT_SBI_SERVER:
21
- request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ request = e->h.sbi.request;
24
ogs_assert(request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&message, request);
30
31
ogs_sbi_message_free(&message);
32
break;
33
34
- case NSSF_EVT_SBI_CLIENT:
35
+ case OGS_EVENT_SBI_CLIENT:
36
ogs_assert(e);
37
38
- response = e->sbi.response;
39
+ response = e->h.sbi.response;
40
ogs_assert(response);
41
rv = ogs_sbi_parse_response(&message, response);
42
if (rv != OGS_OK) {
43
44
45
SWITCH(message.h.resource.component0)
46
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
47
- nf_instance = e->sbi.data;
48
+ nf_instance = e->h.sbi.data;
49
ogs_assert(nf_instance);
50
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
51
52
- e->sbi.message = &message;
53
+ e->h.sbi.message = &message;
54
ogs_fsm_dispatch(&nf_instance->sm, e);
55
break;
56
57
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
58
- subscription = e->sbi.data;
59
+ subscription = e->h.sbi.data;
60
ogs_assert(subscription);
61
62
SWITCH(message.h.method)
63
CASE(OGS_SBI_HTTP_METHOD_POST)
64
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
65
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
66
- nssf_nnrf_handle_nf_status_subscribe(
67
+ ogs_nnrf_handle_nf_status_subscribe(
68
subscription, &message);
69
} else {
70
ogs_error("%s HTTP response error %d",
71
72
ogs_sbi_response_free(response);
73
break;
74
75
- case NSSF_EVT_SBI_TIMER:
76
+ case OGS_EVENT_SBI_TIMER:
77
ogs_assert(e);
78
79
- switch(e->timer_id) {
80
- case NSSF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
81
- case NSSF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
82
- case NSSF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
83
- case NSSF_TIMER_NF_INSTANCE_VALIDITY:
84
- nf_instance = e->sbi.data;
85
+ switch(e->h.timer_id) {
86
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
87
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
88
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
89
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
90
+ nf_instance = e->h.sbi.data;
91
ogs_assert(nf_instance);
92
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
93
94
ogs_fsm_dispatch(&nf_instance->sm, e);
95
- if (OGS_FSM_CHECK(&nf_instance->sm, nssf_nf_state_exception))
96
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
97
ogs_error("%s:%s State machine exception %d",
98
OpenAPI_nf_type_ToString(nf_instance->nf_type),
99
- nf_instance->id, e->timer_id);
100
+ nf_instance->id, e->h.timer_id);
101
break;
102
103
- case NSSF_TIMER_SUBSCRIPTION_VALIDITY:
104
- subscription = e->sbi.data;
105
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
106
+ subscription = e->h.sbi.data;
107
ogs_assert(subscription);
108
109
ogs_assert(ogs_sbi_self()->nf_instance);
110
111
112
default:
113
ogs_error("Unknown timer%s:%d",
114
- nssf_timer_get_name(e->timer_id), e->timer_id);
115
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
116
}
117
break;
118
119
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/nssf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/nssf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void nssf_state_final(ogs_fsm_t *s, nssf_event_t *e);
10
void nssf_state_operational(ogs_fsm_t *s, nssf_event_t *e);
11
12
-void nssf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void nssf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void nssf_nf_state_initial(ogs_fsm_t *s, nssf_event_t *e);
16
-void nssf_nf_state_final(ogs_fsm_t *s, nssf_event_t *e);
17
-void nssf_nf_state_will_register(ogs_fsm_t *s, nssf_event_t *e);
18
-void nssf_nf_state_registered(ogs_fsm_t *s, nssf_event_t *e);
19
-void nssf_nf_state_de_registered(ogs_fsm_t *s, nssf_event_t *e);
20
-void nssf_nf_state_exception(ogs_fsm_t *s, nssf_event_t *e);
21
-
22
#define nssf_sm_debug(__pe) \
23
ogs_debug("%s(): %s", __func__, nssf_event_get_name(__pe))
24
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/sbi-path.c
Changed
92
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = nssf_event_new(NSSF_EVT_SBI_SERVER);
13
+ e = nssf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- nssf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = nssf_event_new(NSSF_EVT_SBI_CLIENT);
35
+ e = nssf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- nssf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
}
53
54
/* Initialize NRF NF Instance */
55
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
56
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
57
- ogs_sbi_client_t *client = NULL;
58
-
59
- /* Client callback is only used when NF sends to NRF */
60
- client = nf_instance->client;
61
- ogs_assert(client);
62
- client->cb = client_cb;
63
-
64
- /* NFRegister is sent and the response is received
65
- * by the above client callback. */
66
- nssf_nf_fsm_init(nf_instance);
67
- }
68
+ nf_instance = ogs_sbi_self()->nrf_instance;
69
+ if (nf_instance) {
70
+ ogs_sbi_client_t *client = NULL;
71
+
72
+ /* Client callback is only used when NF sends to NRF */
73
+ client = nf_instance->client;
74
+ ogs_assert(client);
75
+ client->cb = client_cb;
76
+
77
+ /* NFRegister is sent and the response is received
78
+ * by the above client callback. */
79
+ ogs_sbi_nf_fsm_init(nf_instance);
80
}
81
82
- /* Timer expiration handler of client wait timer */
83
- ogs_sbi_self()->client_wait_expire = nssf_timer_sbi_client_wait_expire;
84
-
85
- /* NF register state in NF state machine */
86
- ogs_sbi_self()->nf_state_registered =
87
- (ogs_fsm_handler_t)nssf_nf_state_registered;
88
-
89
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
90
return OGS_ERROR;
91
92
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/nssf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/nssf/sbi-path.h
Changed
17
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef NSSF_SBI_PATH_H
10
#define NSSF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
+#include "context.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/am-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/am-sm.c
Changed
62
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
pcf_ue = e->pcf_ue;
10
ogs_assert(pcf_ue);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case PCF_EVT_SBI_SERVER:
21
- message = e->sbi.message;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ message = e->h.sbi.message;
24
ogs_assert(message);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
SWITCH(message->h.method)
30
31
END
32
break;
33
34
- case PCF_EVT_SBI_CLIENT:
35
- message = e->sbi.message;
36
+ case OGS_EVENT_SBI_CLIENT:
37
+ message = e->h.sbi.message;
38
ogs_assert(message);
39
- stream = e->sbi.data;
40
+ stream = e->h.sbi.data;
41
ogs_assert(stream);
42
43
SWITCH(message->h.service.name)
44
45
pcf_ue = e->pcf_ue;
46
ogs_assert(pcf_ue);
47
48
- switch (e->id) {
49
+ switch (e->h.id) {
50
case OGS_FSM_ENTRY_SIG:
51
break;
52
53
54
pcf_ue = e->pcf_ue;
55
ogs_assert(pcf_ue);
56
57
- switch (e->id) {
58
+ switch (e->h.id) {
59
case OGS_FSM_ENTRY_SIG:
60
break;
61
62
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/context.c
Changed
44
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
memset(&e, 0, sizeof(e));
11
e.pcf_ue = pcf_ue;
12
- ogs_fsm_create(&pcf_ue->sm, pcf_am_state_initial, pcf_am_state_final);
13
- ogs_fsm_init(&pcf_ue->sm, &e);
14
+ ogs_fsm_init(&pcf_ue->sm, pcf_am_state_initial, pcf_am_state_final, &e);
15
16
ogs_list_add(&self.pcf_ue_list, pcf_ue);
17
18
19
memset(&e, 0, sizeof(e));
20
e.pcf_ue = pcf_ue;
21
ogs_fsm_fini(&pcf_ue->sm, &e);
22
- ogs_fsm_delete(&pcf_ue->sm);
23
24
/* Free SBI object memory */
25
ogs_sbi_object_free(&pcf_ue->sbi);
26
27
28
memset(&e, 0, sizeof(e));
29
e.sess = sess;
30
- ogs_fsm_create(&sess->sm, pcf_sm_state_initial, pcf_sm_state_final);
31
- ogs_fsm_init(&sess->sm, &e);
32
+ ogs_fsm_init(&sess->sm, pcf_sm_state_initial, pcf_sm_state_final, &e);
33
34
ogs_list_add(&pcf_ue->sess_list, sess);
35
36
37
memset(&e, 0, sizeof(e));
38
e.sess = sess;
39
ogs_fsm_fini(&sess->sm, &e);
40
- ogs_fsm_delete(&sess->sm);
41
42
/* Free SBI object memory */
43
ogs_sbi_object_free(&sess->sbi);
44
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-dbi.h"
10
11
#include "pcf-sm.h"
12
-#include "timer.h"
13
14
#ifdef __cplusplus
15
extern "C" {
16
17
ogs_hash_t *ipv6prefix_hash;
18
} pcf_context_t;
19
20
-#define PCF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
21
- do { \
22
- ogs_assert(_nFInstance); \
23
- if ((_nFInstance)->reference_count == 1) { \
24
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
25
- pcf_nf_fsm_fini((_nFInstance)); \
26
- ogs_sbi_nf_instance_remove(_nFInstance); \
27
- } else { \
28
- /* There is an assocation with other context */ \
29
- ogs_info("%s:%d (%s) NF suspended", \
30
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
31
- OGS_FSM_TRAN(&_nFInstance->sm, pcf_nf_state_de_registered); \
32
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
33
- } \
34
- } while(0)
35
-
36
struct pcf_ue_s {
37
ogs_sbi_object_t sbi;
38
ogs_fsm_t sm;
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/event.c
Changed
86
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, pcf_event_t);
15
-
16
-void pcf_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void pcf_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-pcf_event_t *pcf_event_new(pcf_event_e id)
27
+pcf_event_t *pcf_event_new(int id)
28
{
29
pcf_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(pcf_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void pcf_event_free(pcf_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *pcf_event_get_name(pcf_event_t *e)
49
{
50
- if (e == NULL)
51
+ if (e == NULL) {
52
return OGS_FSM_NAME_INIT_SIG;
53
+ }
54
55
- switch (e->id) {
56
- case OGS_FSM_ENTRY_SIG:
57
+ switch (e->h.id) {
58
+ case OGS_FSM_ENTRY_SIG:
59
return OGS_FSM_NAME_ENTRY_SIG;
60
- case OGS_FSM_EXIT_SIG:
61
+ case OGS_FSM_EXIT_SIG:
62
return OGS_FSM_NAME_EXIT_SIG;
63
64
- case PCF_EVT_SBI_SERVER:
65
- return "PCF_EVT_SBI_SERVER";
66
- case PCF_EVT_SBI_CLIENT:
67
- return "PCF_EVT_SBI_CLIENT";
68
- case PCF_EVT_SBI_TIMER:
69
- return "PCF_EVT_SBI_TIMER";
70
+ case OGS_EVENT_SBI_SERVER:
71
+ return OGS_EVENT_NAME_SBI_SERVER;
72
+ case OGS_EVENT_SBI_CLIENT:
73
+ return OGS_EVENT_NAME_SBI_CLIENT;
74
+ case OGS_EVENT_SBI_TIMER:
75
+ return OGS_EVENT_NAME_SBI_TIMER;
76
77
- default:
78
- break;
79
+ default:
80
+ break;
81
}
82
83
+ ogs_error("Unknown Event%d", e->h.id);
84
return "UNKNOWN_EVENT";
85
}
86
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/event.h
Changed
69
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef PCF_EVENT_H
10
#define PCF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
typedef struct pcf_ue_s pcf_ue_t;
26
typedef struct pcf_sess_s pcf_sess_t;
27
typedef struct pcf_app_s pcf_app_t;
28
29
-typedef enum {
30
- PCF_EVT_BASE = OGS_FSM_USER_SIG,
31
-
32
- PCF_EVT_SBI_SERVER,
33
- PCF_EVT_SBI_CLIENT,
34
- PCF_EVT_SBI_TIMER,
35
-
36
- PCF_EVT_TOP,
37
-
38
-} pcf_event_e;
39
-
40
typedef struct pcf_event_s {
41
- int id;
42
- int timer_id;
43
-
44
- struct {
45
- ogs_sbi_request_t *request;
46
- ogs_sbi_response_t *response;
47
- void *data;
48
-
49
- ogs_sbi_message_t *message;
50
- } sbi;
51
+ ogs_event_t h;
52
53
pcf_ue_t *pcf_ue;
54
pcf_sess_t *sess;
55
pcf_app_t *app;
56
-
57
- ogs_timer_t *timer;
58
} pcf_event_t;
59
60
-void pcf_event_init(void);
61
-void pcf_event_final(void);
62
-
63
-pcf_event_t *pcf_event_new(pcf_event_e id);
64
-void pcf_event_free(pcf_event_t *e);
65
+pcf_event_t *pcf_event_new(int id);
66
67
const char *pcf_event_get_name(pcf_event_t *e);
68
69
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
pcf_context_init();
12
- pcf_event_init();
13
14
rv = ogs_sbi_context_parse_config("pcf", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- pcf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
pcf_context_final();
28
ogs_sbi_context_final();
29
-
30
- pcf_event_final(); /* Destroy event */
31
}
32
33
static void pcf_main(void *data)
34
35
ogs_fsm_t pcf_sm;
36
int rv;
37
38
- ogs_fsm_create(&pcf_sm, pcf_state_initial, pcf_state_final);
39
- ogs_fsm_init(&pcf_sm, 0);
40
+ ogs_fsm_init(&pcf_sm, pcf_state_initial, pcf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&pcf_sm, e);
48
- pcf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&pcf_sm, 0);
55
- ogs_fsm_delete(&pcf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/meson.build
Changed
20
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libpcf_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
13
- nnrf-build.c
14
nnrf-handler.c
15
- nf-sm.c
16
-
17
npcf-handler.c
18
19
nudr-build.c
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nbsf-build.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/nbsf-build.c
Changed
32
1
2
ogs_sbi_nf_service_t *nf_service = NULL;
3
4
int i;
5
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
6
- int fqdn_len;
7
- char fqdnOGS_MAX_FQDN_LEN;
8
-#endif
9
10
ogs_assert(sess);
11
pcf_ue = sess->pcf_ue;
12
13
nf_service = ogs_list_first(&nf_instance->nf_service_list);
14
ogs_expect_or_return_val(nf_service, NULL);
15
16
- if (nf_service->fqdn) {
17
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
18
- memset(fqdn, 0, sizeof(fqdn));
19
- fqdn_len = ogs_fqdn_build(fqdn,
20
- nf_service->fqdn, strlen(nf_service->fqdn));
21
- PcfBinding.pcf_fqdn = ogs_memdup(fqdn, fqdn_len+1);
22
- ogs_expect_or_return_val(PcfBinding.pcf_fqdn, NULL);
23
- PcfBinding.pcf_fqdnfqdn_len = 0;
24
-#else
25
+ if (nf_service->fqdn)
26
PcfBinding.pcf_fqdn = ogs_strdup(nf_service->fqdn);
27
-#endif
28
- }
29
30
PcfIpEndPointList = OpenAPI_list_create();
31
ogs_assert(PcfIpEndPointList);
32
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/nnrf-handler.c
Changed
321
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "sbi-path.h"
10
#include "nnrf-handler.h"
11
12
-void pcf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->is_heart_beat_timer == true)
31
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
32
-}
33
-
34
-void pcf_nnrf_handle_nf_status_subscribe(
35
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
36
-{
37
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
38
- ogs_sbi_client_t *client = NULL;
39
-
40
- ogs_assert(recvmsg);
41
- ogs_assert(subscription);
42
- client = subscription->client;
43
- ogs_assert(client);
44
-
45
- SubscriptionData = recvmsg->SubscriptionData;
46
- if (!SubscriptionData) {
47
- ogs_error("No SubscriptionData");
48
- return;
49
- }
50
-
51
- if (!SubscriptionData->subscription_id) {
52
- ogs_error("No SubscriptionId");
53
- return;
54
- }
55
- ogs_sbi_subscription_set_id(
56
- subscription, SubscriptionData->subscription_id);
57
-
58
- if (SubscriptionData->validity_time) {
59
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
60
- ogs_time_t time, duration;
61
- if (ogs_sbi_time_from_string(
62
- &time, SubscriptionData->validity_time) == true) {
63
- duration = time - ogs_time_now();
64
- if (duration < VALIDITY_MINIMUM) {
65
- duration = VALIDITY_MINIMUM;
66
- ogs_warn("%s Forced to %lld seconds", subscription->id,
67
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
68
- }
69
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
70
- pcf_timer_subscription_validity, subscription);
71
- ogs_assert(subscription->t_validity);
72
- ogs_timer_start(subscription->t_validity, duration);
73
- } else {
74
- ogs_error("Cannot parse validitiyTime %s",
75
- SubscriptionData->validity_time);
76
- }
77
- }
78
-}
79
-
80
-bool pcf_nnrf_handle_nf_status_notify(
81
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
82
-{
83
- int rv;
84
- bool handled;
85
-
86
- ogs_sbi_response_t *response = NULL;
87
- OpenAPI_notification_data_t *NotificationData = NULL;
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_sbi_message_t message;
91
- ogs_sbi_header_t header;
92
-
93
- ogs_assert(stream);
94
- ogs_assert(recvmsg);
95
-
96
- NotificationData = recvmsg->NotificationData;
97
- if (!NotificationData) {
98
- ogs_error("No NotificationData");
99
- ogs_assert(true ==
100
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
101
- recvmsg, "No NotificationData", NULL));
102
- return false;
103
- }
104
-
105
- if (!NotificationData->nf_instance_uri) {
106
- ogs_error("No nfInstanceUri");
107
- ogs_assert(true ==
108
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
109
- recvmsg, "No nfInstanceUri", NULL));
110
- return false;
111
- }
112
-
113
- memset(&header, 0, sizeof(header));
114
- header.uri = NotificationData->nf_instance_uri;
115
-
116
- rv = ogs_sbi_parse_header(&message, &header);
117
- if (rv != OGS_OK) {
118
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
122
- return false;
123
- }
124
-
125
- if (!message.h.resource.component1) {
126
- ogs_error("No nfInstanceId %s", header.uri);
127
- ogs_assert(true ==
128
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
129
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
130
- ogs_sbi_header_free(&header);
131
- return false;
132
- }
133
-
134
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
135
- ogs_warn("%s The notification is not allowed",
136
- message.h.resource.component1);
137
- ogs_assert(true ==
138
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
139
- recvmsg, "The notification is not allowed",
140
- message.h.resource.component1));
141
- ogs_sbi_header_free(&header);
142
- return false;
143
- }
144
-
145
- if (NotificationData->event ==
146
- OpenAPI_notification_event_type_NF_REGISTERED) {
147
-
148
- OpenAPI_nf_profile_t *NFProfile = NULL;
149
-
150
- NFProfile = NotificationData->nf_profile;
151
- if (!NFProfile) {
152
- ogs_error("No NFProfile");
153
- ogs_assert(true ==
154
- ogs_sbi_server_send_error(
155
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
156
- recvmsg, "No NFProfile", NULL));
157
- ogs_sbi_header_free(&header);
158
- return false;
159
- }
160
-
161
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
162
- if (!nf_instance) {
163
- nf_instance = ogs_sbi_nf_instance_add();
164
- ogs_assert(nf_instance);
165
- ogs_sbi_nf_instance_set_id(nf_instance,
166
- message.h.resource.component1);
167
-
168
- pcf_nf_fsm_init(nf_instance);
169
-
170
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
171
-
172
- } else {
173
- OGS_FSM_TRAN(&nf_instance->sm, pcf_nf_state_registered);
174
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
175
-
176
- ogs_warn("%s (NRF-notify) NF has already been added",
177
- message.h.resource.component1);
178
-
179
- }
180
-
181
- handled = ogs_sbi_nnrf_handle_nf_profile(
182
- nf_instance, NFProfile, stream, recvmsg);
183
- if (!handled) {
184
- PCF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
185
- ogs_sbi_header_free(&header);
186
- return false;
187
- }
188
-
189
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
190
-
191
- handled = ogs_sbi_client_associate(nf_instance);
192
- if (!handled) {
193
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
194
- ogs_assert(true ==
195
- ogs_sbi_server_send_error(stream,
196
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
197
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
198
- PCF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
199
- ogs_sbi_header_free(&header);
200
- return false;
201
- }
202
-
203
- } else if (NotificationData->event ==
204
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
205
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
206
- if (nf_instance) {
207
- PCF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
208
- } else {
209
- ogs_warn("%s (NRF-notify) Not found",
210
- message.h.resource.component1);
211
- ogs_assert(true ==
212
- ogs_sbi_server_send_error(stream,
213
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
214
- recvmsg, "Not found", message.h.resource.component1));
215
- ogs_sbi_header_free(&header);
216
- return false;
217
- }
218
- } else {
219
- char *eventstr = OpenAPI_notification_event_type_ToString(
220
- NotificationData->event);
221
- ogs_error("Not supported event %d:%s",
222
- NotificationData->event, eventstr ? eventstr : "Unknown");
223
- ogs_assert(true ==
224
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
225
- recvmsg, "Not supported event",
226
- eventstr ? eventstr : "Unknown"));
227
- ogs_sbi_header_free(&header);
228
- return false;
229
- }
230
-
231
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
232
- ogs_assert(response);
233
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
234
-
235
- ogs_sbi_header_free(&header);
236
- return true;
237
-}
238
-
239
void pcf_nnrf_handle_nf_discover(
240
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
241
{
242
243
OpenAPI_nf_type_e target_nf_type = 0;
244
ogs_sbi_discovery_option_t *discovery_option = NULL;
245
246
- ogs_sbi_nf_instance_t *nf_instance = NULL;
247
-
248
OpenAPI_search_result_t *SearchResult = NULL;
249
- OpenAPI_lnode_t *node = NULL;
250
- bool handled;
251
252
ogs_assert(recvmsg);
253
ogs_assert(xact);
254
255
return;
256
}
257
258
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
259
- OpenAPI_nf_profile_t *NFProfile = NULL;
260
-
261
- if (!node->data) continue;
262
-
263
- NFProfile = node->data;
264
-
265
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
266
- if (!nf_instance) {
267
- nf_instance = ogs_sbi_nf_instance_add();
268
- ogs_assert(nf_instance);
269
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
270
-
271
- pcf_nf_fsm_init(nf_instance);
272
-
273
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
274
- } else {
275
- OGS_FSM_TRAN(&nf_instance->sm, pcf_nf_state_registered);
276
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
277
-
278
- ogs_warn("%s (NF-discover) NF has already been added",
279
- NFProfile->nf_instance_id);
280
- }
281
-
282
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
283
- handled = ogs_sbi_nnrf_handle_nf_profile(
284
- nf_instance, NFProfile, NULL, NULL);
285
- if (!handled) {
286
- ogs_error("%s ogs_sbi_nnrf_handle_nf_profile() failed",
287
- nf_instance->id);
288
- PCF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
289
- continue;
290
- }
291
-
292
- handled = ogs_sbi_client_associate(nf_instance);
293
- if (!handled) {
294
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
295
- PCF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
296
- continue;
297
- }
298
-
299
- /* TIME : Update validity from NRF */
300
- if (SearchResult->is_validity_period &&
301
- SearchResult->validity_period) {
302
- nf_instance->time.validity_duration =
303
- SearchResult->validity_period;
304
-
305
- ogs_assert(nf_instance->t_validity);
306
- ogs_timer_start(nf_instance->t_validity,
307
- ogs_time_from_sec(nf_instance->time.validity_duration));
308
-
309
- } else
310
- ogs_warn("%s NF Instance validity-time should not 0",
311
- nf_instance->id);
312
-
313
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
314
- }
315
- }
316
+ ogs_nnrf_handle_nf_discover_search_result(
317
+ sbi_object, target_nf_type, discovery_option, SearchResult);
318
319
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
320
321
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/nnrf-handler.h
Changed
23
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void pcf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void pcf_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool pcf_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void pcf_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
23
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/pcf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/pcf-sm.c
Changed
256
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case PCF_EVT_SBI_SERVER:
21
- request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ request = e->h.sbi.request;
24
ogs_assert(request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&message, request);
30
31
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
32
SWITCH(message.h.method)
33
CASE(OGS_SBI_HTTP_METHOD_POST)
34
- pcf_nnrf_handle_nf_status_notify(stream, &message);
35
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
36
break;
37
38
DEFAULT
39
40
ogs_assert(OGS_FSM_STATE(&pcf_ue->sm));
41
42
e->pcf_ue = pcf_ue;
43
- e->sbi.message = &message;
44
+ e->h.sbi.message = &message;
45
ogs_fsm_dispatch(&pcf_ue->sm, e);
46
if (OGS_FSM_CHECK(&pcf_ue->sm, pcf_am_state_exception)) {
47
ogs_error("%s State machine exception", pcf_ue->supi);
48
49
ogs_assert(OGS_FSM_STATE(&sess->sm));
50
51
e->sess = sess;
52
- e->sbi.message = &message;
53
+ e->h.sbi.message = &message;
54
ogs_fsm_dispatch(&sess->sm, e);
55
if (OGS_FSM_CHECK(&sess->sm, pcf_sm_state_exception)) {
56
ogs_error("%s:%d State machine exception",
57
58
59
e->sess = sess;
60
e->app = app_session;
61
- e->sbi.message = &message;
62
+ e->h.sbi.message = &message;
63
ogs_fsm_dispatch(&sess->sm, e);
64
if (OGS_FSM_CHECK(&sess->sm, pcf_sm_state_exception)) {
65
ogs_error("%s:%d State machine exception",
66
67
ogs_sbi_message_free(&message);
68
break;
69
70
- case PCF_EVT_SBI_CLIENT:
71
+ case OGS_EVENT_SBI_CLIENT:
72
ogs_assert(e);
73
74
- response = e->sbi.response;
75
+ response = e->h.sbi.response;
76
ogs_assert(response);
77
rv = ogs_sbi_parse_response(&message, response);
78
if (rv != OGS_OK) {
79
80
81
SWITCH(message.h.resource.component0)
82
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
83
- nf_instance = e->sbi.data;
84
+ nf_instance = e->h.sbi.data;
85
ogs_assert(nf_instance);
86
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
87
88
- e->sbi.message = &message;
89
+ e->h.sbi.message = &message;
90
ogs_fsm_dispatch(&nf_instance->sm, e);
91
break;
92
93
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
94
- subscription = e->sbi.data;
95
+ subscription = e->h.sbi.data;
96
ogs_assert(subscription);
97
98
SWITCH(message.h.method)
99
CASE(OGS_SBI_HTTP_METHOD_POST)
100
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
101
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
102
- pcf_nnrf_handle_nf_status_subscribe(
103
+ ogs_nnrf_handle_nf_status_subscribe(
104
subscription, &message);
105
} else {
106
ogs_error("%s HTTP response error %d",
107
108
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
109
SWITCH(message.h.resource.component0)
110
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
111
- sbi_xact = e->sbi.data;
112
+ sbi_xact = e->h.sbi.data;
113
ogs_assert(sbi_xact);
114
115
SWITCH(message.h.method)
116
117
CASE(OGS_SBI_RESOURCE_NAME_POLICY_DATA)
118
SWITCH(message.h.resource.component3)
119
CASE(OGS_SBI_RESOURCE_NAME_AM_DATA)
120
- sbi_xact = e->sbi.data;
121
+ sbi_xact = e->h.sbi.data;
122
ogs_assert(sbi_xact);
123
124
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
125
126
pcf_ue = (pcf_ue_t *)sbi_xact->sbi_object;
127
ogs_assert(pcf_ue);
128
129
- e->sbi.data = sbi_xact->assoc_stream;
130
+ e->h.sbi.data = sbi_xact->assoc_stream;
131
132
ogs_sbi_xact_remove(sbi_xact);
133
134
135
}
136
137
e->pcf_ue = pcf_ue;
138
- e->sbi.message = &message;
139
+ e->h.sbi.message = &message;
140
141
ogs_fsm_dispatch(&pcf_ue->sm, e);
142
if (OGS_FSM_CHECK(&pcf_ue->sm, pcf_am_state_exception)) {
143
144
break;
145
146
CASE(OGS_SBI_RESOURCE_NAME_SM_DATA)
147
- sbi_xact = e->sbi.data;
148
+ sbi_xact = e->h.sbi.data;
149
ogs_assert(sbi_xact);
150
151
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
152
153
sess = (pcf_sess_t *)sbi_xact->sbi_object;
154
ogs_assert(sess);
155
156
- e->sbi.data = sbi_xact->assoc_stream;
157
+ e->h.sbi.data = sbi_xact->assoc_stream;
158
159
ogs_sbi_xact_remove(sbi_xact);
160
161
162
ogs_assert(pcf_ue);
163
164
e->sess = sess;
165
- e->sbi.message = &message;
166
+ e->h.sbi.message = &message;
167
168
ogs_fsm_dispatch(&sess->sm, e);
169
if (OGS_FSM_CHECK(&sess->sm, pcf_sm_state_exception)) {
170
171
SWITCH(message.h.resource.component0)
172
CASE(OGS_SBI_RESOURCE_NAME_PCF_BINDINGS)
173
174
- sbi_xact = e->sbi.data;
175
+ sbi_xact = e->h.sbi.data;
176
ogs_assert(sbi_xact);
177
178
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
179
180
sess = (pcf_sess_t *)sbi_xact->sbi_object;
181
ogs_assert(sess);
182
183
- e->sbi.data = sbi_xact->assoc_stream;
184
+ e->h.sbi.data = sbi_xact->assoc_stream;
185
186
ogs_sbi_xact_remove(sbi_xact);
187
188
189
ogs_assert(pcf_ue);
190
191
e->sess = sess;
192
- e->sbi.message = &message;
193
+ e->h.sbi.message = &message;
194
195
ogs_fsm_dispatch(&sess->sm, e);
196
if (OGS_FSM_CHECK(&sess->sm, pcf_sm_state_exception)) {
197
198
ogs_sbi_response_free(response);
199
break;
200
201
- case PCF_EVT_SBI_TIMER:
202
+ case OGS_EVENT_SBI_TIMER:
203
ogs_assert(e);
204
205
- switch(e->timer_id) {
206
- case PCF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
207
- case PCF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
208
- case PCF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
209
- case PCF_TIMER_NF_INSTANCE_VALIDITY:
210
- nf_instance = e->sbi.data;
211
+ switch(e->h.timer_id) {
212
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
213
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
214
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
215
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
216
+ nf_instance = e->h.sbi.data;
217
ogs_assert(nf_instance);
218
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
219
220
ogs_fsm_dispatch(&nf_instance->sm, e);
221
- if (OGS_FSM_CHECK(&nf_instance->sm, pcf_nf_state_exception))
222
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
223
ogs_error("%s:%s State machine exception %d",
224
OpenAPI_nf_type_ToString(nf_instance->nf_type),
225
- nf_instance->id, e->timer_id);
226
+ nf_instance->id, e->h.timer_id);
227
break;
228
229
- case PCF_TIMER_SUBSCRIPTION_VALIDITY:
230
- subscription = e->sbi.data;
231
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
232
+ subscription = e->h.sbi.data;
233
ogs_assert(subscription);
234
235
ogs_assert(ogs_sbi_self()->nf_instance);
236
237
ogs_sbi_subscription_remove(subscription);
238
break;
239
240
- case PCF_TIMER_SBI_CLIENT_WAIT:
241
- sbi_xact = e->sbi.data;
242
+ case OGS_TIMER_SBI_CLIENT_WAIT:
243
+ sbi_xact = e->h.sbi.data;
244
ogs_assert(sbi_xact);
245
246
sbi_object = sbi_xact->sbi_object;
247
248
249
default:
250
ogs_error("Unknown timer%s:%d",
251
- pcf_timer_get_name(e->timer_id), e->timer_id);
252
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
253
}
254
break;
255
256
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/pcf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/pcf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void pcf_state_final(ogs_fsm_t *s, pcf_event_t *e);
10
void pcf_state_operational(ogs_fsm_t *s, pcf_event_t *e);
11
12
-void pcf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void pcf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void pcf_nf_state_initial(ogs_fsm_t *s, pcf_event_t *e);
16
-void pcf_nf_state_final(ogs_fsm_t *s, pcf_event_t *e);
17
-void pcf_nf_state_will_register(ogs_fsm_t *s, pcf_event_t *e);
18
-void pcf_nf_state_registered(ogs_fsm_t *s, pcf_event_t *e);
19
-void pcf_nf_state_de_registered(ogs_fsm_t *s, pcf_event_t *e);
20
-void pcf_nf_state_exception(ogs_fsm_t *s, pcf_event_t *e);
21
-
22
void pcf_am_state_initial(ogs_fsm_t *s, pcf_event_t *e);
23
void pcf_am_state_final(ogs_fsm_t *s, pcf_event_t *e);
24
void pcf_am_state_operational(ogs_fsm_t *s, pcf_event_t *e);
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/sbi-path.c
Changed
104
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = pcf_event_new(PCF_EVT_SBI_SERVER);
13
+ e = pcf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- pcf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = pcf_event_new(PCF_EVT_SBI_CLIENT);
35
+ e = pcf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- pcf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_BSF);
58
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDR);
59
+
60
/* Add SELF NF instance */
61
nf_instance = ogs_sbi_self()->nf_instance;
62
ogs_assert(nf_instance);
63
64
}
65
66
/* Initialize NRF NF Instance */
67
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
68
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
69
- ogs_sbi_client_t *client = NULL;
70
-
71
- /* Client callback is only used when NF sends to NRF */
72
- client = nf_instance->client;
73
- ogs_assert(client);
74
- client->cb = client_cb;
75
-
76
- /* NFRegister is sent and the response is received
77
- * by the above client callback. */
78
- pcf_nf_fsm_init(nf_instance);
79
- }
80
- }
81
-
82
- /* Timer expiration handler of client wait timer */
83
- ogs_sbi_self()->client_wait_expire = pcf_timer_sbi_client_wait_expire;
84
-
85
- /* NF register state in NF state machine */
86
- ogs_sbi_self()->nf_state_registered =
87
- (ogs_fsm_handler_t)pcf_nf_state_registered;
88
+ nf_instance = ogs_sbi_self()->nrf_instance;
89
+ if (nf_instance) {
90
+ ogs_sbi_client_t *client = NULL;
91
+
92
+ /* Client callback is only used when NF sends to NRF */
93
+ client = nf_instance->client;
94
+ ogs_assert(client);
95
+ client->cb = client_cb;
96
+
97
+ /* NFRegister is sent and the response is received
98
+ * by the above client callback. */
99
+ ogs_sbi_nf_fsm_init(nf_instance);
100
+ }
101
102
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
103
return OGS_ERROR;
104
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/sbi-path.h
Changed
16
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef PCF_SBI_PATH_H
10
#define PCF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
#include "nudr-build.h"
14
#include "nbsf-build.h"
15
#include "namf-build.h"
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/pcf/sm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/pcf/sm-sm.c
Changed
62
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
pcf_ue = sess->pcf_ue;
10
ogs_assert(pcf_ue);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case PCF_EVT_SBI_SERVER:
21
- message = e->sbi.message;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ message = e->h.sbi.message;
24
ogs_assert(message);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
SWITCH(message->h.service.name)
30
31
END
32
break;
33
34
- case PCF_EVT_SBI_CLIENT:
35
- message = e->sbi.message;
36
+ case OGS_EVENT_SBI_CLIENT:
37
+ message = e->h.sbi.message;
38
ogs_assert(message);
39
- stream = e->sbi.data;
40
+ stream = e->h.sbi.data;
41
ogs_assert(stream);
42
43
SWITCH(message->h.service.name)
44
45
pcf_ue = sess->pcf_ue;
46
ogs_assert(pcf_ue);
47
48
- switch (e->id) {
49
+ switch (e->h.id) {
50
case OGS_FSM_ENTRY_SIG:
51
break;
52
53
54
pcf_ue = sess->pcf_ue;
55
ogs_assert(pcf_ue);
56
57
- switch (e->id) {
58
+ switch (e->h.id) {
59
case OGS_FSM_ENTRY_SIG:
60
break;
61
62
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/context.h
Changed
32
1
2
#include "ogs-sbi.h"
3
#include "ogs-app.h"
4
5
-#include "timer.h"
6
#include "scp-sm.h"
7
8
#ifdef __cplusplus
9
10
ogs_list_t conn_list;
11
} scp_context_t;
12
13
-#define SCP_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
14
- do { \
15
- ogs_assert(_nFInstance); \
16
- if ((_nFInstance)->reference_count == 1) { \
17
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
18
- scp_nf_fsm_fini((_nFInstance)); \
19
- ogs_sbi_nf_instance_remove(_nFInstance); \
20
- } else { \
21
- /* There is an assocation with other context */ \
22
- ogs_info("%s:%d (%s) NF suspended", \
23
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
24
- OGS_FSM_TRAN(&_nFInstance->sm, scp_nf_state_de_registered); \
25
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
26
- } \
27
- } while(0)
28
-
29
typedef struct scp_conn_s scp_conn_t;
30
31
typedef struct scp_conn_s {
32
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/event.c
Changed
79
1
2
*/
3
4
#include "event.h"
5
-#include "context.h"
6
7
-static OGS_POOL(pool, scp_event_t);
8
-
9
-void scp_event_init(void)
10
-{
11
- ogs_pool_init(&pool, ogs_app()->pool.event);
12
-}
13
-
14
-void scp_event_final(void)
15
-{
16
- ogs_pool_final(&pool);
17
-}
18
-
19
-scp_event_t *scp_event_new(scp_event_e id)
20
+scp_event_t *scp_event_new(int id)
21
{
22
scp_event_t *e = NULL;
23
24
- ogs_pool_alloc(&pool, &e);
25
+ e = ogs_event_size(id, sizeof(scp_event_t));
26
ogs_assert(e);
27
- memset(e, 0, sizeof(*e));
28
29
- e->id = id;
30
+ e->h.id = id;
31
32
return e;
33
}
34
35
-void scp_event_free(scp_event_t *e)
36
-{
37
- ogs_assert(e);
38
- ogs_pool_free(&pool, e);
39
-}
40
-
41
const char *scp_event_get_name(scp_event_t *e)
42
{
43
- if (e == NULL)
44
+ if (e == NULL) {
45
return OGS_FSM_NAME_INIT_SIG;
46
+ }
47
48
- switch (e->id) {
49
- case OGS_FSM_ENTRY_SIG:
50
+ switch (e->h.id) {
51
+ case OGS_FSM_ENTRY_SIG:
52
return OGS_FSM_NAME_ENTRY_SIG;
53
- case OGS_FSM_EXIT_SIG:
54
+ case OGS_FSM_EXIT_SIG:
55
return OGS_FSM_NAME_EXIT_SIG;
56
57
- case SCP_EVT_SBI_SERVER:
58
- return "SCP_EVT_SBI_SERVER";
59
- case SCP_EVT_SBI_CLIENT:
60
- return "SCP_EVT_SBI_CLIENT";
61
- case SCP_EVT_SBI_TIMER:
62
- return "SCP_EVT_SBI_TIMER";
63
+ case OGS_EVENT_SBI_SERVER:
64
+ return OGS_EVENT_NAME_SBI_SERVER;
65
+ case OGS_EVENT_SBI_CLIENT:
66
+ return OGS_EVENT_NAME_SBI_CLIENT;
67
+ case OGS_EVENT_SBI_TIMER:
68
+ return OGS_EVENT_NAME_SBI_TIMER;
69
70
- default:
71
- break;
72
+ default:
73
+ break;
74
}
75
76
+ ogs_error("Unknown Event%d", e->h.id);
77
return "UNKNOWN_EVENT";
78
}
79
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/event.h
Changed
57
1
2
#ifndef SCP_EVENT_H
3
#define SCP_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
#endif
11
12
typedef struct scp_sess_s scp_sess_t;
13
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
14
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
15
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
16
typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
17
18
-typedef enum {
19
- SCP_EVT_BASE = OGS_FSM_USER_SIG,
20
-
21
- SCP_EVT_SBI_SERVER,
22
- SCP_EVT_SBI_CLIENT,
23
- SCP_EVT_SBI_TIMER,
24
-
25
- SCP_EVT_TOP,
26
-
27
-} scp_event_e;
28
-
29
typedef struct scp_event_s {
30
- int id;
31
- ogs_pkbuf_t *pkbuf;
32
- int timer_id;
33
-
34
- struct {
35
- ogs_sbi_request_t *request;
36
- ogs_sbi_response_t *response;
37
- void *data;
38
- int state;
39
-
40
- ogs_sbi_message_t *message;
41
- } sbi;
42
+ ogs_event_t h;
43
44
ogs_sbi_nf_instance_t *nf_instance;
45
scp_sess_t *sess;
46
} scp_event_t;
47
48
-void scp_event_init(void);
49
-void scp_event_final(void);
50
-
51
-scp_event_t *scp_event_new(scp_event_e id);
52
-void scp_event_free(scp_event_t *e);
53
+scp_event_t *scp_event_new(int id);
54
55
const char *scp_event_get_name(scp_event_t *e);
56
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/init.c
Changed
52
1
2
ogs_sbi_context_init();
3
4
scp_context_init();
5
- scp_event_init();
6
7
rv = ogs_sbi_context_parse_config("scp", "nrf", "next_scp");
8
if (rv != OGS_OK) return rv;
9
10
11
/* Sending NF Instance De-registeration to NRF */
12
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
13
- scp_nf_fsm_fini(nf_instance);
14
+ ogs_sbi_nf_fsm_fini(nf_instance);
15
16
/* Starting holding timer */
17
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
18
19
scp_sbi_close();
20
21
scp_context_final();
22
-
23
ogs_sbi_context_final();
24
-
25
- scp_event_final(); /* Destroy event */
26
}
27
28
static void scp_main(void *data)
29
30
ogs_fsm_t scp_sm;
31
int rv;
32
33
- ogs_fsm_create(&scp_sm, scp_state_initial, scp_state_final);
34
- ogs_fsm_init(&scp_sm, 0);
35
+ ogs_fsm_init(&scp_sm, scp_state_initial, scp_state_final, 0);
36
37
for ( ;; ) {
38
ogs_pollset_poll(ogs_app()->pollset,
39
40
41
ogs_assert(e);
42
ogs_fsm_dispatch(&scp_sm, e);
43
- scp_event_free(e);
44
+ ogs_event_free(e);
45
}
46
}
47
done:
48
49
ogs_fsm_fini(&scp_sm, 0);
50
- ogs_fsm_delete(&scp_sm);
51
}
52
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/meson.build
Changed
14
1
2
libscp_sources = files('''
3
context.c
4
event.c
5
- timer.c
6
7
- nnrf-build.c
8
nnrf-handler.c
9
- nf-sm.c
10
-
11
nscp-handler.c
12
13
sbi-path.c
14
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/nnrf-handler.c
Changed
311
1
2
#include "sbi-path.h"
3
#include "nnrf-handler.h"
4
5
-void scp_nnrf_handle_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
7
-{
8
- OpenAPI_nf_profile_t *NFProfile = NULL;
9
- ogs_sbi_client_t *client = NULL;
10
-
11
- ogs_assert(recvmsg);
12
- ogs_assert(nf_instance);
13
- client = nf_instance->client;
14
- ogs_assert(client);
15
-
16
- NFProfile = recvmsg->NFProfile;
17
- if (!NFProfile) {
18
- ogs_error("No NFProfile");
19
- return;
20
- }
21
-
22
- /* TIME : Update heartbeat from NRF */
23
- if (NFProfile->is_heart_beat_timer == true)
24
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
25
-}
26
-
27
-void scp_nnrf_handle_nf_status_subscribe(
28
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
29
-{
30
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
31
- ogs_sbi_client_t *client = NULL;
32
-
33
- ogs_assert(recvmsg);
34
- ogs_assert(subscription);
35
- client = subscription->client;
36
- ogs_assert(client);
37
-
38
- SubscriptionData = recvmsg->SubscriptionData;
39
- if (!SubscriptionData) {
40
- ogs_error("No SubscriptionData");
41
- return;
42
- }
43
-
44
- if (!SubscriptionData->subscription_id) {
45
- ogs_error("No SubscriptionId");
46
- return;
47
- }
48
- ogs_sbi_subscription_set_id(
49
- subscription, SubscriptionData->subscription_id);
50
-
51
- if (SubscriptionData->validity_time) {
52
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
53
- ogs_time_t time, duration;
54
- if (ogs_sbi_time_from_string(
55
- &time, SubscriptionData->validity_time) == true) {
56
- duration = time - ogs_time_now();
57
- if (duration < VALIDITY_MINIMUM) {
58
- duration = VALIDITY_MINIMUM;
59
- ogs_warn("%s Forced to %lld seconds", subscription->id,
60
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
61
- }
62
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
63
- scp_timer_subscription_validity, subscription);
64
- ogs_assert(subscription->t_validity);
65
- ogs_timer_start(subscription->t_validity, duration);
66
- } else {
67
- ogs_error("Cannot parse validitiyTime %s",
68
- SubscriptionData->validity_time);
69
- }
70
- }
71
-}
72
-
73
-bool scp_nnrf_handle_nf_status_notify(
74
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
75
-{
76
- int rv;
77
- bool handled;
78
-
79
- ogs_sbi_response_t *response = NULL;
80
- OpenAPI_notification_data_t *NotificationData = NULL;
81
- ogs_sbi_nf_instance_t *nf_instance = NULL;
82
-
83
- ogs_sbi_message_t message;
84
- ogs_sbi_header_t header;
85
-
86
- ogs_assert(stream);
87
- ogs_assert(recvmsg);
88
-
89
- NotificationData = recvmsg->NotificationData;
90
- if (!NotificationData) {
91
- ogs_error("No NotificationData");
92
- ogs_assert(true ==
93
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
94
- recvmsg, "No NotificationData", NULL));
95
- return false;
96
- }
97
-
98
- if (!NotificationData->nf_instance_uri) {
99
- ogs_error("No nfInstanceUri");
100
- ogs_assert(true ==
101
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
102
- recvmsg, "No nfInstanceUri", NULL));
103
- return false;
104
- }
105
-
106
- memset(&header, 0, sizeof(header));
107
- header.uri = NotificationData->nf_instance_uri;
108
-
109
- rv = ogs_sbi_parse_header(&message, &header);
110
- if (rv != OGS_OK) {
111
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
112
- ogs_assert(true ==
113
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
114
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
115
- return false;
116
- }
117
-
118
- if (!message.h.resource.component1) {
119
- ogs_error("No nfInstanceId %s", header.uri);
120
- ogs_assert(true ==
121
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
122
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
123
- ogs_sbi_header_free(&header);
124
- return false;
125
- }
126
-
127
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
128
- ogs_warn("%s The notification is not allowed",
129
- message.h.resource.component1);
130
- ogs_assert(true ==
131
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
132
- recvmsg, "The notification is not allowed",
133
- message.h.resource.component1));
134
- ogs_sbi_header_free(&header);
135
- return false;
136
- }
137
-
138
- if (NotificationData->event ==
139
- OpenAPI_notification_event_type_NF_REGISTERED) {
140
-
141
- OpenAPI_nf_profile_t *NFProfile = NULL;
142
-
143
- NFProfile = NotificationData->nf_profile;
144
- if (!NFProfile) {
145
- ogs_error("No NFProfile");
146
- ogs_assert(true ==
147
- ogs_sbi_server_send_error(
148
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
149
- recvmsg, "No NFProfile", NULL));
150
- ogs_sbi_header_free(&header);
151
- return false;
152
- }
153
-
154
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
155
- if (!nf_instance) {
156
- nf_instance = ogs_sbi_nf_instance_add();
157
- ogs_assert(nf_instance);
158
- ogs_sbi_nf_instance_set_id(nf_instance,
159
- message.h.resource.component1);
160
-
161
- scp_nf_fsm_init(nf_instance);
162
-
163
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
164
-
165
- } else {
166
- OGS_FSM_TRAN(&nf_instance->sm, scp_nf_state_registered);
167
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
168
-
169
- ogs_warn("%s (NRF-notify) NF has already been added",
170
- message.h.resource.component1);
171
-
172
- }
173
-
174
- handled = ogs_sbi_nnrf_handle_nf_profile(
175
- nf_instance, NFProfile, stream, recvmsg);
176
- if (!handled) {
177
- SCP_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
178
- ogs_sbi_header_free(&header);
179
- return false;
180
- }
181
-
182
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
183
-
184
- handled = ogs_sbi_client_associate(nf_instance);
185
- if (!handled) {
186
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
187
- ogs_assert(true ==
188
- ogs_sbi_server_send_error(stream,
189
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
190
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
191
- SCP_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
192
- ogs_sbi_header_free(&header);
193
- return false;
194
- }
195
-
196
- } else if (NotificationData->event ==
197
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
198
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
199
- if (nf_instance) {
200
- SCP_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
201
- } else {
202
- ogs_warn("%s (NRF-notify) Not found",
203
- message.h.resource.component1);
204
- ogs_assert(true ==
205
- ogs_sbi_server_send_error(stream,
206
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
207
- recvmsg, "Not found", message.h.resource.component1));
208
- ogs_sbi_header_free(&header);
209
- return false;
210
- }
211
- } else {
212
- char *eventstr = OpenAPI_notification_event_type_ToString(
213
- NotificationData->event);
214
- ogs_error("Not supported event %d:%s",
215
- NotificationData->event, eventstr ? eventstr : "Unknown");
216
- ogs_assert(true ==
217
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
218
- recvmsg, "Not supported event",
219
- eventstr ? eventstr : "Unknown"));
220
- ogs_sbi_header_free(&header);
221
- return false;
222
- }
223
-
224
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
225
- ogs_assert(response);
226
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
227
-
228
- ogs_sbi_header_free(&header);
229
- return true;
230
-}
231
-
232
void scp_nnrf_handle_nf_discover(
233
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
234
{
235
236
ogs_sbi_nf_instance_t *nf_instance = NULL;
237
238
OpenAPI_search_result_t *SearchResult = NULL;
239
- OpenAPI_lnode_t *node = NULL;
240
- bool handled;
241
242
ogs_assert(recvmsg);
243
ogs_assert(xact);
244
245
return;
246
}
247
248
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
249
- OpenAPI_nf_profile_t *NFProfile = NULL;
250
-
251
- if (!node->data) continue;
252
-
253
- NFProfile = node->data;
254
-
255
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
256
- if (!nf_instance) {
257
- nf_instance = ogs_sbi_nf_instance_add();
258
- ogs_assert(nf_instance);
259
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
260
-
261
- scp_nf_fsm_init(nf_instance);
262
-
263
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
264
- } else {
265
- OGS_FSM_TRAN(&nf_instance->sm, scp_nf_state_registered);
266
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
267
-
268
- ogs_warn("%s (NF-discover) NF has already been added",
269
- NFProfile->nf_instance_id);
270
- }
271
-
272
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
273
- handled = ogs_sbi_nnrf_handle_nf_profile(
274
- nf_instance, NFProfile, NULL, NULL);
275
- if (!handled) {
276
- ogs_error("ogs_sbi_nnrf_handle_nf_profile() failed %s",
277
- nf_instance->id);
278
- SCP_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
279
- continue;
280
- }
281
-
282
- handled = ogs_sbi_client_associate(nf_instance);
283
- if (!handled) {
284
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
285
- SCP_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
286
- continue;
287
- }
288
-
289
- /* TIME : Update validity from NRF */
290
- if (SearchResult->is_validity_period &&
291
- SearchResult->validity_period) {
292
- nf_instance->time.validity_duration =
293
- SearchResult->validity_period;
294
-
295
- ogs_assert(nf_instance->t_validity);
296
- ogs_timer_start(nf_instance->t_validity,
297
- ogs_time_from_sec(nf_instance->time.validity_duration));
298
-
299
- } else
300
- ogs_warn("%s NF Instance validity-time should not 0",
301
- nf_instance->id);
302
-
303
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
304
- }
305
- }
306
+ ogs_nnrf_handle_nf_discover_search_result(
307
+ sbi_object, target_nf_type, discovery_option, SearchResult);
308
309
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
310
311
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/nnrf-handler.h
Changed
16
1
2
extern "C" {
3
#endif
4
5
-void scp_nnrf_handle_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
7
-void scp_nnrf_handle_nf_status_subscribe(
8
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
9
-
10
-bool scp_nnrf_handle_nf_status_notify(
11
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
12
-
13
void scp_nnrf_handle_nf_discover(
14
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
15
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/sbi-path.c
Changed
102
1
2
{
3
ogs_sbi_nf_instance_t *nf_instance = NULL;
4
5
+ /* To be notified when NF Instances registered/deregistered in NRF
6
+ * or when their profile is modified */
7
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_AMF);
8
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_AUSF);
9
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_BSF);
10
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_NSSF);
11
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_PCF);
12
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_SMF);
13
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDM);
14
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDR);
15
+
16
/* Add SELF NF instance */
17
nf_instance = ogs_sbi_self()->nf_instance;
18
ogs_assert(nf_instance);
19
20
21
/* NFRegister is sent and the response is received
22
* by the above client callback. */
23
- scp_nf_fsm_init(nf_instance);
24
+ ogs_sbi_nf_fsm_init(nf_instance);
25
}
26
27
- /* Timer expiration handler of client wait timer */
28
- ogs_sbi_self()->client_wait_expire = scp_timer_sbi_client_wait_expire;
29
-
30
- /* NF register state in NF state machine */
31
- ogs_sbi_self()->nf_state_registered =
32
- (ogs_fsm_handler_t)scp_nf_state_registered;
33
-
34
if (ogs_sbi_server_start_all(request_handler) != OGS_OK)
35
return OGS_ERROR;
36
37
38
} else if (headers.discovery) {
39
scp_event_t *e = NULL;
40
41
- e = scp_event_new(SCP_EVT_SBI_SERVER);
42
+ e = scp_event_new(OGS_EVENT_SBI_SERVER);
43
ogs_assert(e);
44
45
- e->sbi.request = source;
46
- e->sbi.data = stream;
47
+ e->h.sbi.request = source;
48
+ e->h.sbi.data = stream;
49
50
rv = ogs_queue_push(ogs_app()->queue, e);
51
if (rv != OGS_OK) {
52
ogs_error("ogs_queue_push() failed:%d", (int)rv);
53
ogs_sbi_request_free(source);
54
- scp_event_free(e);
55
+ ogs_event_free(e);
56
return OGS_ERROR;
57
}
58
} else {
59
60
ogs_assert(source);
61
ogs_assert(data);
62
63
- e = scp_event_new(SCP_EVT_SBI_SERVER);
64
+ e = scp_event_new(OGS_EVENT_SBI_SERVER);
65
ogs_assert(e);
66
67
- e->sbi.request = source;
68
- e->sbi.data = data;
69
+ e->h.sbi.request = source;
70
+ e->h.sbi.data = data;
71
72
rv = ogs_queue_push(ogs_app()->queue, e);
73
if (rv != OGS_OK) {
74
ogs_error("ogs_queue_push() failed:%d", (int)rv);
75
ogs_sbi_request_free(source);
76
- scp_event_free(e);
77
+ ogs_event_free(e);
78
return OGS_ERROR;
79
}
80
}
81
82
83
ogs_assert(response);
84
85
- e = scp_event_new(SCP_EVT_SBI_CLIENT);
86
+ e = scp_event_new(OGS_EVENT_SBI_CLIENT);
87
ogs_assert(e);
88
- e->sbi.response = response;
89
- e->sbi.data = data;
90
+ e->h.sbi.response = response;
91
+ e->h.sbi.data = data;
92
93
rv = ogs_queue_push(ogs_app()->queue, e);
94
if (rv != OGS_OK) {
95
ogs_error("ogs_queue_push() failed:%d", (int)rv);
96
ogs_sbi_response_free(response);
97
- scp_event_free(e);
98
+ ogs_event_free(e);
99
return OGS_ERROR;
100
}
101
102
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/sbi-path.h
Changed
10
1
2
#ifndef SCP_SBI_PATH_H
3
#define SCP_SBI_PATH_H
4
5
-#include "nnrf-build.h"
6
+#include "context.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/scp-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/scp-sm.c
Changed
141
1
2
3
ogs_assert(s);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
break;
9
10
case OGS_FSM_EXIT_SIG:
11
break;
12
13
- case SCP_EVT_SBI_SERVER:
14
- request = e->sbi.request;
15
+ case OGS_EVENT_SBI_SERVER:
16
+ request = e->h.sbi.request;
17
ogs_assert(request);
18
- stream = e->sbi.data;
19
+ stream = e->h.sbi.data;
20
ogs_assert(stream);
21
22
rv = ogs_sbi_parse_request(&message, request);
23
24
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
25
SWITCH(message.h.method)
26
CASE(OGS_SBI_HTTP_METHOD_POST)
27
- scp_nnrf_handle_nf_status_notify(stream, &message);
28
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
29
break;
30
31
DEFAULT
32
33
ogs_sbi_message_free(&message);
34
break;
35
36
- case SCP_EVT_SBI_CLIENT:
37
+ case OGS_EVENT_SBI_CLIENT:
38
ogs_assert(e);
39
40
- response = e->sbi.response;
41
+ response = e->h.sbi.response;
42
ogs_assert(response);
43
rv = ogs_sbi_parse_response(&message, response);
44
if (rv != OGS_OK) {
45
46
47
SWITCH(message.h.resource.component0)
48
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
49
- nf_instance = e->sbi.data;
50
+ nf_instance = e->h.sbi.data;
51
ogs_assert(nf_instance);
52
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
53
54
- e->sbi.message = &message;
55
+ e->h.sbi.message = &message;
56
ogs_fsm_dispatch(&nf_instance->sm, e);
57
break;
58
59
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
60
- subscription = e->sbi.data;
61
+ subscription = e->h.sbi.data;
62
ogs_assert(subscription);
63
64
SWITCH(message.h.method)
65
CASE(OGS_SBI_HTTP_METHOD_POST)
66
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
67
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
68
- scp_nnrf_handle_nf_status_subscribe(
69
+ ogs_nnrf_handle_nf_status_subscribe(
70
subscription, &message);
71
} else {
72
ogs_error("HTTP response error : %d",
73
74
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
75
SWITCH(message.h.resource.component0)
76
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
77
- sbi_xact = e->sbi.data;
78
+ sbi_xact = e->h.sbi.data;
79
ogs_assert(sbi_xact);
80
81
SWITCH(message.h.method)
82
83
ogs_sbi_response_free(response);
84
break;
85
86
- case SCP_EVT_SBI_TIMER:
87
+ case OGS_EVENT_SBI_TIMER:
88
ogs_assert(e);
89
90
- switch(e->timer_id) {
91
- case SCP_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
92
- case SCP_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
93
- case SCP_TIMER_NF_INSTANCE_NO_HEARTBEAT:
94
- case SCP_TIMER_NF_INSTANCE_VALIDITY:
95
- nf_instance = e->sbi.data;
96
+ switch(e->h.timer_id) {
97
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
98
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
99
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
100
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
101
+ nf_instance = e->h.sbi.data;
102
ogs_assert(nf_instance);
103
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
104
105
ogs_fsm_dispatch(&nf_instance->sm, e);
106
- if (OGS_FSM_CHECK(&nf_instance->sm, scp_nf_state_exception))
107
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
108
ogs_error("%s:%s State machine exception %d",
109
OpenAPI_nf_type_ToString(nf_instance->nf_type),
110
- nf_instance->id, e->timer_id);
111
+ nf_instance->id, e->h.timer_id);
112
break;
113
114
- case SCP_TIMER_SUBSCRIPTION_VALIDITY:
115
- subscription = e->sbi.data;
116
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
117
+ subscription = e->h.sbi.data;
118
ogs_assert(subscription);
119
120
ogs_assert(ogs_sbi_self()->nf_instance);
121
122
ogs_sbi_subscription_remove(subscription);
123
break;
124
125
- case SCP_TIMER_SBI_CLIENT_WAIT:
126
- sbi_xact = e->sbi.data;
127
+ case OGS_TIMER_SBI_CLIENT_WAIT:
128
+ sbi_xact = e->h.sbi.data;
129
ogs_assert(sbi_xact);
130
131
stream = sbi_xact->assoc_stream;
132
133
134
default:
135
ogs_error("Unknown timer%s:%d",
136
- scp_timer_get_name(e->timer_id), e->timer_id);
137
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
138
}
139
break;
140
141
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/scp/scp-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/scp/scp-sm.h
Changed
18
1
2
void scp_state_operational(ogs_fsm_t *s, scp_event_t *e);
3
void scp_state_exception(ogs_fsm_t *s, scp_event_t *e);
4
5
-void scp_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
6
-void scp_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
7
-
8
-void scp_nf_state_initial(ogs_fsm_t *s, scp_event_t *e);
9
-void scp_nf_state_final(ogs_fsm_t *s, scp_event_t *e);
10
-void scp_nf_state_will_register(ogs_fsm_t *s, scp_event_t *e);
11
-void scp_nf_state_registered(ogs_fsm_t *s, scp_event_t *e);
12
-void scp_nf_state_de_registered(ogs_fsm_t *s, scp_event_t *e);
13
-void scp_nf_state_exception(ogs_fsm_t *s, scp_event_t *e);
14
-
15
#define scp_sm_debug(__pe) \
16
ogs_debug("%s(): %s", __func__, scp_event_get_name(__pe))
17
18
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwc/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwc/event.h
Changed
31
1
2
#ifndef SGWC_EVENT_H
3
#define SGWC_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
11
typedef struct sgwc_bearer_s sgwc_bearer_t;
12
13
typedef enum {
14
- SGWC_EVT_BASE = OGS_FSM_USER_SIG,
15
+ SGWC_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
16
17
SGWC_EVT_S11_MESSAGE,
18
SGWC_EVT_S5C_MESSAGE,
19
20
21
typedef struct sgwc_event_s {
22
int id;
23
- ogs_pkbuf_t *pkbuf;
24
int timer_id;
25
26
+ ogs_pkbuf_t *pkbuf;
27
+
28
ogs_gtp_node_t *gnode;
29
ogs_gtp2_message_t *gtp_message;
30
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwc/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwc/init.c
Changed
17
1
2
ogs_fsm_t sgwc_sm;
3
int rv;
4
5
- ogs_fsm_create(&sgwc_sm, sgwc_state_initial, sgwc_state_final);
6
- ogs_fsm_init(&sgwc_sm, 0);
7
+ ogs_fsm_init(&sgwc_sm, sgwc_state_initial, sgwc_state_final, 0);
8
9
for ( ;; ) {
10
ogs_pollset_poll(ogs_app()->pollset,
11
12
done:
13
14
ogs_fsm_fini(&sgwc_sm, 0);
15
- ogs_fsm_delete(&sgwc_sm);
16
}
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwc/pfcp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwc/pfcp-path.c
Changed
19
1
2
ogs_assert(node->t_association);
3
}
4
5
- ogs_fsm_create(&node->sm, sgwc_pfcp_state_initial, sgwc_pfcp_state_final);
6
- ogs_fsm_init(&node->sm, &e);
7
+ ogs_fsm_init(&node->sm, sgwc_pfcp_state_initial, sgwc_pfcp_state_final, &e);
8
}
9
10
static void pfcp_node_fsm_fini(ogs_pfcp_node_t *node)
11
12
e.pfcp_node = node;
13
14
ogs_fsm_fini(&node->sm, &e);
15
- ogs_fsm_delete(&node->sm);
16
17
if (node->t_association)
18
ogs_timer_delete(node->t_association);
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwu/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwu/event.h
Changed
31
1
2
#ifndef SGWU_EVENT_H
3
#define SGWU_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
11
typedef struct sgwu_bearer_s sgwu_bearer_t;
12
13
typedef enum {
14
- SGWU_EVT_BASE = OGS_FSM_USER_SIG,
15
+ SGWU_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
16
17
SGWU_EVT_SXA_MESSAGE,
18
SGWU_EVT_SXA_TIMER,
19
20
21
typedef struct sgwu_event_s {
22
int id;
23
- ogs_pkbuf_t *pkbuf;
24
int timer_id;
25
26
+ ogs_pkbuf_t *pkbuf;
27
+
28
ogs_gtp_node_t *gnode;
29
30
ogs_pfcp_node_t *pfcp_node;
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwu/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwu/init.c
Changed
17
1
2
ogs_fsm_t sgwu_sm;
3
int rv;
4
5
- ogs_fsm_create(&sgwu_sm, sgwu_state_initial, sgwu_state_final);
6
- ogs_fsm_init(&sgwu_sm, 0);
7
+ ogs_fsm_init(&sgwu_sm, sgwu_state_initial, sgwu_state_final, 0);
8
9
for ( ;; ) {
10
ogs_pollset_poll(ogs_app()->pollset,
11
12
done:
13
14
ogs_fsm_fini(&sgwu_sm, 0);
15
- ogs_fsm_delete(&sgwu_sm);
16
}
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/sgwu/pfcp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/sgwu/pfcp-path.c
Changed
19
1
2
ogs_assert(node->t_association);
3
}
4
5
- ogs_fsm_create(&node->sm, sgwu_pfcp_state_initial, sgwu_pfcp_state_final);
6
- ogs_fsm_init(&node->sm, &e);
7
+ ogs_fsm_init(&node->sm, sgwu_pfcp_state_initial, sgwu_pfcp_state_final, &e);
8
}
9
10
static void pfcp_node_fsm_fini(ogs_pfcp_node_t *node)
11
12
e.pfcp_node = node;
13
14
ogs_fsm_fini(&node->sm, &e);
15
- ogs_fsm_delete(&node->sm);
16
17
if (node->t_association)
18
ogs_timer_delete(node->t_association);
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/context.c
Changed
36
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
memset(&e, 0, sizeof(e));
11
e.sess = sess;
12
- ogs_fsm_create(&sess->sm, smf_gsm_state_initial, smf_gsm_state_final);
13
- ogs_fsm_init(&sess->sm, &e);
14
+ ogs_fsm_init(&sess->sm, smf_gsm_state_initial, smf_gsm_state_final, &e);
15
16
sess->smf_ue = smf_ue;
17
18
19
20
memset(&e, 0, sizeof(e));
21
e.sess = sess;
22
- ogs_fsm_create(&sess->sm, smf_gsm_state_initial, smf_gsm_state_final);
23
- ogs_fsm_init(&sess->sm, &e);
24
+ ogs_fsm_init(&sess->sm, smf_gsm_state_initial, smf_gsm_state_final, &e);
25
26
sess->smf_ue = smf_ue;
27
28
29
memset(&e, 0, sizeof(e));
30
e.sess = sess;
31
ogs_fsm_fini(&sess->sm, &e);
32
- ogs_fsm_delete(&sess->sm);
33
34
OGS_TLV_CLEAR_DATA(&sess->gtp.ue_pco);
35
OGS_TLV_CLEAR_DATA(&sess->gtp.user_location_information);
36
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/context.h
Changed
30
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_list_t sess_list;
10
} smf_ue_t;
11
12
-#define SMF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
13
- do { \
14
- ogs_assert(_nFInstance); \
15
- if ((_nFInstance)->reference_count == 1) { \
16
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
17
- smf_nf_fsm_fini((_nFInstance)); \
18
- ogs_sbi_nf_instance_remove(_nFInstance); \
19
- } else { \
20
- /* There is an assocation with other context */ \
21
- ogs_info("%s:%d (%s) NF suspended", \
22
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
23
- OGS_FSM_TRAN(&_nFInstance->sm, smf_nf_state_de_registered); \
24
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
25
- } \
26
- } while(0)
27
#define SMF_SESS_CLEAR(__sESS) \
28
do { \
29
smf_ue_t *smf_ue = NULL; \
30
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/event.c
Changed
93
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, smf_event_t);
15
-static ogs_thread_mutex_t smf_event_alloc_mutex;
16
-
17
-void smf_event_init(void)
18
-{
19
- ogs_pool_init(&pool, ogs_app()->pool.event);
20
- ogs_thread_mutex_init(&smf_event_alloc_mutex);
21
-}
22
-
23
-void smf_event_final(void)
24
-{
25
- ogs_pool_final(&pool);
26
- ogs_thread_mutex_destroy(&smf_event_alloc_mutex);
27
-}
28
-
29
-smf_event_t *smf_event_new(smf_event_e id)
30
+smf_event_t *smf_event_new(int id)
31
{
32
smf_event_t *e = NULL;
33
34
- ogs_thread_mutex_lock(&smf_event_alloc_mutex);
35
- ogs_pool_alloc(&pool, &e);
36
- ogs_thread_mutex_unlock(&smf_event_alloc_mutex);
37
+ e = ogs_event_size(id, sizeof(smf_event_t));
38
ogs_assert(e);
39
- memset(e, 0, sizeof(*e));
40
41
- e->id = id;
42
+ e->h.id = id;
43
44
return e;
45
}
46
47
-void smf_event_free(smf_event_t *e)
48
-{
49
- ogs_assert(e);
50
- ogs_thread_mutex_lock(&smf_event_alloc_mutex);
51
- ogs_pool_free(&pool, e);
52
- ogs_thread_mutex_unlock(&smf_event_alloc_mutex);
53
-}
54
-
55
const char *smf_event_get_name(smf_event_t *e)
56
{
57
- if (e == NULL)
58
+ if (e == NULL) {
59
return OGS_FSM_NAME_INIT_SIG;
60
+ }
61
62
- switch (e->id) {
63
+ switch (e->h.id) {
64
case OGS_FSM_ENTRY_SIG:
65
return OGS_FSM_NAME_ENTRY_SIG;
66
case OGS_FSM_EXIT_SIG:
67
68
case SMF_EVT_N4_NO_HEARTBEAT:
69
return "SMF_EVT_N4_NO_HEARTBEAT";
70
71
- case SMF_EVT_SBI_SERVER:
72
- return "SMF_EVT_SBI_SERVER";
73
- case SMF_EVT_SBI_CLIENT:
74
- return "SMF_EVT_SBI_CLIENT";
75
- case SMF_EVT_SBI_TIMER:
76
- return "SMF_EVT_SBI_TIMER";
77
+ case OGS_EVENT_SBI_SERVER:
78
+ return OGS_EVENT_NAME_SBI_SERVER;
79
+ case OGS_EVENT_SBI_CLIENT:
80
+ return OGS_EVENT_NAME_SBI_CLIENT;
81
+ case OGS_EVENT_SBI_TIMER:
82
+ return OGS_EVENT_NAME_SBI_TIMER;
83
84
case SMF_EVT_NGAP_MESSAGE:
85
return "SMF_EVT_NGAP_MESSAGE";
86
87
break;
88
}
89
90
+ ogs_error("Unknown Event%d", e->h.id);
91
return "UNKNOWN_EVENT";
92
}
93
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/event.h
Changed
97
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef SMF_EVENT_H
10
#define SMF_EVENT_H
11
12
-#include "ogs-core.h"
13
-#include "ogs-gtp.h"
14
+#include "ogs-proto.h"
15
16
#ifdef __cplusplus
17
extern "C" {
18
19
20
typedef struct ogs_gtp_node_s ogs_gtp_node_t;
21
typedef struct ogs_gtp_xact_s ogs_gtp_xact_t;
22
+typedef struct ogs_gtp1_message_s ogs_gtp1_message_t;
23
+typedef struct ogs_gtp2_message_s ogs_gtp2_message_t;
24
typedef struct ogs_pfcp_node_s ogs_pfcp_node_t;
25
typedef struct ogs_pfcp_xact_s ogs_pfcp_xact_t;
26
typedef struct ogs_pfcp_message_s ogs_pfcp_message_t;
27
28
typedef struct smf_sess_s smf_sess_t;
29
typedef struct smf_upf_s smf_upf_t;
30
typedef struct smf_gtp_node_s smf_gtp_node_t;
31
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
32
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
33
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
34
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
35
typedef struct ogs_nas_5gs_message_s ogs_nas_5gs_message_t;
36
typedef struct NGAP_NGAP_PDU ogs_ngap_message_t;
37
typedef long NGAP_ProcedureCode_t;
38
39
typedef enum {
40
- SMF_EVT_BASE = OGS_FSM_USER_SIG,
41
+ SMF_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
42
43
SMF_EVT_S5C_MESSAGE,
44
SMF_EVT_S6B_MESSAGE,
45
46
SMF_EVT_N4_TIMER,
47
SMF_EVT_N4_NO_HEARTBEAT,
48
49
- SMF_EVT_SBI_SERVER,
50
- SMF_EVT_SBI_CLIENT,
51
- SMF_EVT_SBI_TIMER,
52
-
53
SMF_EVT_NGAP_MESSAGE,
54
SMF_EVT_NGAP_TIMER,
55
56
57
} smf_event_e;
58
59
typedef struct smf_event_s {
60
- int id;
61
+ ogs_event_t h;
62
+
63
ogs_pkbuf_t *pkbuf;
64
- int timer_id;
65
66
smf_gtp_node_t *gnode;
67
ogs_gtp_xact_t *gtp_xact;
68
69
};
70
71
struct {
72
- ogs_sbi_request_t *request;
73
- ogs_sbi_response_t *response;
74
- void *data;
75
- int state;
76
-
77
- ogs_sbi_message_t *message;
78
- } sbi;
79
-
80
- struct {
81
int type;
82
ogs_ngap_message_t *message;
83
} ngap;
84
85
smf_sess_t *sess;
86
} smf_event_t;
87
88
-void smf_event_init(void);
89
-void smf_event_final(void);
90
-
91
-smf_event_t *smf_event_new(smf_event_e id);
92
-void smf_event_free(smf_event_t *e);
93
+smf_event_t *smf_event_new(int id);
94
95
const char *smf_event_get_name(smf_event_t *e);
96
97
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/gsm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/gsm-sm.c
Changed
276
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
sess = e->sess;
10
ogs_assert(sess);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
/* reset state: */
16
sess->sm_data.gx_ccr_init_in_flight = false;
17
18
}
19
break;
20
21
- case SMF_EVT_SBI_SERVER:
22
- sbi_message = e->sbi.message;
23
+ case OGS_EVENT_SBI_SERVER:
24
+ sbi_message = e->h.sbi.message;
25
ogs_assert(sbi_message);
26
- stream = e->sbi.data;
27
+ stream = e->h.sbi.data;
28
ogs_assert(stream);
29
30
SWITCH(sbi_message->h.service.name)
31
32
ogs_assert(nas_message);
33
sess = e->sess;
34
ogs_assert(sess);
35
- stream = e->sbi.data;
36
+ stream = e->h.sbi.data;
37
ogs_assert(stream);
38
smf_ue = sess->smf_ue;
39
ogs_assert(smf_ue);
40
41
sess = e->sess;
42
ogs_assert(sess);
43
44
- switch (e->id) {
45
+ switch (e->h.id) {
46
case SMF_EVT_GX_MESSAGE:
47
gx_message = e->gx_message;
48
ogs_assert(gx_message);
49
50
sess = e->sess;
51
ogs_assert(sess);
52
53
- switch (e->id) {
54
+ switch (e->h.id) {
55
case OGS_FSM_ENTRY_SIG:
56
break;
57
case OGS_FSM_EXIT_SIG:
58
break;
59
60
- case SMF_EVT_SBI_CLIENT:
61
- sbi_message = e->sbi.message;
62
+ case OGS_EVENT_SBI_CLIENT:
63
+ sbi_message = e->h.sbi.message;
64
ogs_assert(sbi_message);
65
66
sess = e->sess;
67
68
69
SWITCH(sbi_message->h.service.name)
70
CASE(OGS_SBI_SERVICE_NAME_NUDM_SDM)
71
- stream = e->sbi.data;
72
+ stream = e->h.sbi.data;
73
ogs_assert(stream);
74
75
SWITCH(sbi_message->h.resource.component1)
76
77
break;
78
79
CASE(OGS_SBI_SERVICE_NAME_NPCF_SMPOLICYCONTROL)
80
- stream = e->sbi.data;
81
- state = e->sbi.state;
82
+ stream = e->h.sbi.data;
83
+ state = e->h.sbi.state;
84
85
SWITCH(sbi_message->h.resource.component0)
86
CASE(OGS_SBI_RESOURCE_NAME_SM_POLICIES)
87
88
sess = e->sess;
89
ogs_assert(sess);
90
91
- switch (e->id) {
92
+ switch (e->h.id) {
93
case SMF_EVT_N4_MESSAGE:
94
pfcp_xact = e->pfcp_xact;
95
ogs_assert(pfcp_xact);
96
97
sess = e->sess;
98
ogs_assert(sess);
99
100
- switch (e->id) {
101
+ switch (e->h.id) {
102
case OGS_FSM_ENTRY_SIG:
103
break;
104
105
106
}
107
break;
108
109
- case SMF_EVT_SBI_SERVER:
110
- sbi_message = e->sbi.message;
111
+ case OGS_EVENT_SBI_SERVER:
112
+ sbi_message = e->h.sbi.message;
113
ogs_assert(sbi_message);
114
- stream = e->sbi.data;
115
+ stream = e->h.sbi.data;
116
ogs_assert(stream);
117
118
SWITCH(sbi_message->h.service.name)
119
120
END
121
break;
122
123
- case SMF_EVT_SBI_CLIENT:
124
- sbi_message = e->sbi.message;
125
+ case OGS_EVENT_SBI_CLIENT:
126
+ sbi_message = e->h.sbi.message;
127
ogs_assert(sbi_message);
128
129
sess = e->sess;
130
131
132
SWITCH(sbi_message->h.service.name)
133
CASE(OGS_SBI_SERVICE_NAME_NPCF_SMPOLICYCONTROL)
134
- stream = e->sbi.data;
135
+ stream = e->h.sbi.data;
136
137
SWITCH(sbi_message->h.resource.component0)
138
CASE(OGS_SBI_RESOURCE_NAME_SM_POLICIES)
139
140
SWITCH(sbi_message->h.resource.component0)
141
CASE(OGS_SBI_RESOURCE_NAME_UE_CONTEXTS)
142
smf_namf_comm_handle_n1_n2_message_transfer(
143
- sess, e->sbi.state, sbi_message);
144
+ sess, e->h.sbi.state, sbi_message);
145
break;
146
147
DEFAULT
148
149
ogs_assert(nas_message);
150
sess = e->sess;
151
ogs_assert(sess);
152
- stream = e->sbi.data;
153
+ stream = e->h.sbi.data;
154
ogs_assert(stream);
155
smf_ue = sess->smf_ue;
156
ogs_assert(smf_ue);
157
158
case SMF_EVT_NGAP_MESSAGE:
159
sess = e->sess;
160
ogs_assert(sess);
161
- stream = e->sbi.data;
162
+ stream = e->h.sbi.data;
163
ogs_assert(stream);
164
smf_ue = sess->smf_ue;
165
ogs_assert(smf_ue);
166
167
sess = e->sess;
168
ogs_assert(sess);
169
170
- switch (e->id) {
171
+ switch (e->h.id) {
172
case OGS_FSM_ENTRY_SIG:
173
/* Since `pfcp_xact->epc` is not avaiable,
174
* we'll use `sess->epc` */
175
176
smf_epc_pfcp_send_session_deletion_request(sess, e->gtp_xact));
177
} else {
178
/* 5GC */
179
- stream = e->sbi.data;
180
+ stream = e->h.sbi.data;
181
ogs_assert(stream);
182
183
ogs_assert(OGS_OK ==
184
smf_5gc_pfcp_send_session_deletion_request(
185
- sess, stream, e->sbi.state));
186
+ sess, stream, e->h.sbi.state));
187
}
188
break;
189
190
191
sess = e->sess;
192
ogs_assert(sess);
193
194
- switch (e->id) {
195
+ switch (e->h.id) {
196
case OGS_FSM_ENTRY_SIG:
197
/* reset state: */
198
sess->sm_data.gx_cca_term_err = ER_DIAMETER_SUCCESS;
199
200
sess = e->sess;
201
ogs_assert(sess);
202
203
- switch (e->id) {
204
+ switch (e->h.id) {
205
case OGS_FSM_ENTRY_SIG:
206
break;
207
case OGS_FSM_EXIT_SIG:
208
break;
209
210
- case SMF_EVT_SBI_SERVER:
211
- sbi_message = e->sbi.message;
212
+ case OGS_EVENT_SBI_SERVER:
213
+ sbi_message = e->h.sbi.message;
214
ogs_assert(sbi_message);
215
- stream = e->sbi.data;
216
+ stream = e->h.sbi.data;
217
ogs_assert(stream);
218
219
SWITCH(sbi_message->h.service.name)
220
221
END
222
break;
223
224
- case SMF_EVT_SBI_CLIENT:
225
- sbi_message = e->sbi.message;
226
+ case OGS_EVENT_SBI_CLIENT:
227
+ sbi_message = e->h.sbi.message;
228
ogs_assert(sbi_message);
229
230
sess = e->sess;
231
232
SWITCH(sbi_message->h.resource.component0)
233
CASE(OGS_SBI_RESOURCE_NAME_UE_CONTEXTS)
234
smf_namf_comm_handle_n1_n2_message_transfer(
235
- sess, e->sbi.state, sbi_message);
236
+ sess, e->h.sbi.state, sbi_message);
237
break;
238
239
DEFAULT
240
241
case SMF_EVT_NGAP_MESSAGE:
242
sess = e->sess;
243
ogs_assert(sess);
244
- stream = e->sbi.data;
245
+ stream = e->h.sbi.data;
246
ogs_assert(stream);
247
smf_ue = sess->smf_ue;
248
ogs_assert(smf_ue);
249
250
ogs_assert(nas_message);
251
sess = e->sess;
252
ogs_assert(sess);
253
- stream = e->sbi.data;
254
+ stream = e->h.sbi.data;
255
ogs_assert(stream);
256
smf_ue = sess->smf_ue;
257
ogs_assert(smf_ue);
258
259
sess = e->sess;
260
ogs_assert(sess);
261
262
- switch (e->id) {
263
+ switch (e->h.id) {
264
case OGS_FSM_ENTRY_SIG:
265
SMF_SESS_CLEAR(sess);
266
break;
267
268
smf_ue = sess->smf_ue;
269
ogs_assert(smf_ue);
270
271
- switch (e->id) {
272
+ switch (e->h.id) {
273
case OGS_FSM_ENTRY_SIG:
274
ogs_error("%s:%d State machine exception", smf_ue->supi, sess->psi);
275
SMF_SESS_CLEAR(sess);
276
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/gtp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/gtp-path.c
Changed
10
1
2
if (rv != OGS_OK) {
3
ogs_error("ogs_queue_push() failed:%d", (int)rv);
4
ogs_pkbuf_free(e->pkbuf);
5
- smf_event_free(e);
6
+ ogs_event_free(e);
7
}
8
}
9
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/gx-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/gx-path.c
Changed
19
1
2
ogs_error("ogs_queue_push() failed:%d", (int)rv);
3
ogs_session_data_free(&gx_message->session_data);
4
ogs_free(gx_message);
5
- smf_event_free(e);
6
+ ogs_event_free(e);
7
} else {
8
ogs_pollset_notify(ogs_app()->pollset);
9
}
10
11
ogs_error("ogs_queue_push() failed:%d", (int)rv);
12
ogs_session_data_free(&gx_message->session_data);
13
ogs_free(gx_message);
14
- smf_event_free(e);
15
+ ogs_event_free(e);
16
} else {
17
ogs_pollset_notify(ogs_app()->pollset);
18
}
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/gy-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/gy-path.c
Changed
19
1
2
if (rv != OGS_OK) {
3
ogs_error("ogs_queue_push() failed:%d", (int)rv);
4
ogs_free(gy_message);
5
- smf_event_free(e);
6
+ ogs_event_free(e);
7
} else {
8
ogs_pollset_notify(ogs_app()->pollset);
9
}
10
11
if (rv != OGS_OK) {
12
ogs_error("ogs_queue_push() failed:%d", (int)rv);
13
ogs_free(gy_message);
14
- smf_event_free(e);
15
+ ogs_event_free(e);
16
} else {
17
ogs_pollset_notify(ogs_app()->pollset);
18
}
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
smf_context_init();
12
- smf_event_init();
13
14
rv = ogs_gtp_xact_init();
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- smf_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
ogs_pfcp_xact_final();
28
ogs_gtp_xact_final();
29
-
30
- smf_event_final(); /* Destroy event */
31
}
32
33
static void smf_main(void *data)
34
35
ogs_fsm_t smf_sm;
36
int rv;
37
38
- ogs_fsm_create(&smf_sm, smf_state_initial, smf_state_final);
39
- ogs_fsm_init(&smf_sm, 0);
40
+ ogs_fsm_init(&smf_sm, smf_state_initial, smf_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&smf_sm, e);
48
- smf_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&smf_sm, 0);
55
- ogs_fsm_delete(&smf_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/meson.build
Changed
31
1
2
-# Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
n4-build.h
9
n4-handler.h
10
binding.h
11
- nnrf-build.h
12
nnrf-handler.h
13
nudm-build.h
14
nudm-handler.h
15
16
timer.c
17
context.c
18
smf-sm.c
19
- nf-sm.c
20
gsm-sm.c
21
pfcp-sm.c
22
gtp-path.c
23
24
n4-build.c
25
n4-handler.c
26
binding.c
27
- nnrf-build.c
28
nnrf-handler.c
29
nudm-build.c
30
nudm-handler.c
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/n4-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/n4-handler.c
Changed
9
1
2
*/
3
4
#include "context.h"
5
-#include "timer.h"
6
#include "s5c-build.h"
7
#include "pfcp-path.h"
8
#include "gtp-path.h"
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nas-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/nas-path.c
Changed
16
1
2
e = smf_event_new(SMF_EVT_5GSM_MESSAGE);
3
ogs_assert(e);
4
e->sess = sess;
5
- e->sbi.data = stream;
6
+ e->h.sbi.data = stream;
7
e->pkbuf = pkbuf;
8
rv = ogs_queue_push(ogs_app()->queue, e);
9
if (rv != OGS_OK) {
10
ogs_error("ogs_queue_push() failed:%d", (int)rv);
11
ogs_pkbuf_free(e->pkbuf);
12
- smf_event_free(e);
13
+ ogs_event_free(e);
14
}
15
}
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/ngap-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/ngap-path.c
Changed
19
1
2
e = smf_event_new(SMF_EVT_NGAP_MESSAGE);
3
ogs_assert(e);
4
e->sess = sess;
5
- e->sbi.data = stream;
6
+ e->h.sbi.data = stream;
7
e->pkbuf = pkbuf;
8
e->ngap.type = type;
9
rv = ogs_queue_push(ogs_app()->queue, e);
10
if (rv != OGS_OK) {
11
ogs_error("ogs_queue_push() failed:%d", (int)rv);
12
ogs_pkbuf_free(e->pkbuf);
13
- smf_event_free(e);
14
+ ogs_event_free(e);
15
}
16
-}
17
\ No newline at end of file
18
+}
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/nnrf-handler.c
Changed
320
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "sbi-path.h"
10
#include "nnrf-handler.h"
11
12
-void smf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->is_heart_beat_timer == true)
31
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
32
-}
33
-
34
-void smf_nnrf_handle_nf_status_subscribe(
35
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
36
-{
37
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
38
- ogs_sbi_client_t *client = NULL;
39
-
40
- ogs_assert(recvmsg);
41
- ogs_assert(subscription);
42
- client = subscription->client;
43
- ogs_assert(client);
44
-
45
- SubscriptionData = recvmsg->SubscriptionData;
46
- if (!SubscriptionData) {
47
- ogs_error("No SubscriptionData");
48
- return;
49
- }
50
-
51
- if (!SubscriptionData->subscription_id) {
52
- ogs_error("No SubscriptionId");
53
- return;
54
- }
55
- ogs_sbi_subscription_set_id(
56
- subscription, SubscriptionData->subscription_id);
57
-
58
- if (SubscriptionData->validity_time) {
59
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
60
- ogs_time_t time, duration;
61
- if (ogs_sbi_time_from_string(
62
- &time, SubscriptionData->validity_time) == true) {
63
- duration = time - ogs_time_now();
64
- if (duration < VALIDITY_MINIMUM) {
65
- duration = VALIDITY_MINIMUM;
66
- ogs_warn("%s Forced to %lld seconds", subscription->id,
67
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
68
- }
69
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
70
- smf_timer_subscription_validity, subscription);
71
- ogs_assert(subscription->t_validity);
72
- ogs_timer_start(subscription->t_validity, duration);
73
- } else {
74
- ogs_error("Cannot parse validitiyTime %s",
75
- SubscriptionData->validity_time);
76
- }
77
- }
78
-}
79
-
80
-bool smf_nnrf_handle_nf_status_notify(
81
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
82
-{
83
- int rv;
84
- bool handled;
85
-
86
- ogs_sbi_response_t *response = NULL;
87
- OpenAPI_notification_data_t *NotificationData = NULL;
88
- ogs_sbi_nf_instance_t *nf_instance = NULL;
89
-
90
- ogs_sbi_message_t message;
91
- ogs_sbi_header_t header;
92
-
93
- ogs_assert(stream);
94
- ogs_assert(recvmsg);
95
-
96
- NotificationData = recvmsg->NotificationData;
97
- if (!NotificationData) {
98
- ogs_error("No NotificationData");
99
- ogs_assert(true ==
100
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
101
- recvmsg, "No NotificationData", NULL));
102
- return false;
103
- }
104
-
105
- if (!NotificationData->nf_instance_uri) {
106
- ogs_error("No nfInstanceUri");
107
- ogs_assert(true ==
108
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
109
- recvmsg, "No nfInstanceUri", NULL));
110
- return false;
111
- }
112
-
113
- memset(&header, 0, sizeof(header));
114
- header.uri = NotificationData->nf_instance_uri;
115
-
116
- rv = ogs_sbi_parse_header(&message, &header);
117
- if (rv != OGS_OK) {
118
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
119
- ogs_assert(true ==
120
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
121
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
122
- return false;
123
- }
124
-
125
- if (!message.h.resource.component1) {
126
- ogs_error("No nfInstanceId %s", header.uri);
127
- ogs_assert(true ==
128
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
129
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
130
- ogs_sbi_header_free(&header);
131
- return false;
132
- }
133
-
134
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
135
- ogs_warn("%s The notification is not allowed",
136
- message.h.resource.component1);
137
- ogs_assert(true ==
138
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
139
- recvmsg, "The notification is not allowed",
140
- message.h.resource.component1));
141
- ogs_sbi_header_free(&header);
142
- return false;
143
- }
144
-
145
- if (NotificationData->event ==
146
- OpenAPI_notification_event_type_NF_REGISTERED) {
147
-
148
- OpenAPI_nf_profile_t *NFProfile = NULL;
149
-
150
- NFProfile = NotificationData->nf_profile;
151
- if (!NFProfile) {
152
- ogs_error("No NFProfile");
153
- ogs_assert(true ==
154
- ogs_sbi_server_send_error(
155
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
156
- recvmsg, "No NFProfile", NULL));
157
- ogs_sbi_header_free(&header);
158
- return false;
159
- }
160
-
161
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
162
- if (!nf_instance) {
163
- nf_instance = ogs_sbi_nf_instance_add();
164
- ogs_assert(nf_instance);
165
- ogs_sbi_nf_instance_set_id(nf_instance,
166
- message.h.resource.component1);
167
-
168
- smf_nf_fsm_init(nf_instance);
169
-
170
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
171
-
172
- } else {
173
- OGS_FSM_TRAN(&nf_instance->sm, smf_nf_state_registered);
174
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
175
-
176
- ogs_warn("%s (NRF-notify) NF has already been added",
177
- message.h.resource.component1);
178
-
179
- }
180
-
181
- handled = ogs_sbi_nnrf_handle_nf_profile(
182
- nf_instance, NFProfile, stream, recvmsg);
183
- if (!handled) {
184
- SMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
185
- ogs_sbi_header_free(&header);
186
- return false;
187
- }
188
-
189
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
190
-
191
- handled = ogs_sbi_client_associate(nf_instance);
192
- if (!handled) {
193
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
194
- ogs_assert(true ==
195
- ogs_sbi_server_send_error(stream,
196
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
197
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
198
- SMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
199
- ogs_sbi_header_free(&header);
200
- return false;
201
- }
202
-
203
- } else if (NotificationData->event ==
204
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
205
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
206
- if (nf_instance) {
207
- SMF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
208
- } else {
209
- ogs_warn("%s (NRF-notify) Not found",
210
- message.h.resource.component1);
211
- ogs_assert(true ==
212
- ogs_sbi_server_send_error(stream,
213
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
214
- recvmsg, "Not found", message.h.resource.component1));
215
- ogs_sbi_header_free(&header);
216
- return false;
217
- }
218
- } else {
219
- char *eventstr = OpenAPI_notification_event_type_ToString(
220
- NotificationData->event);
221
- ogs_error("Not supported event %d:%s",
222
- NotificationData->event, eventstr ? eventstr : "Unknown");
223
- ogs_assert(true ==
224
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
225
- recvmsg, "Not supported event",
226
- eventstr ? eventstr : "Unknown"));
227
- ogs_sbi_header_free(&header);
228
- return false;
229
- }
230
-
231
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
232
- ogs_assert(response);
233
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
234
-
235
- ogs_sbi_header_free(&header);
236
- return true;
237
-}
238
-
239
void smf_nnrf_handle_nf_discover(
240
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
241
{
242
ogs_sbi_object_t *sbi_object = NULL;
243
OpenAPI_nf_type_e target_nf_type = 0;
244
ogs_sbi_discovery_option_t *discovery_option = NULL;
245
- ogs_sbi_nf_instance_t *nf_instance = NULL;
246
247
OpenAPI_search_result_t *SearchResult = NULL;
248
- OpenAPI_lnode_t *node = NULL;
249
- bool handled;
250
251
ogs_assert(recvmsg);
252
ogs_assert(xact);
253
254
return;
255
}
256
257
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
258
- OpenAPI_nf_profile_t *NFProfile = NULL;
259
-
260
- if (!node->data) continue;
261
-
262
- NFProfile = node->data;
263
-
264
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
265
- if (!nf_instance) {
266
- nf_instance = ogs_sbi_nf_instance_add();
267
- ogs_assert(nf_instance);
268
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
269
-
270
- smf_nf_fsm_init(nf_instance);
271
-
272
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
273
- } else {
274
- OGS_FSM_TRAN(&nf_instance->sm, smf_nf_state_registered);
275
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
276
-
277
- ogs_warn("%s (NF-discover) NF has already been added",
278
- NFProfile->nf_instance_id);
279
- }
280
-
281
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
282
- handled = ogs_sbi_nnrf_handle_nf_profile(
283
- nf_instance, NFProfile, NULL, NULL);
284
- if (!handled) {
285
- ogs_error("ogs_sbi_nnrf_handle_nf_profile() failed %s",
286
- nf_instance->id);
287
- SMF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
288
- continue;
289
- }
290
-
291
- handled = ogs_sbi_client_associate(nf_instance);
292
- if (!handled) {
293
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
294
- SMF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
295
- continue;
296
- }
297
-
298
- /* TIME : Update validity from NRF */
299
- if (SearchResult->is_validity_period &&
300
- SearchResult->validity_period) {
301
- nf_instance->time.validity_duration =
302
- SearchResult->validity_period;
303
-
304
- ogs_assert(nf_instance->t_validity);
305
- ogs_timer_start(nf_instance->t_validity,
306
- ogs_time_from_sec(nf_instance->time.validity_duration));
307
-
308
- } else
309
- ogs_warn("%s NF Instance validity-time should not 0",
310
- nf_instance->id);
311
-
312
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
313
- }
314
- }
315
+ ogs_nnrf_handle_nf_discover_search_result(
316
+ sbi_object, target_nf_type, discovery_option, SearchResult);
317
318
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
319
320
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/nnrf-handler.h
Changed
23
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void smf_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void smf_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool smf_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void smf_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
23
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/pfcp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/pfcp-path.c
Changed
28
1
2
ogs_assert(node->t_association);
3
}
4
5
- ogs_fsm_create(&node->sm, smf_pfcp_state_initial, smf_pfcp_state_final);
6
- ogs_fsm_init(&node->sm, &e);
7
+ ogs_fsm_init(&node->sm, smf_pfcp_state_initial, smf_pfcp_state_final, &e);
8
}
9
10
static void pfcp_node_fsm_fini(ogs_pfcp_node_t *node)
11
12
e.pfcp_node = node;
13
14
ogs_fsm_fini(&node->sm, &e);
15
- ogs_fsm_delete(&node->sm);
16
17
if (node->t_association)
18
ogs_timer_delete(node->t_association);
19
20
if (rv != OGS_OK) {
21
ogs_error("ogs_queue_push() failed:%d", (int)rv);
22
ogs_pkbuf_free(e->pkbuf);
23
- smf_event_free(e);
24
+ ogs_event_free(e);
25
}
26
}
27
28
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/pfcp-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/pfcp-sm.c
Changed
73
1
2
addr = node->sa_list;
3
ogs_assert(addr);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
if (node->t_association) {
9
ogs_timer_start(node->t_association,
10
11
break;
12
13
case SMF_EVT_N4_TIMER:
14
- switch(e->timer_id) {
15
+ switch(e->h.timer_id) {
16
case SMF_TIMER_PFCP_ASSOCIATION:
17
node = e->pfcp_node;
18
ogs_assert(node);
19
20
break;
21
default:
22
ogs_error("Unknown timer%s:%d",
23
- smf_timer_get_name(e->timer_id), e->timer_id);
24
+ smf_timer_get_name(e->h.timer_id), e->h.timer_id);
25
break;
26
}
27
break;
28
29
addr = node->sa_list;
30
ogs_assert(addr);
31
32
- switch (e->id) {
33
+ switch (e->h.id) {
34
case OGS_FSM_ENTRY_SIG:
35
ogs_info("PFCP associated");
36
ogs_timer_start(node->t_no_heartbeat,
37
38
39
break;
40
case SMF_EVT_N4_TIMER:
41
- switch(e->timer_id) {
42
+ switch(e->h.timer_id) {
43
case SMF_TIMER_PFCP_NO_HEARTBEAT:
44
node = e->pfcp_node;
45
ogs_assert(node);
46
47
break;
48
default:
49
ogs_error("Unknown timer%s:%d",
50
- smf_timer_get_name(e->timer_id), e->timer_id);
51
+ smf_timer_get_name(e->h.timer_id), e->h.timer_id);
52
break;
53
}
54
break;
55
56
57
smf_sm_debug(e);
58
59
- switch (e->id) {
60
+ switch (e->h.id) {
61
case OGS_FSM_ENTRY_SIG:
62
break;
63
case OGS_FSM_EXIT_SIG:
64
65
rv = ogs_queue_push(ogs_app()->queue, e);
66
if (rv != OGS_OK) {
67
ogs_error("ogs_queue_push() failed:%d", (int)rv);
68
- smf_event_free(e);
69
+ ogs_event_free(e);
70
}
71
break;
72
case OGS_PFCP_ASSOCIATION_SETUP_REQUEST_TYPE:
73
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/s6b-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/s6b-path.c
Changed
10
1
2
if (rv != OGS_OK) {
3
ogs_error("ogs_queue_push() failed:%d", (int)rv);
4
ogs_free(s6b_message);
5
- smf_event_free(e);
6
+ ogs_event_free(e);
7
} else {
8
ogs_pollset_notify(ogs_app()->pollset);
9
}
10
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/sbi-path.c
Changed
106
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = smf_event_new(SMF_EVT_SBI_SERVER);
13
+ e = smf_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- smf_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = smf_event_new(SMF_EVT_SBI_CLIENT);
35
+ e = smf_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- smf_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_AMF);
58
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_PCF);
59
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDM);
60
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UPF);
61
+
62
/* Add SELF NF instance */
63
nf_instance = ogs_sbi_self()->nf_instance;
64
ogs_assert(nf_instance);
65
66
}
67
68
/* Initialize NRF NF Instance */
69
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
70
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
71
- ogs_sbi_client_t *client = NULL;
72
-
73
- /* Client callback is only used when NF sends to NRF */
74
- client = nf_instance->client;
75
- ogs_assert(client);
76
- client->cb = client_cb;
77
-
78
- /* NFRegister is sent and the response is received
79
- * by the above client callback. */
80
- smf_nf_fsm_init(nf_instance);
81
- }
82
+ nf_instance = ogs_sbi_self()->nrf_instance;
83
+ if (nf_instance) {
84
+ ogs_sbi_client_t *client = NULL;
85
+
86
+ /* Client callback is only used when NF sends to NRF */
87
+ client = nf_instance->client;
88
+ ogs_assert(client);
89
+ client->cb = client_cb;
90
+
91
+ /* NFRegister is sent and the response is received
92
+ * by the above client callback. */
93
+ ogs_sbi_nf_fsm_init(nf_instance);
94
}
95
96
- /* Timer expiration handler of client wait timer */
97
- ogs_sbi_self()->client_wait_expire = smf_timer_sbi_client_wait_expire;
98
-
99
- /* NF register state in NF state machine */
100
- ogs_sbi_self()->nf_state_registered =
101
- (ogs_fsm_handler_t)smf_nf_state_registered;
102
-
103
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
104
return OGS_ERROR;
105
106
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/sbi-path.h
Changed
16
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef SMF_SBI_PATH_H
10
#define SMF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
#include "nudm-build.h"
14
#include "namf-build.h"
15
#include "gsm-build.h"
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/smf-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/smf-sm.c
Changed
204
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
18
ogs_fsm_dispatch(&pfcp_node->sm, e);
19
break;
20
21
- case SMF_EVT_SBI_SERVER:
22
- sbi_request = e->sbi.request;
23
+ case OGS_EVENT_SBI_SERVER:
24
+ sbi_request = e->h.sbi.request;
25
ogs_assert(sbi_request);
26
- stream = e->sbi.data;
27
+ stream = e->h.sbi.data;
28
ogs_assert(stream);
29
30
rv = ogs_sbi_parse_request(&sbi_message, sbi_request);
31
32
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
33
SWITCH(sbi_message.h.method)
34
CASE(OGS_SBI_HTTP_METHOD_POST)
35
- smf_nnrf_handle_nf_status_notify(stream, &sbi_message);
36
+ ogs_nnrf_handle_nf_status_notify(stream, &sbi_message);
37
break;
38
39
DEFAULT
40
41
ogs_assert(OGS_FSM_STATE(&sess->sm));
42
43
e->sess = sess;
44
- e->sbi.message = &sbi_message;
45
+ e->h.sbi.message = &sbi_message;
46
ogs_fsm_dispatch(&sess->sm, e);
47
}
48
break;
49
50
ogs_sbi_message_free(&sbi_message);
51
break;
52
53
- case SMF_EVT_SBI_CLIENT:
54
+ case OGS_EVENT_SBI_CLIENT:
55
ogs_assert(e);
56
57
- sbi_response = e->sbi.response;
58
+ sbi_response = e->h.sbi.response;
59
ogs_assert(sbi_response);
60
rv = ogs_sbi_parse_response(&sbi_message, sbi_response);
61
if (rv != OGS_OK) {
62
63
64
SWITCH(sbi_message.h.resource.component0)
65
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
66
- nf_instance = e->sbi.data;
67
+ nf_instance = e->h.sbi.data;
68
ogs_assert(nf_instance);
69
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
70
71
- e->sbi.message = &sbi_message;
72
+ e->h.sbi.message = &sbi_message;
73
ogs_fsm_dispatch(&nf_instance->sm, e);
74
break;
75
76
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
77
- subscription = e->sbi.data;
78
+ subscription = e->h.sbi.data;
79
ogs_assert(subscription);
80
81
SWITCH(sbi_message.h.method)
82
CASE(OGS_SBI_HTTP_METHOD_POST)
83
if (sbi_message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
84
sbi_message.res_status == OGS_SBI_HTTP_STATUS_OK) {
85
- smf_nnrf_handle_nf_status_subscribe(
86
+ ogs_nnrf_handle_nf_status_subscribe(
87
subscription, &sbi_message);
88
} else {
89
ogs_error("HTTP response error : %d",
90
91
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
92
SWITCH(sbi_message.h.resource.component0)
93
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
94
- sbi_xact = e->sbi.data;
95
+ sbi_xact = e->h.sbi.data;
96
ogs_assert(sbi_xact);
97
98
SWITCH(sbi_message.h.method)
99
100
CASE(OGS_SBI_SERVICE_NAME_NUDM_SDM)
101
CASE(OGS_SBI_SERVICE_NAME_NPCF_SMPOLICYCONTROL)
102
CASE(OGS_SBI_SERVICE_NAME_NAMF_COMM)
103
- sbi_xact = e->sbi.data;
104
+ sbi_xact = e->h.sbi.data;
105
ogs_assert(sbi_xact);
106
107
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
108
109
sess = (smf_sess_t *)sbi_xact->sbi_object;
110
ogs_assert(sess);
111
112
- e->sbi.data = sbi_xact->assoc_stream;
113
- e->sbi.state = sbi_xact->state;
114
+ e->h.sbi.data = sbi_xact->assoc_stream;
115
+ e->h.sbi.state = sbi_xact->state;
116
117
ogs_sbi_xact_remove(sbi_xact);
118
119
120
ogs_assert(OGS_FSM_STATE(&sess->sm));
121
122
e->sess = sess;
123
- e->sbi.message = &sbi_message;
124
+ e->h.sbi.message = &sbi_message;
125
126
ogs_fsm_dispatch(&sess->sm, e);
127
break;
128
129
ogs_sbi_response_free(sbi_response);
130
break;
131
132
- case SMF_EVT_SBI_TIMER:
133
+ case OGS_EVENT_SBI_TIMER:
134
ogs_assert(e);
135
136
- switch(e->timer_id) {
137
- case SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
138
- case SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
139
- case SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
140
- case SMF_TIMER_NF_INSTANCE_VALIDITY:
141
- nf_instance = e->sbi.data;
142
+ switch(e->h.timer_id) {
143
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
144
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
145
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
146
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
147
+ nf_instance = e->h.sbi.data;
148
ogs_assert(nf_instance);
149
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
150
151
ogs_fsm_dispatch(&nf_instance->sm, e);
152
- if (OGS_FSM_CHECK(&nf_instance->sm, smf_nf_state_exception))
153
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
154
ogs_error("%s:%s State machine exception %d",
155
OpenAPI_nf_type_ToString(nf_instance->nf_type),
156
- nf_instance->id, e->timer_id);
157
+ nf_instance->id, e->h.timer_id);
158
break;
159
160
- case SMF_TIMER_SUBSCRIPTION_VALIDITY:
161
- subscription = e->sbi.data;
162
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
163
+ subscription = e->h.sbi.data;
164
ogs_assert(subscription);
165
166
ogs_assert(ogs_sbi_self()->nf_instance);
167
168
ogs_sbi_subscription_remove(subscription);
169
break;
170
171
- case SMF_TIMER_SBI_CLIENT_WAIT:
172
- sbi_xact = e->sbi.data;
173
+ case OGS_TIMER_SBI_CLIENT_WAIT:
174
+ sbi_xact = e->h.sbi.data;
175
ogs_assert(sbi_xact);
176
177
stream = sbi_xact->assoc_stream;
178
179
180
default:
181
ogs_error("Unknown timer%s:%d",
182
- smf_timer_get_name(e->timer_id), e->timer_id);
183
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
184
}
185
break;
186
187
case SMF_EVT_5GSM_MESSAGE:
188
sess = e->sess;
189
ogs_assert(sess);
190
- stream = e->sbi.data;
191
+ stream = e->h.sbi.data;
192
ogs_assert(stream);
193
pkbuf = e->pkbuf;
194
ogs_assert(pkbuf);
195
196
case SMF_EVT_NGAP_MESSAGE:
197
sess = e->sess;
198
ogs_assert(sess);
199
- stream = e->sbi.data;
200
+ stream = e->h.sbi.data;
201
ogs_assert(stream);
202
pkbuf = e->pkbuf;
203
ogs_assert(pkbuf);
204
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/smf-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/smf-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void smf_state_operational(ogs_fsm_t *s, smf_event_t *e);
10
void smf_state_exception(ogs_fsm_t *s, smf_event_t *e);
11
12
-void smf_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void smf_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void smf_nf_state_initial(ogs_fsm_t *s, smf_event_t *e);
16
-void smf_nf_state_final(ogs_fsm_t *s, smf_event_t *e);
17
-void smf_nf_state_will_register(ogs_fsm_t *s, smf_event_t *e);
18
-void smf_nf_state_registered(ogs_fsm_t *s, smf_event_t *e);
19
-void smf_nf_state_de_registered(ogs_fsm_t *s, smf_event_t *e);
20
-void smf_nf_state_exception(ogs_fsm_t *s, smf_event_t *e);
21
-
22
void smf_gsm_state_initial(ogs_fsm_t *s, smf_event_t *e);
23
void smf_gsm_state_final(ogs_fsm_t *s, smf_event_t *e);
24
void smf_gsm_state_wait_epc_auth_initial(ogs_fsm_t *s, smf_event_t *e);
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/timer.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/timer.c
Changed
136
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
* along with this program. If not, see <https://www.gnu.org/licenses/>.
10
*/
11
12
-#include "timer.h"
13
-#include "event.h"
14
#include "context.h"
15
16
-const char *smf_timer_get_name(smf_timer_e id)
17
+const char *smf_timer_get_name(int timer_id)
18
{
19
- switch (id) {
20
+ switch (timer_id) {
21
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
22
+ return OGS_TIMER_NAME_NF_INSTANCE_REGISTRATION_INTERVAL;
23
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
24
+ return OGS_TIMER_NAME_NF_INSTANCE_HEARTBEAT_INTERVAL;
25
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
26
+ return OGS_TIMER_NAME_NF_INSTANCE_NO_HEARTBEAT;
27
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
28
+ return OGS_TIMER_NAME_NF_INSTANCE_VALIDITY;
29
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
30
+ return OGS_TIMER_NAME_SUBSCRIPTION_VALIDITY;
31
+ case OGS_TIMER_SBI_CLIENT_WAIT:
32
+ return OGS_TIMER_NAME_SBI_CLIENT_WAIT;
33
case SMF_TIMER_PFCP_ASSOCIATION:
34
return "SMF_TIMER_PFCP_ASSOCIATION";
35
case SMF_TIMER_PFCP_NO_HEARTBEAT:
36
return "SMF_TIMER_PFCP_NO_HEARTBEAT";
37
- case SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
38
- return "SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL";
39
- case SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
40
- return "SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL";
41
- case SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
42
- return "SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT";
43
- case SMF_TIMER_NF_INSTANCE_VALIDITY:
44
- return "SMF_TIMER_NF_INSTANCE_VALIDITY";
45
- case SMF_TIMER_SUBSCRIPTION_VALIDITY:
46
- return "SMF_TIMER_SUBSCRIPTION_VALIDITY";
47
- case SMF_TIMER_SBI_CLIENT_WAIT:
48
- return "SMF_TIMER_SBI_CLIENT_WAIT";
49
default:
50
break;
51
}
52
53
+ ogs_error("Unknown Timer%d", timer_id);
54
return "UNKNOWN_TIMER";
55
}
56
57
58
case SMF_TIMER_PFCP_NO_HEARTBEAT:
59
e = smf_event_new(SMF_EVT_N4_TIMER);
60
ogs_assert(e);
61
- e->timer_id = timer_id;
62
+ e->h.timer_id = timer_id;
63
e->pfcp_node = data;
64
break;
65
- case SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
66
- case SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
67
- case SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
68
- case SMF_TIMER_NF_INSTANCE_VALIDITY:
69
- case SMF_TIMER_SUBSCRIPTION_VALIDITY:
70
- e = smf_event_new(SMF_EVT_SBI_TIMER);
71
- ogs_assert(e);
72
- e->timer_id = timer_id;
73
- e->sbi.data = data;
74
- break;
75
- case SMF_TIMER_SBI_CLIENT_WAIT:
76
- e = smf_event_new(SMF_EVT_SBI_TIMER);
77
- if (!e) {
78
- ogs_sbi_xact_t *sbi_xact = data;
79
- ogs_assert(sbi_xact);
80
-
81
- ogs_error("timer_send_event() failed");
82
- ogs_sbi_xact_remove(sbi_xact);
83
- return;
84
- }
85
- e->timer_id = timer_id;
86
- e->sbi.data = data;
87
- break;
88
default:
89
ogs_fatal("Unknown timer id%d", timer_id);
90
ogs_assert_if_reached();
91
92
rv = ogs_queue_push(ogs_app()->queue, e);
93
if (rv != OGS_OK) {
94
ogs_error("ogs_queue_push() failed %d in %s",
95
- (int)rv, smf_timer_get_name(e->timer_id));
96
- smf_event_free(e);
97
+ (int)rv, smf_timer_get_name(timer_id));
98
+ ogs_event_free(e);
99
}
100
}
101
102
103
{
104
timer_send_event(SMF_TIMER_PFCP_NO_HEARTBEAT, data);
105
}
106
-
107
-void smf_timer_nf_instance_registration_interval(void *data)
108
-{
109
- timer_send_event(SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL, data);
110
-}
111
-
112
-void smf_timer_nf_instance_heartbeat_interval(void *data)
113
-{
114
- timer_send_event(SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL, data);
115
-}
116
-
117
-void smf_timer_nf_instance_no_heartbeat(void *data)
118
-{
119
- timer_send_event(SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT, data);
120
-}
121
-
122
-void smf_timer_nf_instance_validity(void *data)
123
-{
124
- timer_send_event(SMF_TIMER_NF_INSTANCE_VALIDITY, data);
125
-}
126
-
127
-void smf_timer_subscription_validity(void *data)
128
-{
129
- timer_send_event(SMF_TIMER_SUBSCRIPTION_VALIDITY, data);
130
-}
131
-
132
-void smf_timer_sbi_client_wait_expire(void *data)
133
-{
134
- timer_send_event(SMF_TIMER_SBI_CLIENT_WAIT, data);
135
-}
136
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/smf/timer.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/smf/timer.h
Changed
54
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef SMF_TIMER_H
10
#define SMF_TIMER_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
18
19
/* forward declaration */
20
typedef enum {
21
- SMF_TIMER_BASE = 0,
22
+ SMF_TIMER_BASE = OGS_MAX_NUM_OF_PROTO_TIMER,
23
24
SMF_TIMER_PFCP_ASSOCIATION,
25
SMF_TIMER_PFCP_NO_HEARTBEAT,
26
27
- SMF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL,
28
- SMF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL,
29
- SMF_TIMER_NF_INSTANCE_NO_HEARTBEAT,
30
- SMF_TIMER_NF_INSTANCE_VALIDITY,
31
- SMF_TIMER_SUBSCRIPTION_VALIDITY,
32
- SMF_TIMER_SBI_CLIENT_WAIT,
33
-
34
MAX_NUM_OF_SMF_TIMER,
35
36
} smf_timer_e;
37
38
-const char *smf_timer_get_name(smf_timer_e id);
39
+const char *smf_timer_get_name(int timer_id);
40
41
void smf_timer_pfcp_association(void *data);
42
void smf_timer_pfcp_no_heartbeat(void *data);
43
44
-void smf_timer_nf_instance_registration_interval(void *data);
45
-void smf_timer_nf_instance_heartbeat_interval(void *data);
46
-void smf_timer_nf_instance_no_heartbeat(void *data);
47
-void smf_timer_nf_instance_validity(void *data);
48
-void smf_timer_subscription_validity(void *data);
49
-void smf_timer_sbi_client_wait_expire(void *data);
50
-
51
#ifdef __cplusplus
52
}
53
#endif
54
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/context.c
Changed
26
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
memset(&e, 0, sizeof(e));
11
e.udm_ue = udm_ue;
12
- ogs_fsm_create(&udm_ue->sm, udm_ue_state_initial, udm_ue_state_final);
13
- ogs_fsm_init(&udm_ue->sm, &e);
14
+ ogs_fsm_init(&udm_ue->sm, udm_ue_state_initial, udm_ue_state_final, &e);
15
16
ogs_list_add(&self.udm_ue_list, udm_ue);
17
18
19
memset(&e, 0, sizeof(e));
20
e.udm_ue = udm_ue;
21
ogs_fsm_fini(&udm_ue->sm, &e);
22
- ogs_fsm_delete(&udm_ue->sm);
23
24
/* Free SBI object memory */
25
ogs_sbi_object_free(&udm_ue->sbi);
26
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-sbi.h"
10
11
#include "udm-sm.h"
12
-#include "timer.h"
13
14
#ifdef __cplusplus
15
extern "C" {
16
17
18
OpenAPI_auth_type_e auth_type;
19
OpenAPI_rat_type_e rat_type;
20
-
21
-#define UDM_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
22
- do { \
23
- ogs_assert(_nFInstance); \
24
- if ((_nFInstance)->reference_count == 1) { \
25
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
26
- udm_nf_fsm_fini((_nFInstance)); \
27
- ogs_sbi_nf_instance_remove(_nFInstance); \
28
- } else { \
29
- /* There is an assocation with other context */ \
30
- ogs_info("%s:%d (%s) NF suspended", \
31
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
32
- OGS_FSM_TRAN(&_nFInstance->sm, udm_nf_state_de_registered); \
33
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
34
- } \
35
- } while(0)
36
};
37
38
void udm_context_init(void);
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/event.c
Changed
80
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, udm_event_t);
15
-
16
-void udm_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void udm_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-udm_event_t *udm_event_new(udm_event_e id)
27
+udm_event_t *udm_event_new(int id)
28
{
29
udm_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(udm_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void udm_event_free(udm_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *udm_event_get_name(udm_event_t *e)
49
{
50
if (e == NULL)
51
return OGS_FSM_NAME_INIT_SIG;
52
53
- switch (e->id) {
54
+ switch (e->h.id) {
55
case OGS_FSM_ENTRY_SIG:
56
return OGS_FSM_NAME_ENTRY_SIG;
57
case OGS_FSM_EXIT_SIG:
58
return OGS_FSM_NAME_EXIT_SIG;
59
60
- case UDM_EVT_SBI_SERVER:
61
- return "UDM_EVT_SBI_SERVER";
62
- case UDM_EVT_SBI_CLIENT:
63
- return "UDM_EVT_SBI_CLIENT";
64
- case UDM_EVT_SBI_TIMER:
65
- return "UDM_EVT_SBI_TIMER";
66
+ case OGS_EVENT_SBI_SERVER:
67
+ return OGS_EVENT_NAME_SBI_SERVER;
68
+ case OGS_EVENT_SBI_CLIENT:
69
+ return OGS_EVENT_NAME_SBI_CLIENT;
70
+ case OGS_EVENT_SBI_TIMER:
71
+ return OGS_EVENT_NAME_SBI_TIMER;
72
73
default:
74
break;
75
}
76
77
+ ogs_error("Unknown Event%d", e->h.id);
78
return "UNKNOWN_EVENT";
79
}
80
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/event.h
Changed
65
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef UDM_EVENT_H
10
#define UDM_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
typedef struct udm_ue_s udm_ue_t;
26
27
-typedef enum {
28
- UDM_EVT_BASE = OGS_FSM_USER_SIG,
29
-
30
- UDM_EVT_SBI_SERVER,
31
- UDM_EVT_SBI_CLIENT,
32
- UDM_EVT_SBI_TIMER,
33
-
34
- UDM_EVT_TOP,
35
-
36
-} udm_event_e;
37
-
38
typedef struct udm_event_s {
39
- int id;
40
- int timer_id;
41
-
42
- struct {
43
- ogs_sbi_request_t *request;
44
- ogs_sbi_response_t *response;
45
- void *data;
46
-
47
- ogs_sbi_message_t *message;
48
- } sbi;
49
+ ogs_event_t h;
50
51
udm_ue_t *udm_ue;
52
-
53
- ogs_timer_t *timer;
54
} udm_event_t;
55
56
-void udm_event_init(void);
57
-void udm_event_final(void);
58
-
59
-udm_event_t *udm_event_new(udm_event_e id);
60
-void udm_event_free(udm_event_t *e);
61
+udm_event_t *udm_event_new(int id);
62
63
const char *udm_event_get_name(udm_event_t *e);
64
65
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
udm_context_init();
12
- udm_event_init();
13
14
rv = ogs_sbi_context_parse_config("udm", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- udm_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
udm_context_final();
28
ogs_sbi_context_final();
29
-
30
- udm_event_final(); /* Destroy event */
31
}
32
33
static void udm_main(void *data)
34
35
ogs_fsm_t udm_sm;
36
int rv;
37
38
- ogs_fsm_create(&udm_sm, udm_state_initial, udm_state_final);
39
- ogs_fsm_init(&udm_sm, 0);
40
+ ogs_fsm_init(&udm_sm, udm_state_initial, udm_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&udm_sm, e);
48
- udm_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&udm_sm, 0);
55
- ogs_fsm_delete(&udm_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/meson.build
Changed
20
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libudm_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
13
- nnrf-build.c
14
nnrf-handler.c
15
- nf-sm.c
16
-
17
nudm-handler.c
18
19
nudr-build.c
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/nnrf-handler.c
Changed
313
1
2
#include "sbi-path.h"
3
#include "nnrf-handler.h"
4
5
-void udm_nnrf_handle_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
7
-{
8
- OpenAPI_nf_profile_t *NFProfile = NULL;
9
- ogs_sbi_client_t *client = NULL;
10
-
11
- ogs_assert(recvmsg);
12
- ogs_assert(nf_instance);
13
- client = nf_instance->client;
14
- ogs_assert(client);
15
-
16
- NFProfile = recvmsg->NFProfile;
17
- if (!NFProfile) {
18
- ogs_error("No NFProfile");
19
- return;
20
- }
21
-
22
- /* TIME : Update heartbeat from NRF */
23
- if (NFProfile->is_heart_beat_timer == true)
24
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
25
-}
26
-
27
-void udm_nnrf_handle_nf_status_subscribe(
28
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
29
-{
30
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
31
- ogs_sbi_client_t *client = NULL;
32
-
33
- ogs_assert(recvmsg);
34
- ogs_assert(subscription);
35
- client = subscription->client;
36
- ogs_assert(client);
37
-
38
- SubscriptionData = recvmsg->SubscriptionData;
39
- if (!SubscriptionData) {
40
- ogs_error("No SubscriptionData");
41
- return;
42
- }
43
-
44
- if (!SubscriptionData->subscription_id) {
45
- ogs_error("No SubscriptionId");
46
- return;
47
- }
48
- ogs_sbi_subscription_set_id(
49
- subscription, SubscriptionData->subscription_id);
50
-
51
- if (SubscriptionData->validity_time) {
52
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
53
- ogs_time_t time, duration;
54
- if (ogs_sbi_time_from_string(
55
- &time, SubscriptionData->validity_time) == true) {
56
- duration = time - ogs_time_now();
57
- if (duration < VALIDITY_MINIMUM) {
58
- duration = VALIDITY_MINIMUM;
59
- ogs_warn("%s Forced to %lld seconds", subscription->id,
60
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
61
- }
62
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
63
- udm_timer_subscription_validity, subscription);
64
- ogs_assert(subscription->t_validity);
65
- ogs_timer_start(subscription->t_validity, duration);
66
- } else {
67
- ogs_error("Cannot parse validitiyTime %s",
68
- SubscriptionData->validity_time);
69
- }
70
- }
71
-}
72
-
73
-bool udm_nnrf_handle_nf_status_notify(
74
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
75
-{
76
- int rv;
77
- bool handled;
78
-
79
- ogs_sbi_response_t *response = NULL;
80
- OpenAPI_notification_data_t *NotificationData = NULL;
81
- ogs_sbi_nf_instance_t *nf_instance = NULL;
82
-
83
- ogs_sbi_message_t message;
84
- ogs_sbi_header_t header;
85
-
86
- ogs_assert(stream);
87
- ogs_assert(recvmsg);
88
-
89
- NotificationData = recvmsg->NotificationData;
90
- if (!NotificationData) {
91
- ogs_error("No NotificationData");
92
- ogs_assert(true ==
93
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
94
- recvmsg, "No NotificationData", NULL));
95
- return false;
96
- }
97
-
98
- if (!NotificationData->nf_instance_uri) {
99
- ogs_error("No nfInstanceUri");
100
- ogs_assert(true ==
101
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
102
- recvmsg, "No nfInstanceUri", NULL));
103
- return false;
104
- }
105
-
106
- memset(&header, 0, sizeof(header));
107
- header.uri = NotificationData->nf_instance_uri;
108
-
109
- rv = ogs_sbi_parse_header(&message, &header);
110
- if (rv != OGS_OK) {
111
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
112
- ogs_assert(true ==
113
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
114
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
115
- return false;
116
- }
117
-
118
- if (!message.h.resource.component1) {
119
- ogs_error("No nfInstanceId %s", header.uri);
120
- ogs_assert(true ==
121
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
122
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
123
- ogs_sbi_header_free(&header);
124
- return false;
125
- }
126
-
127
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
128
- ogs_warn("%s The notification is not allowed",
129
- message.h.resource.component1);
130
- ogs_assert(true ==
131
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
132
- recvmsg, "The notification is not allowed",
133
- message.h.resource.component1));
134
- ogs_sbi_header_free(&header);
135
- return false;
136
- }
137
-
138
- if (NotificationData->event ==
139
- OpenAPI_notification_event_type_NF_REGISTERED) {
140
-
141
- OpenAPI_nf_profile_t *NFProfile = NULL;
142
-
143
- NFProfile = NotificationData->nf_profile;
144
- if (!NFProfile) {
145
- ogs_error("No NFProfile");
146
- ogs_assert(true ==
147
- ogs_sbi_server_send_error(
148
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
149
- recvmsg, "No NFProfile", NULL));
150
- ogs_sbi_header_free(&header);
151
- return false;
152
- }
153
-
154
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
155
- if (!nf_instance) {
156
- nf_instance = ogs_sbi_nf_instance_add();
157
- ogs_assert(nf_instance);
158
- ogs_sbi_nf_instance_set_id(nf_instance,
159
- message.h.resource.component1);
160
-
161
- udm_nf_fsm_init(nf_instance);
162
-
163
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
164
-
165
- } else {
166
- OGS_FSM_TRAN(&nf_instance->sm, udm_nf_state_registered);
167
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
168
-
169
- ogs_warn("%s (NRF-notify) NF has already been added",
170
- message.h.resource.component1);
171
-
172
- }
173
-
174
- handled = ogs_sbi_nnrf_handle_nf_profile(
175
- nf_instance, NFProfile, stream, recvmsg);
176
- if (!handled) {
177
- UDM_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
178
- ogs_sbi_header_free(&header);
179
- return false;
180
- }
181
-
182
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
183
-
184
- handled = ogs_sbi_client_associate(nf_instance);
185
- if (!handled) {
186
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
187
- ogs_assert(true ==
188
- ogs_sbi_server_send_error(stream,
189
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
190
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
191
- UDM_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
192
- ogs_sbi_header_free(&header);
193
- return false;
194
- }
195
-
196
- } else if (NotificationData->event ==
197
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
198
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
199
- if (nf_instance) {
200
- UDM_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
201
- } else {
202
- ogs_warn("%s (NRF-notify) Not found",
203
- message.h.resource.component1);
204
- ogs_assert(true ==
205
- ogs_sbi_server_send_error(stream,
206
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
207
- recvmsg, "Not found", message.h.resource.component1));
208
- ogs_sbi_header_free(&header);
209
- return false;
210
- }
211
- } else {
212
- char *eventstr = OpenAPI_notification_event_type_ToString(
213
- NotificationData->event);
214
- ogs_error("Not supported event %d:%s",
215
- NotificationData->event, eventstr ? eventstr : "Unknown");
216
- ogs_assert(true ==
217
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
218
- recvmsg, "Not supported event",
219
- eventstr ? eventstr : "Unknown"));
220
- ogs_sbi_header_free(&header);
221
- return false;
222
- }
223
-
224
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
225
- ogs_assert(response);
226
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
227
-
228
- ogs_sbi_header_free(&header);
229
- return true;
230
-}
231
-
232
void udm_nnrf_handle_nf_discover(
233
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
234
{
235
ogs_sbi_object_t *sbi_object = NULL;
236
OpenAPI_nf_type_e target_nf_type = 0;
237
ogs_sbi_discovery_option_t *discovery_option = NULL;
238
- ogs_sbi_nf_instance_t *nf_instance = NULL;
239
240
OpenAPI_search_result_t *SearchResult = NULL;
241
- OpenAPI_lnode_t *node = NULL;
242
- bool handled;
243
244
ogs_assert(recvmsg);
245
ogs_assert(xact);
246
247
return;
248
}
249
250
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
251
- OpenAPI_nf_profile_t *NFProfile = NULL;
252
-
253
- if (!node->data) continue;
254
-
255
- NFProfile = node->data;
256
-
257
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
258
- if (!nf_instance) {
259
- nf_instance = ogs_sbi_nf_instance_add();
260
- ogs_assert(nf_instance);
261
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
262
-
263
- udm_nf_fsm_init(nf_instance);
264
-
265
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
266
- } else {
267
- OGS_FSM_TRAN(&nf_instance->sm, udm_nf_state_registered);
268
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
269
-
270
- ogs_warn("%s (NF-discover) NF has already been added",
271
- NFProfile->nf_instance_id);
272
- }
273
-
274
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
275
- handled = ogs_sbi_nnrf_handle_nf_profile(
276
- nf_instance, NFProfile, NULL, NULL);
277
- if (!handled) {
278
- ogs_error("%s ogs_sbi_nnrf_handle_nf_profile() failed",
279
- nf_instance->id);
280
- UDM_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
281
- continue;
282
- }
283
-
284
- handled = ogs_sbi_client_associate(nf_instance);
285
- if (!handled) {
286
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
287
- UDM_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
288
- continue;
289
- }
290
-
291
- /* TIME : Update validity from NRF */
292
- if (SearchResult->is_validity_period &&
293
- SearchResult->validity_period) {
294
- nf_instance->time.validity_duration =
295
- SearchResult->validity_period;
296
-
297
- ogs_assert(nf_instance->t_validity);
298
- ogs_timer_start(nf_instance->t_validity,
299
- ogs_time_from_sec(nf_instance->time.validity_duration));
300
-
301
- } else
302
- ogs_warn("%s NF Instance validity-time should not 0",
303
- nf_instance->id);
304
-
305
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
306
- }
307
- }
308
+ ogs_nnrf_handle_nf_discover_search_result(
309
+ sbi_object, target_nf_type, discovery_option, SearchResult);
310
311
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
312
313
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/nnrf-handler.h
Changed
16
1
2
extern "C" {
3
#endif
4
5
-void udm_nnrf_handle_nf_register(
6
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
7
-void udm_nnrf_handle_nf_status_subscribe(
8
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
9
-
10
-bool udm_nnrf_handle_nf_status_notify(
11
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
12
-
13
void udm_nnrf_handle_nf_discover(
14
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
15
16
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/sbi-path.c
Changed
96
1
2
ogs_assert(request);
3
ogs_assert(data);
4
5
- e = udm_event_new(UDM_EVT_SBI_SERVER);
6
+ e = udm_event_new(OGS_EVENT_SBI_SERVER);
7
ogs_assert(e);
8
9
- e->sbi.request = request;
10
- e->sbi.data = data;
11
+ e->h.sbi.request = request;
12
+ e->h.sbi.data = data;
13
14
rv = ogs_queue_push(ogs_app()->queue, e);
15
if (rv != OGS_OK) {
16
ogs_error("ogs_queue_push() failed:%d", (int)rv);
17
ogs_sbi_request_free(request);
18
- udm_event_free(e);
19
+ ogs_event_free(e);
20
return OGS_ERROR;
21
}
22
23
24
25
ogs_assert(response);
26
27
- e = udm_event_new(UDM_EVT_SBI_CLIENT);
28
+ e = udm_event_new(OGS_EVENT_SBI_CLIENT);
29
ogs_assert(e);
30
- e->sbi.response = response;
31
- e->sbi.data = data;
32
+ e->h.sbi.response = response;
33
+ e->h.sbi.data = data;
34
35
rv = ogs_queue_push(ogs_app()->queue, e);
36
if (rv != OGS_OK) {
37
ogs_error("ogs_queue_push() failed:%d", (int)rv);
38
ogs_sbi_response_free(response);
39
- udm_event_free(e);
40
+ ogs_event_free(e);
41
return OGS_ERROR;
42
}
43
44
45
ogs_sbi_nf_instance_t *nf_instance = NULL;
46
ogs_sbi_nf_service_t *service = NULL;
47
48
+ /* To be notified when NF Instances registered/deregistered in NRF
49
+ * or when their profile is modified */
50
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_UDR);
51
+
52
/* Add SELF NF instance */
53
nf_instance = ogs_sbi_self()->nf_instance;
54
ogs_assert(nf_instance);
55
56
}
57
58
/* Initialize NRF NF Instance */
59
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
60
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
61
- ogs_sbi_client_t *client = NULL;
62
-
63
- /* Client callback is only used when NF sends to NRF */
64
- client = nf_instance->client;
65
- ogs_assert(client);
66
- client->cb = client_cb;
67
-
68
- /* NFRegister is sent and the response is received
69
- * by the above client callback. */
70
- udm_nf_fsm_init(nf_instance);
71
- }
72
- }
73
-
74
- /* Timer expiration handler of client wait timer */
75
- ogs_sbi_self()->client_wait_expire = udm_timer_sbi_client_wait_expire;
76
-
77
- /* NF register state in NF state machine */
78
- ogs_sbi_self()->nf_state_registered =
79
- (ogs_fsm_handler_t)udm_nf_state_registered;
80
+ nf_instance = ogs_sbi_self()->nrf_instance;
81
+ if (nf_instance) {
82
+ ogs_sbi_client_t *client = NULL;
83
+
84
+ /* Client callback is only used when NF sends to NRF */
85
+ client = nf_instance->client;
86
+ ogs_assert(client);
87
+ client->cb = client_cb;
88
+
89
+ /* NFRegister is sent and the response is received
90
+ * by the above client callback. */
91
+ ogs_sbi_nf_fsm_init(nf_instance);
92
+ }
93
94
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
95
return OGS_ERROR;
96
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/sbi-path.h
Changed
9
1
2
#ifndef UDM_SBI_PATH_H
3
#define UDM_SBI_PATH_H
4
5
-#include "nnrf-build.h"
6
#include "nudr-build.h"
7
8
#ifdef __cplusplus
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/udm-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/udm-sm.c
Changed
177
1
2
3
ogs_assert(s);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
break;
9
10
case OGS_FSM_EXIT_SIG:
11
break;
12
13
- case UDM_EVT_SBI_SERVER:
14
- request = e->sbi.request;
15
+ case OGS_EVENT_SBI_SERVER:
16
+ request = e->h.sbi.request;
17
ogs_assert(request);
18
- stream = e->sbi.data;
19
+ stream = e->h.sbi.data;
20
ogs_assert(stream);
21
22
rv = ogs_sbi_parse_request(&message, request);
23
24
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
25
SWITCH(message.h.method)
26
CASE(OGS_SBI_HTTP_METHOD_POST)
27
- udm_nnrf_handle_nf_status_notify(stream, &message);
28
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
29
break;
30
31
DEFAULT
32
33
ogs_assert(OGS_FSM_STATE(&udm_ue->sm));
34
35
e->udm_ue = udm_ue;
36
- e->sbi.message = &message;
37
+ e->h.sbi.message = &message;
38
ogs_fsm_dispatch(&udm_ue->sm, e);
39
if (OGS_FSM_CHECK(&udm_ue->sm, udm_ue_state_exception)) {
40
ogs_error("%s State machine exception", udm_ue->suci);
41
42
ogs_sbi_message_free(&message);
43
break;
44
45
- case UDM_EVT_SBI_CLIENT:
46
+ case OGS_EVENT_SBI_CLIENT:
47
ogs_assert(e);
48
49
- response = e->sbi.response;
50
+ response = e->h.sbi.response;
51
ogs_assert(response);
52
rv = ogs_sbi_parse_response(&message, response);
53
if (rv != OGS_OK) {
54
55
56
SWITCH(message.h.resource.component0)
57
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
58
- nf_instance = e->sbi.data;
59
+ nf_instance = e->h.sbi.data;
60
ogs_assert(nf_instance);
61
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
62
63
- e->sbi.message = &message;
64
+ e->h.sbi.message = &message;
65
ogs_fsm_dispatch(&nf_instance->sm, e);
66
break;
67
68
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
69
- subscription = e->sbi.data;
70
+ subscription = e->h.sbi.data;
71
ogs_assert(subscription);
72
73
SWITCH(message.h.method)
74
CASE(OGS_SBI_HTTP_METHOD_POST)
75
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
76
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
77
- udm_nnrf_handle_nf_status_subscribe(
78
+ ogs_nnrf_handle_nf_status_subscribe(
79
subscription, &message);
80
} else {
81
ogs_error("%s HTTP response error %d",
82
83
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
84
SWITCH(message.h.resource.component0)
85
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
86
- sbi_xact = e->sbi.data;
87
+ sbi_xact = e->h.sbi.data;
88
ogs_assert(sbi_xact);
89
90
SWITCH(message.h.method)
91
92
CASE(OGS_SBI_SERVICE_NAME_NUDR_DR)
93
SWITCH(message.h.resource.component0)
94
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTION_DATA)
95
- sbi_xact = e->sbi.data;
96
+ sbi_xact = e->h.sbi.data;
97
ogs_assert(sbi_xact);
98
99
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
100
101
udm_ue = (udm_ue_t *)sbi_xact->sbi_object;
102
ogs_assert(udm_ue);
103
104
- e->sbi.data = sbi_xact->assoc_stream;
105
+ e->h.sbi.data = sbi_xact->assoc_stream;
106
107
ogs_sbi_xact_remove(sbi_xact);
108
109
110
}
111
112
e->udm_ue = udm_ue;
113
- e->sbi.message = &message;
114
+ e->h.sbi.message = &message;
115
116
ogs_fsm_dispatch(&udm_ue->sm, e);
117
if (OGS_FSM_CHECK(&udm_ue->sm, udm_ue_state_exception)) {
118
119
ogs_sbi_response_free(response);
120
break;
121
122
- case UDM_EVT_SBI_TIMER:
123
+ case OGS_EVENT_SBI_TIMER:
124
ogs_assert(e);
125
126
- switch(e->timer_id) {
127
- case UDM_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
128
- case UDM_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
129
- case UDM_TIMER_NF_INSTANCE_NO_HEARTBEAT:
130
- case UDM_TIMER_NF_INSTANCE_VALIDITY:
131
- nf_instance = e->sbi.data;
132
+ switch(e->h.timer_id) {
133
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
134
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
135
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
136
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
137
+ nf_instance = e->h.sbi.data;
138
ogs_assert(nf_instance);
139
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
140
141
ogs_fsm_dispatch(&nf_instance->sm, e);
142
- if (OGS_FSM_CHECK(&nf_instance->sm, udm_nf_state_exception))
143
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
144
ogs_error("%s:%s State machine exception %d",
145
OpenAPI_nf_type_ToString(nf_instance->nf_type),
146
- nf_instance->id, e->timer_id);
147
+ nf_instance->id, e->h.timer_id);
148
break;
149
150
- case UDM_TIMER_SUBSCRIPTION_VALIDITY:
151
- subscription = e->sbi.data;
152
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
153
+ subscription = e->h.sbi.data;
154
ogs_assert(subscription);
155
156
ogs_assert(ogs_sbi_self()->nf_instance);
157
158
ogs_sbi_subscription_remove(subscription);
159
break;
160
161
- case UDM_TIMER_SBI_CLIENT_WAIT:
162
- sbi_xact = e->sbi.data;
163
+ case OGS_TIMER_SBI_CLIENT_WAIT:
164
+ sbi_xact = e->h.sbi.data;
165
ogs_assert(sbi_xact);
166
167
stream = sbi_xact->assoc_stream;
168
169
170
default:
171
ogs_error("Unknown timer%s:%d",
172
- udm_timer_get_name(e->timer_id), e->timer_id);
173
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
174
}
175
break;
176
177
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/udm-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/udm-sm.h
Changed
18
1
2
void udm_state_final(ogs_fsm_t *s, udm_event_t *e);
3
void udm_state_operational(ogs_fsm_t *s, udm_event_t *e);
4
5
-void udm_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
6
-void udm_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
7
-
8
-void udm_nf_state_initial(ogs_fsm_t *s, udm_event_t *e);
9
-void udm_nf_state_final(ogs_fsm_t *s, udm_event_t *e);
10
-void udm_nf_state_will_register(ogs_fsm_t *s, udm_event_t *e);
11
-void udm_nf_state_registered(ogs_fsm_t *s, udm_event_t *e);
12
-void udm_nf_state_de_registered(ogs_fsm_t *s, udm_event_t *e);
13
-void udm_nf_state_exception(ogs_fsm_t *s, udm_event_t *e);
14
-
15
void udm_ue_state_initial(ogs_fsm_t *s, udm_event_t *e);
16
void udm_ue_state_final(ogs_fsm_t *s, udm_event_t *e);
17
void udm_ue_state_operational(ogs_fsm_t *s, udm_event_t *e);
18
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udm/ue-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udm/ue-sm.c
Changed
49
1
2
udm_ue = e->udm_ue;
3
ogs_assert(udm_ue);
4
5
- switch (e->id) {
6
+ switch (e->h.id) {
7
case OGS_FSM_ENTRY_SIG:
8
break;
9
10
case OGS_FSM_EXIT_SIG:
11
break;
12
13
- case UDM_EVT_SBI_SERVER:
14
- message = e->sbi.message;
15
+ case OGS_EVENT_SBI_SERVER:
16
+ message = e->h.sbi.message;
17
ogs_assert(message);
18
- stream = e->sbi.data;
19
+ stream = e->h.sbi.data;
20
ogs_assert(stream);
21
22
SWITCH(message->h.service.name)
23
24
END
25
break;
26
27
- case UDM_EVT_SBI_CLIENT:
28
- message = e->sbi.message;
29
+ case OGS_EVENT_SBI_CLIENT:
30
+ message = e->h.sbi.message;
31
ogs_assert(message);
32
33
udm_ue = e->udm_ue;
34
ogs_assert(udm_ue);
35
- stream = e->sbi.data;
36
+ stream = e->h.sbi.data;
37
ogs_assert(stream);
38
39
SWITCH(message->h.service.name)
40
41
udm_ue = e->udm_ue;
42
ogs_assert(udm_ue);
43
44
- switch (e->id) {
45
+ switch (e->h.id) {
46
case OGS_FSM_ENTRY_SIG:
47
break;
48
49
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/context.c
Changed
8
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-sbi.h"
10
11
#include "udr-sm.h"
12
-#include "timer.h"
13
14
#ifdef __cplusplus
15
extern "C" {
16
17
typedef struct udr_context_s {
18
} udr_context_t;
19
20
-#define UDR_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
21
- do { \
22
- ogs_assert(_nFInstance); \
23
- if ((_nFInstance)->reference_count == 1) { \
24
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
25
- udr_nf_fsm_fini((_nFInstance)); \
26
- ogs_sbi_nf_instance_remove(_nFInstance); \
27
- } else { \
28
- /* There is an assocation with other context */ \
29
- ogs_info("%s:%d (%s) NF suspended", \
30
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
31
- OGS_FSM_TRAN(&_nFInstance->sm, udr_nf_state_de_registered); \
32
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
33
- } \
34
- } while(0)
35
-
36
void udr_context_init(void);
37
void udr_context_final(void);
38
udr_context_t *udr_self(void);
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/event.c
Changed
86
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "event.h"
12
-#include "context.h"
13
14
-static OGS_POOL(pool, udr_event_t);
15
-
16
-void udr_event_init(void)
17
-{
18
- ogs_pool_init(&pool, ogs_app()->pool.event);
19
-}
20
-
21
-void udr_event_final(void)
22
-{
23
- ogs_pool_final(&pool);
24
-}
25
-
26
-udr_event_t *udr_event_new(udr_event_e id)
27
+udr_event_t *udr_event_new(int id)
28
{
29
udr_event_t *e = NULL;
30
31
- ogs_pool_alloc(&pool, &e);
32
+ e = ogs_event_size(id, sizeof(udr_event_t));
33
ogs_assert(e);
34
- memset(e, 0, sizeof(*e));
35
36
- e->id = id;
37
+ e->h.id = id;
38
39
return e;
40
}
41
42
-void udr_event_free(udr_event_t *e)
43
-{
44
- ogs_assert(e);
45
- ogs_pool_free(&pool, e);
46
-}
47
-
48
const char *udr_event_get_name(udr_event_t *e)
49
{
50
- if (e == NULL)
51
+ if (e == NULL) {
52
return OGS_FSM_NAME_INIT_SIG;
53
+ }
54
55
- switch (e->id) {
56
- case OGS_FSM_ENTRY_SIG:
57
+ switch (e->h.id) {
58
+ case OGS_FSM_ENTRY_SIG:
59
return OGS_FSM_NAME_ENTRY_SIG;
60
- case OGS_FSM_EXIT_SIG:
61
+ case OGS_FSM_EXIT_SIG:
62
return OGS_FSM_NAME_EXIT_SIG;
63
64
- case UDR_EVT_SBI_SERVER:
65
- return "UDR_EVT_SBI_SERVER";
66
- case UDR_EVT_SBI_CLIENT:
67
- return "UDR_EVT_SBI_CLIENT";
68
- case UDR_EVT_SBI_TIMER:
69
- return "UDR_EVT_SBI_TIMER";
70
+ case OGS_EVENT_SBI_SERVER:
71
+ return OGS_EVENT_NAME_SBI_SERVER;
72
+ case OGS_EVENT_SBI_CLIENT:
73
+ return OGS_EVENT_NAME_SBI_CLIENT;
74
+ case OGS_EVENT_SBI_TIMER:
75
+ return OGS_EVENT_NAME_SBI_TIMER;
76
77
- default:
78
- break;
79
+ default:
80
+ break;
81
}
82
83
+ ogs_error("Unknown Event%d", e->h.id);
84
return "UNKNOWN_EVENT";
85
}
86
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/event.h
Changed
61
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef UDR_EVENT_H
10
#define UDR_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
20
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
21
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
22
-typedef struct ogs_sbi_nf_instance_s ogs_sbi_nf_instance_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
-
25
-typedef enum {
26
- UDR_EVT_BASE = OGS_FSM_USER_SIG,
27
-
28
- UDR_EVT_SBI_SERVER,
29
- UDR_EVT_SBI_CLIENT,
30
- UDR_EVT_SBI_TIMER,
31
-
32
- UDR_EVT_TOP,
33
-
34
-} udr_event_e;
35
-
36
typedef struct udr_event_s {
37
- int id;
38
- int timer_id;
39
-
40
- struct {
41
- ogs_sbi_request_t *request;
42
- ogs_sbi_response_t *response;
43
- void *data;
44
-
45
- ogs_sbi_message_t *message;
46
- } sbi;
47
-
48
- ogs_timer_t *timer;
49
+ ogs_event_t h;
50
} udr_event_t;
51
52
-void udr_event_init(void);
53
-void udr_event_final(void);
54
-
55
-udr_event_t *udr_event_new(udr_event_e id);
56
-void udr_event_free(udr_event_t *e);
57
+udr_event_t *udr_event_new(int id);
58
59
const char *udr_event_get_name(udr_event_t *e);
60
61
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/init.c
Changed
57
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
udr_context_init();
12
- udr_event_init();
13
14
rv = ogs_sbi_context_parse_config("udr", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- udr_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
27
udr_context_final();
28
ogs_sbi_context_final();
29
-
30
- udr_event_final(); /* Destroy event */
31
}
32
33
static void udr_main(void *data)
34
35
ogs_fsm_t udr_sm;
36
int rv;
37
38
- ogs_fsm_create(&udr_sm, udr_state_initial, udr_state_final);
39
- ogs_fsm_init(&udr_sm, 0);
40
+ ogs_fsm_init(&udr_sm, udr_state_initial, udr_state_final, 0);
41
42
for ( ;; ) {
43
ogs_pollset_poll(ogs_app()->pollset,
44
45
46
ogs_assert(e);
47
ogs_fsm_dispatch(&udr_sm, e);
48
- udr_event_free(e);
49
+ ogs_event_free(e);
50
}
51
}
52
done:
53
54
ogs_fsm_fini(&udr_sm, 0);
55
- ogs_fsm_delete(&udr_sm);
56
}
57
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/meson.build
Changed
19
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libudr_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
-
13
- nnrf-build.c
14
- nnrf-handler.c
15
- nf-sm.c
16
17
nudr-handler.c
18
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/nudr-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/nudr-handler.c
Changed
9
1
2
*/
3
4
#include "sbi-path.h"
5
-#include "nnrf-handler.h"
6
#include "nudr-handler.h"
7
8
bool udr_nudr_dr_handle_subscription_authentication(
9
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/sbi-path.c
Changed
92
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = udr_event_new(UDR_EVT_SBI_SERVER);
13
+ e = udr_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- udr_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = udr_event_new(UDR_EVT_SBI_CLIENT);
35
+ e = udr_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- udr_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
}
53
54
/* Initialize NRF NF Instance */
55
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
56
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
57
- ogs_sbi_client_t *client = NULL;
58
-
59
- /* Client callback is only used when NF sends to NRF */
60
- client = nf_instance->client;
61
- ogs_assert(client);
62
- client->cb = client_cb;
63
-
64
- /* NFRegister is sent and the response is received
65
- * by the above client callback. */
66
- udr_nf_fsm_init(nf_instance);
67
- }
68
+ nf_instance = ogs_sbi_self()->nrf_instance;
69
+ if (nf_instance) {
70
+ ogs_sbi_client_t *client = NULL;
71
+
72
+ /* Client callback is only used when NF sends to NRF */
73
+ client = nf_instance->client;
74
+ ogs_assert(client);
75
+ client->cb = client_cb;
76
+
77
+ /* NFRegister is sent and the response is received
78
+ * by the above client callback. */
79
+ ogs_sbi_nf_fsm_init(nf_instance);
80
}
81
82
- /* Timer expiration handler of client wait timer */
83
- ogs_sbi_self()->client_wait_expire = udr_timer_sbi_client_wait_expire;
84
-
85
- /* NF register state in NF state machine */
86
- ogs_sbi_self()->nf_state_registered =
87
- (ogs_fsm_handler_t)udr_nf_state_registered;
88
-
89
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
90
return OGS_ERROR;
91
92
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/sbi-path.h
Changed
17
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef UDR_SBI_PATH_H
10
#define UDR_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
+#include "context.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/udr-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/udr-sm.c
Changed
135
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
*/
10
11
#include "sbi-path.h"
12
-#include "nnrf-handler.h"
13
#include "nudr-handler.h"
14
15
void udr_state_initial(ogs_fsm_t *s, udr_event_t *e)
16
17
18
ogs_assert(s);
19
20
- switch (e->id) {
21
+ switch (e->h.id) {
22
case OGS_FSM_ENTRY_SIG:
23
break;
24
25
case OGS_FSM_EXIT_SIG:
26
break;
27
28
- case UDR_EVT_SBI_SERVER:
29
- request = e->sbi.request;
30
+ case OGS_EVENT_SBI_SERVER:
31
+ request = e->h.sbi.request;
32
ogs_assert(request);
33
- stream = e->sbi.data;
34
+ stream = e->h.sbi.data;
35
ogs_assert(stream);
36
37
rv = ogs_sbi_parse_request(&message, request);
38
39
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
40
SWITCH(message.h.method)
41
CASE(OGS_SBI_HTTP_METHOD_POST)
42
- udr_nnrf_handle_nf_status_notify(stream, &message);
43
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
44
break;
45
46
DEFAULT
47
48
ogs_sbi_message_free(&message);
49
break;
50
51
- case UDR_EVT_SBI_CLIENT:
52
+ case OGS_EVENT_SBI_CLIENT:
53
ogs_assert(e);
54
55
- response = e->sbi.response;
56
+ response = e->h.sbi.response;
57
ogs_assert(response);
58
rv = ogs_sbi_parse_response(&message, response);
59
if (rv != OGS_OK) {
60
61
62
SWITCH(message.h.resource.component0)
63
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
64
- nf_instance = e->sbi.data;
65
+ nf_instance = e->h.sbi.data;
66
ogs_assert(nf_instance);
67
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
68
69
- e->sbi.message = &message;
70
+ e->h.sbi.message = &message;
71
ogs_fsm_dispatch(&nf_instance->sm, e);
72
break;
73
74
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
75
- subscription = e->sbi.data;
76
+ subscription = e->h.sbi.data;
77
ogs_assert(subscription);
78
79
SWITCH(message.h.method)
80
CASE(OGS_SBI_HTTP_METHOD_POST)
81
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
82
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
83
- udr_nnrf_handle_nf_status_subscribe(
84
+ ogs_nnrf_handle_nf_status_subscribe(
85
subscription, &message);
86
} else {
87
ogs_error("%s HTTP response error %d",
88
89
ogs_sbi_response_free(response);
90
break;
91
92
- case UDR_EVT_SBI_TIMER:
93
+ case OGS_EVENT_SBI_TIMER:
94
ogs_assert(e);
95
96
- switch(e->timer_id) {
97
- case UDR_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
98
- case UDR_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
99
- case UDR_TIMER_NF_INSTANCE_NO_HEARTBEAT:
100
- case UDR_TIMER_NF_INSTANCE_VALIDITY:
101
- nf_instance = e->sbi.data;
102
+ switch(e->h.timer_id) {
103
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
104
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
105
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
106
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
107
+ nf_instance = e->h.sbi.data;
108
ogs_assert(nf_instance);
109
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
110
111
ogs_fsm_dispatch(&nf_instance->sm, e);
112
- if (OGS_FSM_CHECK(&nf_instance->sm, udr_nf_state_exception))
113
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
114
ogs_error("%s State machine exception %d",
115
- nf_instance->id, e->timer_id);
116
+ nf_instance->id, e->h.timer_id);
117
break;
118
119
- case UDR_TIMER_SUBSCRIPTION_VALIDITY:
120
- subscription = e->sbi.data;
121
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
122
+ subscription = e->h.sbi.data;
123
ogs_assert(subscription);
124
125
ogs_assert(ogs_sbi_self()->nf_instance);
126
127
128
default:
129
ogs_error("Unknown timer%s:%d",
130
- udr_timer_get_name(e->timer_id), e->timer_id);
131
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
132
}
133
break;
134
135
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/udr/udr-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/udr/udr-sm.h
Changed
8
1
2
/*
3
- * Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/upf/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/upf/event.h
Changed
31
1
2
#ifndef UPF_EVENT_H
3
#define UPF_EVENT_H
4
5
-#include "ogs-core.h"
6
+#include "ogs-proto.h"
7
8
#ifdef __cplusplus
9
extern "C" {
10
11
typedef struct upf_sess_s upf_sess_t;
12
13
typedef enum {
14
- UPF_EVT_BASE = OGS_FSM_USER_SIG,
15
+ UPF_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
16
17
UPF_EVT_N4_MESSAGE,
18
UPF_EVT_N4_TIMER,
19
20
21
typedef struct upf_event_s {
22
int id;
23
- ogs_pkbuf_t *pkbuf;
24
int timer_id;
25
26
+ ogs_pkbuf_t *pkbuf;
27
+
28
ogs_pfcp_node_t *pfcp_node;
29
ogs_pfcp_xact_t *pfcp_xact;
30
ogs_pfcp_message_t *pfcp_message;
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/upf/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/upf/init.c
Changed
17
1
2
ogs_fsm_t upf_sm;
3
int rv;
4
5
- ogs_fsm_create(&upf_sm, upf_state_initial, upf_state_final);
6
- ogs_fsm_init(&upf_sm, 0);
7
+ ogs_fsm_init(&upf_sm, upf_state_initial, upf_state_final, 0);
8
9
for ( ;; ) {
10
ogs_pollset_poll(ogs_app()->pollset,
11
12
done:
13
14
ogs_fsm_fini(&upf_sm, 0);
15
- ogs_fsm_delete(&upf_sm);
16
}
17
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/src/upf/pfcp-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/src/upf/pfcp-path.c
Changed
19
1
2
ogs_assert(node->t_association);
3
}
4
5
- ogs_fsm_create(&node->sm, upf_pfcp_state_initial, upf_pfcp_state_final);
6
- ogs_fsm_init(&node->sm, &e);
7
+ ogs_fsm_init(&node->sm, upf_pfcp_state_initial, upf_pfcp_state_final, &e);
8
}
9
10
static void pfcp_node_fsm_fini(ogs_pfcp_node_t *node)
11
12
e.pfcp_node = node;
13
14
ogs_fsm_fini(&node->sm, &e);
15
- ogs_fsm_delete(&node->sm);
16
17
if (node->t_association)
18
ogs_timer_delete(node->t_association);
19
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/af-sm.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/af-sm.c
Changed
164
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
ogs_assert(s);
11
12
- switch (e->id) {
13
+ switch (e->h.id) {
14
case OGS_FSM_ENTRY_SIG:
15
break;
16
17
case OGS_FSM_EXIT_SIG:
18
break;
19
20
- case AF_EVT_SBI_SERVER:
21
- request = e->sbi.request;
22
+ case OGS_EVENT_SBI_SERVER:
23
+ request = e->h.sbi.request;
24
ogs_assert(request);
25
- stream = e->sbi.data;
26
+ stream = e->h.sbi.data;
27
ogs_assert(stream);
28
29
rv = ogs_sbi_parse_request(&message, request);
30
31
CASE(OGS_SBI_RESOURCE_NAME_NF_STATUS_NOTIFY)
32
SWITCH(message.h.method)
33
CASE(OGS_SBI_HTTP_METHOD_POST)
34
- af_nnrf_handle_nf_status_notify(stream, &message);
35
+ ogs_nnrf_handle_nf_status_notify(stream, &message);
36
break;
37
38
DEFAULT
39
40
ogs_sbi_message_free(&message);
41
break;
42
43
- case AF_EVT_SBI_CLIENT:
44
+ case OGS_EVENT_SBI_CLIENT:
45
ogs_assert(e);
46
47
- response = e->sbi.response;
48
+ response = e->h.sbi.response;
49
ogs_assert(response);
50
rv = ogs_sbi_parse_response(&message, response);
51
if (rv != OGS_OK) {
52
53
54
SWITCH(message.h.resource.component0)
55
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
56
- nf_instance = e->sbi.data;
57
+ nf_instance = e->h.sbi.data;
58
ogs_assert(nf_instance);
59
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
60
61
- e->sbi.message = &message;
62
+ e->h.sbi.message = &message;
63
ogs_fsm_dispatch(&nf_instance->sm, e);
64
break;
65
66
CASE(OGS_SBI_RESOURCE_NAME_SUBSCRIPTIONS)
67
- subscription = e->sbi.data;
68
+ subscription = e->h.sbi.data;
69
ogs_assert(subscription);
70
71
SWITCH(message.h.method)
72
CASE(OGS_SBI_HTTP_METHOD_POST)
73
if (message.res_status == OGS_SBI_HTTP_STATUS_CREATED ||
74
message.res_status == OGS_SBI_HTTP_STATUS_OK) {
75
- af_nnrf_handle_nf_status_subscribe(
76
+ ogs_nnrf_handle_nf_status_subscribe(
77
subscription, &message);
78
} else {
79
ogs_error("HTTP response error : %d",
80
81
CASE(OGS_SBI_SERVICE_NAME_NNRF_DISC)
82
SWITCH(message.h.resource.component0)
83
CASE(OGS_SBI_RESOURCE_NAME_NF_INSTANCES)
84
- sbi_xact = e->sbi.data;
85
+ sbi_xact = e->h.sbi.data;
86
ogs_assert(sbi_xact);
87
88
SWITCH(message.h.method)
89
90
CASE(OGS_SBI_SERVICE_NAME_NBSF_MANAGEMENT)
91
SWITCH(message.h.resource.component0)
92
CASE(OGS_SBI_RESOURCE_NAME_PCF_BINDINGS)
93
- sbi_xact = e->sbi.data;
94
+ sbi_xact = e->h.sbi.data;
95
ogs_assert(sbi_xact);
96
97
sbi_xact = ogs_sbi_xact_cycle(sbi_xact);
98
99
CASE(OGS_SBI_SERVICE_NAME_NPCF_POLICYAUTHORIZATION)
100
SWITCH(message.h.resource.component0)
101
CASE(OGS_SBI_RESOURCE_NAME_APP_SESSIONS)
102
- sess = e->sbi.data;
103
+ sess = e->h.sbi.data;
104
ogs_assert(sess);
105
106
if (message.h.resource.component1) {
107
108
ogs_sbi_response_free(response);
109
break;
110
111
- case AF_EVT_SBI_TIMER:
112
+ case OGS_EVENT_SBI_TIMER:
113
ogs_assert(e);
114
115
- switch(e->timer_id) {
116
- case AF_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
117
- case AF_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
118
- case AF_TIMER_NF_INSTANCE_NO_HEARTBEAT:
119
- case AF_TIMER_NF_INSTANCE_VALIDITY:
120
- nf_instance = e->sbi.data;
121
+ switch(e->h.timer_id) {
122
+ case OGS_TIMER_NF_INSTANCE_REGISTRATION_INTERVAL:
123
+ case OGS_TIMER_NF_INSTANCE_HEARTBEAT_INTERVAL:
124
+ case OGS_TIMER_NF_INSTANCE_NO_HEARTBEAT:
125
+ case OGS_TIMER_NF_INSTANCE_VALIDITY:
126
+ nf_instance = e->h.sbi.data;
127
ogs_assert(nf_instance);
128
ogs_assert(OGS_FSM_STATE(&nf_instance->sm));
129
130
ogs_fsm_dispatch(&nf_instance->sm, e);
131
- if (OGS_FSM_CHECK(&nf_instance->sm, af_nf_state_exception))
132
- ogs_error("State machine exception %d", e->timer_id);
133
+ if (OGS_FSM_CHECK(&nf_instance->sm, ogs_sbi_nf_state_exception))
134
+ ogs_error("State machine exception %d", e->h.timer_id);
135
break;
136
137
- case AF_TIMER_SUBSCRIPTION_VALIDITY:
138
- subscription = e->sbi.data;
139
+ case OGS_TIMER_SUBSCRIPTION_VALIDITY:
140
+ subscription = e->h.sbi.data;
141
ogs_assert(subscription);
142
143
ogs_assert(ogs_sbi_self()->nf_instance);
144
145
ogs_sbi_subscription_remove(subscription);
146
break;
147
148
- case AF_TIMER_SBI_CLIENT_WAIT:
149
- sbi_xact = e->sbi.data;
150
+ case OGS_TIMER_SBI_CLIENT_WAIT:
151
+ sbi_xact = e->h.sbi.data;
152
ogs_assert(sbi_xact);
153
154
stream = sbi_xact->assoc_stream;
155
156
157
default:
158
ogs_error("Unknown timer%s:%d",
159
- af_timer_get_name(e->timer_id), e->timer_id);
160
+ ogs_timer_get_name(e->h.timer_id), e->h.timer_id);
161
}
162
break;
163
164
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/af-sm.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/af-sm.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
void af_state_operational(ogs_fsm_t *s, af_event_t *e);
10
void af_state_exception(ogs_fsm_t *s, af_event_t *e);
11
12
-void af_nf_fsm_init(ogs_sbi_nf_instance_t *nf_instance);
13
-void af_nf_fsm_fini(ogs_sbi_nf_instance_t *nf_instance);
14
-
15
-void af_nf_state_initial(ogs_fsm_t *s, af_event_t *e);
16
-void af_nf_state_final(ogs_fsm_t *s, af_event_t *e);
17
-void af_nf_state_will_register(ogs_fsm_t *s, af_event_t *e);
18
-void af_nf_state_registered(ogs_fsm_t *s, af_event_t *e);
19
-void af_nf_state_de_registered(ogs_fsm_t *s, af_event_t *e);
20
-void af_nf_state_exception(ogs_fsm_t *s, af_event_t *e);
21
-
22
#define af_sm_debug(__pe) \
23
ogs_debug("%s(): %s", __func__, af_event_get_name(__pe))
24
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/context.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/context.c
Changed
8
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/context.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/context.h
Changed
39
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "ogs-app.h"
10
11
#include "event.h"
12
-#include "timer.h"
13
#include "local.h"
14
#include "af-sm.h"
15
16
17
ogs_list_t sess_list;
18
} af_context_t;
19
20
-#define AF_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \
21
- do { \
22
- ogs_assert(_nFInstance); \
23
- if ((_nFInstance)->reference_count == 1) { \
24
- ogs_info("%s (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \
25
- af_nf_fsm_fini((_nFInstance)); \
26
- ogs_sbi_nf_instance_remove(_nFInstance); \
27
- } else { \
28
- /* There is an assocation with other context */ \
29
- ogs_info("%s:%d (%s) NF suspended", \
30
- _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \
31
- OGS_FSM_TRAN(&_nFInstance->sm, af_nf_state_de_registered); \
32
- ogs_fsm_dispatch(&_nFInstance->sm, NULL); \
33
- } \
34
- } while(0)
35
-
36
typedef struct af_sess_s af_sess_t;
37
38
typedef struct af_sess_s {
39
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/event.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/event.c
Changed
83
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
10
#include "context.h"
11
12
-static OGS_POOL(pool, af_event_t);
13
-
14
-void af_event_init(void)
15
-{
16
- ogs_pool_init(&pool, ogs_app()->pool.event);
17
-}
18
-
19
-void af_event_final(void)
20
-{
21
- ogs_pool_final(&pool);
22
-}
23
-
24
-af_event_t *af_event_new(af_event_e id)
25
+af_event_t *af_event_new(int id)
26
{
27
af_event_t *e = NULL;
28
29
- ogs_pool_alloc(&pool, &e);
30
+ e = ogs_event_size(id, sizeof(af_event_t));
31
ogs_assert(e);
32
- memset(e, 0, sizeof(*e));
33
34
- e->id = id;
35
+ e->h.id = id;
36
37
return e;
38
}
39
40
-void af_event_free(af_event_t *e)
41
-{
42
- ogs_assert(e);
43
- ogs_pool_free(&pool, e);
44
-}
45
-
46
const char *af_event_get_name(af_event_t *e)
47
{
48
- if (e == NULL)
49
+ if (e == NULL) {
50
return OGS_FSM_NAME_INIT_SIG;
51
+ }
52
53
- switch (e->id) {
54
+ switch (e->h.id) {
55
case OGS_FSM_ENTRY_SIG:
56
return OGS_FSM_NAME_ENTRY_SIG;
57
case OGS_FSM_EXIT_SIG:
58
return OGS_FSM_NAME_EXIT_SIG;
59
60
- case AF_EVT_SBI_SERVER:
61
- return "AF_EVT_SBI_SERVER";
62
- case AF_EVT_SBI_CLIENT:
63
- return "AF_EVT_SBI_CLIENT";
64
- case AF_EVT_SBI_TIMER:
65
- return "AF_EVT_SBI_TIMER";
66
+ case OGS_EVENT_SBI_SERVER:
67
+ return OGS_EVENT_NAME_SBI_SERVER;
68
+ case OGS_EVENT_SBI_CLIENT:
69
+ return OGS_EVENT_NAME_SBI_CLIENT;
70
+ case OGS_EVENT_SBI_TIMER:
71
+ return OGS_EVENT_NAME_SBI_TIMER;
72
+
73
case AF_EVT_SBI_LOCAL:
74
return "AF_EVT_SBI_LOCAL";
75
76
77
break;
78
}
79
80
+ ogs_error("Unknown Event%d", e->h.id);
81
return "UNKNOWN_EVENT";
82
}
83
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/event.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/event.h
Changed
74
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AF_EVENT_H
10
#define AF_EVENT_H
11
12
-#include "ogs-core.h"
13
+#include "ogs-proto.h"
14
15
#ifdef __cplusplus
16
extern "C" {
17
#endif
18
19
typedef struct af_sess_s af_sess_t;
20
-typedef struct ogs_sbi_request_s ogs_sbi_request_t;
21
-typedef struct ogs_sbi_response_s ogs_sbi_response_t;
22
-typedef struct ogs_sbi_message_s ogs_sbi_message_t;
23
-typedef struct ogs_sbi_subscription_s ogs_sbi_subscription_t;
24
25
typedef enum {
26
- AF_EVT_BASE = OGS_FSM_USER_SIG,
27
+ AF_EVT_BASE = OGS_MAX_NUM_OF_PROTO_EVENT,
28
29
- AF_EVT_SBI_SERVER,
30
- AF_EVT_SBI_CLIENT,
31
- AF_EVT_SBI_TIMER,
32
AF_EVT_SBI_LOCAL,
33
34
AF_EVT_TOP,
35
36
} af_event_e;
37
38
typedef struct af_event_s {
39
- int id;
40
- ogs_pkbuf_t *pkbuf;
41
- int timer_id;
42
+ ogs_event_t h;
43
int local_id;
44
45
+ ogs_pkbuf_t *pkbuf;
46
+
47
struct {
48
OpenAPI_nf_type_e target_nf_type;
49
void *data;
50
ogs_sbi_request_t *(*build)(af_sess_t *sess, void *data);
51
} local;
52
53
- struct {
54
- ogs_sbi_request_t *request;
55
- ogs_sbi_response_t *response;
56
- void *data;
57
- int state;
58
-
59
- ogs_sbi_message_t *message;
60
- } sbi;
61
-
62
af_sess_t *sess;
63
} af_event_t;
64
65
-void af_event_init(void);
66
-void af_event_final(void);
67
-
68
-af_event_t *af_event_new(af_event_e id);
69
-void af_event_free(af_event_t *e);
70
+af_event_t *af_event_new(int id);
71
72
const char *af_event_get_name(af_event_t *e);
73
74
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/init.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/init.c
Changed
59
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_sbi_context_init();
10
11
af_context_init();
12
- af_event_init();
13
14
rv = ogs_sbi_context_parse_config("af", "nrf", "scp");
15
if (rv != OGS_OK) return rv;
16
17
18
/* Sending NF Instance De-registeration to NRF */
19
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance)
20
- af_nf_fsm_fini(nf_instance);
21
+ ogs_sbi_nf_fsm_fini(nf_instance);
22
23
/* Starting holding timer */
24
t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL);
25
26
af_sbi_close();
27
28
af_context_final();
29
-
30
ogs_sbi_context_final();
31
-
32
- af_event_final(); /* Destroy event */
33
}
34
35
static void af_main(void *data)
36
37
ogs_fsm_t af_sm;
38
int rv;
39
40
- ogs_fsm_create(&af_sm, af_state_initial, af_state_final);
41
- ogs_fsm_init(&af_sm, 0);
42
+ ogs_fsm_init(&af_sm, af_state_initial, af_state_final, 0);
43
44
for ( ;; ) {
45
ogs_pollset_poll(ogs_app()->pollset,
46
47
48
ogs_assert(e);
49
ogs_fsm_dispatch(&af_sm, e);
50
- af_event_free(e);
51
+ ogs_event_free(e);
52
}
53
}
54
done:
55
56
ogs_fsm_fini(&af_sm, 0);
57
- ogs_fsm_delete(&af_sm);
58
}
59
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/init.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/init.h
Changed
8
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/local.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/local.c
Changed
30
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
rv = ogs_queue_push(ogs_app()->queue, e);
10
if (rv != OGS_OK) {
11
ogs_error("ogs_queue_push() failed %d in %s",
12
- (int)rv, af_timer_get_name(e->timer_id));
13
- af_event_free(e);
14
+ (int)rv, af_local_get_name(e->local_id));
15
+ ogs_event_free(e);
16
} else {
17
ogs_pollset_notify(ogs_app()->pollset);
18
}
19
20
rv = ogs_queue_push(ogs_app()->queue, e);
21
if (rv != OGS_OK) {
22
ogs_error("ogs_queue_push() failed %d in %s",
23
- (int)rv, af_timer_get_name(e->timer_id));
24
- af_event_free(e);
25
+ (int)rv, af_local_get_name(e->local_id));
26
+ ogs_event_free(e);
27
} else {
28
ogs_pollset_notify(ogs_app()->pollset);
29
}
30
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/local.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/local.h
Changed
8
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/meson.build -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/meson.build
Changed
20
1
2
-# Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
3
+# Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
4
5
# This file is part of Open5GS.
6
7
8
libaf_sources = files('''
9
context.c
10
event.c
11
- timer.c
12
local.c
13
14
- nnrf-build.c
15
nnrf-handler.c
16
- nf-sm.c
17
18
nbsf-build.c
19
nbsf-handler.c
20
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nbsf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/nbsf-handler.c
Changed
31
1
2
OpenAPI_pcf_binding_t *PcfBinding = NULL;
3
OpenAPI_list_t *PcfIpEndPointList = NULL;
4
OpenAPI_lnode_t *node = NULL;
5
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
6
- char fqdnOGS_MAX_FQDN_LEN;
7
-#endif
8
9
ogs_assert(sess);
10
ogs_assert(recvmsg);
11
12
}
13
14
if (PcfBinding->pcf_fqdn) {
15
-#if SBI_FQDN_WITH_ONE_OCTET_LENGTH
16
- ogs_assert(0 < ogs_fqdn_parse(fqdn, PcfBinding->pcf_fqdn,
17
- ogs_min(strlen(PcfBinding->pcf_fqdn), OGS_MAX_FQDN_LEN)));
18
- if (sess->pcf.fqdn)
19
- ogs_free(sess->pcf.fqdn);
20
- sess->pcf.fqdn = ogs_strdup(fqdn);
21
- ogs_assert(sess->pcf.fqdn);
22
-#else
23
if (sess->pcf.fqdn)
24
ogs_free(sess->pcf.fqdn);
25
sess->pcf.fqdn = ogs_strdup(PcfBinding->pcf_fqdn);
26
ogs_assert(sess->pcf.fqdn);
27
-#endif
28
}
29
30
PcfIpEndPointList = PcfBinding->pcf_ip_end_points;
31
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nnrf-handler.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/nnrf-handler.c
Changed
323
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#include "sbi-path.h"
10
#include "nnrf-handler.h"
11
12
-void af_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg)
14
-{
15
- OpenAPI_nf_profile_t *NFProfile = NULL;
16
- ogs_sbi_client_t *client = NULL;
17
-
18
- ogs_assert(recvmsg);
19
- ogs_assert(nf_instance);
20
- client = nf_instance->client;
21
- ogs_assert(client);
22
-
23
- NFProfile = recvmsg->NFProfile;
24
- if (!NFProfile) {
25
- ogs_error("No NFProfile");
26
- return;
27
- }
28
-
29
- /* TIME : Update heartbeat from NRF */
30
- if (NFProfile->nf_profile_changes_ind == true) {
31
- if (NFProfile->heart_beat_timer)
32
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
33
- } else {
34
- nf_instance->time.heartbeat_interval = NFProfile->heart_beat_timer;
35
- }
36
-}
37
-
38
-void af_nnrf_handle_nf_status_subscribe(
39
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg)
40
-{
41
- OpenAPI_subscription_data_t *SubscriptionData = NULL;
42
- ogs_sbi_client_t *client = NULL;
43
-
44
- ogs_assert(recvmsg);
45
- ogs_assert(subscription);
46
- client = subscription->client;
47
- ogs_assert(client);
48
-
49
- SubscriptionData = recvmsg->SubscriptionData;
50
- if (!SubscriptionData) {
51
- ogs_error("No SubscriptionData");
52
- return;
53
- }
54
-
55
- if (!SubscriptionData->subscription_id) {
56
- ogs_error("No SubscriptionId");
57
- return;
58
- }
59
- ogs_sbi_subscription_set_id(
60
- subscription, SubscriptionData->subscription_id);
61
-
62
- if (SubscriptionData->validity_time) {
63
-#define VALIDITY_MINIMUM (10LL * OGS_USEC_PER_SEC) /* 10 seconds */
64
- ogs_time_t time, duration;
65
- if (ogs_sbi_time_from_string(
66
- &time, SubscriptionData->validity_time) == true) {
67
- duration = time - ogs_time_now();
68
- if (duration < VALIDITY_MINIMUM) {
69
- duration = VALIDITY_MINIMUM;
70
- ogs_warn("%s Forced to %lld seconds", subscription->id,
71
- (long long)ogs_time_sec(VALIDITY_MINIMUM));
72
- }
73
- subscription->t_validity = ogs_timer_add(ogs_app()->timer_mgr,
74
- af_timer_subscription_validity, subscription);
75
- ogs_assert(subscription->t_validity);
76
- ogs_timer_start(subscription->t_validity, duration);
77
- } else {
78
- ogs_error("Cannot parse validitiyTime %s",
79
- SubscriptionData->validity_time);
80
- }
81
- }
82
-}
83
-
84
-bool af_nnrf_handle_nf_status_notify(
85
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg)
86
-{
87
- int rv;
88
- bool handled;
89
-
90
- ogs_sbi_response_t *response = NULL;
91
- OpenAPI_notification_data_t *NotificationData = NULL;
92
- ogs_sbi_nf_instance_t *nf_instance = NULL;
93
-
94
- ogs_sbi_message_t message;
95
- ogs_sbi_header_t header;
96
-
97
- ogs_assert(stream);
98
- ogs_assert(recvmsg);
99
-
100
- NotificationData = recvmsg->NotificationData;
101
- if (!NotificationData) {
102
- ogs_error("No NotificationData");
103
- ogs_assert(true ==
104
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
105
- recvmsg, "No NotificationData", NULL));
106
- return false;
107
- }
108
-
109
- if (!NotificationData->nf_instance_uri) {
110
- ogs_error("No nfInstanceUri");
111
- ogs_assert(true ==
112
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
113
- recvmsg, "No nfInstanceUri", NULL));
114
- return false;
115
- }
116
-
117
- memset(&header, 0, sizeof(header));
118
- header.uri = NotificationData->nf_instance_uri;
119
-
120
- rv = ogs_sbi_parse_header(&message, &header);
121
- if (rv != OGS_OK) {
122
- ogs_error("Cannot parse nfInstanceUri %s", header.uri);
123
- ogs_assert(true ==
124
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
125
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
126
- return false;
127
- }
128
-
129
- if (!message.h.resource.component1) {
130
- ogs_error("No nfInstanceId %s", header.uri);
131
- ogs_assert(true ==
132
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
133
- recvmsg, "Cannot parse nfInstanceUri", header.uri));
134
- ogs_sbi_header_free(&header);
135
- return false;
136
- }
137
-
138
- if (NF_INSTANCE_IS_SELF(message.h.resource.component1)) {
139
- ogs_warn("%s The notification is not allowed",
140
- message.h.resource.component1);
141
- ogs_assert(true ==
142
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_FORBIDDEN,
143
- recvmsg, "The notification is not allowed",
144
- message.h.resource.component1));
145
- ogs_sbi_header_free(&header);
146
- return false;
147
- }
148
-
149
- if (NotificationData->event ==
150
- OpenAPI_notification_event_type_NF_REGISTERED) {
151
-
152
- OpenAPI_nf_profile_t *NFProfile = NULL;
153
-
154
- NFProfile = NotificationData->nf_profile;
155
- if (!NFProfile) {
156
- ogs_error("No NFProfile");
157
- ogs_assert(true ==
158
- ogs_sbi_server_send_error(
159
- stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
160
- recvmsg, "No NFProfile", NULL));
161
- ogs_sbi_header_free(&header);
162
- return false;
163
- }
164
-
165
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
166
- if (!nf_instance) {
167
- nf_instance = ogs_sbi_nf_instance_add();
168
- ogs_assert(nf_instance);
169
- ogs_sbi_nf_instance_set_id(nf_instance,
170
- message.h.resource.component1);
171
-
172
- af_nf_fsm_init(nf_instance);
173
-
174
- ogs_info("%s (NRF-notify) NF registered", nf_instance->id);
175
-
176
- } else {
177
- OGS_FSM_TRAN(&nf_instance->sm, af_nf_state_registered);
178
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
179
-
180
- ogs_warn("%s (NRF-notify) NF has already been added",
181
- message.h.resource.component1);
182
-
183
- }
184
-
185
- handled = ogs_sbi_nnrf_handle_nf_profile(
186
- nf_instance, NFProfile, stream, recvmsg);
187
- if (!handled) {
188
- AF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
189
- ogs_sbi_header_free(&header);
190
- return false;
191
- }
192
-
193
- ogs_info("%s (NRF-notify) NF Profile updated", nf_instance->id);
194
-
195
- handled = ogs_sbi_client_associate(nf_instance);
196
- if (!handled) {
197
- ogs_error("%s Cannot associate NF EndPoint", nf_instance->id);
198
- ogs_assert(true ==
199
- ogs_sbi_server_send_error(stream,
200
- OGS_SBI_HTTP_STATUS_BAD_REQUEST,
201
- recvmsg, "Cannot find NF EndPoint", nf_instance->id));
202
- AF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
203
- ogs_sbi_header_free(&header);
204
- return false;
205
- }
206
-
207
- } else if (NotificationData->event ==
208
- OpenAPI_notification_event_type_NF_DEREGISTERED) {
209
- nf_instance = ogs_sbi_nf_instance_find(message.h.resource.component1);
210
- if (nf_instance) {
211
- AF_NF_INSTANCE_CLEAR("NRF-notify", nf_instance);
212
- } else {
213
- ogs_warn("%s (NRF-notify) Not found",
214
- message.h.resource.component1);
215
- ogs_assert(true ==
216
- ogs_sbi_server_send_error(stream,
217
- OGS_SBI_HTTP_STATUS_NOT_FOUND,
218
- recvmsg, "Not found", message.h.resource.component1));
219
- ogs_sbi_header_free(&header);
220
- return false;
221
- }
222
- } else {
223
- char *eventstr = OpenAPI_notification_event_type_ToString(
224
- NotificationData->event);
225
- ogs_error("Not supported event %d:%s",
226
- NotificationData->event, eventstr ? eventstr : "Unknown");
227
- ogs_assert(true ==
228
- ogs_sbi_server_send_error(stream, OGS_SBI_HTTP_STATUS_BAD_REQUEST,
229
- recvmsg, "Not supported event",
230
- eventstr ? eventstr : "Unknown"));
231
- ogs_sbi_header_free(&header);
232
- return false;
233
- }
234
-
235
- response = ogs_sbi_build_response(recvmsg, OGS_SBI_HTTP_STATUS_NO_CONTENT);
236
- ogs_assert(response);
237
- ogs_assert(true == ogs_sbi_server_send_response(stream, response));
238
-
239
- ogs_sbi_header_free(&header);
240
- return true;
241
-}
242
-
243
void af_nnrf_handle_nf_discover(
244
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg)
245
{
246
ogs_sbi_object_t *sbi_object = NULL;
247
OpenAPI_nf_type_e target_nf_type = 0;
248
ogs_sbi_discovery_option_t *discovery_option = NULL;
249
- ogs_sbi_nf_instance_t *nf_instance = NULL;
250
251
OpenAPI_search_result_t *SearchResult = NULL;
252
- OpenAPI_lnode_t *node = NULL;
253
- bool handled;
254
255
ogs_assert(recvmsg);
256
ogs_assert(xact);
257
258
return;
259
}
260
261
- OpenAPI_list_for_each(SearchResult->nf_instances, node) {
262
- OpenAPI_nf_profile_t *NFProfile = NULL;
263
-
264
- if (!node->data) continue;
265
-
266
- NFProfile = node->data;
267
-
268
- nf_instance = ogs_sbi_nf_instance_find(NFProfile->nf_instance_id);
269
- if (!nf_instance) {
270
- nf_instance = ogs_sbi_nf_instance_add();
271
- ogs_assert(nf_instance);
272
- ogs_sbi_nf_instance_set_id(nf_instance, NFProfile->nf_instance_id);
273
-
274
- af_nf_fsm_init(nf_instance);
275
-
276
- ogs_info("%s (NF-discover) NF registered", nf_instance->id);
277
- } else {
278
- OGS_FSM_TRAN(&nf_instance->sm, af_nf_state_registered);
279
- ogs_fsm_dispatch(&nf_instance->sm, NULL);
280
-
281
- ogs_warn("%s (NF-discover) NF has already been added",
282
- NFProfile->nf_instance_id);
283
- }
284
-
285
- if (NF_INSTANCE_IS_OTHERS(nf_instance->id)) {
286
- handled = ogs_sbi_nnrf_handle_nf_profile(
287
- nf_instance, NFProfile, NULL, NULL);
288
- if (!handled) {
289
- ogs_error("ogs_sbi_nnrf_handle_nf_profile() failed %s",
290
- nf_instance->id);
291
- AF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
292
- continue;
293
- }
294
-
295
- handled = ogs_sbi_client_associate(nf_instance);
296
- if (!handled) {
297
- ogs_error("%s Cannot assciate NF EndPoint", nf_instance->id);
298
- AF_NF_INSTANCE_CLEAR("NRF-discover", nf_instance);
299
- continue;
300
- }
301
-
302
- /* TIME : Update validity from NRF */
303
- if (SearchResult->validity_period) {
304
- nf_instance->time.validity_duration =
305
- SearchResult->validity_period;
306
-
307
- ogs_assert(nf_instance->t_validity);
308
- ogs_timer_start(nf_instance->t_validity,
309
- ogs_time_from_sec(nf_instance->time.validity_duration));
310
-
311
- } else
312
- ogs_warn("%s NF Instance validity-time should not 0",
313
- nf_instance->id);
314
-
315
- ogs_info("%s (NF-discover) NF Profile updated", nf_instance->id);
316
- }
317
- }
318
+ ogs_nnrf_handle_nf_discover_search_result(
319
+ sbi_object, target_nf_type, discovery_option, SearchResult);
320
321
ogs_sbi_select_nf(sbi_object, target_nf_type, discovery_option);
322
323
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/nnrf-handler.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/nnrf-handler.h
Changed
23
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
extern "C" {
10
#endif
11
12
-void af_nnrf_handle_nf_register(
13
- ogs_sbi_nf_instance_t *nf_instance, ogs_sbi_message_t *recvmsg);
14
-void af_nnrf_handle_nf_status_subscribe(
15
- ogs_sbi_subscription_t *subscription, ogs_sbi_message_t *recvmsg);
16
-
17
-bool af_nnrf_handle_nf_status_notify(
18
- ogs_sbi_stream_t *stream, ogs_sbi_message_t *recvmsg);
19
-
20
void af_nnrf_handle_nf_discover(
21
ogs_sbi_xact_t *xact, ogs_sbi_message_t *recvmsg);
22
23
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/sbi-path.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/sbi-path.c
Changed
129
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
ogs_assert(request);
10
ogs_assert(data);
11
12
- e = af_event_new(AF_EVT_SBI_SERVER);
13
+ e = af_event_new(OGS_EVENT_SBI_SERVER);
14
ogs_assert(e);
15
16
- e->sbi.request = request;
17
- e->sbi.data = data;
18
+ e->h.sbi.request = request;
19
+ e->h.sbi.data = data;
20
21
rv = ogs_queue_push(ogs_app()->queue, e);
22
if (rv != OGS_OK) {
23
ogs_error("ogs_queue_push() failed:%d", (int)rv);
24
ogs_sbi_request_free(request);
25
- af_event_free(e);
26
+ ogs_event_free(e);
27
return OGS_ERROR;
28
}
29
30
31
32
ogs_assert(response);
33
34
- e = af_event_new(AF_EVT_SBI_CLIENT);
35
+ e = af_event_new(OGS_EVENT_SBI_CLIENT);
36
ogs_assert(e);
37
- e->sbi.response = response;
38
- e->sbi.data = data;
39
+ e->h.sbi.response = response;
40
+ e->h.sbi.data = data;
41
42
rv = ogs_queue_push(ogs_app()->queue, e);
43
if (rv != OGS_OK) {
44
ogs_error("ogs_queue_push() failed:%d", (int)rv);
45
ogs_sbi_response_free(response);
46
- af_event_free(e);
47
+ ogs_event_free(e);
48
return OGS_ERROR;
49
}
50
51
52
ogs_sbi_nf_instance_t *nf_instance = NULL;
53
ogs_sbi_nf_service_t *service = NULL;
54
55
+ /* To be notified when NF Instances registered/deregistered in NRF
56
+ * or when their profile is modified */
57
+ ogs_sbi_add_to_be_notified_nf_type(OpenAPI_nf_type_BSF);
58
+
59
/* Add SELF NF instance */
60
nf_instance = ogs_sbi_self()->nf_instance;
61
ogs_assert(nf_instance);
62
63
}
64
65
/* Initialize NRF NF Instance */
66
- ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
67
- if (NF_INSTANCE_IS_NRF(nf_instance)) {
68
- ogs_sbi_client_t *client = NULL;
69
-
70
- /* Client callback is only used when NF sends to NRF */
71
- client = nf_instance->client;
72
- ogs_assert(client);
73
- client->cb = client_cb;
74
-
75
- /* NFRegister is sent and the response is received
76
- * by the above client callback. */
77
- af_nf_fsm_init(nf_instance);
78
- }
79
+ nf_instance = ogs_sbi_self()->nrf_instance;
80
+ if (nf_instance) {
81
+ ogs_sbi_client_t *client = NULL;
82
+
83
+ /* Client callback is only used when NF sends to NRF */
84
+ client = nf_instance->client;
85
+ ogs_assert(client);
86
+ client->cb = client_cb;
87
+
88
+ /* NFRegister is sent and the response is received
89
+ * by the above client callback. */
90
+ ogs_sbi_nf_fsm_init(nf_instance);
91
}
92
93
- /* Timer expiration handler of client wait timer */
94
- ogs_sbi_self()->client_wait_expire = af_timer_sbi_client_wait_expire;
95
-
96
- /* NF register state in NF state machine */
97
- ogs_sbi_self()->nf_state_registered =
98
- (ogs_fsm_handler_t)af_nf_state_registered;
99
-
100
if (ogs_sbi_server_start_all(server_cb) != OGS_OK)
101
return OGS_ERROR;
102
103
-
104
return OGS_OK;
105
}
106
107
108
ogs_sbi_server_stop_all();
109
}
110
111
-bool af_nnrf_nfm_send_nf_register(ogs_sbi_nf_instance_t *nf_instance)
112
-{
113
- ogs_sbi_request_t *request = NULL;
114
- ogs_sbi_client_t *client = NULL;
115
-
116
- ogs_assert(nf_instance);
117
- client = nf_instance->client;
118
- ogs_assert(client);
119
-
120
- request = af_nnrf_nfm_build_register();
121
- ogs_expect_or_return_val(request, false);
122
- return ogs_sbi_client_send_request(
123
- client, client->cb, request, nf_instance);
124
-}
125
-
126
bool af_sbi_send_request(
127
ogs_sbi_object_t *sbi_object,
128
OpenAPI_nf_type_e target_nf_type,
129
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/af/sbi-path.h -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/af/sbi-path.h
Changed
25
1
2
/*
3
- * Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
4
+ * Copyright (C) 2019-2022 by Sukchan Lee <acetcom@gmail.com>
5
*
6
* This file is part of Open5GS.
7
*
8
9
#ifndef AF_SBI_PATH_H
10
#define AF_SBI_PATH_H
11
12
-#include "nnrf-build.h"
13
#include "nbsf-build.h"
14
#include "npcf-build.h"
15
16
17
int af_sbi_open(void);
18
void af_sbi_close(void);
19
20
-bool af_nnrf_nfm_send_nf_register(ogs_sbi_nf_instance_t *nf_instance);
21
-
22
bool af_sbi_send_request(
23
ogs_sbi_object_t *sbi_object,
24
OpenAPI_nf_type_e target_nf_type,
25
open5gs_2.4.9.14.ec9fe.202208120002.tar.xz/tests/core/fsm-test.c -> open5gs_2.4.9.17.603a74.202208130002.tar.xz/tests/core/fsm-test.c
Changed
37
1
2
void bomb_setting(bomb_t *s, tick_event_t *e);
3
void bomb_timing(bomb_t *s, tick_event_t *e);
4
5
-void bomb_create(bomb_t *s, uint8_t defuse)
6
-{
7
- ogs_fsm_create(&s->fsm, &bomb_initial, 0);
8
- s->defuse = defuse;
9
-}
10
-
11
void bomb_initial(bomb_t *s, tick_event_t *e)
12
{
13
s->timeout = 10;
14
15
bomb_t bomb;
16
tick_event_t tick_event;
17
18
- bomb_create(&bomb, 14);
19
-
20
- ogs_fsm_init(&bomb, 0);
21
+ ogs_fsm_init(&bomb, &bomb_initial, 0, 0);
22
+ bomb.defuse = 14;
23
ABTS_PTR_EQUAL(tc, &bomb_setting, OGS_FSM_STATE(&bomb));
24
ABTS_INT_EQUAL(tc, 10, bomb.timeout);
25
26
27
set_event_t set_event;
28
time_event_t time_event;
29
30
- ogs_fsm_create(&alarm.fsm, &alarm_initial, 0);
31
-
32
- ogs_fsm_init(&alarm, 0);
33
+ ogs_fsm_init(&alarm, &alarm_initial, 0, 0);
34
ABTS_PTR_EQUAL(tc, &alarm_off, OGS_FSM_STATE(&alarm));
35
ABTS_INT_EQUAL(tc, 1200, alarm.time);
36
37