cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] [GFS2 Patch] Fix recent use-after-free spotted by coverity
       [not found] <8a91332c-d06e-4a6a-9672-dcd2ebe261f6@zmail16.collab.prod.int.phx2.redhat.com>
@ 2012-01-06 21:48 ` Bob Peterson
  2012-01-09 15:40   ` Steven Whitehouse
  0 siblings, 1 reply; 2+ messages in thread
From: Bob Peterson @ 2012-01-06 21:48 UTC (permalink / raw)
  To: cluster-devel.redhat.com

Hi,

This patch fixes a use-after-free bug, spotted by coverity, which
was recently introduced.

Regards,

Bob Peterson
Red Hat File Systems

Signed-off-by: Bob Peterson <rpeterso@redhat.com> 
--
Author: Bob Peterson <rpeterso@redhat.com>
Date:   Fri Jan 6 16:42:27 2012 -0600

    GFS2: Fix a use-after-free that coverity spotted
    
    In function gfs2_inplace_release it was trying to unlock a gfs2_holder
    structure associated with a reservation, after said reservation was
    freed. The problem is that the statements have the wrong order.
    This patch corrects the order so that the reservation is freed after
    the gfs2_holder is unlocked.

diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c
index 2223462..981bfa3 100644
--- a/fs/gfs2/rgrp.c
+++ b/fs/gfs2/rgrp.c
@@ -1108,9 +1108,9 @@ void gfs2_inplace_release(struct gfs2_inode *ip)
 {
 	struct gfs2_blkreserv *rs = ip->i_res;
 
-	gfs2_blkrsv_put(ip);
 	if (rs->rs_rgd_gh.gh_gl)
 		gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
+	gfs2_blkrsv_put(ip);
 }
 
 /**



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Cluster-devel] [GFS2 Patch] Fix recent use-after-free spotted by coverity
  2012-01-06 21:48 ` [Cluster-devel] [GFS2 Patch] Fix recent use-after-free spotted by coverity Bob Peterson
@ 2012-01-09 15:40   ` Steven Whitehouse
  0 siblings, 0 replies; 2+ messages in thread
From: Steven Whitehouse @ 2012-01-09 15:40 UTC (permalink / raw)
  To: cluster-devel.redhat.com

Hi,

Now in the -fixes tree. Thanks,

Steve.

On Fri, 2012-01-06 at 16:48 -0500, Bob Peterson wrote:
> Hi,
> 
> This patch fixes a use-after-free bug, spotted by coverity, which
> was recently introduced.
> 
> Regards,
> 
> Bob Peterson
> Red Hat File Systems
> 
> Signed-off-by: Bob Peterson <rpeterso@redhat.com> 
> --
> Author: Bob Peterson <rpeterso@redhat.com>
> Date:   Fri Jan 6 16:42:27 2012 -0600
> 
>     GFS2: Fix a use-after-free that coverity spotted
>     
>     In function gfs2_inplace_release it was trying to unlock a gfs2_holder
>     structure associated with a reservation, after said reservation was
>     freed. The problem is that the statements have the wrong order.
>     This patch corrects the order so that the reservation is freed after
>     the gfs2_holder is unlocked.
> 
> diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c
> index 2223462..981bfa3 100644
> --- a/fs/gfs2/rgrp.c
> +++ b/fs/gfs2/rgrp.c
> @@ -1108,9 +1108,9 @@ void gfs2_inplace_release(struct gfs2_inode *ip)
>  {
>  	struct gfs2_blkreserv *rs = ip->i_res;
>  
> -	gfs2_blkrsv_put(ip);
>  	if (rs->rs_rgd_gh.gh_gl)
>  		gfs2_glock_dq_uninit(&rs->rs_rgd_gh);
> +	gfs2_blkrsv_put(ip);
>  }
>  
>  /**
> 




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-01-09 15:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <8a91332c-d06e-4a6a-9672-dcd2ebe261f6@zmail16.collab.prod.int.phx2.redhat.com>
2012-01-06 21:48 ` [Cluster-devel] [GFS2 Patch] Fix recent use-after-free spotted by coverity Bob Peterson
2012-01-09 15:40   ` Steven Whitehouse

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).