Projects
osmocom:nightly
open5gs
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 1228
View file
open5gs_2.7.6.4799.6a1d.202511031800.dsc -> open5gs_2.7.6.4801.348d.202511041800.dsc
Changed
@@ -2,7 +2,7 @@ Source: open5gs 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 Architecture: any -Version: 2.7.6.4799.6a1d.202511031800 +Version: 2.7.6.4801.348d.202511041800 Maintainer: Harald Welte <laforge@gnumonks.org> Uploaders: Sukchan Lee <acetcom@gmail.com> Homepage: https://open5gs.org @@ -32,8 +32,8 @@ open5gs-udr deb net optional arch=any open5gs-upf deb net optional arch=any Checksums-Sha1: - 030e96de031f3d8cd8e66ad3329f90c0a22011ee 15089040 open5gs_2.7.6.4799.6a1d.202511031800.tar.xz + 8e769f181856304b33b7d6f9a118cb7cf2551700 15089128 open5gs_2.7.6.4801.348d.202511041800.tar.xz Checksums-Sha256: - 30707137f933fbf826d07275d89b800cd98514eeb4d59b807c087d3c487ff67d 15089040 open5gs_2.7.6.4799.6a1d.202511031800.tar.xz + 9bc82c40ffa9f0960e3f4499412d382dc07165cb895bb886f7dca68754a30557 15089128 open5gs_2.7.6.4801.348d.202511041800.tar.xz Files: - ff47761bb805c7aae705da789061c746 15089040 open5gs_2.7.6.4799.6a1d.202511031800.tar.xz + 068ffc35c3d9170201f3d23b1727aa5e 15089128 open5gs_2.7.6.4801.348d.202511041800.tar.xz
View file
open5gs_2.7.6.4799.6a1d.202511031800.tar.xz/.tarball-version -> open5gs_2.7.6.4801.348d.202511041800.tar.xz/.tarball-version
Changed
@@ -1 +1 @@ -2.7.6.4799-6a1d.202511031800 +2.7.6.4801-348d.202511041800
View file
open5gs_2.7.6.4799.6a1d.202511031800.tar.xz/debian/changelog -> open5gs_2.7.6.4801.348d.202511041800.tar.xz/debian/changelog
Changed
@@ -1,8 +1,8 @@ -open5gs (2.7.6.4799.6a1d.202511031800) unstable; urgency=medium +open5gs (2.7.6.4801.348d.202511041800) unstable; urgency=medium * Automatically generated changelog entry for building the Osmocom nightly feed - -- Osmocom OBS scripts <info@osmocom.org> Mon, 03 Nov 2025 18:02:07 +0000 + -- Osmocom OBS scripts <info@osmocom.org> Tue, 04 Nov 2025 18:02:10 +0000 open5gs (2.7.6) unstable; urgency=medium
View file
open5gs_2.7.6.4799.6a1d.202511031800.tar.xz/src/sgwc/context.c -> open5gs_2.7.6.4801.348d.202511041800.tar.xz/src/sgwc/context.c
Changed
@@ -418,14 +418,20 @@ ogs_pfcp_self()->pfcp_node = ogs_list_last(&ogs_pfcp_self()->pfcp_peer_list); - /* setup GTP session with selected SGW-U */ - ogs_pfcp_self()->pfcp_node = - selected_sgwu_node(ogs_pfcp_self()->pfcp_node, sess); - ogs_assert(ogs_pfcp_self()->pfcp_node); - OGS_SETUP_PFCP_NODE(sess, ogs_pfcp_self()->pfcp_node); - ogs_debug("UE using SGW-U on IP %s", - ogs_sockaddr_to_string_static( - ogs_pfcp_self()->pfcp_node->addr_list)); + if (ogs_pfcp_self()->pfcp_node) { + + /* setup GTP session with selected SGW-U */ + ogs_pfcp_self()->pfcp_node = + selected_sgwu_node(ogs_pfcp_self()->pfcp_node, sess); + ogs_assert(ogs_pfcp_self()->pfcp_node); + OGS_SETUP_PFCP_NODE(sess, ogs_pfcp_self()->pfcp_node); + ogs_debug("UE using SGW-U on IP %s", + ogs_sockaddr_to_string_static( + ogs_pfcp_self()->pfcp_node->addr_list)); + } else { + ogs_error("No suitable SGWU found for session"); + ogs_assert(sess->pfcp_node == NULL); + } } int sgwc_sess_remove(sgwc_sess_t *sess)
View file
open5gs_2.7.6.4799.6a1d.202511031800.tar.xz/src/sgwc/s11-handler.c -> open5gs_2.7.6.4801.348d.202511041800.tar.xz/src/sgwc/s11-handler.c
Changed
@@ -291,6 +291,16 @@ /* Select SGW-U based on UE Location Information */ sgwc_sess_select_sgwu(sess); + if (!sess->pfcp_node) { + ogs_error("%s:%s No SGWU available for session", + sgwc_ue->imsi_bcd, sess->session.name); + ogs_gtp_send_error_message( + s11_xact, sgwc_ue ? sgwc_ue->mme_s11_teid : 0, + OGS_GTP2_CREATE_SESSION_RESPONSE_TYPE, + OGS_GTP2_CAUSE_SYSTEM_FAILURE); + return; + } + /* Check if selected SGW-U is associated with SGW-C */ ogs_assert(sess->pfcp_node); if (!OGS_FSM_CHECK(&sess->pfcp_node->sm, sgwc_pfcp_state_associated)) {
View file
open5gs_2.7.6.4799.6a1d.202511031800.tar.xz/src/smf/nsmf-handler.c -> open5gs_2.7.6.4801.348d.202511041800.tar.xz/src/smf/nsmf-handler.c
Changed
@@ -491,8 +491,14 @@ /* Select UPF based on UE Location Information */ smf_sess_select_upf(sess); + /* Check if UPF selection was successful */ + if (!sess->pfcp_node) { + ogs_error("%s:%d No UPF available for session", + smf_ue->supi, sess->psi); + return false; + } + /* Check if selected UPF is associated with SMF */ - ogs_assert(sess->pfcp_node); if (!OGS_FSM_CHECK(&sess->pfcp_node->sm, smf_pfcp_state_associated)) { ogs_error("%s:%d No associated UPF", smf_ue->supi, sess->psi); return false;
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.