All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails
@ 2022-11-08 13:46 xiubli
  2022-11-08 13:51 ` Greg KH
  2022-11-08 15:10 ` Ilya Dryomov
  0 siblings, 2 replies; 4+ messages in thread
From: xiubli @ 2022-11-08 13:46 UTC (permalink / raw)
  To: ceph-devel, idryomov; +Cc: lhenriques, jlayton, mchangir, Xiubo Li, stable

From: Xiubo Li <xiubli@redhat.com>

When decoding the snaps fails it maybe leaving the 'first_realm'
and 'realm' pointing to the same snaprealm memory. And then it'll
put it twice and could cause random use-after-free, BUG_ON, etc
issues.

Cc: stable@vger.kernel.org
URL: https://tracker.ceph.com/issues/57686
Signed-off-by: Xiubo Li <xiubli@redhat.com>
---
 fs/ceph/snap.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
index 9bceed2ebda3..f5b0fa1ff705 100644
--- a/fs/ceph/snap.c
+++ b/fs/ceph/snap.c
@@ -775,6 +775,7 @@ int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
 
 	dout("%s deletion=%d\n", __func__, deletion);
 more:
+	realm = NULL;
 	rebuild_snapcs = 0;
 	ceph_decode_need(&p, e, sizeof(*ri), bad);
 	ri = p;
-- 
2.31.1


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

* Re: [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails
  2022-11-08 13:46 [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails xiubli
@ 2022-11-08 13:51 ` Greg KH
  2022-11-08 15:10 ` Ilya Dryomov
  1 sibling, 0 replies; 4+ messages in thread
From: Greg KH @ 2022-11-08 13:51 UTC (permalink / raw)
  To: xiubli; +Cc: ceph-devel, idryomov, lhenriques, jlayton, mchangir, stable

On Tue, Nov 08, 2022 at 09:46:33PM +0800, xiubli@redhat.com wrote:
> From: Xiubo Li <xiubli@redhat.com>
> 
> When decoding the snaps fails it maybe leaving the 'first_realm'
> and 'realm' pointing to the same snaprealm memory. And then it'll
> put it twice and could cause random use-after-free, BUG_ON, etc
> issues.
> 
> Cc: stable@vger.kernel.org
> URL: https://tracker.ceph.com/issues/57686
> Signed-off-by: Xiubo Li <xiubli@redhat.com>
> ---
>  fs/ceph/snap.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
> index 9bceed2ebda3..f5b0fa1ff705 100644
> --- a/fs/ceph/snap.c
> +++ b/fs/ceph/snap.c
> @@ -775,6 +775,7 @@ int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
>  
>  	dout("%s deletion=%d\n", __func__, deletion);
>  more:
> +	realm = NULL;
>  	rebuild_snapcs = 0;
>  	ceph_decode_need(&p, e, sizeof(*ri), bad);
>  	ri = p;
> -- 
> 2.31.1
> 

Hi,

This is the friendly patch-bot of Greg Kroah-Hartman.  You have sent him
a patch that has triggered this response.  He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created.  Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.

You are receiving this message because of the following common error(s)
as indicated below:

- This looks like a new version of a previously submitted patch, but you
  did not list below the --- line any changes from the previous version.
  Please read the section entitled "The canonical patch format" in the
  kernel file, Documentation/SubmittingPatches for what needs to be done
  here to properly describe this.

If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.

thanks,

greg k-h's patch email bot

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

* Re: [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails
  2022-11-08 13:46 [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails xiubli
  2022-11-08 13:51 ` Greg KH
@ 2022-11-08 15:10 ` Ilya Dryomov
  2022-11-09  1:09   ` Xiubo Li
  1 sibling, 1 reply; 4+ messages in thread
From: Ilya Dryomov @ 2022-11-08 15:10 UTC (permalink / raw)
  To: xiubli; +Cc: ceph-devel, lhenriques, jlayton, mchangir, stable

On Tue, Nov 8, 2022 at 2:46 PM <xiubli@redhat.com> wrote:
>
> From: Xiubo Li <xiubli@redhat.com>
>
> When decoding the snaps fails it maybe leaving the 'first_realm'
> and 'realm' pointing to the same snaprealm memory. And then it'll
> put it twice and could cause random use-after-free, BUG_ON, etc
> issues.
>
> Cc: stable@vger.kernel.org
> URL: https://tracker.ceph.com/issues/57686
> Signed-off-by: Xiubo Li <xiubli@redhat.com>
> ---
>  fs/ceph/snap.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
> index 9bceed2ebda3..f5b0fa1ff705 100644
> --- a/fs/ceph/snap.c
> +++ b/fs/ceph/snap.c
> @@ -775,6 +775,7 @@ int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
>
>         dout("%s deletion=%d\n", __func__, deletion);
>  more:
> +       realm = NULL;

Nit: realm doesn't need to be initialized anymore, I would drop that.

Thanks,

                Ilya

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

* Re: [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails
  2022-11-08 15:10 ` Ilya Dryomov
@ 2022-11-09  1:09   ` Xiubo Li
  0 siblings, 0 replies; 4+ messages in thread
From: Xiubo Li @ 2022-11-09  1:09 UTC (permalink / raw)
  To: Ilya Dryomov; +Cc: ceph-devel, lhenriques, jlayton, mchangir, stable


On 08/11/2022 23:10, Ilya Dryomov wrote:
> On Tue, Nov 8, 2022 at 2:46 PM <xiubli@redhat.com> wrote:
>> From: Xiubo Li <xiubli@redhat.com>
>>
>> When decoding the snaps fails it maybe leaving the 'first_realm'
>> and 'realm' pointing to the same snaprealm memory. And then it'll
>> put it twice and could cause random use-after-free, BUG_ON, etc
>> issues.
>>
>> Cc: stable@vger.kernel.org
>> URL: https://tracker.ceph.com/issues/57686
>> Signed-off-by: Xiubo Li <xiubli@redhat.com>
>> ---
>>   fs/ceph/snap.c | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/fs/ceph/snap.c b/fs/ceph/snap.c
>> index 9bceed2ebda3..f5b0fa1ff705 100644
>> --- a/fs/ceph/snap.c
>> +++ b/fs/ceph/snap.c
>> @@ -775,6 +775,7 @@ int ceph_update_snap_trace(struct ceph_mds_client *mdsc,
>>
>>          dout("%s deletion=%d\n", __func__, deletion);
>>   more:
>> +       realm = NULL;
> Nit: realm doesn't need to be initialized anymore, I would drop that.

I noticed that. Sure will remove that.

Thanks!

- Xiubo

> Thanks,
>
>                  Ilya
>


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

end of thread, other threads:[~2022-11-09  1:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-08 13:46 [PATCH v3] ceph: avoid putting the realm twice when decoding snaps fails xiubli
2022-11-08 13:51 ` Greg KH
2022-11-08 15:10 ` Ilya Dryomov
2022-11-09  1:09   ` Xiubo Li

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.