2 * Copyright (C) 2008-2012 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
4 * Copyright (C) 2010 Martin Willi
5 * Copyright (C) 2010 revosec AG
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * Copyright (c) 2012 Nanoteq Pty Ltd
21 * Permission is hereby granted, free of charge, to any person obtaining a copy
22 * of this software and associated documentation files (the "Software"), to deal
23 * in the Software without restriction, including without limitation the rights
24 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25 * copies of the Software, and to permit persons to whom the Software is
26 * furnished to do so, subject to the following conditions:
28 * The above copyright notice and this permission notice shall be included in
29 * all copies or substantial portions of the Software.
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
32 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
33 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
34 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
35 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
36 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
40 #include "kernel_interface.h"
43 #include <utils/debug.h>
44 #include <threading/mutex.h>
45 #include <collections/linked_list.h>
47 typedef struct private_kernel_interface_t private_kernel_interface_t
;
49 typedef struct kernel_algorithm_t kernel_algorithm_t
;
52 * Mapping of IKE algorithms to kernel-specific algorithm identifiers
54 struct kernel_algorithm_t
{
57 * Transform type of the algorithm
59 transform_type_t type
;
62 * Identifier specified in IKE
67 * Identifier as defined in pfkeyv2.h
72 * Name of the algorithm in linux crypto API
78 * Private data of a kernel_interface_t object.
80 struct private_kernel_interface_t
{
83 * Public part of kernel_interface_t object.
85 kernel_interface_t
public;
88 * Registered IPsec constructor
90 kernel_ipsec_constructor_t ipsec_constructor
;
93 * Registered net constructor
95 kernel_net_constructor_t net_constructor
;
100 kernel_ipsec_t
*ipsec
;
108 * mutex for listeners
113 * list of registered listeners
115 linked_list_t
*listeners
;
118 * mutex for algorithm mappings
123 * List of algorithm mappings (kernel_algorithm_t*)
125 linked_list_t
*algorithms
;
128 * List of interface names to include or exclude (char*), NULL if interfaces
131 linked_list_t
*ifaces_filter
;
134 * TRUE to exclude interfaces listed in ifaces_filter, FALSE to consider
135 * only those listed there
140 METHOD(kernel_interface_t
, get_features
, kernel_feature_t
,
141 private_kernel_interface_t
*this)
143 kernel_feature_t features
= 0;
145 if (this->ipsec
&& this->ipsec
->get_features
)
147 features
|= this->ipsec
->get_features(this->ipsec
);
149 if (this->net
&& this->net
->get_features
)
151 features
|= this->net
->get_features(this->net
);
156 METHOD(kernel_interface_t
, get_spi
, status_t
,
157 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
158 u_int8_t protocol
, u_int32_t reqid
, u_int32_t
*spi
)
162 return NOT_SUPPORTED
;
164 return this->ipsec
->get_spi(this->ipsec
, src
, dst
, protocol
, reqid
, spi
);
167 METHOD(kernel_interface_t
, get_cpi
, status_t
,
168 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
169 u_int32_t reqid
, u_int16_t
*cpi
)
173 return NOT_SUPPORTED
;
175 return this->ipsec
->get_cpi(this->ipsec
, src
, dst
, reqid
, cpi
);
178 METHOD(kernel_interface_t
, add_sa
, status_t
,
179 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
180 u_int32_t spi
, u_int8_t protocol
, u_int32_t reqid
, mark_t mark
,
181 u_int32_t tfc
, lifetime_cfg_t
*lifetime
, u_int16_t enc_alg
, chunk_t enc_key
,
182 u_int16_t int_alg
, chunk_t int_key
, ipsec_mode_t mode
, u_int16_t ipcomp
,
183 u_int16_t cpi
, bool encap
, bool esn
, bool inbound
,
184 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
)
188 return NOT_SUPPORTED
;
190 return this->ipsec
->add_sa(this->ipsec
, src
, dst
, spi
, protocol
, reqid
,
191 mark
, tfc
, lifetime
, enc_alg
, enc_key
, int_alg
, int_key
, mode
,
192 ipcomp
, cpi
, encap
, esn
, inbound
, src_ts
, dst_ts
);
195 METHOD(kernel_interface_t
, update_sa
, status_t
,
196 private_kernel_interface_t
*this, u_int32_t spi
, u_int8_t protocol
,
197 u_int16_t cpi
, host_t
*src
, host_t
*dst
, host_t
*new_src
, host_t
*new_dst
,
198 bool encap
, bool new_encap
, mark_t mark
)
202 return NOT_SUPPORTED
;
204 return this->ipsec
->update_sa(this->ipsec
, spi
, protocol
, cpi
, src
, dst
,
205 new_src
, new_dst
, encap
, new_encap
, mark
);
208 METHOD(kernel_interface_t
, query_sa
, status_t
,
209 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
210 u_int32_t spi
, u_int8_t protocol
, mark_t mark
,
211 u_int64_t
*bytes
, u_int64_t
*packets
, u_int32_t
*time
)
215 return NOT_SUPPORTED
;
217 return this->ipsec
->query_sa(this->ipsec
, src
, dst
, spi
, protocol
, mark
,
218 bytes
, packets
, time
);
221 METHOD(kernel_interface_t
, del_sa
, status_t
,
222 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
, u_int32_t spi
,
223 u_int8_t protocol
, u_int16_t cpi
, mark_t mark
)
227 return NOT_SUPPORTED
;
229 return this->ipsec
->del_sa(this->ipsec
, src
, dst
, spi
, protocol
, cpi
, mark
);
232 METHOD(kernel_interface_t
, flush_sas
, status_t
,
233 private_kernel_interface_t
*this)
237 return NOT_SUPPORTED
;
239 return this->ipsec
->flush_sas(this->ipsec
);
242 METHOD(kernel_interface_t
, add_policy
, status_t
,
243 private_kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
244 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
,
245 policy_dir_t direction
, policy_type_t type
, ipsec_sa_cfg_t
*sa
,
246 mark_t mark
, policy_priority_t priority
)
250 return NOT_SUPPORTED
;
252 return this->ipsec
->add_policy(this->ipsec
, src
, dst
, src_ts
, dst_ts
,
253 direction
, type
, sa
, mark
, priority
);
256 METHOD(kernel_interface_t
, query_policy
, status_t
,
257 private_kernel_interface_t
*this, traffic_selector_t
*src_ts
,
258 traffic_selector_t
*dst_ts
, policy_dir_t direction
, mark_t mark
,
263 return NOT_SUPPORTED
;
265 return this->ipsec
->query_policy(this->ipsec
, src_ts
, dst_ts
,
266 direction
, mark
, use_time
);
269 METHOD(kernel_interface_t
, del_policy
, status_t
,
270 private_kernel_interface_t
*this, traffic_selector_t
*src_ts
,
271 traffic_selector_t
*dst_ts
, policy_dir_t direction
, u_int32_t reqid
,
272 mark_t mark
, policy_priority_t priority
)
276 return NOT_SUPPORTED
;
278 return this->ipsec
->del_policy(this->ipsec
, src_ts
, dst_ts
,
279 direction
, reqid
, mark
, priority
);
282 METHOD(kernel_interface_t
, flush_policies
, status_t
,
283 private_kernel_interface_t
*this)
287 return NOT_SUPPORTED
;
289 return this->ipsec
->flush_policies(this->ipsec
);
292 METHOD(kernel_interface_t
, get_source_addr
, host_t
*,
293 private_kernel_interface_t
*this, host_t
*dest
, host_t
*src
)
299 return this->net
->get_source_addr(this->net
, dest
, src
);
302 METHOD(kernel_interface_t
, get_nexthop
, host_t
*,
303 private_kernel_interface_t
*this, host_t
*dest
, host_t
*src
)
309 return this->net
->get_nexthop(this->net
, dest
, src
);
312 METHOD(kernel_interface_t
, get_interface
, bool,
313 private_kernel_interface_t
*this, host_t
*host
, char **name
)
319 return this->net
->get_interface(this->net
, host
, name
);
322 METHOD(kernel_interface_t
, create_address_enumerator
, enumerator_t
*,
323 private_kernel_interface_t
*this, kernel_address_type_t which
)
327 return enumerator_create_empty();
329 return this->net
->create_address_enumerator(this->net
, which
);
332 METHOD(kernel_interface_t
, add_ip
, status_t
,
333 private_kernel_interface_t
*this, host_t
*virtual_ip
, int prefix
,
338 return NOT_SUPPORTED
;
340 return this->net
->add_ip(this->net
, virtual_ip
, prefix
, iface
);
343 METHOD(kernel_interface_t
, del_ip
, status_t
,
344 private_kernel_interface_t
*this, host_t
*virtual_ip
, int prefix
, bool wait
)
348 return NOT_SUPPORTED
;
350 return this->net
->del_ip(this->net
, virtual_ip
, prefix
, wait
);
353 METHOD(kernel_interface_t
, add_route
, status_t
,
354 private_kernel_interface_t
*this, chunk_t dst_net
,
355 u_int8_t prefixlen
, host_t
*gateway
, host_t
*src_ip
, char *if_name
)
359 return NOT_SUPPORTED
;
361 return this->net
->add_route(this->net
, dst_net
, prefixlen
, gateway
,
365 METHOD(kernel_interface_t
, del_route
, status_t
,
366 private_kernel_interface_t
*this, chunk_t dst_net
,
367 u_int8_t prefixlen
, host_t
*gateway
, host_t
*src_ip
, char *if_name
)
371 return NOT_SUPPORTED
;
373 return this->net
->del_route(this->net
, dst_net
, prefixlen
, gateway
,
377 METHOD(kernel_interface_t
, bypass_socket
, bool,
378 private_kernel_interface_t
*this, int fd
, int family
)
384 return this->ipsec
->bypass_socket(this->ipsec
, fd
, family
);
387 METHOD(kernel_interface_t
, enable_udp_decap
, bool,
388 private_kernel_interface_t
*this, int fd
, int family
, u_int16_t port
)
394 return this->ipsec
->enable_udp_decap(this->ipsec
, fd
, family
, port
);
397 METHOD(kernel_interface_t
, is_interface_usable
, bool,
398 private_kernel_interface_t
*this, const char *iface
)
402 if (!this->ifaces_filter
)
406 expected
= this->ifaces_exclude ? NOT_FOUND
: SUCCESS
;
407 return this->ifaces_filter
->find_first(this->ifaces_filter
, (void*)streq
,
408 NULL
, iface
) == expected
;
411 METHOD(kernel_interface_t
, all_interfaces_usable
, bool,
412 private_kernel_interface_t
*this)
414 return this->ifaces_filter
== NULL
;
417 METHOD(kernel_interface_t
, get_address_by_ts
, status_t
,
418 private_kernel_interface_t
*this, traffic_selector_t
*ts
,
419 host_t
**ip
, bool *vip
)
426 DBG2(DBG_KNL
, "getting a local address in traffic selector %R", ts
);
428 /* if we have a family which includes localhost, we do not
429 * search for an IP, we use the default */
430 family
= ts
->get_type(ts
) == TS_IPV4_ADDR_RANGE ? AF_INET
: AF_INET6
;
432 if (family
== AF_INET
)
434 host
= host_create_from_string("127.0.0.1", 0);
438 host
= host_create_from_string("::1", 0);
441 if (ts
->includes(ts
, host
))
443 *ip
= host_create_any(family
);
445 DBG2(DBG_KNL
, "using host %H", *ip
);
450 addrs
= create_address_enumerator(this, ADDR_TYPE_VIRTUAL
);
451 while (addrs
->enumerate(addrs
, (void**)&host
))
453 if (ts
->includes(ts
, host
))
456 *ip
= host
->clone(host
);
464 addrs
->destroy(addrs
);
468 addrs
= create_address_enumerator(this, ADDR_TYPE_REGULAR
);
469 while (addrs
->enumerate(addrs
, (void**)&host
))
471 if (ts
->includes(ts
, host
))
474 *ip
= host
->clone(host
);
482 addrs
->destroy(addrs
);
487 DBG2(DBG_KNL
, "no local address found in traffic selector %R", ts
);
491 DBG2(DBG_KNL
, "using host %H", *ip
);
496 METHOD(kernel_interface_t
, add_ipsec_interface
, void,
497 private_kernel_interface_t
*this, kernel_ipsec_constructor_t constructor
)
501 this->ipsec_constructor
= constructor
;
502 this->ipsec
= constructor();
506 METHOD(kernel_interface_t
, remove_ipsec_interface
, void,
507 private_kernel_interface_t
*this, kernel_ipsec_constructor_t constructor
)
509 if (constructor
== this->ipsec_constructor
&& this->ipsec
)
511 this->ipsec
->destroy(this->ipsec
);
516 METHOD(kernel_interface_t
, add_net_interface
, void,
517 private_kernel_interface_t
*this, kernel_net_constructor_t constructor
)
521 this->net_constructor
= constructor
;
522 this->net
= constructor();
526 METHOD(kernel_interface_t
, remove_net_interface
, void,
527 private_kernel_interface_t
*this, kernel_net_constructor_t constructor
)
529 if (constructor
== this->net_constructor
&& this->net
)
531 this->net
->destroy(this->net
);
536 METHOD(kernel_interface_t
, add_listener
, void,
537 private_kernel_interface_t
*this, kernel_listener_t
*listener
)
539 this->mutex
->lock(this->mutex
);
540 this->listeners
->insert_last(this->listeners
, listener
);
541 this->mutex
->unlock(this->mutex
);
544 METHOD(kernel_interface_t
, remove_listener
, void,
545 private_kernel_interface_t
*this, kernel_listener_t
*listener
)
547 this->mutex
->lock(this->mutex
);
548 this->listeners
->remove(this->listeners
, listener
, NULL
);
549 this->mutex
->unlock(this->mutex
);
552 METHOD(kernel_interface_t
, acquire
, void,
553 private_kernel_interface_t
*this, u_int32_t reqid
,
554 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
)
556 kernel_listener_t
*listener
;
557 enumerator_t
*enumerator
;
558 this->mutex
->lock(this->mutex
);
559 enumerator
= this->listeners
->create_enumerator(this->listeners
);
560 while (enumerator
->enumerate(enumerator
, &listener
))
562 if (listener
->acquire
&&
563 !listener
->acquire(listener
, reqid
, src_ts
, dst_ts
))
565 this->listeners
->remove_at(this->listeners
, enumerator
);
568 enumerator
->destroy(enumerator
);
569 this->mutex
->unlock(this->mutex
);
572 METHOD(kernel_interface_t
, expire
, void,
573 private_kernel_interface_t
*this, u_int32_t reqid
, u_int8_t protocol
,
574 u_int32_t spi
, bool hard
)
576 kernel_listener_t
*listener
;
577 enumerator_t
*enumerator
;
578 this->mutex
->lock(this->mutex
);
579 enumerator
= this->listeners
->create_enumerator(this->listeners
);
580 while (enumerator
->enumerate(enumerator
, &listener
))
582 if (listener
->expire
&&
583 !listener
->expire(listener
, reqid
, protocol
, spi
, hard
))
585 this->listeners
->remove_at(this->listeners
, enumerator
);
588 enumerator
->destroy(enumerator
);
589 this->mutex
->unlock(this->mutex
);
592 METHOD(kernel_interface_t
, mapping
, void,
593 private_kernel_interface_t
*this, u_int32_t reqid
, u_int32_t spi
,
596 kernel_listener_t
*listener
;
597 enumerator_t
*enumerator
;
598 this->mutex
->lock(this->mutex
);
599 enumerator
= this->listeners
->create_enumerator(this->listeners
);
600 while (enumerator
->enumerate(enumerator
, &listener
))
602 if (listener
->mapping
&&
603 !listener
->mapping(listener
, reqid
, spi
, remote
))
605 this->listeners
->remove_at(this->listeners
, enumerator
);
608 enumerator
->destroy(enumerator
);
609 this->mutex
->unlock(this->mutex
);
612 METHOD(kernel_interface_t
, migrate
, void,
613 private_kernel_interface_t
*this, u_int32_t reqid
,
614 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
,
615 policy_dir_t direction
, host_t
*local
, host_t
*remote
)
617 kernel_listener_t
*listener
;
618 enumerator_t
*enumerator
;
619 this->mutex
->lock(this->mutex
);
620 enumerator
= this->listeners
->create_enumerator(this->listeners
);
621 while (enumerator
->enumerate(enumerator
, &listener
))
623 if (listener
->migrate
&&
624 !listener
->migrate(listener
, reqid
, src_ts
, dst_ts
, direction
,
627 this->listeners
->remove_at(this->listeners
, enumerator
);
630 enumerator
->destroy(enumerator
);
631 this->mutex
->unlock(this->mutex
);
634 static bool call_roam(kernel_listener_t
*listener
, bool *roam
)
636 return listener
->roam
&& !listener
->roam(listener
, *roam
);
639 METHOD(kernel_interface_t
, roam
, void,
640 private_kernel_interface_t
*this, bool address
)
642 this->mutex
->lock(this->mutex
);
643 this->listeners
->remove(this->listeners
, &address
, (void*)call_roam
);
644 this->mutex
->unlock(this->mutex
);
647 METHOD(kernel_interface_t
, register_algorithm
, void,
648 private_kernel_interface_t
*this, u_int16_t alg_id
, transform_type_t type
,
649 u_int16_t kernel_id
, char *kernel_name
)
651 kernel_algorithm_t
*algorithm
;
657 .name
= strdup(kernel_name
),
660 this->mutex_algs
->lock(this->mutex_algs
);
661 this->algorithms
->insert_first(this->algorithms
, algorithm
);
662 this->mutex_algs
->unlock(this->mutex_algs
);
665 METHOD(kernel_interface_t
, lookup_algorithm
, bool,
666 private_kernel_interface_t
*this, u_int16_t alg_id
, transform_type_t type
,
667 u_int16_t
*kernel_id
, char **kernel_name
)
669 kernel_algorithm_t
*algorithm
;
670 enumerator_t
*enumerator
;
673 this->mutex_algs
->lock(this->mutex_algs
);
674 enumerator
= this->algorithms
->create_enumerator(this->algorithms
);
675 while (enumerator
->enumerate(enumerator
, &algorithm
))
677 if (algorithm
->type
== type
&& algorithm
->ike
== alg_id
)
681 *kernel_id
= algorithm
->kernel
;
685 *kernel_name
= algorithm
->name
;
691 enumerator
->destroy(enumerator
);
692 this->mutex_algs
->unlock(this->mutex_algs
);
696 METHOD(kernel_interface_t
, destroy
, void,
697 private_kernel_interface_t
*this)
699 kernel_algorithm_t
*algorithm
;
701 while (this->algorithms
->remove_first(this->algorithms
,
702 (void**)&algorithm
) == SUCCESS
)
704 free(algorithm
->name
);
707 this->algorithms
->destroy(this->algorithms
);
708 this->mutex_algs
->destroy(this->mutex_algs
);
709 DESTROY_IF(this->ipsec
);
710 DESTROY_IF(this->net
);
711 DESTROY_FUNCTION_IF(this->ifaces_filter
, (void*)free
);
712 this->listeners
->destroy(this->listeners
);
713 this->mutex
->destroy(this->mutex
);
718 * Described in header-file
720 kernel_interface_t
*kernel_interface_create()
722 private_kernel_interface_t
*this;
727 .get_features
= _get_features
,
731 .update_sa
= _update_sa
,
732 .query_sa
= _query_sa
,
734 .flush_sas
= _flush_sas
,
735 .add_policy
= _add_policy
,
736 .query_policy
= _query_policy
,
737 .del_policy
= _del_policy
,
738 .flush_policies
= _flush_policies
,
739 .get_source_addr
= _get_source_addr
,
740 .get_nexthop
= _get_nexthop
,
741 .get_interface
= _get_interface
,
742 .create_address_enumerator
= _create_address_enumerator
,
745 .add_route
= _add_route
,
746 .del_route
= _del_route
,
747 .bypass_socket
= _bypass_socket
,
748 .enable_udp_decap
= _enable_udp_decap
,
750 .is_interface_usable
= _is_interface_usable
,
751 .all_interfaces_usable
= _all_interfaces_usable
,
752 .get_address_by_ts
= _get_address_by_ts
,
753 .add_ipsec_interface
= _add_ipsec_interface
,
754 .remove_ipsec_interface
= _remove_ipsec_interface
,
755 .add_net_interface
= _add_net_interface
,
756 .remove_net_interface
= _remove_net_interface
,
758 .add_listener
= _add_listener
,
759 .remove_listener
= _remove_listener
,
760 .register_algorithm
= _register_algorithm
,
761 .lookup_algorithm
= _lookup_algorithm
,
769 .mutex
= mutex_create(MUTEX_TYPE_DEFAULT
),
770 .listeners
= linked_list_create(),
771 .mutex_algs
= mutex_create(MUTEX_TYPE_DEFAULT
),
772 .algorithms
= linked_list_create(),
775 ifaces
= lib
->settings
->get_str(lib
->settings
,
776 "%s.interfaces_use", NULL
, hydra
->daemon
);
779 this->ifaces_exclude
= TRUE
;
780 ifaces
= lib
->settings
->get_str(lib
->settings
,
781 "%s.interfaces_ignore", NULL
, hydra
->daemon
);
785 enumerator_t
*enumerator
;
788 enumerator
= enumerator_create_token(ifaces
, ",", " ");
789 while (enumerator
->enumerate(enumerator
, &iface
))
791 if (!this->ifaces_filter
)
793 this->ifaces_filter
= linked_list_create();
795 this->ifaces_filter
->insert_last(this->ifaces_filter
,
798 enumerator
->destroy(enumerator
);
801 return &this->public;