summaryrefslogtreecommitdiff
path: root/ofproto/ofproto-dpif-sflow.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2018-04-13 10:04:26 -0700
committerBen Pfaff <blp@ovn.org>2018-04-16 14:53:27 -0700
commit71c54ad2cd4f30fc938b5c886bf25b3509fd7205 (patch)
tree7c74c0145d8d0c1f0f298406b461b8038667daba /ofproto/ofproto-dpif-sflow.c
parentee4776b8bce1162a18719cf1c1847f68571b2ff3 (diff)
downloadopenvswitch-71c54ad2cd4f30fc938b5c886bf25b3509fd7205.tar.gz
ofproto-dpif-slow: Add IPv6 agent address support.
Suggested-by: Neil McKee <neil.mckee@inmon.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'ofproto/ofproto-dpif-sflow.c')
-rw-r--r--ofproto/ofproto-dpif-sflow.c55
1 files changed, 33 insertions, 22 deletions
diff --git a/ofproto/ofproto-dpif-sflow.c b/ofproto/ofproto-dpif-sflow.c
index 5d8c0e19f..fe79a9dbb 100644
--- a/ofproto/ofproto-dpif-sflow.c
+++ b/ofproto/ofproto-dpif-sflow.c
@@ -446,43 +446,45 @@ sflow_choose_agent_address(const char *agent_device,
const char *control_ip,
SFLAddress *agent_addr)
{
- const char *target;
- struct in_addr in4;
-
- memset(agent_addr, 0, sizeof *agent_addr);
- agent_addr->type = SFLADDRESSTYPE_IP_V4;
+ struct in6_addr ip;
if (agent_device) {
- if (!netdev_get_in4_by_name(agent_device, &in4)
- || !lookup_ip(agent_device, &in4)) {
+ /* If 'agent_device' is the name of a network device, use its IP
+ * address. */
+ if (!netdev_get_ip_by_name(agent_device, &ip)) {
+ goto success;
+ }
+
+ /* If 'agent_device' is itself an IP address, use it. */
+ struct sockaddr_storage ss;
+ if (inet_parse_address(agent_device, &ss)) {
+ ip = ss_get_address(&ss);
goto success;
}
}
+ /* Otherwise, use an appropriate local IP address for one of the
+ * collectors' remote IP addresses. */
+ const char *target;
SSET_FOR_EACH (target, targets) {
- union {
- struct sockaddr_storage ss;
- struct sockaddr_in sin;
- } sa;
- char name[IFNAMSIZ];
-
- if (inet_parse_active(target, SFL_DEFAULT_COLLECTOR_PORT, &sa.ss)
- && sa.ss.ss_family == AF_INET) {
- struct in6_addr addr6, src, gw;
-
- in6_addr_set_mapped_ipv4(&addr6, sa.sin.sin_addr.s_addr);
+ struct sockaddr_storage ss;
+ if (inet_parse_active(target, SFL_DEFAULT_COLLECTOR_PORT, &ss)) {
/* sFlow only supports target in default routing table with
* packet mark zero.
*/
- if (ovs_router_lookup(0, &addr6, name, &src, &gw)) {
+ ip = ss_get_address(&ss);
- in4.s_addr = in6_addr_get_mapped_ipv4(&src);
+ struct in6_addr src, gw;
+ char name[IFNAMSIZ];
+ if (ovs_router_lookup(0, &ip, name, &src, &gw)) {
goto success;
}
}
}
- if (control_ip && !lookup_ip(control_ip, &in4)) {
+ struct sockaddr_storage ss;
+ if (control_ip && inet_parse_address(control_ip, &ss)) {
+ ip = ss_get_address(&ss);
goto success;
}
@@ -490,7 +492,16 @@ sflow_choose_agent_address(const char *agent_device,
return false;
success:
- agent_addr->address.ip_v4.addr = (OVS_FORCE uint32_t) in4.s_addr;
+ memset(agent_addr, 0, sizeof *agent_addr);
+ if (IN6_IS_ADDR_V4MAPPED(&ip)) {
+ agent_addr->type = SFLADDRESSTYPE_IP_V4;
+ agent_addr->address.ip_v4.addr
+ = (OVS_FORCE uint32_t) in6_addr_get_mapped_ipv4(&ip);
+ } else {
+ agent_addr->type = SFLADDRESSTYPE_IP_V6;
+ memcpy(agent_addr->address.ip_v6.addr, ip.s6_addr,
+ sizeof agent_addr->address.ip_v6.addr);
+ }
return true;
}