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
;
201 * Generate and add NONCE
203 static bool add_nonce(private_quick_mode_t
*this, chunk_t
*nonce
,
206 nonce_payload_t
*nonce_payload
;
209 rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
212 DBG1(DBG_IKE
, "no RNG found to create nonce");
215 rng
->allocate_bytes(rng
, NONCE_SIZE
, nonce
);
218 nonce_payload
= nonce_payload_create(NONCE_V1
);
219 nonce_payload
->set_nonce(nonce_payload
, *nonce
);
220 message
->add_payload(message
, &nonce_payload
->payload_interface
);
226 * Extract nonce from NONCE payload
228 static bool get_nonce(private_quick_mode_t
*this, chunk_t
*nonce
,
231 nonce_payload_t
*nonce_payload
;
233 nonce_payload
= (nonce_payload_t
*)message
->get_payload(message
, NONCE_V1
);
236 DBG1(DBG_IKE
, "NONCE payload missing in message");
239 *nonce
= nonce_payload
->get_nonce(nonce_payload
);
244 METHOD(task_t
, build_i
, status_t
,
245 private_quick_mode_t
*this, message_t
*message
)
251 enumerator_t
*enumerator
;
252 sa_payload_t
*sa_payload
;
253 id_payload_t
*id_payload
;
254 traffic_selector_t
*ts
;
256 proposal_t
*proposal
;
258 this->child_sa
= child_sa_create(
259 this->ike_sa
->get_my_host(this->ike_sa
),
260 this->ike_sa
->get_other_host(this->ike_sa
),
261 this->config
, 0, FALSE
);
263 list
= this->config
->get_proposals(this->config
, TRUE
);
265 this->spi_i
= this->child_sa
->alloc_spi(this->child_sa
, PROTO_ESP
);
268 DBG1(DBG_IKE
, "allocating SPI from kernel failed");
271 enumerator
= list
->create_enumerator(list
);
272 while (enumerator
->enumerate(enumerator
, &proposal
))
274 proposal
->set_spi(proposal
, this->spi_i
);
276 enumerator
->destroy(enumerator
);
278 sa_payload
= sa_payload_create_from_proposal_list(
279 SECURITY_ASSOCIATION_V1
, list
);
280 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
281 message
->add_payload(message
, &sa_payload
->payload_interface
);
283 if (!add_nonce(this, &this->nonce_i
, message
))
288 list
= this->config
->get_traffic_selectors(this->config
, TRUE
, NULL
,
289 this->ike_sa
->get_my_host(this->ike_sa
));
290 if (list
->get_first(list
, (void**)&ts
) != SUCCESS
)
292 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
293 DBG1(DBG_IKE
, "traffic selector missing");
296 id_payload
= id_payload_create_from_ts(ts
);
297 this->tsi
= ts
->clone(ts
);
298 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
299 message
->add_payload(message
, &id_payload
->payload_interface
);
301 list
= this->config
->get_traffic_selectors(this->config
, FALSE
, NULL
,
302 this->ike_sa
->get_other_host(this->ike_sa
));
303 if (list
->get_first(list
, (void**)&ts
) != SUCCESS
)
305 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
306 DBG1(DBG_IKE
, "traffic selector missing");
309 id_payload
= id_payload_create_from_ts(ts
);
310 this->tsr
= ts
->clone(ts
);
311 list
->destroy_offset(list
, offsetof(traffic_selector_t
, destroy
));
312 message
->add_payload(message
, &id_payload
->payload_interface
);
325 METHOD(task_t
, process_r
, status_t
,
326 private_quick_mode_t
*this, message_t
*message
)
332 sa_payload_t
*sa_payload
;
333 id_payload_t
*id_payload
;
335 linked_list_t
*tsi
, *tsr
, *list
;
336 peer_cfg_t
*peer_cfg
;
337 host_t
*me
, *other
, *host
;
338 enumerator_t
*enumerator
;
341 enumerator
= message
->create_payload_enumerator(message
);
342 while (enumerator
->enumerate(enumerator
, &payload
))
344 if (payload
->get_type(payload
) == ID_V1
)
346 id_payload
= (id_payload_t
*)payload
;
350 this->tsi
= id_payload
->get_ts(id_payload
);
355 this->tsr
= id_payload
->get_ts(id_payload
);
360 enumerator
->destroy(enumerator
);
364 host
= this->ike_sa
->get_other_host(this->ike_sa
);
365 this->tsi
= traffic_selector_create_from_subnet(host
->clone(host
),
366 host
->get_family(host
) == AF_INET ?
32 : 128, 0, 0);
370 host
= this->ike_sa
->get_my_host(this->ike_sa
);
371 this->tsr
= traffic_selector_create_from_subnet(host
->clone(host
),
372 host
->get_family(host
) == AF_INET ?
32 : 128, 0, 0);
375 me
= this->ike_sa
->get_virtual_ip(this->ike_sa
, TRUE
);
378 me
= this->ike_sa
->get_my_host(this->ike_sa
);
380 other
= this->ike_sa
->get_virtual_ip(this->ike_sa
, FALSE
);
383 other
= this->ike_sa
->get_other_host(this->ike_sa
);
385 peer_cfg
= this->ike_sa
->get_peer_cfg(this->ike_sa
);
386 tsi
= linked_list_create();
387 tsr
= linked_list_create();
388 tsi
->insert_last(tsi
, this->tsi
);
389 tsr
->insert_last(tsr
, this->tsr
);
390 this->config
= peer_cfg
->select_child_cfg(peer_cfg
, tsr
, tsi
,
396 DBG1(DBG_IKE
, "no child config found");
400 sa_payload
= (sa_payload_t
*)message
->get_payload(message
,
401 SECURITY_ASSOCIATION_V1
);
404 DBG1(DBG_IKE
, "sa payload missing");
407 list
= sa_payload
->get_proposals(sa_payload
);
408 this->proposal
= this->config
->select_proposal(this->config
,
410 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
413 DBG1(DBG_IKE
, "no matching proposal found");
416 this->spi_i
= this->proposal
->get_spi(this->proposal
);
418 if (!get_nonce(this, &this->nonce_i
, message
))
422 this->child_sa
= child_sa_create(
423 this->ike_sa
->get_my_host(this->ike_sa
),
424 this->ike_sa
->get_other_host(this->ike_sa
),
425 this->config
, 0, FALSE
);
441 METHOD(task_t
, build_r
, status_t
,
442 private_quick_mode_t
*this, message_t
*message
)
448 sa_payload_t
*sa_payload
;
449 id_payload_t
*id_payload
;
451 this->spi_r
= this->child_sa
->alloc_spi(this->child_sa
, PROTO_ESP
);
454 DBG1(DBG_IKE
, "allocating SPI from kernel failed");
457 this->proposal
->set_spi(this->proposal
, this->spi_r
);
459 sa_payload
= sa_payload_create_from_proposal(
460 SECURITY_ASSOCIATION_V1
, this->proposal
);
461 message
->add_payload(message
, &sa_payload
->payload_interface
);
463 if (!add_nonce(this, &this->nonce_r
, message
))
468 id_payload
= id_payload_create_from_ts(this->tsi
);
469 message
->add_payload(message
, &id_payload
->payload_interface
);
470 id_payload
= id_payload_create_from_ts(this->tsr
);
471 message
->add_payload(message
, &id_payload
->payload_interface
);
473 this->state
= QM_NEGOTIATED
;
481 METHOD(task_t
, process_i
, status_t
,
482 private_quick_mode_t
*this, message_t
*message
)
488 sa_payload_t
*sa_payload
;
489 id_payload_t
*id_payload
;
491 traffic_selector_t
*tsi
= NULL
, *tsr
= NULL
;
493 enumerator_t
*enumerator
;
497 enumerator
= message
->create_payload_enumerator(message
);
498 while (enumerator
->enumerate(enumerator
, &payload
))
500 if (payload
->get_type(payload
) == ID_V1
)
502 id_payload
= (id_payload_t
*)payload
;
506 tsi
= id_payload
->get_ts(id_payload
);
511 tsr
= id_payload
->get_ts(id_payload
);
516 enumerator
->destroy(enumerator
);
520 host
= this->ike_sa
->get_other_host(this->ike_sa
);
521 tsr
= traffic_selector_create_from_subnet(host
->clone(host
),
522 host
->get_family(host
) == AF_INET ?
32 : 128, 0, 0);
526 host
= this->ike_sa
->get_my_host(this->ike_sa
);
527 tsi
= traffic_selector_create_from_subnet(host
->clone(host
),
528 host
->get_family(host
) == AF_INET ?
32 : 128, 0, 0);
531 if (!tsr
->is_contained_in(tsr
, this->tsr
) ||
532 !tsi
->is_contained_in(tsi
, this->tsi
))
536 DBG1(DBG_IKE
, "TS mismatch");
539 this->tsi
->destroy(this->tsi
);
540 this->tsr
->destroy(this->tsr
);
544 sa_payload
= (sa_payload_t
*)message
->get_payload(message
,
545 SECURITY_ASSOCIATION_V1
);
548 DBG1(DBG_IKE
, "sa payload missing");
551 list
= sa_payload
->get_proposals(sa_payload
);
552 this->proposal
= this->config
->select_proposal(this->config
,
554 list
->destroy_offset(list
, offsetof(proposal_t
, destroy
));
557 DBG1(DBG_IKE
, "no matching proposal found");
560 this->spi_r
= this->proposal
->get_spi(this->proposal
);
562 if (!get_nonce(this, &this->nonce_r
, message
))
570 this->state
= QM_NEGOTIATED
;
578 METHOD(task_t
, get_type
, task_type_t
,
579 private_quick_mode_t
*this)
581 return TASK_QUICK_MODE
;
584 METHOD(task_t
, migrate
, void,
585 private_quick_mode_t
*this, ike_sa_t
*ike_sa
)
587 this->ike_sa
= ike_sa
;
590 METHOD(task_t
, destroy
, void,
591 private_quick_mode_t
*this)
593 chunk_free(&this->nonce_i
);
594 chunk_free(&this->nonce_r
);
595 DESTROY_IF(this->tsi
);
596 DESTROY_IF(this->tsr
);
597 DESTROY_IF(this->proposal
);
598 DESTROY_IF(this->child_sa
);
599 DESTROY_IF(this->config
);
604 * Described in header.
606 quick_mode_t
*quick_mode_create(ike_sa_t
*ike_sa
, child_cfg_t
*config
,
607 traffic_selector_t
*tsi
, traffic_selector_t
*tsr
)
609 private_quick_mode_t
*this;
614 .get_type
= _get_type
,
620 .initiator
= config
!= NULL
,
622 .keymat
= (keymat_v1_t
*)ike_sa
->get_keymat(ike_sa
),
628 this->public.task
.build
= _build_i
;
629 this->public.task
.process
= _process_i
;
633 this->public.task
.build
= _build_r
;
634 this->public.task
.process
= _process_r
;
637 return &this->public;