Re: [PATCH] sctp: check assoc before SCTP_ADDR_{MADE_PRIM,ADDED} event

From: Marcelo Ricardo Leitner
Date: Wed May 13 2020 - 12:01:33 EST


On Wed, May 13, 2020 at 04:52:16PM +0200, Jonas Falkevik wrote:
> Do not generate SCTP_ADDR_{MADE_PRIM,ADDED} events for SCTP_FUTURE_ASSOC assocs.

How did you get them?

I'm thinking you're fixing a side-effect of another issue here. For
example, in sctp_assoc_update(), it first calls sctp_assoc_add_peer()
to only then call sctp_assoc_set_id(), which would generate the event
you might have seen. In this case, it should be allocating IDR before,
so that the event can be sent with the right assoc_id already.

>
> These events are described in rfc6458#section-6.1
> SCTP_PEER_ADDR_CHANGE:
> This tag indicates that an address that is
> part of an existing association has experienced a change of
> state (e.g., a failure or return to service of the reachability
> of an endpoint via a specific transport address).
>
> Signed-off-by: Jonas Falkevik <jonas.falkevik@xxxxxxxxx>
> ---
> net/sctp/associola.c | 11 ++++++++---
> 1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/net/sctp/associola.c b/net/sctp/associola.c
> index 437079a4883d..0c5dd295f9b8 100644
> --- a/net/sctp/associola.c
> +++ b/net/sctp/associola.c
> @@ -432,8 +432,10 @@ void sctp_assoc_set_primary(struct sctp_association *asoc,
> changeover = 1 ;
>
> asoc->peer.primary_path = transport;
> - sctp_ulpevent_nofity_peer_addr_change(transport,
> - SCTP_ADDR_MADE_PRIM, 0);
> + if (sctp_assoc2id(asoc) != SCTP_FUTURE_ASSOC)
> + sctp_ulpevent_nofity_peer_addr_change(transport,
> + SCTP_ADDR_MADE_PRIM,
> + 0);
>
> /* Set a default msg_name for events. */
> memcpy(&asoc->peer.primary_addr, &transport->ipaddr,
> @@ -714,7 +716,10 @@ struct sctp_transport *sctp_assoc_add_peer(struct
> sctp_association *asoc,
> list_add_tail_rcu(&peer->transports, &asoc->peer.transport_addr_list);
> asoc->peer.transport_count++;
>
> - sctp_ulpevent_nofity_peer_addr_change(peer, SCTP_ADDR_ADDED, 0);
> + if (sctp_assoc2id(asoc) != SCTP_FUTURE_ASSOC)
> + sctp_ulpevent_nofity_peer_addr_change(peer,
> + SCTP_ADDR_ADDED,
> + 0);
>
> /* If we do not yet have a primary path, set one. */
> if (!asoc->peer.primary_path) {
> --
> 2.25.3