blob: 71845ddc167aa34a0c8e97439962f9795981bd53 [file] [log] [blame]
Anderson Briglia133e14c2011-06-09 18:50:40 -03001/*
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
Ville Tervoaff2cae2011-02-10 22:38:54 -030023#ifndef __SMP_H
24#define __SMP_H
25
26struct smp_command_hdr {
27 __u8 code;
28} __packed;
29
30#define SMP_CMD_PAIRING_REQ 0x01
31#define SMP_CMD_PAIRING_RSP 0x02
32struct 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
Anderson Briglia13b48392011-06-09 18:50:42 -030041#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
Brian Gixa68668b2011-08-11 15:49:36 -070058#define SMP_JUST_WORKS 0x00
59#define SMP_JUST_CFM 0x01
60#define SMP_REQ_PASSKEY 0x02
61#define SMP_CFM_PASSKEY 0x03
62#define SMP_REQ_OOB 0x04
63#define SMP_OVERLAP 0xFF
64
Ville Tervoaff2cae2011-02-10 22:38:54 -030065#define SMP_CMD_PAIRING_CONFIRM 0x03
66struct smp_cmd_pairing_confirm {
67 __u8 confirm_val[16];
68} __packed;
69
70#define SMP_CMD_PAIRING_RANDOM 0x04
71struct smp_cmd_pairing_random {
72 __u8 rand_val[16];
73} __packed;
74
75#define SMP_CMD_PAIRING_FAIL 0x05
76struct smp_cmd_pairing_fail {
77 __u8 reason;
78} __packed;
79
80#define SMP_CMD_ENCRYPT_INFO 0x06
81struct smp_cmd_encrypt_info {
82 __u8 ltk[16];
83} __packed;
84
85#define SMP_CMD_MASTER_IDENT 0x07
86struct smp_cmd_master_ident {
87 __u16 ediv;
88 __u8 rand[8];
89} __packed;
90
91#define SMP_CMD_IDENT_INFO 0x08
92struct smp_cmd_ident_info {
93 __u8 irk[16];
94} __packed;
95
96#define SMP_CMD_IDENT_ADDR_INFO 0x09
97struct smp_cmd_ident_addr_info {
98 __u8 addr_type;
99 bdaddr_t bdaddr;
100} __packed;
101
102#define SMP_CMD_SIGN_INFO 0x0a
103struct smp_cmd_sign_info {
104 __u8 csrk[16];
105} __packed;
106
107#define SMP_CMD_SECURITY_REQ 0x0b
108struct smp_cmd_security_req {
109 __u8 auth_req;
110} __packed;
111
112#define SMP_PASSKEY_ENTRY_FAILED 0x01
113#define SMP_OOB_NOT_AVAIL 0x02
114#define SMP_AUTH_REQUIREMENTS 0x03
115#define SMP_CONFIRM_FAILED 0x04
116#define SMP_PAIRING_NOTSUPP 0x05
117#define SMP_ENC_KEY_SIZE 0x06
118#define SMP_CMD_NOTSUPP 0x07
119#define SMP_UNSPECIFIED 0x08
120#define SMP_REPEATED_ATTEMPTS 0x09
121
Vinicius Costa Gomes397d9ae2011-06-14 13:37:42 -0300122#define SMP_MIN_ENC_KEY_SIZE 7
123#define SMP_MAX_ENC_KEY_SIZE 16
124
Anderson Briglia133e14c2011-06-09 18:50:40 -0300125/* SMP Commands */
126int smp_conn_security(struct l2cap_conn *conn, __u8 sec_level);
127int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb);
Brian Gixa68668b2011-08-11 15:49:36 -0700128int smp_link_encrypt_cmplt(struct l2cap_conn *conn, __u8 status, __u8 encrypt);
Brian Gixe9ceb522011-09-22 10:46:35 -0700129void smp_timeout(unsigned long l2cap_conn);
Anderson Briglia133e14c2011-06-09 18:50:40 -0300130
Ville Tervoaff2cae2011-02-10 22:38:54 -0300131#endif /* __SMP_H */