diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2013-10-10 17:54:16 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-10 18:10:07 -0400 |
commit | ac4b7236610cef99821f40f44a74030b85d85270 (patch) | |
tree | b3750c1ddd6482bcd5012ae95f64c737517a6d72 /net | |
parent | 7024728ee534d739380dc4fd31f020cfc6e86c28 (diff) |
Bluetooth: Move smp.h header file into net/bluetooth/
The smp.h header file is only used internally by the bluetooth.ko
module and is not a public API. So make it local to the core
Bluetooth module.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_conn.c | 2 | ||||
-rw-r--r-- | net/bluetooth/l2cap_core.c | 2 | ||||
-rw-r--r-- | net/bluetooth/l2cap_sock.c | 3 | ||||
-rw-r--r-- | net/bluetooth/mgmt.c | 3 | ||||
-rw-r--r-- | net/bluetooth/smp.c | 3 | ||||
-rw-r--r-- | net/bluetooth/smp.h | 146 |
6 files changed, 154 insertions, 5 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 8141c8d83139..139587159200 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c | |||
@@ -28,8 +28,8 @@ | |||
28 | 28 | ||
29 | #include <net/bluetooth/bluetooth.h> | 29 | #include <net/bluetooth/bluetooth.h> |
30 | #include <net/bluetooth/hci_core.h> | 30 | #include <net/bluetooth/hci_core.h> |
31 | #include <net/bluetooth/smp.h> | ||
32 | 31 | ||
32 | #include "smp.h" | ||
33 | #include "a2mp.h" | 33 | #include "a2mp.h" |
34 | 34 | ||
35 | struct sco_param { | 35 | struct sco_param { |
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 947e18691e92..a7d10c3596e3 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c | |||
@@ -36,8 +36,8 @@ | |||
36 | #include <net/bluetooth/bluetooth.h> | 36 | #include <net/bluetooth/bluetooth.h> |
37 | #include <net/bluetooth/hci_core.h> | 37 | #include <net/bluetooth/hci_core.h> |
38 | #include <net/bluetooth/l2cap.h> | 38 | #include <net/bluetooth/l2cap.h> |
39 | #include <net/bluetooth/smp.h> | ||
40 | 39 | ||
40 | #include "smp.h" | ||
41 | #include "a2mp.h" | 41 | #include "a2mp.h" |
42 | #include "amp.h" | 42 | #include "amp.h" |
43 | 43 | ||
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index 1daa4c579eb2..69e42db8a707 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c | |||
@@ -32,7 +32,8 @@ | |||
32 | #include <net/bluetooth/bluetooth.h> | 32 | #include <net/bluetooth/bluetooth.h> |
33 | #include <net/bluetooth/hci_core.h> | 33 | #include <net/bluetooth/hci_core.h> |
34 | #include <net/bluetooth/l2cap.h> | 34 | #include <net/bluetooth/l2cap.h> |
35 | #include <net/bluetooth/smp.h> | 35 | |
36 | #include "smp.h" | ||
36 | 37 | ||
37 | static struct bt_sock_list l2cap_sk_list = { | 38 | static struct bt_sock_list l2cap_sk_list = { |
38 | .lock = __RW_LOCK_UNLOCKED(l2cap_sk_list.lock) | 39 | .lock = __RW_LOCK_UNLOCKED(l2cap_sk_list.lock) |
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 9a069b532bde..143dd7319981 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c | |||
@@ -30,7 +30,8 @@ | |||
30 | #include <net/bluetooth/bluetooth.h> | 30 | #include <net/bluetooth/bluetooth.h> |
31 | #include <net/bluetooth/hci_core.h> | 31 | #include <net/bluetooth/hci_core.h> |
32 | #include <net/bluetooth/mgmt.h> | 32 | #include <net/bluetooth/mgmt.h> |
33 | #include <net/bluetooth/smp.h> | 33 | |
34 | #include "smp.h" | ||
34 | 35 | ||
35 | #define MGMT_VERSION 1 | 36 | #define MGMT_VERSION 1 |
36 | #define MGMT_REVISION 4 | 37 | #define MGMT_REVISION 4 |
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index 884b2081a262..9272094bd429 100644 --- a/net/bluetooth/smp.c +++ b/net/bluetooth/smp.c | |||
@@ -28,7 +28,8 @@ | |||
28 | #include <net/bluetooth/hci_core.h> | 28 | #include <net/bluetooth/hci_core.h> |
29 | #include <net/bluetooth/l2cap.h> | 29 | #include <net/bluetooth/l2cap.h> |
30 | #include <net/bluetooth/mgmt.h> | 30 | #include <net/bluetooth/mgmt.h> |
31 | #include <net/bluetooth/smp.h> | 31 | |
32 | #include "smp.h" | ||
32 | 33 | ||
33 | #define SMP_TIMEOUT msecs_to_jiffies(30000) | 34 | #define SMP_TIMEOUT msecs_to_jiffies(30000) |
34 | 35 | ||
diff --git a/net/bluetooth/smp.h b/net/bluetooth/smp.h new file mode 100644 index 000000000000..f8ba07f3e5fa --- /dev/null +++ b/net/bluetooth/smp.h | |||
@@ -0,0 +1,146 @@ | |||
1 | /* | ||
2 | BlueZ - Bluetooth protocol stack for Linux | ||
3 | Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). | ||
4 | |||
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 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
10 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
11 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. | ||
12 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY | ||
13 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES | ||
14 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
15 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
16 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
17 | |||
18 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, | ||
19 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS | ||
20 | SOFTWARE IS DISCLAIMED. | ||
21 | */ | ||
22 | |||
23 | #ifndef __SMP_H | ||
24 | #define __SMP_H | ||
25 | |||
26 | struct smp_command_hdr { | ||
27 | __u8 code; | ||
28 | } __packed; | ||
29 | |||
30 | #define SMP_CMD_PAIRING_REQ 0x01 | ||
31 | #define SMP_CMD_PAIRING_RSP 0x02 | ||
32 | struct smp_cmd_pairing { | ||
33 | __u8 io_capability; | ||
34 | __u8 oob_flag; | ||
35 | __u8 auth_req; | ||
36 | __u8 max_key_size; | ||
37 | __u8 init_key_dist; | ||
38 | __u8 resp_key_dist; | ||
39 | } __packed; | ||
40 | |||
41 | #define SMP_IO_DISPLAY_ONLY 0x00 | ||
42 | #define SMP_IO_DISPLAY_YESNO 0x01 | ||
43 | #define SMP_IO_KEYBOARD_ONLY 0x02 | ||
44 | #define SMP_IO_NO_INPUT_OUTPUT 0x03 | ||
45 | #define SMP_IO_KEYBOARD_DISPLAY 0x04 | ||
46 | |||
47 | #define SMP_OOB_NOT_PRESENT 0x00 | ||
48 | #define SMP_OOB_PRESENT 0x01 | ||
49 | |||
50 | #define SMP_DIST_ENC_KEY 0x01 | ||
51 | #define SMP_DIST_ID_KEY 0x02 | ||
52 | #define SMP_DIST_SIGN 0x04 | ||
53 | |||
54 | #define SMP_AUTH_NONE 0x00 | ||
55 | #define SMP_AUTH_BONDING 0x01 | ||
56 | #define SMP_AUTH_MITM 0x04 | ||
57 | |||
58 | #define SMP_CMD_PAIRING_CONFIRM 0x03 | ||
59 | struct smp_cmd_pairing_confirm { | ||
60 | __u8 confirm_val[16]; | ||
61 | } __packed; | ||
62 | |||
63 | #define SMP_CMD_PAIRING_RANDOM 0x04 | ||
64 | struct smp_cmd_pairing_random { | ||
65 | __u8 rand_val[16]; | ||
66 | } __packed; | ||
67 | |||
68 | #define SMP_CMD_PAIRING_FAIL 0x05 | ||
69 | struct smp_cmd_pairing_fail { | ||
70 | __u8 reason; | ||
71 | } __packed; | ||
72 | |||
73 | #define SMP_CMD_ENCRYPT_INFO 0x06 | ||
74 | struct smp_cmd_encrypt_info { | ||
75 | __u8 ltk[16]; | ||
76 | } __packed; | ||
77 | |||
78 | #define SMP_CMD_MASTER_IDENT 0x07 | ||
79 | struct smp_cmd_master_ident { | ||
80 | __le16 ediv; | ||
81 | __u8 rand[8]; | ||
82 | } __packed; | ||
83 | |||
84 | #define SMP_CMD_IDENT_INFO 0x08 | ||
85 | struct smp_cmd_ident_info { | ||
86 | __u8 irk[16]; | ||
87 | } __packed; | ||
88 | |||
89 | #define SMP_CMD_IDENT_ADDR_INFO 0x09 | ||
90 | struct smp_cmd_ident_addr_info { | ||
91 | __u8 addr_type; | ||
92 | bdaddr_t bdaddr; | ||
93 | } __packed; | ||
94 | |||
95 | #define SMP_CMD_SIGN_INFO 0x0a | ||
96 | struct smp_cmd_sign_info { | ||
97 | __u8 csrk[16]; | ||
98 | } __packed; | ||
99 | |||
100 | #define SMP_CMD_SECURITY_REQ 0x0b | ||
101 | struct smp_cmd_security_req { | ||
102 | __u8 auth_req; | ||
103 | } __packed; | ||
104 | |||
105 | #define SMP_PASSKEY_ENTRY_FAILED 0x01 | ||
106 | #define SMP_OOB_NOT_AVAIL 0x02 | ||
107 | #define SMP_AUTH_REQUIREMENTS 0x03 | ||
108 | #define SMP_CONFIRM_FAILED 0x04 | ||
109 | #define SMP_PAIRING_NOTSUPP 0x05 | ||
110 | #define SMP_ENC_KEY_SIZE 0x06 | ||
111 | #define SMP_CMD_NOTSUPP 0x07 | ||
112 | #define SMP_UNSPECIFIED 0x08 | ||
113 | #define SMP_REPEATED_ATTEMPTS 0x09 | ||
114 | |||
115 | #define SMP_MIN_ENC_KEY_SIZE 7 | ||
116 | #define SMP_MAX_ENC_KEY_SIZE 16 | ||
117 | |||
118 | #define SMP_FLAG_TK_VALID 1 | ||
119 | #define SMP_FLAG_CFM_PENDING 2 | ||
120 | #define SMP_FLAG_MITM_AUTH 3 | ||
121 | |||
122 | struct smp_chan { | ||
123 | struct l2cap_conn *conn; | ||
124 | u8 preq[7]; /* SMP Pairing Request */ | ||
125 | u8 prsp[7]; /* SMP Pairing Response */ | ||
126 | u8 prnd[16]; /* SMP Pairing Random (local) */ | ||
127 | u8 rrnd[16]; /* SMP Pairing Random (remote) */ | ||
128 | u8 pcnf[16]; /* SMP Pairing Confirm */ | ||
129 | u8 tk[16]; /* SMP Temporary Key */ | ||
130 | u8 enc_key_size; | ||
131 | unsigned long smp_flags; | ||
132 | struct crypto_blkcipher *tfm; | ||
133 | struct work_struct confirm; | ||
134 | struct work_struct random; | ||
135 | |||
136 | }; | ||
137 | |||
138 | /* SMP Commands */ | ||
139 | int smp_conn_security(struct hci_conn *hcon, __u8 sec_level); | ||
140 | int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb); | ||
141 | int smp_distribute_keys(struct l2cap_conn *conn, __u8 force); | ||
142 | int smp_user_confirm_reply(struct hci_conn *conn, u16 mgmt_op, __le32 passkey); | ||
143 | |||
144 | void smp_chan_destroy(struct l2cap_conn *conn); | ||
145 | |||
146 | #endif /* __SMP_H */ | ||