Change in osmo-msc[master]: vlr_sgs: fix SGs IMSI detech from non EPS services

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.

dexter gerrit-no-reply at lists.osmocom.org
Tue Apr 2 15:01:11 UTC 2019


dexter has uploaded this change for review. ( https://gerrit.osmocom.org/13493


Change subject: vlr_sgs: fix SGs IMSI detech from non EPS services
......................................................................

vlr_sgs: fix SGs IMSI detech from non EPS services

When the subscriber is detached from non EPS services while the
SGs-association is not SGs-NULL, it needs to be removed from the VLR
database.

Change-Id: I575cf6036ad39468f590b2d57a06cd3512a4c31c
Related: OS#3614
---
M src/libvlr/vlr_sgs.c
1 file changed, 12 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-msc refs/changes/93/13493/1

diff --git a/src/libvlr/vlr_sgs.c b/src/libvlr/vlr_sgs.c
index 8614892..538c9f2 100644
--- a/src/libvlr/vlr_sgs.c
+++ b/src/libvlr/vlr_sgs.c
@@ -131,10 +131,17 @@
 {
 	struct vlr_subscr *vsub;
 	enum sgs_ue_fsm_event evt;
+
 	vsub = vlr_subscr_find_by_imsi(vlr, imsi);
 	if (!vsub)
 		return;
 
+	/* See also: 3GPP TS 29.118, 5.6.3 Procedures in the VLR: In case of
+	 * an implicit detach, we are supposed to check if the state of the
+	 * SGs-association, and only when it is not SGs-NULL, we may proceed. */
+	if (vsub->sgs_fsm->state == SGS_UE_ST_NULL && type == SGSAP_ID_NONEPS_T_IMPLICIT_UE_EPS_NONEPS)
+		return;
+
 	switch (type) {
 	case SGSAP_ID_NONEPS_T_EXPLICIT_UE_NONEPS:
 		evt = SGS_UE_E_RX_DETACH_IND_FROM_UE;
@@ -153,6 +160,11 @@
 
 	osmo_fsm_inst_dispatch(vsub->sgs_fsm, evt, NULL);
 	vlr_subscr_put(vsub);
+
+	/* Detaching from non EPS services essentially means that the
+	 * subscriber is detached from 2G. In any case the VLR will
+	 * get rid of the subscriber. */
+	vlr_subscr_expire(vsub);
 }
 
 /*! Perform an SGs EPS detach.

-- 
To view, visit https://gerrit.osmocom.org/13493
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-msc
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I575cf6036ad39468f590b2d57a06cd3512a4c31c
Gerrit-Change-Number: 13493
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier at sysmocom.de>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190402/55f742e6/attachment.htm>


More information about the gerrit-log mailing list