aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>2006-03-20 19:55:08 -0500
committerDavid S. Miller <davem@davemloft.net>2006-03-20 19:55:08 -0500
commit65f5c7c1143fb8eed5bc7e7d8c926346e00fe3c0 (patch)
treefb61c9f73577a7fec29b11039d1434b972796d8b /net
parent073a8e0e154c1c440e0b33aaa887473d5cc843f4 (diff)
[IPV6]: ROUTE: Add accept_ra_defrtr sysctl.
This controls whether we accept default router information in RAs. Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/ipv6/addrconf.c11
-rw-r--r--net/ipv6/ndisc.c7
2 files changed, 17 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index 8a8895ef09a7..fbcdcc6ba93b 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -165,6 +165,7 @@ struct ipv6_devconf ipv6_devconf = {
165 .max_desync_factor = MAX_DESYNC_FACTOR, 165 .max_desync_factor = MAX_DESYNC_FACTOR,
166#endif 166#endif
167 .max_addresses = IPV6_MAX_ADDRESSES, 167 .max_addresses = IPV6_MAX_ADDRESSES,
168 .accept_ra_defrtr = 1,
168}; 169};
169 170
170static struct ipv6_devconf ipv6_devconf_dflt = { 171static struct ipv6_devconf ipv6_devconf_dflt = {
@@ -186,6 +187,7 @@ static struct ipv6_devconf ipv6_devconf_dflt = {
186 .max_desync_factor = MAX_DESYNC_FACTOR, 187 .max_desync_factor = MAX_DESYNC_FACTOR,
187#endif 188#endif
188 .max_addresses = IPV6_MAX_ADDRESSES, 189 .max_addresses = IPV6_MAX_ADDRESSES,
190 .accept_ra_defrtr = 1,
189}; 191};
190 192
191/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */ 193/* IPv6 Wildcard Address and Loopback Address defined by RFC2553 */
@@ -3116,6 +3118,7 @@ static void inline ipv6_store_devconf(struct ipv6_devconf *cnf,
3116 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor; 3118 array[DEVCONF_MAX_DESYNC_FACTOR] = cnf->max_desync_factor;
3117#endif 3119#endif
3118 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses; 3120 array[DEVCONF_MAX_ADDRESSES] = cnf->max_addresses;
3121 array[DEVCONF_ACCEPT_RA_DEFRTR] = cnf->accept_ra_defrtr;
3119} 3122}
3120 3123
3121static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev, 3124static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
@@ -3569,6 +3572,14 @@ static struct addrconf_sysctl_table
3569 .proc_handler = &proc_dointvec, 3572 .proc_handler = &proc_dointvec,
3570 }, 3573 },
3571 { 3574 {
3575 .ctl_name = NET_IPV6_ACCEPT_RA_DEFRTR,
3576 .procname = "accept_ra_defrtr",
3577 .data = &ipv6_devconf.accept_ra_defrtr,
3578 .maxlen = sizeof(int),
3579 .mode = 0644,
3580 .proc_handler = &proc_dointvec,
3581 },
3582 {
3572 .ctl_name = 0, /* sentinel */ 3583 .ctl_name = 0, /* sentinel */
3573 } 3584 }
3574 }, 3585 },
diff --git a/net/ipv6/ndisc.c b/net/ipv6/ndisc.c
index cb8856b1d951..e17116796059 100644
--- a/net/ipv6/ndisc.c
+++ b/net/ipv6/ndisc.c
@@ -1019,7 +1019,7 @@ static void ndisc_router_discovery(struct sk_buff *skb)
1019 struct ra_msg *ra_msg = (struct ra_msg *) skb->h.raw; 1019 struct ra_msg *ra_msg = (struct ra_msg *) skb->h.raw;
1020 struct neighbour *neigh = NULL; 1020 struct neighbour *neigh = NULL;
1021 struct inet6_dev *in6_dev; 1021 struct inet6_dev *in6_dev;
1022 struct rt6_info *rt; 1022 struct rt6_info *rt = NULL;
1023 int lifetime; 1023 int lifetime;
1024 struct ndisc_options ndopts; 1024 struct ndisc_options ndopts;
1025 int optlen; 1025 int optlen;
@@ -1081,6 +1081,9 @@ static void ndisc_router_discovery(struct sk_buff *skb)
1081 (ra_msg->icmph.icmp6_addrconf_other ? 1081 (ra_msg->icmph.icmp6_addrconf_other ?
1082 IF_RA_OTHERCONF : 0); 1082 IF_RA_OTHERCONF : 0);
1083 1083
1084 if (!in6_dev->cnf.accept_ra_defrtr)
1085 goto skip_defrtr;
1086
1084 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime); 1087 lifetime = ntohs(ra_msg->icmph.icmp6_rt_lifetime);
1085 1088
1086 rt = rt6_get_dflt_router(&skb->nh.ipv6h->saddr, skb->dev); 1089 rt = rt6_get_dflt_router(&skb->nh.ipv6h->saddr, skb->dev);
@@ -1128,6 +1131,8 @@ static void ndisc_router_discovery(struct sk_buff *skb)
1128 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit; 1131 rt->u.dst.metrics[RTAX_HOPLIMIT-1] = ra_msg->icmph.icmp6_hop_limit;
1129 } 1132 }
1130 1133
1134skip_defrtr:
1135
1131 /* 1136 /*
1132 * Update Reachable Time and Retrans Timer 1137 * Update Reachable Time and Retrans Timer
1133 */ 1138 */