* [PATCH] thunderbolt: Drop sequence number check from tb_xdomain_match()
@ 2017-10-25 9:27 Mika Westerberg
2017-10-27 3:01 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Mika Westerberg @ 2017-10-25 9:27 UTC (permalink / raw)
To: David Miller
Cc: Andreas Noever, Michael Jamet, Yehezkel Bernat, Dan Carpenter,
Amir Levy, Mika Westerberg, netdev, linux-kernel
Commit 9a03c3d398c1 ("thunderbolt: Fix a couple right shifting to zero
bugs") revealed an issue that was previously hidden because we never
actually compared received XDomain message sequence numbers properly.
The idea with these sequence numbers is that the responding host uses
the same sequence number that was in the request packet which we can
then check at the requesting host.
However, testing against macOS it looks like it does not follow this but
instead uses some other logic. Windows driver on the other hand handles
it the same way than Linux.
In order to be able to talk to macOS again, fix this so that we drop the
whole sequence number check. This effectively works exactly the same
than it worked before the aforementioned commit. This also follows the
logic the original P2P networking code used.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
---
This applies on top of net-next.git/master.
drivers/thunderbolt/xdomain.c | 9 ---------
1 file changed, 9 deletions(-)
diff --git a/drivers/thunderbolt/xdomain.c b/drivers/thunderbolt/xdomain.c
index ff8d91189e99..f25d88d4552b 100644
--- a/drivers/thunderbolt/xdomain.c
+++ b/drivers/thunderbolt/xdomain.c
@@ -56,7 +56,6 @@ static bool tb_xdomain_match(const struct tb_cfg_request *req,
case TB_CFG_PKG_XDOMAIN_RESP: {
const struct tb_xdp_header *res_hdr = pkg->buffer;
const struct tb_xdp_header *req_hdr = req->request;
- u32 req_seq, res_seq;
if (pkg->frame.size < req->response_size / 4)
return false;
@@ -68,14 +67,6 @@ static bool tb_xdomain_match(const struct tb_cfg_request *req,
if ((res_hdr->xd_hdr.route_lo) != req_hdr->xd_hdr.route_lo)
return false;
- /* Then check that the sequence number matches */
- res_seq = res_hdr->xd_hdr.length_sn & TB_XDOMAIN_SN_MASK;
- res_seq >>= TB_XDOMAIN_SN_SHIFT;
- req_seq = req_hdr->xd_hdr.length_sn & TB_XDOMAIN_SN_MASK;
- req_seq >>= TB_XDOMAIN_SN_SHIFT;
- if (res_seq != req_seq)
- return false;
-
/* Check that the XDomain protocol matches */
if (!uuid_equal(&res_hdr->uuid, &req_hdr->uuid))
return false;
--
2.14.2
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] thunderbolt: Drop sequence number check from tb_xdomain_match()
2017-10-25 9:27 [PATCH] thunderbolt: Drop sequence number check from tb_xdomain_match() Mika Westerberg
@ 2017-10-27 3:01 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2017-10-27 3:01 UTC (permalink / raw)
To: mika.westerberg
Cc: andreas.noever, michael.jamet, yehezkel.bernat, dan.carpenter,
amir.jer.levy, netdev, linux-kernel
From: Mika Westerberg <mika.westerberg@linux.intel.com>
Date: Wed, 25 Oct 2017 12:27:34 +0300
> Commit 9a03c3d398c1 ("thunderbolt: Fix a couple right shifting to zero
> bugs") revealed an issue that was previously hidden because we never
> actually compared received XDomain message sequence numbers properly.
> The idea with these sequence numbers is that the responding host uses
> the same sequence number that was in the request packet which we can
> then check at the requesting host.
>
> However, testing against macOS it looks like it does not follow this but
> instead uses some other logic. Windows driver on the other hand handles
> it the same way than Linux.
>
> In order to be able to talk to macOS again, fix this so that we drop the
> whole sequence number check. This effectively works exactly the same
> than it worked before the aforementioned commit. This also follows the
> logic the original P2P networking code used.
>
> Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
> ---
> This applies on top of net-next.git/master.
Applied, thank you.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-10-27 3:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-25 9:27 [PATCH] thunderbolt: Drop sequence number check from tb_xdomain_match() Mika Westerberg
2017-10-27 3:01 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox