Change in osmo-iuh[master]: osmo-hnbgw: reply with RESET ACK when receiving a RESET

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

Neels Hofmeyr gerrit-no-reply at lists.osmocom.org
Wed Mar 6 14:07:57 UTC 2019


Neels Hofmeyr has uploaded this change for review. ( https://gerrit.osmocom.org/13147


Change subject: osmo-hnbgw: reply with RESET ACK when receiving a RESET
......................................................................

osmo-hnbgw: reply with RESET ACK when receiving a RESET

Rationale: current osmo-msc refactoring introduces RESET handling on IuCS.

In particular, it makes osmo-hnbgw be able to operate with an (upcoming)
osmo-msc that has strict RESET handling: it will send a RESET and require a
RESET ACK if it sees a new IuCS peer sending messages without prior RESET.

Even though a workaround to ignore missing RESET messages on IuCS will also be
in place in the new osmo-msc, this is a first small step towards more sane
RESET handling in osmo-hnbgw.

Related: OS#3820
Change-Id: I02bc74ef9fef61f4490b4d4dc3ce6c0a6d965909
---
M src/hnbgw_cn.c
1 file changed, 43 insertions(+), 10 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/47/13147/1

diff --git a/src/hnbgw_cn.c b/src/hnbgw_cn.c
index 3be592e..0623561 100644
--- a/src/hnbgw_cn.c
+++ b/src/hnbgw_cn.c
@@ -34,6 +34,7 @@
 #include <osmocom/ranap/ranap_ies_defs.h>
 #include <osmocom/ranap/ranap_msg_factory.h>
 #include <osmocom/iuh/context_map.h>
+#include <osmocom/hnbap/CN-DomainIndicator.h>
 
 /***********************************************************************
  * Outbound RANAP RESET to CN
@@ -62,6 +63,23 @@
 					 msg);
 }
 
+static int transmit_reset_ack(struct hnb_gw *gw, RANAP_CN_DomainIndicator_t domain,
+			      const struct osmo_sccp_addr *remote_addr)
+{
+	struct msgb *msg;
+
+	LOGP(DRANAP, LOGL_NOTICE, "Tx RESET ACK to %s %s\n",
+	     domain == CN_DomainIndicator_cs_domain ? "IuCS" : "IuPS",
+	     osmo_sccp_inst_addr_name(gw->sccp.cnlink->sccp, remote_addr));
+
+	msg = ranap_new_msg_reset_ack(domain, NULL);
+
+	return osmo_sccp_tx_unitdata_msg(gw->sccp.cnlink->sccp_user,
+					 &gw->sccp.local_addr,
+					 remote_addr,
+					 msg);
+}
+
 /* Timer callback once T_RafC expires */
 static void cnlink_trafc_cb(void *data)
 {
@@ -98,15 +116,28 @@
  ***********************************************************************/
 
 static int cn_ranap_rx_reset_cmd(struct hnbgw_cnlink *cnlink,
+				 const struct osmo_scu_unitdata_param *unitdata,
 				 RANAP_InitiatingMessage_t *imsg)
 {
+	CN_DomainIndicator_t domain;
 	RANAP_ResetIEs_t ies;
 	int rc;
 
 	rc = ranap_decode_reseties(&ies, &imsg->value);
-	/* FIXME: reset resources and return reset ack */
-
+	domain = ies.cN_DomainIndicator;
 	ranap_free_reseties(&ies);
+
+	LOGP(DRANAP, LOGL_NOTICE, "Rx RESET from %s %s, returning ACK\n",
+	     domain == CN_DomainIndicator_cs_domain ? "IuCS" : "IuPS",
+	     osmo_sccp_inst_addr_name(cnlink->sccp, &unitdata->calling_addr));
+
+	/* FIXME: actually reset connections, if any */
+
+	if (transmit_reset_ack(cnlink->gw, domain, &unitdata->calling_addr))
+		LOGP(DRANAP, LOGL_ERROR, "Error: cannot send RESET ACK to %s %s\n",
+		     domain == CN_DomainIndicator_cs_domain ? "IuCS" : "IuPS",
+		     osmo_sccp_inst_addr_name(cnlink->sccp, &unitdata->calling_addr));
+
 	return rc;
 }
 
@@ -148,12 +179,13 @@
 }
 
 static int cn_ranap_rx_initiating_msg(struct hnbgw_cnlink *cnlink,
+				      const struct osmo_scu_unitdata_param *unitdata,
 				      RANAP_InitiatingMessage_t *imsg,
 				      const uint8_t *data, unsigned int len)
 {
 	switch (imsg->procedureCode) {
 	case RANAP_ProcedureCode_id_Reset:
-		return cn_ranap_rx_reset_cmd(cnlink, imsg);
+		return cn_ranap_rx_reset_cmd(cnlink, unitdata, imsg);
 	case RANAP_ProcedureCode_id_Paging:
 		return cn_ranap_rx_paging_cmd(cnlink, imsg, data, len);
 	case RANAP_ProcedureCode_id_OverloadControl: /* Overload ind */
@@ -197,14 +229,15 @@
 }
 
 
-static int _cn_ranap_rx(struct hnbgw_cnlink *cnlink, RANAP_RANAP_PDU_t *pdu,
-			const uint8_t *data, unsigned int len)
+static int _cn_ranap_rx(struct hnbgw_cnlink *cnlink,
+			const struct osmo_scu_unitdata_param *unitdata,
+			RANAP_RANAP_PDU_t *pdu, const uint8_t *data, unsigned int len)
 {
 	int rc;
 
 	switch (pdu->present) {
 	case RANAP_RANAP_PDU_PR_initiatingMessage:
-		rc = cn_ranap_rx_initiating_msg(cnlink, &pdu->choice.initiatingMessage,
+		rc = cn_ranap_rx_initiating_msg(cnlink, unitdata, &pdu->choice.initiatingMessage,
 						data, len);
 		break;
 	case RANAP_RANAP_PDU_PR_successfulOutcome:
@@ -226,8 +259,8 @@
 	return rc;
 }
 
-static int handle_cn_ranap(struct hnbgw_cnlink *cnlink, const uint8_t *data,
-			   unsigned int len)
+static int handle_cn_ranap(struct hnbgw_cnlink *cnlink, const struct osmo_scu_unitdata_param *unitdata,
+			   const uint8_t *data, unsigned int len)
 {
 	RANAP_RANAP_PDU_t _pdu, *pdu = &_pdu;
 	asn_dec_rval_t dec_ret;
@@ -241,7 +274,7 @@
 		return -1;
 	}
 
-	rc = _cn_ranap_rx(cnlink, pdu, data, len);
+	rc = _cn_ranap_rx(cnlink, unitdata, pdu, data, len);
 
 	return rc;
 }
@@ -285,7 +318,7 @@
 	if (classify_cn_remote_addr(cnlink->gw, &param->calling_addr, NULL) < 0)
 		return -1;
 
-	return handle_cn_ranap(cnlink, msgb_l2(oph->msg), msgb_l2len(oph->msg));
+	return handle_cn_ranap(cnlink, param, msgb_l2(oph->msg), msgb_l2len(oph->msg));
 }
 
 static int handle_cn_conn_conf(struct hnbgw_cnlink *cnlink,

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

Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I02bc74ef9fef61f4490b4d4dc3ce6c0a6d965909
Gerrit-Change-Number: 13147
Gerrit-PatchSet: 1
Gerrit-Owner: Neels Hofmeyr <nhofmeyr at sysmocom.de>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20190306/ad629084/attachment.htm>


More information about the gerrit-log mailing list