Changes of Revision 18
commit_395707831abcde5c23558a473c4e367d744a1c52.txt
Added
commit_704fe72d1173accca4488547c4dc31ef6e7dd8ad.txt
Deleted
open5gs_2.4.11.13.704fe7.dsc -> open5gs_2.4.11.15.39570.dsc
Changed
x
1
2
Source: open5gs
3
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
4
Architecture: any
5
-Version: 2.4.11.13.704fe7
6
+Version: 2.4.11.15.39570
7
Maintainer: Harald Welte <laforge@gnumonks.org>
8
Uploaders: Sukchan Lee <acetcom@gmail.com>
9
Homepage: https://open5gs.org
10
11
open5gs-udr deb net optional arch=any
12
open5gs-upf deb net optional arch=any
13
Checksums-Sha1:
14
- 64b3e2adead1f57d2d558d3dfe078600218a2756 11470888 open5gs_2.4.11.13.704fe7.tar.xz
15
+ b72e2675d3037c561429266d41896029e795efe9 11471484 open5gs_2.4.11.15.39570.tar.xz
16
Checksums-Sha256:
17
- c4d7173fab63bf244b83ec644c3d98443032f43d69023867de69dbecee0fafaa 11470888 open5gs_2.4.11.13.704fe7.tar.xz
18
+ 50666f7027b99c5f0ae3f7947e6a506f8ac5839319197b3bd84ab4d6fced7120 11471484 open5gs_2.4.11.15.39570.tar.xz
19
Files:
20
- c9358af0bb3fa7e003323321429ac25f 11470888 open5gs_2.4.11.13.704fe7.tar.xz
21
+ e1b6cd0f06509eb41cebff1633c8fd29 11471484 open5gs_2.4.11.15.39570.tar.xz
22
open5gs_2.4.11.13.704fe7.tar.xz/.tarball-version -> open5gs_2.4.11.15.39570.tar.xz/.tarball-version
Changed
4
1
2
-2.4.11.13-704fe7
3
+2.4.11.15-39570
4
open5gs_2.4.11.13.704fe7.tar.xz/debian/changelog -> open5gs_2.4.11.15.39570.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.4.11.13.704fe7) unstable; urgency=medium
3
+open5gs (2.4.11.15.39570) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Sat, 08 Oct 2022 02:55:35 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Tue, 11 Oct 2022 08:38:23 +0000
9
10
open5gs (2.4.11) unstable; urgency=medium
11
12
open5gs_2.4.11.13.704fe7.tar.xz/src/amf/amf-sm.c -> open5gs_2.4.11.15.39570.tar.xz/src/amf/amf-sm.c
Changed
18
1
2
amf_ue = amf_ue_find_by_message(&nas_message);
3
if (!amf_ue) {
4
amf_ue = amf_ue_add(ran_ue);
5
- ogs_assert(amf_ue);
6
+ if (amf_ue == NULL) {
7
+ ogs_expect(OGS_OK ==
8
+ ngap_send_ran_ue_context_release_command(ran_ue,
9
+ NGAP_Cause_PR_misc,
10
+ NGAP_CauseMisc_control_processing_overload,
11
+ NGAP_UE_CTX_REL_NG_CONTEXT_REMOVE, 0));
12
+ ogs_pkbuf_free(pkbuf);
13
+ return;
14
+ }
15
} else {
16
/* Here, if the AMF_UE Context is found,
17
* the integrity check is not performed
18
open5gs_2.4.11.13.704fe7.tar.xz/src/amf/context.c -> open5gs_2.4.11.15.39570.tar.xz/src/amf/context.c
Changed
45
1
2
ogs_pool_init(&amf_ue_pool, ogs_app()->max.ue);
3
ogs_pool_init(&ran_ue_pool, ogs_app()->max.ue);
4
ogs_pool_init(&amf_sess_pool, ogs_app()->pool.sess);
5
- ogs_pool_init(&self.m_tmsi, ogs_app()->max.ue);
6
+ ogs_pool_init(&self.m_tmsi, ogs_app()->max.ue*2);
7
8
ogs_list_init(&self.gnb_list);
9
ogs_list_init(&self.amf_ue_list);
10
11
ogs_assert(gnb);
12
13
ogs_pool_alloc(&ran_ue_pool, &ran_ue);
14
- ogs_assert(ran_ue);
15
+ if (ran_ue == NULL) {
16
+ ogs_error("Could not allocate ran_ue context from pool");
17
+ return NULL;
18
+ }
19
+
20
memset(ran_ue, 0, sizeof *ran_ue);
21
22
ran_ue->t_ng_holding = ogs_timer_add(
23
24
ogs_assert(gnb);
25
26
ogs_pool_alloc(&amf_ue_pool, &amf_ue);
27
- ogs_assert(amf_ue);
28
+ if (amf_ue == NULL) {
29
+ ogs_error("Could not allocate amf_ue context from pool");
30
+ return NULL;
31
+ }
32
+
33
memset(amf_ue, 0, sizeof *amf_ue);
34
35
/* Add All Timers */
36
37
int index = 0;
38
39
ogs_trace("M-TMSI Pool try to generate...");
40
- for (i = 0; index < ogs_app()->max.ue; i++) {
41
+ for (i = 0; index < ogs_app()->max.ue*2; i++) {
42
amf_m_tmsi_t *m_tmsi = NULL;
43
int conflict = 0;
44
45
open5gs_2.4.11.13.704fe7.tar.xz/src/amf/ngap-handler.c -> open5gs_2.4.11.15.39570.tar.xz/src/amf/ngap-handler.c
Changed
30
1
2
ran_ue = ran_ue_find_by_ran_ue_ngap_id(gnb, *RAN_UE_NGAP_ID);
3
if (!ran_ue) {
4
ran_ue = ran_ue_add(gnb, *RAN_UE_NGAP_ID);
5
- ogs_assert(ran_ue);
6
+ if (ran_ue == NULL) {
7
+ ogs_assert(OGS_OK ==
8
+ ngap_send_error_indication(gnb, NULL, NULL,
9
+ NGAP_Cause_PR_misc,
10
+ NGAP_CauseMisc_control_processing_overload));
11
+ return;
12
+ }
13
14
/* Find AMF_UE if 5G-S_TMSI included */
15
if (FiveG_S_TMSI) {
16
17
18
/* Target UE */
19
target_ue = ran_ue_add(target_gnb, INVALID_UE_NGAP_ID);
20
- ogs_assert(target_ue);
21
+ if (target_ue == NULL) {
22
+ ogs_assert(OGS_OK ==
23
+ ngap_send_error_indication2(amf_ue, NGAP_Cause_PR_misc,
24
+ NGAP_CauseMisc_control_processing_overload));
25
+ return;
26
+ }
27
28
/* Source UE - Target UE associated */
29
source_ue_associate_target_ue(source_ue, target_ue);
30