Re: [ovs-dev] [PATCH] ovn IPv6 periodic RA : Set Router Lifetime value

2018-04-16 Thread Ben Pfaff
Thanks, Numan and Mark.  I applied this to master and branch-2.9.

On Mon, Apr 16, 2018 at 01:15:59PM -0500, Mark Michelson wrote:
> Thanks, Numan!
> 
> Acked-by: Mark Michelson 
> 
> On 04/16/2018 08:56 AM, nusid...@redhat.com wrote:
> >From: Numan Siddique 
> >
> >ovn-controller when it sends out periodic RA packets, sets '0' in the
> >Router lifetime field. As per the RFC 4861,  lifetime of 0 indicates that
> >the router is not a default router and SHOULD NOT appear on the default
> >router list. Without the default route, a VM will not able to reach to
> >other router ports attached to the same router unless a default route
> >is added by the user.
> >
> >ovn-controller when encoding the 'put_nd_ra_opts' action sets the Router
> >Lifetime field to 0x. So this patch also sets the same value when
> >sending out the periodic RAs.
> >
> >Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1567735
> >CC: Mark Michelson 
> >Signed-off-by: Numan Siddique 
> >---
> >  ovn/controller/pinctrl.c | 3 ++-
> >  tests/ovn.at | 2 +-
> >  2 files changed, 3 insertions(+), 2 deletions(-)
> >
> >diff --git a/ovn/controller/pinctrl.c b/ovn/controller/pinctrl.c
> >index 2f130994a..6e6aa1caa 100644
> >--- a/ovn/controller/pinctrl.c
> >+++ b/ovn/controller/pinctrl.c
> >@@ -1432,7 +1432,8 @@ ipv6_ra_send(struct ipv6_ra_state *ra)
> >  dp_packet_use_stub(, packet_stub, sizeof packet_stub);
> >  compose_nd_ra(, ra->config->eth_src, ra->config->eth_dst,
> >  >config->ipv6_src, >config->ipv6_dst,
> >-255, ra->config->mo_flags, 0, 0, 0, ra->config->mtu);
> >+255, ra->config->mo_flags, htons(IPV6_ND_RA_LIFETIME), 0, 0,
> >+ra->config->mtu);
> >  for (int i = 0; i < ra->config->prefixes.n_ipv6_addrs; i++) {
> >  ovs_be128 addr;
> >diff --git a/tests/ovn.at b/tests/ovn.at
> >index 7ae6640dc..e6c9db60d 100644
> >--- a/tests/ovn.at
> >+++ b/tests/ovn.at
> >@@ -9377,7 +9377,7 @@ construct_expected_ra() {
> >  shift 2
> >  done
> >-local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}
> >+local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}
> >  local icmp=8600${ra}
> >  local ip_len=$(expr ${#icmp} / 2)
> >
> 
> ___
> dev mailing list
> d...@openvswitch.org
> https://mail.openvswitch.org/mailman/listinfo/ovs-dev
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


Re: [ovs-dev] [PATCH] ovn IPv6 periodic RA : Set Router Lifetime value

2018-04-16 Thread Mark Michelson

Thanks, Numan!

Acked-by: Mark Michelson 

On 04/16/2018 08:56 AM, nusid...@redhat.com wrote:

From: Numan Siddique 

ovn-controller when it sends out periodic RA packets, sets '0' in the
Router lifetime field. As per the RFC 4861,  lifetime of 0 indicates that
the router is not a default router and SHOULD NOT appear on the default
router list. Without the default route, a VM will not able to reach to
other router ports attached to the same router unless a default route
is added by the user.

ovn-controller when encoding the 'put_nd_ra_opts' action sets the Router
Lifetime field to 0x. So this patch also sets the same value when
sending out the periodic RAs.

Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1567735
CC: Mark Michelson 
Signed-off-by: Numan Siddique 
---
  ovn/controller/pinctrl.c | 3 ++-
  tests/ovn.at | 2 +-
  2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ovn/controller/pinctrl.c b/ovn/controller/pinctrl.c
index 2f130994a..6e6aa1caa 100644
--- a/ovn/controller/pinctrl.c
+++ b/ovn/controller/pinctrl.c
@@ -1432,7 +1432,8 @@ ipv6_ra_send(struct ipv6_ra_state *ra)
  dp_packet_use_stub(, packet_stub, sizeof packet_stub);
  compose_nd_ra(, ra->config->eth_src, ra->config->eth_dst,
  >config->ipv6_src, >config->ipv6_dst,
-255, ra->config->mo_flags, 0, 0, 0, ra->config->mtu);
+255, ra->config->mo_flags, htons(IPV6_ND_RA_LIFETIME), 0, 0,
+ra->config->mtu);
  
  for (int i = 0; i < ra->config->prefixes.n_ipv6_addrs; i++) {

  ovs_be128 addr;
diff --git a/tests/ovn.at b/tests/ovn.at
index 7ae6640dc..e6c9db60d 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -9377,7 +9377,7 @@ construct_expected_ra() {
  shift 2
  done
  
-local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}

+local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}
  local icmp=8600${ra}
  
  local ip_len=$(expr ${#icmp} / 2)




___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


Re: [ovs-dev] [PATCH] ovn IPv6 periodic RA : Set Router Lifetime value

2018-04-16 Thread Jakub Sitnicki
On Mon, 16 Apr 2018 19:26:53 +0530
nusid...@redhat.com wrote:

> From: Numan Siddique 
> 
> ovn-controller when it sends out periodic RA packets, sets '0' in the
> Router lifetime field. As per the RFC 4861,  lifetime of 0 indicates that
> the router is not a default router and SHOULD NOT appear on the default
> router list. Without the default route, a VM will not able to reach to
> other router ports attached to the same router unless a default route
> is added by the user.
> 
> ovn-controller when encoding the 'put_nd_ra_opts' action sets the Router
> Lifetime field to 0x. So this patch also sets the same value when
> sending out the periodic RAs.
> 
> Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1567735
> CC: Mark Michelson 
> Signed-off-by: Numan Siddique 
> ---

Reviewed-by: Jakub Sitnicki 
___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev


[ovs-dev] [PATCH] ovn IPv6 periodic RA : Set Router Lifetime value

2018-04-16 Thread nusiddiq
From: Numan Siddique 

ovn-controller when it sends out periodic RA packets, sets '0' in the
Router lifetime field. As per the RFC 4861,  lifetime of 0 indicates that
the router is not a default router and SHOULD NOT appear on the default
router list. Without the default route, a VM will not able to reach to
other router ports attached to the same router unless a default route
is added by the user.

ovn-controller when encoding the 'put_nd_ra_opts' action sets the Router
Lifetime field to 0x. So this patch also sets the same value when
sending out the periodic RAs.

Reported-at: https://bugzilla.redhat.com/show_bug.cgi?id=1567735
CC: Mark Michelson 
Signed-off-by: Numan Siddique 
---
 ovn/controller/pinctrl.c | 3 ++-
 tests/ovn.at | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/ovn/controller/pinctrl.c b/ovn/controller/pinctrl.c
index 2f130994a..6e6aa1caa 100644
--- a/ovn/controller/pinctrl.c
+++ b/ovn/controller/pinctrl.c
@@ -1432,7 +1432,8 @@ ipv6_ra_send(struct ipv6_ra_state *ra)
 dp_packet_use_stub(, packet_stub, sizeof packet_stub);
 compose_nd_ra(, ra->config->eth_src, ra->config->eth_dst,
 >config->ipv6_src, >config->ipv6_dst,
-255, ra->config->mo_flags, 0, 0, 0, ra->config->mtu);
+255, ra->config->mo_flags, htons(IPV6_ND_RA_LIFETIME), 0, 0,
+ra->config->mtu);
 
 for (int i = 0; i < ra->config->prefixes.n_ipv6_addrs; i++) {
 ovs_be128 addr;
diff --git a/tests/ovn.at b/tests/ovn.at
index 7ae6640dc..e6c9db60d 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -9377,7 +9377,7 @@ construct_expected_ra() {
 shift 2
 done
 
-local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}
+local ra=ff${ra_mo}${slla}${mtu_opt}${prefix}
 local icmp=8600${ra}
 
 local ip_len=$(expr ${#icmp} / 2)
-- 
2.14.3

___
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev