* [PATCH][IPv6] Add ifindex field in ND user option messages
@ 2007-11-13 0:54 Pierre Ynard
2007-11-13 0:56 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Pierre Ynard @ 2007-11-13 0:54 UTC (permalink / raw)
To: netdev; +Cc: yoshfuji, rdenis
Userland neighbor discovery options are typically heavily involved with
the interface on which thay are received: add a missing ifindex field to
the original struct. Thanks to Rémi Denis-Courmont.
Signed-off-by: Pierre Ynard <linkfanel@yahoo.fr>
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h
index 5bf6182..4e81836 100644
--- a/include/linux/rtnetlink.h
+++ b/include/linux/rtnetlink.h
@@ -491,9 +491,11 @@ struct nduseroptmsg
unsigned char nduseropt_family;
unsigned char nduseropt_pad1;
unsigned short nduseropt_opts_len; /* Total length of options */
+ int nduseropt_ifindex;
__u8 nduseropt_icmp_type;
__u8 nduseropt_icmp_code;
unsigned short nduseropt_pad2;
+ unsigned int nduseropt_pad3;
/* Followed by one or more ND options */
};
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c
index 36f7dbf..67997a7 100644
--- a/net/ipv6/ndisc.c
+++ b/net/ipv6/ndisc.c
@@ -1037,6 +1037,7 @@ static void ndisc_ra_useropt(struct sk_buff *ra, struct nd_opt_hdr *opt)
ndmsg = nlmsg_data(nlh);
ndmsg->nduseropt_family = AF_INET6;
+ ndmsg->nduseropt_ifindex = ra->dev->ifindex;
ndmsg->nduseropt_icmp_type = icmp6h->icmp6_type;
ndmsg->nduseropt_icmp_code = icmp6h->icmp6_code;
ndmsg->nduseropt_opts_len = opt->nd_opt_len << 3;
--
Pierre Ynard
For hire in Quebec City, Canada, during Fall 2007
"Une âme dans un corps, c'est comme un dessin sur une feuille de papier."
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH][IPv6] Add ifindex field in ND user option messages
2007-11-13 0:54 [PATCH][IPv6] Add ifindex field in ND user option messages Pierre Ynard
@ 2007-11-13 0:56 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2007-11-13 0:56 UTC (permalink / raw)
To: linkfanel; +Cc: netdev, yoshfuji, rdenis
From: Pierre Ynard <linkfanel@yahoo.fr>
Date: Tue, 13 Nov 2007 01:54:13 +0100
> Userland neighbor discovery options are typically heavily involved with
> the interface on which thay are received: add a missing ifindex field to
> the original struct. Thanks to Rémi Denis-Courmont.
>
> Signed-off-by: Pierre Ynard <linkfanel@yahoo.fr>
Unfortunately you cannot change the layout of a structure
already exported to userspace, it is part of the ABI.
You'll need to create a new netlink attribute or similar
in order to provide this information.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-11-13 0:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-11-13 0:54 [PATCH][IPv6] Add ifindex field in ND user option messages Pierre Ynard
2007-11-13 0:56 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox