2 * EAP peer method: EAP-TNC (Trusted Network Connect)
3 * Copyright (c) 2007, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
24 enum { WAIT_START
, PROC_MSG
, WAIT_FRAG_ACK
, DONE
, FAIL
} state
;
25 struct tncc_data
*tncc
;
26 struct wpabuf
*in_buf
;
27 struct wpabuf
*out_buf
;
34 #define EAP_TNC_FLAGS_LENGTH_INCLUDED 0x80
35 #define EAP_TNC_FLAGS_MORE_FRAGMENTS 0x40
36 #define EAP_TNC_FLAGS_START 0x20
37 #define EAP_TNC_VERSION_MASK 0x07
39 #define EAP_TNC_VERSION 1
42 static void * eap_tnc_init(struct eap_sm
*sm
)
44 struct eap_tnc_data
*data
;
46 data
= os_zalloc(sizeof(*data
));
49 data
->state
= WAIT_START
;
50 data
->fragment_size
= 1300;
51 data
->tncc
= tncc_init();
52 if (data
->tncc
== NULL
) {
61 static void eap_tnc_deinit(struct eap_sm
*sm
, void *priv
)
63 struct eap_tnc_data
*data
= priv
;
65 wpabuf_free(data
->in_buf
);
66 wpabuf_free(data
->out_buf
);
67 tncc_deinit(data
->tncc
);
72 static struct wpabuf
* eap_tnc_build_frag_ack(u8 id
, u8 code
)
76 msg
= eap_msg_alloc(EAP_VENDOR_IETF
, EAP_TYPE_TNC
, 0, code
, id
);
78 wpa_printf(MSG_ERROR
, "EAP-TNC: Failed to allocate memory "
83 wpa_printf(MSG_DEBUG
, "EAP-TNC: Send fragment ack");
89 static struct wpabuf
* eap_tnc_build_msg(struct eap_tnc_data
*data
,
90 struct eap_method_ret
*ret
, u8 id
)
94 size_t send_len
, plen
;
97 wpa_printf(MSG_DEBUG
, "EAP-TNC: Generating Response");
98 ret
->allowNotifications
= TRUE
;
100 flags
= EAP_TNC_VERSION
;
101 send_len
= wpabuf_len(data
->out_buf
) - data
->out_used
;
102 if (1 + send_len
> data
->fragment_size
) {
103 send_len
= data
->fragment_size
- 1;
104 flags
|= EAP_TNC_FLAGS_MORE_FRAGMENTS
;
105 if (data
->out_used
== 0) {
106 flags
|= EAP_TNC_FLAGS_LENGTH_INCLUDED
;
112 if (flags
& EAP_TNC_FLAGS_LENGTH_INCLUDED
)
114 resp
= eap_msg_alloc(EAP_VENDOR_IETF
, EAP_TYPE_TNC
, plen
,
115 EAP_CODE_RESPONSE
, id
);
119 wpabuf_put_u8(resp
, flags
); /* Flags */
120 if (flags
& EAP_TNC_FLAGS_LENGTH_INCLUDED
)
121 wpabuf_put_be32(resp
, wpabuf_len(data
->out_buf
));
123 wpabuf_put_data(resp
, wpabuf_head_u8(data
->out_buf
) + data
->out_used
,
125 data
->out_used
+= send_len
;
127 ret
->methodState
= METHOD_MAY_CONT
;
128 ret
->decision
= DECISION_FAIL
;
130 if (data
->out_used
== wpabuf_len(data
->out_buf
)) {
131 wpa_printf(MSG_DEBUG
, "EAP-TNC: Sending out %lu bytes "
132 "(message sent completely)",
133 (unsigned long) send_len
);
134 wpabuf_free(data
->out_buf
);
135 data
->out_buf
= NULL
;
138 wpa_printf(MSG_DEBUG
, "EAP-TNC: Sending out %lu bytes "
139 "(%lu more to send)", (unsigned long) send_len
,
140 (unsigned long) wpabuf_len(data
->out_buf
) -
142 data
->state
= WAIT_FRAG_ACK
;
149 static int eap_tnc_process_cont(struct eap_tnc_data
*data
,
150 const u8
*buf
, size_t len
)
152 /* Process continuation of a pending message */
153 if (len
> wpabuf_tailroom(data
->in_buf
)) {
154 wpa_printf(MSG_DEBUG
, "EAP-TNC: Fragment overflow");
159 wpabuf_put_data(data
->in_buf
, buf
, len
);
160 wpa_printf(MSG_DEBUG
, "EAP-TNC: Received %lu bytes, waiting for "
161 "%lu bytes more", (unsigned long) len
,
162 (unsigned long) wpabuf_tailroom(data
->in_buf
));
168 static struct wpabuf
* eap_tnc_process_fragment(struct eap_tnc_data
*data
,
169 struct eap_method_ret
*ret
,
172 const u8
*buf
, size_t len
)
174 /* Process a fragment that is not the last one of the message */
175 if (data
->in_buf
== NULL
&& !(flags
& EAP_TNC_FLAGS_LENGTH_INCLUDED
)) {
176 wpa_printf(MSG_DEBUG
, "EAP-TNC: No Message Length field in a "
177 "fragmented packet");
182 if (data
->in_buf
== NULL
) {
183 /* First fragment of the message */
184 data
->in_buf
= wpabuf_alloc(message_length
);
185 if (data
->in_buf
== NULL
) {
186 wpa_printf(MSG_DEBUG
, "EAP-TNC: No memory for "
191 wpabuf_put_data(data
->in_buf
, buf
, len
);
192 wpa_printf(MSG_DEBUG
, "EAP-TNC: Received %lu bytes in first "
193 "fragment, waiting for %lu bytes more",
195 (unsigned long) wpabuf_tailroom(data
->in_buf
));
198 return eap_tnc_build_frag_ack(id
, EAP_CODE_RESPONSE
);
202 static struct wpabuf
* eap_tnc_process(struct eap_sm
*sm
, void *priv
,
203 struct eap_method_ret
*ret
,
204 const struct wpabuf
*reqData
)
206 struct eap_tnc_data
*data
= priv
;
212 char *start_buf
, *end_buf
;
213 size_t start_len
, end_len
;
216 u32 message_length
= 0;
217 struct wpabuf tmpbuf
;
219 pos
= eap_hdr_validate(EAP_VENDOR_IETF
, EAP_TYPE_TNC
, reqData
, &len
);
221 wpa_printf(MSG_INFO
, "EAP-TNC: Invalid frame (pos=%p len=%lu)",
222 pos
, (unsigned long) len
);
227 id
= eap_get_id(reqData
);
232 flags
= 0; /* fragment ack */
236 if (len
> 0 && (flags
& EAP_TNC_VERSION_MASK
) != EAP_TNC_VERSION
) {
237 wpa_printf(MSG_DEBUG
, "EAP-TNC: Unsupported version %d",
238 flags
& EAP_TNC_VERSION_MASK
);
243 if (flags
& EAP_TNC_FLAGS_LENGTH_INCLUDED
) {
245 wpa_printf(MSG_DEBUG
, "EAP-TNC: Message underflow");
249 message_length
= WPA_GET_BE32(pos
);
252 if (message_length
< (u32
) (end
- pos
)) {
253 wpa_printf(MSG_DEBUG
, "EAP-TNC: Invalid Message "
254 "Length (%d; %ld remaining in this msg)",
255 message_length
, (long) (end
- pos
));
261 wpa_printf(MSG_DEBUG
, "EAP-TNC: Received packet: Flags 0x%x "
262 "Message Length %u", flags
, message_length
);
264 if (data
->state
== WAIT_FRAG_ACK
) {
266 wpa_printf(MSG_DEBUG
, "EAP-TNC: Unexpected payload in "
267 "WAIT_FRAG_ACK state");
271 wpa_printf(MSG_DEBUG
, "EAP-TNC: Fragment acknowledged");
272 data
->state
= PROC_MSG
;
273 return eap_tnc_build_msg(data
, ret
, id
);
276 if (data
->in_buf
&& eap_tnc_process_cont(data
, pos
, end
- pos
) < 0) {
281 if (flags
& EAP_TNC_FLAGS_MORE_FRAGMENTS
) {
282 return eap_tnc_process_fragment(data
, ret
, id
, flags
,
287 if (data
->in_buf
== NULL
) {
288 /* Wrap unfragmented messages as wpabuf without extra copy */
289 wpabuf_set(&tmpbuf
, pos
, end
- pos
);
290 data
->in_buf
= &tmpbuf
;
293 if (data
->state
== WAIT_START
) {
294 if (!(flags
& EAP_TNC_FLAGS_START
)) {
295 wpa_printf(MSG_DEBUG
, "EAP-TNC: Server did not use "
296 "start flag in the first message");
301 tncc_init_connection(data
->tncc
);
303 data
->state
= PROC_MSG
;
305 enum tncc_process_res res
;
307 if (flags
& EAP_TNC_FLAGS_START
) {
308 wpa_printf(MSG_DEBUG
, "EAP-TNC: Server used start "
314 res
= tncc_process_if_tnccs(data
->tncc
,
315 wpabuf_head(data
->in_buf
),
316 wpabuf_len(data
->in_buf
));
318 case TNCCS_PROCESS_ERROR
:
321 case TNCCS_PROCESS_OK_NO_RECOMMENDATION
:
322 case TNCCS_RECOMMENDATION_ERROR
:
323 wpa_printf(MSG_DEBUG
, "EAP-TNC: No "
324 "TNCCS-Recommendation received");
326 case TNCCS_RECOMMENDATION_ALLOW
:
327 wpa_msg(sm
->msg_ctx
, MSG_INFO
,
328 "TNC: Recommendation = allow");
331 case TNCCS_RECOMMENDATION_NONE
:
332 wpa_msg(sm
->msg_ctx
, MSG_INFO
,
333 "TNC: Recommendation = none");
336 case TNCCS_RECOMMENDATION_ISOLATE
:
337 wpa_msg(sm
->msg_ctx
, MSG_INFO
,
338 "TNC: Recommendation = isolate");
344 if (data
->in_buf
!= &tmpbuf
)
345 wpabuf_free(data
->in_buf
);
349 ret
->methodState
= METHOD_MAY_CONT
;
350 ret
->decision
= DECISION_UNCOND_SUCC
;
351 ret
->allowNotifications
= TRUE
;
354 data
->state
= PROC_MSG
;
355 return eap_tnc_build_msg(data
, ret
, id
);
359 resp
= eap_msg_alloc(EAP_VENDOR_IETF
, EAP_TYPE_TNC
, 1,
360 EAP_CODE_RESPONSE
, eap_get_id(reqData
));
364 wpabuf_put_u8(resp
, EAP_TNC_VERSION
);
365 wpa_printf(MSG_DEBUG
, "EAP-TNC: TNCS done - reply with an "
366 "empty ACK message");
370 imc_len
= tncc_total_send_len(data
->tncc
);
372 start_buf
= tncc_if_tnccs_start(data
->tncc
);
373 if (start_buf
== NULL
)
375 start_len
= os_strlen(start_buf
);
376 end_buf
= tncc_if_tnccs_end();
377 if (end_buf
== NULL
) {
381 end_len
= os_strlen(end_buf
);
383 rlen
= start_len
+ imc_len
+ end_len
;
384 resp
= wpabuf_alloc(rlen
);
391 wpabuf_put_data(resp
, start_buf
, start_len
);
394 rpos1
= wpabuf_put(resp
, 0);
395 rpos
= tncc_copy_send_buf(data
->tncc
, rpos1
);
396 wpabuf_put(resp
, rpos
- rpos1
);
398 wpabuf_put_data(resp
, end_buf
, end_len
);
401 wpa_hexdump_ascii(MSG_MSGDUMP
, "EAP-TNC: Response",
402 wpabuf_head(resp
), wpabuf_len(resp
));
404 data
->out_buf
= resp
;
405 data
->state
= PROC_MSG
;
406 return eap_tnc_build_msg(data
, ret
, id
);
410 int eap_peer_tnc_register(void)
412 struct eap_method
*eap
;
415 eap
= eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION
,
416 EAP_VENDOR_IETF
, EAP_TYPE_TNC
, "TNC");
420 eap
->init
= eap_tnc_init
;
421 eap
->deinit
= eap_tnc_deinit
;
422 eap
->process
= eap_tnc_process
;
424 ret
= eap_peer_method_register(eap
);
426 eap_peer_method_free(eap
);