tlsv1_client.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  1. /*
  2. * TLSv1 client (RFC 2246)
  3. * Copyright (c) 2006-2007, Jouni Malinen <j@w1.fi>
  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 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "crypto/sha1.h"
  17. #include "crypto/tls.h"
  18. #include "tlsv1_common.h"
  19. #include "tlsv1_record.h"
  20. #include "tlsv1_client.h"
  21. #include "tlsv1_client_i.h"
  22. /* TODO:
  23. * Support for a message fragmented across several records (RFC 2246, 6.2.1)
  24. */
  25. void tls_alert(struct tlsv1_client *conn, u8 level, u8 description)
  26. {
  27. conn->alert_level = level;
  28. conn->alert_description = description;
  29. }
  30. void tlsv1_client_free_dh(struct tlsv1_client *conn)
  31. {
  32. os_free(conn->dh_p);
  33. os_free(conn->dh_g);
  34. os_free(conn->dh_ys);
  35. conn->dh_p = conn->dh_g = conn->dh_ys = NULL;
  36. }
  37. int tls_derive_pre_master_secret(u8 *pre_master_secret)
  38. {
  39. WPA_PUT_BE16(pre_master_secret, TLS_VERSION);
  40. if (os_get_random(pre_master_secret + 2,
  41. TLS_PRE_MASTER_SECRET_LEN - 2))
  42. return -1;
  43. return 0;
  44. }
  45. int tls_derive_keys(struct tlsv1_client *conn,
  46. const u8 *pre_master_secret, size_t pre_master_secret_len)
  47. {
  48. u8 seed[2 * TLS_RANDOM_LEN];
  49. u8 key_block[TLS_MAX_KEY_BLOCK_LEN];
  50. u8 *pos;
  51. size_t key_block_len;
  52. if (pre_master_secret) {
  53. wpa_hexdump_key(MSG_MSGDUMP, "TLSv1: pre_master_secret",
  54. pre_master_secret, pre_master_secret_len);
  55. os_memcpy(seed, conn->client_random, TLS_RANDOM_LEN);
  56. os_memcpy(seed + TLS_RANDOM_LEN, conn->server_random,
  57. TLS_RANDOM_LEN);
  58. if (tls_prf(pre_master_secret, pre_master_secret_len,
  59. "master secret", seed, 2 * TLS_RANDOM_LEN,
  60. conn->master_secret, TLS_MASTER_SECRET_LEN)) {
  61. wpa_printf(MSG_DEBUG, "TLSv1: Failed to derive "
  62. "master_secret");
  63. return -1;
  64. }
  65. wpa_hexdump_key(MSG_MSGDUMP, "TLSv1: master_secret",
  66. conn->master_secret, TLS_MASTER_SECRET_LEN);
  67. }
  68. os_memcpy(seed, conn->server_random, TLS_RANDOM_LEN);
  69. os_memcpy(seed + TLS_RANDOM_LEN, conn->client_random, TLS_RANDOM_LEN);
  70. key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len +
  71. conn->rl.iv_size);
  72. if (tls_prf(conn->master_secret, TLS_MASTER_SECRET_LEN,
  73. "key expansion", seed, 2 * TLS_RANDOM_LEN,
  74. key_block, key_block_len)) {
  75. wpa_printf(MSG_DEBUG, "TLSv1: Failed to derive key_block");
  76. return -1;
  77. }
  78. wpa_hexdump_key(MSG_MSGDUMP, "TLSv1: key_block",
  79. key_block, key_block_len);
  80. pos = key_block;
  81. /* client_write_MAC_secret */
  82. os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
  83. pos += conn->rl.hash_size;
  84. /* server_write_MAC_secret */
  85. os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size);
  86. pos += conn->rl.hash_size;
  87. /* client_write_key */
  88. os_memcpy(conn->rl.write_key, pos, conn->rl.key_material_len);
  89. pos += conn->rl.key_material_len;
  90. /* server_write_key */
  91. os_memcpy(conn->rl.read_key, pos, conn->rl.key_material_len);
  92. pos += conn->rl.key_material_len;
  93. /* client_write_IV */
  94. os_memcpy(conn->rl.write_iv, pos, conn->rl.iv_size);
  95. pos += conn->rl.iv_size;
  96. /* server_write_IV */
  97. os_memcpy(conn->rl.read_iv, pos, conn->rl.iv_size);
  98. pos += conn->rl.iv_size;
  99. return 0;
  100. }
  101. /**
  102. * tlsv1_client_handshake - Process TLS handshake
  103. * @conn: TLSv1 client connection data from tlsv1_client_init()
  104. * @in_data: Input data from TLS peer
  105. * @in_len: Input data length
  106. * @out_len: Length of the output buffer.
  107. * @appl_data: Pointer to application data pointer, or %NULL if dropped
  108. * @appl_data_len: Pointer to variable that is set to appl_data length
  109. * Returns: Pointer to output data, %NULL on failure
  110. */
  111. u8 * tlsv1_client_handshake(struct tlsv1_client *conn,
  112. const u8 *in_data, size_t in_len,
  113. size_t *out_len, u8 **appl_data,
  114. size_t *appl_data_len)
  115. {
  116. const u8 *pos, *end;
  117. u8 *msg = NULL, *in_msg, *in_pos, *in_end, alert, ct;
  118. size_t in_msg_len;
  119. int no_appl_data;
  120. if (conn->state == CLIENT_HELLO) {
  121. if (in_len)
  122. return NULL;
  123. return tls_send_client_hello(conn, out_len);
  124. }
  125. if (in_data == NULL || in_len == 0)
  126. return NULL;
  127. pos = in_data;
  128. end = in_data + in_len;
  129. in_msg = os_malloc(in_len);
  130. if (in_msg == NULL)
  131. return NULL;
  132. /* Each received packet may include multiple records */
  133. while (pos < end) {
  134. in_msg_len = in_len;
  135. if (tlsv1_record_receive(&conn->rl, pos, end - pos,
  136. in_msg, &in_msg_len, &alert)) {
  137. wpa_printf(MSG_DEBUG, "TLSv1: Processing received "
  138. "record failed");
  139. tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
  140. goto failed;
  141. }
  142. ct = pos[0];
  143. in_pos = in_msg;
  144. in_end = in_msg + in_msg_len;
  145. /* Each received record may include multiple messages of the
  146. * same ContentType. */
  147. while (in_pos < in_end) {
  148. in_msg_len = in_end - in_pos;
  149. if (tlsv1_client_process_handshake(conn, ct, in_pos,
  150. &in_msg_len,
  151. appl_data,
  152. appl_data_len) < 0)
  153. goto failed;
  154. in_pos += in_msg_len;
  155. }
  156. pos += TLS_RECORD_HEADER_LEN + WPA_GET_BE16(pos + 3);
  157. }
  158. os_free(in_msg);
  159. in_msg = NULL;
  160. no_appl_data = appl_data == NULL || *appl_data == NULL;
  161. msg = tlsv1_client_handshake_write(conn, out_len, no_appl_data);
  162. failed:
  163. os_free(in_msg);
  164. if (conn->alert_level) {
  165. conn->state = FAILED;
  166. os_free(msg);
  167. msg = tlsv1_client_send_alert(conn, conn->alert_level,
  168. conn->alert_description,
  169. out_len);
  170. } else if (msg == NULL) {
  171. msg = os_zalloc(1);
  172. *out_len = 0;
  173. }
  174. return msg;
  175. }
  176. /**
  177. * tlsv1_client_encrypt - Encrypt data into TLS tunnel
  178. * @conn: TLSv1 client connection data from tlsv1_client_init()
  179. * @in_data: Pointer to plaintext data to be encrypted
  180. * @in_len: Input buffer length
  181. * @out_data: Pointer to output buffer (encrypted TLS data)
  182. * @out_len: Maximum out_data length
  183. * Returns: Number of bytes written to out_data, -1 on failure
  184. *
  185. * This function is used after TLS handshake has been completed successfully to
  186. * send data in the encrypted tunnel.
  187. */
  188. int tlsv1_client_encrypt(struct tlsv1_client *conn,
  189. const u8 *in_data, size_t in_len,
  190. u8 *out_data, size_t out_len)
  191. {
  192. size_t rlen;
  193. wpa_hexdump_key(MSG_MSGDUMP, "TLSv1: Plaintext AppData",
  194. in_data, in_len);
  195. os_memcpy(out_data + TLS_RECORD_HEADER_LEN, in_data, in_len);
  196. if (tlsv1_record_send(&conn->rl, TLS_CONTENT_TYPE_APPLICATION_DATA,
  197. out_data, out_len, in_len, &rlen) < 0) {
  198. wpa_printf(MSG_DEBUG, "TLSv1: Failed to create a record");
  199. tls_alert(conn, TLS_ALERT_LEVEL_FATAL,
  200. TLS_ALERT_INTERNAL_ERROR);
  201. return -1;
  202. }
  203. return rlen;
  204. }
  205. /**
  206. * tlsv1_client_decrypt - Decrypt data from TLS tunnel
  207. * @conn: TLSv1 client connection data from tlsv1_client_init()
  208. * @in_data: Pointer to input buffer (encrypted TLS data)
  209. * @in_len: Input buffer length
  210. * @out_data: Pointer to output buffer (decrypted data from TLS tunnel)
  211. * @out_len: Maximum out_data length
  212. * Returns: Number of bytes written to out_data, -1 on failure
  213. *
  214. * This function is used after TLS handshake has been completed successfully to
  215. * receive data from the encrypted tunnel.
  216. */
  217. int tlsv1_client_decrypt(struct tlsv1_client *conn,
  218. const u8 *in_data, size_t in_len,
  219. u8 *out_data, size_t out_len)
  220. {
  221. const u8 *in_end, *pos;
  222. int res;
  223. u8 alert, *out_end, *out_pos;
  224. size_t olen;
  225. pos = in_data;
  226. in_end = in_data + in_len;
  227. out_pos = out_data;
  228. out_end = out_data + out_len;
  229. while (pos < in_end) {
  230. if (pos[0] != TLS_CONTENT_TYPE_APPLICATION_DATA) {
  231. wpa_printf(MSG_DEBUG, "TLSv1: Unexpected content type "
  232. "0x%x", pos[0]);
  233. tls_alert(conn, TLS_ALERT_LEVEL_FATAL,
  234. TLS_ALERT_UNEXPECTED_MESSAGE);
  235. return -1;
  236. }
  237. olen = out_end - out_pos;
  238. res = tlsv1_record_receive(&conn->rl, pos, in_end - pos,
  239. out_pos, &olen, &alert);
  240. if (res < 0) {
  241. wpa_printf(MSG_DEBUG, "TLSv1: Record layer processing "
  242. "failed");
  243. tls_alert(conn, TLS_ALERT_LEVEL_FATAL, alert);
  244. return -1;
  245. }
  246. out_pos += olen;
  247. if (out_pos > out_end) {
  248. wpa_printf(MSG_DEBUG, "TLSv1: Buffer not large enough "
  249. "for processing the received record");
  250. tls_alert(conn, TLS_ALERT_LEVEL_FATAL,
  251. TLS_ALERT_INTERNAL_ERROR);
  252. return -1;
  253. }
  254. pos += TLS_RECORD_HEADER_LEN + WPA_GET_BE16(pos + 3);
  255. }
  256. return out_pos - out_data;
  257. }
  258. /**
  259. * tlsv1_client_global_init - Initialize TLSv1 client
  260. * Returns: 0 on success, -1 on failure
  261. *
  262. * This function must be called before using any other TLSv1 client functions.
  263. */
  264. int tlsv1_client_global_init(void)
  265. {
  266. return crypto_global_init();
  267. }
  268. /**
  269. * tlsv1_client_global_deinit - Deinitialize TLSv1 client
  270. *
  271. * This function can be used to deinitialize the TLSv1 client that was
  272. * initialized by calling tlsv1_client_global_init(). No TLSv1 client functions
  273. * can be called after this before calling tlsv1_client_global_init() again.
  274. */
  275. void tlsv1_client_global_deinit(void)
  276. {
  277. crypto_global_deinit();
  278. }
  279. /**
  280. * tlsv1_client_init - Initialize TLSv1 client connection
  281. * Returns: Pointer to TLSv1 client connection data or %NULL on failure
  282. */
  283. struct tlsv1_client * tlsv1_client_init(void)
  284. {
  285. struct tlsv1_client *conn;
  286. size_t count;
  287. u16 *suites;
  288. conn = os_zalloc(sizeof(*conn));
  289. if (conn == NULL)
  290. return NULL;
  291. conn->state = CLIENT_HELLO;
  292. if (tls_verify_hash_init(&conn->verify) < 0) {
  293. wpa_printf(MSG_DEBUG, "TLSv1: Failed to initialize verify "
  294. "hash");
  295. os_free(conn);
  296. return NULL;
  297. }
  298. count = 0;
  299. suites = conn->cipher_suites;
  300. #ifndef CONFIG_CRYPTO_INTERNAL
  301. suites[count++] = TLS_RSA_WITH_AES_256_CBC_SHA;
  302. #endif /* CONFIG_CRYPTO_INTERNAL */
  303. suites[count++] = TLS_RSA_WITH_AES_128_CBC_SHA;
  304. suites[count++] = TLS_RSA_WITH_3DES_EDE_CBC_SHA;
  305. suites[count++] = TLS_RSA_WITH_RC4_128_SHA;
  306. suites[count++] = TLS_RSA_WITH_RC4_128_MD5;
  307. conn->num_cipher_suites = count;
  308. return conn;
  309. }
  310. /**
  311. * tlsv1_client_deinit - Deinitialize TLSv1 client connection
  312. * @conn: TLSv1 client connection data from tlsv1_client_init()
  313. */
  314. void tlsv1_client_deinit(struct tlsv1_client *conn)
  315. {
  316. crypto_public_key_free(conn->server_rsa_key);
  317. tlsv1_record_set_cipher_suite(&conn->rl, TLS_NULL_WITH_NULL_NULL);
  318. tlsv1_record_change_write_cipher(&conn->rl);
  319. tlsv1_record_change_read_cipher(&conn->rl);
  320. tls_verify_hash_free(&conn->verify);
  321. os_free(conn->client_hello_ext);
  322. tlsv1_client_free_dh(conn);
  323. tlsv1_cred_free(conn->cred);
  324. os_free(conn);
  325. }
  326. /**
  327. * tlsv1_client_established - Check whether connection has been established
  328. * @conn: TLSv1 client connection data from tlsv1_client_init()
  329. * Returns: 1 if connection is established, 0 if not
  330. */
  331. int tlsv1_client_established(struct tlsv1_client *conn)
  332. {
  333. return conn->state == ESTABLISHED;
  334. }
  335. /**
  336. * tlsv1_client_prf - Use TLS-PRF to derive keying material
  337. * @conn: TLSv1 client connection data from tlsv1_client_init()
  338. * @label: Label (e.g., description of the key) for PRF
  339. * @server_random_first: seed is 0 = client_random|server_random,
  340. * 1 = server_random|client_random
  341. * @out: Buffer for output data from TLS-PRF
  342. * @out_len: Length of the output buffer
  343. * Returns: 0 on success, -1 on failure
  344. */
  345. int tlsv1_client_prf(struct tlsv1_client *conn, const char *label,
  346. int server_random_first, u8 *out, size_t out_len)
  347. {
  348. u8 seed[2 * TLS_RANDOM_LEN];
  349. if (conn->state != ESTABLISHED)
  350. return -1;
  351. if (server_random_first) {
  352. os_memcpy(seed, conn->server_random, TLS_RANDOM_LEN);
  353. os_memcpy(seed + TLS_RANDOM_LEN, conn->client_random,
  354. TLS_RANDOM_LEN);
  355. } else {
  356. os_memcpy(seed, conn->client_random, TLS_RANDOM_LEN);
  357. os_memcpy(seed + TLS_RANDOM_LEN, conn->server_random,
  358. TLS_RANDOM_LEN);
  359. }
  360. return tls_prf(conn->master_secret, TLS_MASTER_SECRET_LEN,
  361. label, seed, 2 * TLS_RANDOM_LEN, out, out_len);
  362. }
  363. /**
  364. * tlsv1_client_get_cipher - Get current cipher name
  365. * @conn: TLSv1 client connection data from tlsv1_client_init()
  366. * @buf: Buffer for the cipher name
  367. * @buflen: buf size
  368. * Returns: 0 on success, -1 on failure
  369. *
  370. * Get the name of the currently used cipher.
  371. */
  372. int tlsv1_client_get_cipher(struct tlsv1_client *conn, char *buf,
  373. size_t buflen)
  374. {
  375. char *cipher;
  376. switch (conn->rl.cipher_suite) {
  377. case TLS_RSA_WITH_RC4_128_MD5:
  378. cipher = "RC4-MD5";
  379. break;
  380. case TLS_RSA_WITH_RC4_128_SHA:
  381. cipher = "RC4-SHA";
  382. break;
  383. case TLS_RSA_WITH_DES_CBC_SHA:
  384. cipher = "DES-CBC-SHA";
  385. break;
  386. case TLS_RSA_WITH_3DES_EDE_CBC_SHA:
  387. cipher = "DES-CBC3-SHA";
  388. break;
  389. case TLS_DH_anon_WITH_AES_128_CBC_SHA:
  390. cipher = "ADH-AES-128-SHA";
  391. break;
  392. case TLS_RSA_WITH_AES_256_CBC_SHA:
  393. cipher = "AES-256-SHA";
  394. break;
  395. case TLS_RSA_WITH_AES_128_CBC_SHA:
  396. cipher = "AES-128-SHA";
  397. break;
  398. default:
  399. return -1;
  400. }
  401. if (os_strlcpy(buf, cipher, buflen) >= buflen)
  402. return -1;
  403. return 0;
  404. }
  405. /**
  406. * tlsv1_client_shutdown - Shutdown TLS connection
  407. * @conn: TLSv1 client connection data from tlsv1_client_init()
  408. * Returns: 0 on success, -1 on failure
  409. */
  410. int tlsv1_client_shutdown(struct tlsv1_client *conn)
  411. {
  412. conn->state = CLIENT_HELLO;
  413. if (tls_verify_hash_init(&conn->verify) < 0) {
  414. wpa_printf(MSG_DEBUG, "TLSv1: Failed to re-initialize verify "
  415. "hash");
  416. return -1;
  417. }
  418. tlsv1_record_set_cipher_suite(&conn->rl, TLS_NULL_WITH_NULL_NULL);
  419. tlsv1_record_change_write_cipher(&conn->rl);
  420. tlsv1_record_change_read_cipher(&conn->rl);
  421. conn->certificate_requested = 0;
  422. crypto_public_key_free(conn->server_rsa_key);
  423. conn->server_rsa_key = NULL;
  424. conn->session_resumed = 0;
  425. return 0;
  426. }
  427. /**
  428. * tlsv1_client_resumed - Was session resumption used
  429. * @conn: TLSv1 client connection data from tlsv1_client_init()
  430. * Returns: 1 if current session used session resumption, 0 if not
  431. */
  432. int tlsv1_client_resumed(struct tlsv1_client *conn)
  433. {
  434. return !!conn->session_resumed;
  435. }
  436. /**
  437. * tlsv1_client_hello_ext - Set TLS extension for ClientHello
  438. * @conn: TLSv1 client connection data from tlsv1_client_init()
  439. * @ext_type: Extension type
  440. * @data: Extension payload (%NULL to remove extension)
  441. * @data_len: Extension payload length
  442. * Returns: 0 on success, -1 on failure
  443. */
  444. int tlsv1_client_hello_ext(struct tlsv1_client *conn, int ext_type,
  445. const u8 *data, size_t data_len)
  446. {
  447. u8 *pos;
  448. conn->session_ticket_included = 0;
  449. os_free(conn->client_hello_ext);
  450. conn->client_hello_ext = NULL;
  451. conn->client_hello_ext_len = 0;
  452. if (data == NULL || data_len == 0)
  453. return 0;
  454. pos = conn->client_hello_ext = os_malloc(6 + data_len);
  455. if (pos == NULL)
  456. return -1;
  457. WPA_PUT_BE16(pos, 4 + data_len);
  458. pos += 2;
  459. WPA_PUT_BE16(pos, ext_type);
  460. pos += 2;
  461. WPA_PUT_BE16(pos, data_len);
  462. pos += 2;
  463. os_memcpy(pos, data, data_len);
  464. conn->client_hello_ext_len = 6 + data_len;
  465. if (ext_type == TLS_EXT_PAC_OPAQUE) {
  466. conn->session_ticket_included = 1;
  467. wpa_printf(MSG_DEBUG, "TLSv1: Using session ticket");
  468. }
  469. return 0;
  470. }
  471. /**
  472. * tlsv1_client_get_keys - Get master key and random data from TLS connection
  473. * @conn: TLSv1 client connection data from tlsv1_client_init()
  474. * @keys: Structure of key/random data (filled on success)
  475. * Returns: 0 on success, -1 on failure
  476. */
  477. int tlsv1_client_get_keys(struct tlsv1_client *conn, struct tls_keys *keys)
  478. {
  479. os_memset(keys, 0, sizeof(*keys));
  480. if (conn->state == CLIENT_HELLO)
  481. return -1;
  482. keys->client_random = conn->client_random;
  483. keys->client_random_len = TLS_RANDOM_LEN;
  484. if (conn->state != SERVER_HELLO) {
  485. keys->server_random = conn->server_random;
  486. keys->server_random_len = TLS_RANDOM_LEN;
  487. keys->master_key = conn->master_secret;
  488. keys->master_key_len = TLS_MASTER_SECRET_LEN;
  489. }
  490. return 0;
  491. }
  492. /**
  493. * tlsv1_client_get_keyblock_size - Get TLS key_block size
  494. * @conn: TLSv1 client connection data from tlsv1_client_init()
  495. * Returns: Size of the key_block for the negotiated cipher suite or -1 on
  496. * failure
  497. */
  498. int tlsv1_client_get_keyblock_size(struct tlsv1_client *conn)
  499. {
  500. if (conn->state == CLIENT_HELLO || conn->state == SERVER_HELLO)
  501. return -1;
  502. return 2 * (conn->rl.hash_size + conn->rl.key_material_len +
  503. conn->rl.iv_size);
  504. }
  505. /**
  506. * tlsv1_client_set_cipher_list - Configure acceptable cipher suites
  507. * @conn: TLSv1 client connection data from tlsv1_client_init()
  508. * @ciphers: Zero (TLS_CIPHER_NONE) terminated list of allowed ciphers
  509. * (TLS_CIPHER_*).
  510. * Returns: 0 on success, -1 on failure
  511. */
  512. int tlsv1_client_set_cipher_list(struct tlsv1_client *conn, u8 *ciphers)
  513. {
  514. #ifdef EAP_FAST
  515. size_t count;
  516. u16 *suites;
  517. /* TODO: implement proper configuration of cipher suites */
  518. if (ciphers[0] == TLS_CIPHER_ANON_DH_AES128_SHA) {
  519. count = 0;
  520. suites = conn->cipher_suites;
  521. #ifndef CONFIG_CRYPTO_INTERNAL
  522. suites[count++] = TLS_DH_anon_WITH_AES_256_CBC_SHA;
  523. #endif /* CONFIG_CRYPTO_INTERNAL */
  524. suites[count++] = TLS_DH_anon_WITH_AES_128_CBC_SHA;
  525. suites[count++] = TLS_DH_anon_WITH_3DES_EDE_CBC_SHA;
  526. suites[count++] = TLS_DH_anon_WITH_RC4_128_MD5;
  527. suites[count++] = TLS_DH_anon_WITH_DES_CBC_SHA;
  528. /*
  529. * Cisco AP (at least 350 and 1200 series) local authentication
  530. * server does not know how to search cipher suites from the
  531. * list and seem to require that the last entry in the list is
  532. * the one that it wants to use. However, TLS specification
  533. * requires the list to be in the client preference order. As a
  534. * workaround, add anon-DH AES-128-SHA1 again at the end of the
  535. * list to allow the Cisco code to find it.
  536. */
  537. suites[count++] = TLS_DH_anon_WITH_AES_128_CBC_SHA;
  538. conn->num_cipher_suites = count;
  539. }
  540. return 0;
  541. #else /* EAP_FAST */
  542. return -1;
  543. #endif /* EAP_FAST */
  544. }
  545. /**
  546. * tlsv1_client_set_cred - Set client credentials
  547. * @conn: TLSv1 client connection data from tlsv1_client_init()
  548. * @cred: Credentials from tlsv1_cred_alloc()
  549. * Returns: 0 on success, -1 on failure
  550. *
  551. * On success, the client takes ownership of the credentials block and caller
  552. * must not free it. On failure, caller is responsible for freeing the
  553. * credential block.
  554. */
  555. int tlsv1_client_set_cred(struct tlsv1_client *conn,
  556. struct tlsv1_credentials *cred)
  557. {
  558. tlsv1_cred_free(conn->cred);
  559. conn->cred = cred;
  560. return 0;
  561. }
  562. void tlsv1_client_set_session_ticket_cb(struct tlsv1_client *conn,
  563. tlsv1_client_session_ticket_cb cb,
  564. void *ctx)
  565. {
  566. wpa_printf(MSG_DEBUG, "TLSv1: SessionTicket callback set %p (ctx %p)",
  567. cb, ctx);
  568. conn->session_ticket_cb = cb;
  569. conn->session_ticket_cb_ctx = ctx;
  570. }