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.
28 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/sched.h>
32 #include <linux/signal.h>
33 #include <linux/init.h>
34 #include <linux/wait.h>
35 #include <linux/freezer.h>
36 #include <linux/errno.h>
37 #include <linux/net.h>
38 #include <linux/slab.h>
39 #include <linux/kthread.h>
42 #include <linux/socket.h>
43 #include <linux/file.h>
45 #include <linux/netdevice.h>
46 #include <linux/etherdevice.h>
47 #include <linux/skbuff.h>
49 #include <asm/unaligned.h>
51 #include <net/bluetooth/bluetooth.h>
52 #include <net/bluetooth/hci_core.h>
53 #include <net/bluetooth/l2cap.h>
59 static bool compress_src
= true;
60 static bool compress_dst
= true;
62 static LIST_HEAD(bnep_session_list
);
63 static DECLARE_RWSEM(bnep_session_sem
);
65 static struct bnep_session
*__bnep_get_session(u8
*dst
)
67 struct bnep_session
*s
;
71 list_for_each_entry(s
, &bnep_session_list
, list
)
72 if (!compare_ether_addr(dst
, s
->eh
.h_source
))
78 static void __bnep_link_session(struct bnep_session
*s
)
80 list_add(&s
->list
, &bnep_session_list
);
83 static void __bnep_unlink_session(struct bnep_session
*s
)
88 static int bnep_send(struct bnep_session
*s
, void *data
, size_t len
)
90 struct socket
*sock
= s
->sock
;
91 struct kvec iv
= { data
, len
};
93 return kernel_sendmsg(sock
, &s
->msg
, &iv
, 1, len
);
96 static int bnep_send_rsp(struct bnep_session
*s
, u8 ctrl
, u16 resp
)
98 struct bnep_control_rsp rsp
;
99 rsp
.type
= BNEP_CONTROL
;
101 rsp
.resp
= htons(resp
);
102 return bnep_send(s
, &rsp
, sizeof(rsp
));
105 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
106 static inline void bnep_set_default_proto_filter(struct bnep_session
*s
)
109 s
->proto_filter
[0].start
= ETH_P_IP
;
110 s
->proto_filter
[0].end
= ETH_P_ARP
;
111 /* (RARP, AppleTalk) */
112 s
->proto_filter
[1].start
= ETH_P_RARP
;
113 s
->proto_filter
[1].end
= ETH_P_AARP
;
115 s
->proto_filter
[2].start
= ETH_P_IPX
;
116 s
->proto_filter
[2].end
= ETH_P_IPV6
;
120 static int bnep_ctrl_set_netfilter(struct bnep_session
*s
, __be16
*data
, int len
)
127 n
= get_unaligned_be16(data
);
134 BT_DBG("filter len %d", n
);
136 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
138 if (n
<= BNEP_MAX_PROTO_FILTERS
) {
139 struct bnep_proto_filter
*f
= s
->proto_filter
;
142 for (i
= 0; i
< n
; i
++) {
143 f
[i
].start
= get_unaligned_be16(data
++);
144 f
[i
].end
= get_unaligned_be16(data
++);
146 BT_DBG("proto filter start %d end %d",
147 f
[i
].start
, f
[i
].end
);
150 if (i
< BNEP_MAX_PROTO_FILTERS
)
151 memset(f
+ i
, 0, sizeof(*f
));
154 bnep_set_default_proto_filter(s
);
156 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_SUCCESS
);
158 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_FILTER_LIMIT_REACHED
);
161 bnep_send_rsp(s
, BNEP_FILTER_NET_TYPE_RSP
, BNEP_FILTER_UNSUPPORTED_REQ
);
166 static int bnep_ctrl_set_mcfilter(struct bnep_session
*s
, u8
*data
, int len
)
173 n
= get_unaligned_be16(data
);
180 BT_DBG("filter len %d", n
);
182 #ifdef CONFIG_BT_BNEP_MC_FILTER
190 /* Always send broadcast */
191 set_bit(bnep_mc_hash(s
->dev
->broadcast
), (ulong
*) &s
->mc_filter
);
193 /* Add address ranges to the multicast hash */
197 memcpy(a1
, data
, ETH_ALEN
);
202 BT_DBG("mc filter %s -> %s",
203 batostr((void *) a1
), batostr((void *) a2
));
205 /* Iterate from a1 to a2 */
206 set_bit(bnep_mc_hash(a1
), (ulong
*) &s
->mc_filter
);
207 while (memcmp(a1
, a2
, 6) < 0 && s
->mc_filter
!= ~0LL) {
210 while (i
>= 0 && ++a1
[i
--] == 0)
213 set_bit(bnep_mc_hash(a1
), (ulong
*) &s
->mc_filter
);
218 BT_DBG("mc filter hash 0x%llx", s
->mc_filter
);
220 bnep_send_rsp(s
, BNEP_FILTER_MULTI_ADDR_RSP
, BNEP_SUCCESS
);
222 bnep_send_rsp(s
, BNEP_FILTER_MULTI_ADDR_RSP
, BNEP_FILTER_UNSUPPORTED_REQ
);
227 static int bnep_rx_control(struct bnep_session
*s
, void *data
, int len
)
229 u8 cmd
= *(u8
*)data
;
236 case BNEP_CMD_NOT_UNDERSTOOD
:
237 case BNEP_SETUP_CONN_RSP
:
238 case BNEP_FILTER_NET_TYPE_RSP
:
239 case BNEP_FILTER_MULTI_ADDR_RSP
:
240 /* Ignore these for now */
243 case BNEP_FILTER_NET_TYPE_SET
:
244 err
= bnep_ctrl_set_netfilter(s
, data
, len
);
247 case BNEP_FILTER_MULTI_ADDR_SET
:
248 err
= bnep_ctrl_set_mcfilter(s
, data
, len
);
251 case BNEP_SETUP_CONN_REQ
:
252 err
= bnep_send_rsp(s
, BNEP_SETUP_CONN_RSP
, BNEP_CONN_NOT_ALLOWED
);
257 pkt
[0] = BNEP_CONTROL
;
258 pkt
[1] = BNEP_CMD_NOT_UNDERSTOOD
;
260 bnep_send(s
, pkt
, sizeof(pkt
));
268 static int bnep_rx_extension(struct bnep_session
*s
, struct sk_buff
*skb
)
270 struct bnep_ext_hdr
*h
;
274 h
= (void *) skb
->data
;
275 if (!skb_pull(skb
, sizeof(*h
))) {
280 BT_DBG("type 0x%x len %d", h
->type
, h
->len
);
282 switch (h
->type
& BNEP_TYPE_MASK
) {
283 case BNEP_EXT_CONTROL
:
284 bnep_rx_control(s
, skb
->data
, skb
->len
);
288 /* Unknown extension, skip it. */
292 if (!skb_pull(skb
, h
->len
)) {
296 } while (!err
&& (h
->type
& BNEP_EXT_HEADER
));
301 static u8 __bnep_rx_hlen
[] = {
302 ETH_HLEN
, /* BNEP_GENERAL */
303 0, /* BNEP_CONTROL */
304 2, /* BNEP_COMPRESSED */
305 ETH_ALEN
+ 2, /* BNEP_COMPRESSED_SRC_ONLY */
306 ETH_ALEN
+ 2 /* BNEP_COMPRESSED_DST_ONLY */
309 static inline int bnep_rx_frame(struct bnep_session
*s
, struct sk_buff
*skb
)
311 struct net_device
*dev
= s
->dev
;
312 struct sk_buff
*nskb
;
315 dev
->stats
.rx_bytes
+= skb
->len
;
317 type
= *(u8
*) skb
->data
;
320 if ((type
& BNEP_TYPE_MASK
) >= sizeof(__bnep_rx_hlen
))
323 if ((type
& BNEP_TYPE_MASK
) == BNEP_CONTROL
) {
324 bnep_rx_control(s
, skb
->data
, skb
->len
);
329 skb_reset_mac_header(skb
);
331 /* Verify and pull out header */
332 if (!skb_pull(skb
, __bnep_rx_hlen
[type
& BNEP_TYPE_MASK
]))
335 s
->eh
.h_proto
= get_unaligned((__be16
*) (skb
->data
- 2));
337 if (type
& BNEP_EXT_HEADER
) {
338 if (bnep_rx_extension(s
, skb
) < 0)
342 /* Strip 802.1p header */
343 if (ntohs(s
->eh
.h_proto
) == 0x8100) {
344 if (!skb_pull(skb
, 4))
346 s
->eh
.h_proto
= get_unaligned((__be16
*) (skb
->data
- 2));
349 /* We have to alloc new skb and copy data here :(. Because original skb
350 * may not be modified and because of the alignment requirements. */
351 nskb
= alloc_skb(2 + ETH_HLEN
+ skb
->len
, GFP_KERNEL
);
353 dev
->stats
.rx_dropped
++;
357 skb_reserve(nskb
, 2);
359 /* Decompress header and construct ether frame */
360 switch (type
& BNEP_TYPE_MASK
) {
361 case BNEP_COMPRESSED
:
362 memcpy(__skb_put(nskb
, ETH_HLEN
), &s
->eh
, ETH_HLEN
);
365 case BNEP_COMPRESSED_SRC_ONLY
:
366 memcpy(__skb_put(nskb
, ETH_ALEN
), s
->eh
.h_dest
, ETH_ALEN
);
367 memcpy(__skb_put(nskb
, ETH_ALEN
), skb_mac_header(skb
), ETH_ALEN
);
368 put_unaligned(s
->eh
.h_proto
, (__be16
*) __skb_put(nskb
, 2));
371 case BNEP_COMPRESSED_DST_ONLY
:
372 memcpy(__skb_put(nskb
, ETH_ALEN
), skb_mac_header(skb
),
374 memcpy(__skb_put(nskb
, ETH_ALEN
+ 2), s
->eh
.h_source
,
379 memcpy(__skb_put(nskb
, ETH_ALEN
* 2), skb_mac_header(skb
),
381 put_unaligned(s
->eh
.h_proto
, (__be16
*) __skb_put(nskb
, 2));
385 skb_copy_from_linear_data(skb
, __skb_put(nskb
, skb
->len
), skb
->len
);
388 dev
->stats
.rx_packets
++;
389 nskb
->ip_summed
= CHECKSUM_NONE
;
390 nskb
->protocol
= eth_type_trans(nskb
, dev
);
395 dev
->stats
.rx_errors
++;
400 static u8 __bnep_tx_types
[] = {
402 BNEP_COMPRESSED_SRC_ONLY
,
403 BNEP_COMPRESSED_DST_ONLY
,
407 static inline int bnep_tx_frame(struct bnep_session
*s
, struct sk_buff
*skb
)
409 struct ethhdr
*eh
= (void *) skb
->data
;
410 struct socket
*sock
= s
->sock
;
415 BT_DBG("skb %p dev %p type %d", skb
, skb
->dev
, skb
->pkt_type
);
418 /* Control frame sent by us */
422 iv
[il
++] = (struct kvec
) { &type
, 1 };
425 if (compress_src
&& !compare_ether_addr(eh
->h_dest
, s
->eh
.h_source
))
428 if (compress_dst
&& !compare_ether_addr(eh
->h_source
, s
->eh
.h_dest
))
432 skb_pull(skb
, ETH_ALEN
* 2);
434 type
= __bnep_tx_types
[type
];
436 case BNEP_COMPRESSED_SRC_ONLY
:
437 iv
[il
++] = (struct kvec
) { eh
->h_source
, ETH_ALEN
};
441 case BNEP_COMPRESSED_DST_ONLY
:
442 iv
[il
++] = (struct kvec
) { eh
->h_dest
, ETH_ALEN
};
448 iv
[il
++] = (struct kvec
) { skb
->data
, skb
->len
};
451 /* FIXME: linearize skb */
453 len
= kernel_sendmsg(sock
, &s
->msg
, iv
, il
, len
);
458 s
->dev
->stats
.tx_bytes
+= len
;
459 s
->dev
->stats
.tx_packets
++;
466 static int bnep_session(void *arg
)
468 struct bnep_session
*s
= arg
;
469 struct net_device
*dev
= s
->dev
;
470 struct sock
*sk
= s
->sock
->sk
;
476 set_user_nice(current
, -15);
478 init_waitqueue_entry(&wait
, current
);
479 add_wait_queue(sk_sleep(sk
), &wait
);
481 set_current_state(TASK_INTERRUPTIBLE
);
483 if (atomic_read(&s
->terminate
))
486 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
))) {
488 if (!skb_linearize(skb
))
489 bnep_rx_frame(s
, skb
);
494 if (sk
->sk_state
!= BT_CONNECTED
)
498 while ((skb
= skb_dequeue(&sk
->sk_write_queue
)))
499 if (bnep_tx_frame(s
, skb
))
501 netif_wake_queue(dev
);
505 __set_current_state(TASK_RUNNING
);
506 remove_wait_queue(sk_sleep(sk
), &wait
);
508 /* Cleanup session */
509 down_write(&bnep_session_sem
);
511 /* Delete network device */
512 unregister_netdev(dev
);
514 /* Wakeup user-space polling for socket errors */
515 s
->sock
->sk
->sk_err
= EUNATCH
;
517 wake_up_interruptible(sk_sleep(s
->sock
->sk
));
519 /* Release the socket */
522 __bnep_unlink_session(s
);
524 up_write(&bnep_session_sem
);
526 module_put_and_exit(0);
530 static struct device
*bnep_get_device(struct bnep_session
*session
)
532 bdaddr_t
*src
= &bt_sk(session
->sock
->sk
)->src
;
533 bdaddr_t
*dst
= &bt_sk(session
->sock
->sk
)->dst
;
534 struct hci_dev
*hdev
;
535 struct hci_conn
*conn
;
537 hdev
= hci_get_route(dst
, src
);
541 conn
= hci_conn_hash_lookup_ba(hdev
, ACL_LINK
, dst
);
545 return conn
? &conn
->dev
: NULL
;
548 static struct device_type bnep_type
= {
552 int bnep_add_connection(struct bnep_connadd_req
*req
, struct socket
*sock
)
554 struct net_device
*dev
;
555 struct bnep_session
*s
, *ss
;
556 u8 dst
[ETH_ALEN
], src
[ETH_ALEN
];
561 baswap((void *) dst
, &bt_sk(sock
->sk
)->dst
);
562 baswap((void *) src
, &bt_sk(sock
->sk
)->src
);
564 /* session struct allocated as private part of net_device */
565 dev
= alloc_netdev(sizeof(struct bnep_session
),
566 (*req
->device
) ? req
->device
: "bnep%d",
571 down_write(&bnep_session_sem
);
573 ss
= __bnep_get_session(dst
);
574 if (ss
&& ss
->state
== BT_CONNECTED
) {
579 s
= netdev_priv(dev
);
581 /* This is rx header therefore addresses are swapped.
582 * ie. eh.h_dest is our local address. */
583 memcpy(s
->eh
.h_dest
, &src
, ETH_ALEN
);
584 memcpy(s
->eh
.h_source
, &dst
, ETH_ALEN
);
585 memcpy(dev
->dev_addr
, s
->eh
.h_dest
, ETH_ALEN
);
590 s
->state
= BT_CONNECTED
;
592 s
->msg
.msg_flags
= MSG_NOSIGNAL
;
594 #ifdef CONFIG_BT_BNEP_MC_FILTER
595 /* Set default mc filter */
596 set_bit(bnep_mc_hash(dev
->broadcast
), (ulong
*) &s
->mc_filter
);
599 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
600 /* Set default protocol filter */
601 bnep_set_default_proto_filter(s
);
604 SET_NETDEV_DEV(dev
, bnep_get_device(s
));
605 SET_NETDEV_DEVTYPE(dev
, &bnep_type
);
607 err
= register_netdev(dev
);
611 __bnep_link_session(s
);
613 __module_get(THIS_MODULE
);
614 s
->task
= kthread_run(bnep_session
, s
, "kbnepd %s", dev
->name
);
615 if (IS_ERR(s
->task
)) {
616 /* Session thread start failed, gotta cleanup. */
617 module_put(THIS_MODULE
);
618 unregister_netdev(dev
);
619 __bnep_unlink_session(s
);
620 err
= PTR_ERR(s
->task
);
624 up_write(&bnep_session_sem
);
625 strcpy(req
->device
, dev
->name
);
629 up_write(&bnep_session_sem
);
634 int bnep_del_connection(struct bnep_conndel_req
*req
)
636 struct bnep_session
*s
;
641 down_read(&bnep_session_sem
);
643 s
= __bnep_get_session(req
->dst
);
645 atomic_inc(&s
->terminate
);
646 wake_up_process(s
->task
);
650 up_read(&bnep_session_sem
);
654 static void __bnep_copy_ci(struct bnep_conninfo
*ci
, struct bnep_session
*s
)
656 memset(ci
, 0, sizeof(*ci
));
657 memcpy(ci
->dst
, s
->eh
.h_source
, ETH_ALEN
);
658 strcpy(ci
->device
, s
->dev
->name
);
659 ci
->flags
= s
->flags
;
660 ci
->state
= s
->state
;
664 int bnep_get_connlist(struct bnep_connlist_req
*req
)
666 struct bnep_session
*s
;
669 down_read(&bnep_session_sem
);
671 list_for_each_entry(s
, &bnep_session_list
, list
) {
672 struct bnep_conninfo ci
;
674 __bnep_copy_ci(&ci
, s
);
676 if (copy_to_user(req
->ci
, &ci
, sizeof(ci
))) {
681 if (++n
>= req
->cnum
)
688 up_read(&bnep_session_sem
);
692 int bnep_get_conninfo(struct bnep_conninfo
*ci
)
694 struct bnep_session
*s
;
697 down_read(&bnep_session_sem
);
699 s
= __bnep_get_session(ci
->dst
);
701 __bnep_copy_ci(ci
, s
);
705 up_read(&bnep_session_sem
);
709 static int __init
bnep_init(void)
713 #ifdef CONFIG_BT_BNEP_PROTO_FILTER
714 strcat(flt
, "protocol ");
717 #ifdef CONFIG_BT_BNEP_MC_FILTER
718 strcat(flt
, "multicast");
721 BT_INFO("BNEP (Ethernet Emulation) ver %s", VERSION
);
723 BT_INFO("BNEP filters: %s", flt
);
729 static void __exit
bnep_exit(void)
734 module_init(bnep_init
);
735 module_exit(bnep_exit
);
737 module_param(compress_src
, bool, 0644);
738 MODULE_PARM_DESC(compress_src
, "Compress sources headers");
740 module_param(compress_dst
, bool, 0644);
741 MODULE_PARM_DESC(compress_dst
, "Compress destination headers");
743 MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
744 MODULE_DESCRIPTION("Bluetooth BNEP ver " VERSION
);
745 MODULE_VERSION(VERSION
);
746 MODULE_LICENSE("GPL");
747 MODULE_ALIAS("bt-proto-4");