* [PATCH for net-next-2.6] sctp: fix oops when update assoc retran
@ 2010-05-11 6:43 Wei Yongjun
2010-05-11 9:55 ` Shan Wei
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Wei Yongjun @ 2010-05-11 6:43 UTC (permalink / raw)
To: linux-sctp
commit fbdf501c9374966a56829ecca3a7f25d2b49a305
sctp: Do no select unconfirmed transports for retransmissions
added code to make sure that we do not select unconfirmed paths
for data transmission. This caused a problem when there are only
2 paths, 1 unconfirmed and 1 unreachable. In that case, the next
retransmit path returned is NULL and that causes a kernel crash.
commit d598b166ced20d9b9281ea3527c0e18405ddb803
sctp: Make sure we always return valid retransmit path
try to fix it, but if DEBUG is configured, the oops is still
exists.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
---
net/sctp/associola.c | 15 ++++++++-------
1 files changed, 8 insertions(+), 7 deletions(-)
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index 3912420..1f49af5 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -1323,15 +1323,16 @@ void sctp_assoc_update_retran_path(struct sctp_association *asoc)
}
}
- if (t)
+ if (t) {
asoc->peer.retran_path = t;
- SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
- " %p addr: ",
- " port: %d\n",
- asoc,
- (&t->ipaddr),
- ntohs(t->ipaddr.v4.sin_port));
+ SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:"
+ "association %p addr: ",
+ " port: %d\n",
+ asoc,
+ (&t->ipaddr),
+ ntohs(t->ipaddr.v4.sin_port));
+ }
}
/* Choose the transport for sending retransmit packet. */
--
1.6.5.2
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH for net-next-2.6] sctp: fix oops when update assoc retran
2010-05-11 6:43 [PATCH for net-next-2.6] sctp: fix oops when update assoc retran Wei Yongjun
@ 2010-05-11 9:55 ` Shan Wei
2010-05-11 13:23 ` Vlad Yasevich
2010-05-11 15:45 ` [PATCH for net-next-2.6] sctp: fix oops when update assoc retran path Vlad Yasevich
2 siblings, 0 replies; 4+ messages in thread
From: Shan Wei @ 2010-05-11 9:55 UTC (permalink / raw)
To: linux-sctp
Wei Yongjun wrote, at 05/11/2010 02:43 PM:
> commit fbdf501c9374966a56829ecca3a7f25d2b49a305
> sctp: Do no select unconfirmed transports for retransmissions
>
> added code to make sure that we do not select unconfirmed paths
> for data transmission. This caused a problem when there are only
> 2 paths, 1 unconfirmed and 1 unreachable. In that case, the next
> retransmit path returned is NULL and that causes a kernel crash.
>
> commit d598b166ced20d9b9281ea3527c0e18405ddb803
> sctp: Make sure we always return valid retransmit path
> try to fix it, but if DEBUG is configured, the oops is still
> exists.
>
> Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
> ---
> net/sctp/associola.c | 15 ++++++++-------
> 1 files changed, 8 insertions(+), 7 deletions(-)
>
> diff --git a/net/sctp/associola.c b/net/sctp/associola.c
> index 3912420..1f49af5 100644
> --- a/net/sctp/associola.c
> +++ b/net/sctp/associola.c
> @@ -1323,15 +1323,16 @@ void sctp_assoc_update_retran_path(struct sctp_association *asoc)
> }
> }
>
> - if (t)
> + if (t) {
> asoc->peer.retran_path = t;
>
> - SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
> - " %p addr: ",
> - " port: %d\n",
> - asoc,
> - (&t->ipaddr),
> - ntohs(t->ipaddr.v4.sin_port));
> + SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:"
Try __func__ to simplify code.
> + "association %p addr: ",
> + " port: %d\n",
> + asoc,
> + (&t->ipaddr),
> + ntohs(t->ipaddr.v4.sin_port));
> + }
How about providing debug infos if t is NULL?
something like "failed to update retran path", or "no change to retran path".
Tested-by: Shan Wei <shanwei@cn.fujitsu.com>
--
Best Regards
-----
Shan Wei
> }
>
> /* Choose the transport for sending retransmit packet. */
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH for net-next-2.6] sctp: fix oops when update assoc retran
2010-05-11 6:43 [PATCH for net-next-2.6] sctp: fix oops when update assoc retran Wei Yongjun
2010-05-11 9:55 ` Shan Wei
@ 2010-05-11 13:23 ` Vlad Yasevich
2010-05-11 15:45 ` [PATCH for net-next-2.6] sctp: fix oops when update assoc retran path Vlad Yasevich
2 siblings, 0 replies; 4+ messages in thread
From: Vlad Yasevich @ 2010-05-11 13:23 UTC (permalink / raw)
To: linux-sctp
Shan Wei wrote:
> Wei Yongjun wrote, at 05/11/2010 02:43 PM:
>> commit fbdf501c9374966a56829ecca3a7f25d2b49a305
>> sctp: Do no select unconfirmed transports for retransmissions
>>
>> added code to make sure that we do not select unconfirmed paths
>> for data transmission. This caused a problem when there are only
>> 2 paths, 1 unconfirmed and 1 unreachable. In that case, the next
>> retransmit path returned is NULL and that causes a kernel crash.
>>
>> commit d598b166ced20d9b9281ea3527c0e18405ddb803
>> sctp: Make sure we always return valid retransmit path
>> try to fix it, but if DEBUG is configured, the oops is still
>> exists.
>>
>> Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
>> ---
>> net/sctp/associola.c | 15 ++++++++-------
>> 1 files changed, 8 insertions(+), 7 deletions(-)
>>
>> diff --git a/net/sctp/associola.c b/net/sctp/associola.c
>> index 3912420..1f49af5 100644
>> --- a/net/sctp/associola.c
>> +++ b/net/sctp/associola.c
>> @@ -1323,15 +1323,16 @@ void sctp_assoc_update_retran_path(struct sctp_association *asoc)
>> }
>> }
>>
>> - if (t)
>> + if (t) {
>> asoc->peer.retran_path = t;
>>
>> - SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
>> - " %p addr: ",
>> - " port: %d\n",
>> - asoc,
>> - (&t->ipaddr),
>> - ntohs(t->ipaddr.v4.sin_port));
>> + SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:"
>
> Try __func__ to simplify code.
>
>> + "association %p addr: ",
>> + " port: %d\n",
>> + asoc,
>> + (&t->ipaddr),
>> + ntohs(t->ipaddr.v4.sin_port));
>> + }
>
> How about providing debug infos if t is NULL?
> something like "failed to update retran path", or "no change to retran path".
>
> Tested-by: Shan Wei <shanwei@cn.fujitsu.com>
>
Sorry, I didn't run with debug enabled.... Actually, we should probably just
refer back to retran_path so that DEBUG output still shows which path we are
retransmitting on.
-vlad
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH for net-next-2.6] sctp: fix oops when update assoc retran path
2010-05-11 6:43 [PATCH for net-next-2.6] sctp: fix oops when update assoc retran Wei Yongjun
2010-05-11 9:55 ` Shan Wei
2010-05-11 13:23 ` Vlad Yasevich
@ 2010-05-11 15:45 ` Vlad Yasevich
2 siblings, 0 replies; 4+ messages in thread
From: Vlad Yasevich @ 2010-05-11 15:45 UTC (permalink / raw)
To: linux-sctp
Here is what I am planning to commit:
sctp: fix oops when updating retransmit path with DEBUG on
commit fbdf501c9374966a56829ecca3a7f25d2b49a305
sctp: Do no select unconfirmed transports for retransmissions
Introduced the initial falt.
commit d598b166ced20d9b9281ea3527c0e18405ddb803
sctp: Make sure we always return valid retransmit path
Solved the problem, but forgot to change the DEBUG statement.
Thus it was still possible to dereference a NULL pointer.
Signed-off-by: Wei Yongjun <yjwei@cn.fujitsu.com>
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
---
net/sctp/associola.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/net/sctp/associola.c b/net/sctp/associola.c
index 65f9a7c..1b26878 100644
--- a/net/sctp/associola.c
+++ b/net/sctp/associola.c
@@ -1323,6 +1323,8 @@ void sctp_assoc_update_retran_path(struct sctp_association *asoc)
if (t)
asoc->peer.retran_path = t;
+ else
+ t = asoc->peer.retran_path;
SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
" %p addr: ",
--
1.6.0.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-05-11 15:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-11 6:43 [PATCH for net-next-2.6] sctp: fix oops when update assoc retran Wei Yongjun
2010-05-11 9:55 ` Shan Wei
2010-05-11 13:23 ` Vlad Yasevich
2010-05-11 15:45 ` [PATCH for net-next-2.6] sctp: fix oops when update assoc retran path Vlad Yasevich
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.