smp.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. BlueZ - Bluetooth protocol stack for Linux
  3. Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License version 2 as
  6. published by the Free Software Foundation;
  7. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  8. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  9. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
  10. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
  11. CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
  12. WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
  16. COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
  17. SOFTWARE IS DISCLAIMED.
  18. */
  19. #ifndef __SMP_H
  20. #define __SMP_H
  21. struct smp_command_hdr {
  22. __u8 code;
  23. } __packed;
  24. #define SMP_CMD_PAIRING_REQ 0x01
  25. #define SMP_CMD_PAIRING_RSP 0x02
  26. struct smp_cmd_pairing {
  27. __u8 io_capability;
  28. __u8 oob_flag;
  29. __u8 auth_req;
  30. __u8 max_key_size;
  31. __u8 init_key_dist;
  32. __u8 resp_key_dist;
  33. } __packed;
  34. #define SMP_IO_DISPLAY_ONLY 0x00
  35. #define SMP_IO_DISPLAY_YESNO 0x01
  36. #define SMP_IO_KEYBOARD_ONLY 0x02
  37. #define SMP_IO_NO_INPUT_OUTPUT 0x03
  38. #define SMP_IO_KEYBOARD_DISPLAY 0x04
  39. #define SMP_OOB_NOT_PRESENT 0x00
  40. #define SMP_OOB_PRESENT 0x01
  41. #define SMP_DIST_ENC_KEY 0x01
  42. #define SMP_DIST_ID_KEY 0x02
  43. #define SMP_DIST_SIGN 0x04
  44. #define SMP_AUTH_NONE 0x00
  45. #define SMP_AUTH_BONDING 0x01
  46. #define SMP_AUTH_MITM 0x04
  47. #define SMP_JUST_WORKS 0x00
  48. #define SMP_JUST_CFM 0x01
  49. #define SMP_REQ_PASSKEY 0x02
  50. #define SMP_CFM_PASSKEY 0x03
  51. #define SMP_REQ_OOB 0x04
  52. #define SMP_OVERLAP 0xFF
  53. #define SMP_CMD_PAIRING_CONFIRM 0x03
  54. struct smp_cmd_pairing_confirm {
  55. __u8 confirm_val[16];
  56. } __packed;
  57. #define SMP_CMD_PAIRING_RANDOM 0x04
  58. struct smp_cmd_pairing_random {
  59. __u8 rand_val[16];
  60. } __packed;
  61. #define SMP_CMD_PAIRING_FAIL 0x05
  62. struct smp_cmd_pairing_fail {
  63. __u8 reason;
  64. } __packed;
  65. #define SMP_CMD_ENCRYPT_INFO 0x06
  66. struct smp_cmd_encrypt_info {
  67. __u8 ltk[16];
  68. } __packed;
  69. #define SMP_CMD_MASTER_IDENT 0x07
  70. struct smp_cmd_master_ident {
  71. __u16 ediv;
  72. __u8 rand[8];
  73. } __packed;
  74. #define SMP_CMD_IDENT_INFO 0x08
  75. struct smp_cmd_ident_info {
  76. __u8 irk[16];
  77. } __packed;
  78. #define SMP_CMD_IDENT_ADDR_INFO 0x09
  79. struct smp_cmd_ident_addr_info {
  80. __u8 addr_type;
  81. bdaddr_t bdaddr;
  82. } __packed;
  83. #define SMP_CMD_SIGN_INFO 0x0a
  84. struct smp_cmd_sign_info {
  85. __u8 csrk[16];
  86. } __packed;
  87. #define SMP_CMD_SECURITY_REQ 0x0b
  88. struct smp_cmd_security_req {
  89. __u8 auth_req;
  90. } __packed;
  91. #define SMP_PASSKEY_ENTRY_FAILED 0x01
  92. #define SMP_OOB_NOT_AVAIL 0x02
  93. #define SMP_AUTH_REQUIREMENTS 0x03
  94. #define SMP_CONFIRM_FAILED 0x04
  95. #define SMP_PAIRING_NOTSUPP 0x05
  96. #define SMP_ENC_KEY_SIZE 0x06
  97. #define SMP_CMD_NOTSUPP 0x07
  98. #define SMP_UNSPECIFIED 0x08
  99. #define SMP_REPEATED_ATTEMPTS 0x09
  100. #define SMP_MIN_ENC_KEY_SIZE 7
  101. #define SMP_MAX_ENC_KEY_SIZE 16
  102. /* SMP Commands */
  103. int smp_conn_security(struct hci_conn *hcon, __u8 sec_level);
  104. int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb);
  105. int smp_link_encrypt_cmplt(struct l2cap_conn *conn, __u8 status, __u8 encrypt);
  106. void smp_timeout(unsigned long l2cap_conn);
  107. #endif /* __SMP_H */