security.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  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/usb/ch9.h>
  27. #include <linux/random.h>
  28. #include "wusbhc.h"
  29. static void wusbhc_set_gtk_callback(struct urb *urb);
  30. static void wusbhc_gtk_rekey_done_work(struct work_struct *work);
  31. int wusbhc_sec_create(struct wusbhc *wusbhc)
  32. {
  33. wusbhc->gtk.descr.bLength = sizeof(wusbhc->gtk.descr) + sizeof(wusbhc->gtk.data);
  34. wusbhc->gtk.descr.bDescriptorType = USB_DT_KEY;
  35. wusbhc->gtk.descr.bReserved = 0;
  36. wusbhc->gtk_index = wusb_key_index(0, WUSB_KEY_INDEX_TYPE_GTK,
  37. WUSB_KEY_INDEX_ORIGINATOR_HOST);
  38. INIT_WORK(&wusbhc->gtk_rekey_done_work, wusbhc_gtk_rekey_done_work);
  39. return 0;
  40. }
  41. /* Called when the HC is destroyed */
  42. void wusbhc_sec_destroy(struct wusbhc *wusbhc)
  43. {
  44. }
  45. /**
  46. * wusbhc_next_tkid - generate a new, currently unused, TKID
  47. * @wusbhc: the WUSB host controller
  48. * @wusb_dev: the device whose PTK the TKID is for
  49. * (or NULL for a TKID for a GTK)
  50. *
  51. * The generated TKID consist of two parts: the device's authenicated
  52. * address (or 0 or a GTK); and an incrementing number. This ensures
  53. * that TKIDs cannot be shared between devices and by the time the
  54. * incrementing number wraps around the older TKIDs will no longer be
  55. * in use (a maximum of two keys may be active at any one time).
  56. */
  57. static u32 wusbhc_next_tkid(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  58. {
  59. u32 *tkid;
  60. u32 addr;
  61. if (wusb_dev == NULL) {
  62. tkid = &wusbhc->gtk_tkid;
  63. addr = 0;
  64. } else {
  65. tkid = &wusb_port_by_idx(wusbhc, wusb_dev->port_idx)->ptk_tkid;
  66. addr = wusb_dev->addr & 0x7f;
  67. }
  68. *tkid = (addr << 8) | ((*tkid + 1) & 0xff);
  69. return *tkid;
  70. }
  71. static void wusbhc_generate_gtk(struct wusbhc *wusbhc)
  72. {
  73. const size_t key_size = sizeof(wusbhc->gtk.data);
  74. u32 tkid;
  75. tkid = wusbhc_next_tkid(wusbhc, NULL);
  76. wusbhc->gtk.descr.tTKID[0] = (tkid >> 0) & 0xff;
  77. wusbhc->gtk.descr.tTKID[1] = (tkid >> 8) & 0xff;
  78. wusbhc->gtk.descr.tTKID[2] = (tkid >> 16) & 0xff;
  79. get_random_bytes(wusbhc->gtk.descr.bKeyData, key_size);
  80. }
  81. /**
  82. * wusbhc_sec_start - start the security management process
  83. * @wusbhc: the WUSB host controller
  84. *
  85. * Generate and set an initial GTK on the host controller.
  86. *
  87. * Called when the HC is started.
  88. */
  89. int wusbhc_sec_start(struct wusbhc *wusbhc)
  90. {
  91. const size_t key_size = sizeof(wusbhc->gtk.data);
  92. int result;
  93. wusbhc_generate_gtk(wusbhc);
  94. result = wusbhc->set_gtk(wusbhc, wusbhc->gtk_tkid,
  95. &wusbhc->gtk.descr.bKeyData, key_size);
  96. if (result < 0)
  97. dev_err(wusbhc->dev, "cannot set GTK for the host: %d\n",
  98. result);
  99. return result;
  100. }
  101. /**
  102. * wusbhc_sec_stop - stop the security management process
  103. * @wusbhc: the WUSB host controller
  104. *
  105. * Wait for any pending GTK rekeys to stop.
  106. */
  107. void wusbhc_sec_stop(struct wusbhc *wusbhc)
  108. {
  109. cancel_work_sync(&wusbhc->gtk_rekey_done_work);
  110. }
  111. /** @returns encryption type name */
  112. const char *wusb_et_name(u8 x)
  113. {
  114. switch (x) {
  115. case USB_ENC_TYPE_UNSECURE: return "unsecure";
  116. case USB_ENC_TYPE_WIRED: return "wired";
  117. case USB_ENC_TYPE_CCM_1: return "CCM-1";
  118. case USB_ENC_TYPE_RSA_1: return "RSA-1";
  119. default: return "unknown";
  120. }
  121. }
  122. EXPORT_SYMBOL_GPL(wusb_et_name);
  123. /*
  124. * Set the device encryption method
  125. *
  126. * We tell the device which encryption method to use; we do this when
  127. * setting up the device's security.
  128. */
  129. static int wusb_dev_set_encryption(struct usb_device *usb_dev, int value)
  130. {
  131. int result;
  132. struct device *dev = &usb_dev->dev;
  133. struct wusb_dev *wusb_dev = usb_dev->wusb_dev;
  134. if (value) {
  135. value = wusb_dev->ccm1_etd.bEncryptionValue;
  136. } else {
  137. /* FIXME: should be wusb_dev->etd[UNSECURE].bEncryptionValue */
  138. value = 0;
  139. }
  140. /* Set device's */
  141. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  142. USB_REQ_SET_ENCRYPTION,
  143. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  144. value, 0, NULL, 0, 1000 /* FIXME: arbitrary */);
  145. if (result < 0)
  146. dev_err(dev, "Can't set device's WUSB encryption to "
  147. "%s (value %d): %d\n",
  148. wusb_et_name(wusb_dev->ccm1_etd.bEncryptionType),
  149. wusb_dev->ccm1_etd.bEncryptionValue, result);
  150. return result;
  151. }
  152. /*
  153. * Set the GTK to be used by a device.
  154. *
  155. * The device must be authenticated.
  156. */
  157. static int wusb_dev_set_gtk(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  158. {
  159. struct usb_device *usb_dev = wusb_dev->usb_dev;
  160. return usb_control_msg(
  161. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  162. USB_REQ_SET_DESCRIPTOR,
  163. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  164. USB_DT_KEY << 8 | wusbhc->gtk_index, 0,
  165. &wusbhc->gtk.descr, wusbhc->gtk.descr.bLength,
  166. 1000);
  167. }
  168. /* FIXME: prototype for adding security */
  169. int wusb_dev_sec_add(struct wusbhc *wusbhc,
  170. struct usb_device *usb_dev, struct wusb_dev *wusb_dev)
  171. {
  172. int result, bytes, secd_size;
  173. struct device *dev = &usb_dev->dev;
  174. struct usb_security_descriptor *secd;
  175. const struct usb_encryption_descriptor *etd, *ccm1_etd = NULL;
  176. const void *itr, *top;
  177. char buf[64];
  178. secd = kmalloc(sizeof(*secd), GFP_KERNEL);
  179. if (secd == NULL) {
  180. result = -ENOMEM;
  181. goto out;
  182. }
  183. result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
  184. 0, secd, sizeof(*secd));
  185. if (result < sizeof(*secd)) {
  186. dev_err(dev, "Can't read security descriptor or "
  187. "not enough data: %d\n", result);
  188. goto out;
  189. }
  190. secd_size = le16_to_cpu(secd->wTotalLength);
  191. secd = krealloc(secd, secd_size, GFP_KERNEL);
  192. if (secd == NULL) {
  193. dev_err(dev, "Can't allocate space for security descriptors\n");
  194. goto out;
  195. }
  196. result = usb_get_descriptor(usb_dev, USB_DT_SECURITY,
  197. 0, secd, secd_size);
  198. if (result < secd_size) {
  199. dev_err(dev, "Can't read security descriptor or "
  200. "not enough data: %d\n", result);
  201. goto out;
  202. }
  203. bytes = 0;
  204. itr = &secd[1];
  205. top = (void *)secd + result;
  206. while (itr < top) {
  207. etd = itr;
  208. if (top - itr < sizeof(*etd)) {
  209. dev_err(dev, "BUG: bad device security descriptor; "
  210. "not enough data (%zu vs %zu bytes left)\n",
  211. top - itr, sizeof(*etd));
  212. break;
  213. }
  214. if (etd->bLength < sizeof(*etd)) {
  215. dev_err(dev, "BUG: bad device encryption descriptor; "
  216. "descriptor is too short "
  217. "(%u vs %zu needed)\n",
  218. etd->bLength, sizeof(*etd));
  219. break;
  220. }
  221. itr += etd->bLength;
  222. bytes += snprintf(buf + bytes, sizeof(buf) - bytes,
  223. "%s (0x%02x/%02x) ",
  224. wusb_et_name(etd->bEncryptionType),
  225. etd->bEncryptionValue, etd->bAuthKeyIndex);
  226. if (etd->bEncryptionType == USB_ENC_TYPE_CCM_1)
  227. ccm1_etd = etd;
  228. }
  229. /* This code only supports CCM1 as of now. */
  230. /* FIXME: user has to choose which sec mode to use?
  231. * In theory we want CCM */
  232. if (ccm1_etd == NULL) {
  233. dev_err(dev, "WUSB device doesn't support CCM1 encryption, "
  234. "can't use!\n");
  235. result = -EINVAL;
  236. goto out;
  237. }
  238. wusb_dev->ccm1_etd = *ccm1_etd;
  239. dev_dbg(dev, "supported encryption: %s; using %s (0x%02x/%02x)\n",
  240. buf, wusb_et_name(ccm1_etd->bEncryptionType),
  241. ccm1_etd->bEncryptionValue, ccm1_etd->bAuthKeyIndex);
  242. result = 0;
  243. out:
  244. kfree(secd);
  245. return result;
  246. }
  247. void wusb_dev_sec_rm(struct wusb_dev *wusb_dev)
  248. {
  249. /* Nothing so far */
  250. }
  251. /**
  252. * Update the address of an unauthenticated WUSB device
  253. *
  254. * Once we have successfully authenticated, we take it to addr0 state
  255. * and then to a normal address.
  256. *
  257. * Before the device's address (as known by it) was usb_dev->devnum |
  258. * 0x80 (unauthenticated address). With this we update it to usb_dev->devnum.
  259. */
  260. int wusb_dev_update_address(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev)
  261. {
  262. int result = -ENOMEM;
  263. struct usb_device *usb_dev = wusb_dev->usb_dev;
  264. struct device *dev = &usb_dev->dev;
  265. u8 new_address = wusb_dev->addr & 0x7F;
  266. /* Set address 0 */
  267. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  268. USB_REQ_SET_ADDRESS, 0,
  269. 0, 0, NULL, 0, 1000 /* FIXME: arbitrary */);
  270. if (result < 0) {
  271. dev_err(dev, "auth failed: can't set address 0: %d\n",
  272. result);
  273. goto error_addr0;
  274. }
  275. result = wusb_set_dev_addr(wusbhc, wusb_dev, 0);
  276. if (result < 0)
  277. goto error_addr0;
  278. usb_set_device_state(usb_dev, USB_STATE_DEFAULT);
  279. usb_ep0_reinit(usb_dev);
  280. /* Set new (authenticated) address. */
  281. result = usb_control_msg(usb_dev, usb_sndctrlpipe(usb_dev, 0),
  282. USB_REQ_SET_ADDRESS, 0,
  283. new_address, 0, NULL, 0,
  284. 1000 /* FIXME: arbitrary */);
  285. if (result < 0) {
  286. dev_err(dev, "auth failed: can't set address %u: %d\n",
  287. new_address, result);
  288. goto error_addr;
  289. }
  290. result = wusb_set_dev_addr(wusbhc, wusb_dev, new_address);
  291. if (result < 0)
  292. goto error_addr;
  293. usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
  294. usb_ep0_reinit(usb_dev);
  295. usb_dev->authenticated = 1;
  296. error_addr:
  297. error_addr0:
  298. return result;
  299. }
  300. /*
  301. *
  302. *
  303. */
  304. /* FIXME: split and cleanup */
  305. int wusb_dev_4way_handshake(struct wusbhc *wusbhc, struct wusb_dev *wusb_dev,
  306. struct wusb_ckhdid *ck)
  307. {
  308. int result = -ENOMEM;
  309. struct usb_device *usb_dev = wusb_dev->usb_dev;
  310. struct device *dev = &usb_dev->dev;
  311. u32 tkid;
  312. __le32 tkid_le;
  313. struct usb_handshake *hs;
  314. struct aes_ccm_nonce ccm_n;
  315. u8 mic[8];
  316. struct wusb_keydvt_in keydvt_in;
  317. struct wusb_keydvt_out keydvt_out;
  318. hs = kzalloc(3*sizeof(hs[0]), GFP_KERNEL);
  319. if (hs == NULL) {
  320. dev_err(dev, "can't allocate handshake data\n");
  321. goto error_kzalloc;
  322. }
  323. /* We need to turn encryption before beginning the 4way
  324. * hshake (WUSB1.0[.3.2.2]) */
  325. result = wusb_dev_set_encryption(usb_dev, 1);
  326. if (result < 0)
  327. goto error_dev_set_encryption;
  328. tkid = wusbhc_next_tkid(wusbhc, wusb_dev);
  329. tkid_le = cpu_to_le32(tkid);
  330. hs[0].bMessageNumber = 1;
  331. hs[0].bStatus = 0;
  332. memcpy(hs[0].tTKID, &tkid_le, sizeof(hs[0].tTKID));
  333. hs[0].bReserved = 0;
  334. memcpy(hs[0].CDID, &wusb_dev->cdid, sizeof(hs[0].CDID));
  335. get_random_bytes(&hs[0].nonce, sizeof(hs[0].nonce));
  336. memset(hs[0].MIC, 0, sizeof(hs[0].MIC)); /* Per WUSB1.0[T7-22] */
  337. result = usb_control_msg(
  338. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  339. USB_REQ_SET_HANDSHAKE,
  340. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  341. 1, 0, &hs[0], sizeof(hs[0]), 1000 /* FIXME: arbitrary */);
  342. if (result < 0) {
  343. dev_err(dev, "Handshake1: request failed: %d\n", result);
  344. goto error_hs1;
  345. }
  346. /* Handshake 2, from the device -- need to verify fields */
  347. result = usb_control_msg(
  348. usb_dev, usb_rcvctrlpipe(usb_dev, 0),
  349. USB_REQ_GET_HANDSHAKE,
  350. USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  351. 2, 0, &hs[1], sizeof(hs[1]), 1000 /* FIXME: arbitrary */);
  352. if (result < 0) {
  353. dev_err(dev, "Handshake2: request failed: %d\n", result);
  354. goto error_hs2;
  355. }
  356. result = -EINVAL;
  357. if (hs[1].bMessageNumber != 2) {
  358. dev_err(dev, "Handshake2 failed: bad message number %u\n",
  359. hs[1].bMessageNumber);
  360. goto error_hs2;
  361. }
  362. if (hs[1].bStatus != 0) {
  363. dev_err(dev, "Handshake2 failed: bad status %u\n",
  364. hs[1].bStatus);
  365. goto error_hs2;
  366. }
  367. if (memcmp(hs[0].tTKID, hs[1].tTKID, sizeof(hs[0].tTKID))) {
  368. dev_err(dev, "Handshake2 failed: TKID mismatch "
  369. "(#1 0x%02x%02x%02x vs #2 0x%02x%02x%02x)\n",
  370. hs[0].tTKID[0], hs[0].tTKID[1], hs[0].tTKID[2],
  371. hs[1].tTKID[0], hs[1].tTKID[1], hs[1].tTKID[2]);
  372. goto error_hs2;
  373. }
  374. if (memcmp(hs[0].CDID, hs[1].CDID, sizeof(hs[0].CDID))) {
  375. dev_err(dev, "Handshake2 failed: CDID mismatch\n");
  376. goto error_hs2;
  377. }
  378. /* Setup the CCM nonce */
  379. memset(&ccm_n.sfn, 0, sizeof(ccm_n.sfn)); /* Per WUSB1.0[6.5.2] */
  380. memcpy(ccm_n.tkid, &tkid_le, sizeof(ccm_n.tkid));
  381. ccm_n.src_addr = wusbhc->uwb_rc->uwb_dev.dev_addr;
  382. ccm_n.dest_addr.data[0] = wusb_dev->addr;
  383. ccm_n.dest_addr.data[1] = 0;
  384. /* Derive the KCK and PTK from CK, the CCM, H and D nonces */
  385. memcpy(keydvt_in.hnonce, hs[0].nonce, sizeof(keydvt_in.hnonce));
  386. memcpy(keydvt_in.dnonce, hs[1].nonce, sizeof(keydvt_in.dnonce));
  387. result = wusb_key_derive(&keydvt_out, ck->data, &ccm_n, &keydvt_in);
  388. if (result < 0) {
  389. dev_err(dev, "Handshake2 failed: cannot derive keys: %d\n",
  390. result);
  391. goto error_hs2;
  392. }
  393. /* Compute MIC and verify it */
  394. result = wusb_oob_mic(mic, keydvt_out.kck, &ccm_n, &hs[1]);
  395. if (result < 0) {
  396. dev_err(dev, "Handshake2 failed: cannot compute MIC: %d\n",
  397. result);
  398. goto error_hs2;
  399. }
  400. if (memcmp(hs[1].MIC, mic, sizeof(hs[1].MIC))) {
  401. dev_err(dev, "Handshake2 failed: MIC mismatch\n");
  402. goto error_hs2;
  403. }
  404. /* Send Handshake3 */
  405. hs[2].bMessageNumber = 3;
  406. hs[2].bStatus = 0;
  407. memcpy(hs[2].tTKID, &tkid_le, sizeof(hs[2].tTKID));
  408. hs[2].bReserved = 0;
  409. memcpy(hs[2].CDID, &wusb_dev->cdid, sizeof(hs[2].CDID));
  410. memcpy(hs[2].nonce, hs[0].nonce, sizeof(hs[2].nonce));
  411. result = wusb_oob_mic(hs[2].MIC, keydvt_out.kck, &ccm_n, &hs[2]);
  412. if (result < 0) {
  413. dev_err(dev, "Handshake3 failed: cannot compute MIC: %d\n",
  414. result);
  415. goto error_hs2;
  416. }
  417. result = usb_control_msg(
  418. usb_dev, usb_sndctrlpipe(usb_dev, 0),
  419. USB_REQ_SET_HANDSHAKE,
  420. USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
  421. 3, 0, &hs[2], sizeof(hs[2]), 1000 /* FIXME: arbitrary */);
  422. if (result < 0) {
  423. dev_err(dev, "Handshake3: request failed: %d\n", result);
  424. goto error_hs3;
  425. }
  426. result = wusbhc->set_ptk(wusbhc, wusb_dev->port_idx, tkid,
  427. keydvt_out.ptk, sizeof(keydvt_out.ptk));
  428. if (result < 0)
  429. goto error_wusbhc_set_ptk;
  430. result = wusb_dev_set_gtk(wusbhc, wusb_dev);
  431. if (result < 0) {
  432. dev_err(dev, "Set GTK for device: request failed: %d\n",
  433. result);
  434. goto error_wusbhc_set_gtk;
  435. }
  436. /* Update the device's address from unauth to auth */
  437. if (usb_dev->authenticated == 0) {
  438. result = wusb_dev_update_address(wusbhc, wusb_dev);
  439. if (result < 0)
  440. goto error_dev_update_address;
  441. }
  442. result = 0;
  443. dev_info(dev, "device authenticated\n");
  444. error_dev_update_address:
  445. error_wusbhc_set_gtk:
  446. error_wusbhc_set_ptk:
  447. error_hs3:
  448. error_hs2:
  449. error_hs1:
  450. memset(hs, 0, 3*sizeof(hs[0]));
  451. memset(&keydvt_out, 0, sizeof(keydvt_out));
  452. memset(&keydvt_in, 0, sizeof(keydvt_in));
  453. memset(&ccm_n, 0, sizeof(ccm_n));
  454. memset(mic, 0, sizeof(mic));
  455. if (result < 0)
  456. wusb_dev_set_encryption(usb_dev, 0);
  457. error_dev_set_encryption:
  458. kfree(hs);
  459. error_kzalloc:
  460. return result;
  461. }
  462. /*
  463. * Once all connected and authenticated devices have received the new
  464. * GTK, switch the host to using it.
  465. */
  466. static void wusbhc_gtk_rekey_done_work(struct work_struct *work)
  467. {
  468. struct wusbhc *wusbhc = container_of(work, struct wusbhc, gtk_rekey_done_work);
  469. size_t key_size = sizeof(wusbhc->gtk.data);
  470. mutex_lock(&wusbhc->mutex);
  471. if (--wusbhc->pending_set_gtks == 0)
  472. wusbhc->set_gtk(wusbhc, wusbhc->gtk_tkid, &wusbhc->gtk.descr.bKeyData, key_size);
  473. mutex_unlock(&wusbhc->mutex);
  474. }
  475. static void wusbhc_set_gtk_callback(struct urb *urb)
  476. {
  477. struct wusbhc *wusbhc = urb->context;
  478. queue_work(wusbd, &wusbhc->gtk_rekey_done_work);
  479. }
  480. /**
  481. * wusbhc_gtk_rekey - generate and distribute a new GTK
  482. * @wusbhc: the WUSB host controller
  483. *
  484. * Generate a new GTK and distribute it to all connected and
  485. * authenticated devices. When all devices have the new GTK, the host
  486. * starts using it.
  487. *
  488. * This must be called after every device disconnect (see [WUSB]
  489. * section 6.2.11.2).
  490. */
  491. void wusbhc_gtk_rekey(struct wusbhc *wusbhc)
  492. {
  493. static const size_t key_size = sizeof(wusbhc->gtk.data);
  494. int p;
  495. wusbhc_generate_gtk(wusbhc);
  496. for (p = 0; p < wusbhc->ports_max; p++) {
  497. struct wusb_dev *wusb_dev;
  498. wusb_dev = wusbhc->port[p].wusb_dev;
  499. if (!wusb_dev || !wusb_dev->usb_dev || !wusb_dev->usb_dev->authenticated)
  500. continue;
  501. usb_fill_control_urb(wusb_dev->set_gtk_urb, wusb_dev->usb_dev,
  502. usb_sndctrlpipe(wusb_dev->usb_dev, 0),
  503. (void *)wusb_dev->set_gtk_req,
  504. &wusbhc->gtk.descr, wusbhc->gtk.descr.bLength,
  505. wusbhc_set_gtk_callback, wusbhc);
  506. if (usb_submit_urb(wusb_dev->set_gtk_urb, GFP_KERNEL) == 0)
  507. wusbhc->pending_set_gtks++;
  508. }
  509. if (wusbhc->pending_set_gtks == 0)
  510. wusbhc->set_gtk(wusbhc, wusbhc->gtk_tkid, &wusbhc->gtk.descr.bKeyData, key_size);
  511. }