Commit graph

4902 commits

Author SHA1 Message Date
nick
c36a322a39 Fix MME crash (SIGABRT) on TAU with BCS mismatch and active_flag=1
When a UE sends TAU Request with active_flag=1 and a Bearer Context
     Status that mismatches MME state, the BCS cleanup deletes all sessions
     but the stored procedure remains InitialContextSetup. Building an
     Initial Context Setup Request with zero E-RABs returns NULL, hitting
     ogs_assert and killing the process — disconnecting all eNBs.

     Guard in mme_send_tau_accept_and_check_release(): if no sessions remain
     after BCS cleanup, downgrade to DownlinkNASTransport so TAU Accept is
     delivered without requiring bearers.
2026-03-10 22:45:32 +09:00
Sukchan Lee
6a29f11115 proto: Prevent SMF crash on malformed PCO/EPCO during parsing
ogs_pco_parse() previously relied on ogs_assert() to verify the bounds
of Protocol/Container fields while parsing PCO/EPCO data. If the outer
PCO/EPCO length was inconsistent with the internal container encoding
(e.g., truncated Container-ID, Container-Length, or container data),
the assert would trigger and terminate the process.

Because PCO/EPCO is derived from UE-supplied NAS messages (e.g.,
PDU Session Establishment Request), a malformed EPCO IE could trigger
a remote SMF crash, resulting in a denial-of-service condition.

This patch replaces the assert-based bounds checks with explicit
runtime validation and returns an error when malformed or truncated
PCO/EPCO is detected. The SMF can then reject the request cleanly
instead of aborting.

Checks added:
- Validate minimum PCO/EPCO length before accessing header fields
- Verify Container-ID bounds
- Verify Container-Length bounds
- Verify container payload length
- Detect container count overflow beyond
  OGS_MAX_NUM_OF_PROTOCOL_OR_CONTAINER_ID

With these changes, malformed EPCO inputs are safely rejected and the
SMF remains operational.

Issues: #4341
2026-03-10 22:35:42 +09:00
Sukchan Lee
42506202e8 mme: Avoid abort on malformed Address AVPs in S6a messages
The MME terminated with abort() when processing IDR or ULA messages
containing a malformed Served-Party-IP-Address (AVP 848) or
MIP-Home-Agent-Address (AVP 334).

In mme_s6a_subscription_data_from_avp(), the return value of
fd_msg_avp_value_interpret() was checked using ogs_assert(ret == 0).
However, this function may legitimately return an error if the Address
AVP contains an invalid encoding (e.g., invalid address family or
length mismatch). Since freeDiameter treats Address AVPs as raw
OctetString during decoding, malformed values can reach this code path.

As a result, receiving such an AVP caused ogs_assert() → ogs_abort() →
abort(), terminating the entire MME process.

Fix this by replacing the assertion with proper error handling.
If fd_msg_avp_value_interpret() fails, the malformed AVP is ignored
with a warning log and processing continues.

This prevents a malformed or malicious Diameter message from crashing
the MME while preserving normal operation for valid data.

Issues: #4334
2026-03-10 22:23:06 +09:00
Peter Gradwell
c42d7b7d9b pfcp: add defensive resets for FAR/URR optional fields in Create handlers
Clear presence-driven fields before processing conditional IEs to prevent
stale state when find_or_add() returns an already-existing entry.

FAR: reset dst_if_type_presence and outer_header_creation_len
URR: reset all measurement/threshold/quota fields

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 22:02:58 +09:00
Peter Gradwell
d28e2f7f49 pfcp: use find_or_add in Create FAR/QER/URR handlers and make Remove idempotent
When a PFCP control plane sends a Session Modification Request with
Create FAR, Create QER, or Create URR IEs for IDs that were not
previously created during PDR processing, the UPF rejects them with
"Cannot find [FAR|QER|URR]-ID[N] in PDR" errors.

This is because ogs_pfcp_handle_create_far/qer/urr() use
ogs_pfcp_[far|qer|urr]_find() which only looks up existing entries,
while ogs_pfcp_handle_create_pdr() correctly uses
ogs_pfcp_pdr_find_or_add() which creates new entries if needed.

In practice, some PFCP control planes (e.g., vendor-specific PGW-C
implementations) send Create URR/QER/FAR in Session Modification
without a corresponding Create PDR that would have pre-created these
entries. The resulting PFCP error responses cascade into GTP-U Error
Indications, causing bearer teardowns and IMS PDN disconnections.

This patch:
- Changes Create FAR/QER/URR handlers to use find_or_add, matching
  the existing Create PDR behavior
