All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0
@ 2018-02-16 19:03 David Ahern
  2018-02-16 21:43 ` David Miller
  2018-03-06 20:52 ` David Ahern
  0 siblings, 2 replies; 5+ messages in thread
From: David Ahern @ 2018-02-16 19:03 UTC (permalink / raw)
  To: netdev; +Cc: David Ahern

Only allow ifindex from IP_PKTINFO to override SO_BINDTODEVICE settings
if the index is actually set in the message.

Signed-off-by: David Ahern <dsahern@gmail.com>
---
 net/ipv4/ip_sockglue.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/ip_sockglue.c b/net/ipv4/ip_sockglue.c
index 008be04ac1cc..9dca0fb8c482 100644
--- a/net/ipv4/ip_sockglue.c
+++ b/net/ipv4/ip_sockglue.c
@@ -258,7 +258,8 @@ int ip_cmsg_send(struct sock *sk, struct msghdr *msg, struct ipcm_cookie *ipc,
 			src_info = (struct in6_pktinfo *)CMSG_DATA(cmsg);
 			if (!ipv6_addr_v4mapped(&src_info->ipi6_addr))
 				return -EINVAL;
-			ipc->oif = src_info->ipi6_ifindex;
+			if (src_info->ipi6_ifindex)
+				ipc->oif = src_info->ipi6_ifindex;
 			ipc->addr = src_info->ipi6_addr.s6_addr32[3];
 			continue;
 		}
@@ -288,7 +289,8 @@ int ip_cmsg_send(struct sock *sk, struct msghdr *msg, struct ipcm_cookie *ipc,
 			if (cmsg->cmsg_len != CMSG_LEN(sizeof(struct in_pktinfo)))
 				return -EINVAL;
 			info = (struct in_pktinfo *)CMSG_DATA(cmsg);
-			ipc->oif = info->ipi_ifindex;
+			if (info->ipi_ifindex)
+				ipc->oif = info->ipi_ifindex;
 			ipc->addr = info->ipi_spec_dst.s_addr;
 			break;
 		}
-- 
2.11.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0
  2018-02-16 19:03 [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0 David Ahern
@ 2018-02-16 21:43 ` David Miller
  2018-02-16 22:12   ` David Ahern
  2018-03-06 20:52 ` David Ahern
  1 sibling, 1 reply; 5+ messages in thread
From: David Miller @ 2018-02-16 21:43 UTC (permalink / raw)
  To: dsahern; +Cc: netdev

From: David Ahern <dsahern@gmail.com>
Date: Fri, 16 Feb 2018 11:03:03 -0800

> Only allow ifindex from IP_PKTINFO to override SO_BINDTODEVICE settings
> if the index is actually set in the message.
> 
> Signed-off-by: David Ahern <dsahern@gmail.com>

Ok, this behavior meets reasonable expectations, applied, thanks.

None of the documation is clear about this relationship between
ip_pktinfo's ifindex and settings made by SO_BINDTODEVICE.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0
  2018-02-16 21:43 ` David Miller
@ 2018-02-16 22:12   ` David Ahern
  0 siblings, 0 replies; 5+ messages in thread
From: David Ahern @ 2018-02-16 22:12 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

On 2/16/18 2:43 PM, David Miller wrote:
> From: David Ahern <dsahern@gmail.com>
> Date: Fri, 16 Feb 2018 11:03:03 -0800
> 
>> Only allow ifindex from IP_PKTINFO to override SO_BINDTODEVICE settings
>> if the index is actually set in the message.
>>
>> Signed-off-by: David Ahern <dsahern@gmail.com>
> 
> Ok, this behavior meets reasonable expectations, applied, thanks.
> 
> None of the documation is clear about this relationship between
> ip_pktinfo's ifindex and settings made by SO_BINDTODEVICE.
> 

It is my understanding that SO_BINDTODEVICE is the strongest -- it
requires admin to set. From there IP_PKTINFO and IP_UNICAST_IF are
non-root options and hence weaker. If that is the proper expectation,
then the right thing to do is probably to error out if ipc.oif is
already set. I was concerned that would break existing apps, so this
seemed to be a compromise.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0
  2018-02-16 19:03 [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0 David Ahern
  2018-02-16 21:43 ` David Miller
@ 2018-03-06 20:52 ` David Ahern
  2018-03-06 21:41   ` David Miller
  1 sibling, 1 reply; 5+ messages in thread
From: David Ahern @ 2018-03-06 20:52 UTC (permalink / raw)
  To: David Miller; +Cc: netdev

On 2/16/18 12:03 PM, David Ahern wrote:
> Only allow ifindex from IP_PKTINFO to override SO_BINDTODEVICE settings
> if the index is actually set in the message.
> 
> Signed-off-by: David Ahern <dsahern@gmail.com>
> ---
>  net/ipv4/ip_sockglue.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
> 

Dave: Any chance this can get backported to 4.14 and 4.9 stable
releases? Right now, net-snmp is dead in the water with VRF because it
uses IP_PKTINFO to set the source address AND in the process sets the
ifindex to 0 to allow asymmetric routing (request received on one
interface and response goes out a different one). This patch allows 'ip
vrf exec mgmt snmpd' to work.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0
  2018-03-06 20:52 ` David Ahern
@ 2018-03-06 21:41   ` David Miller
  0 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2018-03-06 21:41 UTC (permalink / raw)
  To: dsahern; +Cc: netdev

From: David Ahern <dsahern@gmail.com>
Date: Tue, 6 Mar 2018 13:52:05 -0700

> On 2/16/18 12:03 PM, David Ahern wrote:
>> Only allow ifindex from IP_PKTINFO to override SO_BINDTODEVICE settings
>> if the index is actually set in the message.
>> 
>> Signed-off-by: David Ahern <dsahern@gmail.com>
>> ---
>>  net/ipv4/ip_sockglue.c | 6 ++++--
>>  1 file changed, 4 insertions(+), 2 deletions(-)
>> 
> 
> Dave: Any chance this can get backported to 4.14 and 4.9 stable
> releases? Right now, net-snmp is dead in the water with VRF because it
> uses IP_PKTINFO to set the source address AND in the process sets the
> ifindex to 0 to allow asymmetric routing (request received on one
> interface and response goes out a different one). This patch allows 'ip
> vrf exec mgmt snmpd' to work.

Ok, I've put this patch into 'net' and will let it soak there, and
also queue it up for a future -stable submission.

Thanks David.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-03-06 21:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-16 19:03 [PATCH net-next] net: Only honor ifindex in IP_PKTINFO if non-0 David Ahern
2018-02-16 21:43 ` David Miller
2018-02-16 22:12   ` David Ahern
2018-03-06 20:52 ` David Ahern
2018-03-06 21:41   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.