* [PATCH 1/4] fix endianness bug in l2cap_sock_listen()
@ 2007-07-27 12:57 Al Viro
2007-07-27 14:41 ` Marcel Holtmann
0 siblings, 1 reply; 3+ messages in thread
From: Al Viro @ 2007-07-27 12:57 UTC (permalink / raw)
To: davem; +Cc: linux-kernel, netdev, marcel
We loop through psm values, calling __l2cap_get_sock_by_addr(psm, ...)
until we get NULL; then we set ->psm of our socket to htobs(psm).
IOW, we find unused psm value and put it into our socket. So far, so
good, but... __l2cap_get_sock_by_addr() compares its argument with
->psm of sockets. IOW, the entire thing works correctly only on
little-endian. On big-endian we'll get "no socket with such psm"
on the first iteration, since we won't find a socket with ->psm == 0x1001.
We will happily conclude that 0x1001 is unused and slap htobs(0x1001)
(i.e. 0x110) into ->psm of our socket. Of course, the next time around
the same thing will repeat and we'll just get a fsckload of sockets
with the same ->psm assigned.
Fix: pass htobs(psm) to __l2cap_get_sock_by_addr() there. All other
callers are already passing little-endian values and all places that
store something in ->psm are storing little-endian.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
---
net/bluetooth/l2cap.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
index 670ff95..b82cbdd 100644
--- a/net/bluetooth/l2cap.c
+++ b/net/bluetooth/l2cap.c
@@ -748,7 +748,7 @@ static int l2cap_sock_listen(struct socket *sock, int backlog)
write_lock_bh(&l2cap_sk_list.lock);
for (psm = 0x1001; psm < 0x1100; psm += 2)
- if (!__l2cap_get_sock_by_addr(psm, src)) {
+ if (!__l2cap_get_sock_by_addr(htobs(psm), src)) {
l2cap_pi(sk)->psm = htobs(psm);
l2cap_pi(sk)->sport = htobs(psm);
err = 0;
--
1.5.3.GIT
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/4] fix endianness bug in l2cap_sock_listen()
2007-07-27 12:57 [PATCH 1/4] fix endianness bug in l2cap_sock_listen() Al Viro
@ 2007-07-27 14:41 ` Marcel Holtmann
2007-07-29 7:16 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Marcel Holtmann @ 2007-07-27 14:41 UTC (permalink / raw)
To: Al Viro; +Cc: davem, linux-kernel, netdev
Hi Al,
> We loop through psm values, calling __l2cap_get_sock_by_addr(psm, ...)
> until we get NULL; then we set ->psm of our socket to htobs(psm).
> IOW, we find unused psm value and put it into our socket. So far, so
> good, but... __l2cap_get_sock_by_addr() compares its argument with
> ->psm of sockets. IOW, the entire thing works correctly only on
> little-endian. On big-endian we'll get "no socket with such psm"
> on the first iteration, since we won't find a socket with ->psm == 0x1001.
> We will happily conclude that 0x1001 is unused and slap htobs(0x1001)
> (i.e. 0x110) into ->psm of our socket. Of course, the next time around
> the same thing will repeat and we'll just get a fsckload of sockets
> with the same ->psm assigned.
>
> Fix: pass htobs(psm) to __l2cap_get_sock_by_addr() there. All other
> callers are already passing little-endian values and all places that
> store something in ->psm are storing little-endian.
>
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Dave, all four patches are good and should go in sooner than later. If
you want me to put them into my tree first, then I can do that or you
can apply them directly. You choice.
Regards
Marcel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] fix endianness bug in l2cap_sock_listen()
2007-07-27 14:41 ` Marcel Holtmann
@ 2007-07-29 7:16 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2007-07-29 7:16 UTC (permalink / raw)
To: marcel; +Cc: viro, linux-kernel, netdev
From: Marcel Holtmann <marcel@holtmann.org>
Date: Fri, 27 Jul 2007 16:41:18 +0200
> > We loop through psm values, calling __l2cap_get_sock_by_addr(psm, ...)
> > until we get NULL; then we set ->psm of our socket to htobs(psm).
> > IOW, we find unused psm value and put it into our socket. So far, so
> > good, but... __l2cap_get_sock_by_addr() compares its argument with
> > ->psm of sockets. IOW, the entire thing works correctly only on
> > little-endian. On big-endian we'll get "no socket with such psm"
> > on the first iteration, since we won't find a socket with ->psm == 0x1001.
> > We will happily conclude that 0x1001 is unused and slap htobs(0x1001)
> > (i.e. 0x110) into ->psm of our socket. Of course, the next time around
> > the same thing will repeat and we'll just get a fsckload of sockets
> > with the same ->psm assigned.
> >
> > Fix: pass htobs(psm) to __l2cap_get_sock_by_addr() there. All other
> > callers are already passing little-endian values and all places that
> > store something in ->psm are storing little-endian.
> >
> > Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
>
> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Applied.
> Dave, all four patches are good and should go in sooner than later. If
> you want me to put them into my tree first, then I can do that or you
> can apply them directly. You choice.
I'll take care of these, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-07-29 7:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-27 12:57 [PATCH 1/4] fix endianness bug in l2cap_sock_listen() Al Viro
2007-07-27 14:41 ` Marcel Holtmann
2007-07-29 7:16 ` David Miller
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).