Change in osmo-ttcn3-hacks[master]: msc: Separate as_GSUP_SAI from f_mm_auth

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/.

Harald Welte gerrit-no-reply at lists.osmocom.org
Sun May 12 10:16:39 UTC 2019


Harald Welte has submitted this change and it was merged. ( https://gerrit.osmocom.org/13937 )

Change subject: msc: Separate as_GSUP_SAI from f_mm_auth
......................................................................

msc: Separate as_GSUP_SAI from f_mm_auth

In some cases we might want to match on (and perform) the GSUP
SEND AUTH INFO without also expecting/performing a MM authentication
on the Iu/A interface.  Hence it makes sense to split those two.

Change-Id: I7b298d589930bab976b478ac84553a6352f25c93
---
M msc/BSC_ConnectionHandler.ttcn
1 file changed, 24 insertions(+), 19 deletions(-)

Approvals:
  Jenkins Builder: Verified
  Harald Welte: Looks good to me, approved



diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 9fc0616..93a311e 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -379,34 +379,39 @@
 	return l3_info;
 }
 
+altstep as_GSUP_SAI() runs on BSC_ConnHdlr {
+var GSUP_IE auth_tuple;
+[] GSUP.receive(tr_GSUP_SAI_REQ(g_pars.imsi)) {
+	if (g_pars.use_umts_aka) {
+		g_pars.vec := f_gen_auth_vec_3g();
+		auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G3G(g_pars.vec.rand,
+								g_pars.vec.sres,
+								g_pars.vec.kc,
+								g_pars.vec.ik,
+								g_pars.vec.ck,
+								g_pars.vec.autn,
+								g_pars.vec.res));
+		GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
+	} else {
+		g_pars.vec := f_gen_auth_vec_2g();
+		auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G(g_pars.vec.rand,
+								g_pars.vec.sres,
+								g_pars.vec.kc));
+		GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
+	}
+	}
+}
+
 function f_mm_auth() runs on BSC_ConnHdlr
 {
 	if (g_pars.net.expect_auth) {
-		var GSUP_IE auth_tuple;
-		GSUP.receive(tr_GSUP_SAI_REQ(g_pars.imsi));
-
+		as_GSUP_SAI();
 		if (g_pars.use_umts_aka) {
-			g_pars.vec := f_gen_auth_vec_3g();
-			auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G3G(g_pars.vec.rand,
-									g_pars.vec.sres,
-									g_pars.vec.kc,
-									g_pars.vec.ik,
-									g_pars.vec.ck,
-									g_pars.vec.autn,
-									g_pars.vec.res));
-			GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
-
 			BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ_3G(g_pars.vec.rand, g_pars.vec.autn)));
 			var OCT4 res := substr(g_pars.vec.res, 0, 4);
 			var OCT4 xres := substr(g_pars.vec.res, 4, 4);
 			BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_3G(res, xres)));
 		} else {
-			g_pars.vec := f_gen_auth_vec_2g();
-			auth_tuple := valueof(ts_GSUP_IE_AuthTuple2G(g_pars.vec.rand,
-									g_pars.vec.sres,
-									g_pars.vec.kc));
-			GSUP.send(ts_GSUP_SAI_RES(g_pars.imsi, auth_tuple));
-
 			BSSAP.receive(tr_PDU_DTAP_MT(tr_ML3_MT_MM_AUTH_REQ(g_pars.vec.rand)));
 			BSSAP.send(ts_PDU_DTAP_MO(ts_ML3_MT_MM_AUTH_RESP_2G(g_pars.vec.sres)));
 		}

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

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I7b298d589930bab976b478ac84553a6352f25c93
Gerrit-Change-Number: 13937
Gerrit-PatchSet: 3
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder (1000002)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190512/551be991/attachment.htm>


More information about the gerrit-log mailing list