zcrypt_pcixcc.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. /*
  2. * zcrypt 2.1.0
  3. *
  4. * Copyright IBM Corp. 2001, 2012
  5. * Author(s): Robert Burroughs
  6. * Eric Rossman (edrossma@us.ibm.com)
  7. *
  8. * Hotplug & misc device support: Jochen Roehrig (roehrig@de.ibm.com)
  9. * Major cleanup & driver split: Martin Schwidefsky <schwidefsky@de.ibm.com>
  10. * Ralph Wuerthner <rwuerthn@de.ibm.com>
  11. * MSGTYPE restruct: Holger Dengler <hd@linux.vnet.ibm.com>
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2, or (at your option)
  16. * any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, write to the Free Software
  25. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  26. */
  27. #include <linux/module.h>
  28. #include <linux/init.h>
  29. #include <linux/err.h>
  30. #include <linux/delay.h>
  31. #include <linux/slab.h>
  32. #include <linux/atomic.h>
  33. #include <asm/uaccess.h>
  34. #include "ap_bus.h"
  35. #include "zcrypt_api.h"
  36. #include "zcrypt_error.h"
  37. #include "zcrypt_msgtype6.h"
  38. #include "zcrypt_pcixcc.h"
  39. #include "zcrypt_cca_key.h"
  40. #define PCIXCC_MIN_MOD_SIZE 16 /* 128 bits */
  41. #define PCIXCC_MIN_MOD_SIZE_OLD 64 /* 512 bits */
  42. #define PCIXCC_MAX_MOD_SIZE 256 /* 2048 bits */
  43. #define CEX3C_MIN_MOD_SIZE PCIXCC_MIN_MOD_SIZE
  44. #define CEX3C_MAX_MOD_SIZE 512 /* 4096 bits */
  45. #define PCIXCC_MCL2_SPEED_RATING 7870
  46. #define PCIXCC_MCL3_SPEED_RATING 7870
  47. #define CEX2C_SPEED_RATING 7000
  48. #define CEX3C_SPEED_RATING 6500
  49. #define PCIXCC_MAX_ICA_MESSAGE_SIZE 0x77c /* max size type6 v2 crt message */
  50. #define PCIXCC_MAX_ICA_RESPONSE_SIZE 0x77c /* max size type86 v2 reply */
  51. #define PCIXCC_MAX_XCRB_MESSAGE_SIZE (12*1024)
  52. #define PCIXCC_CLEANUP_TIME (15*HZ)
  53. #define CEIL4(x) ((((x)+3)/4)*4)
  54. struct response_type {
  55. struct completion work;
  56. int type;
  57. };
  58. #define PCIXCC_RESPONSE_TYPE_ICA 0
  59. #define PCIXCC_RESPONSE_TYPE_XCRB 1
  60. static struct ap_device_id zcrypt_pcixcc_ids[] = {
  61. { AP_DEVICE(AP_DEVICE_TYPE_PCIXCC) },
  62. { AP_DEVICE(AP_DEVICE_TYPE_CEX2C) },
  63. { AP_DEVICE(AP_DEVICE_TYPE_CEX3C) },
  64. { /* end of list */ },
  65. };
  66. MODULE_DEVICE_TABLE(ap, zcrypt_pcixcc_ids);
  67. MODULE_AUTHOR("IBM Corporation");
  68. MODULE_DESCRIPTION("PCIXCC Cryptographic Coprocessor device driver, " \
  69. "Copyright IBM Corp. 2001, 2012");
  70. MODULE_LICENSE("GPL");
  71. static int zcrypt_pcixcc_probe(struct ap_device *ap_dev);
  72. static void zcrypt_pcixcc_remove(struct ap_device *ap_dev);
  73. static struct ap_driver zcrypt_pcixcc_driver = {
  74. .probe = zcrypt_pcixcc_probe,
  75. .remove = zcrypt_pcixcc_remove,
  76. .ids = zcrypt_pcixcc_ids,
  77. .request_timeout = PCIXCC_CLEANUP_TIME,
  78. };
  79. /**
  80. * Micro-code detection function. Its sends a message to a pcixcc card
  81. * to find out the microcode level.
  82. * @ap_dev: pointer to the AP device.
  83. */
  84. static int zcrypt_pcixcc_mcl(struct ap_device *ap_dev)
  85. {
  86. static unsigned char msg[] = {
  87. 0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,
  88. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  89. 0x00,0x00,0x00,0x58,0x00,0x00,0x00,0x00,
  90. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  91. 0x43,0x41,0x00,0x00,0x00,0x00,0x00,0x00,
  92. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  93. 0x00,0x00,0x00,0x00,0x50,0x4B,0x00,0x00,
  94. 0x00,0x00,0x01,0xC4,0x00,0x00,0x00,0x00,
  95. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  96. 0x00,0x00,0x07,0x24,0x00,0x00,0x00,0x00,
  97. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  98. 0x00,0xDC,0x02,0x00,0x00,0x00,0x54,0x32,
  99. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xE8,
  100. 0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x24,
  101. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  102. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  103. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  104. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  105. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  106. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  107. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  108. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  109. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  110. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  111. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  112. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  113. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  114. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  115. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  116. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  117. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  118. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  119. 0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,
  120. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  121. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  122. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  123. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  124. 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
  125. 0x00,0x00,0x00,0x00,0x50,0x4B,0x00,0x0A,
  126. 0x4D,0x52,0x50,0x20,0x20,0x20,0x20,0x20,
  127. 0x00,0x42,0x00,0x01,0x02,0x03,0x04,0x05,
  128. 0x06,0x07,0x08,0x09,0x0A,0x0B,0x0C,0x0D,
  129. 0x0E,0x0F,0x00,0x11,0x22,0x33,0x44,0x55,
  130. 0x66,0x77,0x88,0x99,0xAA,0xBB,0xCC,0xDD,
  131. 0xEE,0xFF,0xFF,0xEE,0xDD,0xCC,0xBB,0xAA,
  132. 0x99,0x88,0x77,0x66,0x55,0x44,0x33,0x22,
  133. 0x11,0x00,0x01,0x23,0x45,0x67,0x89,0xAB,
  134. 0xCD,0xEF,0xFE,0xDC,0xBA,0x98,0x76,0x54,
  135. 0x32,0x10,0x00,0x9A,0x00,0x98,0x00,0x00,
  136. 0x1E,0x00,0x00,0x94,0x00,0x00,0x00,0x00,
  137. 0x04,0x00,0x00,0x8C,0x00,0x00,0x00,0x40,
  138. 0x02,0x00,0x00,0x40,0xBA,0xE8,0x23,0x3C,
  139. 0x75,0xF3,0x91,0x61,0xD6,0x73,0x39,0xCF,
  140. 0x7B,0x6D,0x8E,0x61,0x97,0x63,0x9E,0xD9,
  141. 0x60,0x55,0xD6,0xC7,0xEF,0xF8,0x1E,0x63,
  142. 0x95,0x17,0xCC,0x28,0x45,0x60,0x11,0xC5,
  143. 0xC4,0x4E,0x66,0xC6,0xE6,0xC3,0xDE,0x8A,
  144. 0x19,0x30,0xCF,0x0E,0xD7,0xAA,0xDB,0x01,
  145. 0xD8,0x00,0xBB,0x8F,0x39,0x9F,0x64,0x28,
  146. 0xF5,0x7A,0x77,0x49,0xCC,0x6B,0xA3,0x91,
  147. 0x97,0x70,0xE7,0x60,0x1E,0x39,0xE1,0xE5,
  148. 0x33,0xE1,0x15,0x63,0x69,0x08,0x80,0x4C,
  149. 0x67,0xC4,0x41,0x8F,0x48,0xDF,0x26,0x98,
  150. 0xF1,0xD5,0x8D,0x88,0xD9,0x6A,0xA4,0x96,
  151. 0xC5,0x84,0xD9,0x30,0x49,0x67,0x7D,0x19,
  152. 0xB1,0xB3,0x45,0x4D,0xB2,0x53,0x9A,0x47,
  153. 0x3C,0x7C,0x55,0xBF,0xCC,0x85,0x00,0x36,
  154. 0xF1,0x3D,0x93,0x53
  155. };
  156. unsigned long long psmid;
  157. struct CPRBX *cprbx;
  158. char *reply;
  159. int rc, i;
  160. reply = (void *) get_zeroed_page(GFP_KERNEL);
  161. if (!reply)
  162. return -ENOMEM;
  163. rc = ap_send(ap_dev->qid, 0x0102030405060708ULL, msg, sizeof(msg));
  164. if (rc)
  165. goto out_free;
  166. /* Wait for the test message to complete. */
  167. for (i = 0; i < 6; i++) {
  168. msleep(300);
  169. rc = ap_recv(ap_dev->qid, &psmid, reply, 4096);
  170. if (rc == 0 && psmid == 0x0102030405060708ULL)
  171. break;
  172. }
  173. if (i >= 6) {
  174. /* Got no answer. */
  175. rc = -ENODEV;
  176. goto out_free;
  177. }
  178. cprbx = (struct CPRBX *) (reply + 48);
  179. if (cprbx->ccp_rtcode == 8 && cprbx->ccp_rscode == 33)
  180. rc = ZCRYPT_PCIXCC_MCL2;
  181. else
  182. rc = ZCRYPT_PCIXCC_MCL3;
  183. out_free:
  184. free_page((unsigned long) reply);
  185. return rc;
  186. }
  187. /**
  188. * Large random number detection function. Its sends a message to a pcixcc
  189. * card to find out if large random numbers are supported.
  190. * @ap_dev: pointer to the AP device.
  191. *
  192. * Returns 1 if large random numbers are supported, 0 if not and < 0 on error.
  193. */
  194. static int zcrypt_pcixcc_rng_supported(struct ap_device *ap_dev)
  195. {
  196. struct ap_message ap_msg;
  197. unsigned long long psmid;
  198. struct {
  199. struct type86_hdr hdr;
  200. struct type86_fmt2_ext fmt2;
  201. struct CPRBX cprbx;
  202. } __attribute__((packed)) *reply;
  203. int rc, i;
  204. ap_init_message(&ap_msg);
  205. ap_msg.message = (void *) get_zeroed_page(GFP_KERNEL);
  206. if (!ap_msg.message)
  207. return -ENOMEM;
  208. rng_type6CPRB_msgX(ap_dev, &ap_msg, 4);
  209. rc = ap_send(ap_dev->qid, 0x0102030405060708ULL, ap_msg.message,
  210. ap_msg.length);
  211. if (rc)
  212. goto out_free;
  213. /* Wait for the test message to complete. */
  214. for (i = 0; i < 2 * HZ; i++) {
  215. msleep(1000 / HZ);
  216. rc = ap_recv(ap_dev->qid, &psmid, ap_msg.message, 4096);
  217. if (rc == 0 && psmid == 0x0102030405060708ULL)
  218. break;
  219. }
  220. if (i >= 2 * HZ) {
  221. /* Got no answer. */
  222. rc = -ENODEV;
  223. goto out_free;
  224. }
  225. reply = ap_msg.message;
  226. if (reply->cprbx.ccp_rtcode == 0 && reply->cprbx.ccp_rscode == 0)
  227. rc = 1;
  228. else
  229. rc = 0;
  230. out_free:
  231. free_page((unsigned long) ap_msg.message);
  232. return rc;
  233. }
  234. /**
  235. * Probe function for PCIXCC/CEX2C cards. It always accepts the AP device
  236. * since the bus_match already checked the hardware type. The PCIXCC
  237. * cards come in two flavours: micro code level 2 and micro code level 3.
  238. * This is checked by sending a test message to the device.
  239. * @ap_dev: pointer to the AP device.
  240. */
  241. static int zcrypt_pcixcc_probe(struct ap_device *ap_dev)
  242. {
  243. struct zcrypt_device *zdev;
  244. int rc = 0;
  245. zdev = zcrypt_device_alloc(PCIXCC_MAX_XCRB_MESSAGE_SIZE);
  246. if (!zdev)
  247. return -ENOMEM;
  248. zdev->ap_dev = ap_dev;
  249. zdev->online = 1;
  250. switch (ap_dev->device_type) {
  251. case AP_DEVICE_TYPE_PCIXCC:
  252. rc = zcrypt_pcixcc_mcl(ap_dev);
  253. if (rc < 0) {
  254. zcrypt_device_free(zdev);
  255. return rc;
  256. }
  257. zdev->user_space_type = rc;
  258. if (rc == ZCRYPT_PCIXCC_MCL2) {
  259. zdev->type_string = "PCIXCC_MCL2";
  260. zdev->speed_rating = PCIXCC_MCL2_SPEED_RATING;
  261. zdev->min_mod_size = PCIXCC_MIN_MOD_SIZE_OLD;
  262. zdev->max_mod_size = PCIXCC_MAX_MOD_SIZE;
  263. zdev->max_exp_bit_length = PCIXCC_MAX_MOD_SIZE;
  264. } else {
  265. zdev->type_string = "PCIXCC_MCL3";
  266. zdev->speed_rating = PCIXCC_MCL3_SPEED_RATING;
  267. zdev->min_mod_size = PCIXCC_MIN_MOD_SIZE;
  268. zdev->max_mod_size = PCIXCC_MAX_MOD_SIZE;
  269. zdev->max_exp_bit_length = PCIXCC_MAX_MOD_SIZE;
  270. }
  271. break;
  272. case AP_DEVICE_TYPE_CEX2C:
  273. zdev->user_space_type = ZCRYPT_CEX2C;
  274. zdev->type_string = "CEX2C";
  275. zdev->speed_rating = CEX2C_SPEED_RATING;
  276. zdev->min_mod_size = PCIXCC_MIN_MOD_SIZE;
  277. zdev->max_mod_size = PCIXCC_MAX_MOD_SIZE;
  278. zdev->max_exp_bit_length = PCIXCC_MAX_MOD_SIZE;
  279. break;
  280. case AP_DEVICE_TYPE_CEX3C:
  281. zdev->user_space_type = ZCRYPT_CEX3C;
  282. zdev->type_string = "CEX3C";
  283. zdev->speed_rating = CEX3C_SPEED_RATING;
  284. zdev->min_mod_size = CEX3C_MIN_MOD_SIZE;
  285. zdev->max_mod_size = CEX3C_MAX_MOD_SIZE;
  286. zdev->max_exp_bit_length = CEX3C_MAX_MOD_SIZE;
  287. break;
  288. default:
  289. goto out_free;
  290. }
  291. rc = zcrypt_pcixcc_rng_supported(ap_dev);
  292. if (rc < 0) {
  293. zcrypt_device_free(zdev);
  294. return rc;
  295. }
  296. if (rc)
  297. zdev->ops = zcrypt_msgtype_request(MSGTYPE06_NAME,
  298. MSGTYPE06_VARIANT_DEFAULT);
  299. else
  300. zdev->ops = zcrypt_msgtype_request(MSGTYPE06_NAME,
  301. MSGTYPE06_VARIANT_NORNG);
  302. ap_dev->reply = &zdev->reply;
  303. ap_dev->private = zdev;
  304. rc = zcrypt_device_register(zdev);
  305. if (rc)
  306. goto out_free;
  307. return 0;
  308. out_free:
  309. ap_dev->private = NULL;
  310. zcrypt_msgtype_release(zdev->ops);
  311. zcrypt_device_free(zdev);
  312. return rc;
  313. }
  314. /**
  315. * This is called to remove the extended PCIXCC/CEX2C driver information
  316. * if an AP device is removed.
  317. */
  318. static void zcrypt_pcixcc_remove(struct ap_device *ap_dev)
  319. {
  320. struct zcrypt_device *zdev = ap_dev->private;
  321. struct zcrypt_ops *zops = zdev->ops;
  322. zcrypt_device_unregister(zdev);
  323. zcrypt_msgtype_release(zops);
  324. }
  325. int __init zcrypt_pcixcc_init(void)
  326. {
  327. return ap_driver_register(&zcrypt_pcixcc_driver, THIS_MODULE, "pcixcc");
  328. }
  329. void zcrypt_pcixcc_exit(void)
  330. {
  331. ap_driver_unregister(&zcrypt_pcixcc_driver);
  332. }
  333. module_init(zcrypt_pcixcc_init);
  334. module_exit(zcrypt_pcixcc_exit);