linux/net/bluetooth
Al Viro 6dc0c2082b [BLUETOOTH]: Fix endianness bug in l2cap_sock_listen()
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>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-07-31 02:28:06 -07:00
..
bnep Freezer: make kernel threads nonfreezable by default 2007-07-17 10:23:02 -07:00
cmtp Freezer: make kernel threads nonfreezable by default 2007-07-17 10:23:02 -07:00
hidp Freezer: make kernel threads nonfreezable by default 2007-07-17 10:23:02 -07:00
rfcomm [IRDA]: Fix rfcomm use-after-free 2007-07-31 02:28:05 -07:00
af_bluetooth.c [SK_BUFF]: Introduce skb_reset_transport_header(skb) 2007-04-25 22:25:15 -07:00
hci_conn.c [Bluetooth] Add basics to better support and handle eSCO links 2007-07-11 07:35:32 +02:00
hci_core.c [NET] BLUETOOTH: Fix whitespace errors. 2007-07-19 10:43:16 +09:00
hci_event.c [Bluetooth] Add basics to better support and handle eSCO links 2007-07-11 07:35:32 +02:00
hci_sock.c [BLUETOOTH]: Fix locking in hci_sock_dev_event(). 2007-05-17 14:20:30 -07:00
hci_sysfs.c Fix bluetooth HCI sysfs compile 2007-05-07 17:32:08 -07:00
Kconfig [S390] Kconfig: unwanted menus for s390. 2007-05-10 15:46:07 +02:00
l2cap.c [BLUETOOTH]: Fix endianness bug in l2cap_sock_listen() 2007-07-31 02:28:06 -07:00
lib.c [NET] BLUETOOTH: Fix whitespace errors. 2007-02-10 23:19:20 -08:00
Makefile Linux-2.6.12-rc2 2005-04-16 15:20:36 -07:00
sco.c [NET]: cleanup extra semicolons 2007-04-25 22:29:24 -07:00