- Makes Remove PDR/FAR/QER/URR handlers idempotent: removing a
  non-existent entry now returns success with a warning instead of
  failing with an error, since the desired state (entry removed) is
  already achieved

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-10 22:02:58 +09:00
Sukchan Lee
ebc66942b6 amf: normalize invalid reg_type and ignore placeholder 5G-GUTI in context transfer detection
Some UEs and fuzzing inputs may send a Registration Request with
registration_type.value set to 0. According to TS 24.501 Table 9.11.3.7.1,
unused registration-type encodings shall be interpreted by the network
as "initial registration". Without normalization, the invalid value may
propagate into subsequent logic and lead to unexpected behavior during
UE context transfer handling.

This patch normalizes registration_type.value == 0 to
OGS_NAS_5GS_REGISTRATION_TYPE_INITIAL early in
gmm_handle_registration_request() so that later procedures operate on
a valid registration type.

Additionally, improve robustness in
gmm_registration_request_from_old_amf() by ignoring placeholder
5G-GUTIs where AMF-ID and M-TMSI are zero. Some devices (and fuzzing
tools) send such values even though they do not represent a valid
previous AMF context. Treating them as actionable may incorrectly
trigger N14 UE Context Transfer attempts.

With this change, placeholder GUTIs are treated as non-actionable and
the AMF falls back to normal registration / identity procedures.

Issues: #4321
2026-03-10 16:48:22 +09:00
Sukchan Lee
e96fbe6dd3 mme: do not abort on unsupported Cancellation-Type in CLR
Previously, the MME aborted when receiving a Cancel-Location-Request
(CLR) with an unsupported Cancellation-Type. The default case logged
a fatal message and called ogs_assert_if_reached(), which terminated
the process.

However, Cancellation-Type values such as UPDATE_PROCEDURE_IWF (3)
and INITIAL_ATTACH_PROCEDURE (4) are defined in 3GPP TS 29.272 but are
not implemented in Open5GS. Since this field originates from external
Diameter input, the MME must not crash when encountering unsupported
values.

Replace ogs_fatal() and ogs_assert_if_reached() with ogs_error() so the
MME logs the issue and continues running instead of aborting.

This prevents a potential denial-of-service condition where a malformed
or unexpected CLR message could terminate the MME.

Issues: #4309
2026-03-08 20:20:36 +09:00
Sukchan Lee
769b6d24ac sbi: prevent AMF abort on malformed multipart SBI requests
The AMF could abort when processing malformed or oversized multipart
SBI requests due to an assertion triggered in the multipart parser
callback.

When the parser encountered an overflow condition while assembling
multipart part data, `on_part_data()` executed `ogs_assert_if_reached()`,
causing the AMF process to terminate. This allowed malformed HTTP/2
multipart requests to trigger a denial-of-service condition.

This patch replaces the assertion-based failure with graceful error
handling:

- Introduce `multipart_part_data_t` and explicit parser state tracking.
- Add `parse_error` flag to propagate parsing failures.
- Validate the result of `multipart_parser_execute()`.
- Reject malformed multipart payloads instead of aborting.
- Replace fatal assertions with error handling and proper cleanup.
- Add centralized cleanup via `multipart_parser_data_free()`.

As a result, malformed or oversized multipart bodies are now rejected
with an error, while the AMF process remains operational.

