* Patch "iser-target: Fix possible use-after-free" has been added to the 3.14-stable tree
@ 2015-06-23 3:22 gregkh
2015-06-23 13:24 ` Jiri Slaby
0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2015-06-23 3:22 UTC (permalink / raw)
To: sagig, gregkh, jennyf, nab; +Cc: stable, stable-commits
This is a note to let you know that I've just added the patch titled
iser-target: Fix possible use-after-free
to the 3.14-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
iser-target-fix-possible-use-after-free.patch
and it can be found in the queue-3.14 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.
>From 524630d5824c7a75aab568c6bd1423fd748cd3bb Mon Sep 17 00:00:00 2001
From: Sagi Grimberg <sagig@mellanox.com>
Date: Thu, 4 Jun 2015 19:49:21 +0300
Subject: iser-target: Fix possible use-after-free
From: Sagi Grimberg <sagig@mellanox.com>
commit 524630d5824c7a75aab568c6bd1423fd748cd3bb upstream.
iser connection termination process happens in 2 stages:
- isert_wait_conn:
- resumes rdma disconnect
- wait for session commands
- wait for flush completions (post a marked wr to signal we are done)
- wait for logout completion
- queue work for connection cleanup (depends on disconnected/timewait
events)
- isert_free_conn
- last reference put on the connection
In case we are terminating during IOs, we might be posting send/recv
requests after we posted the last work request which might lead
to a use-after-free condition in isert_handle_wc.
After we posted the last wr in isert_wait_conn we are guaranteed that
no successful completions will follow (meaning no new work request posts
may happen) but other flush errors might still come. So before we
put the last reference on the connection, we repeat the process of
posting a marked work request (isert_wait4flush) in order to make sure all
pending completions were flushed.
Signed-off-by: Sagi Grimberg <sagig@mellanox.com>
Signed-off-by: Jenny Falkovich <jennyf@mellanox.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
drivers/infiniband/ulp/isert/ib_isert.c | 1 +
1 file changed, 1 insertion(+)
--- a/drivers/infiniband/ulp/isert/ib_isert.c
+++ b/drivers/infiniband/ulp/isert/ib_isert.c
@@ -2952,6 +2952,7 @@ static void isert_free_conn(struct iscsi
{
struct isert_conn *isert_conn = conn->context;
+ isert_wait4flush(isert_conn);
isert_put_conn(isert_conn);
}
Patches currently in stable-queue which might be from sagig@mellanox.com are
queue-3.14/iser-target-fix-possible-use-after-free.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Patch "iser-target: Fix possible use-after-free" has been added to the 3.14-stable tree
2015-06-23 3:22 Patch "iser-target: Fix possible use-after-free" has been added to the 3.14-stable tree gregkh
@ 2015-06-23 13:24 ` Jiri Slaby
2015-06-24 14:49 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Jiri Slaby @ 2015-06-23 13:24 UTC (permalink / raw)
To: gregkh, sagig, jennyf, nab; +Cc: stable, stable-commits
On 06/23/2015, 05:22 AM, gregkh@linuxfoundation.org wrote:
>
> This is a note to let you know that I've just added the patch titled
>
> iser-target: Fix possible use-after-free
>
> to the 3.14-stable tree which can be found at:
> http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
>
> The filename of the patch is:
> iser-target-fix-possible-use-after-free.patch
> and it can be found in the queue-3.14 subdirectory.
>
> If you, or anyone else, feels it should not be added to the stable tree,
> please let <stable@vger.kernel.org> know about it.
>
>
> From 524630d5824c7a75aab568c6bd1423fd748cd3bb Mon Sep 17 00:00:00 2001
> From: Sagi Grimberg <sagig@mellanox.com>
> Date: Thu, 4 Jun 2015 19:49:21 +0300
> Subject: iser-target: Fix possible use-after-free
>
> From: Sagi Grimberg <sagig@mellanox.com>
>
> commit 524630d5824c7a75aab568c6bd1423fd748cd3bb upstream.
...
> --- a/drivers/infiniband/ulp/isert/ib_isert.c
> +++ b/drivers/infiniband/ulp/isert/ib_isert.c
> @@ -2952,6 +2952,7 @@ static void isert_free_conn(struct iscsi
> {
> struct isert_conn *isert_conn = conn->context;
>
> + isert_wait4flush(isert_conn);
This breaks build in 3.12, and I think 3.14 and 3.10 is affected too. We
do not have isert_wait4flush yet.
thanks,
--
js
suse labs
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Patch "iser-target: Fix possible use-after-free" has been added to the 3.14-stable tree
2015-06-23 13:24 ` Jiri Slaby
@ 2015-06-24 14:49 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2015-06-24 14:49 UTC (permalink / raw)
To: Jiri Slaby; +Cc: sagig, jennyf, nab, stable, stable-commits
On Tue, Jun 23, 2015 at 03:24:05PM +0200, Jiri Slaby wrote:
> On 06/23/2015, 05:22 AM, gregkh@linuxfoundation.org wrote:
> >
> > This is a note to let you know that I've just added the patch titled
> >
> > iser-target: Fix possible use-after-free
> >
> > to the 3.14-stable tree which can be found at:
> > http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
> >
> > The filename of the patch is:
> > iser-target-fix-possible-use-after-free.patch
> > and it can be found in the queue-3.14 subdirectory.
> >
> > If you, or anyone else, feels it should not be added to the stable tree,
> > please let <stable@vger.kernel.org> know about it.
> >
> >
> > From 524630d5824c7a75aab568c6bd1423fd748cd3bb Mon Sep 17 00:00:00 2001
> > From: Sagi Grimberg <sagig@mellanox.com>
> > Date: Thu, 4 Jun 2015 19:49:21 +0300
> > Subject: iser-target: Fix possible use-after-free
> >
> > From: Sagi Grimberg <sagig@mellanox.com>
> >
> > commit 524630d5824c7a75aab568c6bd1423fd748cd3bb upstream.
>
> ...
>
> > --- a/drivers/infiniband/ulp/isert/ib_isert.c
> > +++ b/drivers/infiniband/ulp/isert/ib_isert.c
> > @@ -2952,6 +2952,7 @@ static void isert_free_conn(struct iscsi
> > {
> > struct isert_conn *isert_conn = conn->context;
> >
> > + isert_wait4flush(isert_conn);
>
> This breaks build in 3.12, and I think 3.14 and 3.10 is affected too. We
> do not have isert_wait4flush yet.
Yes, you are right, now dropped, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-24 14:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-23 3:22 Patch "iser-target: Fix possible use-after-free" has been added to the 3.14-stable tree gregkh
2015-06-23 13:24 ` Jiri Slaby
2015-06-24 14:49 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox