aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Hedberg <johan.hedberg@nokia.com>2011-01-21 23:09:08 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2011-02-07 22:40:07 -0500
commit17d5c04cb597418a177c3ca18dfde679636dd51c (patch)
tree8f852ff43fe8a4da609a47a9f6e331d289a64a8c
parent8962ee74be48df16027100f657b2b12e8ef3d34d (diff)
Bluetooth: Add support for connect failed management event
This patch add a new connect failed management event to track failures in connecting to remote devices. It is particularly useful for security mode 3 scenarios when we don't have a connected state while pairing but still need to detect when the connect attempt failed. Signed-off-by: Johan Hedberg <johan.hedberg@nokia.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
-rw-r--r--include/net/bluetooth/hci_core.h1
-rw-r--r--include/net/bluetooth/mgmt.h7
-rw-r--r--net/bluetooth/hci_event.c5
-rw-r--r--net/bluetooth/mgmt.c11
4 files changed, 23 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 2197a099a2b..45caae62cb8 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -717,6 +717,7 @@ int mgmt_new_key(u16 index, struct link_key *key, u8 old_key_type);
717int mgmt_connected(u16 index, bdaddr_t *bdaddr); 717int mgmt_connected(u16 index, bdaddr_t *bdaddr);
718int mgmt_disconnected(u16 index, bdaddr_t *bdaddr); 718int mgmt_disconnected(u16 index, bdaddr_t *bdaddr);
719int mgmt_disconnect_failed(u16 index); 719int mgmt_disconnect_failed(u16 index);
720int mgmt_connect_failed(u16 index, bdaddr_t *bdaddr, u8 status);
720 721
721/* HCI info for socket */ 722/* HCI info for socket */
722#define hci_pi(sk) ((struct hci_pinfo *) sk) 723#define hci_pi(sk) ((struct hci_pinfo *) sk)
diff --git a/include/net/bluetooth/mgmt.h b/include/net/bluetooth/mgmt.h
index 2c47601b6e6..1d822f2c0f1 100644
--- a/include/net/bluetooth/mgmt.h
+++ b/include/net/bluetooth/mgmt.h
@@ -184,3 +184,10 @@ struct mgmt_ev_disconnected {
184 __le16 index; 184 __le16 index;
185 bdaddr_t bdaddr; 185 bdaddr_t bdaddr;
186} __packed; 186} __packed;
187
188#define MGMT_EV_CONNECT_FAILED 0x000D
189struct mgmt_ev_connect_failed {
190 __le16 index;
191 bdaddr_t bdaddr;
192 __u8 status;
193} __packed;
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index 335c60bad96..995ae6c17f1 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -1166,8 +1166,11 @@ static inline void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *s
1166 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE, 1166 hci_send_cmd(hdev, HCI_OP_CHANGE_CONN_PTYPE,
1167 sizeof(cp), &cp); 1167 sizeof(cp), &cp);
1168 } 1168 }
1169 } else 1169 } else {
1170 conn->state = BT_CLOSED; 1170 conn->state = BT_CLOSED;
1171 if (conn->type == ACL_LINK)
1172 mgmt_connect_failed(hdev->id, &ev->bdaddr, ev->status);
1173 }
1171 1174
1172 if (conn->type == ACL_LINK) 1175 if (conn->type == ACL_LINK)
1173 hci_sco_setup(conn, ev->status); 1176 hci_sco_setup(conn, ev->status);
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 48f266a64ca..9fb989f4216 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1227,3 +1227,14 @@ int mgmt_disconnect_failed(u16 index)
1227 1227
1228 return err; 1228 return err;
1229} 1229}
1230
1231int mgmt_connect_failed(u16 index, bdaddr_t *bdaddr, u8 status)
1232{
1233 struct mgmt_ev_connect_failed ev;
1234
1235 put_unaligned_le16(index, &ev.index);
1236 bacpy(&ev.bdaddr, bdaddr);
1237 ev.status = status;
1238
1239 return mgmt_event(MGMT_EV_CONNECT_FAILED, &ev, sizeof(ev), NULL);
1240}