Change in osmo-ttcn3-hacks[master]: msc: Validate RTP addr+port passed from MNCC to MGCP MDCX

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

pespin gerrit-no-reply at lists.osmocom.org
Thu Sep 10 16:09:53 UTC 2020


pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/20061 )


Change subject: msc: Validate RTP addr+port passed from MNCC to MGCP MDCX
......................................................................

msc: Validate RTP addr+port passed from MNCC to MGCP MDCX

Change-Id: I0b53643ed3a8f8550b2ea6e8832068d603a676e1
---
M msc/BSC_ConnectionHandler.ttcn
1 file changed, 21 insertions(+), 7 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/61/20061/1

diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 9218c76..6ea4f86 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -1022,14 +1022,28 @@
 
 		/* MDCX setting up the CN side remote RTP address received from MNCC CONNECT */
 		[] MGCP.receive(tr_MDCX) -> value mgcp_cmd {
+			var SDP_Message sdp;
 			log("f_mt_call_complete 9");
-			var SDP_Message sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
-								hex2str(cpars.mgcp_call_id), "42",
-								cpars.mgw_conn_2.mgw_rtp_port,
-								{ int2str(cpars.rtp_payload_type) },
-								{ valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
-											cpars.rtp_sdp_format)),
-								  valueof(ts_SDP_ptime(20)) }));
+
+			if (isvalue(mgcp_cmd.sdp)) {
+				sdp := mgcp_cmd.sdp;
+				if (sdp.media_list[0].media_field.ports.port_number != cpars.mncc_rtp_port) {
+					setverdict(fail, "Wrong MDCX Connection port received, expected ", cpars.mncc_rtp_port, " and received ", sdp.media_list[0].media_field.ports.port_number)
+					mtc.stop;
+				}
+				if (sdp.connection.conn_addr.addr != cpars.mncc_rtp_ip) {
+					setverdict(fail, "Wrong MDCX Connection address received, expected ", cpars.mncc_rtp_ip, " and received ", sdp.connection.conn_addr.addr)
+					mtc.stop;
+				}
+			}
+
+			sdp := valueof(ts_SDP(cpars.mgw_conn_2.mgw_rtp_ip, cpars.mgw_conn_2.mgw_rtp_ip,
+						hex2str(cpars.mgcp_call_id), "42",
+						cpars.mgw_conn_2.mgw_rtp_port,
+						{ int2str(cpars.rtp_payload_type) },
+						{ valueof(ts_SDP_rtpmap(cpars.rtp_payload_type,
+									cpars.rtp_sdp_format)),
+						  valueof(ts_SDP_ptime(20)) }));
 			MGCP.send(ts_MDCX_ACK(mgcp_cmd.line.trans_id, cpars.mgw_conn_2.mgcp_connection_id, sdp));
 			}
 

-- 
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/20061
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I0b53643ed3a8f8550b2ea6e8832068d603a676e1
Gerrit-Change-Number: 20061
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20200910/44a23fbb/attachment.htm>


More information about the gerrit-log mailing list