blob: d040c4bff3a096a5e78dfaf2488c34cd3159e891 [file] [log] [blame]
Thomas Graf101367c2006-08-04 03:39:02 -07001/*
2 * net/ipv6/fib6_rules.c IPv6 Routing Policy Rules
3 *
4 * Copyright (C)2003-2006 Helsinki University of Technology
5 * Copyright (C)2003-2006 USAGI/WIDE Project
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, version 2.
10 *
11 * Authors
12 * Thomas Graf <tgraf@suug.ch>
13 * Ville Nuorvala <vnuorval@tcs.hut.fi>
14 */
15
Thomas Graf101367c2006-08-04 03:39:02 -070016#include <linux/netdevice.h>
Ido Schimmeldcb18f72017-08-03 13:28:18 +020017#include <linux/notifier.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
Thomas Graf101367c2006-08-04 03:39:02 -070019
20#include <net/fib_rules.h>
21#include <net/ipv6.h>
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -070022#include <net/addrconf.h>
Thomas Graf101367c2006-08-04 03:39:02 -070023#include <net/ip6_route.h>
24#include <net/netlink.h>
25
Eldad Zack911c8542012-04-01 07:49:06 +000026struct fib6_rule {
Thomas Graf101367c2006-08-04 03:39:02 -070027 struct fib_rule common;
28 struct rt6key src;
29 struct rt6key dst;
30 u8 tclass;
31};
32
Ido Schimmele3ea9732017-08-03 13:28:15 +020033static bool fib6_rule_matchall(const struct fib_rule *rule)
34{
35 struct fib6_rule *r = container_of(rule, struct fib6_rule, common);
36
37 if (r->dst.plen || r->src.plen || r->tclass)
38 return false;
39 return fib_rule_matchall(rule);
40}
41
42bool fib6_rule_default(const struct fib_rule *rule)
43{
44 if (!fib6_rule_matchall(rule) || rule->action != FR_ACT_TO_TBL ||
45 rule->l3mdev)
46 return false;
47 if (rule->table != RT6_TABLE_LOCAL && rule->table != RT6_TABLE_MAIN)
48 return false;
49 return true;
50}
51EXPORT_SYMBOL_GPL(fib6_rule_default);
52
Ido Schimmeldcb18f72017-08-03 13:28:18 +020053int fib6_rules_dump(struct net *net, struct notifier_block *nb)
54{
55 return fib_rules_dump(net, nb, AF_INET6);
56}
57
58unsigned int fib6_rules_seq_read(struct net *net)
59{
60 return fib_rules_seq_read(net, AF_INET6);
61}
62
David S. Miller4c9483b2011-03-12 16:22:43 -050063struct dst_entry *fib6_rule_lookup(struct net *net, struct flowi6 *fl6,
David Ahernb75cc8f2018-03-02 08:32:17 -080064 const struct sk_buff *skb,
Daniel Lezcano58f09b72008-03-03 23:25:27 -080065 int flags, pol_lookup_t lookup)
Thomas Graf101367c2006-08-04 03:39:02 -070066{
Vincent Bernatfeca7d82017-08-08 20:23:49 +020067 if (net->ipv6.fib6_has_custom_rules) {
68 struct fib_lookup_arg arg = {
69 .lookup_ptr = lookup,
David Ahernb75cc8f2018-03-02 08:32:17 -080070 .lookup_data = skb,
Vincent Bernatfeca7d82017-08-08 20:23:49 +020071 .flags = FIB_LOOKUP_NOREF,
72 };
Thomas Graf101367c2006-08-04 03:39:02 -070073
Vincent Bernatfeca7d82017-08-08 20:23:49 +020074 /* update flow if oif or iif point to device enslaved to l3mdev */
75 l3mdev_update_flow(net, flowi6_to_flowi(fl6));
David Ahern9ee00342016-09-10 12:09:52 -070076
Vincent Bernatfeca7d82017-08-08 20:23:49 +020077 fib_rules_lookup(net->ipv6.fib6_rules_ops,
78 flowi6_to_flowi(fl6), flags, &arg);
Thomas Graf101367c2006-08-04 03:39:02 -070079
Vincent Bernatfeca7d82017-08-08 20:23:49 +020080 if (arg.result)
81 return arg.result;
82 } else {
83 struct rt6_info *rt;
84
David Ahernb75cc8f2018-03-02 08:32:17 -080085 rt = lookup(net, net->ipv6.fib6_local_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +020086 if (rt != net->ipv6.ip6_null_entry && rt->dst.error != -EAGAIN)
87 return &rt->dst;
88 ip6_rt_put(rt);
David Ahernb75cc8f2018-03-02 08:32:17 -080089 rt = lookup(net, net->ipv6.fib6_main_tbl, fl6, skb, flags);
Vincent Bernatfeca7d82017-08-08 20:23:49 +020090 if (rt->dst.error != -EAGAIN)
91 return &rt->dst;
92 ip6_rt_put(rt);
93 }
Ville Nuorvalab1429552006-08-08 16:44:17 -070094
Serhey Popovych07f61552017-06-20 13:29:25 +030095 dst_hold(&net->ipv6.ip6_null_entry->dst);
96 return &net->ipv6.ip6_null_entry->dst;
Thomas Graf101367c2006-08-04 03:39:02 -070097}
98
David Aherncc065a92018-05-09 20:34:22 -070099static int fib6_rule_saddr(struct net *net, struct fib_rule *rule, int flags,
100 struct flowi6 *flp6, const struct net_device *dev)
101{
102 struct fib6_rule *r = (struct fib6_rule *)rule;
103
104 /* If we need to find a source address for this traffic,
105 * we check the result if it meets requirement of the rule.
106 */
107 if ((rule->flags & FIB_RULE_FIND_SADDR) &&
108 r->src.plen && !(flags & RT6_LOOKUP_F_HAS_SADDR)) {
109 struct in6_addr saddr;
110
111 if (ipv6_dev_get_saddr(net, dev, &flp6->daddr,
112 rt6_flags2srcprefs(flags), &saddr))
113 return -EAGAIN;
114
115 if (!ipv6_prefix_equal(&saddr, &r->src.addr, r->src.plen))
116 return -EAGAIN;
117
118 flp6->saddr = saddr;
119 }
120
121 return 0;
122}
123
Adrian Bunk8ce11e62006-08-07 21:50:48 -0700124static int fib6_rule_action(struct fib_rule *rule, struct flowi *flp,
125 int flags, struct fib_lookup_arg *arg)
Thomas Graf101367c2006-08-04 03:39:02 -0700126{
David S. Miller4c9483b2011-03-12 16:22:43 -0500127 struct flowi6 *flp6 = &flp->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700128 struct rt6_info *rt = NULL;
129 struct fib6_table *table;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800130 struct net *net = rule->fr_net;
Thomas Graf101367c2006-08-04 03:39:02 -0700131 pol_lookup_t lookup = arg->lookup_ptr;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200132 int err = 0;
David Ahern96c63fa2016-06-08 10:55:39 -0700133 u32 tb_id;
Thomas Graf101367c2006-08-04 03:39:02 -0700134
135 switch (rule->action) {
136 case FR_ACT_TO_TBL:
137 break;
138 case FR_ACT_UNREACHABLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200139 err = -ENETUNREACH;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800140 rt = net->ipv6.ip6_null_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700141 goto discard_pkt;
142 default:
143 case FR_ACT_BLACKHOLE:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200144 err = -EINVAL;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800145 rt = net->ipv6.ip6_blk_hole_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700146 goto discard_pkt;
147 case FR_ACT_PROHIBIT:
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200148 err = -EACCES;
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800149 rt = net->ipv6.ip6_prohibit_entry;
Thomas Graf101367c2006-08-04 03:39:02 -0700150 goto discard_pkt;
151 }
152
David Ahern96c63fa2016-06-08 10:55:39 -0700153 tb_id = fib_rule_get_table(rule, arg);
154 table = fib6_get_table(net, tb_id);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200155 if (!table) {
156 err = -EAGAIN;
157 goto out;
158 }
Thomas Graf101367c2006-08-04 03:39:02 -0700159
David Ahernb75cc8f2018-03-02 08:32:17 -0800160 rt = lookup(net, table, flp6, arg->lookup_data, flags);
Daniel Lezcano8ed67782008-03-04 13:48:30 -0800161 if (rt != net->ipv6.ip6_null_entry) {
David Aherncc065a92018-05-09 20:34:22 -0700162 err = fib6_rule_saddr(net, rule, flags, flp6,
163 ip6_dst_idev(&rt->dst)->dev);
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700164
David Aherncc065a92018-05-09 20:34:22 -0700165 if (err == -EAGAIN)
166 goto again;
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +0900167
Steven Barth73ba57b2015-03-19 16:16:04 +0100168 err = rt->dst.error;
Serhey Popovych07f61552017-06-20 13:29:25 +0300169 if (err != -EAGAIN)
170 goto out;
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700171 }
172again:
Amerigo Wang94e187c2012-10-29 00:13:19 +0000173 ip6_rt_put(rt);
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200174 err = -EAGAIN;
Patrick McHardy3226f6882006-08-06 22:24:08 -0700175 rt = NULL;
176 goto out;
177
Thomas Graf101367c2006-08-04 03:39:02 -0700178discard_pkt:
Changli Gaod8d1f302010-06-10 23:31:35 -0700179 dst_hold(&rt->dst);
Thomas Graf101367c2006-08-04 03:39:02 -0700180out:
181 arg->result = rt;
Hannes Frederic Sowa46b3a422013-08-01 08:54:47 +0200182 return err;
Thomas Graf101367c2006-08-04 03:39:02 -0700183}
184
Stefan Tomanek7764a452013-08-01 02:17:15 +0200185static bool fib6_rule_suppress(struct fib_rule *rule, struct fib_lookup_arg *arg)
186{
187 struct rt6_info *rt = (struct rt6_info *) arg->result;
Stefan Tomanek673498b2013-12-10 23:21:25 +0100188 struct net_device *dev = NULL;
189
190 if (rt->rt6i_idev)
191 dev = rt->rt6i_idev->dev;
192
Stefan Tomanek7764a452013-08-01 02:17:15 +0200193 /* do not accept result if the route does
194 * not meet the required prefix length
195 */
Stefan Tomanek73f56982013-08-03 14:14:43 +0200196 if (rt->rt6i_dst.plen <= rule->suppress_prefixlen)
Stefan Tomanek6ef94cf2013-08-02 17:19:56 +0200197 goto suppress_route;
198
199 /* do not accept result if the route uses a device
200 * belonging to a forbidden interface group
201 */
202 if (rule->suppress_ifgroup != -1 && dev && dev->group == rule->suppress_ifgroup)
203 goto suppress_route;
204
205 return false;
206
207suppress_route:
Stefan Tomanek04f08882013-09-08 17:09:43 +0200208 ip6_rt_put(rt);
209 return true;
Stefan Tomanek7764a452013-08-01 02:17:15 +0200210}
Thomas Graf101367c2006-08-04 03:39:02 -0700211
212static int fib6_rule_match(struct fib_rule *rule, struct flowi *fl, int flags)
213{
214 struct fib6_rule *r = (struct fib6_rule *) rule;
David S. Miller4c9483b2011-03-12 16:22:43 -0500215 struct flowi6 *fl6 = &fl->u.ip6;
Thomas Graf101367c2006-08-04 03:39:02 -0700216
Thomas Grafadaa70b2006-10-13 15:01:03 -0700217 if (r->dst.plen &&
David S. Miller4c9483b2011-03-12 16:22:43 -0500218 !ipv6_prefix_equal(&fl6->daddr, &r->dst.addr, r->dst.plen))
Thomas Graf101367c2006-08-04 03:39:02 -0700219 return 0;
220
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700221 /*
222 * If FIB_RULE_FIND_SADDR is set and we do not have a
223 * source address for the traffic, we defer check for
224 * source address.
225 */
Thomas Grafadaa70b2006-10-13 15:01:03 -0700226 if (r->src.plen) {
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700227 if (flags & RT6_LOOKUP_F_HAS_SADDR) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500228 if (!ipv6_prefix_equal(&fl6->saddr, &r->src.addr,
YOSHIFUJI Hideaki29f6af72007-04-06 11:45:39 -0700229 r->src.plen))
230 return 0;
231 } else if (!(r->common.flags & FIB_RULE_FIND_SADDR))
Thomas Grafadaa70b2006-10-13 15:01:03 -0700232 return 0;
233 }
Thomas Graf101367c2006-08-04 03:39:02 -0700234
Li RongQingd76ed222014-01-15 17:03:30 +0800235 if (r->tclass && r->tclass != ip6_tclass(fl6->flowlabel))
YOSHIFUJI Hideaki2cc67cc2006-08-21 19:18:57 +0900236 return 0;
237
Roopa Prabhubb0ad192018-02-28 22:41:37 -0500238 if (rule->ip_proto && (rule->ip_proto != fl6->flowi6_proto))
239 return 0;
240
241 if (fib_rule_port_range_set(&rule->sport_range) &&
242 !fib_rule_port_inrange(&rule->sport_range, fl6->fl6_sport))
243 return 0;
244
245 if (fib_rule_port_range_set(&rule->dport_range) &&
246 !fib_rule_port_inrange(&rule->dport_range, fl6->fl6_dport))
247 return 0;
248
Thomas Graf101367c2006-08-04 03:39:02 -0700249 return 1;
250}
251
Patrick McHardyef7c79e2007-06-05 12:38:30 -0700252static const struct nla_policy fib6_rule_policy[FRA_MAX+1] = {
Thomas Graf1f6c9552006-11-09 15:22:48 -0800253 FRA_GENERIC_POLICY,
Thomas Graf101367c2006-08-04 03:39:02 -0700254};
255
256static int fib6_rule_configure(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen8b3521e2009-05-11 05:52:49 +0000257 struct fib_rule_hdr *frh,
Roopa Prabhub16fb412018-04-21 09:41:31 -0700258 struct nlattr **tb,
259 struct netlink_ext_ack *extack)
Thomas Graf101367c2006-08-04 03:39:02 -0700260{
261 int err = -EINVAL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900262 struct net *net = sock_net(skb->sk);
Thomas Graf101367c2006-08-04 03:39:02 -0700263 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
264
David Ahern96c63fa2016-06-08 10:55:39 -0700265 if (rule->action == FR_ACT_TO_TBL && !rule->l3mdev) {
Roopa Prabhub16fb412018-04-21 09:41:31 -0700266 if (rule->table == RT6_TABLE_UNSPEC) {
267 NL_SET_ERR_MSG(extack, "Invalid table");
Thomas Graf101367c2006-08-04 03:39:02 -0700268 goto errout;
Roopa Prabhub16fb412018-04-21 09:41:31 -0700269 }
Thomas Graf101367c2006-08-04 03:39:02 -0700270
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800271 if (fib6_new_table(net, rule->table) == NULL) {
Thomas Graf101367c2006-08-04 03:39:02 -0700272 err = -ENOBUFS;
273 goto errout;
274 }
275 }
276
Thomas Grafe1701c62007-03-24 12:46:02 -0700277 if (frh->src_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200278 rule6->src.addr = nla_get_in6_addr(tb[FRA_SRC]);
Thomas Graf101367c2006-08-04 03:39:02 -0700279
Thomas Grafe1701c62007-03-24 12:46:02 -0700280 if (frh->dst_len)
Jiri Benc67b61f62015-03-29 16:59:26 +0200281 rule6->dst.addr = nla_get_in6_addr(tb[FRA_DST]);
Thomas Graf101367c2006-08-04 03:39:02 -0700282
283 rule6->src.plen = frh->src_len;
284 rule6->dst.plen = frh->dst_len;
285 rule6->tclass = frh->tos;
286
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500287 if (fib_rule_requires_fldissect(rule))
288 net->ipv6.fib6_rules_require_fldissect++;
289
Vincent Bernatfeca7d82017-08-08 20:23:49 +0200290 net->ipv6.fib6_has_custom_rules = true;
Thomas Graf101367c2006-08-04 03:39:02 -0700291 err = 0;
292errout:
293 return err;
294}
295
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500296static int fib6_rule_delete(struct fib_rule *rule)
297{
298 struct net *net = rule->fr_net;
299
300 if (net->ipv6.fib6_rules_require_fldissect &&
301 fib_rule_requires_fldissect(rule))
302 net->ipv6.fib6_rules_require_fldissect--;
303
304 return 0;
305}
306
Thomas Graf101367c2006-08-04 03:39:02 -0700307static int fib6_rule_compare(struct fib_rule *rule, struct fib_rule_hdr *frh,
308 struct nlattr **tb)
309{
310 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
311
312 if (frh->src_len && (rule6->src.plen != frh->src_len))
313 return 0;
314
315 if (frh->dst_len && (rule6->dst.plen != frh->dst_len))
316 return 0;
317
318 if (frh->tos && (rule6->tclass != frh->tos))
319 return 0;
320
Thomas Grafe1701c62007-03-24 12:46:02 -0700321 if (frh->src_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700322 nla_memcmp(tb[FRA_SRC], &rule6->src.addr, sizeof(struct in6_addr)))
323 return 0;
324
Thomas Grafe1701c62007-03-24 12:46:02 -0700325 if (frh->dst_len &&
Thomas Graf101367c2006-08-04 03:39:02 -0700326 nla_memcmp(tb[FRA_DST], &rule6->dst.addr, sizeof(struct in6_addr)))
327 return 0;
328
329 return 1;
330}
331
332static int fib6_rule_fill(struct fib_rule *rule, struct sk_buff *skb,
Rami Rosen04af8cf2009-05-20 17:26:23 -0700333 struct fib_rule_hdr *frh)
Thomas Graf101367c2006-08-04 03:39:02 -0700334{
335 struct fib6_rule *rule6 = (struct fib6_rule *) rule;
336
Thomas Graf101367c2006-08-04 03:39:02 -0700337 frh->dst_len = rule6->dst.plen;
338 frh->src_len = rule6->src.plen;
339 frh->tos = rule6->tclass;
340
David S. Millerc78679e2012-04-01 20:27:33 -0400341 if ((rule6->dst.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200342 nla_put_in6_addr(skb, FRA_DST, &rule6->dst.addr)) ||
David S. Millerc78679e2012-04-01 20:27:33 -0400343 (rule6->src.plen &&
Jiri Benc930345e2015-03-29 16:59:25 +0200344 nla_put_in6_addr(skb, FRA_SRC, &rule6->src.addr)))
David S. Millerc78679e2012-04-01 20:27:33 -0400345 goto nla_put_failure;
Thomas Graf101367c2006-08-04 03:39:02 -0700346 return 0;
347
348nla_put_failure:
349 return -ENOBUFS;
350}
351
Thomas Graf339bf982006-11-10 14:10:15 -0800352static size_t fib6_rule_nlmsg_payload(struct fib_rule *rule)
353{
354 return nla_total_size(16) /* dst */
355 + nla_total_size(16); /* src */
356}
357
Andi Kleen04a6f822012-10-04 17:12:11 -0700358static const struct fib_rules_ops __net_initconst fib6_rules_ops_template = {
Patrick McHardy25239ce2010-04-26 16:02:05 +0200359 .family = AF_INET6,
Thomas Graf101367c2006-08-04 03:39:02 -0700360 .rule_size = sizeof(struct fib6_rule),
Thomas Grafe1701c62007-03-24 12:46:02 -0700361 .addr_size = sizeof(struct in6_addr),
Thomas Graf101367c2006-08-04 03:39:02 -0700362 .action = fib6_rule_action,
363 .match = fib6_rule_match,
Stefan Tomanek7764a452013-08-01 02:17:15 +0200364 .suppress = fib6_rule_suppress,
Thomas Graf101367c2006-08-04 03:39:02 -0700365 .configure = fib6_rule_configure,
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500366 .delete = fib6_rule_delete,
Thomas Graf101367c2006-08-04 03:39:02 -0700367 .compare = fib6_rule_compare,
368 .fill = fib6_rule_fill,
Thomas Graf339bf982006-11-10 14:10:15 -0800369 .nlmsg_payload = fib6_rule_nlmsg_payload,
Thomas Graf101367c2006-08-04 03:39:02 -0700370 .nlgroup = RTNLGRP_IPV6_RULE,
371 .policy = fib6_rule_policy,
Thomas Graf101367c2006-08-04 03:39:02 -0700372 .owner = THIS_MODULE,
Denis V. Lunev03592382008-01-20 16:46:01 -0800373 .fro_net = &init_net,
Thomas Graf101367c2006-08-04 03:39:02 -0700374};
375
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000376static int __net_init fib6_rules_net_init(struct net *net)
Denis V. Lunev2994c632007-11-10 22:12:03 -0800377{
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800378 struct fib_rules_ops *ops;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800379 int err = -ENOMEM;
Denis V. Lunev2994c632007-11-10 22:12:03 -0800380
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800381 ops = fib_rules_register(&fib6_rules_ops_template, net);
382 if (IS_ERR(ops))
383 return PTR_ERR(ops);
WANG Cong85b99092015-03-25 14:45:02 -0700384
385 err = fib_default_rule_add(ops, 0, RT6_TABLE_LOCAL, 0);
386 if (err)
387 goto out_fib6_rules_ops;
388
389 err = fib_default_rule_add(ops, 0x7FFE, RT6_TABLE_MAIN, 0);
390 if (err)
391 goto out_fib6_rules_ops;
392
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800393 net->ipv6.fib6_rules_ops = ops;
Roopa Prabhu5e5d6fe2018-02-28 22:43:22 -0500394 net->ipv6.fib6_rules_require_fldissect = 0;
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800395out:
396 return err;
397
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800398out_fib6_rules_ops:
Eric W. Biedermane9c51582009-12-03 12:22:55 -0800399 fib_rules_unregister(ops);
Daniel Lezcano9eb87f32007-12-07 00:42:52 -0800400 goto out;
Thomas Graf101367c2006-08-04 03:39:02 -0700401}
402
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000403static void __net_exit fib6_rules_net_exit(struct net *net)
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800404{
WANG Cong419df122015-03-31 11:01:46 -0700405 rtnl_lock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800406 fib_rules_unregister(net->ipv6.fib6_rules_ops);
WANG Cong419df122015-03-31 11:01:46 -0700407 rtnl_unlock();
Daniel Lezcanodcabb812008-03-03 23:33:08 -0800408}
409
410static struct pernet_operations fib6_rules_net_ops = {
411 .init = fib6_rules_net_init,
412 .exit = fib6_rules_net_exit,
413};
414
415int __init fib6_rules_init(void)
416{
417 return register_pernet_subsys(&fib6_rules_net_ops);
418}
419
420
Thomas Graf101367c2006-08-04 03:39:02 -0700421void fib6_rules_cleanup(void)
422{
YOSHIFUJI Hideakiff4e1fb2008-04-10 15:41:28 +0900423 unregister_pernet_subsys(&fib6_rules_net_ops);
Thomas Graf101367c2006-08-04 03:39:02 -0700424}