command.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. /*
  2. * Copyright (C) 2012 Intel Corporation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  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. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the
  16. * Free Software Foundation, Inc.,
  17. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. #define pr_fmt(fmt) "hci: %s: " fmt, __func__
  20. #include <linux/init.h>
  21. #include <linux/kernel.h>
  22. #include <linux/sched.h>
  23. #include <linux/module.h>
  24. #include <net/nfc/hci.h>
  25. #include "hci.h"
  26. static int nfc_hci_result_to_errno(u8 result)
  27. {
  28. switch (result) {
  29. case NFC_HCI_ANY_OK:
  30. return 0;
  31. case NFC_HCI_ANY_E_TIMEOUT:
  32. return -ETIMEDOUT;
  33. default:
  34. return -1;
  35. }
  36. }
  37. static void nfc_hci_execute_cb(struct nfc_hci_dev *hdev, u8 result,
  38. struct sk_buff *skb, void *cb_data)
  39. {
  40. struct hcp_exec_waiter *hcp_ew = (struct hcp_exec_waiter *)cb_data;
  41. pr_debug("HCI Cmd completed with HCI result=%d\n", result);
  42. hcp_ew->exec_result = nfc_hci_result_to_errno(result);
  43. if (hcp_ew->exec_result == 0)
  44. hcp_ew->result_skb = skb;
  45. else
  46. kfree_skb(skb);
  47. hcp_ew->exec_complete = true;
  48. wake_up(hcp_ew->wq);
  49. }
  50. static int nfc_hci_execute_cmd(struct nfc_hci_dev *hdev, u8 pipe, u8 cmd,
  51. const u8 *param, size_t param_len,
  52. struct sk_buff **skb)
  53. {
  54. DECLARE_WAIT_QUEUE_HEAD_ONSTACK(ew_wq);
  55. struct hcp_exec_waiter hcp_ew;
  56. hcp_ew.wq = &ew_wq;
  57. hcp_ew.exec_complete = false;
  58. hcp_ew.result_skb = NULL;
  59. pr_debug("through pipe=%d, cmd=%d, plen=%zd\n", pipe, cmd, param_len);
  60. /* TODO: Define hci cmd execution delay. Should it be the same
  61. * for all commands?
  62. */
  63. hcp_ew.exec_result = nfc_hci_hcp_message_tx(hdev, pipe,
  64. NFC_HCI_HCP_COMMAND, cmd,
  65. param, param_len,
  66. nfc_hci_execute_cb, &hcp_ew,
  67. 3000);
  68. if (hcp_ew.exec_result < 0)
  69. return hcp_ew.exec_result;
  70. wait_event(ew_wq, hcp_ew.exec_complete == true);
  71. if (hcp_ew.exec_result == 0) {
  72. if (skb)
  73. *skb = hcp_ew.result_skb;
  74. else
  75. kfree_skb(hcp_ew.result_skb);
  76. }
  77. return hcp_ew.exec_result;
  78. }
  79. int nfc_hci_send_event(struct nfc_hci_dev *hdev, u8 gate, u8 event,
  80. const u8 *param, size_t param_len)
  81. {
  82. u8 pipe;
  83. pr_debug("%d to gate %d\n", event, gate);
  84. pipe = hdev->gate2pipe[gate];
  85. if (pipe == NFC_HCI_INVALID_PIPE)
  86. return -EADDRNOTAVAIL;
  87. return nfc_hci_hcp_message_tx(hdev, pipe, NFC_HCI_HCP_EVENT, event,
  88. param, param_len, NULL, NULL, 0);
  89. }
  90. EXPORT_SYMBOL(nfc_hci_send_event);
  91. int nfc_hci_send_response(struct nfc_hci_dev *hdev, u8 gate, u8 response,
  92. const u8 *param, size_t param_len)
  93. {
  94. u8 pipe;
  95. pr_debug("\n");
  96. pipe = hdev->gate2pipe[gate];
  97. if (pipe == NFC_HCI_INVALID_PIPE)
  98. return -EADDRNOTAVAIL;
  99. return nfc_hci_hcp_message_tx(hdev, pipe, NFC_HCI_HCP_RESPONSE,
  100. response, param, param_len, NULL, NULL,
  101. 0);
  102. }
  103. EXPORT_SYMBOL(nfc_hci_send_response);
  104. /*
  105. * Execute an hci command sent to gate.
  106. * skb will contain response data if success. skb can be NULL if you are not
  107. * interested by the response.
  108. */
  109. int nfc_hci_send_cmd(struct nfc_hci_dev *hdev, u8 gate, u8 cmd,
  110. const u8 *param, size_t param_len, struct sk_buff **skb)
  111. {
  112. u8 pipe;
  113. pr_debug("\n");
  114. pipe = hdev->gate2pipe[gate];
  115. if (pipe == NFC_HCI_INVALID_PIPE)
  116. return -EADDRNOTAVAIL;
  117. return nfc_hci_execute_cmd(hdev, pipe, cmd, param, param_len, skb);
  118. }
  119. EXPORT_SYMBOL(nfc_hci_send_cmd);
  120. int nfc_hci_set_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  121. const u8 *param, size_t param_len)
  122. {
  123. int r;
  124. u8 *tmp;
  125. /* TODO ELa: reg idx must be inserted before param, but we don't want
  126. * to ask the caller to do it to keep a simpler API.
  127. * For now, just create a new temporary param buffer. This is far from
  128. * optimal though, and the plan is to modify APIs to pass idx down to
  129. * nfc_hci_hcp_message_tx where the frame is actually built, thereby
  130. * eliminating the need for the temp allocation-copy here.
  131. */
  132. pr_debug("idx=%d to gate %d\n", idx, gate);
  133. tmp = kmalloc(1 + param_len, GFP_KERNEL);
  134. if (tmp == NULL)
  135. return -ENOMEM;
  136. *tmp = idx;
  137. memcpy(tmp + 1, param, param_len);
  138. r = nfc_hci_send_cmd(hdev, gate, NFC_HCI_ANY_SET_PARAMETER,
  139. tmp, param_len + 1, NULL);
  140. kfree(tmp);
  141. return r;
  142. }
  143. EXPORT_SYMBOL(nfc_hci_set_param);
  144. int nfc_hci_get_param(struct nfc_hci_dev *hdev, u8 gate, u8 idx,
  145. struct sk_buff **skb)
  146. {
  147. pr_debug("gate=%d regidx=%d\n", gate, idx);
  148. return nfc_hci_send_cmd(hdev, gate, NFC_HCI_ANY_GET_PARAMETER,
  149. &idx, 1, skb);
  150. }
  151. EXPORT_SYMBOL(nfc_hci_get_param);
  152. static int nfc_hci_open_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  153. {
  154. struct sk_buff *skb;
  155. int r;
  156. pr_debug("pipe=%d\n", pipe);
  157. r = nfc_hci_execute_cmd(hdev, pipe, NFC_HCI_ANY_OPEN_PIPE,
  158. NULL, 0, &skb);
  159. if (r == 0) {
  160. /* dest host other than host controller will send
  161. * number of pipes already open on this gate before
  162. * execution. The number can be found in skb->data[0]
  163. */
  164. kfree_skb(skb);
  165. }
  166. return r;
  167. }
  168. static int nfc_hci_close_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  169. {
  170. pr_debug("\n");
  171. return nfc_hci_execute_cmd(hdev, pipe, NFC_HCI_ANY_CLOSE_PIPE,
  172. NULL, 0, NULL);
  173. }
  174. static u8 nfc_hci_create_pipe(struct nfc_hci_dev *hdev, u8 dest_host,
  175. u8 dest_gate, int *result)
  176. {
  177. struct sk_buff *skb;
  178. struct hci_create_pipe_params params;
  179. struct hci_create_pipe_resp *resp;
  180. u8 pipe;
  181. pr_debug("gate=%d\n", dest_gate);
  182. params.src_gate = NFC_HCI_ADMIN_GATE;
  183. params.dest_host = dest_host;
  184. params.dest_gate = dest_gate;
  185. *result = nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  186. NFC_HCI_ADM_CREATE_PIPE,
  187. (u8 *) &params, sizeof(params), &skb);
  188. if (*result == 0) {
  189. resp = (struct hci_create_pipe_resp *)skb->data;
  190. pipe = resp->pipe;
  191. kfree_skb(skb);
  192. pr_debug("pipe created=%d\n", pipe);
  193. return pipe;
  194. } else
  195. return NFC_HCI_INVALID_PIPE;
  196. }
  197. static int nfc_hci_delete_pipe(struct nfc_hci_dev *hdev, u8 pipe)
  198. {
  199. pr_debug("\n");
  200. return nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  201. NFC_HCI_ADM_DELETE_PIPE, &pipe, 1, NULL);
  202. }
  203. static int nfc_hci_clear_all_pipes(struct nfc_hci_dev *hdev)
  204. {
  205. int r;
  206. u8 param[2];
  207. /* TODO: Find out what the identity reference data is
  208. * and fill param with it. HCI spec 6.1.3.5 */
  209. pr_debug("\n");
  210. r = nfc_hci_execute_cmd(hdev, NFC_HCI_ADMIN_PIPE,
  211. NFC_HCI_ADM_CLEAR_ALL_PIPE, param, 2, NULL);
  212. return 0;
  213. }
  214. int nfc_hci_disconnect_gate(struct nfc_hci_dev *hdev, u8 gate)
  215. {
  216. int r;
  217. u8 pipe = hdev->gate2pipe[gate];
  218. pr_debug("\n");
  219. if (pipe == NFC_HCI_INVALID_PIPE)
  220. return -EADDRNOTAVAIL;
  221. r = nfc_hci_close_pipe(hdev, pipe);
  222. if (r < 0)
  223. return r;
  224. if (pipe != NFC_HCI_LINK_MGMT_PIPE && pipe != NFC_HCI_ADMIN_PIPE) {
  225. r = nfc_hci_delete_pipe(hdev, pipe);
  226. if (r < 0)
  227. return r;
  228. }
  229. hdev->gate2pipe[gate] = NFC_HCI_INVALID_PIPE;
  230. return 0;
  231. }
  232. EXPORT_SYMBOL(nfc_hci_disconnect_gate);
  233. int nfc_hci_disconnect_all_gates(struct nfc_hci_dev *hdev)
  234. {
  235. int r;
  236. pr_debug("\n");
  237. r = nfc_hci_clear_all_pipes(hdev);
  238. if (r < 0)
  239. return r;
  240. memset(hdev->gate2pipe, NFC_HCI_INVALID_PIPE, sizeof(hdev->gate2pipe));
  241. return 0;
  242. }
  243. EXPORT_SYMBOL(nfc_hci_disconnect_all_gates);
  244. int nfc_hci_connect_gate(struct nfc_hci_dev *hdev, u8 dest_host, u8 dest_gate)
  245. {
  246. u8 pipe = NFC_HCI_INVALID_PIPE;
  247. bool pipe_created = false;
  248. int r;
  249. pr_debug("\n");
  250. if (hdev->gate2pipe[dest_gate] != NFC_HCI_INVALID_PIPE)
  251. return -EADDRINUSE;
  252. switch (dest_gate) {
  253. case NFC_HCI_LINK_MGMT_GATE:
  254. pipe = NFC_HCI_LINK_MGMT_PIPE;
  255. break;
  256. case NFC_HCI_ADMIN_GATE:
  257. pipe = NFC_HCI_ADMIN_PIPE;
  258. break;
  259. default:
  260. pipe = nfc_hci_create_pipe(hdev, dest_host, dest_gate, &r);
  261. if (pipe == NFC_HCI_INVALID_PIPE)
  262. return r;
  263. pipe_created = true;
  264. break;
  265. }
  266. r = nfc_hci_open_pipe(hdev, pipe);
  267. if (r < 0) {
  268. if (pipe_created)
  269. if (nfc_hci_delete_pipe(hdev, pipe) < 0) {
  270. /* TODO: Cannot clean by deleting pipe...
  271. * -> inconsistent state */
  272. }
  273. return r;
  274. }
  275. hdev->gate2pipe[dest_gate] = pipe;
  276. return 0;
  277. }
  278. EXPORT_SYMBOL(nfc_hci_connect_gate);