2 * Copyright (C) 2006-2012 Tobias Brunner
3 * Copyright (C) 2006 Daniel Roethlisberger
4 * Copyright (C) 2005-2006 Martin Willi
5 * Copyright (C) 2005 Jan Hutter
6 * Hochschule fuer Technik Rapperswil
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * Copyright (c) 2012 Nanoteq Pty Ltd
22 * Permission is hereby granted, free of charge, to any person obtaining a copy
23 * of this software and associated documentation files (the "Software"), to deal
24 * in the Software without restriction, including without limitation the rights
25 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
26 * copies of the Software, and to permit persons to whom the Software is
27 * furnished to do so, subject to the following conditions:
29 * The above copyright notice and this permission notice shall be included in
30 * all copies or substantial portions of the Software.
32 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
33 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
34 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
35 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
36 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
37 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
42 * @defgroup kernel_interface kernel_interface
46 #ifndef KERNEL_INTERFACE_H_
47 #define KERNEL_INTERFACE_H_
49 typedef struct kernel_interface_t kernel_interface_t
;
51 #include <utils/host.h>
52 #include <crypto/prf_plus.h>
54 #include <kernel/kernel_listener.h>
55 #include <kernel/kernel_ipsec.h>
56 #include <kernel/kernel_net.h>
59 * Constructor function for ipsec kernel interface
61 typedef kernel_ipsec_t
* (*kernel_ipsec_constructor_t
)(void);
64 * Constructor function for network kernel interface
66 typedef kernel_net_t
* (*kernel_net_constructor_t
)(void);
69 * Manager and wrapper for different kernel interfaces.
71 * The kernel interface handles the communication with the kernel
72 * for SA and policy management and interface and IP address management.
74 struct kernel_interface_t
{
77 * Get a SPI from the kernel.
79 * @param src source address of SA
80 * @param dst destination address of SA
81 * @param protocol protocol for SA (ESP/AH)
82 * @param reqid unique ID for this SA
83 * @param spi allocated spi
84 * @return SUCCESS if operation completed
86 status_t (*get_spi
)(kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
87 u_int8_t protocol
, u_int32_t reqid
, u_int32_t
*spi
);
90 * Get a Compression Parameter Index (CPI) from the kernel.
92 * @param src source address of SA
93 * @param dst destination address of SA
94 * @param reqid unique ID for the corresponding SA
95 * @param cpi allocated cpi
96 * @return SUCCESS if operation completed
98 status_t (*get_cpi
)(kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
99 u_int32_t reqid
, u_int16_t
*cpi
);
102 * Add an SA to the SAD.
104 * add_sa() may update an already allocated
105 * SPI (via get_spi). In this case, the replace
107 * This function does install a single SA for a
108 * single protocol in one direction.
110 * @param src source address for this SA
111 * @param dst destination address for this SA
112 * @param spi SPI allocated by us or remote peer
113 * @param protocol protocol for this SA (ESP/AH)
114 * @param reqid unique ID for this SA
115 * @param mark optional mark for this SA
116 * @param tfc Traffic Flow Confidentiality padding for this SA
117 * @param lifetime lifetime_cfg_t for this SA
118 * @param enc_alg Algorithm to use for encryption (ESP only)
119 * @param enc_key key to use for encryption
120 * @param int_alg Algorithm to use for integrity protection
121 * @param int_key key to use for integrity protection
122 * @param mode mode of the SA (tunnel, transport)
123 * @param ipcomp IPComp transform to use
124 * @param cpi CPI for IPComp
125 * @param encap enable UDP encapsulation for NAT traversal
126 * @param esn TRUE to use Extended Sequence Numbers
127 * @param inbound TRUE if this is an inbound SA
128 * @param src_ts traffic selector with BEET source address
129 * @param dst_ts traffic selector with BEET destination address
130 * @return SUCCESS if operation completed
132 status_t (*add_sa
) (kernel_interface_t
*this,
133 host_t
*src
, host_t
*dst
, u_int32_t spi
,
134 u_int8_t protocol
, u_int32_t reqid
, mark_t mark
,
135 u_int32_t tfc
, lifetime_cfg_t
*lifetime
,
136 u_int16_t enc_alg
, chunk_t enc_key
,
137 u_int16_t int_alg
, chunk_t int_key
,
138 ipsec_mode_t mode
, u_int16_t ipcomp
, u_int16_t cpi
,
139 bool encap
, bool esn
, bool inbound
,
140 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
);
143 * Update the hosts on an installed SA.
145 * We cannot directly update the destination address as the kernel
146 * requires the spi, the protocol AND the destination address (and family)
147 * to identify SAs. Therefore if the destination address changed we
148 * create a new SA and delete the old one.
150 * @param spi SPI of the SA
151 * @param protocol protocol for this SA (ESP/AH)
152 * @param cpi CPI for IPComp, 0 if no IPComp is used
153 * @param src current source address
154 * @param dst current destination address
155 * @param new_src new source address
156 * @param new_dst new destination address
157 * @param encap current use of UDP encapsulation
158 * @param new_encap new use of UDP encapsulation
159 * @param mark optional mark for this SA
160 * @return SUCCESS if operation completed, NOT_SUPPORTED if
161 * the kernel interface can't update the SA
163 status_t (*update_sa
)(kernel_interface_t
*this,
164 u_int32_t spi
, u_int8_t protocol
, u_int16_t cpi
,
165 host_t
*src
, host_t
*dst
,
166 host_t
*new_src
, host_t
*new_dst
,
167 bool encap
, bool new_encap
, mark_t mark
);
170 * Query the number of bytes processed by an SA from the SAD.
172 * @param src source address for this SA
173 * @param dst destination address for this SA
174 * @param spi SPI allocated by us or remote peer
175 * @param protocol protocol for this SA (ESP/AH)
176 * @param mark optional mark for this SA
177 * @param[out] bytes the number of bytes processed by SA
178 * @return SUCCESS if operation completed
180 status_t (*query_sa
) (kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
181 u_int32_t spi
, u_int8_t protocol
, mark_t mark
,
185 * Delete a previously installed SA from the SAD.
187 * @param src source address for this SA
188 * @param dst destination address for this SA
189 * @param spi SPI allocated by us or remote peer
190 * @param protocol protocol for this SA (ESP/AH)
191 * @param cpi CPI for IPComp or 0
192 * @param mark optional mark for this SA
193 * @return SUCCESS if operation completed
195 status_t (*del_sa
) (kernel_interface_t
*this, host_t
*src
, host_t
*dst
,
196 u_int32_t spi
, u_int8_t protocol
, u_int16_t cpi
,
200 * Flush all SAs from the SAD.
202 * @return SUCCESS if operation completed
204 status_t (*flush_sas
) (kernel_interface_t
*this);
207 * Add a policy to the SPD.
209 * A policy is always associated to an SA. Traffic which matches a
210 * policy is handled by the SA with the same reqid.
212 * @param src source address of SA
213 * @param dst dest address of SA
214 * @param src_ts traffic selector to match traffic source
215 * @param dst_ts traffic selector to match traffic dest
216 * @param direction direction of traffic, POLICY_(IN|OUT|FWD)
217 * @param type type of policy, POLICY_(IPSEC|PASS|DROP)
218 * @param sa details about the SA(s) tied to this policy
219 * @param mark mark for this policy
220 * @param priority priority of this policy
221 * @return SUCCESS if operation completed
223 status_t (*add_policy
) (kernel_interface_t
*this,
224 host_t
*src
, host_t
*dst
,
225 traffic_selector_t
*src_ts
,
226 traffic_selector_t
*dst_ts
,
227 policy_dir_t direction
, policy_type_t type
,
228 ipsec_sa_cfg_t
*sa
, mark_t mark
,
229 policy_priority_t priority
);
232 * Query the use time of a policy.
234 * The use time of a policy is the time the policy was used
237 * @param src_ts traffic selector to match traffic source
238 * @param dst_ts traffic selector to match traffic dest
239 * @param direction direction of traffic, POLICY_(IN|OUT|FWD)
240 * @param mark optional mark
241 * @param[out] use_time the time of this SA's last use
242 * @return SUCCESS if operation completed
244 status_t (*query_policy
) (kernel_interface_t
*this,
245 traffic_selector_t
*src_ts
,
246 traffic_selector_t
*dst_ts
,
247 policy_dir_t direction
, mark_t mark
,
248 u_int32_t
*use_time
);
251 * Remove a policy from the SPD.
253 * The kernel interface implements reference counting for policies.
254 * If the same policy is installed multiple times (in the case of rekeying),
255 * the reference counter is increased. del_policy() decreases the ref counter
256 * and removes the policy only when no more references are available.
258 * @param src_ts traffic selector to match traffic source
259 * @param dst_ts traffic selector to match traffic dest
260 * @param direction direction of traffic, POLICY_(IN|OUT|FWD)
261 * @param reqid unique ID of the associated SA
262 * @param mark optional mark
263 * @param priority priority of the policy
264 * @return SUCCESS if operation completed
266 status_t (*del_policy
) (kernel_interface_t
*this,
267 traffic_selector_t
*src_ts
,
268 traffic_selector_t
*dst_ts
,
269 policy_dir_t direction
, u_int32_t reqid
,
270 mark_t mark
, policy_priority_t priority
);
273 * Flush all policies from the SPD.
275 * @return SUCCESS if operation completed
277 status_t (*flush_policies
) (kernel_interface_t
*this);
280 * Get our outgoing source address for a destination.
282 * Does a route lookup to get the source address used to reach dest.
283 * The returned host is allocated and must be destroyed.
284 * An optional src address can be used to check if a route is available
285 * for given source to dest.
287 * @param dest target destination address
288 * @param src source address to check, or NULL
289 * @return outgoing source address, NULL if unreachable
291 host_t
* (*get_source_addr
)(kernel_interface_t
*this,
292 host_t
*dest
, host_t
*src
);
295 * Get the next hop for a destination.
297 * Does a route lookup to get the next hop used to reach dest.
298 * The returned host is allocated and must be destroyed.
300 * @param dest target destination address
301 * @return next hop address, NULL if unreachable
303 host_t
* (*get_nexthop
)(kernel_interface_t
*this, host_t
*dest
);
306 * Get the interface name of a local address.
308 * @param host address to get interface name from
309 * @return allocated interface name, or NULL if not found
311 char* (*get_interface
) (kernel_interface_t
*this, host_t
*host
);
314 * Creates an enumerator over all local addresses.
316 * This function blocks an internal cached address list until the
317 * enumerator gets destroyed.
318 * The hosts are read-only, do not modify of free.
320 * @param include_down_ifaces TRUE to enumerate addresses from down interfaces
321 * @param include_virtual_ips TRUE to enumerate virtual ip addresses
322 * @return enumerator over host_t's
324 enumerator_t
*(*create_address_enumerator
) (kernel_interface_t
*this,
325 bool include_down_ifaces
, bool include_virtual_ips
);
328 * Add a virtual IP to an interface.
330 * Virtual IPs are attached to an interface. If an IP is added multiple
331 * times, the IP is refcounted and not removed until del_ip() was called
332 * as many times as add_ip().
333 * The virtual IP is attached to the interface where the iface_ip is found.
335 * @param virtual_ip virtual ip address to assign
336 * @param iface_ip IP of an interface to attach virtual IP
337 * @return SUCCESS if operation completed
339 status_t (*add_ip
) (kernel_interface_t
*this, host_t
*virtual_ip
,
343 * Remove a virtual IP from an interface.
345 * The kernel interface uses refcounting, see add_ip().
347 * @param virtual_ip virtual ip address to assign
348 * @return SUCCESS if operation completed
350 status_t (*del_ip
) (kernel_interface_t
*this, host_t
*virtual_ip
);
355 * @param dst_net destination net
356 * @param prefixlen destination net prefix length
357 * @param gateway gateway for this route
358 * @param src_ip sourc ip of the route
359 * @param if_name name of the interface the route is bound to
360 * @return SUCCESS if operation completed
361 * ALREADY_DONE if the route already exists
363 status_t (*add_route
) (kernel_interface_t
*this, chunk_t dst_net
,
364 u_int8_t prefixlen
, host_t
*gateway
, host_t
*src_ip
,
370 * @param dst_net destination net
371 * @param prefixlen destination net prefix length
372 * @param gateway gateway for this route
373 * @param src_ip sourc ip of the route
374 * @param if_name name of the interface the route is bound to
375 * @return SUCCESS if operation completed
377 status_t (*del_route
) (kernel_interface_t
*this, chunk_t dst_net
,
378 u_int8_t prefixlen
, host_t
*gateway
, host_t
*src_ip
,
382 * Set up a bypass policy for a given socket.
384 * @param fd socket file descriptor to setup policy for
385 * @param family protocol family of the socket
386 * @return TRUE if policy set up successfully
388 bool (*bypass_socket
)(kernel_interface_t
*this, int fd
, int family
);
391 * Enable decapsulation of ESP-in-UDP packets for the given port/socket.
393 * @param fd socket file descriptor
394 * @param family protocol family of the socket
395 * @param port the UDP port
396 * @return TRUE if UDP decapsulation was enabled successfully
398 bool (*enable_udp_decap
)(kernel_interface_t
*this, int fd
, int family
,
407 * Tries to find an ip address of a local interface that is included in the
408 * supplied traffic selector.
410 * @param ts traffic selector
411 * @param ip returned ip (has to be destroyed)
412 * @return SUCCESS if address found
414 status_t (*get_address_by_ts
)(kernel_interface_t
*this,
415 traffic_selector_t
*ts
, host_t
**ip
);
418 * Register an ipsec kernel interface constructor on the manager.
420 * @param create constructor to register
422 void (*add_ipsec_interface
)(kernel_interface_t
*this,
423 kernel_ipsec_constructor_t create
);
426 * Unregister an ipsec kernel interface constructor.
428 * @param create constructor to unregister
430 void (*remove_ipsec_interface
)(kernel_interface_t
*this,
431 kernel_ipsec_constructor_t create
);
434 * Register a network kernel interface constructor on the manager.
436 * @param create constructor to register
438 void (*add_net_interface
)(kernel_interface_t
*this,
439 kernel_net_constructor_t create
);
442 * Unregister a network kernel interface constructor.
444 * @param create constructor to unregister
446 void (*remove_net_interface
)(kernel_interface_t
*this,
447 kernel_net_constructor_t create
);
450 * Add a listener to the kernel interface.
452 * @param listener listener to add
454 void (*add_listener
)(kernel_interface_t
*this,
455 kernel_listener_t
*listener
);
458 * Remove a listener from the kernel interface.
460 * @param listener listener to remove
462 void (*remove_listener
)(kernel_interface_t
*this,
463 kernel_listener_t
*listener
);
466 * Raise an acquire event.
468 * @param reqid reqid of the policy to acquire
469 * @param src_ts source traffic selector
470 * @param dst_ts destination traffic selector
472 void (*acquire
)(kernel_interface_t
*this, u_int32_t reqid
,
473 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
);
476 * Raise an expire event.
478 * @param reqid reqid of the expired SA
479 * @param protocol protocol of the expired SA
480 * @param spi spi of the expired SA
481 * @param hard TRUE if it is a hard expire, FALSE otherwise
483 void (*expire
)(kernel_interface_t
*this, u_int32_t reqid
,
484 u_int8_t protocol
, u_int32_t spi
, bool hard
);
487 * Raise a mapping event.
489 * @param reqid reqid of the SA
490 * @param spi spi of the SA
491 * @param remote new remote host
493 void (*mapping
)(kernel_interface_t
*this, u_int32_t reqid
, u_int32_t spi
,
497 * Raise a migrate event.
499 * @param reqid reqid of the policy
500 * @param src_ts source traffic selector
501 * @param dst_ts destination traffic selector
502 * @param direction direction of the policy (in|out)
503 * @param local local host address to be used in the IKE_SA
504 * @param remote remote host address to be used in the IKE_SA
506 void (*migrate
)(kernel_interface_t
*this, u_int32_t reqid
,
507 traffic_selector_t
*src_ts
, traffic_selector_t
*dst_ts
,
508 policy_dir_t direction
, host_t
*local
, host_t
*remote
);
511 * Raise a roam event.
513 * @param address TRUE if address list, FALSE if routing changed
515 void (*roam
)(kernel_interface_t
*this, bool address
);
518 * Register a new algorithm with the kernel interface.
520 * @param alg_id the IKE id of the algorithm
521 * @param type the transform type of the algorithm
522 * @param kernel_id the kernel id of the algorithm
523 * @param kernel_name the kernel name of the algorithm
525 void (*register_algorithm
)(kernel_interface_t
*this, u_int16_t alg_id
,
526 transform_type_t type
, u_int16_t kernel_id
,
530 * Return the kernel-specific id and/or name for an algorithms depending on
531 * the arguments specified.
533 * @param alg_id the IKE id of the algorithm
534 * @param type the transform type of the algorithm
535 * @param kernel_id the kernel id of the algorithm (optional)
536 * @param kernel_name the kernel name of the algorithm (optional)
537 * @return TRUE if algorithm was found
539 bool (*lookup_algorithm
)(kernel_interface_t
*this, u_int16_t alg_id
,
540 transform_type_t type
, u_int16_t
*kernel_id
,
544 * Destroys a kernel_interface_manager_t object.
546 void (*destroy
) (kernel_interface_t
*this);
550 * Creates an object of type kernel_interface_t.
552 kernel_interface_t
*kernel_interface_create(void);
554 #endif /** KERNEL_INTERFACE_H_ @}*/