diff mbox series

[net] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start

Message ID a93e655b3c153dc8945d7a812e6d8ab0d52b7aa0.1727729391.git.lucien.xin@gmail.com (mailing list archive)
State Accepted
Commit 8beee4d8dee76b67c75dc91fd8185d91e845c160
Delegated to: Netdev Maintainers
Headers show
Series [net] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag present in non-next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 9 this patch: 9
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 7 of 8 maintainers
netdev/build_clang success Errors and warnings before: 9 this patch: 9
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success Fixes tag looks correct
netdev/build_allmodconfig_warn fail Errors and warnings before: 12 this patch: 12
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 11 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Xin Long Sept. 30, 2024, 8:49 p.m. UTC
In sctp_listen_start() invoked by sctp_inet_listen(), it should set the
sk_state back to CLOSED if sctp_autobind() fails due to whatever reason.

Otherwise, next time when calling sctp_inet_listen(), if sctp_sk(sk)->reuse
is already set via setsockopt(SCTP_REUSE_PORT), sctp_sk(sk)->bind_hash will
be dereferenced as sk_state is LISTENING, which causes a crash as bind_hash
is NULL.

  KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
  RIP: 0010:sctp_inet_listen+0x7f0/0xa20 net/sctp/socket.c:8617
  Call Trace:
   <TASK>
   __sys_listen_socket net/socket.c:1883 [inline]
   __sys_listen+0x1b7/0x230 net/socket.c:1894
   __do_sys_listen net/socket.c:1902 [inline]

Fixes: 5e8f3f703ae4 ("sctp: simplify sctp listening code")
Reported-by: syzbot+f4e0f821e3a3b7cee51d@syzkaller.appspotmail.com
Signed-off-by: Xin Long <lucien.xin@gmail.com>
---
 net/sctp/socket.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Marcelo Ricardo Leitner Oct. 1, 2024, 7:15 p.m. UTC | #1
