2 BNEP implementation for Linux Bluetooth stack (BlueZ).
3 Copyright (C) 2001-2002 Inventel Systemes
5 Clément Moreau <clement.moreau@inventel.fr>
6 David Libault <david.libault@inventel.fr>
8 Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License version 2 as
12 published by the Free Software Foundation;
14 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
17 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
18 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
24 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
25 SOFTWARE IS DISCLAIMED.
29 * $Id: core.c,v 1.20 2002/08/04 21:23:58 maxk Exp $
32 #include <linux/module.h>
34 #include <linux/kernel.h>
35 #include <linux/sched.h>
36 #include <linux/signal.h>
37 #include <linux/init.h>
38 #include <linux/wait.h>
39 #include <linux/errno.h>
40 #include <linux/net.h>
43 #include <linux/socket.h>
44 #include <linux/file.h>
46 #include <linux/netdevice.h>
47 #include <linux/etherdevice.h>
48 #include <linux/skbuff.h>
50 #include <asm/unaligned.h>
52 #include <net/bluetooth/bluetooth.h>
53 #include <net/bluetooth/hci_core.h>
54 #include <net/bluetooth/l2cap.h>
58 #ifndef CONFIG_BT_BNEP_DEBUG
65 static LIST_HEAD(bnep_session_list
);
66 static DECLARE_RWSEM(bnep_session_sem
);
68 static struct bnep_session
*__bnep_get_session(u8
*dst
)
70 struct bnep_session
*s
;
75 list_for_each(p
, &bnep_session_list
) {
76 s
= list_entry(p
, struct bnep_session
, list
);
77 if (!compare_ether_addr(dst
, s
->eh
.h_source
))
83 static void __bnep_link_session(struct bnep_session
*s
)
85 /* It's safe to call __module_get() here because sessions are added
86 by the socket layer which has to hold the refference to this module.
88 __module_get(THIS_MODULE
);
89 list_add(&s
->list
, &bnep_session_list
);
92 static void __bnep_unlink_session(struct bnep_session
*s
)
95 module_put(THIS_MODULE
);
98 static int bnep_send(struct bnep_session
*s
, void *data
, size_t len
)
100 struct socket
*sock
= s
->sock
;
101 struct kvec iv
= { data
, len
};
103 return kernel_sendmsg(sock
, &s
->msg
, &iv
, 1, len
);
106 static int bnep_send_rsp(struct bnep_session
*s
, u8 ctrl
, u16 resp
)
108 struct bnep_control_rsp rsp
;
109 rsp
.type
= BNEP_CONTROL
;
111 rsp
.resp
= htons(resp
);
112 return bnep_send(s
, &rsp
, sizeof(rsp
));
115 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
116 static inline void bnep_set_default_proto_filter(struct bnep_session
*s
)
119 s
->proto_filter
[0].start
= ETH_P_IP
;
120 s
->proto_filter
[0].end
= ETH_P_ARP
;
121 /* (RARP, AppleTalk) */
122 s
->proto_filter
[1].start
= ETH_P_RARP
;
123 s
->proto_filter
[1].end
= ETH_P_AARP
;
125 s
->proto_filter
[2].start
= ETH_P_IPX
;
126 s
->proto_filter
[2].end
= ETH_P_IPV6
;
130 static int bnep_ctrl_set_netfilter(struct bnep_session
*s
, __be16
*data
, int len
)
137 n
= ntohs(get_unaligned(data
));
143 BT_DBG("filter len %d", n
);
145 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
147 if (n
<= BNEP_MAX_PROTO_FILTERS
) {
148 struct bnep_proto_filter
*f
= s
->proto_filter
;
151 for (i
= 0; i
< n
; i
++) {
152 f
[i
].start
= ntohs(get_unaligned(data
++));
153 f
[i
].end
= ntohs(get_unaligned(data
++));
155 BT_DBG("proto filter start %d end %d",
156 f
[i
].start
, f
[i
].end
);
159 if (i
< BNEP_MAX_PROTO_FILTERS
)
160 memset(f
+ i
, 0, sizeof(*f
));
163 bnep_set_default_proto_filter(s
);
165 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_SUCCESS
);
167 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_FILTER_LIMIT_REACHED
);
170 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_FILTER_UNSUPPORTED_REQ
);
175 static int bnep_ctrl_set_mcfilter(struct bnep_session
*s
, u8
*data
, int len
)
182 n
= ntohs(get_unaligned((__be16
*) data
));
188 BT_DBG("filter len %d", n
);
190 #ifdef CONFIG_BT_BNEP_MC_FILTER
196 /* Always send broadcast */
197 set_bit(bnep_mc_hash(s
->dev
->broadcast
), (ulong
*) &s
->mc_filter
);
199 /* Add address ranges to the multicast hash */
203 memcpy(a1
, data
, ETH_ALEN
); data
+= ETH_ALEN
;
204 a2
= data
; data
+= ETH_ALEN
;
206 BT_DBG("mc filter %s -> %s",
207 batostr((void *) a1
), batostr((void *) a2
));
209 #define INCA(a) { int i = 5; while (i >=0 && ++a[i--] == 0); }
211 /* Iterate from a1 to a2 */
212 set_bit(bnep_mc_hash(a1
), (ulong
*) &s
->mc_filter
);
213 while (memcmp(a1
, a2
, 6) < 0 && s
->mc_filter
!= ~0LL) {
215 set_bit(bnep_mc_hash(a1
), (ulong
*) &s
->mc_filter
);
220 BT_DBG("mc filter hash 0x%llx", s
->mc_filter
);
222 bnep_send_rsp(s
, BNEP_FILTER_MULTI_ADDR_RSP
, BNEP_SUCCESS
);
224 bnep_send_rsp(s
, BNEP_FILTER_MULTI_ADDR_RSP
, BNEP_FILTER_UNSUPPORTED_REQ
);
229 static int bnep_rx_control(struct bnep_session
*s
, void *data
, int len
)
231 u8 cmd
= *(u8
*)data
;
237 case BNEP_CMD_NOT_UNDERSTOOD
:
238 case BNEP_SETUP_CONN_REQ
:
239 case BNEP_SETUP_CONN_RSP
:
240 case BNEP_FILTER_NET_TYPE_RSP
:
241 case BNEP_FILTER_MULTI_ADDR_RSP
:
242 /* Ignore these for now */
245 case BNEP_FILTER_NET_TYPE_SET
:
246 err
= bnep_ctrl_set_netfilter(s
, data
, len
);
249 case BNEP_FILTER_MULTI_ADDR_SET
:
250 err
= bnep_ctrl_set_mcfilter(s
, data
, len
);
255 pkt
[0] = BNEP_CONTROL
;
256 pkt
[1] = BNEP_CMD_NOT_UNDERSTOOD
;
258 bnep_send(s
, pkt
, sizeof(pkt
));
266 static int bnep_rx_extension(struct bnep_session
*s
, struct sk_buff
*skb
)
268 struct bnep_ext_hdr
*h
;
272 h
= (void *) skb
->data
;
273 if (!skb_pull(skb
, sizeof(*h
))) {
278 BT_DBG("type 0x%x len %d", h
->type
, h
->len
);
280 switch (h
->type
& BNEP_TYPE_MASK
) {
281 case BNEP_EXT_CONTROL
:
282 bnep_rx_control(s
, skb
->data
, skb
->len
);
286 /* Unknown extension, skip it. */
290 if (!skb_pull(skb
, h
->len
)) {
294 } while (!err
&& (h
->type
& BNEP_EXT_HEADER
));
299 static u8 __bnep_rx_hlen
[] = {
300 ETH_HLEN
, /* BNEP_GENERAL */
301 0, /* BNEP_CONTROL */
302 2, /* BNEP_COMPRESSED */
303 ETH_ALEN
+ 2, /* BNEP_COMPRESSED_SRC_ONLY */
304 ETH_ALEN
+ 2 /* BNEP_COMPRESSED_DST_ONLY */
306 #define BNEP_RX_TYPES (sizeof(__bnep_rx_hlen) - 1)
308 static inline int bnep_rx_frame(struct bnep_session
*s
, struct sk_buff
*skb
)
310 struct net_device
*dev
= s
->dev
;
311 struct sk_buff
*nskb
;
314 dev
->last_rx
= jiffies
;
315 s
->stats
.rx_bytes
+= skb
->len
;
317 type
= *(u8
*) skb
->data
; skb_pull(skb
, 1);
319 if ((type
& BNEP_TYPE_MASK
) > BNEP_RX_TYPES
)
322 if ((type
& BNEP_TYPE_MASK
) == BNEP_CONTROL
) {
323 bnep_rx_control(s
, skb
->data
, skb
->len
);
328 skb_reset_mac_header(skb
);
330 /* Verify and pull out header */
331 if (!skb_pull(skb
, __bnep_rx_hlen
[type
& BNEP_TYPE_MASK
]))
334 s
->eh
.h_proto
= get_unaligned((__be16
*) (skb
->data
- 2));
336 if (type
& BNEP_EXT_HEADER
) {
337 if (bnep_rx_extension(s
, skb
) < 0)
341 /* Strip 802.1p header */
342 if (ntohs(s
->eh
.h_proto
) == 0x8100) {
343 if (!skb_pull(skb
, 4))
345 s
->eh
.h_proto
= get_unaligned((__be16
*) (skb
->data
- 2));
348 /* We have to alloc new skb and copy data here :(. Because original skb
349 * may not be modified and because of the alignment requirements. */
350 nskb
= alloc_skb(2 + ETH_HLEN
+ skb
->len
, GFP_KERNEL
);
352 s
->stats
.rx_dropped
++;
356 skb_reserve(nskb
, 2);
358 /* Decompress header and construct ether frame */
359 switch (type
& BNEP_TYPE_MASK
) {
360 case BNEP_COMPRESSED
:
361 memcpy(__skb_put(nskb
, ETH_HLEN
), &s
->eh
, ETH_HLEN
);
364 case BNEP_COMPRESSED_SRC_ONLY
:
365 memcpy(__skb_put(nskb
, ETH_ALEN
), s
->eh
.h_dest
, ETH_ALEN
);
366 memcpy(__skb_put(nskb
, ETH_ALEN
), skb_mac_header(skb
), ETH_ALEN
);
367 put_unaligned(s
->eh
.h_proto
, (__be16
*) __skb_put(nskb
, 2));
370 case BNEP_COMPRESSED_DST_ONLY
:
371 memcpy(__skb_put(nskb
, ETH_ALEN
), skb_mac_header(skb
),
373 memcpy(__skb_put(nskb
, ETH_ALEN
+ 2), s
->eh
.h_source
,
378 memcpy(__skb_put(nskb
, ETH_ALEN
* 2), skb_mac_header(skb
),
380 put_unaligned(s
->eh
.h_proto
, (__be16
*) __skb_put(nskb
, 2));
384 skb_copy_from_linear_data(skb
, __skb_put(nskb
, skb
->len
), skb
->len
);
387 s
->stats
.rx_packets
++;
388 nskb
->ip_summed
= CHECKSUM_NONE
;
389 nskb
->protocol
= eth_type_trans(nskb
, dev
);
394 s
->stats
.rx_errors
++;
399 static u8 __bnep_tx_types
[] = {
401 BNEP_COMPRESSED_SRC_ONLY
,
402 BNEP_COMPRESSED_DST_ONLY
,
406 static inline int bnep_tx_frame(struct bnep_session
*s
, struct sk_buff
*skb
)
408 struct ethhdr
*eh
= (void *) skb
->data
;
409 struct socket
*sock
= s
->sock
;
414 BT_DBG("skb %p dev %p type %d", skb
, skb
->dev
, skb
->pkt_type
);
417 /* Control frame sent by us */
421 iv
[il
++] = (struct kvec
) { &type
, 1 };
424 if (!compare_ether_addr(eh
->h_dest
, s
->eh
.h_source
))
427 if (!compare_ether_addr(eh
->h_source
, s
->eh
.h_dest
))
431 skb_pull(skb
, ETH_ALEN
* 2);
433 type
= __bnep_tx_types
[type
];
435 case BNEP_COMPRESSED_SRC_ONLY
:
436 iv
[il
++] = (struct kvec
) { eh
->h_source
, ETH_ALEN
};
440 case BNEP_COMPRESSED_DST_ONLY
:
441 iv
[il
++] = (struct kvec
) { eh
->h_dest
, ETH_ALEN
};
447 iv
[il
++] = (struct kvec
) { skb
->data
, skb
->len
};
450 /* FIXME: linearize skb */
452 len
= kernel_sendmsg(sock
, &s
->msg
, iv
, il
, len
);
457 s
->stats
.tx_bytes
+= len
;
458 s
->stats
.tx_packets
++;
465 static int bnep_session(void *arg
)
467 struct bnep_session
*s
= arg
;
468 struct net_device
*dev
= s
->dev
;
469 struct sock
*sk
= s
->sock
->sk
;
475 daemonize("kbnepd %s", dev
->name
);
476 set_user_nice(current
, -15);
477 current
->flags
|= PF_NOFREEZE
;
479 init_waitqueue_entry(&wait
, current
);
480 add_wait_queue(sk
->sk_sleep
, &wait
);
481 while (!atomic_read(&s
->killed
)) {
482 set_current_state(TASK_INTERRUPTIBLE
);
485 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
))) {
487 bnep_rx_frame(s
, skb
);
490 if (sk
->sk_state
!= BT_CONNECTED
)
494 while ((skb
= skb_dequeue(&sk
->sk_write_queue
)))
495 if (bnep_tx_frame(s
, skb
))
497 netif_wake_queue(dev
);
501 set_current_state(TASK_RUNNING
);
502 remove_wait_queue(sk
->sk_sleep
, &wait
);
504 /* Cleanup session */
505 down_write(&bnep_session_sem
);
507 /* Delete network device */
508 unregister_netdev(dev
);
510 /* Release the socket */
513 __bnep_unlink_session(s
);
515 up_write(&bnep_session_sem
);
520 static struct device
*bnep_get_device(struct bnep_session
*session
)
522 bdaddr_t
*src
= &bt_sk(session
->sock
->sk
)->src
;
523 bdaddr_t
*dst
= &bt_sk(session
->sock
->sk
)->dst
;
524 struct hci_dev
*hdev
;
525 struct hci_conn
*conn
;
527 hdev
= hci_get_route(dst
, src
);
531 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, dst
);
535 return conn
? &conn
->dev
: NULL
;
538 int bnep_add_connection(struct bnep_connadd_req
*req
, struct socket
*sock
)
540 struct net_device
*dev
;
541 struct bnep_session
*s
, *ss
;
542 u8 dst
[ETH_ALEN
], src
[ETH_ALEN
];
547 baswap((void *) dst
, &bt_sk(sock
->sk
)->dst
);
548 baswap((void *) src
, &bt_sk(sock
->sk
)->src
);
550 /* session struct allocated as private part of net_device */
551 dev
= alloc_netdev(sizeof(struct bnep_session
),
552 (*req
->device
) ? req
->device
: "bnep%d",
557 down_write(&bnep_session_sem
);
559 ss
= __bnep_get_session(dst
);
560 if (ss
&& ss
->state
== BT_CONNECTED
) {
567 /* This is rx header therefore addresses are swapped.
568 * ie eh.h_dest is our local address. */
569 memcpy(s
->eh
.h_dest
, &src
, ETH_ALEN
);
570 memcpy(s
->eh
.h_source
, &dst
, ETH_ALEN
);
571 memcpy(dev
->dev_addr
, s
->eh
.h_dest
, ETH_ALEN
);
576 s
->state
= BT_CONNECTED
;
578 s
->msg
.msg_flags
= MSG_NOSIGNAL
;
580 #ifdef CONFIG_BT_BNEP_MC_FILTER
581 /* Set default mc filter */
582 set_bit(bnep_mc_hash(dev
->broadcast
), (ulong
*) &s
->mc_filter
);
585 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
586 /* Set default protocol filter */
587 bnep_set_default_proto_filter(s
);
590 SET_NETDEV_DEV(dev
, bnep_get_device(s
));
592 err
= register_netdev(dev
);
597 __bnep_link_session(s
);
599 err
= kernel_thread(bnep_session
, s
, CLONE_KERNEL
);
601 /* Session thread start failed, gotta cleanup. */
602 unregister_netdev(dev
);
603 __bnep_unlink_session(s
);
607 up_write(&bnep_session_sem
);
608 strcpy(req
->device
, dev
->name
);
612 up_write(&bnep_session_sem
);
617 int bnep_del_connection(struct bnep_conndel_req
*req
)
619 struct bnep_session
*s
;
624 down_read(&bnep_session_sem
);
626 s
= __bnep_get_session(req
->dst
);
628 /* Wakeup user-space which is polling for socket errors.
629 * This is temporary hack untill we have shutdown in L2CAP */
630 s
->sock
->sk
->sk_err
= EUNATCH
;
632 /* Kill session thread */
633 atomic_inc(&s
->killed
);
634 wake_up_interruptible(s
->sock
->sk
->sk_sleep
);
638 up_read(&bnep_session_sem
);
642 static void __bnep_copy_ci(struct bnep_conninfo
*ci
, struct bnep_session
*s
)
644 memcpy(ci
->dst
, s
->eh
.h_source
, ETH_ALEN
);
645 strcpy(ci
->device
, s
->dev
->name
);
646 ci
->flags
= s
->flags
;
647 ci
->state
= s
->state
;
651 int bnep_get_connlist(struct bnep_connlist_req
*req
)
656 down_read(&bnep_session_sem
);
658 list_for_each(p
, &bnep_session_list
) {
659 struct bnep_session
*s
;
660 struct bnep_conninfo ci
;
662 s
= list_entry(p
, struct bnep_session
, list
);
664 __bnep_copy_ci(&ci
, s
);
666 if (copy_to_user(req
->ci
, &ci
, sizeof(ci
))) {
671 if (++n
>= req
->cnum
)
678 up_read(&bnep_session_sem
);
682 int bnep_get_conninfo(struct bnep_conninfo
*ci
)
684 struct bnep_session
*s
;
687 down_read(&bnep_session_sem
);
689 s
= __bnep_get_session(ci
->dst
);
691 __bnep_copy_ci(ci
, s
);
695 up_read(&bnep_session_sem
);
699 static int __init
bnep_init(void)
705 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
706 strcat(flt
, "protocol ");
709 #ifdef CONFIG_BT_BNEP_MC_FILTER
710 strcat(flt
, "multicast");
713 BT_INFO("BNEP (Ethernet Emulation) ver %s", VERSION
);
715 BT_INFO("BNEP filters: %s", flt
);
721 static void __exit
bnep_exit(void)
726 module_init(bnep_init
);
727 module_exit(bnep_exit
);
729 MODULE_AUTHOR("David Libault <david.libault@inventel.fr>, Maxim Krasnyansky <maxk@qualcomm.com>");
730 MODULE_DESCRIPTION("Bluetooth BNEP ver " VERSION
);
731 MODULE_VERSION(VERSION
);
732 MODULE_LICENSE("GPL");
733 MODULE_ALIAS("bt-proto-4");