All of lore.kernel.org
 help / color / mirror / Atom feed
From: Xin Long <lucien.xin@gmail.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: network dev <netdev@vger.kernel.org>,
	linux-sctp@vger.kernel.org, davem <davem@davemloft.net>,
	Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>,
	Dmitry Vyukov <dvyukov@google.com>,
	syzkaller <syzkaller@googlegroups.com>
Subject: Re: [PATCH net] sctp: do not free asoc when it is already dead in sctp_sendmsg
Date: Tue, 14 Nov 2017 20:52:56 +0800	[thread overview]
Message-ID: <CADvbK_dLauRWtXhVjApa3C_m3LPH64=fLRvfiWiBqm7UrYyNrg@mail.gmail.com> (raw)
In-Reply-To: <20171114124328.GA21954@hmswarspite.think-freely.org>

On Tue, Nov 14, 2017 at 8:43 PM, Neil Horman <nhorman@tuxdriver.com> wrote:
> On Mon, Nov 13, 2017 at 11:29:49PM +0800, Xin Long wrote:
>> On Mon, Nov 13, 2017 at 10:46 PM, Neil Horman <nhorman@tuxdriver.com> wrote:
>> > On Mon, Nov 13, 2017 at 12:43:50PM +0800, Xin Long wrote:
>> >> Now in sctp_sendmsg sctp_wait_for_sndbuf could schedule out without
>> >> holding sock sk. It means the current asoc can be freed elsewhere,
>> >> like when receiving an abort packet.
>> >>
>> >> If the asoc is just created in sctp_sendmsg and sctp_wait_for_sndbuf
>> >> returns err, the asoc will be freed again due to new_asoc is not nil.
>> >> An use-after-free issue would be triggered by this.
>> >>
>> >> This patch is to fix it by setting new_asoc with nil if the asoc is
>> >> already dead when cpu schedules back, so that it will not be freed
>> >> again in sctp_sendmsg.
>> >>
>> >> Reported-by: Dmitry Vyukov <dvyukov@google.com>
>> >> Signed-off-by: Xin Long <lucien.xin@gmail.com>
>> >> ---
>> >>  net/sctp/socket.c | 15 +++++++++------
>> >>  1 file changed, 9 insertions(+), 6 deletions(-)
>> >>
>> >> diff --git a/net/sctp/socket.c b/net/sctp/socket.c
>> >> index 6f45d17..f575976 100644
>> >> --- a/net/sctp/socket.c
>> >> +++ b/net/sctp/socket.c
>> >> @@ -83,8 +83,8 @@
>> >>  /* Forward declarations for internal helper functions. */
>> >>  static int sctp_writeable(struct sock *sk);
>> >>  static void sctp_wfree(struct sk_buff *skb);
>> >> -static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
>> >> -                             size_t msg_len);
>> >> +static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >> +                             size_t msg_len, struct sctp_association **new);
>> >>  static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
>> >>  static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
>> >>  static int sctp_wait_for_accept(struct sock *sk, long timeo);
>> >> @@ -1962,7 +1962,7 @@ static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
>> >>
>> >>       timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
>> >>       if (!sctp_wspace(asoc)) {
>> >> -             err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
>> >> +             err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len, &new_asoc);
>> >>               if (err)
>> >>                       goto out_free;
>> >>       }
>> >> @@ -7822,7 +7822,7 @@ void sctp_sock_rfree(struct sk_buff *skb)
>> >>
>> >>  /* Helper function to wait for space in the sndbuf.  */
>> >>  static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >> -                             size_t msg_len)
>> >> +                             size_t msg_len, struct sctp_association **new)
>> >>  {
>> >>       struct sock *sk = asoc->base.sk;
>> >>       int err = 0;
>> >> @@ -7839,10 +7839,13 @@ static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >>       for (;;) {
>> >>               prepare_to_wait_exclusive(&asoc->wait, &wait,
>> >>                                         TASK_INTERRUPTIBLE);
>> >> +             if (asoc->base.dead) {
>> >> +                     *new = NULL;
>> >> +                     goto do_error;
>> >> +             }
>> >>               if (!*timeo_p)
>> >>                       goto do_nonblock;
>> >> -             if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
>> >> -                 asoc->base.dead)
>> >> +             if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
>> >>                       goto do_error;
>> >>               if (signal_pending(current))
>> >>                       goto do_interrupted;
>> >> --
>> >> 2.1.0
>> >>
>> >>
>> > Why pass a pointer to a pointer into the wait function?  It seems like you could
>> > just check the return code for err == -EPIPE and set the association to null in
>> > sctp_sendmsg.  That would avoid passing another parameter, and cut down on some
>> > complexity here.
>> "if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)"
>> also goes to err == -EPIPE path, with it, the new_asoc are supposed to
>> be freed in old codes.
>>
>> do you think it's good to not free it now when sk->sk_err or SHUTDOWN_PENDING ?
>> or I can add another err path like:
>> +do_dead:
>> +       err = -ESRCH;
>> +       goto out;
>>
> That would work, but it also seems just as easy to check in sctp_sendmsg. that
> is to say, if sctp_wait_for_sndbuf return -EPIPE sctp_sndmsg jumps to out_free,
> where we can check to see if (new_assoc && new_assoc->base.dead) as a gating
> factor on free.
we can't do that, as nowhere holds new_assoc, it may be already destroyed.
to dereference it (new_assoc->base.dead) will cause use-after-free panic.

I may do like this:
                err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
-               if (err)
+               if (err) {
+                       if (err == -ESRCH) {
+                               /* asoc is already dead; */
+                               new_asoc = NULL;
+                               err = -EPIPE;
+                       }
                        goto out_free;
+               }

agree ?

>
> Neil
>> >
>> > Neil
>> >
>>

WARNING: multiple messages have this Message-ID (diff)
From: Xin Long <lucien.xin@gmail.com>
To: Neil Horman <nhorman@tuxdriver.com>
Cc: network dev <netdev@vger.kernel.org>,
	linux-sctp@vger.kernel.org, davem <davem@davemloft.net>,
	Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>,
	Dmitry Vyukov <dvyukov@google.com>,
	syzkaller <syzkaller@googlegroups.com>
Subject: Re: [PATCH net] sctp: do not free asoc when it is already dead in sctp_sendmsg
Date: Tue, 14 Nov 2017 12:52:56 +0000	[thread overview]
Message-ID: <CADvbK_dLauRWtXhVjApa3C_m3LPH64=fLRvfiWiBqm7UrYyNrg@mail.gmail.com> (raw)
In-Reply-To: <20171114124328.GA21954@hmswarspite.think-freely.org>

On Tue, Nov 14, 2017 at 8:43 PM, Neil Horman <nhorman@tuxdriver.com> wrote:
> On Mon, Nov 13, 2017 at 11:29:49PM +0800, Xin Long wrote:
>> On Mon, Nov 13, 2017 at 10:46 PM, Neil Horman <nhorman@tuxdriver.com> wrote:
>> > On Mon, Nov 13, 2017 at 12:43:50PM +0800, Xin Long wrote:
>> >> Now in sctp_sendmsg sctp_wait_for_sndbuf could schedule out without
>> >> holding sock sk. It means the current asoc can be freed elsewhere,
>> >> like when receiving an abort packet.
>> >>
>> >> If the asoc is just created in sctp_sendmsg and sctp_wait_for_sndbuf
>> >> returns err, the asoc will be freed again due to new_asoc is not nil.
>> >> An use-after-free issue would be triggered by this.
>> >>
>> >> This patch is to fix it by setting new_asoc with nil if the asoc is
>> >> already dead when cpu schedules back, so that it will not be freed
>> >> again in sctp_sendmsg.
>> >>
>> >> Reported-by: Dmitry Vyukov <dvyukov@google.com>
>> >> Signed-off-by: Xin Long <lucien.xin@gmail.com>
>> >> ---
>> >>  net/sctp/socket.c | 15 +++++++++------
>> >>  1 file changed, 9 insertions(+), 6 deletions(-)
>> >>
>> >> diff --git a/net/sctp/socket.c b/net/sctp/socket.c
>> >> index 6f45d17..f575976 100644
>> >> --- a/net/sctp/socket.c
>> >> +++ b/net/sctp/socket.c
>> >> @@ -83,8 +83,8 @@
>> >>  /* Forward declarations for internal helper functions. */
>> >>  static int sctp_writeable(struct sock *sk);
>> >>  static void sctp_wfree(struct sk_buff *skb);
>> >> -static int sctp_wait_for_sndbuf(struct sctp_association *, long *timeo_p,
>> >> -                             size_t msg_len);
>> >> +static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >> +                             size_t msg_len, struct sctp_association **new);
>> >>  static int sctp_wait_for_packet(struct sock *sk, int *err, long *timeo_p);
>> >>  static int sctp_wait_for_connect(struct sctp_association *, long *timeo_p);
>> >>  static int sctp_wait_for_accept(struct sock *sk, long timeo);
>> >> @@ -1962,7 +1962,7 @@ static int sctp_sendmsg(struct sock *sk, struct msghdr *msg, size_t msg_len)
>> >>
>> >>       timeo = sock_sndtimeo(sk, msg->msg_flags & MSG_DONTWAIT);
>> >>       if (!sctp_wspace(asoc)) {
>> >> -             err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
>> >> +             err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len, &new_asoc);
>> >>               if (err)
>> >>                       goto out_free;
>> >>       }
>> >> @@ -7822,7 +7822,7 @@ void sctp_sock_rfree(struct sk_buff *skb)
>> >>
>> >>  /* Helper function to wait for space in the sndbuf.  */
>> >>  static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >> -                             size_t msg_len)
>> >> +                             size_t msg_len, struct sctp_association **new)
>> >>  {
>> >>       struct sock *sk = asoc->base.sk;
>> >>       int err = 0;
>> >> @@ -7839,10 +7839,13 @@ static int sctp_wait_for_sndbuf(struct sctp_association *asoc, long *timeo_p,
>> >>       for (;;) {
>> >>               prepare_to_wait_exclusive(&asoc->wait, &wait,
>> >>                                         TASK_INTERRUPTIBLE);
>> >> +             if (asoc->base.dead) {
>> >> +                     *new = NULL;
>> >> +                     goto do_error;
>> >> +             }
>> >>               if (!*timeo_p)
>> >>                       goto do_nonblock;
>> >> -             if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING ||
>> >> -                 asoc->base.dead)
>> >> +             if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)
>> >>                       goto do_error;
>> >>               if (signal_pending(current))
>> >>                       goto do_interrupted;
>> >> --
>> >> 2.1.0
>> >>
>> >>
>> > Why pass a pointer to a pointer into the wait function?  It seems like you could
>> > just check the return code for err = -EPIPE and set the association to null in
>> > sctp_sendmsg.  That would avoid passing another parameter, and cut down on some
>> > complexity here.
>> "if (sk->sk_err || asoc->state >= SCTP_STATE_SHUTDOWN_PENDING)"
>> also goes to err = -EPIPE path, with it, the new_asoc are supposed to
>> be freed in old codes.
>>
>> do you think it's good to not free it now when sk->sk_err or SHUTDOWN_PENDING ?
>> or I can add another err path like:
>> +do_dead:
>> +       err = -ESRCH;
>> +       goto out;
>>
> That would work, but it also seems just as easy to check in sctp_sendmsg. that
> is to say, if sctp_wait_for_sndbuf return -EPIPE sctp_sndmsg jumps to out_free,
> where we can check to see if (new_assoc && new_assoc->base.dead) as a gating
> factor on free.
we can't do that, as nowhere holds new_assoc, it may be already destroyed.
to dereference it (new_assoc->base.dead) will cause use-after-free panic.

I may do like this:
                err = sctp_wait_for_sndbuf(asoc, &timeo, msg_len);
-               if (err)
+               if (err) {
+                       if (err = -ESRCH) {
+                               /* asoc is already dead; */
+                               new_asoc = NULL;
+                               err = -EPIPE;
+                       }
                        goto out_free;
+               }

agree ?

>
> Neil
>> >
>> > Neil
>> >
>>

  reply	other threads:[~2017-11-14 12:52 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-13  4:43 [PATCH net] sctp: do not free asoc when it is already dead in sctp_sendmsg Xin Long
2017-11-13  4:43 ` Xin Long
2017-11-13 14:46 ` Neil Horman
2017-11-13 14:46   ` Neil Horman
2017-11-13 15:29   ` Xin Long
2017-11-13 15:29     ` Xin Long
2017-11-14 12:43     ` Neil Horman
2017-11-14 12:43       ` Neil Horman
2017-11-14 12:52       ` Xin Long [this message]
2017-11-14 12:52         ` Xin Long
2017-11-14 18:19         ` Neil Horman
2017-11-14 18:19           ` Neil Horman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CADvbK_dLauRWtXhVjApa3C_m3LPH64=fLRvfiWiBqm7UrYyNrg@mail.gmail.com' \
    --to=lucien.xin@gmail.com \
    --cc=davem@davemloft.net \
    --cc=dvyukov@google.com \
    --cc=linux-sctp@vger.kernel.org \
    --cc=marcelo.leitner@gmail.com \
    --cc=netdev@vger.kernel.org \
    --cc=nhorman@tuxdriver.com \
    --cc=syzkaller@googlegroups.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.