Changes of Revision 387
commit_38868918330a83fad59292bfcea53801ee6137f5.txt
Added
commit_609c234f0ba5ed95b5901b1891b180428948a67d.txt
Deleted
open5gs_2.7.0.69.609c.dsc -> open5gs_2.7.0.70.3886.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-scp, open5gs-sepp, open5gs-ausf, open5gs-udm, open5gs-pcf, open5gs-nssf, open5gs-bsf, open5gs-udr, open5gs, open5gs-dbg
4
Architecture: any
5
-Version: 2.7.0.69.609c
6
+Version: 2.7.0.70.3886
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
- 2ea9b4828c7dd73a2cae32e6ad2dce931a01c9e1 14471056 open5gs_2.7.0.69.609c.tar.xz
15
+ 043b79f4b89da0288be0a716db8f883d0bf5e273 14470684 open5gs_2.7.0.70.3886.tar.xz
16
Checksums-Sha256:
17
- dea6ba114c72d3d159feb69e292314ec47ec45559523e4b95a9d12e195435e87 14471056 open5gs_2.7.0.69.609c.tar.xz
18
+ 05de41f098b1e976afd37ffb63a60599d0fcaf10c455160690bc1c53ed62bba8 14470684 open5gs_2.7.0.70.3886.tar.xz
19
Files:
20
- cac4e4681f775f3a695dc2e8a178f45a 14471056 open5gs_2.7.0.69.609c.tar.xz
21
+ b882151d896ef644aebd069f7ea5dec4 14470684 open5gs_2.7.0.70.3886.tar.xz
22
open5gs_2.7.0.69.609c.tar.xz/.tarball-version -> open5gs_2.7.0.70.3886.tar.xz/.tarball-version
Changed
4
1
2
-2.7.0.69-609c
3
+2.7.0.70-3886
4
open5gs_2.7.0.69.609c.tar.xz/debian/changelog -> open5gs_2.7.0.70.3886.tar.xz/debian/changelog
Changed
12
1
2
-open5gs (2.7.0.69.609c) unstable; urgency=medium
3
+open5gs (2.7.0.70.3886) unstable; urgency=medium
4
5
* Automatically generated changelog entry for building the Osmocom master feed
6
7
- -- Osmocom OBS scripts <info@osmocom.org> Wed, 24 Jan 2024 22:42:00 +0000
8
+ -- Osmocom OBS scripts <info@osmocom.org> Thu, 25 Jan 2024 14:28:16 +0000
9
10
open5gs (2.7.0) unstable; urgency=medium
11
12
open5gs_2.7.0.69.609c.tar.xz/lib/core/ogs-timer.c -> open5gs_2.7.0.70.3886.tar.xz/lib/core/ogs-timer.c
Changed
9
1
2
manager = timer->manager;
3
ogs_assert(manager);
4
timer = ogs_timer_cycle(manager, timer);
5
- ogs_assert(timer);
6
if (!timer) {
7
ogs_fatal("ogs_timer_stop() failed in %s", file_line);
8
ogs_assert_if_reached();
9
open5gs_2.7.0.69.609c.tar.xz/src/mme/mme-sm.c -> open5gs_2.7.0.70.3886.tar.xz/src/mme/mme-sm.c
Changed
66
1
2
break;
3
4
case MME_EVENT_S6A_MESSAGE:
5
- mme_ue = e->mme_ue;
6
- ogs_assert(mme_ue);
7
+ /*
8
+ * A race condition can occur in the following situations.
9
+ * In conclusion, we can use this situation to determine
10
+ * whether or not the UE Context has been removed and avoiding a crash.
11
+ *
12
+ * For example, suppose a UE Context is removed in the followings.
13
+ *
14
+ * 1. Attach Request
15
+ * 2. Authentication-Information-Request
16
+ * 3. Authentication-Information-Answer
17
+ * 4. Authentication Request
18
+ * 5. Authentication Response(MAC Failed)
19
+ * 6. Authentication Reject
20
+ * 7. UEContextReleaseCommand
21
+ * 8. UEContextReleaseComplete
22
+ *
23
+ * The MME then sends a Purge-UE-request to the HSS and deletes
24
+ * the UE context as soon as it receives a Purge-UE-Answer.
25
+ *
26
+ * Suppose an Attach Request is received from the same UE
27
+ * between Purge-UE-Request/Answer, then the MME and HSS start
28
+ * the Authentication-Information-Request/Answer process.
29
+ *
30
+ * This can lead to the following situations.
31
+ *
32
+ * 1. Purge-UE-Request
33
+ * 2. Attach Request
34
+ * 3. Authentication-Information-Request
35
+ * 4. Purge-UE-Answer
36
+ * 5. UE Context Removed
37
+ * 6. Authentication-Information-Answer
38
+ *
39
+ * Since the UE Context has already been deleted
40
+ * when the Authentication-Information-Answer is received,
41
+ * it cannot be processed properly.
42
+ *
43
+ * Therefore, mme_ue_cycle() is used to check
44
+ * whether the UE Context has been deleted and
45
+ * decide whether to process or
46
+ * ignore the Authentication-Information-Answer as shown below.
47
+ */
48
+ mme_ue = mme_ue_cycle(e->mme_ue);
49
+ if (!mme_ue) {
50
+ ogs_error("UE(mme-ue) context has already been removed");
51
+ goto cleanup;
52
+ }
53
+
54
s6a_message = e->s6a_message;
55
ogs_assert(s6a_message);
56
57
58
ogs_error("Invalid Type%d", s6a_message->cmd_code);
59
break;
60
}
61
+
62
+cleanup:
63
ogs_subscription_data_free(&s6a_message->idr_message.subscription_data);
64
ogs_subscription_data_free(&s6a_message->ula_message.subscription_data);
65
ogs_free(s6a_message);
66
open5gs_2.7.0.69.609c.tar.xz/src/mme/s1ap-build.c -> open5gs_2.7.0.70.3886.tar.xz/src/mme/s1ap-build.c
Changed
31
1
2
emmbuf = NULL;
3
}
4
5
- ogs_assert(E_RABToBeSetupListCtxtSUReq->list.count);
6
+ if (!E_RABToBeSetupListCtxtSUReq->list.count) {
7
+ ogs_error(" IMSI%s NAS-EPS Type%d "
8
+ "ENB_UE_S1AP_ID%d MME_UE_S1AP_ID%d",
9
+ mme_ue->imsi_bcd, mme_ue->nas_eps.type,
10
+ enb_ue->enb_ue_s1ap_id, enb_ue->mme_ue_s1ap_id);
11
+ ogs_list_for_each(&mme_ue->sess_list, sess) {
12
+ ogs_error(" APN%s",
13
+ sess->session ? sess->session->name : "Unknown");
14
+ ogs_list_for_each(&sess->bearer_list, bearer) {
15
+ if (OGS_FSM_CHECK(&bearer->sm, esm_state_inactive))
16
+ ogs_error(" IN-ACTIVE");
17
+ else if (OGS_FSM_CHECK(&bearer->sm, esm_state_active))
18
+ ogs_error(" ACTIVE");
19
+ else
20
+ ogs_error(" OTHER STATE");
21
+
22
+ ogs_error(" EBI%d QCI%d SGW-S1U-TEID%d",
23
+ bearer->ebi, bearer->qos.index, bearer->sgw_s1u_teid);
24
+ }
25
+ }
26
+ return NULL;
27
+ }
28
29
ie = CALLOC(1, sizeof(S1AP_InitialContextSetupRequestIEs_t));
30
ASN_SEQUENCE_ADD(&InitialContextSetupRequest->protocolIEs, ie);
31