On Mon, Sep 30, 2024 at 04:49:51PM -0400, Xin Long wrote:
> In sctp_listen_start() invoked by sctp_inet_listen(), it should set the
> sk_state back to CLOSED if sctp_autobind() fails due to whatever reason.
> 
> Otherwise, next time when calling sctp_inet_listen(), if sctp_sk(sk)->reuse
> is already set via setsockopt(SCTP_REUSE_PORT), sctp_sk(sk)->bind_hash will
> be dereferenced as sk_state is LISTENING, which causes a crash as bind_hash
> is NULL.
> 
>   KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
>   RIP: 0010:sctp_inet_listen+0x7f0/0xa20 net/sctp/socket.c:8617
>   Call Trace:
>    <TASK>
>    __sys_listen_socket net/socket.c:1883 [inline]
>    __sys_listen+0x1b7/0x230 net/socket.c:1894
>    __do_sys_listen net/socket.c:1902 [inline]
> 
> Fixes: 5e8f3f703ae4 ("sctp: simplify sctp listening code")
> Reported-by: syzbot+f4e0f821e3a3b7cee51d@syzkaller.appspotmail.com
> Signed-off-by: Xin Long <lucien.xin@gmail.com>
> ---
>  net/sctp/socket.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/net/sctp/socket.c b/net/sctp/socket.c
> index 32f76f1298da..078bcb3858c7 100644
> --- a/net/sctp/socket.c
> +++ b/net/sctp/socket.c
> @@ -8557,8 +8557,10 @@ static int sctp_listen_start(struct sock *sk, int backlog)
>  	 */
>  	inet_sk_set_state(sk, SCTP_SS_LISTENING);
>  	if (!ep->base.bind_addr.port) {
> -		if (sctp_autobind(sk))
> +		if (sctp_autobind(sk)) {
> +			inet_sk_set_state(sk, SCTP_SS_CLOSED);
>  			return -EAGAIN;
> +		}
>  	} else {
>  		if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
>  			inet_sk_set_state(sk, SCTP_SS_CLOSED);

Then AFAICT the end of the function needs a patch as well, because it
returns what could be an error directly, without undoing this:

        WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
        return sctp_hash_endpoint(ep);
}
Xin Long Oct. 1, 2024, 7:41 p.m. UTC | #2
On Tue, Oct 1, 2024 at 3:15 PM Marcelo Ricardo Leitner
<marcelo.leitner@gmail.com> wrote:
>
> On Mon, Sep 30, 2024 at 04:49:51PM -0400, Xin Long wrote:
> > In sctp_listen_start() invoked by sctp_inet_listen(), it should set the
> > sk_state back to CLOSED if sctp_autobind() fails due to whatever reason.
> >
> > Otherwise, next time when calling sctp_inet_listen(), if sctp_sk(sk)->reuse
> > is already set via setsockopt(SCTP_REUSE_PORT), sctp_sk(sk)->bind_hash will
> > be dereferenced as sk_state is LISTENING, which causes a crash as bind_hash
> > is NULL.
> >
> >   KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
> >   RIP: 0010:sctp_inet_listen+0x7f0/0xa20 net/sctp/socket.c:8617
> >   Call Trace:
> >    <TASK>
> >    __sys_listen_socket net/socket.c:1883 [inline]
> >    __sys_listen+0x1b7/0x230 net/socket.c:1894
> >    __do_sys_listen net/socket.c:1902 [inline]
> >
> > Fixes: 5e8f3f703ae4 ("sctp: simplify sctp listening code")
> > Reported-by: syzbot+f4e0f821e3a3b7cee51d@syzkaller.appspotmail.com
> > Signed-off-by: Xin Long <lucien.xin@gmail.com>
> > ---
> >  net/sctp/socket.c | 4 +++-
> >  1 file changed, 3 insertions(+), 1 deletion(-)
> >
> > diff --git a/net/sctp/socket.c b/net/sctp/socket.c
> > index 32f76f1298da..078bcb3858c7 100644
> > --- a/net/sctp/socket.c
> > +++ b/net/sctp/socket.c
> > @@ -8557,8 +8557,10 @@ static int sctp_listen_start(struct sock *sk, int backlog)
> >        */
> >       inet_sk_set_state(sk, SCTP_SS_LISTENING);
> >       if (!ep->base.bind_addr.port) {
> > -             if (sctp_autobind(sk))
> > +             if (sctp_autobind(sk)) {
> > +                     inet_sk_set_state(sk, SCTP_SS_CLOSED);
> >                       return -EAGAIN;
> > +             }
> >       } else {
> >               if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
> >                       inet_sk_set_state(sk, SCTP_SS_CLOSED);
>
> Then AFAICT the end of the function needs a patch as well, because it
> returns what could be an error directly, without undoing this:
>
>         WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
>         return sctp_hash_endpoint(ep);
> }
>
Right, but this is another issue and won't cause a crash, and the fix will
need a different "Fixes:". I think we should fix it in a separate patch.
Marcelo Ricardo Leitner Oct. 1, 2024, 9:06 p.m. UTC | #3
On Tue, Oct 01, 2024 at 03:41:23PM -0400, Xin Long wrote:
> On Tue, Oct 1, 2024 at 3:15 PM Marcelo Ricardo Leitner
> <marcelo.leitner@gmail.com> wrote:
> >
> > On Mon, Sep 30, 2024 at 04:49:51PM -0400, Xin Long wrote:
> > > In sctp_listen_start() invoked by sctp_inet_listen(), it should set the
> > > sk_state back to CLOSED if sctp_autobind() fails due to whatever reason.
> > >
> > > Otherwise, next time when calling sctp_inet_listen(), if sctp_sk(sk)->reuse
> > > is already set via setsockopt(SCTP_REUSE_PORT), sctp_sk(sk)->bind_hash will
> > > be dereferenced as sk_state is LISTENING, which causes a crash as bind_hash
> > > is NULL.
> > >
> > >   KASAN: null-ptr-deref in range [0x0000000000000000-0x0000000000000007]
> > >   RIP: 0010:sctp_inet_listen+0x7f0/0xa20 net/sctp/socket.c:8617
> > >   Call Trace:
> > >    <TASK>
> > >    __sys_listen_socket net/socket.c:1883 [inline]
> > >    __sys_listen+0x1b7/0x230 net/socket.c:1894
> > >    __do_sys_listen net/socket.c:1902 [inline]
> > >
> > > Fixes: 5e8f3f703ae4 ("sctp: simplify sctp listening code")
> > > Reported-by: syzbot+f4e0f821e3a3b7cee51d@syzkaller.appspotmail.com
> > > Signed-off-by: Xin Long <lucien.xin@gmail.com>
> > > ---
> > >  net/sctp/socket.c | 4 +++-
> > >  1 file changed, 3 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/net/sctp/socket.c b/net/sctp/socket.c
> > > index 32f76f1298da..078bcb3858c7 100644
> > > --- a/net/sctp/socket.c
> > > +++ b/net/sctp/socket.c
> > > @@ -8557,8 +8557,10 @@ static int sctp_listen_start(struct sock *sk, int backlog)
> > >        */
> > >       inet_sk_set_state(sk, SCTP_SS_LISTENING);
> > >       if (!ep->base.bind_addr.port) {
> > > -             if (sctp_autobind(sk))
> > > +             if (sctp_autobind(sk)) {
> > > +                     inet_sk_set_state(sk, SCTP_SS_CLOSED);
> > >                       return -EAGAIN;
> > > +             }
> > >       } else {
> > >               if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
> > >                       inet_sk_set_state(sk, SCTP_SS_CLOSED);
> >
> > Then AFAICT the end of the function needs a patch as well, because it
> > returns what could be an error directly, without undoing this:
> >
> >         WRITE_ONCE(sk->sk_max_ack_backlog, backlog);
> >         return sctp_hash_endpoint(ep);
> > }
> >
> Right, but this is another issue and won't cause a crash, and the fix will
> need a different "Fixes:". I think we should fix it in a separate patch.

Makes sense. Thx.

Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
patchwork-bot+netdevbpf@kernel.org Oct. 3, 2024, 10:30 a.m. UTC | #4
Hello:

This patch was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:

On Mon, 30 Sep 2024 16:49:51 -0400 you wrote:
> In sctp_listen_start() invoked by sctp_inet_listen(), it should set the
> sk_state back to CLOSED if sctp_autobind() fails due to whatever reason.
> 
> Otherwise, next time when calling sctp_inet_listen(), if sctp_sk(sk)->reuse
> is already set via setsockopt(SCTP_REUSE_PORT), sctp_sk(sk)->bind_hash will
> be dereferenced as sk_state is LISTENING, which causes a crash as bind_hash
> is NULL.
> 
> [...]

Here is the summary with links:
  - [net] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start
    https://git.kernel.org/netdev/net/c/8beee4d8dee7

You are awesome, thank you!
diff mbox series

Patch

diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index 32f76f1298da..078bcb3858c7 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -8557,8 +8557,10 @@  static int sctp_listen_start(struct sock *sk, int backlog)
 	 */
 	inet_sk_set_state(sk, SCTP_SS_LISTENING);
 	if (!ep->base.bind_addr.port) {
-		if (sctp_autobind(sk))
+		if (sctp_autobind(sk)) {
+			inet_sk_set_state(sk, SCTP_SS_CLOSED);
 			return -EAGAIN;
+		}
 	} else {
 		if (sctp_get_port(sk, inet_sk(sk)->inet_num)) {
 			inet_sk_set_state(sk, SCTP_SS_CLOSED);