eap_tls_common.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. /*
  2. * EAP peer: EAP-TLS/PEAP/TTLS/FAST common functions
  3. * Copyright (c) 2004-2009, 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 "eap_i.h"
  19. #include "eap_tls_common.h"
  20. #include "eap_config.h"
  21. static int eap_tls_check_blob(struct eap_sm *sm, const char **name,
  22. const u8 **data, size_t *data_len)
  23. {
  24. const struct wpa_config_blob *blob;
  25. if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
  26. return 0;
  27. blob = eap_get_config_blob(sm, *name + 7);
  28. if (blob == NULL) {
  29. wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
  30. "found", __func__, *name + 7);
  31. return -1;
  32. }
  33. *name = NULL;
  34. *data = blob->data;
  35. *data_len = blob->len;
  36. return 0;
  37. }
  38. static void eap_tls_params_flags(struct tls_connection_params *params,
  39. const char *txt)
  40. {
  41. if (txt == NULL)
  42. return;
  43. if (os_strstr(txt, "tls_allow_md5=1"))
  44. params->flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
  45. if (os_strstr(txt, "tls_disable_time_checks=1"))
  46. params->flags |= TLS_CONN_DISABLE_TIME_CHECKS;
  47. }
  48. static void eap_tls_params_from_conf1(struct tls_connection_params *params,
  49. struct eap_peer_config *config)
  50. {
  51. params->ca_cert = (char *) config->ca_cert;
  52. params->ca_path = (char *) config->ca_path;
  53. params->client_cert = (char *) config->client_cert;
  54. params->private_key = (char *) config->private_key;
  55. params->private_key_passwd = (char *) config->private_key_passwd;
  56. params->dh_file = (char *) config->dh_file;
  57. params->subject_match = (char *) config->subject_match;
  58. params->altsubject_match = (char *) config->altsubject_match;
  59. params->engine = config->engine;
  60. params->engine_id = config->engine_id;
  61. params->pin = config->pin;
  62. params->key_id = config->key_id;
  63. params->cert_id = config->cert_id;
  64. params->ca_cert_id = config->ca_cert_id;
  65. eap_tls_params_flags(params, config->phase1);
  66. }
  67. static void eap_tls_params_from_conf2(struct tls_connection_params *params,
  68. struct eap_peer_config *config)
  69. {
  70. params->ca_cert = (char *) config->ca_cert2;
  71. params->ca_path = (char *) config->ca_path2;
  72. params->client_cert = (char *) config->client_cert2;
  73. params->private_key = (char *) config->private_key2;
  74. params->private_key_passwd = (char *) config->private_key2_passwd;
  75. params->dh_file = (char *) config->dh_file2;
  76. params->subject_match = (char *) config->subject_match2;
  77. params->altsubject_match = (char *) config->altsubject_match2;
  78. params->engine = config->engine2;
  79. params->engine_id = config->engine2_id;
  80. params->pin = config->pin2;
  81. params->key_id = config->key2_id;
  82. params->cert_id = config->cert2_id;
  83. params->ca_cert_id = config->ca_cert2_id;
  84. eap_tls_params_flags(params, config->phase2);
  85. }
  86. static int eap_tls_params_from_conf(struct eap_sm *sm,
  87. struct eap_ssl_data *data,
  88. struct tls_connection_params *params,
  89. struct eap_peer_config *config, int phase2)
  90. {
  91. os_memset(params, 0, sizeof(*params));
  92. if (phase2) {
  93. wpa_printf(MSG_DEBUG, "TLS: using phase2 config options");
  94. eap_tls_params_from_conf2(params, config);
  95. } else {
  96. wpa_printf(MSG_DEBUG, "TLS: using phase1 config options");
  97. eap_tls_params_from_conf1(params, config);
  98. }
  99. /*
  100. * Use blob data, if available. Otherwise, leave reference to external
  101. * file as-is.
  102. */
  103. if (eap_tls_check_blob(sm, &params->ca_cert, &params->ca_cert_blob,
  104. &params->ca_cert_blob_len) ||
  105. eap_tls_check_blob(sm, &params->client_cert,
  106. &params->client_cert_blob,
  107. &params->client_cert_blob_len) ||
  108. eap_tls_check_blob(sm, &params->private_key,
  109. &params->private_key_blob,
  110. &params->private_key_blob_len) ||
  111. eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
  112. &params->dh_blob_len)) {
  113. wpa_printf(MSG_INFO, "SSL: Failed to get configuration blobs");
  114. return -1;
  115. }
  116. return 0;
  117. }
  118. static int eap_tls_init_connection(struct eap_sm *sm,
  119. struct eap_ssl_data *data,
  120. struct eap_peer_config *config,
  121. struct tls_connection_params *params)
  122. {
  123. int res;
  124. data->conn = tls_connection_init(sm->ssl_ctx);
  125. if (data->conn == NULL) {
  126. wpa_printf(MSG_INFO, "SSL: Failed to initialize new TLS "
  127. "connection");
  128. return -1;
  129. }
  130. res = tls_connection_set_params(sm->ssl_ctx, data->conn, params);
  131. if (res == TLS_SET_PARAMS_ENGINE_PRV_INIT_FAILED) {
  132. /*
  133. * At this point with the pkcs11 engine the PIN might be wrong.
  134. * We reset the PIN in the configuration to be sure to not use
  135. * it again and the calling function must request a new one.
  136. */
  137. os_free(config->pin);
  138. config->pin = NULL;
  139. } else if (res == TLS_SET_PARAMS_ENGINE_PRV_VERIFY_FAILED) {
  140. wpa_printf(MSG_INFO, "TLS: Failed to load private key");
  141. /*
  142. * We do not know exactly but maybe the PIN was wrong,
  143. * so ask for a new one.
  144. */
  145. os_free(config->pin);
  146. config->pin = NULL;
  147. eap_sm_request_pin(sm);
  148. sm->ignore = TRUE;
  149. tls_connection_deinit(sm->ssl_ctx, data->conn);
  150. data->conn = NULL;
  151. return -1;
  152. } else if (res) {
  153. wpa_printf(MSG_INFO, "TLS: Failed to set TLS connection "
  154. "parameters");
  155. tls_connection_deinit(sm->ssl_ctx, data->conn);
  156. data->conn = NULL;
  157. return -1;
  158. }
  159. return 0;
  160. }
  161. /**
  162. * eap_peer_tls_ssl_init - Initialize shared TLS functionality
  163. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  164. * @data: Data for TLS processing
  165. * @config: Pointer to the network configuration
  166. * Returns: 0 on success, -1 on failure
  167. *
  168. * This function is used to initialize shared TLS functionality for EAP-TLS,
  169. * EAP-PEAP, EAP-TTLS, and EAP-FAST.
  170. */
  171. int eap_peer_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
  172. struct eap_peer_config *config)
  173. {
  174. struct tls_connection_params params;
  175. if (config == NULL)
  176. return -1;
  177. data->eap = sm;
  178. data->phase2 = sm->init_phase2;
  179. if (eap_tls_params_from_conf(sm, data, &params, config, data->phase2) <
  180. 0)
  181. return -1;
  182. if (eap_tls_init_connection(sm, data, config, &params) < 0)
  183. return -1;
  184. data->tls_out_limit = config->fragment_size;
  185. if (data->phase2) {
  186. /* Limit the fragment size in the inner TLS authentication
  187. * since the outer authentication with EAP-PEAP does not yet
  188. * support fragmentation */
  189. if (data->tls_out_limit > 100)
  190. data->tls_out_limit -= 100;
  191. }
  192. if (config->phase1 &&
  193. os_strstr(config->phase1, "include_tls_length=1")) {
  194. wpa_printf(MSG_DEBUG, "TLS: Include TLS Message Length in "
  195. "unfragmented packets");
  196. data->include_tls_length = 1;
  197. }
  198. return 0;
  199. }
  200. /**
  201. * eap_peer_tls_ssl_deinit - Deinitialize shared TLS functionality
  202. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  203. * @data: Data for TLS processing
  204. *
  205. * This function deinitializes shared TLS functionality that was initialized
  206. * with eap_peer_tls_ssl_init().
  207. */
  208. void eap_peer_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data)
  209. {
  210. tls_connection_deinit(sm->ssl_ctx, data->conn);
  211. eap_peer_tls_reset_input(data);
  212. eap_peer_tls_reset_output(data);
  213. }
  214. /**
  215. * eap_peer_tls_derive_key - Derive a key based on TLS session data
  216. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  217. * @data: Data for TLS processing
  218. * @label: Label string for deriving the keys, e.g., "client EAP encryption"
  219. * @len: Length of the key material to generate (usually 64 for MSK)
  220. * Returns: Pointer to allocated key on success or %NULL on failure
  221. *
  222. * This function uses TLS-PRF to generate pseudo-random data based on the TLS
  223. * session data (client/server random and master key). Each key type may use a
  224. * different label to bind the key usage into the generated material.
  225. *
  226. * The caller is responsible for freeing the returned buffer.
  227. */
  228. u8 * eap_peer_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
  229. const char *label, size_t len)
  230. {
  231. struct tls_keys keys;
  232. u8 *rnd = NULL, *out;
  233. out = os_malloc(len);
  234. if (out == NULL)
  235. return NULL;
  236. /* First, try to use TLS library function for PRF, if available. */
  237. if (tls_connection_prf(sm->ssl_ctx, data->conn, label, 0, out, len) ==
  238. 0)
  239. return out;
  240. /*
  241. * TLS library did not support key generation, so get the needed TLS
  242. * session parameters and use an internal implementation of TLS PRF to
  243. * derive the key.
  244. */
  245. if (tls_connection_get_keys(sm->ssl_ctx, data->conn, &keys))
  246. goto fail;
  247. if (keys.client_random == NULL || keys.server_random == NULL ||
  248. keys.master_key == NULL)
  249. goto fail;
  250. rnd = os_malloc(keys.client_random_len + keys.server_random_len);
  251. if (rnd == NULL)
  252. goto fail;
  253. os_memcpy(rnd, keys.client_random, keys.client_random_len);
  254. os_memcpy(rnd + keys.client_random_len, keys.server_random,
  255. keys.server_random_len);
  256. if (tls_prf(keys.master_key, keys.master_key_len,
  257. label, rnd, keys.client_random_len +
  258. keys.server_random_len, out, len))
  259. goto fail;
  260. os_free(rnd);
  261. return out;
  262. fail:
  263. os_free(out);
  264. os_free(rnd);
  265. return NULL;
  266. }
  267. /**
  268. * eap_peer_tls_reassemble_fragment - Reassemble a received fragment
  269. * @data: Data for TLS processing
  270. * @in_data: Next incoming TLS segment
  271. * Returns: 0 on success, 1 if more data is needed for the full message, or
  272. * -1 on error
  273. */
  274. static int eap_peer_tls_reassemble_fragment(struct eap_ssl_data *data,
  275. const struct wpabuf *in_data)
  276. {
  277. size_t tls_in_len, in_len;
  278. tls_in_len = data->tls_in ? wpabuf_len(data->tls_in) : 0;
  279. in_len = in_data ? wpabuf_len(in_data) : 0;
  280. if (tls_in_len + in_len == 0) {
  281. /* No message data received?! */
  282. wpa_printf(MSG_WARNING, "SSL: Invalid reassembly state: "
  283. "tls_in_left=%lu tls_in_len=%lu in_len=%lu",
  284. (unsigned long) data->tls_in_left,
  285. (unsigned long) tls_in_len,
  286. (unsigned long) in_len);
  287. eap_peer_tls_reset_input(data);
  288. return -1;
  289. }
  290. if (tls_in_len + in_len > 65536) {
  291. /*
  292. * Limit length to avoid rogue servers from causing large
  293. * memory allocations.
  294. */
  295. wpa_printf(MSG_INFO, "SSL: Too long TLS fragment (size over "
  296. "64 kB)");
  297. eap_peer_tls_reset_input(data);
  298. return -1;
  299. }
  300. if (in_len > data->tls_in_left) {
  301. /* Sender is doing something odd - reject message */
  302. wpa_printf(MSG_INFO, "SSL: more data than TLS message length "
  303. "indicated");
  304. eap_peer_tls_reset_input(data);
  305. return -1;
  306. }
  307. if (wpabuf_resize(&data->tls_in, in_len) < 0) {
  308. wpa_printf(MSG_INFO, "SSL: Could not allocate memory for TLS "
  309. "data");
  310. eap_peer_tls_reset_input(data);
  311. return -1;
  312. }
  313. if (in_data)
  314. wpabuf_put_buf(data->tls_in, in_data);
  315. data->tls_in_left -= in_len;
  316. if (data->tls_in_left > 0) {
  317. wpa_printf(MSG_DEBUG, "SSL: Need %lu bytes more input "
  318. "data", (unsigned long) data->tls_in_left);
  319. return 1;
  320. }
  321. return 0;
  322. }
  323. /**
  324. * eap_peer_tls_data_reassemble - Reassemble TLS data
  325. * @data: Data for TLS processing
  326. * @in_data: Next incoming TLS segment
  327. * @need_more_input: Variable for returning whether more input data is needed
  328. * to reassemble this TLS packet
  329. * Returns: Pointer to output data, %NULL on error or when more data is needed
  330. * for the full message (in which case, *need_more_input is also set to 1).
  331. *
  332. * This function reassembles TLS fragments. Caller must not free the returned
  333. * data buffer since an internal pointer to it is maintained.
  334. */
  335. static const struct wpabuf * eap_peer_tls_data_reassemble(
  336. struct eap_ssl_data *data, const struct wpabuf *in_data,
  337. int *need_more_input)
  338. {
  339. *need_more_input = 0;
  340. if (data->tls_in_left > wpabuf_len(in_data) || data->tls_in) {
  341. /* Message has fragments */
  342. int res = eap_peer_tls_reassemble_fragment(data, in_data);
  343. if (res) {
  344. if (res == 1)
  345. *need_more_input = 1;
  346. return NULL;
  347. }
  348. /* Message is now fully reassembled. */
  349. } else {
  350. /* No fragments in this message, so just make a copy of it. */
  351. data->tls_in_left = 0;
  352. data->tls_in = wpabuf_dup(in_data);
  353. if (data->tls_in == NULL)
  354. return NULL;
  355. }
  356. return data->tls_in;
  357. }
  358. /**
  359. * eap_tls_process_input - Process incoming TLS message
  360. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  361. * @data: Data for TLS processing
  362. * @in_data: Message received from the server
  363. * @in_len: Length of in_data
  364. * @out_data: Buffer for returning a pointer to application data (if available)
  365. * Returns: 0 on success, 1 if more input data is needed, 2 if application data
  366. * is available, -1 on failure
  367. */
  368. static int eap_tls_process_input(struct eap_sm *sm, struct eap_ssl_data *data,
  369. const u8 *in_data, size_t in_len,
  370. struct wpabuf **out_data)
  371. {
  372. const struct wpabuf *msg;
  373. int need_more_input;
  374. struct wpabuf *appl_data;
  375. struct wpabuf buf;
  376. wpabuf_set(&buf, in_data, in_len);
  377. msg = eap_peer_tls_data_reassemble(data, &buf, &need_more_input);
  378. if (msg == NULL)
  379. return need_more_input ? 1 : -1;
  380. /* Full TLS message reassembled - continue handshake processing */
  381. if (data->tls_out) {
  382. /* This should not happen.. */
  383. wpa_printf(MSG_INFO, "SSL: eap_tls_process_input - pending "
  384. "tls_out data even though tls_out_len = 0");
  385. wpabuf_free(data->tls_out);
  386. WPA_ASSERT(data->tls_out == NULL);
  387. }
  388. appl_data = NULL;
  389. data->tls_out = tls_connection_handshake(sm->ssl_ctx, data->conn,
  390. msg, &appl_data);
  391. eap_peer_tls_reset_input(data);
  392. if (appl_data &&
  393. tls_connection_established(sm->ssl_ctx, data->conn) &&
  394. !tls_connection_get_failed(sm->ssl_ctx, data->conn)) {
  395. wpa_hexdump_buf_key(MSG_MSGDUMP, "SSL: Application data",
  396. appl_data);
  397. *out_data = appl_data;
  398. return 2;
  399. }
  400. wpabuf_free(appl_data);
  401. return 0;
  402. }
  403. /**
  404. * eap_tls_process_output - Process outgoing TLS message
  405. * @data: Data for TLS processing
  406. * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
  407. * @peap_version: Version number for EAP-PEAP/TTLS
  408. * @id: EAP identifier for the response
  409. * @ret: Return value to use on success
  410. * @out_data: Buffer for returning the allocated output buffer
  411. * Returns: ret (0 or 1) on success, -1 on failure
  412. */
  413. static int eap_tls_process_output(struct eap_ssl_data *data, EapType eap_type,
  414. int peap_version, u8 id, int ret,
  415. struct wpabuf **out_data)
  416. {
  417. size_t len;
  418. u8 *flags;
  419. int more_fragments, length_included;
  420. if (data->tls_out == NULL)
  421. return -1;
  422. len = wpabuf_len(data->tls_out) - data->tls_out_pos;
  423. wpa_printf(MSG_DEBUG, "SSL: %lu bytes left to be sent out (of total "
  424. "%lu bytes)",
  425. (unsigned long) len,
  426. (unsigned long) wpabuf_len(data->tls_out));
  427. /*
  428. * Limit outgoing message to the configured maximum size. Fragment
  429. * message if needed.
  430. */
  431. if (len > data->tls_out_limit) {
  432. more_fragments = 1;
  433. len = data->tls_out_limit;
  434. wpa_printf(MSG_DEBUG, "SSL: sending %lu bytes, more fragments "
  435. "will follow", (unsigned long) len);
  436. } else
  437. more_fragments = 0;
  438. length_included = data->tls_out_pos == 0 &&
  439. (wpabuf_len(data->tls_out) > data->tls_out_limit ||
  440. data->include_tls_length);
  441. if (!length_included &&
  442. eap_type == EAP_TYPE_PEAP && peap_version == 0 &&
  443. !tls_connection_established(data->eap->ssl_ctx, data->conn)) {
  444. /*
  445. * Windows Server 2008 NPS really wants to have the TLS Message
  446. * length included in phase 0 even for unfragmented frames or
  447. * it will get very confused with Compound MAC calculation and
  448. * Outer TLVs.
  449. */
  450. length_included = 1;
  451. }
  452. *out_data = eap_msg_alloc(EAP_VENDOR_IETF, eap_type,
  453. 1 + length_included * 4 + len,
  454. EAP_CODE_RESPONSE, id);
  455. if (*out_data == NULL)
  456. return -1;
  457. flags = wpabuf_put(*out_data, 1);
  458. *flags = peap_version;
  459. if (more_fragments)
  460. *flags |= EAP_TLS_FLAGS_MORE_FRAGMENTS;
  461. if (length_included) {
  462. *flags |= EAP_TLS_FLAGS_LENGTH_INCLUDED;
  463. wpabuf_put_be32(*out_data, wpabuf_len(data->tls_out));
  464. }
  465. wpabuf_put_data(*out_data,
  466. wpabuf_head_u8(data->tls_out) + data->tls_out_pos,
  467. len);
  468. data->tls_out_pos += len;
  469. if (!more_fragments)
  470. eap_peer_tls_reset_output(data);
  471. return ret;
  472. }
  473. /**
  474. * eap_peer_tls_process_helper - Process TLS handshake message
  475. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  476. * @data: Data for TLS processing
  477. * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
  478. * @peap_version: Version number for EAP-PEAP/TTLS
  479. * @id: EAP identifier for the response
  480. * @in_data: Message received from the server
  481. * @in_len: Length of in_data
  482. * @out_data: Buffer for returning a pointer to the response message
  483. * Returns: 0 on success, 1 if more input data is needed, 2 if application data
  484. * is available, or -1 on failure
  485. *
  486. * This function can be used to process TLS handshake messages. It reassembles
  487. * the received fragments and uses a TLS library to process the messages. The
  488. * response data from the TLS library is fragmented to suitable output messages
  489. * that the caller can send out.
  490. *
  491. * out_data is used to return the response message if the return value of this
  492. * function is 0, 2, or -1. In case of failure, the message is likely a TLS
  493. * alarm message. The caller is responsible for freeing the allocated buffer if
  494. * *out_data is not %NULL.
  495. *
  496. * This function is called for each received TLS message during the TLS
  497. * handshake after eap_peer_tls_process_init() call and possible processing of
  498. * TLS Flags field. Once the handshake has been completed, i.e., when
  499. * tls_connection_established() returns 1, EAP method specific decrypting of
  500. * the tunneled data is used.
  501. */
  502. int eap_peer_tls_process_helper(struct eap_sm *sm, struct eap_ssl_data *data,
  503. EapType eap_type, int peap_version,
  504. u8 id, const u8 *in_data, size_t in_len,
  505. struct wpabuf **out_data)
  506. {
  507. int ret = 0;
  508. *out_data = NULL;
  509. if (data->tls_out && wpabuf_len(data->tls_out) > 0 && in_len > 0) {
  510. wpa_printf(MSG_DEBUG, "SSL: Received non-ACK when output "
  511. "fragments are waiting to be sent out");
  512. return -1;
  513. }
  514. if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
  515. /*
  516. * No more data to send out - expect to receive more data from
  517. * the AS.
  518. */
  519. int res = eap_tls_process_input(sm, data, in_data, in_len,
  520. out_data);
  521. if (res) {
  522. /*
  523. * Input processing failed (res = -1) or more data is
  524. * needed (res = 1).
  525. */
  526. return res;
  527. }
  528. /*
  529. * The incoming message has been reassembled and processed. The
  530. * response was allocated into data->tls_out buffer.
  531. */
  532. }
  533. if (data->tls_out == NULL) {
  534. /*
  535. * No outgoing fragments remaining from the previous message
  536. * and no new message generated. This indicates an error in TLS
  537. * processing.
  538. */
  539. eap_peer_tls_reset_output(data);
  540. return -1;
  541. }
  542. if (tls_connection_get_failed(sm->ssl_ctx, data->conn)) {
  543. /* TLS processing has failed - return error */
  544. wpa_printf(MSG_DEBUG, "SSL: Failed - tls_out available to "
  545. "report error");
  546. ret = -1;
  547. /* TODO: clean pin if engine used? */
  548. }
  549. if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
  550. /*
  551. * TLS negotiation should now be complete since all other cases
  552. * needing more data should have been caught above based on
  553. * the TLS Message Length field.
  554. */
  555. wpa_printf(MSG_DEBUG, "SSL: No data to be sent out");
  556. wpabuf_free(data->tls_out);
  557. data->tls_out = NULL;
  558. return 1;
  559. }
  560. /* Send the pending message (in fragments, if needed). */
  561. return eap_tls_process_output(data, eap_type, peap_version, id, ret,
  562. out_data);
  563. }
  564. /**
  565. * eap_peer_tls_build_ack - Build a TLS ACK frame
  566. * @id: EAP identifier for the response
  567. * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
  568. * @peap_version: Version number for EAP-PEAP/TTLS
  569. * Returns: Pointer to the allocated ACK frame or %NULL on failure
  570. */
  571. struct wpabuf * eap_peer_tls_build_ack(u8 id, EapType eap_type,
  572. int peap_version)
  573. {
  574. struct wpabuf *resp;
  575. resp = eap_msg_alloc(EAP_VENDOR_IETF, eap_type, 1, EAP_CODE_RESPONSE,
  576. id);
  577. if (resp == NULL)
  578. return NULL;
  579. wpa_printf(MSG_DEBUG, "SSL: Building ACK (type=%d id=%d ver=%d)",
  580. (int) eap_type, id, peap_version);
  581. wpabuf_put_u8(resp, peap_version); /* Flags */
  582. return resp;
  583. }
  584. /**
  585. * eap_peer_tls_reauth_init - Re-initialize shared TLS for session resumption
  586. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  587. * @data: Data for TLS processing
  588. * Returns: 0 on success, -1 on failure
  589. */
  590. int eap_peer_tls_reauth_init(struct eap_sm *sm, struct eap_ssl_data *data)
  591. {
  592. eap_peer_tls_reset_input(data);
  593. eap_peer_tls_reset_output(data);
  594. return tls_connection_shutdown(sm->ssl_ctx, data->conn);
  595. }
  596. /**
  597. * eap_peer_tls_status - Get TLS status
  598. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  599. * @data: Data for TLS processing
  600. * @buf: Buffer for status information
  601. * @buflen: Maximum buffer length
  602. * @verbose: Whether to include verbose status information
  603. * Returns: Number of bytes written to buf.
  604. */
  605. int eap_peer_tls_status(struct eap_sm *sm, struct eap_ssl_data *data,
  606. char *buf, size_t buflen, int verbose)
  607. {
  608. char name[128];
  609. int len = 0, ret;
  610. if (tls_get_cipher(sm->ssl_ctx, data->conn, name, sizeof(name)) == 0) {
  611. ret = os_snprintf(buf + len, buflen - len,
  612. "EAP TLS cipher=%s\n", name);
  613. if (ret < 0 || (size_t) ret >= buflen - len)
  614. return len;
  615. len += ret;
  616. }
  617. return len;
  618. }
  619. /**
  620. * eap_peer_tls_process_init - Initial validation/processing of EAP requests
  621. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  622. * @data: Data for TLS processing
  623. * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
  624. * @ret: Return values from EAP request validation and processing
  625. * @reqData: EAP request to be processed (eapReqData)
  626. * @len: Buffer for returning length of the remaining payload
  627. * @flags: Buffer for returning TLS flags
  628. * Returns: Pointer to payload after TLS flags and length or %NULL on failure
  629. *
  630. * This function validates the EAP header and processes the optional TLS
  631. * Message Length field. If this is the first fragment of a TLS message, the
  632. * TLS reassembly code is initialized to receive the indicated number of bytes.
  633. *
  634. * EAP-TLS, EAP-PEAP, EAP-TTLS, and EAP-FAST methods are expected to use this
  635. * function as the first step in processing received messages. They will need
  636. * to process the flags (apart from Message Length Included) that are returned
  637. * through the flags pointer and the message payload that will be returned (and
  638. * the length is returned through the len pointer). Return values (ret) are set
  639. * for continuation of EAP method processing. The caller is responsible for
  640. * setting these to indicate completion (either success or failure) based on
  641. * the authentication result.
  642. */
  643. const u8 * eap_peer_tls_process_init(struct eap_sm *sm,
  644. struct eap_ssl_data *data,
  645. EapType eap_type,
  646. struct eap_method_ret *ret,
  647. const struct wpabuf *reqData,
  648. size_t *len, u8 *flags)
  649. {
  650. const u8 *pos;
  651. size_t left;
  652. unsigned int tls_msg_len;
  653. if (tls_get_errors(sm->ssl_ctx)) {
  654. wpa_printf(MSG_INFO, "SSL: TLS errors detected");
  655. ret->ignore = TRUE;
  656. return NULL;
  657. }
  658. pos = eap_hdr_validate(EAP_VENDOR_IETF, eap_type, reqData, &left);
  659. if (pos == NULL) {
  660. ret->ignore = TRUE;
  661. return NULL;
  662. }
  663. if (left == 0) {
  664. wpa_printf(MSG_DEBUG, "SSL: Invalid TLS message: no Flags "
  665. "octet included");
  666. if (!sm->workaround) {
  667. ret->ignore = TRUE;
  668. return NULL;
  669. }
  670. wpa_printf(MSG_DEBUG, "SSL: Workaround - assume no Flags "
  671. "indicates ACK frame");
  672. *flags = 0;
  673. } else {
  674. *flags = *pos++;
  675. left--;
  676. }
  677. wpa_printf(MSG_DEBUG, "SSL: Received packet(len=%lu) - "
  678. "Flags 0x%02x", (unsigned long) wpabuf_len(reqData),
  679. *flags);
  680. if (*flags & EAP_TLS_FLAGS_LENGTH_INCLUDED) {
  681. if (left < 4) {
  682. wpa_printf(MSG_INFO, "SSL: Short frame with TLS "
  683. "length");
  684. ret->ignore = TRUE;
  685. return NULL;
  686. }
  687. tls_msg_len = WPA_GET_BE32(pos);
  688. wpa_printf(MSG_DEBUG, "SSL: TLS Message Length: %d",
  689. tls_msg_len);
  690. if (data->tls_in_left == 0) {
  691. data->tls_in_total = tls_msg_len;
  692. data->tls_in_left = tls_msg_len;
  693. wpabuf_free(data->tls_in);
  694. data->tls_in = NULL;
  695. }
  696. pos += 4;
  697. left -= 4;
  698. }
  699. ret->ignore = FALSE;
  700. ret->methodState = METHOD_MAY_CONT;
  701. ret->decision = DECISION_FAIL;
  702. ret->allowNotifications = TRUE;
  703. *len = left;
  704. return pos;
  705. }
  706. /**
  707. * eap_peer_tls_reset_input - Reset input buffers
  708. * @data: Data for TLS processing
  709. *
  710. * This function frees any allocated memory for input buffers and resets input
  711. * state.
  712. */
  713. void eap_peer_tls_reset_input(struct eap_ssl_data *data)
  714. {
  715. data->tls_in_left = data->tls_in_total = 0;
  716. wpabuf_free(data->tls_in);
  717. data->tls_in = NULL;
  718. }
  719. /**
  720. * eap_peer_tls_reset_output - Reset output buffers
  721. * @data: Data for TLS processing
  722. *
  723. * This function frees any allocated memory for output buffers and resets
  724. * output state.
  725. */
  726. void eap_peer_tls_reset_output(struct eap_ssl_data *data)
  727. {
  728. data->tls_out_pos = 0;
  729. wpabuf_free(data->tls_out);
  730. data->tls_out = NULL;
  731. }
  732. /**
  733. * eap_peer_tls_decrypt - Decrypt received phase 2 TLS message
  734. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  735. * @data: Data for TLS processing
  736. * @in_data: Message received from the server
  737. * @in_decrypted: Buffer for returning a pointer to the decrypted message
  738. * Returns: 0 on success, 1 if more input data is needed, or -1 on failure
  739. */
  740. int eap_peer_tls_decrypt(struct eap_sm *sm, struct eap_ssl_data *data,
  741. const struct wpabuf *in_data,
  742. struct wpabuf **in_decrypted)
  743. {
  744. const struct wpabuf *msg;
  745. int need_more_input;
  746. msg = eap_peer_tls_data_reassemble(data, in_data, &need_more_input);
  747. if (msg == NULL)
  748. return need_more_input ? 1 : -1;
  749. *in_decrypted = tls_connection_decrypt(sm->ssl_ctx, data->conn, msg);
  750. eap_peer_tls_reset_input(data);
  751. if (*in_decrypted == NULL) {
  752. wpa_printf(MSG_INFO, "SSL: Failed to decrypt Phase 2 data");
  753. return -1;
  754. }
  755. return 0;
  756. }
  757. /**
  758. * eap_peer_tls_encrypt - Encrypt phase 2 TLS message
  759. * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
  760. * @data: Data for TLS processing
  761. * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
  762. * @peap_version: Version number for EAP-PEAP/TTLS
  763. * @id: EAP identifier for the response
  764. * @in_data: Plaintext phase 2 data to encrypt or %NULL to continue fragments
  765. * @out_data: Buffer for returning a pointer to the encrypted response message
  766. * Returns: 0 on success, -1 on failure
  767. */
  768. int eap_peer_tls_encrypt(struct eap_sm *sm, struct eap_ssl_data *data,
  769. EapType eap_type, int peap_version, u8 id,
  770. const struct wpabuf *in_data,
  771. struct wpabuf **out_data)
  772. {
  773. if (in_data) {
  774. eap_peer_tls_reset_output(data);
  775. data->tls_out = tls_connection_encrypt(sm->ssl_ctx, data->conn,
  776. in_data);
  777. if (data->tls_out == NULL) {
  778. wpa_printf(MSG_INFO, "SSL: Failed to encrypt Phase 2 "
  779. "data (in_len=%lu)",
  780. (unsigned long) wpabuf_len(in_data));
  781. eap_peer_tls_reset_output(data);
  782. return -1;
  783. }
  784. }
  785. return eap_tls_process_output(data, eap_type, peap_version, id, 0,
  786. out_data);
  787. }
  788. /**
  789. * eap_peer_select_phase2_methods - Select phase 2 EAP method
  790. * @config: Pointer to the network configuration
  791. * @prefix: 'phase2' configuration prefix, e.g., "auth="
  792. * @types: Buffer for returning allocated list of allowed EAP methods
  793. * @num_types: Buffer for returning number of allocated EAP methods
  794. * Returns: 0 on success, -1 on failure
  795. *
  796. * This function is used to parse EAP method list and select allowed methods
  797. * for Phase2 authentication.
  798. */
  799. int eap_peer_select_phase2_methods(struct eap_peer_config *config,
  800. const char *prefix,
  801. struct eap_method_type **types,
  802. size_t *num_types)
  803. {
  804. char *start, *pos, *buf;
  805. struct eap_method_type *methods = NULL, *_methods;
  806. u8 method;
  807. size_t num_methods = 0, prefix_len;
  808. if (config == NULL || config->phase2 == NULL)
  809. goto get_defaults;
  810. start = buf = os_strdup(config->phase2);
  811. if (buf == NULL)
  812. return -1;
  813. prefix_len = os_strlen(prefix);
  814. while (start && *start != '\0') {
  815. int vendor;
  816. pos = os_strstr(start, prefix);
  817. if (pos == NULL)
  818. break;
  819. if (start != pos && *(pos - 1) != ' ') {
  820. start = pos + prefix_len;
  821. continue;
  822. }
  823. start = pos + prefix_len;
  824. pos = os_strchr(start, ' ');
  825. if (pos)
  826. *pos++ = '\0';
  827. method = eap_get_phase2_type(start, &vendor);
  828. if (vendor == EAP_VENDOR_IETF && method == EAP_TYPE_NONE) {
  829. wpa_printf(MSG_ERROR, "TLS: Unsupported Phase2 EAP "
  830. "method '%s'", start);
  831. } else {
  832. num_methods++;
  833. _methods = os_realloc(methods,
  834. num_methods * sizeof(*methods));
  835. if (_methods == NULL) {
  836. os_free(methods);
  837. os_free(buf);
  838. return -1;
  839. }
  840. methods = _methods;
  841. methods[num_methods - 1].vendor = vendor;
  842. methods[num_methods - 1].method = method;
  843. }
  844. start = pos;
  845. }
  846. os_free(buf);
  847. get_defaults:
  848. if (methods == NULL)
  849. methods = eap_get_phase2_types(config, &num_methods);
  850. if (methods == NULL) {
  851. wpa_printf(MSG_ERROR, "TLS: No Phase2 EAP methods available");
  852. return -1;
  853. }
  854. wpa_hexdump(MSG_DEBUG, "TLS: Phase2 EAP types",
  855. (u8 *) methods,
  856. num_methods * sizeof(struct eap_method_type));
  857. *types = methods;
  858. *num_types = num_methods;
  859. return 0;
  860. }
  861. /**
  862. * eap_peer_tls_phase2_nak - Generate EAP-Nak for Phase 2
  863. * @types: Buffer for returning allocated list of allowed EAP methods
  864. * @num_types: Buffer for returning number of allocated EAP methods
  865. * @hdr: EAP-Request header (and the following EAP type octet)
  866. * @resp: Buffer for returning the EAP-Nak message
  867. * Returns: 0 on success, -1 on failure
  868. */
  869. int eap_peer_tls_phase2_nak(struct eap_method_type *types, size_t num_types,
  870. struct eap_hdr *hdr, struct wpabuf **resp)
  871. {
  872. u8 *pos = (u8 *) (hdr + 1);
  873. size_t i;
  874. /* TODO: add support for expanded Nak */
  875. wpa_printf(MSG_DEBUG, "TLS: Phase 2 Request: Nak type=%d", *pos);
  876. wpa_hexdump(MSG_DEBUG, "TLS: Allowed Phase2 EAP types",
  877. (u8 *) types, num_types * sizeof(struct eap_method_type));
  878. *resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_NAK, num_types,
  879. EAP_CODE_RESPONSE, hdr->identifier);
  880. if (*resp == NULL)
  881. return -1;
  882. for (i = 0; i < num_types; i++) {
  883. if (types[i].vendor == EAP_VENDOR_IETF &&
  884. types[i].method < 256)
  885. wpabuf_put_u8(*resp, types[i].method);
  886. }
  887. eap_update_len(*resp);
  888. return 0;
  889. }