Use source address in get_nexthop() call

Otherwise the nexthop returned might belong to a different route than
the one actually used with the current source address.
This commit is contained in:
Tobias Brunner
2012-09-21 18:16:25 +02:00
parent 662534657f
commit dad6d904ee
8 changed files with 19 additions and 12 deletions
+2 -2
View File
@@ -269,13 +269,13 @@ METHOD(kernel_interface_t, get_source_addr, host_t*,
} }
METHOD(kernel_interface_t, get_nexthop, host_t*, METHOD(kernel_interface_t, get_nexthop, host_t*,
private_kernel_interface_t *this, host_t *dest) private_kernel_interface_t *this, host_t *dest, host_t *src)
{ {
if (!this->net) if (!this->net)
{ {
return NULL; return NULL;
} }
return this->net->get_nexthop(this->net, dest); return this->net->get_nexthop(this->net, dest, src);
} }
METHOD(kernel_interface_t, get_interface, char*, METHOD(kernel_interface_t, get_interface, char*,
+4 -2
View File
@@ -282,7 +282,7 @@ struct kernel_interface_t {
* Does a route lookup to get the source address used to reach dest. * Does a route lookup to get the source address used to reach dest.
* The returned host is allocated and must be destroyed. * The returned host is allocated and must be destroyed.
* An optional src address can be used to check if a route is available * An optional src address can be used to check if a route is available
* for given source to dest. * for the given source to dest.
* *
* @param dest target destination address * @param dest target destination address
* @param src source address to check, or NULL * @param src source address to check, or NULL
@@ -296,11 +296,13 @@ struct kernel_interface_t {
* *
* Does a route lookup to get the next hop used to reach dest. * Does a route lookup to get the next hop used to reach dest.
* The returned host is allocated and must be destroyed. * The returned host is allocated and must be destroyed.
* An optional src address can be used to check if a route is available
* for the given source to dest.
* *
* @param dest target destination address * @param dest target destination address
* @return next hop address, NULL if unreachable * @return next hop address, NULL if unreachable
*/ */
host_t* (*get_nexthop)(kernel_interface_t *this, host_t *dest); host_t* (*get_nexthop)(kernel_interface_t *this, host_t *dest, host_t *src);
/** /**
* Get the interface name of a local address. * Get the interface name of a local address.
+5 -2
View File
@@ -42,7 +42,7 @@ struct kernel_net_t {
* Does a route lookup to get the source address used to reach dest. * Does a route lookup to get the source address used to reach dest.
* The returned host is allocated and must be destroyed. * The returned host is allocated and must be destroyed.
* An optional src address can be used to check if a route is available * An optional src address can be used to check if a route is available
* for given source to dest. * for the given source to dest.
* *
* @param dest target destination address * @param dest target destination address
* @param src source address to check, or NULL * @param src source address to check, or NULL
@@ -55,11 +55,14 @@ struct kernel_net_t {
* *
* Does a route lookup to get the next hop used to reach dest. * Does a route lookup to get the next hop used to reach dest.
* The returned host is allocated and must be destroyed. * The returned host is allocated and must be destroyed.
* An optional src address can be used to check if a route is available
* for the given source to dest.
* *
* @param dest target destination address * @param dest target destination address
* @param src source address to check, or NULL
* @return next hop address, NULL if unreachable * @return next hop address, NULL if unreachable
*/ */
host_t* (*get_nexthop)(kernel_net_t *this, host_t *dest); host_t* (*get_nexthop)(kernel_net_t *this, host_t *dest, host_t *src);
/** /**
* Get the interface name of a local address. * Get the interface name of a local address.
@@ -2174,7 +2174,7 @@ METHOD(kernel_ipsec_t, add_policy, status_t,
/* get the nexthop to dst */ /* get the nexthop to dst */
route->gateway = hydra->kernel_interface->get_nexthop( route->gateway = hydra->kernel_interface->get_nexthop(
hydra->kernel_interface, dst); hydra->kernel_interface, dst, route->src_ip);
route->dst_net = chunk_clone(policy->dst.net->get_address(policy->dst.net)); route->dst_net = chunk_clone(policy->dst.net->get_address(policy->dst.net));
route->prefixlen = policy->dst.mask; route->prefixlen = policy->dst.mask;
@@ -2167,7 +2167,8 @@ static status_t add_policy_internal(private_kernel_netlink_ipsec_t *this,
{ {
/* get the nexthop to src (src as we are in POLICY_FWD) */ /* get the nexthop to src (src as we are in POLICY_FWD) */
route->gateway = hydra->kernel_interface->get_nexthop( route->gateway = hydra->kernel_interface->get_nexthop(
hydra->kernel_interface, ipsec->src); hydra->kernel_interface, ipsec->src,
ipsec->dst);
/* install route via outgoing interface */ /* install route via outgoing interface */
route->if_name = hydra->kernel_interface->get_interface( route->if_name = hydra->kernel_interface->get_interface(
hydra->kernel_interface, ipsec->dst); hydra->kernel_interface, ipsec->dst);
@@ -1443,9 +1443,9 @@ METHOD(kernel_net_t, get_source_addr, host_t*,
} }
METHOD(kernel_net_t, get_nexthop, host_t*, METHOD(kernel_net_t, get_nexthop, host_t*,
private_kernel_netlink_net_t *this, host_t *dest) private_kernel_netlink_net_t *this, host_t *dest, host_t *src)
{ {
return get_route(this, dest, TRUE, NULL); return get_route(this, dest, TRUE, src);
} }
/** /**
@@ -2026,7 +2026,8 @@ static status_t add_policy_internal(private_kernel_pfkey_ipsec_t *this,
{ {
/* get the nexthop to src (src as we are in POLICY_FWD).*/ /* get the nexthop to src (src as we are in POLICY_FWD).*/
route->gateway = hydra->kernel_interface->get_nexthop( route->gateway = hydra->kernel_interface->get_nexthop(
hydra->kernel_interface, ipsec->src); hydra->kernel_interface, ipsec->src,
ipsec->dst);
/* install route via outgoing interface */ /* install route via outgoing interface */
route->if_name = hydra->kernel_interface->get_interface( route->if_name = hydra->kernel_interface->get_interface(
hydra->kernel_interface, ipsec->dst); hydra->kernel_interface, ipsec->dst);
@@ -520,7 +520,7 @@ METHOD(kernel_net_t, get_source_addr, host_t*,
} }
METHOD(kernel_net_t, get_nexthop, host_t*, METHOD(kernel_net_t, get_nexthop, host_t*,
private_kernel_pfroute_net_t *this, host_t *dest) private_kernel_pfroute_net_t *this, host_t *dest, host_t *src)
{ {
return NULL; return NULL;
} }