Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | BNEP protocol definition for Linux Bluetooth stack (BlueZ). |
| 3 | Copyright (C) 2002 Maxim Krasnyansky <maxk@qualcomm.com> |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 4 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | This program is free software; you can redistribute it and/or modify |
| 6 | it under the terms of the GNU General Public License, version 2, as |
| 7 | published by the Free Software Foundation. |
| 8 | |
| 9 | This program is distributed in the hope that it will be useful, |
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | GNU General Public License for more details. |
| 13 | |
| 14 | You should have received a copy of the GNU General Public License |
| 15 | along with this program; if not, write to the Free Software |
| 16 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | */ |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #ifndef _BNEP_H |
| 20 | #define _BNEP_H |
| 21 | |
| 22 | #include <linux/types.h> |
| 23 | #include <linux/crc32.h> |
| 24 | #include <net/bluetooth/bluetooth.h> |
| 25 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 26 | /* Limits */ |
| 27 | #define BNEP_MAX_PROTO_FILTERS 5 |
| 28 | #define BNEP_MAX_MULTICAST_FILTERS 20 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 30 | /* UUIDs */ |
| 31 | #define BNEP_BASE_UUID 0x0000000000001000800000805F9B34FB |
| 32 | #define BNEP_UUID16 0x02 |
| 33 | #define BNEP_UUID32 0x04 |
| 34 | #define BNEP_UUID128 0x16 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 36 | #define BNEP_SVC_PANU 0x1115 |
| 37 | #define BNEP_SVC_NAP 0x1116 |
| 38 | #define BNEP_SVC_GN 0x1117 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 40 | /* Packet types */ |
| 41 | #define BNEP_GENERAL 0x00 |
| 42 | #define BNEP_CONTROL 0x01 |
| 43 | #define BNEP_COMPRESSED 0x02 |
| 44 | #define BNEP_COMPRESSED_SRC_ONLY 0x03 |
| 45 | #define BNEP_COMPRESSED_DST_ONLY 0x04 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 47 | /* Control types */ |
| 48 | #define BNEP_CMD_NOT_UNDERSTOOD 0x00 |
| 49 | #define BNEP_SETUP_CONN_REQ 0x01 |
| 50 | #define BNEP_SETUP_CONN_RSP 0x02 |
| 51 | #define BNEP_FILTER_NET_TYPE_SET 0x03 |
| 52 | #define BNEP_FILTER_NET_TYPE_RSP 0x04 |
| 53 | #define BNEP_FILTER_MULTI_ADDR_SET 0x05 |
| 54 | #define BNEP_FILTER_MULTI_ADDR_RSP 0x06 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 56 | /* Extension types */ |
| 57 | #define BNEP_EXT_CONTROL 0x00 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 59 | /* Response messages */ |
| 60 | #define BNEP_SUCCESS 0x00 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 62 | #define BNEP_CONN_INVALID_DST 0x01 |
| 63 | #define BNEP_CONN_INVALID_SRC 0x02 |
| 64 | #define BNEP_CONN_INVALID_SVC 0x03 |
| 65 | #define BNEP_CONN_NOT_ALLOWED 0x04 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 67 | #define BNEP_FILTER_UNSUPPORTED_REQ 0x01 |
| 68 | #define BNEP_FILTER_INVALID_RANGE 0x02 |
| 69 | #define BNEP_FILTER_INVALID_MCADDR 0x02 |
| 70 | #define BNEP_FILTER_LIMIT_REACHED 0x03 |
| 71 | #define BNEP_FILTER_DENIED_SECURITY 0x04 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 73 | /* L2CAP settings */ |
| 74 | #define BNEP_MTU 1691 |
| 75 | #define BNEP_PSM 0x0f |
| 76 | #define BNEP_FLUSH_TO 0xffff |
| 77 | #define BNEP_CONNECT_TO 15 |
| 78 | #define BNEP_FILTER_TO 15 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 80 | /* Headers */ |
| 81 | #define BNEP_TYPE_MASK 0x7f |
| 82 | #define BNEP_EXT_HEADER 0x80 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | struct bnep_setup_conn_req { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 85 | __u8 type; |
| 86 | __u8 ctrl; |
| 87 | __u8 uuid_size; |
| 88 | __u8 service[0]; |
Eric Dumazet | bc10502 | 2010-06-03 03:21:52 -0700 | [diff] [blame] | 89 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | struct bnep_set_filter_req { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 92 | __u8 type; |
| 93 | __u8 ctrl; |
Al Viro | 1bc5d44 | 2006-11-08 00:27:57 -0800 | [diff] [blame] | 94 | __be16 len; |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 95 | __u8 list[0]; |
Eric Dumazet | bc10502 | 2010-06-03 03:21:52 -0700 | [diff] [blame] | 96 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
| 98 | struct bnep_control_rsp { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 99 | __u8 type; |
| 100 | __u8 ctrl; |
Al Viro | 1bc5d44 | 2006-11-08 00:27:57 -0800 | [diff] [blame] | 101 | __be16 resp; |
Eric Dumazet | bc10502 | 2010-06-03 03:21:52 -0700 | [diff] [blame] | 102 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | struct bnep_ext_hdr { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 105 | __u8 type; |
| 106 | __u8 len; |
| 107 | __u8 data[0]; |
Eric Dumazet | bc10502 | 2010-06-03 03:21:52 -0700 | [diff] [blame] | 108 | } __packed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
| 110 | /* BNEP ioctl defines */ |
| 111 | #define BNEPCONNADD _IOW('B', 200, int) |
| 112 | #define BNEPCONNDEL _IOW('B', 201, int) |
| 113 | #define BNEPGETCONNLIST _IOR('B', 210, int) |
| 114 | #define BNEPGETCONNINFO _IOR('B', 211, int) |
| 115 | |
| 116 | struct bnep_connadd_req { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 117 | int sock; /* Connected socket */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | __u32 flags; |
| 119 | __u16 role; |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 120 | char device[16]; /* Name of the Ethernet device */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | struct bnep_conndel_req { |
| 124 | __u32 flags; |
| 125 | __u8 dst[ETH_ALEN]; |
| 126 | }; |
| 127 | |
| 128 | struct bnep_conninfo { |
| 129 | __u32 flags; |
| 130 | __u16 role; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 131 | __u16 state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | __u8 dst[ETH_ALEN]; |
| 133 | char device[16]; |
| 134 | }; |
| 135 | |
| 136 | struct bnep_connlist_req { |
| 137 | __u32 cnum; |
| 138 | struct bnep_conninfo __user *ci; |
| 139 | }; |
| 140 | |
| 141 | struct bnep_proto_filter { |
| 142 | __u16 start; |
| 143 | __u16 end; |
| 144 | }; |
| 145 | |
| 146 | int bnep_add_connection(struct bnep_connadd_req *req, struct socket *sock); |
| 147 | int bnep_del_connection(struct bnep_conndel_req *req); |
| 148 | int bnep_get_connlist(struct bnep_connlist_req *req); |
| 149 | int bnep_get_conninfo(struct bnep_conninfo *ci); |
| 150 | |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 151 | /* BNEP sessions */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | struct bnep_session { |
| 153 | struct list_head list; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | unsigned int role; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 156 | unsigned long state; |
| 157 | unsigned long flags; |
Szymon Janc | f4d7cd4 | 2011-03-21 14:20:00 +0100 | [diff] [blame] | 158 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
| 160 | struct ethhdr eh; |
| 161 | struct msghdr msg; |
| 162 | |
| 163 | struct bnep_proto_filter proto_filter[BNEP_MAX_PROTO_FILTERS]; |
Marcel Holtmann | a418b89 | 2008-11-30 12:17:28 +0100 | [diff] [blame] | 164 | unsigned long long mc_filter; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 165 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | struct socket *sock; |
| 167 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | }; |
| 169 | |
| 170 | void bnep_net_setup(struct net_device *dev); |
| 171 | int bnep_sock_init(void); |
Tobias Klauser | a4e2acf | 2008-03-05 18:47:40 -0800 | [diff] [blame] | 172 | void bnep_sock_cleanup(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | static inline int bnep_mc_hash(__u8 *addr) |
| 175 | { |
Szymon Janc | 3aad75a | 2011-03-21 14:19:58 +0100 | [diff] [blame] | 176 | return crc32_be(~0, addr, ETH_ALEN) >> 26; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | #endif |