Bluetooth: Zero bredr pointer when chan is deleted
[deliverable/linux.git] / net / bluetooth / a2mp.c
CommitLineData
466f8004
AE
1/*
2 Copyright (c) 2010,2011 Code Aurora Forum. All rights reserved.
3 Copyright (c) 2011,2012 Intel Corp.
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 and
7 only version 2 as 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
15#include <net/bluetooth/bluetooth.h>
16#include <net/bluetooth/hci_core.h>
17#include <net/bluetooth/l2cap.h>
9740e49d 18#include <net/bluetooth/a2mp.h>
903e4541 19#include <net/bluetooth/amp.h>
466f8004 20
f97268fc
AE
21/* Global AMP Manager list */
22LIST_HEAD(amp_mgr_list);
23DEFINE_MUTEX(amp_mgr_list_lock);
24
f6d3c6e7
AE
25/* A2MP build & send command helper functions */
26static struct a2mp_cmd *__a2mp_build(u8 code, u8 ident, u16 len, void *data)
27{
28 struct a2mp_cmd *cmd;
29 int plen;
30
31 plen = sizeof(*cmd) + len;
32 cmd = kzalloc(plen, GFP_KERNEL);
33 if (!cmd)
34 return NULL;
35
36 cmd->code = code;
37 cmd->ident = ident;
38 cmd->len = cpu_to_le16(len);
39
40 memcpy(cmd->data, data, len);
41
42 return cmd;
43}
44
8e2a0d92 45void a2mp_send(struct amp_mgr *mgr, u8 code, u8 ident, u16 len, void *data)
f6d3c6e7
AE
46{
47 struct l2cap_chan *chan = mgr->a2mp_chan;
48 struct a2mp_cmd *cmd;
49 u16 total_len = len + sizeof(*cmd);
50 struct kvec iv;
51 struct msghdr msg;
52
53 cmd = __a2mp_build(code, ident, len, data);
54 if (!cmd)
55 return;
56
57 iv.iov_base = cmd;
58 iv.iov_len = total_len;
59
60 memset(&msg, 0, sizeof(msg));
61
62 msg.msg_iov = (struct iovec *) &iv;
63 msg.msg_iovlen = 1;
64
65 l2cap_chan_send(chan, &msg, total_len, 0);
66
67 kfree(cmd);
68}
69
9495b2ee 70u8 __next_ident(struct amp_mgr *mgr)
aa09537d
AE
71{
72 if (++mgr->ident == 0)
73 mgr->ident = 1;
74
75 return mgr->ident;
76}
77
8598d064
AE
78static inline void __a2mp_cl_bredr(struct a2mp_cl *cl)
79{
80 cl->id = 0;
81 cl->type = 0;
82 cl->status = 1;
83}
84
85/* hci_dev_list shall be locked */
86static void __a2mp_add_cl(struct amp_mgr *mgr, struct a2mp_cl *cl, u8 num_ctrl)
87{
88 int i = 0;
89 struct hci_dev *hdev;
90
91 __a2mp_cl_bredr(cl);
92
93 list_for_each_entry(hdev, &hci_dev_list, list) {
94 /* Iterate through AMP controllers */
95 if (hdev->id == HCI_BREDR_ID)
96 continue;
97
98 /* Starting from second entry */
99 if (++i >= num_ctrl)
100 return;
101
102 cl[i].id = hdev->id;
103 cl[i].type = hdev->amp_type;
104 cl[i].status = hdev->amp_status;
105 }
106}
107
21dbd2ce
AE
108/* Processing A2MP messages */
109static int a2mp_command_rej(struct amp_mgr *mgr, struct sk_buff *skb,
110 struct a2mp_cmd *hdr)
111{
112 struct a2mp_cmd_rej *rej = (void *) skb->data;
113
114 if (le16_to_cpu(hdr->len) < sizeof(*rej))
115 return -EINVAL;
116
117 BT_DBG("ident %d reason %d", hdr->ident, le16_to_cpu(rej->reason));
118
119 skb_pull(skb, sizeof(*rej));
120
121 return 0;
122}
123
8598d064
AE
124static int a2mp_discover_req(struct amp_mgr *mgr, struct sk_buff *skb,
125 struct a2mp_cmd *hdr)
126{
127 struct a2mp_discov_req *req = (void *) skb->data;
128 u16 len = le16_to_cpu(hdr->len);
129 struct a2mp_discov_rsp *rsp;
130 u16 ext_feat;
131 u8 num_ctrl;
132
133 if (len < sizeof(*req))
134 return -EINVAL;
135
136 skb_pull(skb, sizeof(*req));
137
138 ext_feat = le16_to_cpu(req->ext_feat);
139
140 BT_DBG("mtu %d efm 0x%4.4x", le16_to_cpu(req->mtu), ext_feat);
141
142 /* check that packet is not broken for now */
143 while (ext_feat & A2MP_FEAT_EXT) {
144 if (len < sizeof(ext_feat))
145 return -EINVAL;
146
147 ext_feat = get_unaligned_le16(skb->data);
148 BT_DBG("efm 0x%4.4x", ext_feat);
149 len -= sizeof(ext_feat);
150 skb_pull(skb, sizeof(ext_feat));
151 }
152
153 read_lock(&hci_dev_list_lock);
154
155 num_ctrl = __hci_num_ctrl();
156 len = num_ctrl * sizeof(struct a2mp_cl) + sizeof(*rsp);
157 rsp = kmalloc(len, GFP_ATOMIC);
158 if (!rsp) {
159 read_unlock(&hci_dev_list_lock);
160 return -ENOMEM;
161 }
162
163 rsp->mtu = __constant_cpu_to_le16(L2CAP_A2MP_DEFAULT_MTU);
164 rsp->ext_feat = 0;
165
166 __a2mp_add_cl(mgr, rsp->cl, num_ctrl);
167
168 read_unlock(&hci_dev_list_lock);
169
170 a2mp_send(mgr, A2MP_DISCOVER_RSP, hdr->ident, len, rsp);
171
172 kfree(rsp);
173 return 0;
174}
175
aa09537d
AE
176static int a2mp_discover_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
177 struct a2mp_cmd *hdr)
178{
179 struct a2mp_discov_rsp *rsp = (void *) skb->data;
180 u16 len = le16_to_cpu(hdr->len);
181 struct a2mp_cl *cl;
182 u16 ext_feat;
2766be48 183 bool found = false;
aa09537d
AE
184
185 if (len < sizeof(*rsp))
186 return -EINVAL;
187
188 len -= sizeof(*rsp);
189 skb_pull(skb, sizeof(*rsp));
190
191 ext_feat = le16_to_cpu(rsp->ext_feat);
192
193 BT_DBG("mtu %d efm 0x%4.4x", le16_to_cpu(rsp->mtu), ext_feat);
194
195 /* check that packet is not broken for now */
196 while (ext_feat & A2MP_FEAT_EXT) {
197 if (len < sizeof(ext_feat))
198 return -EINVAL;
199
200 ext_feat = get_unaligned_le16(skb->data);
201 BT_DBG("efm 0x%4.4x", ext_feat);
202 len -= sizeof(ext_feat);
203 skb_pull(skb, sizeof(ext_feat));
204 }
205
206 cl = (void *) skb->data;
207 while (len >= sizeof(*cl)) {
208 BT_DBG("Remote AMP id %d type %d status %d", cl->id, cl->type,
209 cl->status);
210
211 if (cl->id != HCI_BREDR_ID && cl->type == HCI_AMP) {
212 struct a2mp_info_req req;
213
2766be48 214 found = true;
aa09537d
AE
215 req.id = cl->id;
216 a2mp_send(mgr, A2MP_GETINFO_REQ, __next_ident(mgr),
217 sizeof(req), &req);
218 }
219
220 len -= sizeof(*cl);
221 cl = (void *) skb_pull(skb, sizeof(*cl));
222 }
223
2766be48
AE
224 /* Fall back to L2CAP init sequence */
225 if (!found) {
226 struct l2cap_conn *conn = mgr->l2cap_conn;
227 struct l2cap_chan *chan;
228
229 mutex_lock(&conn->chan_lock);
230
231 list_for_each_entry(chan, &conn->chan_l, list) {
232
233 BT_DBG("chan %p state %s", chan,
234 state_to_string(chan->state));
235
236 if (chan->chan_type == L2CAP_CHAN_CONN_FIX_A2MP)
237 continue;
238
239 l2cap_chan_lock(chan);
240
241 if (chan->state == BT_CONNECT)
242 l2cap_send_conn_req(chan);
243
244 l2cap_chan_unlock(chan);
245 }
246
247 mutex_unlock(&conn->chan_lock);
248 }
249
aa09537d
AE
250 return 0;
251}
252
329d81af
AE
253static int a2mp_change_notify(struct amp_mgr *mgr, struct sk_buff *skb,
254 struct a2mp_cmd *hdr)
255{
256 struct a2mp_cl *cl = (void *) skb->data;
257
258 while (skb->len >= sizeof(*cl)) {
259 BT_DBG("Controller id %d type %d status %d", cl->id, cl->type,
260 cl->status);
261 cl = (struct a2mp_cl *) skb_pull(skb, sizeof(*cl));
262 }
263
264 /* TODO send A2MP_CHANGE_RSP */
265
266 return 0;
267}
268
47f2d97d
AE
269static int a2mp_getinfo_req(struct amp_mgr *mgr, struct sk_buff *skb,
270 struct a2mp_cmd *hdr)
271{
272 struct a2mp_info_req *req = (void *) skb->data;
47f2d97d
AE
273 struct hci_dev *hdev;
274
275 if (le16_to_cpu(hdr->len) < sizeof(*req))
276 return -EINVAL;
277
278 BT_DBG("id %d", req->id);
279
47f2d97d 280 hdev = hci_dev_get(req->id);
bc8dce4f 281 if (!hdev || hdev->dev_type != HCI_AMP) {
8e2a0d92
AE
282 struct a2mp_info_rsp rsp;
283
284 rsp.id = req->id;
285 rsp.status = A2MP_STATUS_INVALID_CTRL_ID;
286
287 a2mp_send(mgr, A2MP_GETINFO_RSP, hdr->ident, sizeof(rsp),
288 &rsp);
47f2d97d 289
bc8dce4f 290 goto done;
8e2a0d92 291 }
47f2d97d 292
bc8dce4f
AE
293 mgr->state = READ_LOC_AMP_INFO;
294 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_INFO, 0, NULL);
295
296done:
297 if (hdev)
298 hci_dev_put(hdev);
47f2d97d
AE
299
300 skb_pull(skb, sizeof(*req));
301 return 0;
302}
303
0d868de9
AE
304static int a2mp_getinfo_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
305 struct a2mp_cmd *hdr)
306{
307 struct a2mp_info_rsp *rsp = (struct a2mp_info_rsp *) skb->data;
308 struct a2mp_amp_assoc_req req;
309 struct amp_ctrl *ctrl;
310
311 if (le16_to_cpu(hdr->len) < sizeof(*rsp))
312 return -EINVAL;
313
314 BT_DBG("id %d status 0x%2.2x", rsp->id, rsp->status);
315
316 if (rsp->status)
317 return -EINVAL;
318
fa4ebc66 319 ctrl = amp_ctrl_add(mgr, rsp->id);
0d868de9
AE
320 if (!ctrl)
321 return -ENOMEM;
322
0d868de9
AE
323 req.id = rsp->id;
324 a2mp_send(mgr, A2MP_GETAMPASSOC_REQ, __next_ident(mgr), sizeof(req),
325 &req);
326
327 skb_pull(skb, sizeof(*rsp));
328 return 0;
329}
330
a28381dc
AE
331static int a2mp_getampassoc_req(struct amp_mgr *mgr, struct sk_buff *skb,
332 struct a2mp_cmd *hdr)
333{
334 struct a2mp_amp_assoc_req *req = (void *) skb->data;
335 struct hci_dev *hdev;
903e4541 336 struct amp_mgr *tmp;
a28381dc
AE
337
338 if (le16_to_cpu(hdr->len) < sizeof(*req))
339 return -EINVAL;
340
341 BT_DBG("id %d", req->id);
342
903e4541
AE
343 /* Make sure that other request is not processed */
344 tmp = amp_mgr_lookup_by_state(READ_LOC_AMP_ASSOC);
345
a28381dc 346 hdev = hci_dev_get(req->id);
903e4541 347 if (!hdev || hdev->amp_type == HCI_BREDR || tmp) {
a28381dc
AE
348 struct a2mp_amp_assoc_rsp rsp;
349 rsp.id = req->id;
903e4541
AE
350
351 if (tmp) {
352 rsp.status = A2MP_STATUS_COLLISION_OCCURED;
353 amp_mgr_put(tmp);
354 } else {
355 rsp.status = A2MP_STATUS_INVALID_CTRL_ID;
356 }
a28381dc
AE
357
358 a2mp_send(mgr, A2MP_GETAMPASSOC_RSP, hdr->ident, sizeof(rsp),
359 &rsp);
903e4541
AE
360
361 goto done;
a28381dc
AE
362 }
363
903e4541 364 amp_read_loc_assoc(hdev, mgr);
a28381dc 365
903e4541 366done:
a28381dc
AE
367 if (hdev)
368 hci_dev_put(hdev);
369
370 skb_pull(skb, sizeof(*req));
371 return 0;
372}
373
9a5e94db
AE
374static int a2mp_getampassoc_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
375 struct a2mp_cmd *hdr)
376{
377 struct a2mp_amp_assoc_rsp *rsp = (void *) skb->data;
378 u16 len = le16_to_cpu(hdr->len);
379 struct hci_dev *hdev;
380 struct amp_ctrl *ctrl;
381 struct hci_conn *hcon;
13465c0a 382 size_t assoc_len;
9a5e94db
AE
383
384 if (len < sizeof(*rsp))
385 return -EINVAL;
386
13465c0a
AE
387 assoc_len = len - sizeof(*rsp);
388
389 BT_DBG("id %d status 0x%2.2x assoc len %zu", rsp->id, rsp->status,
390 assoc_len);
9a5e94db
AE
391
392 if (rsp->status)
393 return -EINVAL;
394
395 /* Save remote ASSOC data */
396 ctrl = amp_ctrl_lookup(mgr, rsp->id);
397 if (ctrl) {
13465c0a 398 u8 *assoc;
9a5e94db
AE
399
400 assoc = kzalloc(assoc_len, GFP_KERNEL);
401 if (!assoc) {
402 amp_ctrl_put(ctrl);
403 return -ENOMEM;
404 }
405
406 memcpy(assoc, rsp->amp_assoc, assoc_len);
407 ctrl->assoc = assoc;
408 ctrl->assoc_len = assoc_len;
409 ctrl->assoc_rem_len = assoc_len;
410 ctrl->assoc_len_so_far = 0;
411
412 amp_ctrl_put(ctrl);
413 }
414
415 /* Create Phys Link */
416 hdev = hci_dev_get(rsp->id);
417 if (!hdev)
418 return -EINVAL;
419
a0c234fe 420 hcon = phylink_add(hdev, mgr, rsp->id, true);
9a5e94db
AE
421 if (!hcon)
422 goto done;
423
424 BT_DBG("Created hcon %p: loc:%d -> rem:%d", hcon, hdev->id, rsp->id);
425
9495b2ee
AE
426 mgr->bredr_chan->ctrl_id = rsp->id;
427
a02226d6
AE
428 amp_create_phylink(hdev, mgr, hcon);
429
9a5e94db
AE
430done:
431 hci_dev_put(hdev);
432 skb_pull(skb, len);
433 return 0;
434}
435
e072f5da
AE
436static int a2mp_createphyslink_req(struct amp_mgr *mgr, struct sk_buff *skb,
437 struct a2mp_cmd *hdr)
438{
439 struct a2mp_physlink_req *req = (void *) skb->data;
440
441 struct a2mp_physlink_rsp rsp;
442 struct hci_dev *hdev;
cb8488c0 443 struct hci_conn *hcon;
0b26ab9d 444 struct amp_ctrl *ctrl;
e072f5da
AE
445
446 if (le16_to_cpu(hdr->len) < sizeof(*req))
447 return -EINVAL;
448
449 BT_DBG("local_id %d, remote_id %d", req->local_id, req->remote_id);
450
451 rsp.local_id = req->remote_id;
452 rsp.remote_id = req->local_id;
453
454 hdev = hci_dev_get(req->remote_id);
455 if (!hdev || hdev->amp_type != HCI_AMP) {
456 rsp.status = A2MP_STATUS_INVALID_CTRL_ID;
457 goto send_rsp;
458 }
459
0b26ab9d
AE
460 ctrl = amp_ctrl_lookup(mgr, rsp.remote_id);
461 if (!ctrl) {
fa4ebc66 462 ctrl = amp_ctrl_add(mgr, rsp.remote_id);
0b26ab9d
AE
463 if (ctrl) {
464 amp_ctrl_get(ctrl);
465 } else {
466 rsp.status = A2MP_STATUS_UNABLE_START_LINK_CREATION;
467 goto send_rsp;
468 }
469 }
470
471 if (ctrl) {
13465c0a
AE
472 size_t assoc_len = le16_to_cpu(hdr->len) - sizeof(*req);
473 u8 *assoc;
0b26ab9d 474
0b26ab9d
AE
475 assoc = kzalloc(assoc_len, GFP_KERNEL);
476 if (!assoc) {
477 amp_ctrl_put(ctrl);
478 return -ENOMEM;
479 }
480
481 memcpy(assoc, req->amp_assoc, assoc_len);
482 ctrl->assoc = assoc;
483 ctrl->assoc_len = assoc_len;
484 ctrl->assoc_rem_len = assoc_len;
485 ctrl->assoc_len_so_far = 0;
486
487 amp_ctrl_put(ctrl);
488 }
489
a0c234fe 490 hcon = phylink_add(hdev, mgr, req->local_id, false);
cb8488c0 491 if (hcon) {
dffa3871 492 amp_accept_phylink(hdev, mgr, hcon);
cb8488c0
AE
493 rsp.status = A2MP_STATUS_SUCCESS;
494 } else {
495 rsp.status = A2MP_STATUS_UNABLE_START_LINK_CREATION;
496 }
e072f5da
AE
497
498send_rsp:
499 if (hdev)
500 hci_dev_put(hdev);
501
502 a2mp_send(mgr, A2MP_CREATEPHYSLINK_RSP, hdr->ident, sizeof(rsp),
503 &rsp);
504
505 skb_pull(skb, le16_to_cpu(hdr->len));
506 return 0;
507}
508
6113f84f
AE
509static int a2mp_discphyslink_req(struct amp_mgr *mgr, struct sk_buff *skb,
510 struct a2mp_cmd *hdr)
511{
512 struct a2mp_physlink_req *req = (void *) skb->data;
513 struct a2mp_physlink_rsp rsp;
514 struct hci_dev *hdev;
cb8488c0 515 struct hci_conn *hcon;
6113f84f
AE
516
517 if (le16_to_cpu(hdr->len) < sizeof(*req))
518 return -EINVAL;
519
520 BT_DBG("local_id %d remote_id %d", req->local_id, req->remote_id);
521
522 rsp.local_id = req->remote_id;
523 rsp.remote_id = req->local_id;
524 rsp.status = A2MP_STATUS_SUCCESS;
525
cb8488c0 526 hdev = hci_dev_get(req->remote_id);
6113f84f
AE
527 if (!hdev) {
528 rsp.status = A2MP_STATUS_INVALID_CTRL_ID;
529 goto send_rsp;
530 }
531
cb8488c0
AE
532 hcon = hci_conn_hash_lookup_ba(hdev, AMP_LINK, mgr->l2cap_conn->dst);
533 if (!hcon) {
534 BT_ERR("No phys link exist");
535 rsp.status = A2MP_STATUS_NO_PHYSICAL_LINK_EXISTS;
536 goto clean;
537 }
538
6113f84f
AE
539 /* TODO Disconnect Phys Link here */
540
cb8488c0 541clean:
6113f84f
AE
542 hci_dev_put(hdev);
543
544send_rsp:
545 a2mp_send(mgr, A2MP_DISCONNPHYSLINK_RSP, hdr->ident, sizeof(rsp), &rsp);
546
547 skb_pull(skb, sizeof(*req));
548 return 0;
549}
550
f6410a84
AE
551static inline int a2mp_cmd_rsp(struct amp_mgr *mgr, struct sk_buff *skb,
552 struct a2mp_cmd *hdr)
553{
8e8c7e36 554 BT_DBG("ident %d code 0x%2.2x", hdr->ident, hdr->code);
f6410a84
AE
555
556 skb_pull(skb, le16_to_cpu(hdr->len));
557 return 0;
558}
559
6b44d9b8
AE
560/* Handle A2MP signalling */
561static int a2mp_chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
562{
d9fc1d54 563 struct a2mp_cmd *hdr;
6b44d9b8
AE
564 struct amp_mgr *mgr = chan->data;
565 int err = 0;
566
567 amp_mgr_get(mgr);
568
569 while (skb->len >= sizeof(*hdr)) {
d9fc1d54
AE
570 u16 len;
571
572 hdr = (void *) skb->data;
573 len = le16_to_cpu(hdr->len);
6b44d9b8 574
8e8c7e36 575 BT_DBG("code 0x%2.2x id %d len %u", hdr->code, hdr->ident, len);
6b44d9b8
AE
576
577 skb_pull(skb, sizeof(*hdr));
578
579 if (len > skb->len || !hdr->ident) {
580 err = -EINVAL;
581 break;
582 }
583
584 mgr->ident = hdr->ident;
585
586 switch (hdr->code) {
587 case A2MP_COMMAND_REJ:
21dbd2ce
AE
588 a2mp_command_rej(mgr, skb, hdr);
589 break;
590
6b44d9b8 591 case A2MP_DISCOVER_REQ:
8598d064
AE
592 err = a2mp_discover_req(mgr, skb, hdr);
593 break;
594
6b44d9b8 595 case A2MP_CHANGE_NOTIFY:
329d81af
AE
596 err = a2mp_change_notify(mgr, skb, hdr);
597 break;
598
6b44d9b8 599 case A2MP_GETINFO_REQ:
47f2d97d
AE
600 err = a2mp_getinfo_req(mgr, skb, hdr);
601 break;
602
6b44d9b8 603 case A2MP_GETAMPASSOC_REQ:
a28381dc
AE
604 err = a2mp_getampassoc_req(mgr, skb, hdr);
605 break;
606
6b44d9b8 607 case A2MP_CREATEPHYSLINK_REQ:
e072f5da
AE
608 err = a2mp_createphyslink_req(mgr, skb, hdr);
609 break;
610
6b44d9b8 611 case A2MP_DISCONNPHYSLINK_REQ:
6113f84f
AE
612 err = a2mp_discphyslink_req(mgr, skb, hdr);
613 break;
614
6b44d9b8 615 case A2MP_DISCOVER_RSP:
aa09537d
AE
616 err = a2mp_discover_rsp(mgr, skb, hdr);
617 break;
618
6b44d9b8 619 case A2MP_GETINFO_RSP:
0d868de9
AE
620 err = a2mp_getinfo_rsp(mgr, skb, hdr);
621 break;
622
6b44d9b8 623 case A2MP_GETAMPASSOC_RSP:
9a5e94db
AE
624 err = a2mp_getampassoc_rsp(mgr, skb, hdr);
625 break;
626
627 case A2MP_CHANGE_RSP:
6b44d9b8
AE
628 case A2MP_CREATEPHYSLINK_RSP:
629 case A2MP_DISCONNPHYSLINK_RSP:
f6410a84
AE
630 err = a2mp_cmd_rsp(mgr, skb, hdr);
631 break;
632
6b44d9b8
AE
633 default:
634 BT_ERR("Unknown A2MP sig cmd 0x%2.2x", hdr->code);
635 err = -EINVAL;
636 break;
637 }
638 }
639
640 if (err) {
641 struct a2mp_cmd_rej rej;
d9fc1d54 642
6b44d9b8 643 rej.reason = __constant_cpu_to_le16(0);
d9fc1d54 644 hdr = (void *) skb->data;
6b44d9b8
AE
645
646 BT_DBG("Send A2MP Rej: cmd 0x%2.2x err %d", hdr->code, err);
647
648 a2mp_send(mgr, A2MP_COMMAND_REJ, hdr->ident, sizeof(rej),
649 &rej);
650 }
651
652 /* Always free skb and return success error code to prevent
653 from sending L2CAP Disconnect over A2MP channel */
654 kfree_skb(skb);
655
656 amp_mgr_put(mgr);
657
658 return 0;
659}
660
46d5c908
AE
661static void a2mp_chan_close_cb(struct l2cap_chan *chan)
662{
4af66c69 663 l2cap_chan_put(chan);
46d5c908
AE
664}
665
666static void a2mp_chan_state_change_cb(struct l2cap_chan *chan, int state)
667{
668 struct amp_mgr *mgr = chan->data;
669
670 if (!mgr)
671 return;
672
673 BT_DBG("chan %p state %s", chan, state_to_string(state));
674
675 chan->state = state;
676
677 switch (state) {
678 case BT_CLOSED:
679 if (mgr)
680 amp_mgr_put(mgr);
681 break;
682 }
683}
684
685static struct sk_buff *a2mp_chan_alloc_skb_cb(struct l2cap_chan *chan,
686 unsigned long len, int nb)
687{
688 return bt_skb_alloc(len, GFP_KERNEL);
689}
690
466f8004
AE
691static struct l2cap_ops a2mp_chan_ops = {
692 .name = "L2CAP A2MP channel",
6b44d9b8 693 .recv = a2mp_chan_recv_cb,
46d5c908
AE
694 .close = a2mp_chan_close_cb,
695 .state_change = a2mp_chan_state_change_cb,
696 .alloc_skb = a2mp_chan_alloc_skb_cb,
697
698 /* Not implemented for A2MP */
7e1af8a3
GP
699 .new_connection = l2cap_chan_no_new_connection,
700 .teardown = l2cap_chan_no_teardown,
701 .ready = l2cap_chan_no_ready,
2dc4e510 702 .defer = l2cap_chan_no_defer,
466f8004
AE
703};
704
93c3e8f5 705static struct l2cap_chan *a2mp_chan_open(struct l2cap_conn *conn, bool locked)
466f8004
AE
706{
707 struct l2cap_chan *chan;
708 int err;
709
710 chan = l2cap_chan_create();
711 if (!chan)
712 return NULL;
713
714 BT_DBG("chan %p", chan);
715
416fa752 716 chan->chan_type = L2CAP_CHAN_CONN_FIX_A2MP;
466f8004
AE
717 chan->flush_to = L2CAP_DEFAULT_FLUSH_TO;
718
719 chan->ops = &a2mp_chan_ops;
720
721 l2cap_chan_set_defaults(chan);
722 chan->remote_max_tx = chan->max_tx;
723 chan->remote_tx_win = chan->tx_win;
724
725 chan->retrans_timeout = L2CAP_DEFAULT_RETRANS_TO;
726 chan->monitor_timeout = L2CAP_DEFAULT_MONITOR_TO;
727
728 skb_queue_head_init(&chan->tx_q);
729
730 chan->mode = L2CAP_MODE_ERTM;
731
732 err = l2cap_ertm_init(chan);
733 if (err < 0) {
734 l2cap_chan_del(chan, 0);
735 return NULL;
736 }
737
738 chan->conf_state = 0;
739
93c3e8f5
AE
740 if (locked)
741 __l2cap_chan_add(conn, chan);
742 else
743 l2cap_chan_add(conn, chan);
466f8004
AE
744
745 chan->remote_mps = chan->omtu;
746 chan->mps = chan->omtu;
747
748 chan->state = BT_CONNECTED;
749
750 return chan;
751}
9740e49d
AE
752
753/* AMP Manager functions */
754void amp_mgr_get(struct amp_mgr *mgr)
755{
a0dfe0ab 756 BT_DBG("mgr %p orig refcnt %d", mgr, atomic_read(&mgr->kref.refcount));
9740e49d
AE
757
758 kref_get(&mgr->kref);
759}
760
761static void amp_mgr_destroy(struct kref *kref)
762{
763 struct amp_mgr *mgr = container_of(kref, struct amp_mgr, kref);
764
765 BT_DBG("mgr %p", mgr);
766
f97268fc
AE
767 mutex_lock(&amp_mgr_list_lock);
768 list_del(&mgr->list);
769 mutex_unlock(&amp_mgr_list_lock);
770
52c0d6e5 771 amp_ctrl_list_flush(mgr);
9740e49d
AE
772 kfree(mgr);
773}
774
775int amp_mgr_put(struct amp_mgr *mgr)
776{
a0dfe0ab 777 BT_DBG("mgr %p orig refcnt %d", mgr, atomic_read(&mgr->kref.refcount));
9740e49d
AE
778
779 return kref_put(&mgr->kref, &amp_mgr_destroy);
780}
781
93c3e8f5 782static struct amp_mgr *amp_mgr_create(struct l2cap_conn *conn, bool locked)
9740e49d
AE
783{
784 struct amp_mgr *mgr;
785 struct l2cap_chan *chan;
786
787 mgr = kzalloc(sizeof(*mgr), GFP_KERNEL);
788 if (!mgr)
789 return NULL;
790
791 BT_DBG("conn %p mgr %p", conn, mgr);
792
793 mgr->l2cap_conn = conn;
794
93c3e8f5 795 chan = a2mp_chan_open(conn, locked);
9740e49d
AE
796 if (!chan) {
797 kfree(mgr);
798 return NULL;
799 }
800
801 mgr->a2mp_chan = chan;
802 chan->data = mgr;
803
804 conn->hcon->amp_mgr = mgr;
805
806 kref_init(&mgr->kref);
807
52c0d6e5
AE
808 /* Remote AMP ctrl list initialization */
809 INIT_LIST_HEAD(&mgr->amp_ctrls);
810 mutex_init(&mgr->amp_ctrls_lock);
811
f97268fc
AE
812 mutex_lock(&amp_mgr_list_lock);
813 list_add(&mgr->list, &amp_mgr_list);
814 mutex_unlock(&amp_mgr_list_lock);
815
9740e49d
AE
816 return mgr;
817}
97e8e89d
AE
818
819struct l2cap_chan *a2mp_channel_create(struct l2cap_conn *conn,
820 struct sk_buff *skb)
821{
822 struct amp_mgr *mgr;
823
93c3e8f5 824 mgr = amp_mgr_create(conn, false);
97e8e89d
AE
825 if (!mgr) {
826 BT_ERR("Could not create AMP manager");
827 return NULL;
828 }
829
830 BT_DBG("mgr: %p chan %p", mgr, mgr->a2mp_chan);
831
832 return mgr->a2mp_chan;
833}
f97268fc
AE
834
835struct amp_mgr *amp_mgr_lookup_by_state(u8 state)
836{
837 struct amp_mgr *mgr;
838
839 mutex_lock(&amp_mgr_list_lock);
840 list_for_each_entry(mgr, &amp_mgr_list, list) {
841 if (mgr->state == state) {
842 amp_mgr_get(mgr);
843 mutex_unlock(&amp_mgr_list_lock);
844 return mgr;
845 }
846 }
847 mutex_unlock(&amp_mgr_list_lock);
848
849 return NULL;
850}
8e2a0d92
AE
851
852void a2mp_send_getinfo_rsp(struct hci_dev *hdev)
853{
854 struct amp_mgr *mgr;
855 struct a2mp_info_rsp rsp;
856
857 mgr = amp_mgr_lookup_by_state(READ_LOC_AMP_INFO);
858 if (!mgr)
859 return;
860
861 BT_DBG("%s mgr %p", hdev->name, mgr);
862
863 rsp.id = hdev->id;
864 rsp.status = A2MP_STATUS_INVALID_CTRL_ID;
865
866 if (hdev->amp_type != HCI_BREDR) {
867 rsp.status = 0;
868 rsp.total_bw = cpu_to_le32(hdev->amp_total_bw);
869 rsp.max_bw = cpu_to_le32(hdev->amp_max_bw);
870 rsp.min_latency = cpu_to_le32(hdev->amp_min_latency);
871 rsp.pal_cap = cpu_to_le16(hdev->amp_pal_cap);
872 rsp.assoc_size = cpu_to_le16(hdev->amp_assoc_size);
873 }
874
875 a2mp_send(mgr, A2MP_GETINFO_RSP, mgr->ident, sizeof(rsp), &rsp);
876 amp_mgr_put(mgr);
877}
903e4541
AE
878
879void a2mp_send_getampassoc_rsp(struct hci_dev *hdev, u8 status)
880{
881 struct amp_mgr *mgr;
882 struct amp_assoc *loc_assoc = &hdev->loc_assoc;
883 struct a2mp_amp_assoc_rsp *rsp;
884 size_t len;
885
886 mgr = amp_mgr_lookup_by_state(READ_LOC_AMP_ASSOC);
887 if (!mgr)
888 return;
889
890 BT_DBG("%s mgr %p", hdev->name, mgr);
891
892 len = sizeof(struct a2mp_amp_assoc_rsp) + loc_assoc->len;
893 rsp = kzalloc(len, GFP_KERNEL);
894 if (!rsp) {
895 amp_mgr_put(mgr);
896 return;
897 }
898
899 rsp->id = hdev->id;
900
901 if (status) {
902 rsp->status = A2MP_STATUS_INVALID_CTRL_ID;
903 } else {
904 rsp->status = A2MP_STATUS_SUCCESS;
905 memcpy(rsp->amp_assoc, loc_assoc->data, loc_assoc->len);
906 }
907
908 a2mp_send(mgr, A2MP_GETAMPASSOC_RSP, mgr->ident, len, rsp);
909 amp_mgr_put(mgr);
910 kfree(rsp);
911}
93c3e8f5 912
9495b2ee
AE
913void a2mp_send_create_phy_link_req(struct hci_dev *hdev, u8 status)
914{
915 struct amp_mgr *mgr;
916 struct amp_assoc *loc_assoc = &hdev->loc_assoc;
917 struct a2mp_physlink_req *req;
918 struct l2cap_chan *bredr_chan;
919 size_t len;
920
921 mgr = amp_mgr_lookup_by_state(READ_LOC_AMP_ASSOC_FINAL);
922 if (!mgr)
923 return;
924
925 len = sizeof(*req) + loc_assoc->len;
926
927 BT_DBG("%s mgr %p assoc_len %zu", hdev->name, mgr, len);
928
929 req = kzalloc(len, GFP_KERNEL);
930 if (!req) {
931 amp_mgr_put(mgr);
932 return;
933 }
934
935 bredr_chan = mgr->bredr_chan;
936 if (!bredr_chan)
937 goto clean;
938
939 req->local_id = hdev->id;
940 req->remote_id = bredr_chan->ctrl_id;
941 memcpy(req->amp_assoc, loc_assoc->data, loc_assoc->len);
942
943 a2mp_send(mgr, A2MP_CREATEPHYSLINK_REQ, __next_ident(mgr), len, req);
944
945clean:
946 amp_mgr_put(mgr);
947 kfree(req);
948}
949
93c3e8f5
AE
950void a2mp_discover_amp(struct l2cap_chan *chan)
951{
952 struct l2cap_conn *conn = chan->conn;
953 struct amp_mgr *mgr = conn->hcon->amp_mgr;
954 struct a2mp_discov_req req;
955
956 BT_DBG("chan %p conn %p mgr %p", chan, conn, mgr);
957
958 if (!mgr) {
959 mgr = amp_mgr_create(conn, true);
960 if (!mgr)
961 return;
962 }
963
964 mgr->bredr_chan = chan;
965
966 req.mtu = cpu_to_le16(L2CAP_A2MP_DEFAULT_MTU);
967 req.ext_feat = 0;
968 a2mp_send(mgr, A2MP_DISCOVER_REQ, 1, sizeof(req), &req);
969}
This page took 0.100283 seconds and 5 git commands to generate.