diff options
Diffstat (limited to 'net/ipv6/icmp.c')
| -rw-r--r-- | net/ipv6/icmp.c | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c index b4a9fd51dae..d77dc1e2a42 100644 --- a/net/ipv6/icmp.c +++ b/net/ipv6/icmp.c @@ -967,9 +967,14 @@ struct ctl_table * __net_init ipv6_icmp_sysctl_init(struct net *net)  			sizeof(ipv6_icmp_table_template),  			GFP_KERNEL); -	if (table) +	if (table) {  		table[0].data = &net->ipv6.sysctl.icmpv6_time; +		/* Don't export sysctls to unprivileged users */ +		if (net->user_ns != &init_user_ns) +			table[0].procname = NULL; +	} +  	return table;  }  #endif  |