2 * Copyright (C) 2011 Martin Willi
3 * Copyright (C) 2011 revosec AG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "quick_mode.h"
21 #include <sa/keymat_v1.h>
22 #include <encoding/payloads/sa_payload.h>
23 #include <encoding/payloads/nonce_payload.h>
24 #include <encoding/payloads/id_payload.h>
26 typedef struct private_quick_mode_t private_quick_mode_t
;
29 * Private members of a quick_mode_t task.
31 struct private_quick_mode_t
{
34 * Public methods and task_t interface.
44 * TRUE if we are initiating quick mode
49 * Traffic selector of initiator
51 traffic_selector_t
*tsi
;
54 * Traffic selector of responder
56 traffic_selector_t
*tsr
;
79 * selected CHILD_SA proposal
84 * Config of CHILD_SA to establish
89 * CHILD_SA we are about to establish
98 /** states of quick mode */
106 * Install negotiated CHILD_SA
108 static bool install(private_quick_mode_t
*this)
110 status_t status
, status_i
, status_o
;
111 chunk_t encr_i
, encr_r
, integ_i
, integ_r
;
112 linked_list_t
*tsi
, *tsr
;
114 this->child_sa
->set_proposal(this->child_sa
, this->proposal
);
115 this->child_sa
->set_state(this->child_sa
, CHILD_INSTALLING
);
116 this->child_sa
->set_mode(this->child_sa
, MODE_TUNNEL
);
117 this->child_sa
->set_protocol(this->child_sa
,
118 this->proposal
->get_protocol(this->proposal
));
120 status_i
= status_o
= FAILED
;
121 encr_i
= encr_r
= integ_i
= integ_r
= chunk_empty
;
122 tsi
= linked_list_create();
123 tsr
= linked_list_create();
124 tsi
->insert_last(tsi
, this->tsi
);
125 tsr
->insert_last(tsr
, this->tsr
);
126 if (this->keymat
->derive_child_keys(this->keymat
, this->proposal
, NULL
,
127 this->spi_i
, this->spi_r
, this->nonce_i
, this->nonce_r
,
128 &encr_i
, &integ_i
, &encr_r
, &integ_r
))
132 status_i
= this->child_sa
->install(this->child_sa
, encr_r
, integ_r
,
133 this->spi_i
, 0, TRUE
, FALSE
, tsi
, tsr
);
134 status_o
= this->child_sa
->install(this->child_sa
, encr_i
, integ_i
,
135 this->spi_r
, 0, FALSE
, FALSE
, tsi
, tsr
);
139 status_i
= this->child_sa
->install(this->child_sa
, encr_i
, integ_i
,
140 this->spi_r
, 0, TRUE
, FALSE
, tsr
, tsi
);
141 status_o
= this->child_sa
->install(this->child_sa
, encr_r
, integ_r
,
142 this->spi_i
, 0, FALSE
, FALSE
, tsr
, tsi
);
145 chunk_clear(&integ_i
);
146 chunk_clear(&integ_r
);
147 chunk_clear(&encr_i
);
148 chunk_clear(&encr_r
);
150 if (status_i
!= SUCCESS
|| status_o
!= SUCCESS
)
152 DBG1(DBG_IKE
, "unable to install %s%s%sIPsec SA (SAD) in kernel",
153 (status_i
!= SUCCESS
) ?
"inbound " : "",
154 (status_i
!= SUCCESS
&& status_o
!= SUCCESS
) ?
"and ": "",
155 (status_o
!= SUCCESS
) ?
"outbound " : "");
163 status
= this->child_sa
->add_policies(this->child_sa
, tsi
, tsr
);
167 status
= this->child_sa
->add_policies(this->child_sa
, tsr
, tsi
);
171 if (status
!= SUCCESS
)
173 DBG1(DBG_IKE
, "unable to install IPsec policies (SPD) in kernel");
177 charon
->bus
->child_keys(charon
->bus
, this->child_sa
, this->initiator
,
178 NULL
, this->nonce_i
, this->nonce_r
);
180 /* add to IKE_SA, and remove from task */
181 this->child_sa
->set_state(this->child_sa
, CHILD_INSTALLED
);
182 this->ike_sa
->add_child_sa(this->ike_sa
, this->child_sa
);
184 DBG0(DBG_IKE
, "CHILD_SA %s{%d} established "
185 "with SPIs %.8x_i %.8x_o and TS %#R=== %#R",
186 this->child_sa
->get_name(this->child_sa
),
187 this->child_sa
->get_reqid(this->child_sa
),
188 ntohl(this->child_sa
->get_spi(this->child_sa
, TRUE
)),
189 ntohl(this->child_sa
->get_spi(this->child_sa
, FALSE
)),
190 this->child_sa
->get_traffic_selectors(this->child_sa
, TRUE
),
191 this->child_sa
->get_traffic_selectors(this->child_sa
, FALSE
));
193 charon
->bus
->child_updown(charon
->bus
, this->child_sa
, TRUE
);
195 this->child_sa
= NULL
;
200 METHOD(task_t
, build_i
, status_t
,
201 private_quick_mode_t
*this, message_t
*message
)
207 enumerator_t
*enumerator
;
208 sa_payload_t
*sa_payload
;
209 nonce_payload_t
*nonce_payload
;
210 id_payload_t
*id_payload
;
211 traffic_selector_t
*ts
;
213 proposal_t
*proposal
;
216 this->child_sa
= child_sa_create(
217 this->ike_sa
->get_my_host(this->ike_sa
),
218 this->ike_sa
->get_other_host(this->ike_sa
),
219 this->config
, 0, FALSE
);
221 list
= this->config
->get_proposals(this->config
, TRUE
);
223 this->spi_i
= this->child_sa
->alloc_spi(this->child_sa
, PROTO_ESP
);
226 DBG1(DBG_IKE
, "allocating SPI from kernel failed");
229 enumerator
= list
->create_enumerator(list
);
230 while (enumerator
->enumerate(enumerator
, &proposal
))
232 proposal
->set_spi(proposal
, this->spi_i
);
234 enumerator
->destroy(enumerator
);
236 sa_payload
= sa_payload_create_from_proposal_list(
237 SECURITY_ASSOCIATION_V1
, list
);
238 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
239 message
->add_payload(message
, &sa_payload
->payload_interface
);
241 rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
244 DBG1(DBG_IKE
, "no RNG found to create nonce");
247 rng
->allocate_bytes(rng
, NONCE_SIZE
, &this->nonce_i
);
249 nonce_payload
= nonce_payload_create(NONCE_V1
);
250 nonce_payload
->set_nonce(nonce_payload
, this->nonce_i
);
251 message
->add_payload(message
, &nonce_payload
->payload_interface
);
253 list
= this->config
->get_traffic_selectors(this->config
, TRUE
, NULL
,
254 this->ike_sa
->get_my_host(this->ike_sa
));
255 if (list
->get_first(list
, (void**)&ts
) != SUCCESS
)
257 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
258 DBG1(DBG_IKE
, "traffic selector missing");
261 id_payload
= id_payload_create_from_ts(ts
);
262 this->tsi
= ts
->clone(ts
);
263 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
264 message
->add_payload(message
, &id_payload
->payload_interface
);
266 list
= this->config
->get_traffic_selectors(this->config
, FALSE
, NULL
,
267 this->ike_sa
->get_other_host(this->ike_sa
));
268 if (list
->get_first(list
, (void**)&ts
) != SUCCESS
)
270 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
271 DBG1(DBG_IKE
, "traffic selector missing");
274 id_payload
= id_payload_create_from_ts(ts
);
275 this->tsr
= ts
->clone(ts
);
276 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
277 message
->add_payload(message
, &id_payload
->payload_interface
);
279 /* TODO-IKEv1: Add HASH(1) */
285 /* TODO-IKEv1: Send HASH(3) */
293 METHOD(task_t
, process_r
, status_t
,
294 private_quick_mode_t
*this, message_t
*message
)
300 sa_payload_t
*sa_payload
;
301 nonce_payload_t
*nonce_payload
;
302 id_payload_t
*id_payload
;
304 linked_list_t
*tsi
, *tsr
, *list
;
305 peer_cfg_t
*peer_cfg
;
307 enumerator_t
*enumerator
;
310 enumerator
= message
->create_payload_enumerator(message
);
311 while (enumerator
->enumerate(enumerator
, &payload
))
313 if (payload
->get_type(payload
) == ID_V1
)
315 id_payload
= (id_payload_t
*)payload
;
319 this->tsi
= id_payload
->get_ts(id_payload
);
324 this->tsr
= id_payload
->get_ts(id_payload
);
329 enumerator
->destroy(enumerator
);
331 /* TODO-IKEv1: create host2host TS if ID payloads missing */
333 me
= this->ike_sa
->get_virtual_ip(this->ike_sa
, TRUE
);
336 me
= this->ike_sa
->get_my_host(this->ike_sa
);
338 other
= this->ike_sa
->get_virtual_ip(this->ike_sa
, FALSE
);
341 other
= this->ike_sa
->get_other_host(this->ike_sa
);
343 peer_cfg
= this->ike_sa
->get_peer_cfg(this->ike_sa
);
344 tsi
= linked_list_create();
345 tsr
= linked_list_create();
346 tsi
->insert_last(tsi
, this->tsi
);
347 tsr
->insert_last(tsr
, this->tsr
);
348 this->config
= peer_cfg
->select_child_cfg(peer_cfg
, tsr
, tsi
,
354 DBG1(DBG_IKE
, "no child config found");
358 sa_payload
= (sa_payload_t
*)message
->get_payload(message
,
359 SECURITY_ASSOCIATION_V1
);
362 DBG1(DBG_IKE
, "sa payload missing");
365 list
= sa_payload
->get_proposals(sa_payload
);
366 this->proposal
= this->config
->select_proposal(this->config
,
368 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
371 DBG1(DBG_IKE
, "no matching proposal found");
374 this->spi_i
= this->proposal
->get_spi(this->proposal
);
376 nonce_payload
= (nonce_payload_t
*)message
->get_payload(message
,
380 DBG1(DBG_IKE
, "Nonce payload missing");
383 this->nonce_i
= nonce_payload
->get_nonce(nonce_payload
);
385 /* TODO-IKEv1: verify HASH(1) */
387 this->child_sa
= child_sa_create(
388 this->ike_sa
->get_my_host(this->ike_sa
),
389 this->ike_sa
->get_other_host(this->ike_sa
),
390 this->config
, 0, FALSE
);
395 /* TODO-IKEv1: verify HASH(3) */
409 METHOD(task_t
, build_r
, status_t
,
410 private_quick_mode_t
*this, message_t
*message
)
416 sa_payload_t
*sa_payload
;
417 nonce_payload_t
*nonce_payload
;
418 id_payload_t
*id_payload
;
421 this->spi_r
= this->child_sa
->alloc_spi(this->child_sa
, PROTO_ESP
);
424 DBG1(DBG_IKE
, "allocating SPI from kernel failed");
427 this->proposal
->set_spi(this->proposal
, this->spi_r
);
429 sa_payload
= sa_payload_create_from_proposal(
430 SECURITY_ASSOCIATION_V1
, this->proposal
);
431 message
->add_payload(message
, &sa_payload
->payload_interface
);
433 rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
436 DBG1(DBG_IKE
, "no RNG found to create nonce");
439 rng
->allocate_bytes(rng
, NONCE_SIZE
, &this->nonce_r
);
441 nonce_payload
= nonce_payload_create(NONCE_V1
);
442 nonce_payload
->set_nonce(nonce_payload
, this->nonce_r
);
443 message
->add_payload(message
, &nonce_payload
->payload_interface
);
445 id_payload
= id_payload_create_from_ts(this->tsi
);
446 message
->add_payload(message
, &id_payload
->payload_interface
);
447 id_payload
= id_payload_create_from_ts(this->tsr
);
448 message
->add_payload(message
, &id_payload
->payload_interface
);
450 /* TODO-IKEv1: add HASH(2) */
452 this->state
= QM_NEGOTIATED
;
460 METHOD(task_t
, process_i
, status_t
,
461 private_quick_mode_t
*this, message_t
*message
)
467 sa_payload_t
*sa_payload
;
468 nonce_payload_t
*nonce_payload
;
469 id_payload_t
*id_payload
;
471 traffic_selector_t
*tsi
= NULL
, *tsr
= NULL
;
473 enumerator_t
*enumerator
;
476 enumerator
= message
->create_payload_enumerator(message
);
477 while (enumerator
->enumerate(enumerator
, &payload
))
479 if (payload
->get_type(payload
) == ID_V1
)
481 id_payload
= (id_payload_t
*)payload
;
485 tsi
= id_payload
->get_ts(id_payload
);
490 tsr
= id_payload
->get_ts(id_payload
);
495 enumerator
->destroy(enumerator
);
497 /* TODO-IKEv1: create host2host TS if ID payloads missing */
499 if (!tsr
->is_contained_in(tsr
, this->tsr
) ||
500 !tsi
->is_contained_in(tsi
, this->tsi
))
504 DBG1(DBG_IKE
, "TS mismatch");
507 this->tsi
->destroy(this->tsi
);
508 this->tsr
->destroy(this->tsr
);
512 sa_payload
= (sa_payload_t
*)message
->get_payload(message
,
513 SECURITY_ASSOCIATION_V1
);
516 DBG1(DBG_IKE
, "sa payload missing");
519 list
= sa_payload
->get_proposals(sa_payload
);
520 this->proposal
= this->config
->select_proposal(this->config
,
522 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
525 DBG1(DBG_IKE
, "no matching proposal found");
528 this->spi_r
= this->proposal
->get_spi(this->proposal
);
530 nonce_payload
= (nonce_payload_t
*)message
->get_payload(message
,
534 DBG1(DBG_IKE
, "Nonce payload missing");
537 this->nonce_r
= nonce_payload
->get_nonce(nonce_payload
);
539 /* TODO-IKEv1: verify HASH(2) */
546 this->state
= QM_NEGOTIATED
;
554 METHOD(task_t
, get_type
, task_type_t
,
555 private_quick_mode_t
*this)
557 return TASK_QUICK_MODE
;
560 METHOD(task_t
, migrate
, void,
561 private_quick_mode_t
*this, ike_sa_t
*ike_sa
)
563 this->ike_sa
= ike_sa
;
566 METHOD(task_t
, destroy
, void,
567 private_quick_mode_t
*this)
569 chunk_free(&this->nonce_i
);
570 chunk_free(&this->nonce_r
);
571 DESTROY_IF(this->tsi
);
572 DESTROY_IF(this->tsr
);
573 DESTROY_IF(this->proposal
);
574 DESTROY_IF(this->child_sa
);
575 DESTROY_IF(this->config
);
580 * Described in header.
582 quick_mode_t
*quick_mode_create(ike_sa_t
*ike_sa
, child_cfg_t
*config
,
583 traffic_selector_t
*tsi
, traffic_selector_t
*tsr
)
585 private_quick_mode_t
*this;
590 .get_type
= _get_type
,
596 .initiator
= config
!= NULL
,
598 .keymat
= (keymat_v1_t
*)ike_sa
->get_keymat(ike_sa
),
604 this->public.task
.build
= _build_i
;
605 this->public.task
.process
= _process_i
;
609 this->public.task
.build
= _build_r
;
610 this->public.task
.process
= _process_r
;
613 return &this->public;