kernel-interface: Pass full list of traffic selectors to add_sa()

While we can handle the first selector only in BEET mode in kernel-netlink,
passing the full list gives the backend more flexibility how to handle this
information.
This commit is contained in:
Martin Willi
2015-02-20 13:34:47 +01:00
parent fd9417607c
commit d05d85fe65
11 changed files with 28 additions and 34 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool _initiator, bool encap, bool esn, bool inbound, bool _initiator, bool encap, bool esn, bool inbound,
traffic_selector_t* src_ts, traffic_selector_t* dst_ts) linked_list_t* src_ts, linked_list_t* dst_ts)
{ {
esa_info_t esa; esa_info_t esa;
bool initiator; bool initiator;
@@ -67,7 +67,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
return ipsec->sas->add_sa(ipsec->sas, src, dst, spi, protocol, reqid, mark, return ipsec->sas->add_sa(ipsec->sas, src, dst, spi, protocol, reqid, mark,
tfc, lifetime, enc_alg, enc_key, int_alg, int_key, tfc, lifetime, enc_alg, enc_key, int_alg, int_key,
@@ -255,7 +255,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
return ipsec->sas->add_sa(ipsec->sas, src, dst, spi, protocol, reqid, mark, return ipsec->sas->add_sa(ipsec->sas, src, dst, spi, protocol, reqid, mark,
tfc, lifetime, enc_alg, enc_key, int_alg, int_key, tfc, lifetime, enc_alg, enc_key, int_alg, int_key,
@@ -2107,7 +2107,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
host_t *local, *remote; host_t *local, *remote;
entry_t *entry; entry_t *entry;
@@ -56,7 +56,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
return SUCCESS; return SUCCESS;
} }
+6 -8
View File
@@ -633,7 +633,7 @@ METHOD(child_sa_t, install, status_t,
{ {
u_int16_t enc_alg = ENCR_UNDEFINED, int_alg = AUTH_UNDEFINED, size; u_int16_t enc_alg = ENCR_UNDEFINED, int_alg = AUTH_UNDEFINED, size;
u_int16_t esn = NO_EXT_SEQ_NUMBERS; u_int16_t esn = NO_EXT_SEQ_NUMBERS;
traffic_selector_t *src_ts = NULL, *dst_ts = NULL; linked_list_t *src_ts = NULL, *dst_ts = NULL;
time_t now; time_t now;
lifetime_cfg_t *lifetime; lifetime_cfg_t *lifetime;
u_int32_t tfc = 0; u_int32_t tfc = 0;
@@ -705,18 +705,16 @@ METHOD(child_sa_t, install, status_t,
lifetime->time.rekey = 0; lifetime->time.rekey = 0;
} }
/* BEET requires the bound address from the traffic selectors. /* BEET requires the bound address from the traffic selectors */
* TODO: We add just the first traffic selector for now, as the
* kernel accepts a single TS per SA only */
if (inbound) if (inbound)
{ {
my_ts->get_first(my_ts, (void**)&dst_ts); dst_ts = my_ts;
other_ts->get_first(other_ts, (void**)&src_ts); src_ts = other_ts;
} }
else else
{ {
my_ts->get_first(my_ts, (void**)&src_ts); src_ts = my_ts;
other_ts->get_first(other_ts, (void**)&dst_ts); dst_ts = other_ts;
} }
status = hydra->kernel_interface->add_sa(hydra->kernel_interface, status = hydra->kernel_interface->add_sa(hydra->kernel_interface,
+1 -1
View File
@@ -182,7 +182,7 @@ METHOD(kernel_interface_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
if (!this->ipsec) if (!this->ipsec)
{ {
+5 -8
View File
@@ -124,11 +124,8 @@ struct kernel_interface_t {
/** /**
* Add an SA to the SAD. * Add an SA to the SAD.
* *
* add_sa() may update an already allocated * This function does install a single SA for a single protocol in one
* SPI (via get_spi). In this case, the replace * direction.
* flag must be set.
* This function does install a single SA for a
* single protocol in one direction.
* *
* @param src source address for this SA * @param src source address for this SA
* @param dst destination address for this SA * @param dst destination address for this SA
@@ -150,8 +147,8 @@ struct kernel_interface_t {
* @param encap enable UDP encapsulation for NAT traversal * @param encap enable UDP encapsulation for NAT traversal
* @param esn TRUE to use Extended Sequence Numbers * @param esn TRUE to use Extended Sequence Numbers
* @param inbound TRUE if this is an inbound SA * @param inbound TRUE if this is an inbound SA
* @param src_ts traffic selector with BEET source address * @param src_ts list of source traffic selectors
* @param dst_ts traffic selector with BEET destination address * @param dst_ts list of destination traffic selectors
* @return SUCCESS if operation completed * @return SUCCESS if operation completed
*/ */
status_t (*add_sa) (kernel_interface_t *this, status_t (*add_sa) (kernel_interface_t *this,
@@ -163,7 +160,7 @@ struct kernel_interface_t {
ipsec_mode_t mode, u_int16_t ipcomp, u_int16_t cpi, ipsec_mode_t mode, u_int16_t ipcomp, u_int16_t cpi,
u_int32_t replay_window, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts); linked_list_t *src_ts, linked_list_t *dst_ts);
/** /**
* Update the hosts on an installed SA. * Update the hosts on an installed SA.
+5 -8
View File
@@ -78,11 +78,8 @@ struct kernel_ipsec_t {
/** /**
* Add an SA to the SAD. * Add an SA to the SAD.
* *
* add_sa() may update an already allocated * This function does install a single SA for a single protocol in one
* SPI (via get_spi). In this case, the replace * direction.
* flag must be set.
* This function does install a single SA for a
* single protocol in one direction.
* *
* @param src source address for this SA * @param src source address for this SA
* @param dst destination address for this SA * @param dst destination address for this SA
@@ -104,8 +101,8 @@ struct kernel_ipsec_t {
* @param encap enable UDP encapsulation for NAT traversal * @param encap enable UDP encapsulation for NAT traversal
* @param esn TRUE to use Extended Sequence Numbers * @param esn TRUE to use Extended Sequence Numbers
* @param inbound TRUE if this is an inbound SA * @param inbound TRUE if this is an inbound SA
* @param src_ts traffic selector with BEET source address * @param src_ts list of source traffic selectors
* @param dst_ts traffic selector with BEET destination address * @param dst_ts list of destination traffic selectors
* @return SUCCESS if operation completed * @return SUCCESS if operation completed
*/ */
status_t (*add_sa) (kernel_ipsec_t *this, status_t (*add_sa) (kernel_ipsec_t *this,
@@ -117,7 +114,7 @@ struct kernel_ipsec_t {
ipsec_mode_t mode, u_int16_t ipcomp, u_int16_t cpi, ipsec_mode_t mode, u_int16_t ipcomp, u_int16_t cpi,
u_int32_t replay_window, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts); linked_list_t *src_ts, linked_list_t *dst_ts);
/** /**
* Update the hosts on an installed SA. * Update the hosts on an installed SA.
@@ -1191,7 +1191,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t* src_ts, traffic_selector_t* dst_ts) linked_list_t* src_ts, linked_list_t* dst_ts)
{ {
netlink_buf_t request; netlink_buf_t request;
char *alg_name; char *alg_name;
@@ -1199,6 +1199,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
struct xfrm_usersa_info *sa; struct xfrm_usersa_info *sa;
u_int16_t icv_size = 64; u_int16_t icv_size = 64;
ipsec_mode_t original_mode = mode; ipsec_mode_t original_mode = mode;
traffic_selector_t *first_src_ts, *first_dst_ts;
status_t status = FAILED; status_t status = FAILED;
/* if IPComp is used, we install an additional IPComp SA. if the cpi is 0 /* if IPComp is used, we install an additional IPComp SA. if the cpi is 0
@@ -1244,9 +1245,10 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
* selector can be installed other traffic would get dropped */ * selector can be installed other traffic would get dropped */
break; break;
} }
if (src_ts && dst_ts) if (src_ts->get_first(src_ts, (void**)&first_src_ts) == SUCCESS &&
dst_ts->get_first(dst_ts, (void**)&first_dst_ts) == SUCCESS)
{ {
sa->sel = ts2selector(src_ts, dst_ts); sa->sel = ts2selector(first_src_ts, first_dst_ts);
if (!this->proto_port_transport) if (!this->proto_port_transport)
{ {
/* don't install proto/port on SA. This would break /* don't install proto/port on SA. This would break
@@ -1611,7 +1611,7 @@ METHOD(kernel_ipsec_t, add_sa, status_t,
u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode, u_int16_t int_alg, chunk_t int_key, ipsec_mode_t mode,
u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window, u_int16_t ipcomp, u_int16_t cpi, u_int32_t replay_window,
bool initiator, bool encap, bool esn, bool inbound, bool initiator, bool encap, bool esn, bool inbound,
traffic_selector_t *src_ts, traffic_selector_t *dst_ts) linked_list_t *src_ts, linked_list_t *dst_ts)
{ {
unsigned char request[PFKEY_BUFFER_SIZE]; unsigned char request[PFKEY_BUFFER_SIZE];
struct sadb_msg *msg, *out; struct sadb_msg *msg, *out;