Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * sysctl_net_ipv6.c: sysctl interface to net IPV6 subsystem. |
| 4 | * |
| 5 | * Changes: |
| 6 | * YOSHIFUJI Hideaki @USAGI: added icmp sysctl table. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/mm.h> |
| 10 | #include <linux/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/in6.h> |
| 12 | #include <linux/ipv6.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 14 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <net/ndisc.h> |
| 16 | #include <net/ipv6.h> |
| 17 | #include <net/addrconf.h> |
Pavel Emelyanov | 04128f2 | 2007-10-15 02:33:45 -0700 | [diff] [blame] | 18 | #include <net/inet_frag.h> |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 19 | #include <net/netevent.h> |
Huw Davies | 4fee524 | 2016-06-27 15:06:17 -0400 | [diff] [blame] | 20 | #ifdef CONFIG_NETLABEL |
| 21 | #include <net/calipso.h> |
| 22 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 24 | static int zero; |
Hannes Frederic Sowa | 2f71193 | 2014-09-02 15:49:25 +0200 | [diff] [blame] | 25 | static int one = 1; |
Eric Dumazet | a346abe | 2019-07-01 06:39:36 -0700 | [diff] [blame] | 26 | static int flowlabel_reflect_max = 0x7; |
Tom Herbert | 4224090 | 2015-07-31 16:52:12 -0700 | [diff] [blame] | 27 | static int auto_flowlabels_min; |
| 28 | static int auto_flowlabels_max = IP6_AUTO_FLOW_LABEL_MAX; |
| 29 | |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 30 | static int proc_rt6_multipath_hash_policy(struct ctl_table *table, int write, |
| 31 | void __user *buffer, size_t *lenp, |
| 32 | loff_t *ppos) |
| 33 | { |
| 34 | struct net *net; |
| 35 | int ret; |
| 36 | |
| 37 | net = container_of(table->data, struct net, |
| 38 | ipv6.sysctl.multipath_hash_policy); |
| 39 | ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); |
| 40 | if (write && ret == 0) |
| 41 | call_netevent_notifiers(NETEVENT_IPV6_MPATH_HASH_UPDATE, net); |
| 42 | |
| 43 | return ret; |
| 44 | } |
Hannes Frederic Sowa | 2f71193 | 2014-09-02 15:49:25 +0200 | [diff] [blame] | 45 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 46 | static struct ctl_table ipv6_table_template[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | .procname = "bindv6only", |
Daniel Lezcano | 99bc9c4 | 2008-01-10 02:54:53 -0800 | [diff] [blame] | 49 | .data = &init_net.ipv6.sysctl.bindv6only, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | .maxlen = sizeof(int), |
| 51 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 52 | .proc_handler = proc_dointvec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | }, |
FX Le Bail | 509aba3 | 2014-01-07 14:57:27 +0100 | [diff] [blame] | 54 | { |
| 55 | .procname = "anycast_src_echo_reply", |
FX Le Bail | ec35b61 | 2014-01-13 15:59:01 +0100 | [diff] [blame] | 56 | .data = &init_net.ipv6.sysctl.anycast_src_echo_reply, |
FX Le Bail | 509aba3 | 2014-01-07 14:57:27 +0100 | [diff] [blame] | 57 | .maxlen = sizeof(int), |
| 58 | .mode = 0644, |
| 59 | .proc_handler = proc_dointvec |
| 60 | }, |
Florent Fourcot | 6444f72 | 2014-01-17 17:15:05 +0100 | [diff] [blame] | 61 | { |
| 62 | .procname = "flowlabel_consistency", |
| 63 | .data = &init_net.ipv6.sysctl.flowlabel_consistency, |
| 64 | .maxlen = sizeof(int), |
| 65 | .mode = 0644, |
| 66 | .proc_handler = proc_dointvec |
| 67 | }, |
Lorenzo Colitti | e110861 | 2014-05-13 10:17:33 -0700 | [diff] [blame] | 68 | { |
Tom Herbert | cb1ce2e | 2014-07-01 21:33:10 -0700 | [diff] [blame] | 69 | .procname = "auto_flowlabels", |
| 70 | .data = &init_net.ipv6.sysctl.auto_flowlabels, |
| 71 | .maxlen = sizeof(int), |
| 72 | .mode = 0644, |
Tom Herbert | 4224090 | 2015-07-31 16:52:12 -0700 | [diff] [blame] | 73 | .proc_handler = proc_dointvec_minmax, |
| 74 | .extra1 = &auto_flowlabels_min, |
| 75 | .extra2 = &auto_flowlabels_max |
Tom Herbert | cb1ce2e | 2014-07-01 21:33:10 -0700 | [diff] [blame] | 76 | }, |
| 77 | { |
Lorenzo Colitti | e110861 | 2014-05-13 10:17:33 -0700 | [diff] [blame] | 78 | .procname = "fwmark_reflect", |
| 79 | .data = &init_net.ipv6.sysctl.fwmark_reflect, |
| 80 | .maxlen = sizeof(int), |
| 81 | .mode = 0644, |
| 82 | .proc_handler = proc_dointvec |
| 83 | }, |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 84 | { |
| 85 | .procname = "idgen_retries", |
| 86 | .data = &init_net.ipv6.sysctl.idgen_retries, |
| 87 | .maxlen = sizeof(int), |
| 88 | .mode = 0644, |
| 89 | .proc_handler = proc_dointvec, |
| 90 | }, |
| 91 | { |
| 92 | .procname = "idgen_delay", |
| 93 | .data = &init_net.ipv6.sysctl.idgen_delay, |
| 94 | .maxlen = sizeof(int), |
| 95 | .mode = 0644, |
| 96 | .proc_handler = proc_dointvec_jiffies, |
| 97 | }, |
Tom Herbert | 82a584b | 2015-04-29 15:33:21 -0700 | [diff] [blame] | 98 | { |
| 99 | .procname = "flowlabel_state_ranges", |
| 100 | .data = &init_net.ipv6.sysctl.flowlabel_state_ranges, |
| 101 | .maxlen = sizeof(int), |
| 102 | .mode = 0644, |
| 103 | .proc_handler = proc_dointvec |
| 104 | }, |
Tom Herbert | 35a256f | 2015-07-08 16:58:22 -0700 | [diff] [blame] | 105 | { |
| 106 | .procname = "ip_nonlocal_bind", |
| 107 | .data = &init_net.ipv6.sysctl.ip_nonlocal_bind, |
| 108 | .maxlen = sizeof(int), |
| 109 | .mode = 0644, |
| 110 | .proc_handler = proc_dointvec |
| 111 | }, |
Jakub Sitnicki | 22b6722 | 2017-08-23 09:55:41 +0200 | [diff] [blame] | 112 | { |
| 113 | .procname = "flowlabel_reflect", |
| 114 | .data = &init_net.ipv6.sysctl.flowlabel_reflect, |
| 115 | .maxlen = sizeof(int), |
| 116 | .mode = 0644, |
Eiichi Tsukata | 00dc330 | 2019-06-28 11:37:14 +0900 | [diff] [blame^] | 117 | .proc_handler = proc_dointvec_minmax, |
Eric Dumazet | 323a53c | 2019-06-05 07:55:09 -0700 | [diff] [blame] | 118 | .extra1 = &zero, |
Eric Dumazet | a346abe | 2019-07-01 06:39:36 -0700 | [diff] [blame] | 119 | .extra2 = &flowlabel_reflect_max, |
Jakub Sitnicki | 22b6722 | 2017-08-23 09:55:41 +0200 | [diff] [blame] | 120 | }, |
Tom Herbert | 47d3d7a | 2017-10-30 14:16:00 -0700 | [diff] [blame] | 121 | { |
| 122 | .procname = "max_dst_opts_number", |
| 123 | .data = &init_net.ipv6.sysctl.max_dst_opts_cnt, |
| 124 | .maxlen = sizeof(int), |
| 125 | .mode = 0644, |
| 126 | .proc_handler = proc_dointvec |
| 127 | }, |
| 128 | { |
| 129 | .procname = "max_hbh_opts_number", |
| 130 | .data = &init_net.ipv6.sysctl.max_hbh_opts_cnt, |
| 131 | .maxlen = sizeof(int), |
| 132 | .mode = 0644, |
| 133 | .proc_handler = proc_dointvec |
| 134 | }, |
| 135 | { |
| 136 | .procname = "max_dst_opts_length", |
| 137 | .data = &init_net.ipv6.sysctl.max_dst_opts_len, |
| 138 | .maxlen = sizeof(int), |
| 139 | .mode = 0644, |
| 140 | .proc_handler = proc_dointvec |
| 141 | }, |
| 142 | { |
| 143 | .procname = "max_hbh_length", |
| 144 | .data = &init_net.ipv6.sysctl.max_hbh_opts_len, |
| 145 | .maxlen = sizeof(int), |
| 146 | .mode = 0644, |
| 147 | .proc_handler = proc_dointvec |
| 148 | }, |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 149 | { |
| 150 | .procname = "fib_multipath_hash_policy", |
| 151 | .data = &init_net.ipv6.sysctl.multipath_hash_policy, |
| 152 | .maxlen = sizeof(int), |
| 153 | .mode = 0644, |
| 154 | .proc_handler = proc_rt6_multipath_hash_policy, |
| 155 | .extra1 = &zero, |
| 156 | .extra2 = &one, |
| 157 | }, |
Ahmed Abdelsalam | b5facfd | 2018-04-24 20:23:16 +0200 | [diff] [blame] | 158 | { |
| 159 | .procname = "seg6_flowlabel", |
| 160 | .data = &init_net.ipv6.sysctl.seg6_flowlabel, |
| 161 | .maxlen = sizeof(int), |
| 162 | .mode = 0644, |
| 163 | .proc_handler = proc_dointvec |
| 164 | }, |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 165 | { } |
Pavel Emelyanov | 34ac257 | 2008-05-19 13:53:30 -0700 | [diff] [blame] | 166 | }; |
| 167 | |
Joe Perches | fe2c633 | 2013-06-11 23:04:25 -0700 | [diff] [blame] | 168 | static struct ctl_table ipv6_rotable[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | .procname = "mld_max_msf", |
| 171 | .data = &sysctl_mld_max_msf, |
| 172 | .maxlen = sizeof(int), |
| 173 | .mode = 0644, |
Alexey Dobriyan | 6d9f239 | 2008-11-03 18:21:05 -0800 | [diff] [blame] | 174 | .proc_handler = proc_dointvec |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | }, |
Hannes Frederic Sowa | 2f71193 | 2014-09-02 15:49:25 +0200 | [diff] [blame] | 176 | { |
| 177 | .procname = "mld_qrv", |
| 178 | .data = &sysctl_mld_qrv, |
| 179 | .maxlen = sizeof(int), |
| 180 | .mode = 0644, |
| 181 | .proc_handler = proc_dointvec_minmax, |
| 182 | .extra1 = &one |
| 183 | }, |
Huw Davies | 4fee524 | 2016-06-27 15:06:17 -0400 | [diff] [blame] | 184 | #ifdef CONFIG_NETLABEL |
| 185 | { |
| 186 | .procname = "calipso_cache_enable", |
| 187 | .data = &calipso_cache_enabled, |
| 188 | .maxlen = sizeof(int), |
| 189 | .mode = 0644, |
| 190 | .proc_handler = proc_dointvec, |
| 191 | }, |
| 192 | { |
| 193 | .procname = "calipso_cache_bucket_size", |
| 194 | .data = &calipso_cache_bucketsize, |
| 195 | .maxlen = sizeof(int), |
| 196 | .mode = 0644, |
| 197 | .proc_handler = proc_dointvec, |
| 198 | }, |
| 199 | #endif /* CONFIG_NETLABEL */ |
Eric W. Biederman | f8572d8 | 2009-11-05 13:32:03 -0800 | [diff] [blame] | 200 | { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | }; |
| 202 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 203 | static int __net_init ipv6_sysctl_net_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | { |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 205 | struct ctl_table *ipv6_table; |
| 206 | struct ctl_table *ipv6_route_table; |
| 207 | struct ctl_table *ipv6_icmp_table; |
| 208 | int err; |
| 209 | |
| 210 | err = -ENOMEM; |
| 211 | ipv6_table = kmemdup(ipv6_table_template, sizeof(ipv6_table_template), |
| 212 | GFP_KERNEL); |
| 213 | if (!ipv6_table) |
| 214 | goto out; |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 215 | ipv6_table[0].data = &net->ipv6.sysctl.bindv6only; |
FX Le Bail | ec35b61 | 2014-01-13 15:59:01 +0100 | [diff] [blame] | 216 | ipv6_table[1].data = &net->ipv6.sysctl.anycast_src_echo_reply; |
Florent Fourcot | 6444f72 | 2014-01-17 17:15:05 +0100 | [diff] [blame] | 217 | ipv6_table[2].data = &net->ipv6.sysctl.flowlabel_consistency; |
Tom Herbert | cb1ce2e | 2014-07-01 21:33:10 -0700 | [diff] [blame] | 218 | ipv6_table[3].data = &net->ipv6.sysctl.auto_flowlabels; |
David S. Miller | d247b6a | 2014-08-05 18:46:26 -0700 | [diff] [blame] | 219 | ipv6_table[4].data = &net->ipv6.sysctl.fwmark_reflect; |
Hannes Frederic Sowa | 1855b7c | 2015-03-23 23:36:05 +0100 | [diff] [blame] | 220 | ipv6_table[5].data = &net->ipv6.sysctl.idgen_retries; |
| 221 | ipv6_table[6].data = &net->ipv6.sysctl.idgen_delay; |
Tom Herbert | 82a584b | 2015-04-29 15:33:21 -0700 | [diff] [blame] | 222 | ipv6_table[7].data = &net->ipv6.sysctl.flowlabel_state_ranges; |
Tom Herbert | 35a256f | 2015-07-08 16:58:22 -0700 | [diff] [blame] | 223 | ipv6_table[8].data = &net->ipv6.sysctl.ip_nonlocal_bind; |
Jakub Sitnicki | 22b6722 | 2017-08-23 09:55:41 +0200 | [diff] [blame] | 224 | ipv6_table[9].data = &net->ipv6.sysctl.flowlabel_reflect; |
Tom Herbert | 47d3d7a | 2017-10-30 14:16:00 -0700 | [diff] [blame] | 225 | ipv6_table[10].data = &net->ipv6.sysctl.max_dst_opts_cnt; |
| 226 | ipv6_table[11].data = &net->ipv6.sysctl.max_hbh_opts_cnt; |
| 227 | ipv6_table[12].data = &net->ipv6.sysctl.max_dst_opts_len; |
| 228 | ipv6_table[13].data = &net->ipv6.sysctl.max_hbh_opts_len; |
David Ahern | b4bac17 | 2018-03-02 08:32:18 -0800 | [diff] [blame] | 229 | ipv6_table[14].data = &net->ipv6.sysctl.multipath_hash_policy, |
Ahmed Abdelsalam | b5facfd | 2018-04-24 20:23:16 +0200 | [diff] [blame] | 230 | ipv6_table[15].data = &net->ipv6.sysctl.seg6_flowlabel; |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 231 | |
| 232 | ipv6_route_table = ipv6_route_sysctl_init(net); |
| 233 | if (!ipv6_route_table) |
| 234 | goto out_ipv6_table; |
| 235 | |
| 236 | ipv6_icmp_table = ipv6_icmp_sysctl_init(net); |
| 237 | if (!ipv6_icmp_table) |
| 238 | goto out_ipv6_route_table; |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 239 | |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 240 | net->ipv6.sysctl.hdr = register_net_sysctl(net, "net/ipv6", ipv6_table); |
| 241 | if (!net->ipv6.sysctl.hdr) |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 242 | goto out_ipv6_icmp_table; |
Daniel Lezcano | 291480c | 2008-01-10 02:47:55 -0800 | [diff] [blame] | 243 | |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 244 | net->ipv6.sysctl.route_hdr = |
| 245 | register_net_sysctl(net, "net/ipv6/route", ipv6_route_table); |
| 246 | if (!net->ipv6.sysctl.route_hdr) |
| 247 | goto out_unregister_ipv6_table; |
| 248 | |
| 249 | net->ipv6.sysctl.icmp_hdr = |
| 250 | register_net_sysctl(net, "net/ipv6/icmp", ipv6_icmp_table); |
| 251 | if (!net->ipv6.sysctl.icmp_hdr) |
| 252 | goto out_unregister_route_table; |
| 253 | |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 254 | err = 0; |
| 255 | out: |
| 256 | return err; |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 257 | out_unregister_route_table: |
| 258 | unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr); |
| 259 | out_unregister_ipv6_table: |
| 260 | unregister_net_sysctl_table(net->ipv6.sysctl.hdr); |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 261 | out_ipv6_icmp_table: |
| 262 | kfree(ipv6_icmp_table); |
| 263 | out_ipv6_route_table: |
| 264 | kfree(ipv6_route_table); |
| 265 | out_ipv6_table: |
| 266 | kfree(ipv6_table); |
| 267 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | } |
| 269 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 270 | static void __net_exit ipv6_sysctl_net_exit(struct net *net) |
Daniel Lezcano | 89918fc | 2008-01-10 02:49:34 -0800 | [diff] [blame] | 271 | { |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 272 | struct ctl_table *ipv6_table; |
| 273 | struct ctl_table *ipv6_route_table; |
| 274 | struct ctl_table *ipv6_icmp_table; |
| 275 | |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 276 | ipv6_table = net->ipv6.sysctl.hdr->ctl_table_arg; |
| 277 | ipv6_route_table = net->ipv6.sysctl.route_hdr->ctl_table_arg; |
| 278 | ipv6_icmp_table = net->ipv6.sysctl.icmp_hdr->ctl_table_arg; |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 279 | |
Eric W. Biederman | 6dceb03 | 2012-04-19 13:37:09 +0000 | [diff] [blame] | 280 | unregister_net_sysctl_table(net->ipv6.sysctl.icmp_hdr); |
| 281 | unregister_net_sysctl_table(net->ipv6.sysctl.route_hdr); |
| 282 | unregister_net_sysctl_table(net->ipv6.sysctl.hdr); |
Daniel Lezcano | 760f2d0 | 2008-01-10 02:53:43 -0800 | [diff] [blame] | 283 | |
| 284 | kfree(ipv6_table); |
| 285 | kfree(ipv6_route_table); |
| 286 | kfree(ipv6_icmp_table); |
Daniel Lezcano | 89918fc | 2008-01-10 02:49:34 -0800 | [diff] [blame] | 287 | } |
| 288 | |
| 289 | static struct pernet_operations ipv6_sysctl_net_ops = { |
| 290 | .init = ipv6_sysctl_net_init, |
| 291 | .exit = ipv6_sysctl_net_exit, |
| 292 | }; |
| 293 | |
Pavel Emelyanov | 34ac257 | 2008-05-19 13:53:30 -0700 | [diff] [blame] | 294 | static struct ctl_table_header *ip6_header; |
| 295 | |
Daniel Lezcano | 89918fc | 2008-01-10 02:49:34 -0800 | [diff] [blame] | 296 | int ipv6_sysctl_register(void) |
| 297 | { |
Fernando Carrijo | c19a28e | 2009-01-07 18:09:08 -0800 | [diff] [blame] | 298 | int err = -ENOMEM; |
Pavel Emelyanov | 34ac257 | 2008-05-19 13:53:30 -0700 | [diff] [blame] | 299 | |
Eric W. Biederman | 4344475 | 2012-04-19 13:22:55 +0000 | [diff] [blame] | 300 | ip6_header = register_net_sysctl(&init_net, "net/ipv6", ipv6_rotable); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 301 | if (!ip6_header) |
Pavel Emelyanov | 34ac257 | 2008-05-19 13:53:30 -0700 | [diff] [blame] | 302 | goto out; |
| 303 | |
| 304 | err = register_pernet_subsys(&ipv6_sysctl_net_ops); |
| 305 | if (err) |
| 306 | goto err_pernet; |
| 307 | out: |
| 308 | return err; |
| 309 | |
| 310 | err_pernet: |
| 311 | unregister_net_sysctl_table(ip6_header); |
| 312 | goto out; |
Daniel Lezcano | 89918fc | 2008-01-10 02:49:34 -0800 | [diff] [blame] | 313 | } |
| 314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | void ipv6_sysctl_unregister(void) |
| 316 | { |
Pavel Emelyanov | 34ac257 | 2008-05-19 13:53:30 -0700 | [diff] [blame] | 317 | unregister_net_sysctl_table(ip6_header); |
Daniel Lezcano | 89918fc | 2008-01-10 02:49:34 -0800 | [diff] [blame] | 318 | unregister_pernet_subsys(&ipv6_sysctl_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |