netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* get receiving interface index while no message is received
@ 2008-08-08  4:27 Yang Hongyang
  2008-08-08  5:59 ` [PATCH] IPv6:fix the return interface index when get it " Yang Hongyang
  0 siblings, 1 reply; 14+ messages in thread
From: Yang Hongyang @ 2008-08-08  4:27 UTC (permalink / raw)
  To: David Miller; +Cc: netdev


when I use getsockopt(sk, IPPROTO_IPV6, IPV6_2292PKTOPTIONS,(char *)incmsg, &cnt)
to get receiving interface index while no message is received,

What interface index should be returned?

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [PATCH] IPv6:fix the return interface index when get it while no message is received
@ 2008-08-18  6:07 Yang Hongyang
  2008-08-18  6:22 ` David Miller
  2008-08-18 13:31 ` Vlad Yasevich
  0 siblings, 2 replies; 14+ messages in thread
From: Yang Hongyang @ 2008-08-18  6:07 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, yoshfuji

When get receiving interface index while no message is received,
the bounded device's index of the socket should be returned.

RFC 3542:
   Issuing getsockopt() for the above options will return the sticky
   option value i.e., the value set with setsockopt().  If no sticky
   option value has been set getsockopt() will return the following
   values:

   -  For the IPV6_PKTINFO option, it will return an in6_pktinfo
      structure with ipi6_addr being in6addr_any and ipi6_ifindex being
      zero.


Signed-off-by: Yang Hongyang<yanghy@cn.fujitsu.com>

---
 ipv6_sockglue.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
index 2cabac9..e4f8d29 100644
--- a/net/ipv6/ipv6_sockglue.c
+++ b/net/ipv6/ipv6_sockglue.c
@@ -911,7 +911,7 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
 		} else {
 			if (np->rxopt.bits.rxinfo) {
 				struct in6_pktinfo src_info;
-				src_info.ipi6_ifindex = np->mcast_oif;
+				src_info.ipi6_ifindex = np->mcast_oif ? np->mcast_oif : sk->sk_bound_dev_if;
 				ipv6_addr_copy(&src_info.ipi6_addr, &np->daddr);
 				put_cmsg(&msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
 			}
@@ -921,7 +921,7 @@ static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
 			}
 			if (np->rxopt.bits.rxoinfo) {
 				struct in6_pktinfo src_info;
-				src_info.ipi6_ifindex = np->mcast_oif;
+				src_info.ipi6_ifindex = np->mcast_oif ? np->mcast_oif : sk->sk_bound_dev_if;
 				ipv6_addr_copy(&src_info.ipi6_addr, &np->daddr);
 				put_cmsg(&msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
 			}
-- 
1.5.3.8

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

end of thread, other threads:[~2008-08-22 11:54 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-08  4:27 get receiving interface index while no message is received Yang Hongyang
2008-08-08  5:59 ` [PATCH] IPv6:fix the return interface index when get it " Yang Hongyang
2008-08-08  6:03   ` David Miller
2008-08-08 14:58     ` Vlad Yasevich
2008-08-18  5:41       ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2008-08-18  6:07 Yang Hongyang
2008-08-18  6:22 ` David Miller
2008-08-18 13:31 ` Vlad Yasevich
2008-08-19  5:38   ` David Miller
2008-08-19  6:28     ` Yang Hongyang
2008-08-19 13:36       ` Vlad Yasevich
2008-08-20  2:56         ` Yang Hongyang
2008-08-20 13:10           ` Vlad Yasevich
2008-08-22 11:54             ` 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).