Issues: #4290
2026-03-08 19:59:17 +09:00
Sukchan Lee
35ce855e32 core/tlv, smf: Harden TLV parsing and validate Bearer Context in CSR
Two issues (#4277, #4278) reported crashes caused by malformed or
unexpected inputs.

In the TLV parser, several ogs_assert() checks could be triggered by
malformed TLV blocks, resulting in process termination. These checks
are replaced with proper error handling: the parser now logs the error,
limits hexdump size, frees allocated TLVs, and returns NULL instead of
aborting.

In the SMF S5-C Create Session Request handler, additional validation
is introduced for Bearer Context handling. The implementation now
rejects requests containing multiple Bearer Contexts, missing mandatory
fields (EBI or Bearer QoS), duplicate EBI values, or invalid TEID/IP
information. Several ogs_assert() calls that could be triggered by
malformed messages are also replaced with explicit error handling.

These changes prevent crashes caused by malformed TLV blocks or
unexpected Bearer Context structures and ensure the SMF rejects such
requests gracefully.

Issues: #4277, #4278
2026-03-06 10:05:24 +09:00
Sukchan Lee
dd7c518a56 amf: snapshot RAN-UE ID in SBI transaction to avoid race during SM Context Update
Several users reported intermittent AMF crashes when SM Context Update
procedures overlap with NG context release or a new Registration
procedure. In these situations the RAN-UE associated with a session may
change before the asynchronous SBI response arrives.

Typical trigger scenarios include:

  * UEContextReleaseRequest followed by a new Registration Request
  * PDU Session Update overlapping with UE deactivation or handover
  * Registration Request arriving while a previous Service Request is
    still being processed

In these cases the AMF may send an Update SM Context request to the SMF
while the NG context is being released or replaced. When the asynchronous
SBI response arrives later, the AMF uses the session's current ran_ue
pointer. However, that pointer may already have been switched to a new
RAN-UE or cleared due to the release procedure.

As a result, the AMF may reference the wrong RAN-UE context or an
inconsistent state, eventually triggering an assertion such as:

  amf_nsmf_pdusession_handle_update_sm_context:
      Assertion `ran_ue->deactivation.group' failed

The root cause is that SBI client transactions do not preserve the
RAN-UE association at the time the request was sent. Because SBI
operations are asynchronous, the session context may change before the
response is processed.

This patch introduces a generic mechanism to attach user-defined context
to an SBI transaction:

  - Add `user_data` and `user_data_free` to `ogs_sbi_xact_t`
  - Allow NF-specific code to store per-transaction context
  - Ensure the memory is released automatically when the transaction
    is removed

The AMF now stores a snapshot of the RAN-UE ID in the SBI transaction
when sending an Update SM Context request. When the SBI response is
processed, the AMF retrieves the RAN-UE using this snapshot instead of
the session's current ran_ue pointer. This guarantees that the response
is associated with the correct RAN context even if the session state has
changed in the meantime.

This approach avoids race conditions between asynchronous SBI responses
and NG context lifecycle events, preventing the AMF from accessing an
incorrect or partially released RAN-UE context.

Reported-by:
  multiple users on v2.7.6 environments

Issues: #4174, #4274
2026-03-05 22:30:31 +09:00
Sukchan Lee
209a0cdc08 smf/gn: avoid abort on malformed CreatePDPContextRequest
Replace assertion-based checks on network-derived values with
validation and proper GTP error handling.

- Handle ogs_gtp1_gsn_addr_to_ip() and ogs_gtp1_eua_to_ip() failures
  without aborting SMF
- Fix incorrect log message for End User Address failure
- Handle PFCP outer_header_creation failure gracefully instead of assert

Prevents SMF crash triggered by malformed Gn CreatePDPContextRequest.

Issues: #4285
2026-03-02 09:47:11 +09:00
Sukchan Lee
fba2cbd29d mme: handle malformed CreateSessionResponse without aborting
Replace fatal asserts in mme_s11_handle_create_session_response() with
validation and a unified failure path.

- Reject malformed/invalid IEs (Cause, TEID, PAA, AMBR, Bearer QoS)
  instead of aborting the MME process
- Fix Bearer QoS length handling: treat mismatch as invalid IE and fail
  gracefully
- Consolidate error handling via mme_s11_create_session_fail() and goto fail

This prevents remote crashes triggered by malformed GTPv2-C
CreateSessionResponse messages on S11.

Issues: #4284
2026-03-01 19:37:04 +09:00
Sukchan Lee
bd5f9b567d mme: validate PAA IE length in CreateSessionResponse (S11) to prevent overflow
The MME trusted the PDN Address Allocation (PAA) IE length from
CreateSessionResponse (S11) without proper bounds validation.

An attacker-controlled or malicious SGW could forge an oversized
PAA IE length (e.g., 200 bytes), causing the MME to copy the
payload into sess->paa using the attacker-supplied length.
This leads to memory corruption and a SIGSEGV crash (remote DoS).

This patch adds explicit length validation for the PAA IE:
- Rejects PAA lengths smaller than OGS_PAA_IPV4_LEN
- Rejects PAA lengths larger than OGS_PAA_IPV4V6_LEN
- Sets cause to OGS_GTP2_CAUSE_INVALID_LENGTH on malformed IE

As a result, malformed or oversized PAA IEs are safely rejected,
and the MME no longer crashes.

Issues: #4283
2026-02-28 22:31:00 +09:00
Sukchan Lee
3c8178cff1 gtp2: Add runtime boundary validation in ogs_gtp2_parse_tft()
Replace ogs_assert() checks in ogs_gtp2_parse_tft() with explicit
runtime length validation to prevent process abort on malformed
TFT/TAD IEs.

Previously, insufficient length checks could trigger assertion
failures when parsing crafted BearerResourceCommand messages with
invalid packet filter content lengths. This allowed a malformed
TFT/TAD IE to cause a crash (SIGABRT) in SMF.

This patch:
- Adds explicit boundary checks before every field access
- Validates that content.length does not exceed remaining IE length
- Protects component array bounds during parsing
- Logs errors and returns current parsed size instead of aborting

The function now gracefully rejects malformed input without
terminating the process, preventing potential denial-of-service
conditions on S5-C interface.

No functional change for valid messages.

Issues: #4281
2026-02-28 22:17:00 +09:00
Sukchan Lee
234da30d93 core/sbi: Prevent DoS in requester-features parsing (uint64 overflow)
Replace strtoll() with strtoull() in ogs_uint64_from_string() and
remove fatal abort on conversion errors to prevent remote crash via
malformed SupportedFeatures/requester-features values.

The previous implementation could trigger OGS_LOG_FATAL and
ogs_assert_if_reached() when strtoll() detected ERANGE, allowing a
malicious or buggy peer to cause a denial-of-service by sending an
overly large hexadecimal value.

Changes:
- Use strtoull() for proper unsigned parsing.
- Add strict endptr validation (no digits, trailing garbage).
- Handle ERANGE and invalid inputs gracefully without abort().
- Normalize errno handling: success paths set errno=0.
- In ogs_sbi_parse_request(), reject invalid requester-features
  (EINVAL/ERANGE) and return OGS_ERROR instead of proceeding.

Empty string is treated as valid (0), consistent with 3GPP
SupportedFeatures pattern ('^[A-Fa-f0-9]*$').

This ensures malformed requester-features values no longer crash
NRF and are properly rejected during SBI request parsing.

Issues: #4263
2026-02-28 09:48:23 +09:00
Sukchan Lee
14ff1df4c3 sgwc: validate PAA IE length to prevent buffer overflow in CreateSessionResponse
Validate the PDN Address Allocation (PAA) IE length in
sgwc_s5c_handle_create_session_response() before copying it
into sess->paa.

Previously, the code directly performed:

    memcpy(&sess->paa, rsp->pdn_address_allocation.data,
           rsp->pdn_address_allocation.len);

without validating the IE length. A malicious or malformed
CreateSessionResponse (S5-C) from a PGW with an oversized
PAA IE length could trigger a buffer overflow and crash
SGW-C (remote DoS).

This patch adds explicit length validation and rejects
responses with invalid PAA IE length, returning
OGS_GTP2_CAUSE_INVALID_LENGTH instead of proceeding.

Issue originally reported in #4282.

An initial fix was submitted in PR #4330 but was reverted
in #4331 due to issues. This commit provides a corrected
and validated implementation.

Fixes: #4282
2026-02-26 06:30:27 +09:00
akos011221
6cc627c485 upf: Implement UE-to-UE hairpin in the GTP-U path
When traffic from UE is destined to an other UE on the same UPF, the packet shouldn't be sent to the TUN interface, but should be re-encapsulated and forwarded via the destination UE's GTP-U tunnel.

Before, in the gtp-path.c, there was a TODO placeholder for this. Logic:
- Look up the destination UE session by inner packet dest IP
- Find a matching downlink PDR with FAR
- Fall back to lowest precedence PDR
- URR accounting
- Buffering and dowlink data reporting

Additionally, the multi-ue-test was extended with each UE pinging the next UE.

Signed-off-by: akos011221 <orbanakos2001@gmail.com>
2026-02-26 06:07:35 +09:00
Sukchan Lee
5200ce46cb Revert "Add wire length check before memcpy"
This reverts commit caaec827cf.
2026-02-25 22:41:05 +09:00
iam-rishabh
caaec827cf Add wire length check before memcpy 2026-02-25 22:40:17 +09:00
Pau Espin Pedrol
09c286ba69 [MME] S6A ULR: Set Single-Registration-Indication in SGSN->MME TAU
As described in 3GPP TS 23.401 D.3.6 step 14.
2026-02-25 22:35:08 +09:00
Pau Espin Pedrol
08f4ffb17b [MME] S6a ULR: Add SMS-Register-Request AVP with SMS in MME Not Preferred
open5gs doesn't support the "SMS in MME" (3GPP TS 23.272 Annex C) yet,
so better announce that we support SGs interface than giving no
information the the HSS.
2026-02-25 22:34:31 +09:00
Pau Espin Pedrol
32f5632e72 cosmetic: diameter/6a: Fix trailing whitespace 2026-02-25 22:34:31 +09:00
Pau Espin Pedrol
4fef5f8e57 [MME] S6a ULR: Place Vendor-Specific-Application-Id in correct position
As described in 3GPP TS 29.272 clause 7.2.3,
Vendor-Specific-Application-Id goes around the start of the message, not
at the end.
2026-02-25 22:34:31 +09:00
s3pp-api
122f2b2e30 Fix plmn-id query attribute to vPLMN 2026-02-24 17:03:54 +09:00
Sukchan Lee
ab5b4c0958 udm: Reject unassigned PDU Session Identity in SMF registration
Add validation for PDU Session Identity (PSI) when handling
SMF Registration resource requests in UDM.

Previously, the PSI value extracted from the SBI resource
path was used directly to locate the session context.
If the value corresponded to
OGS_NAS_PDU_SESSION_IDENTITY_UNASSIGNED (0), the lookup
would proceed with an invalid identifier.

This could lead to inconsistent session handling and
unexpected error paths.

This patch introduces an explicit validation step:

- Detect PSI == OGS_NAS_PDU_SESSION_IDENTITY_UNASSIGNED
- Log an error with the received PSI value
- Return HTTP 400 Bad Request via SBI error response
- Abort further processing of the request

This ensures that only valid, assigned PSI values are
processed and improves protocol compliance and robustness
against malformed SBI requests.

Issues: #4255
2026-02-13 17:25:50 +09:00
Sukchan Lee
82b9290073 sbi: Prevent NFProfile overflow in SMF/AMF info parsing
Replace hard assertions with boundary checks when parsing
SMF and AMF information from NRF NFProfile.

Previously, multiple ogs_assert() conditions assumed that
slice, TAI, TAI range, and GUAMI counts would always remain
within static limits (e.g., OGS_MAX_NUM_OF_SLICE,
OGS_MAX_NUM_OF_TAI, OGS_MAX_NUM_OF_SERVED_GUAMI).

If NRF provided NFProfile data exceeding these limits,
the process could terminate due to assertion failure,
resulting in service instability.

This patch introduces explicit overflow validation:

- SMF
  - Slice list overflow protection
  - NR TAI list overflow protection
  - NR TAI range TAC index overflow protection

- AMF
  - Served GUAMI overflow protection
  - NR TAI range overflow protection

When limits are exceeded, an error log is generated and
parsing of the affected list is stopped gracefully,
preventing crash while preserving existing data.

This improves robustness against malformed or excessive
NFProfile inputs from NRF or peer NFs.

Issues: #4249, #4250, #4252
2026-02-13 17:20:20 +09:00
Sukchan Lee
a2bf3b4051 sbi/nrf: prevent crash when SCP registers without usable endpoint
Fix a crash triggered by SCP NFProfile registrations that do not
provide any usable endpoint information.

Previously, ogs_sbi_client_associate() asserted that a client must
exist after association. However, malformed or incomplete NFProfiles
(e.g., scpInfo containing only scpDomainInfoList without scpPorts or
instance/service endpoints) could bypass endpoint validation and
result in no client being created.

This led to an assertion failure in:

    ogs_sbi_client_associate()
        -> ogs_assert(client)

Root causes addressed:

1. Association safety
   - Remove hard assertion on missing instance-level client.
   - Perform association only when a client exists.
   - Improve logging for missing instance/service endpoints.

2. Endpoint validation refactor
   - Move endpoint validation after client association.
   - Introduce nf_instance_has_usable_client() helper to verify:
       * Instance-level client, or
       * Any service-level client.

3. Registration rejection
   - Reject NFProfile registrations that lack usable endpoints
     with HTTP 400 instead of allowing inconsistent state.

4. SCP info handling
   - Treat domain-only SCP registrations as valid nf_info inputs
     when num_of_domain is present.

Impact:

- Prevents assertion crashes in NRF triggered by malformed SCP
  registrations.
- Ensures NF instances are accepted only when at least one usable
  endpoint is available.
- Improves diagnostic logging for operator troubleshooting.

Tested with:
- SCP registration containing only scpDomainInfoList
- Registrations with instance-level endpoints
- Registrations with service-level endpoints

Issues: #4243, #4248
2026-02-13 15:29:01 +09:00
Sukchan Lee
7211b07f5a sbi: add HTTP body size limit in nghttp2 server
Enforce a 256MB maximum payload size in
on_data_chunk_recv() to prevent excessive memory allocation
from large HTTP/2 DATA frames.

Requests exceeding the limit are rejected with HTTP 413,
and allocation failures return HTTP 503.

This mitigates large payload DoS conditions.

Issues: #4244, #4247
2026-02-13 11:23:14 +09:00
Sukchan Lee
2575c49803 sbi/nrf: This patch improves robustness of SBI client creation, HTTP parsing,
and NRF NFProfile validation by adding defensive checks and safer
memory handling.

Key changes:

1) Prevent client creation without endpoint information
   - Added error logging when NF instance lacks FQDN/IP endpoint data.
   - Avoids creating invalid SBI clients with incomplete connectivity info.

2) Enforce query parameter limits
   - Added explicit bounds check against MAX_NUM_OF_PARAM_IN_QUERY.
   - Returns HTTP 400 instead of triggering fatal assertion.
   - Prevents potential DoS via excessive query parameters.

3) Safer HTTP body memory handling
   - Introduced temporary buffer for malloc/realloc results.
   - Prevents loss of original pointer on realloc failure.
   - Returns NGHTTP2_ERR_TEMPORAL_CALLBACK_FAILURE on overflow.
   - Improves resilience against large/fragmented payload attacks.

4) Validate NFProfile endpoint presence during registration
   - Rejects NFProfile lacking FQDN, IPv4, and IPv6 addresses.
   - Returns HTTP 400 with explicit error message.
   - Prevents NRF from storing unreachable NF instances.

Overall, this patch strengthens SBI stability and protects against
resource exhaustion, malformed requests, and invalid NF registrations.

Issues: #4243, #4244, #4245
2026-02-13 10:27:39 +09:00
Sukchan Lee
b3169c8ee9 sbi: cleanup NRF subscriptions before NF re-registration
When an NF loses heartbeat and enters re-registration, existing
NRF subscription states tied to the previous NF instance remain
both remotely (NRF) and locally (subscription_data pool).

In environments with repeated heartbeat loss or timing races
(e.g., docker-compose deployments), this leads to continuous
re-subscription loops and unbounded growth of
subscription_data entries, eventually exhausting the pool and
triggering assertion failures in ogs_sbi_subscription_data_add().

This patch introduces a pre-registration cleanup mechanism:

- Send DELETE requests for all subscriptions associated with
  the NF instance before re-registration.
- Perform asynchronous local cleanup in the unsubscribe
  response handler (avoiding use-after-free and double free).
- Add duplicate DELETE guard using subscription flags.
- Improve logging visibility for subscription cleanup flow.

This ensures that stale NRF subscription states are removed
and prevents subscription_data pool exhaustion during
re-registration loops.

Issues: #4207
2026-02-12 16:17:49 +09:00
Md. Amdadul Bari Imad
51f2655333 docker: remove deprecated version from docker-compose.yml
Compose V2 does not require the version key; omit it for compatibility.
2026-02-08 11:55:34 +09:00
Md. Amdadul Bari Imad
7453b5be9a docker: replace deprecated MAINTAINER with OCI image label
Use org.opencontainers.image.authors label instead of deprecated
MAINTAINER instruction in all Dockerfiles.
2026-02-08 11:55:34 +09:00
Sukchan Lee
21ada5e1a7 MME: Defer UE context removal on implicit detach without S1 context
Problem

When the implicit detach timer expires, the MME may initiate local
UE context removal if no S1 context exists.

In the previous implementation, mme_ue_remove() could be triggered
directly from mme_send_delete_session_or_detach() in this path.

This leads to a structural issue:

- The UE context may be freed while the EMM FSM is still processing
  the implicit detach timer event.
- Subsequent FSM operations (state transition, ENTRY/EXIT signals)
  may access the freed mme_ue.
- This results in assertion failures or crashes such as:

  emm_state_registered: Assertion `mme_ue' failed

Analysis

Implicit detach handling executes within the EMM FSM context.
Immediate UE context removal from this path violates the FSM
lifecycle assumption that the context remains valid until the
event handling and state transition complete.

This creates a use-after-free risk and can also cause double-free
depending on concurrent removal paths.

Solution

Introduce deferred UE context removal via FSM:

1. Add a new flag:
     mme_ue->ue_context_will_remove

2. Modify mme_send_delete_session_or_detach():
   - If no S1 context exists, do not remove immediately.
   - Set ue_context_will_remove = true instead.

3. In implicit detach timer handling:
   - Check the flag and select the next state accordingly.

4. Introduce a new FSM state:
     emm_state_ue_context_will_remove

   - UE context removal is performed safely on ENTRY_SIG.

This ensures:

- UE context is not freed inside the original EMM handler.
- FSM lifecycle is preserved.
- Removal happens after state transition.

Impact

- Prevents crashes caused by use-after-free during implicit detach.
- Avoids double-free scenarios.
- Aligns UE context lifecycle with FSM design.

This change only affects implicit detach paths where S1 context
does not exist and does not alter normal detach procedures.

Fixes: #4298
2026-02-08 11:52:44 +09:00
Sukchan Lee
81bb35c390 nrf: Fix serving PLMN counter reset on NF register
NFProfile plmn_list returned from NRF overwrites the local serving
PLMN configuration. Reset num_of_serving_plmn_id instead of the
unused nf_instance->num_of_plmn_id to avoid stale accumulation.

Issues: #4207
2026-02-04 20:51:29 +09:00
Sukchan Lee
d1c5ece759 [mme] Use bitmap-based EBI management to avoid bearer allocation crash
When bearer contexts are migrated between MME-UE objects during UE
context relocation (OLD UE -> NEW UE), the existing ogs_pool-based
EBI tracking could become inconsistent.

In mme_ue_set_imsi(), bearer->ebi_node was freed from the old UE pool
without reserving the same EBI in the new UE context. This allowed
duplicate allocations and eventually exhausted the EBI pool (5..15),
triggering a fatal assertion in mme_bearer_add().

This patch replaces the pool-node based EBI handling with a bitmap
allocator, which is safe across UE context migration and supports
explicit EBI reservation.

Also update related test cases to match the new allocation order.

Fixes: #4294
2026-02-02 22:22:56 +09:00
patrickmcgraw
2fc6516e3c Add Baicells Aurora 243 to hardware list
Have run on the Aurora 243 using Open5gs for 5G SA core services for a few weeks now.
2026-02-01 06:54:46 +09:00
Gaber Stare
7d0026e24e [SBI] Fix double-free
Bug:

A double-free scenario in the error handling path:

When ogs_sbi_send_request_with_sepp_discovery failed, it called
ogs_sbi_xact_remove(xact) internally.
The function then returned false to its caller. The caller
(smf_sbi_discover_and_send) also called ogs_sbi_xact_remove(xact)
on failure.
This caused the discovery_option structure to be freed twice,
leading to the valgrind error:
```
==90== Invalid read of size 8
==90==    at 0x49AFBB6: ogs_sbi_discovery_option_free (message.c:3633)
==90==    by 0x49CC100: ogs_sbi_xact_remove (context.c:2674)
==90==    by 0x407DDDC: smf_sbi_discover_and_send (sbi-path.c:392)
```

Fix:

Now the function follows proper resource ownership semantics:
the caller who creates the transaction is responsible for cleanup
when the function fails, making the error handling consistent and
preventing double-free issues.

Added missing cleanup to ogs_sbi_send_request_to_nf_instance and
af_sbi_discover_and_send.
2026-01-31 20:17:58 +09:00
Sukchan Lee
cd12454764 sgwc: avoid PFCP indirect modify without forwarding tunnel
When handling Create Indirect Data Forwarding Tunnel Request,
SGW-C unconditionally sent a PFCP Session Modification Request
with OGS_PFCP_MODIFY_INDIRECT|CREATE.

However, some session contexts do not contain any indirect
DL/UL forwarding tunnel information, which leads to assertion
failures inside PFCP handling.

This patch checks whether a session actually has an indirect
forwarding tunnel before sending the PFCP modification request,
and logs detailed context information otherwise.

This is the same class of issue previously observed with
Delete Indirect Tunnel handling in issue #4073.

Fixes: #4073
2026-01-27 20:41:19 +09:00
Sukchan Lee
73676a73e6 amf: ignore late SDM_SUBSCRIPTIONS DELETE during re-registration
Fix an AMF crash when a UE sends a new Registration Request immediately
after UE-initiated Deregistration.

In this scenario, SM Context release and SDM subscription DELETE requests
are triggered during deregistration, but their SBI responses may arrive
later while the AMF is already handling a subsequent Registration Request
(Integrity Protected).

Previously, late SDM_SUBSCRIPTIONS DELETE responses were processed in
unexpected GMM states (registered, authentication, initial-context-setup),
leading to ogs_assert_if_reached() and AMF crashes.

This commit changes the behavior to explicitly ignore late
SDM_SUBSCRIPTIONS DELETE responses in such states, treating them as stale
and non-actionable. Fatal assertions in these paths are replaced with
warnings to prevent crashes caused by valid out-of-order SBI responses.

The fix is covered by a new regression test reproducing issue #4209,
including scenarios with and without active PDU sessions.
2026-01-23 11:24:06 +09:00
Vijay Sarvepalli
926256b78d Update to secure secrets using env 2026-01-17 10:45:03 +09:00
Sukchan Lee
8c8b51790d amf,mme: Reject authentication after repeated synch failures
Limit authentication retries on repeated synchronization failures.

When the UE reports consecutive authentication failures with
"synchronization failure" cause, AMF and MME now track the failure
count per authentication procedure and send AUTHENTICATION REJECT
after two attempts, instead of retrying indefinitely.

The counter is reset on authentication state entry.

This aligns the behavior with 3GPP authentication procedures and
prevents infinite authentication loops caused by persistent
synchronization failures.

Issues: #4238
2026-01-14 16:01:43 +09:00
Sukchan Lee
69b53add90 sgwc: fix crash on late BearerResourceFailureIndication
Handle BearerResourceFailureIndication arriving after the associated
S11 transaction has already expired.

Look up the associated S11 transaction before committing the S5-C
transaction, and gracefully drop the indication if the S11 transaction
no longer exists, instead of asserting and crashing.

This prevents a possible remote DoS caused by delayed S5-C failure
indications.

Issues: #4268
2026-01-12 22:21:56 +09:00
Sukchan Lee
f1bbd7b57f sgwc: prevent crash when PGW S5U address is missing in ModifyBearerResponse
When handling ModifyBearerResponse in the OI (Operation Indication) path,
SGW-C assumed that the PGW S5U tunnel address was always initialized.
If the Bearer Context was not parsed and ul_tunnel->remote_ip remained
unset, building the S11 CreateSessionResponse could trigger an assertion
failure and crash the SGW-C process.

Add a defensive check in sgwc_s5c_handle_modify_bearer_response() to
validate the UL tunnel remote IP before proceeding, and return a proper
GTP error instead of aborting. Also replace an assertion with graceful
error handling in the SxA session modification response path.

This prevents a remotely triggerable SGW-C crash (DoS) caused by malformed
or incomplete ModifyBearerResponse messages.

Issues: #4257
2026-01-12 21:46:27 +09:00
Sukchan Lee
d7e850c3c0 Follow-up on #4220, #4221 2026-01-11 16:02:28 +09:00
Sukchan Lee
4a11dfd4f0 sec: handle TLV pool exhaustion gracefully during parsing
Avoid aborting on malformed or oversized GTP messages that exhaust the
internal TLV pool.

- Replace ogs_assert() in ogs_tlv_get() with error handling and NULL return
- Detect TLV allocation and parsing failures in ogs_tlv_parse_block()
- Clean up partially parsed TLVs and return failure instead of aborting
- Limit hexdump size to prevent log flooding on malformed input

This prevents a single malformed message from crashing SGW-C/PGW-C/MME
and ensures graceful failure when TLV allocation or parsing fails.

Issues: #4234
2026-01-11 14:32:35 +09:00
Sukchan Lee
2f7cf08969 Follow-up on #4226 2026-01-11 11:38:39 +09:00
Sukchan Lee
b19cf6a2db sgwc: Avoid crash on orphan S5-C responses without S11 transaction
SGW-C could be forced to abort when handling a crafted or delayed
S5-C response (Create/Modify/Delete Session) if the associated S11
transaction no longer exists.

The S5-C handler assumed that the corresponding S11 transaction is
always present and unconditionally asserted its existence, leading
to a process abort and denial-of-service.

This change removes the fatal assertion and safely handles the case
where the associated S11 transaction cannot be found by logging an
error and ignoring the response.

Issues: #4226
2026-01-11 11:35:36 +09:00
Sukchan Lee
98f76e98df sgwc/smf: handle late or orphan GTPv2 responses without abort
Prevent SGW-C and SMF from aborting when receiving late or orphan
GTPv2 bearer responses (Create/Update/Delete Bearer).

This change removes fatal assertions on missing UE/session contexts
and instead treats such cases as "Context Not Found" per 3GPP
TS 29.274.

In addition, improve FSM-level UE/session lookup by retrying context
identification using the locally stored TEID when the received TEID
is missing, zero, or no longer valid. This aligns the behavior with
TS 29.274 §5.5.2 and allows graceful handling of late responses after
context cleanup.

Together, these changes ensure that late or orphan GTPv2 responses
never crash SGW-C or SMF and are handled gracefully.

Issues: #4225
2026-01-11 11:23:56 +09:00
Sukchan Lee
8675440158 mme: avoid crash on late ESM/NAS handling after UE context release
Handle late or out-of-order ESM/NAS events more safely by removing
assert-based assumptions on runtime UE/S1 contexts.

Replace fatal assertions with defensive runtime checks in ESM, NAS,
GTP, and S11 paths so that late messages received after bearer/session
or eNB-UE context release do not terminate the MME process.

This allows ongoing GTP/S11 procedures to continue or clean up safely
while gracefully handling missing S1 context, improving robustness
under real-world race conditions.

Issues: #4236
2026-01-03 10:51:37 +09:00
Sukchan Lee
5aaa09907e sgwc: validate mandatory IEs and handle missing bearer context safely
Add explicit error handling for missing EPS Bearer ID and S5/S8 U F-TEID
in Create Session Response processing. Instead of breaking out of the
loop, immediately send an appropriate GTPv2 error response and abort
processing.

Also handle the case where the referenced bearer context does not exist
by returning CONTEXT_NOT_FOUND, and add missing error logs for failed
F-TEID to IP conversion.

These changes prevent silent failures and ensure correct GTP error
signaling toward the MME.

Issues: #4224
2025-12-30 16:20:55 +09:00