security.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. /*
  2. * Wireless USB Host Controller
  3. * Security support: encryption enablement, etc
  4. *
  5. * Copyright (C) 2006 Intel Corporation
  6. * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License version
  10. * 2 as published by the Free Software Foundation.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  20. * 02110-1301, USA.
  21. *
  22. *
  23. * FIXME: docs
  24. */
  25. #include <linux/types.h>
  26. #include <linux/slab.h>
  27. #include <linux/usb/ch9.h>
  28. #include <linux/random.h>
  29. #include <linux/export.h>
  30. #include "wusbhc.h"
  31. static void wusbhc_gtk_rekey_work(struct work_struct *work);
  32. int wusbhc_sec_create(struct wusbhc *wusbhc)
  33. {
  34. /*
  35. * WQ is singlethread because we need to serialize rekey operations.
  36. * Use a separate workqueue for security operations instead of the
  37. * wusbd workqueue because security operations may need to communicate
  38. * directly with downstream wireless devices using synchronous URBs.
  39. * If a device is not responding, this could block other host
  40. * controller operations.
  41. */
  42. wusbhc->wq_security = create_singlethread_workqueue("wusbd_security");
  43. if (wusbhc->wq_security == NULL) {
  44. pr_err("WUSB-core: Cannot create wusbd_security workqueue\n");
  45. return -ENOMEM;
  46. }
  47. wusbhc->gtk.descr.bLength = sizeof(wusbhc->gtk.descr) +
  48. sizeof(wusbhc->gtk.data);
  49. wusbhc->gtk.descr.bDescriptorType = USB_DT_KEY;
  50. wusbhc->gtk.descr.bReserved = 0;
  51. wusbhc->gtk_index = 0;
  52. INIT_WORK(&wusbhc->gtk_rekey_work, wusbhc_gtk_rekey_work);
  53. return 0;
  54. }
  55. /* Called when the HC is destroyed */
  56. void wusbhc_sec_destroy(struct wusbhc *wusbhc)
  57. {
  58. destroy_workqueue(wusbhc->wq_security);
  59. }
  60. /**
  61. * wusbhc_next_tkid - generate a new, currently unused, TKID
  62. * @wusbhc: the WUSB host controller
  63. * @wusb_dev: the device whose PTK the TKID is for
  64. * (or NULL for a TKID for a GTK)
  65. *
  66. * The generated TKID consists of two parts: the device's authenticated
  67. * address (or 0 or a GTK); and an incrementing number. This ensures
  68. * that TKIDs cannot be shared between devices and by the time the
  69. * incrementing number wraps around the older TKIDs will no longer be
  70. * in use (a maximum of two keys may be active at any one time).
  71. */
  72. static u32 wusbhc_next_tkid(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  73. {
  74. u32 *tkid;
  75. u32 addr;
  76. if (wusb_dev == NULL) {
  77. tkid = &wusbhc->gtk_tkid;
  78. addr = 0;
  79. } else {
  80. tkid = &wusb_port_by_idx(wusbhc, wusb_dev->port_idx)->ptk_tkid;
  81. addr = wusb_dev->addr & 0x7f;
  82. }
  83. *tkid = (addr << 8) | ((*tkid + 1) & 0xff);
  84. return *tkid;
  85. }
  86. static void wusbhc_generate_gtk(struct wusbhc *wusbhc)
  87. {
  88. const size_t key_size = sizeof(wusbhc->gtk.data);
  89. u32 tkid;
  90. tkid = wusbhc_next_tkid(wusbhc, NULL);
  91. wusbhc->gtk.descr.tTKID[0] = (tkid >> 0) & 0xff;
  92. wusbhc->gtk.descr.tTKID[1] = (tkid >> 8) & 0xff;
  93. wusbhc->gtk.descr.tTKID[2] = (tkid >> 16) & 0xff;
  94. get_random_bytes(wusbhc->gtk.descr.bKeyData, key_size);
  95. }
  96. /**
  97. * wusbhc_sec_start - start the security management process
  98. * @wusbhc: the WUSB host controller
  99. *
  100. * Generate and set an initial GTK on the host controller.
  101. *
  102. * Called when the HC is started.
  103. */
  104. int wusbhc_sec_start(struct wusbhc *wusbhc)
  105. {
  106. const size_t key_size = sizeof(wusbhc->gtk.data);
  107. int result;
  108. wusbhc_generate_gtk(wusbhc);
  109. result = wusbhc->set_gtk(wusbhc, wusbhc->gtk_tkid,
  110. &wusbhc->gtk.descr.bKeyData, key_size);
  111. if (result < 0)
  112. dev_err(wusbhc->dev, "cannot set GTK for the host: %d\n",
  113. result);
  114. return result;
  115. }
  116. /**
  117. * wusbhc_sec_stop - stop the security management process
  118. * @wusbhc: the WUSB host controller
  119. *
  120. * Wait for any pending GTK rekeys to stop.
  121. */
  122. void wusbhc_sec_stop(struct wusbhc *wusbhc)
  123. {
  124. cancel_work_sync(&wusbhc->gtk_rekey_work);
  125. }
  126. /** @returns encryption type name */
  127. const char *wusb_et_name(u8 x)
  128. {
  129. switch (x) {
  130. case USB_ENC_TYPE_UNSECURE: return "unsecure";
  131. case USB_ENC_TYPE_WIRED: return "wired";
  132. case USB_ENC_TYPE_CCM_1: return "CCM-1";
  133. case USB_ENC_TYPE_RSA_1: return "RSA-1";
  134. default: return "unknown";
  135. }
  136. }
  137. EXPORT_SYMBOL_GPL(wusb_et_name);
  138. /*
  139. * Set the device encryption method
  140. *
  141. * We tell the device which encryption method to use; we do this when
  142. * setting up the device's security.
  143. */
  144. static int wusb_dev_set_encryption(struct usb_device *usb_dev, int value)
  145. {
  146. int result;
  147. struct device *dev = &usb_dev->dev;
  148. struct wusb_dev *wusb_dev = usb_dev->wusb_dev;
  149. if (value) {
  150. value = wusb_dev->ccm1_etd.bEncryptionValue;
  151. } else {
  152. /* FIXME: should be wusb_dev->etd[UNSECURE].bEncryptionValue */
  153. value = 0;
  154. }
  155. /* Set device's */
  156. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  157. USB_REQ_SET_ENCRYPTION,
  158. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  159. value, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  160. if (result < 0)
  161. dev_err(dev, "Can't set device's WUSB encryption to "
  162. "%s (value %d): %d\n",
  163. wusb_et_name(wusb_dev->ccm1_etd.bEncryptionType),
  164. wusb_dev->ccm1_etd.bEncryptionValue, result);
  165. return result;
  166. }
  167. /*
  168. * Set the GTK to be used by a device.
  169. *
  170. * The device must be authenticated.
  171. */
  172. static int wusb_dev_set_gtk(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  173. {
  174. struct usb_device *usb_dev = wusb_dev->usb_dev;
  175. u8 key_index = wusb_key_index(wusbhc->gtk_index,
  176. WUSB_KEY_INDEX_TYPE_GTK, WUSB_KEY_INDEX_ORIGINATOR_HOST);
  177. return usb_control_msg(
  178. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  179. USB_REQ_SET_DESCRIPTOR,
  180. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  181. USB_DT_KEY << 8 | key_index, 0,
  182. &wusbhc->gtk.descr, wusbhc->gtk.descr.bLength,
  183. USB_CTRL_SET_TIMEOUT);
  184. }
  185. /* FIXME: prototype for adding security */
  186. int wusb_dev_sec_add(struct wusbhc *wusbhc,
  187. struct usb_device *usb_dev, struct wusb_dev *wusb_dev)
  188. {
  189. int result, bytes, secd_size;
  190. struct device *dev = &usb_dev->dev;
  191. struct usb_security_descriptor *secd, *new_secd;
  192. const struct usb_encryption_descriptor *etd, *ccm1_etd = NULL;
  193. const void *itr, *top;
  194. char buf[64];
  195. secd = kmalloc(sizeof(*secd), GFP_KERNEL);
  196. if (secd == NULL) {
  197. result = -ENOMEM;
  198. goto out;
  199. }
  200. result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
  201. 0, secd, sizeof(*secd));
  202. if (result < (int)sizeof(*secd)) {
  203. dev_err(dev, "Can't read security descriptor or "
  204. "not enough data: %d\n", result);
  205. goto out;
  206. }
  207. secd_size = le16_to_cpu(secd->wTotalLength);
  208. new_secd = krealloc(secd, secd_size, GFP_KERNEL);
  209. if (new_secd == NULL) {
  210. dev_err(dev,
  211. "Can't allocate space for security descriptors\n");
  212. goto out;
  213. }
  214. secd = new_secd;
  215. result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
  216. 0, secd, secd_size);
  217. if (result < secd_size) {
  218. dev_err(dev, "Can't read security descriptor or "
  219. "not enough data: %d\n", result);
  220. goto out;
  221. }
  222. bytes = 0;
  223. itr = &secd[1];
  224. top = (void *)secd + result;
  225. while (itr < top) {
  226. etd = itr;
  227. if (top - itr < sizeof(*etd)) {
  228. dev_err(dev, "BUG: bad device security descriptor; "
  229. "not enough data (%zu vs %zu bytes left)\n",
  230. top - itr, sizeof(*etd));
  231. break;
  232. }
  233. if (etd->bLength < sizeof(*etd)) {
  234. dev_err(dev, "BUG: bad device encryption descriptor; "
  235. "descriptor is too short "
  236. "(%u vs %zu needed)\n",
  237. etd->bLength, sizeof(*etd));
  238. break;
  239. }
  240. itr += etd->bLength;
  241. bytes += snprintf(buf + bytes, sizeof(buf) - bytes,
  242. "%s (0x%02x/%02x) ",
  243. wusb_et_name(etd->bEncryptionType),
  244. etd->bEncryptionValue, etd->bAuthKeyIndex);
  245. if (etd->bEncryptionType == USB_ENC_TYPE_CCM_1)
  246. ccm1_etd = etd;
  247. }
  248. /* This code only supports CCM1 as of now. */
  249. /* FIXME: user has to choose which sec mode to use?
  250. * In theory we want CCM */
  251. if (ccm1_etd == NULL) {
  252. dev_err(dev, "WUSB device doesn't support CCM1 encryption, "
  253. "can't use!\n");
  254. result = -EINVAL;
  255. goto out;
  256. }
  257. wusb_dev->ccm1_etd = *ccm1_etd;
  258. dev_dbg(dev, "supported encryption: %s; using %s (0x%02x/%02x)\n",
  259. buf, wusb_et_name(ccm1_etd->bEncryptionType),
  260. ccm1_etd->bEncryptionValue, ccm1_etd->bAuthKeyIndex);
  261. result = 0;
  262. out:
  263. kfree(secd);
  264. return result;
  265. }
  266. void wusb_dev_sec_rm(struct wusb_dev *wusb_dev)
  267. {
  268. /* Nothing so far */
  269. }
  270. /**
  271. * Update the address of an unauthenticated WUSB device
  272. *
  273. * Once we have successfully authenticated, we take it to addr0 state
  274. * and then to a normal address.
  275. *
  276. * Before the device's address (as known by it) was usb_dev->devnum |
  277. * 0x80 (unauthenticated address). With this we update it to usb_dev->devnum.
  278. */
  279. int wusb_dev_update_address(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  280. {
  281. int result = -ENOMEM;
  282. struct usb_device *usb_dev = wusb_dev->usb_dev;
  283. struct device *dev = &usb_dev->dev;
  284. u8 new_address = wusb_dev->addr & 0x7F;
  285. /* Set address 0 */
  286. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  287. USB_REQ_SET_ADDRESS,
  288. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  289. 0, 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  290. if (result < 0) {
  291. dev_err(dev, "auth failed: can't set address 0: %d\n",
  292. result);
  293. goto error_addr0;
  294. }
  295. result = wusb_set_dev_addr(wusbhc, wusb_dev, 0);
  296. if (result < 0)
  297. goto error_addr0;
  298. usb_set_device_state(usb_dev, USB_STATE_DEFAULT);
  299. usb_ep0_reinit(usb_dev);
  300. /* Set new (authenticated) address. */
  301. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  302. USB_REQ_SET_ADDRESS,
  303. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  304. new_address, 0, NULL, 0,
  305. USB_CTRL_SET_TIMEOUT);
  306. if (result < 0) {
  307. dev_err(dev, "auth failed: can't set address %u: %d\n",
  308. new_address, result);
  309. goto error_addr;
  310. }
  311. result = wusb_set_dev_addr(wusbhc, wusb_dev, new_address);
  312. if (result < 0)
  313. goto error_addr;
  314. usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
  315. usb_ep0_reinit(usb_dev);
  316. usb_dev->authenticated = 1;
  317. error_addr:
  318. error_addr0:
  319. return result;
  320. }
  321. /*
  322. *
  323. *
  324. */
  325. /* FIXME: split and cleanup */
  326. int wusb_dev_4way_handshake(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev,
  327. struct wusb_ckhdid *ck)
  328. {
  329. int result = -ENOMEM;
  330. struct usb_device *usb_dev = wusb_dev->usb_dev;
  331. struct device *dev = &usb_dev->dev;
  332. u32 tkid;
  333. __le32 tkid_le;
  334. struct usb_handshake *hs;
  335. struct aes_ccm_nonce ccm_n;
  336. u8 mic[8];
  337. struct wusb_keydvt_in keydvt_in;
  338. struct wusb_keydvt_out keydvt_out;
  339. hs = kcalloc(3, sizeof(hs[0]), GFP_KERNEL);
  340. if (hs == NULL) {
  341. dev_err(dev, "can't allocate handshake data\n");
  342. goto error_kzalloc;
  343. }
  344. /* We need to turn encryption before beginning the 4way
  345. * hshake (WUSB1.0[.3.2.2]) */
  346. result = wusb_dev_set_encryption(usb_dev, 1);
  347. if (result < 0)
  348. goto error_dev_set_encryption;
  349. tkid = wusbhc_next_tkid(wusbhc, wusb_dev);
  350. tkid_le = cpu_to_le32(tkid);
  351. hs[0].bMessageNumber = 1;
  352. hs[0].bStatus = 0;
  353. memcpy(hs[0].tTKID, &tkid_le, sizeof(hs[0].tTKID));
  354. hs[0].bReserved = 0;
  355. memcpy(hs[0].CDID, &wusb_dev->cdid, sizeof(hs[0].CDID));
  356. get_random_bytes(&hs[0].nonce, sizeof(hs[0].nonce));
  357. memset(hs[0].MIC, 0, sizeof(hs[0].MIC)); /* Per WUSB1.0[T7-22] */
  358. result = usb_control_msg(
  359. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  360. USB_REQ_SET_HANDSHAKE,
  361. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  362. 1, 0, &hs[0], sizeof(hs[0]), USB_CTRL_SET_TIMEOUT);
  363. if (result < 0) {
  364. dev_err(dev, "Handshake1: request failed: %d\n", result);
  365. goto error_hs1;
  366. }
  367. /* Handshake 2, from the device -- need to verify fields */
  368. result = usb_control_msg(
  369. usb_dev, usb_rcvctrlpipe(usb_dev, 0),
  370. USB_REQ_GET_HANDSHAKE,
  371. USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  372. 2, 0, &hs[1], sizeof(hs[1]), USB_CTRL_GET_TIMEOUT);
  373. if (result < 0) {
  374. dev_err(dev, "Handshake2: request failed: %d\n", result);
  375. goto error_hs2;
  376. }
  377. result = -EINVAL;
  378. if (hs[1].bMessageNumber != 2) {
  379. dev_err(dev, "Handshake2 failed: bad message number %u\n",
  380. hs[1].bMessageNumber);
  381. goto error_hs2;
  382. }
  383. if (hs[1].bStatus != 0) {
  384. dev_err(dev, "Handshake2 failed: bad status %u\n",
  385. hs[1].bStatus);
  386. goto error_hs2;
  387. }
  388. if (memcmp(hs[0].tTKID, hs[1].tTKID, sizeof(hs[0].tTKID))) {
  389. dev_err(dev, "Handshake2 failed: TKID mismatch "
  390. "(#1 0x%02x%02x%02x vs #2 0x%02x%02x%02x)\n",
  391. hs[0].tTKID[0], hs[0].tTKID[1], hs[0].tTKID[2],
  392. hs[1].tTKID[0], hs[1].tTKID[1], hs[1].tTKID[2]);
  393. goto error_hs2;
  394. }
  395. if (memcmp(hs[0].CDID, hs[1].CDID, sizeof(hs[0].CDID))) {
  396. dev_err(dev, "Handshake2 failed: CDID mismatch\n");
  397. goto error_hs2;
  398. }
  399. /* Setup the CCM nonce */
  400. memset(&ccm_n.sfn, 0, sizeof(ccm_n.sfn)); /* Per WUSB1.0[6.5.2] */
  401. memcpy(ccm_n.tkid, &tkid_le, sizeof(ccm_n.tkid));
  402. ccm_n.src_addr = wusbhc->uwb_rc->uwb_dev.dev_addr;
  403. ccm_n.dest_addr.data[0] = wusb_dev->addr;
  404. ccm_n.dest_addr.data[1] = 0;
  405. /* Derive the KCK and PTK from CK, the CCM, H and D nonces */
  406. memcpy(keydvt_in.hnonce, hs[0].nonce, sizeof(keydvt_in.hnonce));
  407. memcpy(keydvt_in.dnonce, hs[1].nonce, sizeof(keydvt_in.dnonce));
  408. result = wusb_key_derive(&keydvt_out, ck->data, &ccm_n, &keydvt_in);
  409. if (result < 0) {
  410. dev_err(dev, "Handshake2 failed: cannot derive keys: %d\n",
  411. result);
  412. goto error_hs2;
  413. }
  414. /* Compute MIC and verify it */
  415. result = wusb_oob_mic(mic, keydvt_out.kck, &ccm_n, &hs[1]);
  416. if (result < 0) {
  417. dev_err(dev, "Handshake2 failed: cannot compute MIC: %d\n",
  418. result);
  419. goto error_hs2;
  420. }
  421. if (memcmp(hs[1].MIC, mic, sizeof(hs[1].MIC))) {
  422. dev_err(dev, "Handshake2 failed: MIC mismatch\n");
  423. goto error_hs2;
  424. }
  425. /* Send Handshake3 */
  426. hs[2].bMessageNumber = 3;
  427. hs[2].bStatus = 0;
  428. memcpy(hs[2].tTKID, &tkid_le, sizeof(hs[2].tTKID));
  429. hs[2].bReserved = 0;
  430. memcpy(hs[2].CDID, &wusb_dev->cdid, sizeof(hs[2].CDID));
  431. memcpy(hs[2].nonce, hs[0].nonce, sizeof(hs[2].nonce));
  432. result = wusb_oob_mic(hs[2].MIC, keydvt_out.kck, &ccm_n, &hs[2]);
  433. if (result < 0) {
  434. dev_err(dev, "Handshake3 failed: cannot compute MIC: %d\n",
  435. result);
  436. goto error_hs2;
  437. }
  438. result = usb_control_msg(
  439. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  440. USB_REQ_SET_HANDSHAKE,
  441. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  442. 3, 0, &hs[2], sizeof(hs[2]), USB_CTRL_SET_TIMEOUT);
  443. if (result < 0) {
  444. dev_err(dev, "Handshake3: request failed: %d\n", result);
  445. goto error_hs3;
  446. }
  447. result = wusbhc->set_ptk(wusbhc, wusb_dev->port_idx, tkid,
  448. keydvt_out.ptk, sizeof(keydvt_out.ptk));
  449. if (result < 0)
  450. goto error_wusbhc_set_ptk;
  451. result = wusb_dev_set_gtk(wusbhc, wusb_dev);
  452. if (result < 0) {
  453. dev_err(dev, "Set GTK for device: request failed: %d\n",
  454. result);
  455. goto error_wusbhc_set_gtk;
  456. }
  457. /* Update the device's address from unauth to auth */
  458. if (usb_dev->authenticated == 0) {
  459. result = wusb_dev_update_address(wusbhc, wusb_dev);
  460. if (result < 0)
  461. goto error_dev_update_address;
  462. }
  463. result = 0;
  464. dev_info(dev, "device authenticated\n");
  465. error_dev_update_address:
  466. error_wusbhc_set_gtk:
  467. error_wusbhc_set_ptk:
  468. error_hs3:
  469. error_hs2:
  470. error_hs1:
  471. memset(hs, 0, 3*sizeof(hs[0]));
  472. memzero_explicit(&keydvt_out, sizeof(keydvt_out));
  473. memzero_explicit(&keydvt_in, sizeof(keydvt_in));
  474. memzero_explicit(&ccm_n, sizeof(ccm_n));
  475. memzero_explicit(mic, sizeof(mic));
  476. if (result < 0)
  477. wusb_dev_set_encryption(usb_dev, 0);
  478. error_dev_set_encryption:
  479. kfree(hs);
  480. error_kzalloc:
  481. return result;
  482. }
  483. /*
  484. * Once all connected and authenticated devices have received the new
  485. * GTK, switch the host to using it.
  486. */
  487. static void wusbhc_gtk_rekey_work(struct work_struct *work)
  488. {
  489. struct wusbhc *wusbhc = container_of(work,
  490. struct wusbhc, gtk_rekey_work);
  491. size_t key_size = sizeof(wusbhc->gtk.data);
  492. int port_idx;
  493. struct wusb_dev *wusb_dev, *wusb_dev_next;
  494. LIST_HEAD(rekey_list);
  495. mutex_lock(&wusbhc->mutex);
  496. /* generate the new key */
  497. wusbhc_generate_gtk(wusbhc);
  498. /* roll the gtk index. */
  499. wusbhc->gtk_index = (wusbhc->gtk_index + 1) % (WUSB_KEY_INDEX_MAX + 1);
  500. /*
  501. * Save all connected devices on a list while holding wusbhc->mutex and
  502. * take a reference to each one. Then submit the set key request to
  503. * them after releasing the lock in order to avoid a deadlock.
  504. */
  505. for (port_idx = 0; port_idx < wusbhc->ports_max; port_idx++) {
  506. wusb_dev = wusbhc->port[port_idx].wusb_dev;
  507. if (!wusb_dev || !wusb_dev->usb_dev
  508. || !wusb_dev->usb_dev->authenticated)
  509. continue;
  510. wusb_dev_get(wusb_dev);
  511. list_add_tail(&wusb_dev->rekey_node, &rekey_list);
  512. }
  513. mutex_unlock(&wusbhc->mutex);
  514. /* Submit the rekey requests without holding wusbhc->mutex. */
  515. list_for_each_entry_safe(wusb_dev, wusb_dev_next, &rekey_list,
  516. rekey_node) {
  517. list_del_init(&wusb_dev->rekey_node);
  518. dev_dbg(&wusb_dev->usb_dev->dev,
  519. "%s: rekey device at port %d\n",
  520. __func__, wusb_dev->port_idx);
  521. if (wusb_dev_set_gtk(wusbhc, wusb_dev) < 0) {
  522. dev_err(&wusb_dev->usb_dev->dev,
  523. "%s: rekey device at port %d failed\n",
  524. __func__, wusb_dev->port_idx);
  525. }
  526. wusb_dev_put(wusb_dev);
  527. }
  528. /* Switch the host controller to use the new GTK. */
  529. mutex_lock(&wusbhc->mutex);
  530. wusbhc->set_gtk(wusbhc, wusbhc->gtk_tkid,
  531. &wusbhc->gtk.descr.bKeyData, key_size);
  532. mutex_unlock(&wusbhc->mutex);
  533. }
  534. /**
  535. * wusbhc_gtk_rekey - generate and distribute a new GTK
  536. * @wusbhc: the WUSB host controller
  537. *
  538. * Generate a new GTK and distribute it to all connected and
  539. * authenticated devices. When all devices have the new GTK, the host
  540. * starts using it.
  541. *
  542. * This must be called after every device disconnect (see [WUSB]
  543. * section 6.2.11.2).
  544. */
  545. void wusbhc_gtk_rekey(struct wusbhc *wusbhc)
  546. {
  547. /*
  548. * We need to submit a URB to the downstream WUSB devices in order to
  549. * change the group key. This can't be done while holding the
  550. * wusbhc->mutex since that is also taken in the urb_enqueue routine
  551. * and will cause a deadlock. Instead, queue a work item to do
  552. * it when the lock is not held
  553. */
  554. queue_work(wusbhc->wq_security, &wusbhc->gtk_rekey_work);
  555. }