LKML Archive on lore.kernel.org help / color / mirror / Atom feed
* Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached [not found] <CAFXGftKp3=OfjkCVBuR-zM3+uZ42Sk_9i2UjAHBNnbX=hQJwpA@mail.gmail.com> @ 2015-01-23 10:25 ` Sun Paul 2015-01-23 11:50 ` Daniel Borkmann 2015-01-23 16:08 ` Fwd: " Vlad Yasevich 0 siblings, 2 replies; 14+ messages in thread From: Sun Paul @ 2015-01-23 10:25 UTC (permalink / raw) To: linux-sctp, netdev, linux-kernel Hi I would like to check the behave in LKSCTP. we are running DIAMETER message over SCTP, and we have set the parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. We noticed that when remote peer have retry to send the same request for 4 times, the LKSCTP will initiate an ABORT chunk with reason "association exceeded its max_retrans count". We would like to know whether this is the correct behavior? is there any other option that we can alter in order to avoid the ABORT chunk being sent? Thanks PS ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 10:25 ` Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached Sun Paul @ 2015-01-23 11:50 ` Daniel Borkmann 2015-01-23 16:05 ` Vlad Yasevich 2015-01-23 16:08 ` Fwd: " Vlad Yasevich 1 sibling, 1 reply; 14+ messages in thread From: Daniel Borkmann @ 2015-01-23 11:50 UTC (permalink / raw) To: Sun Paul; +Cc: linux-sctp, netdev, linux-kernel, vyasevich Hi, On 01/23/2015 11:25 AM, Sun Paul wrote: ... > I would like to check the behave in LKSCTP. > > we are running DIAMETER message over SCTP, and we have set the > parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. > > We noticed that when remote peer have retry to send the same request > for 4 times, the LKSCTP will initiate an ABORT chunk with reason > "association exceeded its max_retrans count". > > We would like to know whether this is the correct behavior? is there > any other option that we can alter in order to avoid the ABORT chunk > being sent? I don't recall the RFC saying to send an ABORT, but let me double check in the mean time. Hmm, untested, but could you try something like that? diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index fef2acd..5ce198d 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, SCTP_ULPEVENT(event)); - if (asoc->overall_error_count >= asoc->max_retrans) { + if (asoc->overall_error_count >= asoc->max_retrans && + error != SCTP_ERROR_NO_ERROR) { abort = sctp_make_violation_max_retrans(asoc, chunk); if (abort) sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 11:50 ` Daniel Borkmann @ 2015-01-23 16:05 ` Vlad Yasevich 2015-01-23 17:10 ` Daniel Borkmann 0 siblings, 1 reply; 14+ messages in thread From: Vlad Yasevich @ 2015-01-23 16:05 UTC (permalink / raw) To: Daniel Borkmann, Sun Paul; +Cc: linux-sctp, netdev, linux-kernel On 01/23/2015 06:50 AM, Daniel Borkmann wrote: > Hi, > > On 01/23/2015 11:25 AM, Sun Paul wrote: > ... >> I would like to check the behave in LKSCTP. >> >> we are running DIAMETER message over SCTP, and we have set the >> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. >> >> We noticed that when remote peer have retry to send the same request >> for 4 times, the LKSCTP will initiate an ABORT chunk with reason >> "association exceeded its max_retrans count". >> >> We would like to know whether this is the correct behavior? is there >> any other option that we can alter in order to avoid the ABORT chunk >> being sent? > > I don't recall the RFC saying to send an ABORT, but let me double > check in the mean time. The RFC is silent on the matter. The abort got added in 3.8 so it's been there for a while. > > Hmm, untested, but could you try something like that? > > diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c > index fef2acd..5ce198d 100644 > --- a/net/sctp/sm_sideeffect.c > +++ b/net/sctp/sm_sideeffect.c > @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, > sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, > SCTP_ULPEVENT(event)); > > - if (asoc->overall_error_count >= asoc->max_retrans) { > + if (asoc->overall_error_count >= asoc->max_retrans && > + error != SCTP_ERROR_NO_ERROR) { > abort = sctp_make_violation_max_retrans(asoc, chunk); > if (abort) > sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, This would pretty much stop all ABORTs due to excessive rtx. Might as well take the code out :). I was a bit concerned about this ABORT when it went in. -vlad ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 16:05 ` Vlad Yasevich @ 2015-01-23 17:10 ` Daniel Borkmann 2015-01-23 18:30 ` Vlad Yasevich 2015-01-23 18:36 ` Michael Tuexen 0 siblings, 2 replies; 14+ messages in thread From: Daniel Borkmann @ 2015-01-23 17:10 UTC (permalink / raw) To: Vlad Yasevich; +Cc: Sun Paul, linux-sctp, netdev, linux-kernel, tuexen On 01/23/2015 05:05 PM, Vlad Yasevich wrote: > On 01/23/2015 06:50 AM, Daniel Borkmann wrote: >> On 01/23/2015 11:25 AM, Sun Paul wrote: >> ... >>> I would like to check the behave in LKSCTP. >>> >>> we are running DIAMETER message over SCTP, and we have set the >>> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. >>> >>> We noticed that when remote peer have retry to send the same request >>> for 4 times, the LKSCTP will initiate an ABORT chunk with reason >>> "association exceeded its max_retrans count". >>> >>> We would like to know whether this is the correct behavior? is there >>> any other option that we can alter in order to avoid the ABORT chunk >>> being sent? >> >> I don't recall the RFC saying to send an ABORT, but let me double >> check in the mean time. > > The RFC is silent on the matter. The abort got added in 3.8 so > it's been there for a while. I see, commit de4594a51c90 ("sctp: send abort chunk when max_retrans exceeded") added the behaviour. >> Hmm, untested, but could you try something like that? >> >> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c >> index fef2acd..5ce198d 100644 >> --- a/net/sctp/sm_sideeffect.c >> +++ b/net/sctp/sm_sideeffect.c >> @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, >> sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, >> SCTP_ULPEVENT(event)); >> >> - if (asoc->overall_error_count >= asoc->max_retrans) { >> + if (asoc->overall_error_count >= asoc->max_retrans && >> + error != SCTP_ERROR_NO_ERROR) { >> abort = sctp_make_violation_max_retrans(asoc, chunk); >> if (abort) >> sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, > > This would pretty much stop all ABORTs due to excessive rtx. Might > as well take the code out :). > > I was a bit concerned about this ABORT when it went in. So effectively, if I understand the argument from the commit, the assumption is that the ABORT would never reach the peer anyway, but is a way for tcpdump users to see on the wire that rtx limit has been exceeded and since there's not mentioned anything in the RFC about this, it doesn't break it. Hm. Sun Paul, what exactly broke in your scenario? Can you be more explicit? Thanks, Daniel ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 17:10 ` Daniel Borkmann @ 2015-01-23 18:30 ` Vlad Yasevich 2015-01-23 18:36 ` Michael Tuexen 2015-01-26 13:47 ` Fwd: " Neil Horman 2015-01-23 18:36 ` Michael Tuexen 1 sibling, 2 replies; 14+ messages in thread From: Vlad Yasevich @ 2015-01-23 18:30 UTC (permalink / raw) To: Daniel Borkmann; +Cc: Sun Paul, linux-sctp, netdev, linux-kernel, tuexen On 01/23/2015 12:10 PM, Daniel Borkmann wrote: > On 01/23/2015 05:05 PM, Vlad Yasevich wrote: >> On 01/23/2015 06:50 AM, Daniel Borkmann wrote: >>> On 01/23/2015 11:25 AM, Sun Paul wrote: >>> ... >>>> I would like to check the behave in LKSCTP. >>>> >>>> we are running DIAMETER message over SCTP, and we have set the >>>> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. >>>> >>>> We noticed that when remote peer have retry to send the same request >>>> for 4 times, the LKSCTP will initiate an ABORT chunk with reason >>>> "association exceeded its max_retrans count". >>>> >>>> We would like to know whether this is the correct behavior? is there >>>> any other option that we can alter in order to avoid the ABORT chunk >>>> being sent? >>> >>> I don't recall the RFC saying to send an ABORT, but let me double >>> check in the mean time. >> >> The RFC is silent on the matter. The abort got added in 3.8 so >> it's been there for a while. > > I see, commit de4594a51c90 ("sctp: send abort chunk when max_retrans > exceeded") added the behaviour. > >>> Hmm, untested, but could you try something like that? >>> >>> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c >>> index fef2acd..5ce198d 100644 >>> --- a/net/sctp/sm_sideeffect.c >>> +++ b/net/sctp/sm_sideeffect.c >>> @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, >>> sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, >>> SCTP_ULPEVENT(event)); >>> >>> - if (asoc->overall_error_count >= asoc->max_retrans) { >>> + if (asoc->overall_error_count >= asoc->max_retrans && >>> + error != SCTP_ERROR_NO_ERROR) { >>> abort = sctp_make_violation_max_retrans(asoc, chunk); >>> if (abort) >>> sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, >> >> This would pretty much stop all ABORTs due to excessive rtx. Might >> as well take the code out :). >> >> I was a bit concerned about this ABORT when it went in. > > So effectively, if I understand the argument from the commit, the > assumption is that the ABORT would never reach the peer anyway, but > is a way for tcpdump users to see on the wire that rtx limit has > been exceeded and since there's not mentioned anything in the RFC > about this, it doesn't break it. Hm. > Additionally I seem to recall BSD sending this type of ABORT for pretty much the same reason. -vlad > Sun Paul, what exactly broke in your scenario? Can you be more explicit? > > Thanks, > Daniel ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 18:30 ` Vlad Yasevich @ 2015-01-23 18:36 ` Michael Tuexen 2015-01-26 13:47 ` Fwd: " Neil Horman 1 sibling, 0 replies; 14+ messages in thread From: Michael Tuexen @ 2015-01-23 18:36 UTC (permalink / raw) To: Vlad Yasevich; +Cc: Daniel Borkmann, Sun Paul, linux-sctp, netdev, linux-kernel > On 23 Jan 2015, at 19:30, Vlad Yasevich <vyasevich@gmail.com> wrote: > > On 01/23/2015 12:10 PM, Daniel Borkmann wrote: >> On 01/23/2015 05:05 PM, Vlad Yasevich wrote: >>> On 01/23/2015 06:50 AM, Daniel Borkmann wrote: >>>> On 01/23/2015 11:25 AM, Sun Paul wrote: >>>> ... >>>>> I would like to check the behave in LKSCTP. >>>>> >>>>> we are running DIAMETER message over SCTP, and we have set the >>>>> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. >>>>> >>>>> We noticed that when remote peer have retry to send the same request >>>>> for 4 times, the LKSCTP will initiate an ABORT chunk with reason >>>>> "association exceeded its max_retrans count". >>>>> >>>>> We would like to know whether this is the correct behavior? is there >>>>> any other option that we can alter in order to avoid the ABORT chunk >>>>> being sent? >>>> >>>> I don't recall the RFC saying to send an ABORT, but let me double >>>> check in the mean time. >>> >>> The RFC is silent on the matter. The abort got added in 3.8 so >>> it's been there for a while. >> >> I see, commit de4594a51c90 ("sctp: send abort chunk when max_retrans >> exceeded") added the behaviour. >> >>>> Hmm, untested, but could you try something like that? >>>> >>>> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c >>>> index fef2acd..5ce198d 100644 >>>> --- a/net/sctp/sm_sideeffect.c >>>> +++ b/net/sctp/sm_sideeffect.c >>>> @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, >>>> sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, >>>> SCTP_ULPEVENT(event)); >>>> >>>> - if (asoc->overall_error_count >= asoc->max_retrans) { >>>> + if (asoc->overall_error_count >= asoc->max_retrans && >>>> + error != SCTP_ERROR_NO_ERROR) { >>>> abort = sctp_make_violation_max_retrans(asoc, chunk); >>>> if (abort) >>>> sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, >>> >>> This would pretty much stop all ABORTs due to excessive rtx. Might >>> as well take the code out :). >>> >>> I was a bit concerned about this ABORT when it went in. >> >> So effectively, if I understand the argument from the commit, the >> assumption is that the ABORT would never reach the peer anyway, but >> is a way for tcpdump users to see on the wire that rtx limit has >> been exceeded and since there's not mentioned anything in the RFC >> about this, it doesn't break it. Hm. >> > > Additionally I seem to recall BSD sending this type of ABORT for pretty > much the same reason. Yepp. Best regards Michael > > -vlad > >> Sun Paul, what exactly broke in your scenario? Can you be more explicit? >> >> Thanks, >> Daniel > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 18:30 ` Vlad Yasevich 2015-01-23 18:36 ` Michael Tuexen @ 2015-01-26 13:47 ` Neil Horman 1 sibling, 0 replies; 14+ messages in thread From: Neil Horman @ 2015-01-26 13:47 UTC (permalink / raw) To: Vlad Yasevich Cc: Daniel Borkmann, Sun Paul, linux-sctp, netdev, linux-kernel, tuexen On Fri, Jan 23, 2015 at 01:30:55PM -0500, Vlad Yasevich wrote: > On 01/23/2015 12:10 PM, Daniel Borkmann wrote: > > On 01/23/2015 05:05 PM, Vlad Yasevich wrote: > >> On 01/23/2015 06:50 AM, Daniel Borkmann wrote: > >>> On 01/23/2015 11:25 AM, Sun Paul wrote: > >>> ... > >>>> I would like to check the behave in LKSCTP. > >>>> > >>>> we are running DIAMETER message over SCTP, and we have set the > >>>> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. > >>>> > >>>> We noticed that when remote peer have retry to send the same request > >>>> for 4 times, the LKSCTP will initiate an ABORT chunk with reason > >>>> "association exceeded its max_retrans count". > >>>> > >>>> We would like to know whether this is the correct behavior? is there > >>>> any other option that we can alter in order to avoid the ABORT chunk > >>>> being sent? > >>> > >>> I don't recall the RFC saying to send an ABORT, but let me double > >>> check in the mean time. > >> > >> The RFC is silent on the matter. The abort got added in 3.8 so > >> it's been there for a while. > > > > I see, commit de4594a51c90 ("sctp: send abort chunk when max_retrans > > exceeded") added the behaviour. > > > >>> Hmm, untested, but could you try something like that? > >>> > >>> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c > >>> index fef2acd..5ce198d 100644 > >>> --- a/net/sctp/sm_sideeffect.c > >>> +++ b/net/sctp/sm_sideeffect.c > >>> @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, > >>> sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, > >>> SCTP_ULPEVENT(event)); > >>> > >>> - if (asoc->overall_error_count >= asoc->max_retrans) { > >>> + if (asoc->overall_error_count >= asoc->max_retrans && > >>> + error != SCTP_ERROR_NO_ERROR) { > >>> abort = sctp_make_violation_max_retrans(asoc, chunk); > >>> if (abort) > >>> sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, > >> > >> This would pretty much stop all ABORTs due to excessive rtx. Might > >> as well take the code out :). > >> > >> I was a bit concerned about this ABORT when it went in. > > > > So effectively, if I understand the argument from the commit, the > > assumption is that the ABORT would never reach the peer anyway, but > > is a way for tcpdump users to see on the wire that rtx limit has > > been exceeded and since there's not mentioned anything in the RFC > > about this, it doesn't break it. Hm. > > > > Additionally I seem to recall BSD sending this type of ABORT for pretty > much the same reason. > > -vlad > IIRC, BSD is where this patch came from initially. Neil > > Sun Paul, what exactly broke in your scenario? Can you be more explicit? > > > > Thanks, > > Daniel > > -- > To unsubscribe from this list: send the line "unsubscribe linux-sctp" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 17:10 ` Daniel Borkmann 2015-01-23 18:30 ` Vlad Yasevich @ 2015-01-23 18:36 ` Michael Tuexen 2015-01-23 19:05 ` Daniel Borkmann 1 sibling, 1 reply; 14+ messages in thread From: Michael Tuexen @ 2015-01-23 18:36 UTC (permalink / raw) To: Daniel Borkmann; +Cc: Vlad Yasevich, Sun Paul, linux-sctp, netdev, linux-kernel > On 23 Jan 2015, at 18:10, Daniel Borkmann <dborkman@redhat.com> wrote: > > On 01/23/2015 05:05 PM, Vlad Yasevich wrote: >> On 01/23/2015 06:50 AM, Daniel Borkmann wrote: >>> On 01/23/2015 11:25 AM, Sun Paul wrote: >>> ... >>>> I would like to check the behave in LKSCTP. >>>> >>>> we are running DIAMETER message over SCTP, and we have set the >>>> parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. >>>> >>>> We noticed that when remote peer have retry to send the same request >>>> for 4 times, the LKSCTP will initiate an ABORT chunk with reason >>>> "association exceeded its max_retrans count". >>>> >>>> We would like to know whether this is the correct behavior? is there >>>> any other option that we can alter in order to avoid the ABORT chunk >>>> being sent? >>> >>> I don't recall the RFC saying to send an ABORT, but let me double >>> check in the mean time. >> >> The RFC is silent on the matter. The abort got added in 3.8 so >> it's been there for a while. > > I see, commit de4594a51c90 ("sctp: send abort chunk when max_retrans > exceeded") added the behaviour. > >>> Hmm, untested, but could you try something like that? >>> >>> diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c >>> index fef2acd..5ce198d 100644 >>> --- a/net/sctp/sm_sideeffect.c >>> +++ b/net/sctp/sm_sideeffect.c >>> @@ -584,7 +584,8 @@ static void sctp_cmd_assoc_failed(sctp_cmd_seq_t *commands, >>> sctp_add_cmd_sf(commands, SCTP_CMD_EVENT_ULP, >>> SCTP_ULPEVENT(event)); >>> >>> - if (asoc->overall_error_count >= asoc->max_retrans) { >>> + if (asoc->overall_error_count >= asoc->max_retrans && >>> + error != SCTP_ERROR_NO_ERROR) { >>> abort = sctp_make_violation_max_retrans(asoc, chunk); >>> if (abort) >>> sctp_add_cmd_sf(commands, SCTP_CMD_REPLY, >> >> This would pretty much stop all ABORTs due to excessive rtx. Might >> as well take the code out :). >> >> I was a bit concerned about this ABORT when it went in. > > So effectively, if I understand the argument from the commit, the > assumption is that the ABORT would never reach the peer anyway, but > is a way for tcpdump users to see on the wire that rtx limit has > been exceeded and since there's not mentioned anything in the RFC > about this, it doesn't break it. Hm. Yepp. It might not reach the peer or it might. If it does it helps to keep the states in sync. If it doesn't it sometimes helps in analysing tracefiles. In BSD, we also send it. It is not required, doesn't harm and is useful in some cases... Best regards Michael > > Sun Paul, what exactly broke in your scenario? Can you be more explicit? > > Thanks, > Daniel > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 18:36 ` Michael Tuexen @ 2015-01-23 19:05 ` Daniel Borkmann 2015-01-26 1:27 ` Sun Paul 0 siblings, 1 reply; 14+ messages in thread From: Daniel Borkmann @ 2015-01-23 19:05 UTC (permalink / raw) To: Michael Tuexen; +Cc: Vlad Yasevich, Sun Paul, linux-sctp, netdev, linux-kernel On 01/23/2015 07:36 PM, Michael Tuexen wrote: ... > Yepp. It might not reach the peer or it might. If it does it helps > to keep the states in sync. If it doesn't it sometimes helps in > analysing tracefiles. In BSD, we also send it. It is not required, > doesn't harm and is useful in some cases... Ok, as the TCB is destroyed in any case, should be fine then. Thanks, Daniel ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 19:05 ` Daniel Borkmann @ 2015-01-26 1:27 ` Sun Paul 2015-01-26 11:46 ` Marcelo Ricardo Leitner 0 siblings, 1 reply; 14+ messages in thread From: Sun Paul @ 2015-01-26 1:27 UTC (permalink / raw) To: Daniel Borkmann Cc: Michael Tuexen, Vlad Yasevich, linux-sctp, netdev, linux-kernel Hi sorry for the late reply. I am a bit confused. when side-A sends a request to side-B, and side-B return the response, but side-A keep re-transmit the same request to side-B, why side-B needed to send a ABORT to side-A? If it is used in order to reestablish the connection, shoudn't it should be side-A to send ABORT instead? - PS On Sat, Jan 24, 2015 at 3:05 AM, Daniel Borkmann <dborkman@redhat.com> wrote: > On 01/23/2015 07:36 PM, Michael Tuexen wrote: > ... >> >> Yepp. It might not reach the peer or it might. If it does it helps >> to keep the states in sync. If it doesn't it sometimes helps in >> analysing tracefiles. In BSD, we also send it. It is not required, >> doesn't harm and is useful in some cases... > > > Ok, as the TCB is destroyed in any case, should be fine then. > > Thanks, > Daniel ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-26 1:27 ` Sun Paul @ 2015-01-26 11:46 ` Marcelo Ricardo Leitner 2015-01-26 13:17 ` Sun Paul 0 siblings, 1 reply; 14+ messages in thread From: Marcelo Ricardo Leitner @ 2015-01-26 11:46 UTC (permalink / raw) To: Sun Paul, Daniel Borkmann Cc: Michael Tuexen, Vlad Yasevich, linux-sctp, netdev, linux-kernel Hi, On 25-01-2015 23:27, Sun Paul wrote: > Hi > > sorry for the late reply. I am a bit confused. when side-A sends a > request to side-B, and side-B return the response, but side-A keep > re-transmit the same request to side-B, why side-B needed to send a > ABORT to side-A? That happens on data transfers. When A pushes data to B, A has to retry it until B finally acknowledges it and A receive this signal. If the ack from B gets dropped, A has no way to know if a) the ack was lost or b) its initial message never actually made it to A, thus it retransmits. If it reaches a limit, it gives up.. > If it is used in order to reestablish the connection, shoudn't it > should be side-A to send ABORT instead? Meant to reestablish it? Not really.. just to keep both sides in sync, as A has given up by then. Marcelo > - PS > > On Sat, Jan 24, 2015 at 3:05 AM, Daniel Borkmann <dborkman@redhat.com> wrote: >> On 01/23/2015 07:36 PM, Michael Tuexen wrote: >> ... >>> >>> Yepp. It might not reach the peer or it might. If it does it helps >>> to keep the states in sync. If it doesn't it sometimes helps in >>> analysing tracefiles. In BSD, we also send it. It is not required, >>> doesn't harm and is useful in some cases... >> >> >> Ok, as the TCB is destroyed in any case, should be fine then. >> >> Thanks, >> Daniel > -- > To unsubscribe from this list: send the line "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-26 11:46 ` Marcelo Ricardo Leitner @ 2015-01-26 13:17 ` Sun Paul 2015-01-26 13:30 ` Daniel Borkmann 0 siblings, 1 reply; 14+ messages in thread From: Sun Paul @ 2015-01-26 13:17 UTC (permalink / raw) To: Marcelo Ricardo Leitner Cc: Daniel Borkmann, Michael Tuexen, Vlad Yasevich, linux-sctp, netdev, linux-kernel When an ABORT is sent to side-A, side-A INIT a new connection again. On Mon, Jan 26, 2015 at 7:46 PM, Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> wrote: > Hi, > > On 25-01-2015 23:27, Sun Paul wrote: >> >> Hi >> >> sorry for the late reply. I am a bit confused. when side-A sends a >> request to side-B, and side-B return the response, but side-A keep >> re-transmit the same request to side-B, why side-B needed to send a >> ABORT to side-A? > > > That happens on data transfers. When A pushes data to B, A has to retry it > until B finally acknowledges it and A receive this signal. If the ack from B > gets dropped, A has no way to know if a) the ack was lost or b) its initial > message never actually made it to A, thus it retransmits. If it reaches a > limit, it gives up.. > >> If it is used in order to reestablish the connection, shoudn't it >> should be side-A to send ABORT instead? > > > Meant to reestablish it? Not really.. just to keep both sides in sync, as A > has given up by then. > > Marcelo > >> - PS >> >> On Sat, Jan 24, 2015 at 3:05 AM, Daniel Borkmann <dborkman@redhat.com> >> wrote: >>> >>> On 01/23/2015 07:36 PM, Michael Tuexen wrote: >>> ... >>>> >>>> >>>> Yepp. It might not reach the peer or it might. If it does it helps >>>> to keep the states in sync. If it doesn't it sometimes helps in >>>> analysing tracefiles. In BSD, we also send it. It is not required, >>>> doesn't harm and is useful in some cases... >>> >>> >>> >>> Ok, as the TCB is destroyed in any case, should be fine then. >>> >>> Thanks, >>> Daniel >> >> -- >> To unsubscribe from this list: send the line "unsubscribe netdev" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html >> > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-26 13:17 ` Sun Paul @ 2015-01-26 13:30 ` Daniel Borkmann 0 siblings, 0 replies; 14+ messages in thread From: Daniel Borkmann @ 2015-01-26 13:30 UTC (permalink / raw) To: Sun Paul Cc: Marcelo Ricardo Leitner, Michael Tuexen, Vlad Yasevich, linux-sctp, netdev, linux-kernel On 01/26/2015 02:17 PM, Sun Paul wrote: > When an ABORT is sent to side-A, side-A INIT a new connection again. Even if the ABORT is not being sent, the peer (the one who would send his ABORT) closes the TCB from his side silently then. Any messages that would afterwards arrive on this dead connection would be answered with an oob ABORT just as well. I'm still missing the bigger picture on your use-case scenario here, I guess ... why is the recommended rtx limit not sufficient? ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached 2015-01-23 10:25 ` Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached Sun Paul 2015-01-23 11:50 ` Daniel Borkmann @ 2015-01-23 16:08 ` Vlad Yasevich 1 sibling, 0 replies; 14+ messages in thread From: Vlad Yasevich @ 2015-01-23 16:08 UTC (permalink / raw) To: Sun Paul, linux-sctp, netdev, linux-kernel On 01/23/2015 05:25 AM, Sun Paul wrote: > Hi > > I would like to check the behave in LKSCTP. > > we are running DIAMETER message over SCTP, and we have set the > parameter "net.sctp.association_max_retrans = 4" in the LinuxOS. > > We noticed that when remote peer have retry to send the same request > for 4 times, the LKSCTP will initiate an ABORT chunk with reason > "association exceeded its max_retrans count". > > We would like to know whether this is the correct behavior? is there > any other option that we can alter in order to avoid the ABORT chunk > being sent? > Why do you not want ABORT to be sent? SCTP has attempted to retransmit the data maximum allows times, and at this point it will terminate the association. It sends an ABORT notifying the peer of this, but most likely the peer is unreachable anyway. Any message that a peer sends at this point will most likely result in an ABORT to be send back or an association restart. Might as well start fresh. -vlad > Thanks > > PS > -- > To unsubscribe from this list: send the line "unsubscribe linux-sctp" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2015-01-26 13:47 UTC | newest] Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- [not found] <CAFXGftKp3=OfjkCVBuR-zM3+uZ42Sk_9i2UjAHBNnbX=hQJwpA@mail.gmail.com> 2015-01-23 10:25 ` Fwd: Question on SCTP ABORT chunk is generated when the association_max_retrans is reached Sun Paul 2015-01-23 11:50 ` Daniel Borkmann 2015-01-23 16:05 ` Vlad Yasevich 2015-01-23 17:10 ` Daniel Borkmann 2015-01-23 18:30 ` Vlad Yasevich 2015-01-23 18:36 ` Michael Tuexen 2015-01-26 13:47 ` Fwd: " Neil Horman 2015-01-23 18:36 ` Michael Tuexen 2015-01-23 19:05 ` Daniel Borkmann 2015-01-26 1:27 ` Sun Paul 2015-01-26 11:46 ` Marcelo Ricardo Leitner 2015-01-26 13:17 ` Sun Paul 2015-01-26 13:30 ` Daniel Borkmann 2015-01-23 16:08 ` Fwd: " Vlad Yasevich
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).