eap_tnc.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433
  1. /*
  2. * EAP peer method: EAP-TNC (Trusted Network Connect)
  3. * Copyright (c) 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 "base64.h"
  17. #include "eap_i.h"
  18. #include "tncc.h"
  19. struct eap_tnc_data {
  20. enum { WAIT_START, PROC_MSG, WAIT_FRAG_ACK, DONE, FAIL } state;
  21. struct tncc_data *tncc;
  22. struct wpabuf *in_buf;
  23. struct wpabuf *out_buf;
  24. size_t out_used;
  25. size_t fragment_size;
  26. };
  27. /* EAP-TNC Flags */
  28. #define EAP_TNC_FLAGS_LENGTH_INCLUDED 0x80
  29. #define EAP_TNC_FLAGS_MORE_FRAGMENTS 0x40
  30. #define EAP_TNC_FLAGS_START 0x20
  31. #define EAP_TNC_VERSION_MASK 0x07
  32. #define EAP_TNC_VERSION 1
  33. static void * eap_tnc_init(struct eap_sm *sm)
  34. {
  35. struct eap_tnc_data *data;
  36. data = os_zalloc(sizeof(*data));
  37. if (data == NULL)
  38. return NULL;
  39. data->state = WAIT_START;
  40. data->fragment_size = 1300;
  41. data->tncc = tncc_init();
  42. if (data->tncc == NULL) {
  43. os_free(data);
  44. return NULL;
  45. }
  46. return data;
  47. }
  48. static void eap_tnc_deinit(struct eap_sm *sm, void *priv)
  49. {
  50. struct eap_tnc_data *data = priv;
  51. wpabuf_free(data->in_buf);
  52. wpabuf_free(data->out_buf);
  53. tncc_deinit(data->tncc);
  54. os_free(data);
  55. }
  56. static struct wpabuf * eap_tnc_build_frag_ack(u8 id, u8 code)
  57. {
  58. struct wpabuf *msg;
  59. msg = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 0, code, id);
  60. if (msg == NULL) {
  61. wpa_printf(MSG_ERROR, "EAP-TNC: Failed to allocate memory "
  62. "for fragment ack");
  63. return NULL;
  64. }
  65. wpa_printf(MSG_DEBUG, "EAP-TNC: Send fragment ack");
  66. return msg;
  67. }
  68. static struct wpabuf * eap_tnc_build_msg(struct eap_tnc_data *data,
  69. struct eap_method_ret *ret, u8 id)
  70. {
  71. struct wpabuf *resp;
  72. u8 flags;
  73. size_t send_len, plen;
  74. ret->ignore = FALSE;
  75. wpa_printf(MSG_DEBUG, "EAP-TNC: Generating Response");
  76. ret->allowNotifications = TRUE;
  77. flags = EAP_TNC_VERSION;
  78. send_len = wpabuf_len(data->out_buf) - data->out_used;
  79. if (1 + send_len > data->fragment_size) {
  80. send_len = data->fragment_size - 1;
  81. flags |= EAP_TNC_FLAGS_MORE_FRAGMENTS;
  82. if (data->out_used == 0) {
  83. flags |= EAP_TNC_FLAGS_LENGTH_INCLUDED;
  84. send_len -= 4;
  85. }
  86. }
  87. plen = 1 + send_len;
  88. if (flags & EAP_TNC_FLAGS_LENGTH_INCLUDED)
  89. plen += 4;
  90. resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, plen,
  91. EAP_CODE_RESPONSE, id);
  92. if (resp == NULL)
  93. return NULL;
  94. wpabuf_put_u8(resp, flags); /* Flags */
  95. if (flags & EAP_TNC_FLAGS_LENGTH_INCLUDED)
  96. wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
  97. wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
  98. send_len);
  99. data->out_used += send_len;
  100. ret->methodState = METHOD_MAY_CONT;
  101. ret->decision = DECISION_FAIL;
  102. if (data->out_used == wpabuf_len(data->out_buf)) {
  103. wpa_printf(MSG_DEBUG, "EAP-TNC: Sending out %lu bytes "
  104. "(message sent completely)",
  105. (unsigned long) send_len);
  106. wpabuf_free(data->out_buf);
  107. data->out_buf = NULL;
  108. data->out_used = 0;
  109. } else {
  110. wpa_printf(MSG_DEBUG, "EAP-TNC: Sending out %lu bytes "
  111. "(%lu more to send)", (unsigned long) send_len,
  112. (unsigned long) wpabuf_len(data->out_buf) -
  113. data->out_used);
  114. data->state = WAIT_FRAG_ACK;
  115. }
  116. return resp;
  117. }
  118. static int eap_tnc_process_cont(struct eap_tnc_data *data,
  119. const u8 *buf, size_t len)
  120. {
  121. /* Process continuation of a pending message */
  122. if (len > wpabuf_tailroom(data->in_buf)) {
  123. wpa_printf(MSG_DEBUG, "EAP-TNC: Fragment overflow");
  124. data->state = FAIL;
  125. return -1;
  126. }
  127. wpabuf_put_data(data->in_buf, buf, len);
  128. wpa_printf(MSG_DEBUG, "EAP-TNC: Received %lu bytes, waiting for "
  129. "%lu bytes more", (unsigned long) len,
  130. (unsigned long) wpabuf_tailroom(data->in_buf));
  131. return 0;
  132. }
  133. static struct wpabuf * eap_tnc_process_fragment(struct eap_tnc_data *data,
  134. struct eap_method_ret *ret,
  135. u8 id, u8 flags,
  136. u32 message_length,
  137. const u8 *buf, size_t len)
  138. {
  139. /* Process a fragment that is not the last one of the message */
  140. if (data->in_buf == NULL && !(flags & EAP_TNC_FLAGS_LENGTH_INCLUDED)) {
  141. wpa_printf(MSG_DEBUG, "EAP-TNC: No Message Length field in a "
  142. "fragmented packet");
  143. ret->ignore = TRUE;
  144. return NULL;
  145. }
  146. if (data->in_buf == NULL) {
  147. /* First fragment of the message */
  148. data->in_buf = wpabuf_alloc(message_length);
  149. if (data->in_buf == NULL) {
  150. wpa_printf(MSG_DEBUG, "EAP-TNC: No memory for "
  151. "message");
  152. ret->ignore = TRUE;
  153. return NULL;
  154. }
  155. wpabuf_put_data(data->in_buf, buf, len);
  156. wpa_printf(MSG_DEBUG, "EAP-TNC: Received %lu bytes in first "
  157. "fragment, waiting for %lu bytes more",
  158. (unsigned long) len,
  159. (unsigned long) wpabuf_tailroom(data->in_buf));
  160. }
  161. return eap_tnc_build_frag_ack(id, EAP_CODE_RESPONSE);
  162. }
  163. static struct wpabuf * eap_tnc_process(struct eap_sm *sm, void *priv,
  164. struct eap_method_ret *ret,
  165. const struct wpabuf *reqData)
  166. {
  167. struct eap_tnc_data *data = priv;
  168. struct wpabuf *resp;
  169. const u8 *pos, *end;
  170. u8 *rpos, *rpos1;
  171. size_t len, rlen;
  172. size_t imc_len;
  173. char *start_buf, *end_buf;
  174. size_t start_len, end_len;
  175. int tncs_done = 0;
  176. u8 flags, id;
  177. u32 message_length = 0;
  178. struct wpabuf tmpbuf;
  179. pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_TNC, reqData, &len);
  180. if (pos == NULL) {
  181. wpa_printf(MSG_INFO, "EAP-TNC: Invalid frame (pos=%p len=%lu)",
  182. pos, (unsigned long) len);
  183. ret->ignore = TRUE;
  184. return NULL;
  185. }
  186. id = eap_get_id(reqData);
  187. end = pos + len;
  188. if (len == 0)
  189. flags = 0; /* fragment ack */
  190. else
  191. flags = *pos++;
  192. if (len > 0 && (flags & EAP_TNC_VERSION_MASK) != EAP_TNC_VERSION) {
  193. wpa_printf(MSG_DEBUG, "EAP-TNC: Unsupported version %d",
  194. flags & EAP_TNC_VERSION_MASK);
  195. ret->ignore = TRUE;
  196. return NULL;
  197. }
  198. if (flags & EAP_TNC_FLAGS_LENGTH_INCLUDED) {
  199. if (end - pos < 4) {
  200. wpa_printf(MSG_DEBUG, "EAP-TNC: Message underflow");
  201. ret->ignore = TRUE;
  202. return NULL;
  203. }
  204. message_length = WPA_GET_BE32(pos);
  205. pos += 4;
  206. if (message_length < (u32) (end - pos)) {
  207. wpa_printf(MSG_DEBUG, "EAP-TNC: Invalid Message "
  208. "Length (%d; %ld remaining in this msg)",
  209. message_length, (long) (end - pos));
  210. ret->ignore = TRUE;
  211. return NULL;
  212. }
  213. }
  214. wpa_printf(MSG_DEBUG, "EAP-TNC: Received packet: Flags 0x%x "
  215. "Message Length %u", flags, message_length);
  216. if (data->state == WAIT_FRAG_ACK) {
  217. if (len != 0) {
  218. wpa_printf(MSG_DEBUG, "EAP-TNC: Unexpected payload in "
  219. "WAIT_FRAG_ACK state");
  220. ret->ignore = TRUE;
  221. return NULL;
  222. }
  223. wpa_printf(MSG_DEBUG, "EAP-TNC: Fragment acknowledged");
  224. data->state = PROC_MSG;
  225. return eap_tnc_build_msg(data, ret, id);
  226. }
  227. if (data->in_buf && eap_tnc_process_cont(data, pos, end - pos) < 0) {
  228. ret->ignore = TRUE;
  229. return NULL;
  230. }
  231. if (flags & EAP_TNC_FLAGS_MORE_FRAGMENTS) {
  232. return eap_tnc_process_fragment(data, ret, id, flags,
  233. message_length, pos,
  234. end - pos);
  235. }
  236. if (data->in_buf == NULL) {
  237. /* Wrap unfragmented messages as wpabuf without extra copy */
  238. wpabuf_set(&tmpbuf, pos, end - pos);
  239. data->in_buf = &tmpbuf;
  240. }
  241. if (data->state == WAIT_START) {
  242. if (!(flags & EAP_TNC_FLAGS_START)) {
  243. wpa_printf(MSG_DEBUG, "EAP-TNC: Server did not use "
  244. "start flag in the first message");
  245. ret->ignore = TRUE;
  246. goto fail;
  247. }
  248. tncc_init_connection(data->tncc);
  249. data->state = PROC_MSG;
  250. } else {
  251. enum tncc_process_res res;
  252. if (flags & EAP_TNC_FLAGS_START) {
  253. wpa_printf(MSG_DEBUG, "EAP-TNC: Server used start "
  254. "flag again");
  255. ret->ignore = TRUE;
  256. goto fail;
  257. }
  258. res = tncc_process_if_tnccs(data->tncc,
  259. wpabuf_head(data->in_buf),
  260. wpabuf_len(data->in_buf));
  261. switch (res) {
  262. case TNCCS_PROCESS_ERROR:
  263. ret->ignore = TRUE;
  264. goto fail;
  265. case TNCCS_PROCESS_OK_NO_RECOMMENDATION:
  266. case TNCCS_RECOMMENDATION_ERROR:
  267. wpa_printf(MSG_DEBUG, "EAP-TNC: No "
  268. "TNCCS-Recommendation received");
  269. break;
  270. case TNCCS_RECOMMENDATION_ALLOW:
  271. wpa_msg(sm->msg_ctx, MSG_INFO,
  272. "TNC: Recommendation = allow");
  273. tncs_done = 1;
  274. break;
  275. case TNCCS_RECOMMENDATION_NONE:
  276. wpa_msg(sm->msg_ctx, MSG_INFO,
  277. "TNC: Recommendation = none");
  278. tncs_done = 1;
  279. break;
  280. case TNCCS_RECOMMENDATION_ISOLATE:
  281. wpa_msg(sm->msg_ctx, MSG_INFO,
  282. "TNC: Recommendation = isolate");
  283. tncs_done = 1;
  284. break;
  285. }
  286. }
  287. if (data->in_buf != &tmpbuf)
  288. wpabuf_free(data->in_buf);
  289. data->in_buf = NULL;
  290. ret->ignore = FALSE;
  291. ret->methodState = METHOD_MAY_CONT;
  292. ret->decision = DECISION_UNCOND_SUCC;
  293. ret->allowNotifications = TRUE;
  294. if (data->out_buf) {
  295. data->state = PROC_MSG;
  296. return eap_tnc_build_msg(data, ret, id);
  297. }
  298. if (tncs_done) {
  299. resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TNC, 1,
  300. EAP_CODE_RESPONSE, eap_get_id(reqData));
  301. if (resp == NULL)
  302. return NULL;
  303. wpabuf_put_u8(resp, EAP_TNC_VERSION);
  304. wpa_printf(MSG_DEBUG, "EAP-TNC: TNCS done - reply with an "
  305. "empty ACK message");
  306. return resp;
  307. }
  308. imc_len = tncc_total_send_len(data->tncc);
  309. start_buf = tncc_if_tnccs_start(data->tncc);
  310. if (start_buf == NULL)
  311. return NULL;
  312. start_len = os_strlen(start_buf);
  313. end_buf = tncc_if_tnccs_end();
  314. if (end_buf == NULL) {
  315. os_free(start_buf);
  316. return NULL;
  317. }
  318. end_len = os_strlen(end_buf);
  319. rlen = start_len + imc_len + end_len;
  320. resp = wpabuf_alloc(rlen);
  321. if (resp == NULL) {
  322. os_free(start_buf);
  323. os_free(end_buf);
  324. return NULL;
  325. }
  326. wpabuf_put_data(resp, start_buf, start_len);
  327. os_free(start_buf);
  328. rpos1 = wpabuf_put(resp, 0);
  329. rpos = tncc_copy_send_buf(data->tncc, rpos1);
  330. wpabuf_put(resp, rpos - rpos1);
  331. wpabuf_put_data(resp, end_buf, end_len);
  332. os_free(end_buf);
  333. wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-TNC: Response",
  334. wpabuf_head(resp), wpabuf_len(resp));
  335. data->out_buf = resp;
  336. data->state = PROC_MSG;
  337. return eap_tnc_build_msg(data, ret, id);
  338. fail:
  339. if (data->in_buf == &tmpbuf)
  340. data->in_buf = NULL;
  341. return NULL;
  342. }
  343. int eap_peer_tnc_register(void)
  344. {
  345. struct eap_method *eap;
  346. int ret;
  347. eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
  348. EAP_VENDOR_IETF, EAP_TYPE_TNC, "TNC");
  349. if (eap == NULL)
  350. return -1;
  351. eap->init = eap_tnc_init;
  352. eap->deinit = eap_tnc_deinit;
  353. eap->process = eap_tnc_process;
  354. ret = eap_peer_method_register(eap);
  355. if (ret)
  356. eap_peer_method_free(eap);
  357. return ret;
  358. }