* [PATCH] 9p/xen: do not memcpy header into req->rc
@ 2022-11-22 0:10 Dominique Martinet
2022-11-22 2:22 ` Stefano Stabellini
2022-11-22 10:58 ` Christian Schoenebeck
0 siblings, 2 replies; 3+ messages in thread
From: Dominique Martinet @ 2022-11-22 0:10 UTC (permalink / raw)
To: Stefano Stabellini, Christian Schoenebeck
Cc: v9fs-developer, linux-kernel, Dominique Martinet
while 'h' is packed and can be assumed to match the request payload,
req->rc is a struct p9_fcall which is not packed and that memcpy
could be wrong.
Fix this by copying each fields individually instead.
Reported-by: Christian Schoenebeck <linux_oss@crudebyte.com>
Suggested-by: Stefano Stabellini <sstabellini@kernel.org>
Link: https://lkml.kernel.org/r/alpine.DEB.2.22.394.2211211454540.1049131@ubuntu-linux-20-04-desktop
Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
---
Follow up from the previous xen patch's review.
This isn't an immediate fix so I don't think this one should be rushed
in with the rest of the overflow fixes -- I'll let this sit a bit in
-next after reviews.
net/9p/trans_xen.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/net/9p/trans_xen.c b/net/9p/trans_xen.c
index 4665215bc98b..e8e3f54a837e 100644
--- a/net/9p/trans_xen.c
+++ b/net/9p/trans_xen.c
@@ -216,7 +216,9 @@ static void p9_xen_response(struct work_struct *work)
goto recv_error;
}
- memcpy(&req->rc, &h, sizeof(h));
+ req->rc.size = h.size;
+ req->rc.id = h.id;
+ req->rc.tag = h.tag;
req->rc.offset = 0;
masked_cons = xen_9pfs_mask(cons, XEN_9PFS_RING_SIZE(ring));
--
2.35.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] 9p/xen: do not memcpy header into req->rc
2022-11-22 0:10 [PATCH] 9p/xen: do not memcpy header into req->rc Dominique Martinet
@ 2022-11-22 2:22 ` Stefano Stabellini
2022-11-22 10:58 ` Christian Schoenebeck
1 sibling, 0 replies; 3+ messages in thread
From: Stefano Stabellini @ 2022-11-22 2:22 UTC (permalink / raw)
To: Dominique Martinet
Cc: Stefano Stabellini, Christian Schoenebeck, v9fs-developer,
linux-kernel
On Tue, 22 Nov 2022, Dominique Martinet wrote:
> while 'h' is packed and can be assumed to match the request payload,
> req->rc is a struct p9_fcall which is not packed and that memcpy
> could be wrong.
>
> Fix this by copying each fields individually instead.
>
> Reported-by: Christian Schoenebeck <linux_oss@crudebyte.com>
> Suggested-by: Stefano Stabellini <sstabellini@kernel.org>
> Link: https://lkml.kernel.org/r/alpine.DEB.2.22.394.2211211454540.1049131@ubuntu-linux-20-04-desktop
> Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
> ---
> Follow up from the previous xen patch's review.
>
> This isn't an immediate fix so I don't think this one should be rushed
> in with the rest of the overflow fixes -- I'll let this sit a bit in
> -next after reviews.
>
> net/9p/trans_xen.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/net/9p/trans_xen.c b/net/9p/trans_xen.c
> index 4665215bc98b..e8e3f54a837e 100644
> --- a/net/9p/trans_xen.c
> +++ b/net/9p/trans_xen.c
> @@ -216,7 +216,9 @@ static void p9_xen_response(struct work_struct *work)
> goto recv_error;
> }
>
> - memcpy(&req->rc, &h, sizeof(h));
> + req->rc.size = h.size;
> + req->rc.id = h.id;
> + req->rc.tag = h.tag;
> req->rc.offset = 0;
>
> masked_cons = xen_9pfs_mask(cons, XEN_9PFS_RING_SIZE(ring));
> --
> 2.35.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] 9p/xen: do not memcpy header into req->rc
2022-11-22 0:10 [PATCH] 9p/xen: do not memcpy header into req->rc Dominique Martinet
2022-11-22 2:22 ` Stefano Stabellini
@ 2022-11-22 10:58 ` Christian Schoenebeck
1 sibling, 0 replies; 3+ messages in thread
From: Christian Schoenebeck @ 2022-11-22 10:58 UTC (permalink / raw)
To: Stefano Stabellini, Dominique Martinet; +Cc: v9fs-developer, linux-kernel
On Tuesday, November 22, 2022 1:10:25 AM CET Dominique Martinet wrote:
> while 'h' is packed and can be assumed to match the request payload,
> req->rc is a struct p9_fcall which is not packed and that memcpy
> could be wrong.
>
> Fix this by copying each fields individually instead.
>
> Reported-by: Christian Schoenebeck <linux_oss@crudebyte.com>
> Suggested-by: Stefano Stabellini <sstabellini@kernel.org>
> Link: https://lkml.kernel.org/r/alpine.DEB.2.22.394.2211211454540.1049131@ubuntu-linux-20-04-desktop
> Signed-off-by: Dominique Martinet <asmadeus@codewreck.org>
> ---
Reviewed-by: Christian Schoenebeck <linux_oss@crudebyte.com>
> Follow up from the previous xen patch's review.
>
> This isn't an immediate fix so I don't think this one should be rushed
> in with the rest of the overflow fixes -- I'll let this sit a bit in
> -next after reviews.
>
> net/9p/trans_xen.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/net/9p/trans_xen.c b/net/9p/trans_xen.c
> index 4665215bc98b..e8e3f54a837e 100644
> --- a/net/9p/trans_xen.c
> +++ b/net/9p/trans_xen.c
> @@ -216,7 +216,9 @@ static void p9_xen_response(struct work_struct *work)
> goto recv_error;
> }
>
> - memcpy(&req->rc, &h, sizeof(h));
> + req->rc.size = h.size;
> + req->rc.id = h.id;
> + req->rc.tag = h.tag;
> req->rc.offset = 0;
>
> masked_cons = xen_9pfs_mask(cons, XEN_9PFS_RING_SIZE(ring));
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-11-22 10:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-22 0:10 [PATCH] 9p/xen: do not memcpy header into req->rc Dominique Martinet
2022-11-22 2:22 ` Stefano Stabellini
2022-11-22 10:58 ` Christian Schoenebeck
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox