* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 [not found] <6c039e090907231439t1def08a4n10978733bee55bec@mail.gmail.com> @ 2009-07-27 21:44 ` Andrew Morton 2009-07-30 0:10 ` John Dykstra 0 siblings, 1 reply; 9+ messages in thread From: Andrew Morton @ 2009-07-27 21:44 UTC (permalink / raw) To: Chia-chi Yeh; +Cc: linux-kernel, netdev (cc netdev) On Thu, 23 Jul 2009 14:39:28 -0700 Chia-chi Yeh (_________) <chiachi@android.com> wrote: > In IPv4, sending a packet with ipi_ifindex = 0 via an interface-bound > socket will unbind the packet to that interface. This behavior is > different from IPv6 which treats ipi6_ifindex = 0 as unspecified. > Furthermore, IPv6 does not allow sending packets to other interface > than the bound one, but I am not sure if it is necessary in IPv4. The > following patch keeps the interface binding when ipi_ifindex = 0. > > Thanks, > Chia-chi > > --- a/net/ipv4/ip_sockglue.c 2009-07-24 04:50:45.000000000 +0800 > +++ b/net/ipv4/ip_sockglue.c 2009-07-24 04:51:09.000000000 +0800 > @@ -213,7 +213,8 @@ > 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; > } ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-07-27 21:44 ` [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 Andrew Morton @ 2009-07-30 0:10 ` John Dykstra 2009-08-04 4:23 ` David Miller 0 siblings, 1 reply; 9+ messages in thread From: John Dykstra @ 2009-07-30 0:10 UTC (permalink / raw) To: Andrew Morton; +Cc: Chia-chi Yeh, linux-kernel, netdev On Mon, 2009-07-27 at 14:44 -0700, Andrew Morton wrote: > (cc netdev) > > On Thu, 23 Jul 2009 14:39:28 -0700 > Chia-chi Yeh (_________) <chiachi@android.com> wrote: > > > In IPv4, sending a packet with ipi_ifindex = 0 via an interface-bound > > socket will unbind the packet to that interface. This behavior is > > different from IPv6 which treats ipi6_ifindex = 0 as unspecified. > > Furthermore, IPv6 does not allow sending packets to other interface > > than the bound one, but I am not sure if it is necessary in IPv4. The > > following patch keeps the interface binding when ipi_ifindex = 0. > > > > Thanks, > > Chia-chi > > > > --- a/net/ipv4/ip_sockglue.c 2009-07-24 04:50:45.000000000 +0800 > > +++ b/net/ipv4/ip_sockglue.c 2009-07-24 04:51:09.000000000 +0800 > > @@ -213,7 +213,8 @@ > > 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; > > } A convenient copy of the man page says "When ipi_ifindex is not zero the primary local address of the interface specified by the index overwrites ipi_spec_dst for the routing table lookup." But this is changing API behavior that's been this way since at least the beginning of git history. I guess Dave's letting this stand. I'm posting this just to make sure this is an explicit decision. -- John ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-07-30 0:10 ` John Dykstra @ 2009-08-04 4:23 ` David Miller 2009-08-04 7:36 ` Chia-chi Yeh (葉家齊) 0 siblings, 1 reply; 9+ messages in thread From: David Miller @ 2009-08-04 4:23 UTC (permalink / raw) To: john.dykstra1; +Cc: akpm, chiachi, linux-kernel, netdev From: John Dykstra <john.dykstra1@gmail.com> Date: Wed, 29 Jul 2009 19:10:21 -0500 > I guess Dave's letting this stand. I'm posting this just to make sure > this is an explicit decision. I'm still thinking about this. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-04 4:23 ` David Miller @ 2009-08-04 7:36 ` Chia-chi Yeh (葉家齊) 2009-08-04 7:57 ` Badalian Vyacheslav 2009-08-04 18:57 ` David Miller 0 siblings, 2 replies; 9+ messages in thread From: Chia-chi Yeh (葉家齊) @ 2009-08-04 7:36 UTC (permalink / raw) To: David Miller; +Cc: john.dykstra1, akpm, linux-kernel, netdev After thinking more deeply, I believe that IPv6 does the right thing and IPv4 does not. SO_BINDTODEVICE requires CAP_NET_RAW, so it is a privileged operation. Therefore, it looks weird to me if one can specify other interface than the bound one without the same capability. The following patch makes the behavior in IPv4 and IPv6 identical. Thanks for your help. Chia-chi --- a/net/ipv4/ip_sockglue.c 2009-08-04 15:11:39.000000000 +0800 +++ b/net/ipv4/ip_sockglue.c 2009-08-04 15:17:05.000000000 +0800 @@ -213,7 +213,11 @@ 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) { + if (ipc->oif && info->ipi_ifindex != ipc->oif) + return -EINVAL; + ipc->oif = info->ipi_ifindex; + } ipc->addr = info->ipi_spec_dst.s_addr; break; } On Tue, Aug 4, 2009 at 12:23 PM, David Miller<davem@davemloft.net> wrote: > From: John Dykstra <john.dykstra1@gmail.com> > Date: Wed, 29 Jul 2009 19:10:21 -0500 > >> I guess Dave's letting this stand. I'm posting this just to make sure >> this is an explicit decision. > > I'm still thinking about this. > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-04 7:36 ` Chia-chi Yeh (葉家齊) @ 2009-08-04 7:57 ` Badalian Vyacheslav 2009-08-04 8:28 ` Chia-chi Yeh (葉家齊) 2009-08-04 18:57 ` David Miller 1 sibling, 1 reply; 9+ messages in thread From: Badalian Vyacheslav @ 2009-08-04 7:57 UTC (permalink / raw) To: "Chia-chi Yeh (葉家齊)" Cc: David Miller, john.dykstra1, akpm, linux-kernel, netdev Chia-chi Yeh (葉家齊) пишет: > After thinking more deeply, I believe that IPv6 does the right thing > and IPv4 does not. SO_BINDTODEVICE requires CAP_NET_RAW, so it is a > privileged operation. Therefore, it looks weird to me if one can > specify other interface than the bound one without the same > capability. The following patch makes the behavior in IPv4 and IPv6 > identical. Thanks for your help. > > Chia-chi > > --- a/net/ipv4/ip_sockglue.c 2009-08-04 15:11:39.000000000 +0800 > +++ b/net/ipv4/ip_sockglue.c 2009-08-04 15:17:05.000000000 +0800 > @@ -213,7 +213,11 @@ > 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) { > + if (ipc->oif && info->ipi_ifindex != ipc->oif) > + return -EINVAL; > + ipc->oif = info->ipi_ifindex; Hello Sorry if its my mistake or i someone not understand :) if (ipc->oif && info->ipi_ifindex != ipc->oif) // if match: info->ipi_ifindex != ipc->oif return ... else // else match: info->ipi_ifindex == ipc->oif // but you do ipc->oif = info->ipi_ifindex; // why if you else match allready check for it? Thanks > + } > ipc->addr = info->ipi_spec_dst.s_addr; > break; > } > > On Tue, Aug 4, 2009 at 12:23 PM, David Miller<davem@davemloft.net> wrote: >> From: John Dykstra <john.dykstra1@gmail.com> >> Date: Wed, 29 Jul 2009 19:10:21 -0500 >> >>> I guess Dave's letting this stand. I'm posting this just to make sure >>> this is an explicit decision. >> I'm still thinking about this. >> > -- > To unsubscribe from this list: send the line "unsubscribe netdev" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > > ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-04 7:57 ` Badalian Vyacheslav @ 2009-08-04 8:28 ` Chia-chi Yeh (葉家齊) 0 siblings, 0 replies; 9+ messages in thread From: Chia-chi Yeh (葉家齊) @ 2009-08-04 8:28 UTC (permalink / raw) To: Badalian Vyacheslav Cc: David Miller, john.dykstra1, akpm, linux-kernel, netdev On Tue, Aug 4, 2009 at 3:57 PM, Badalian Vyacheslav<slavon@bigtelecom.ru> wrote: > > Hello > Sorry if its my mistake or i someone not understand :) > > if (ipc->oif && info->ipi_ifindex != ipc->oif) > // if match: info->ipi_ifindex != ipc->oif > return ... > else > // else match: info->ipi_ifindex == ipc->oif > // but you do > ipc->oif = info->ipi_ifindex; > // why if you else match allready check for it? > > Thanks Hi Badalian, Consider ipc->oif = 0 before the if-condition. :) Chia-chi ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-04 7:36 ` Chia-chi Yeh (葉家齊) 2009-08-04 7:57 ` Badalian Vyacheslav @ 2009-08-04 18:57 ` David Miller 2009-08-05 0:06 ` Chia-chi Yeh (葉家齊) 1 sibling, 1 reply; 9+ messages in thread From: David Miller @ 2009-08-04 18:57 UTC (permalink / raw) To: chiachi; +Cc: john.dykstra1, akpm, linux-kernel, netdev From: Chia-chi Yeh (葉家齊) <chiachi@android.com> Date: Tue, 4 Aug 2009 15:36:46 +0800 > After thinking more deeply, I believe that IPv6 does the right thing > and IPv4 does not. SO_BINDTODEVICE requires CAP_NET_RAW, so it is a > privileged operation. Therefore, it looks weird to me if one can > specify other interface than the bound one without the same > capability. The following patch makes the behavior in IPv4 and IPv6 > identical. Thanks for your help. I think we really cannot change behavior here. If the user specifies "0" in ipi_ifindex we must respect that in ipc->oif. This is an override, and the ability to override is the very purpose of this control message. Even GLIBC makes use of that case of specifying "0" in ipi_ifindex. We must respect it. I'm not applying any of these patches, sorry. ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-04 18:57 ` David Miller @ 2009-08-05 0:06 ` Chia-chi Yeh (葉家齊) 2009-08-05 2:33 ` David Miller 0 siblings, 1 reply; 9+ messages in thread From: Chia-chi Yeh (葉家齊) @ 2009-08-05 0:06 UTC (permalink / raw) To: David Miller; +Cc: john.dykstra1, akpm, linux-kernel, netdev 2009/8/5 David Miller <davem@davemloft.net>: > I think we really cannot change behavior here. If the user specifies > "0" in ipi_ifindex we must respect that in ipc->oif. This is an > override, and the ability to override is the very purpose of this > control message. > > Even GLIBC makes use of that case of specifying "0" in ipi_ifindex. > We must respect it. > > I'm not applying any of these patches, sorry. > If you treat ipi_ifindex as an override, do you want to do that in ipi6_ifindex as well? Also, CAP_NET_RAW check for SO_BINDTODEVICE becomes meaningless in this case. I did not find the usage of ipi_ifindex in glibc. It would be great if you can give me some pointers. Thanks for your help. Chia-chi ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 2009-08-05 0:06 ` Chia-chi Yeh (葉家齊) @ 2009-08-05 2:33 ` David Miller 0 siblings, 0 replies; 9+ messages in thread From: David Miller @ 2009-08-05 2:33 UTC (permalink / raw) To: chiachi; +Cc: john.dykstra1, akpm, linux-kernel, netdev From: Chia-chi Yeh (葉家齊) <chiachi@android.com> Date: Wed, 5 Aug 2009 08:06:25 +0800 > 2009/8/5 David Miller <davem@davemloft.net>: >> I think we really cannot change behavior here. If the user specifies >> "0" in ipi_ifindex we must respect that in ipc->oif. This is an >> override, and the ability to override is the very purpose of this >> control message. >> >> Even GLIBC makes use of that case of specifying "0" in ipi_ifindex. >> We must respect it. >> >> I'm not applying any of these patches, sorry. >> > > If you treat ipi_ifindex as an override, do you want to do that in > ipi6_ifindex as well? Also, CAP_NET_RAW check for SO_BINDTODEVICE > becomes meaningless in this case. ipi_ifindex influences routing decisions, it doesn't also influence socket matching like SO_BINDTODEVICE does. That's the crucial difference. This interface index gets passed into the routing lookup and that is completely harmless to allow users to do. About ipv6 it is indeed an important issue, because apps that work now with ipv4's behavior are going to break if they care about this case when they start using ipv6. Probably the thing to do is make ipv6 work the same as ipv4. > I did not find the usage of ipi_ifindex in glibc. It would be great if > you can give me some pointers. Thanks for your help. If grep is broken on your system, I'm sorry to hear that: find . -type f | xargs egrep IP_PKTINFO Give that a try on your glibc tree. ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2009-08-05 2:33 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <6c039e090907231439t1def08a4n10978733bee55bec@mail.gmail.com>
2009-07-27 21:44 ` [PATCH] net: Keep interface binding when sending packets with ipi_ifindex = 0 Andrew Morton
2009-07-30 0:10 ` John Dykstra
2009-08-04 4:23 ` David Miller
2009-08-04 7:36 ` Chia-chi Yeh (葉家齊)
2009-08-04 7:57 ` Badalian Vyacheslav
2009-08-04 8:28 ` Chia-chi Yeh (葉家齊)
2009-08-04 18:57 ` David Miller
2009-08-05 0:06 ` Chia-chi Yeh (葉家齊)
2009-08-05 2:33 ` David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).