aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-11-07 19:40:57 +0100
committerlaforge <laforge@osmocom.org>2019-11-12 14:18:39 +0000
commit81d2f1e50277cf7f57b753f5ef00c333ecbc57bc (patch)
tree45709d6c6372081214fd2d6f62948e80966a2f0f
parent173dd627cd3e2c0ea3e3a4ac6040115381c05ee5 (diff)
xua: ipa_asp_fsm: Allow receiving IPA ID ACK before IPA ID RESP
Since there's no official spec for IPA and some implementations seem to like sending the IPA ID ACK before the IPA ID RESP, let's catch it and feed it after we receive the IPA ID RESP and we are in correct state. Otherwise the connection would deadlock during the initial handshake. That's the case with our TTCN3 IPA implementation running STP_Tests suite. Change-Id: I99f5346a3854ca07979020245897334197f3cd3b
-rw-r--r--src/xua_asp_fsm.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/src/xua_asp_fsm.c b/src/xua_asp_fsm.c
index 0a84f28..e09c46c 100644
--- a/src/xua_asp_fsm.c
+++ b/src/xua_asp_fsm.c
@@ -768,6 +768,8 @@ struct ipa_asp_fsm_priv {
struct ipaccess_unit *ipa_unit;
/* Timer for tracking if no PONG is received in response to PING */
struct osmo_timer_list pong_timer;
+ /* Did we receive IPA ID ACK before IPA ID RESP ? */
+ bool ipa_id_ack_rcvd;
};
enum ipa_asp_fsm_t {
@@ -857,8 +859,20 @@ static void ipa_asp_fsm_wait_id_resp(struct osmo_fsm_inst *fi, uint32_t event, v
if (fd >= 0) {
ipaccess_send_id_ack(fd);
osmo_fsm_inst_state_chg(fi, IPA_ASP_S_WAIT_ID_ACK2, 10, T_WAIT_ID_ACK);
+ /* If we received the ACK beforehand, submit it now */
+ if (iafp->ipa_id_ack_rcvd) {
+ iafp->ipa_id_ack_rcvd = false;
+ osmo_fsm_inst_dispatch(fi, IPA_ASP_E_ID_ACK, NULL);
+ }
}
break;
+ case IPA_ASP_E_ID_ACK:
+ /* Since there's no official spec for IPA and some
+ implementations seem to like sending the IPA ID ACK before
+ the IPA ID RESP, let's catch it and feed it after we receive
+ the IPA ID RESP and we are in correct state */
+ iafp->ipa_id_ack_rcvd = true;
+ break;
}
return;
out_err:
@@ -1058,7 +1072,8 @@ static const struct osmo_fsm_state ipa_asp_states[] = {
},
/* Server Side */
[IPA_ASP_S_WAIT_ID_RESP] = {
- .in_event_mask = S(IPA_ASP_E_ID_RESP),
+ .in_event_mask = S(IPA_ASP_E_ID_RESP) |
+ S(IPA_ASP_E_ID_ACK),
.out_state_mask = S(IPA_ASP_S_WAIT_ID_ACK2) |
S(IPA_ASP_S_DOWN),
.name = "WAIT_ID_RESP",