Change in osmo-pcu[master]: pdch: Validate poll reason matches in rcv_control_(egprs)_dl_ack_nack()

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
Mon Oct 11 17:56:53 UTC 2021


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


Change subject: pdch: Validate poll reason matches in rcv_control_(egprs)_dl_ack_nack()
......................................................................

pdch: Validate poll reason matches in rcv_control_(egprs)_dl_ack_nack()

If we didn't expect this kind of UL messages according to pdch ULC, then
we shouldn't allow going forward and releasing the ULC entry: let it
time out instead so that TBF runs whatever appopiate action is needed in
this case, be it retransamission, releasing itself, etc.

Change-Id: I8ab3f5e4f2f802944269453db13a80c9ede67714
---
M src/pdch.cpp
1 file changed, 4 insertions(+), 2 deletions(-)



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

diff --git a/src/pdch.cpp b/src/pdch.cpp
index cfec71e..807ce45 100644
--- a/src/pdch.cpp
+++ b/src/pdch.cpp
@@ -463,7 +463,8 @@
 
 	tfi = ack_nack->DOWNLINK_TFI;
 	poll = pdch_ulc_get_node(ulc, fn);
-	if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL) {
+	if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL ||
+	    poll->tbf_poll.reason != PDCH_ULC_POLL_DL_ACK) {
 		LOGPDCH(this, DRLCMAC, LOGL_NOTICE, "PACKET DOWNLINK ACK with "
 			"unknown FN=%u TFI=%d (TRX %d TS %d)\n",
 			fn, tfi, trx_no(), ts_no);
@@ -532,7 +533,8 @@
 
 	tfi = ack_nack->DOWNLINK_TFI;
 	poll = pdch_ulc_get_node(ulc, fn);
-	if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL) {
+	if (!poll || poll->type != PDCH_ULC_NODE_TBF_POLL ||
+	    poll->tbf_poll.reason != PDCH_ULC_POLL_DL_ACK) {
 		LOGPDCH(this, DRLCMAC, LOGL_NOTICE, "EGPRS PACKET DOWNLINK ACK with "
 			"unknown FN=%u TFI=%d (TRX %d TS %d)\n",
 			fn, tfi, trx_no(), ts_no);

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

Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I8ab3f5e4f2f802944269453db13a80c9ede67714
Gerrit-Change-Number: 25747
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/20211011/3a1e1324/attachment.htm>


More information about the gerrit-log mailing list