blob: f0ccdb787100c56acb3f4e38e57a434f7ffc2b5c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ip6_flowlabel.c IPv6 flowlabel manager.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
10 */
11
Randy Dunlap4fc268d2006-01-11 12:17:47 -080012#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/errno.h>
14#include <linux/types.h>
15#include <linux/socket.h>
16#include <linux/net.h>
17#include <linux/netdevice.h>
18#include <linux/if_arp.h>
19#include <linux/in6.h>
20#include <linux/route.h>
21#include <linux/proc_fs.h>
22#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040024#include <linux/export.h>
Eric W. Biederman4f82f452012-05-24 10:37:59 -060025#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020027#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/sock.h>
29
30#include <net/ipv6.h>
31#include <net/ndisc.h>
32#include <net/protocol.h>
33#include <net/ip6_route.h>
34#include <net/addrconf.h>
35#include <net/rawv6.h>
36#include <net/icmp.h>
37#include <net/transp_v6.h>
38
39#include <asm/uaccess.h>
40
41#define FL_MIN_LINGER 6 /* Minimal linger. It is set to 6sec specified
42 in old IPv6 RFC. Well, it was reasonable value.
43 */
44#define FL_MAX_LINGER 60 /* Maximal linger timeout */
45
46/* FL hash table */
47
48#define FL_MAX_PER_SOCK 32
49#define FL_MAX_SIZE 4096
50#define FL_HASH_MASK 255
51#define FL_HASH(l) (ntohl(l)&FL_HASH_MASK)
52
53static atomic_t fl_size = ATOMIC_INIT(0);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000054static struct ip6_flowlabel __rcu *fl_ht[FL_HASH_MASK+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56static void ip6_fl_gc(unsigned long dummy);
Ingo Molnar8d06afa2005-09-09 13:10:40 -070057static DEFINE_TIMER(ip6_fl_gc_timer, ip6_fl_gc, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/* FL hash table lock: it protects only of GC */
60
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000061static DEFINE_SPINLOCK(ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63/* Big socket sock */
64
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +000065static DEFINE_SPINLOCK(ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000067#define for_each_fl_rcu(hash, fl) \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000068 for (fl = rcu_dereference_bh(fl_ht[(hash)]); \
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000069 fl != NULL; \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000070 fl = rcu_dereference_bh(fl->next))
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000071#define for_each_fl_continue_rcu(fl) \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000072 for (fl = rcu_dereference_bh(fl->next); \
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000073 fl != NULL; \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000074 fl = rcu_dereference_bh(fl->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +000076#define for_each_sk_fl_rcu(np, sfl) \
77 for (sfl = rcu_dereference_bh(np->ipv6_fl_list); \
78 sfl != NULL; \
79 sfl = rcu_dereference_bh(sfl->next))
80
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070081static inline struct ip6_flowlabel *__fl_lookup(struct net *net, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct ip6_flowlabel *fl;
84
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000085 for_each_fl_rcu(FL_HASH(label), fl) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -080086 if (fl->label == label && net_eq(fl->fl_net, net))
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return fl;
88 }
89 return NULL;
90}
91
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070092static struct ip6_flowlabel *fl_lookup(struct net *net, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct ip6_flowlabel *fl;
95
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000096 rcu_read_lock_bh();
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070097 fl = __fl_lookup(net, label);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000098 if (fl && !atomic_inc_not_zero(&fl->users))
99 fl = NULL;
100 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return fl;
102}
103
104
105static void fl_free(struct ip6_flowlabel *fl)
106{
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700107 if (fl) {
Dan Carpenter898132a2012-08-16 16:15:02 +0300108 if (fl->share == IPV6_FL_S_PROCESS)
109 put_pid(fl->owner.pid);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700110 release_net(fl->fl_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 kfree(fl->opt);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000112 kfree_rcu(fl, rcu);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static void fl_release(struct ip6_flowlabel *fl)
117{
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000118 spin_lock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 fl->lastuse = jiffies;
121 if (atomic_dec_and_test(&fl->users)) {
122 unsigned long ttd = fl->lastuse + fl->linger;
123 if (time_after(ttd, fl->expires))
124 fl->expires = ttd;
125 ttd = fl->expires;
126 if (fl->opt && fl->share == IPV6_FL_S_EXCL) {
127 struct ipv6_txoptions *opt = fl->opt;
128 fl->opt = NULL;
129 kfree(opt);
130 }
131 if (!timer_pending(&ip6_fl_gc_timer) ||
132 time_after(ip6_fl_gc_timer.expires, ttd))
133 mod_timer(&ip6_fl_gc_timer, ttd);
134 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000135 spin_unlock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
138static void ip6_fl_gc(unsigned long dummy)
139{
140 int i;
141 unsigned long now = jiffies;
142 unsigned long sched = 0;
143
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000144 spin_lock(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 for (i=0; i<=FL_HASH_MASK; i++) {
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000147 struct ip6_flowlabel *fl;
148 struct ip6_flowlabel __rcu **flp;
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 flp = &fl_ht[i];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000151 while ((fl = rcu_dereference_protected(*flp,
152 lockdep_is_held(&ip6_fl_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 if (atomic_read(&fl->users) == 0) {
154 unsigned long ttd = fl->lastuse + fl->linger;
155 if (time_after(ttd, fl->expires))
156 fl->expires = ttd;
157 ttd = fl->expires;
158 if (time_after_eq(now, ttd)) {
159 *flp = fl->next;
160 fl_free(fl);
161 atomic_dec(&fl_size);
162 continue;
163 }
164 if (!sched || time_before(ttd, sched))
165 sched = ttd;
166 }
167 flp = &fl->next;
168 }
169 }
170 if (!sched && atomic_read(&fl_size))
171 sched = now + FL_MAX_LINGER;
172 if (sched) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700173 mod_timer(&ip6_fl_gc_timer, sched);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000175 spin_unlock(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000178static void __net_exit ip6_fl_purge(struct net *net)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700179{
180 int i;
181
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000182 spin_lock(&ip6_fl_lock);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700183 for (i = 0; i <= FL_HASH_MASK; i++) {
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000184 struct ip6_flowlabel *fl;
185 struct ip6_flowlabel __rcu **flp;
186
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700187 flp = &fl_ht[i];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000188 while ((fl = rcu_dereference_protected(*flp,
189 lockdep_is_held(&ip6_fl_lock))) != NULL) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800190 if (net_eq(fl->fl_net, net) &&
191 atomic_read(&fl->users) == 0) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700192 *flp = fl->next;
193 fl_free(fl);
194 atomic_dec(&fl_size);
195 continue;
196 }
197 flp = &fl->next;
198 }
199 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000200 spin_unlock(&ip6_fl_lock);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700201}
202
203static struct ip6_flowlabel *fl_intern(struct net *net,
204 struct ip6_flowlabel *fl, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700206 struct ip6_flowlabel *lfl;
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 fl->label = label & IPV6_FLOWLABEL_MASK;
209
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000210 spin_lock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (label == 0) {
212 for (;;) {
213 fl->label = htonl(net_random())&IPV6_FLOWLABEL_MASK;
214 if (fl->label) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700215 lfl = __fl_lookup(net, fl->label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (lfl == NULL)
217 break;
218 }
219 }
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700220 } else {
221 /*
222 * we dropper the ip6_fl_lock, so this entry could reappear
223 * and we need to recheck with it.
224 *
225 * OTOH no need to search the active socket first, like it is
226 * done in ipv6_flowlabel_opt - sock is locked, so new entry
227 * with the same label can only appear on another sock
228 */
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700229 lfl = __fl_lookup(net, fl->label);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700230 if (lfl != NULL) {
231 atomic_inc(&lfl->users);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000232 spin_unlock_bh(&ip6_fl_lock);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700233 return lfl;
234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 }
236
237 fl->lastuse = jiffies;
238 fl->next = fl_ht[FL_HASH(fl->label)];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000239 rcu_assign_pointer(fl_ht[FL_HASH(fl->label)], fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 atomic_inc(&fl_size);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000241 spin_unlock_bh(&ip6_fl_lock);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700242 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245
246
247/* Socket flowlabel lists */
248
Al Viro90bcaf72006-11-08 00:25:17 -0800249struct ip6_flowlabel * fl6_sock_lookup(struct sock *sk, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
251 struct ipv6_fl_socklist *sfl;
252 struct ipv6_pinfo *np = inet6_sk(sk);
253
254 label &= IPV6_FLOWLABEL_MASK;
255
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000256 rcu_read_lock_bh();
257 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 struct ip6_flowlabel *fl = sfl->fl;
259 if (fl->label == label) {
260 fl->lastuse = jiffies;
261 atomic_inc(&fl->users);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000262 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return fl;
264 }
265 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000266 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return NULL;
268}
269
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800270EXPORT_SYMBOL_GPL(fl6_sock_lookup);
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272void fl6_free_socklist(struct sock *sk)
273{
274 struct ipv6_pinfo *np = inet6_sk(sk);
275 struct ipv6_fl_socklist *sfl;
276
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000277 if (!rcu_access_pointer(np->ipv6_fl_list))
YOSHIFUJI Hideaki / 吉藤英明f256dc52013-01-30 09:26:42 +0000278 return;
279
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000280 spin_lock_bh(&ip6_sk_fl_lock);
281 while ((sfl = rcu_dereference_protected(np->ipv6_fl_list,
282 lockdep_is_held(&ip6_sk_fl_lock))) != NULL) {
283 np->ipv6_fl_list = sfl->next;
284 spin_unlock_bh(&ip6_sk_fl_lock);
YOSHIFUJI Hideaki / 吉藤英明f256dc52013-01-30 09:26:42 +0000285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 fl_release(sfl->fl);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000287 kfree_rcu(sfl, rcu);
288
289 spin_lock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000291 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/* Service routines */
295
296
297/*
298 It is the only difficult place. flowlabel enforces equal headers
299 before and including routing header, however user may supply options
300 following rthdr.
301 */
302
303struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions * opt_space,
304 struct ip6_flowlabel * fl,
305 struct ipv6_txoptions * fopt)
306{
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900307 struct ipv6_txoptions * fl_opt = fl->opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900308
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900309 if (fopt == NULL || fopt->opt_flen == 0)
310 return fl_opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 if (fl_opt != NULL) {
313 opt_space->hopopt = fl_opt->hopopt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900314 opt_space->dst0opt = fl_opt->dst0opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 opt_space->srcrt = fl_opt->srcrt;
316 opt_space->opt_nflen = fl_opt->opt_nflen;
317 } else {
318 if (fopt->opt_nflen == 0)
319 return fopt;
320 opt_space->hopopt = NULL;
321 opt_space->dst0opt = NULL;
322 opt_space->srcrt = NULL;
323 opt_space->opt_nflen = 0;
324 }
325 opt_space->dst1opt = fopt->dst1opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 opt_space->opt_flen = fopt->opt_flen;
327 return opt_space;
328}
Chris Elstona495f832012-04-29 21:48:53 +0000329EXPORT_SYMBOL_GPL(fl6_merge_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331static unsigned long check_linger(unsigned long ttl)
332{
333 if (ttl < FL_MIN_LINGER)
334 return FL_MIN_LINGER*HZ;
335 if (ttl > FL_MAX_LINGER && !capable(CAP_NET_ADMIN))
336 return 0;
337 return ttl*HZ;
338}
339
340static int fl6_renew(struct ip6_flowlabel *fl, unsigned long linger, unsigned long expires)
341{
342 linger = check_linger(linger);
343 if (!linger)
344 return -EPERM;
345 expires = check_linger(expires);
346 if (!expires)
347 return -EPERM;
348 fl->lastuse = jiffies;
349 if (time_before(fl->linger, linger))
350 fl->linger = linger;
351 if (time_before(expires, fl->linger))
352 expires = fl->linger;
353 if (time_before(fl->expires, fl->lastuse + expires))
354 fl->expires = fl->lastuse + expires;
355 return 0;
356}
357
358static struct ip6_flowlabel *
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000359fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
360 char __user *optval, int optlen, int *err_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
David S. Miller684de402009-02-06 00:49:55 -0800362 struct ip6_flowlabel *fl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 int olen;
364 int addr_type;
365 int err;
366
David S. Miller684de402009-02-06 00:49:55 -0800367 olen = optlen - CMSG_ALIGN(sizeof(*freq));
368 err = -EINVAL;
369 if (olen > 64 * 1024)
370 goto done;
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 err = -ENOMEM;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800373 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (fl == NULL)
375 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (olen > 0) {
378 struct msghdr msg;
David S. Miller4c9483b2011-03-12 16:22:43 -0500379 struct flowi6 flowi6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 int junk;
381
382 err = -ENOMEM;
383 fl->opt = kmalloc(sizeof(*fl->opt) + olen, GFP_KERNEL);
384 if (fl->opt == NULL)
385 goto done;
386
387 memset(fl->opt, 0, sizeof(*fl->opt));
388 fl->opt->tot_len = sizeof(*fl->opt) + olen;
389 err = -EFAULT;
390 if (copy_from_user(fl->opt+1, optval+CMSG_ALIGN(sizeof(*freq)), olen))
391 goto done;
392
393 msg.msg_controllen = olen;
394 msg.msg_control = (void*)(fl->opt+1);
David S. Miller4c9483b2011-03-12 16:22:43 -0500395 memset(&flowi6, 0, sizeof(flowi6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Tom Parkin73df66f2013-01-31 01:02:24 +0000397 err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, fl->opt,
398 &junk, &junk, &junk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (err)
400 goto done;
401 err = -EINVAL;
402 if (fl->opt->opt_flen)
403 goto done;
404 if (fl->opt->opt_nflen == 0) {
405 kfree(fl->opt);
406 fl->opt = NULL;
407 }
408 }
409
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700410 fl->fl_net = hold_net(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 fl->expires = jiffies;
412 err = fl6_renew(fl, freq->flr_linger, freq->flr_expires);
413 if (err)
414 goto done;
415 fl->share = freq->flr_share;
416 addr_type = ipv6_addr_type(&freq->flr_dst);
Joe Perches35700212009-11-24 14:52:52 -0800417 if ((addr_type & IPV6_ADDR_MAPPED) ||
418 addr_type == IPV6_ADDR_ANY) {
James Morrisc6817e42006-10-30 18:56:06 -0800419 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 goto done;
James Morrisc6817e42006-10-30 18:56:06 -0800421 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000422 fl->dst = freq->flr_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 atomic_set(&fl->users, 1);
424 switch (fl->share) {
425 case IPV6_FL_S_EXCL:
426 case IPV6_FL_S_ANY:
427 break;
428 case IPV6_FL_S_PROCESS:
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600429 fl->owner.pid = get_task_pid(current, PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 break;
431 case IPV6_FL_S_USER:
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600432 fl->owner.uid = current_euid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 default:
435 err = -EINVAL;
436 goto done;
437 }
438 return fl;
439
440done:
441 fl_free(fl);
442 *err_p = err;
443 return NULL;
444}
445
446static int mem_check(struct sock *sk)
447{
448 struct ipv6_pinfo *np = inet6_sk(sk);
449 struct ipv6_fl_socklist *sfl;
450 int room = FL_MAX_SIZE - atomic_read(&fl_size);
451 int count = 0;
452
453 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK)
454 return 0;
455
Hannes Frederic Sowae688cd42013-11-08 19:26:21 +0100456 rcu_read_lock_bh();
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000457 for_each_sk_fl_rcu(np, sfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 count++;
Hannes Frederic Sowae688cd42013-11-08 19:26:21 +0100459 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 if (room <= 0 ||
462 ((count >= FL_MAX_PER_SOCK ||
Joe Perches35700212009-11-24 14:52:52 -0800463 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) &&
464 !capable(CAP_NET_ADMIN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return -ENOBUFS;
466
467 return 0;
468}
469
Eric Dumazeta50feda2012-05-18 18:57:34 +0000470static bool ipv6_hdr_cmp(struct ipv6_opt_hdr *h1, struct ipv6_opt_hdr *h2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 if (h1 == h2)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000473 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (h1 == NULL || h2 == NULL)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000475 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (h1->hdrlen != h2->hdrlen)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000477 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return memcmp(h1+1, h2+1, ((h1->hdrlen+1)<<3) - sizeof(*h1));
479}
480
Eric Dumazeta50feda2012-05-18 18:57:34 +0000481static bool ipv6_opt_cmp(struct ipv6_txoptions *o1, struct ipv6_txoptions *o2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 if (o1 == o2)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000484 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 if (o1 == NULL || o2 == NULL)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000486 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (o1->opt_nflen != o2->opt_nflen)
Eric Dumazeta50feda2012-05-18 18:57:34 +0000488 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (ipv6_hdr_cmp(o1->hopopt, o2->hopopt))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000490 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (ipv6_hdr_cmp(o1->dst0opt, o2->dst0opt))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000492 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (ipv6_hdr_cmp((struct ipv6_opt_hdr *)o1->srcrt, (struct ipv6_opt_hdr *)o2->srcrt))
Eric Dumazeta50feda2012-05-18 18:57:34 +0000494 return true;
495 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496}
497
Pavel Emelyanov04028042007-10-18 05:14:58 -0700498static inline void fl_link(struct ipv6_pinfo *np, struct ipv6_fl_socklist *sfl,
499 struct ip6_flowlabel *fl)
500{
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000501 spin_lock_bh(&ip6_sk_fl_lock);
Pavel Emelyanov04028042007-10-18 05:14:58 -0700502 sfl->fl = fl;
503 sfl->next = np->ipv6_fl_list;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000504 rcu_assign_pointer(np->ipv6_fl_list, sfl);
505 spin_unlock_bh(&ip6_sk_fl_lock);
Pavel Emelyanov04028042007-10-18 05:14:58 -0700506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen)
509{
Ingo Molnar55205d42008-11-25 16:50:30 -0800510 int uninitialized_var(err);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700511 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 struct ipv6_pinfo *np = inet6_sk(sk);
513 struct in6_flowlabel_req freq;
514 struct ipv6_fl_socklist *sfl1=NULL;
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000515 struct ipv6_fl_socklist *sfl;
516 struct ipv6_fl_socklist __rcu **sflp;
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700517 struct ip6_flowlabel *fl, *fl1 = NULL;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if (optlen < sizeof(freq))
521 return -EINVAL;
522
523 if (copy_from_user(&freq, optval, sizeof(freq)))
524 return -EFAULT;
525
526 switch (freq.flr_action) {
527 case IPV6_FL_A_PUT:
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000528 spin_lock_bh(&ip6_sk_fl_lock);
529 for (sflp = &np->ipv6_fl_list;
530 (sfl = rcu_dereference(*sflp))!=NULL;
531 sflp = &sfl->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (sfl->fl->label == freq.flr_label) {
533 if (freq.flr_label == (np->flow_label&IPV6_FLOWLABEL_MASK))
534 np->flow_label &= ~IPV6_FLOWLABEL_MASK;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000535 *sflp = rcu_dereference(sfl->next);
536 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 fl_release(sfl->fl);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000538 kfree_rcu(sfl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 return 0;
540 }
541 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000542 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -ESRCH;
544
545 case IPV6_FL_A_RENEW:
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000546 rcu_read_lock_bh();
547 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (sfl->fl->label == freq.flr_label) {
549 err = fl6_renew(sfl->fl, freq.flr_linger, freq.flr_expires);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000550 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return err;
552 }
553 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000554 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000556 if (freq.flr_share == IPV6_FL_S_NONE &&
557 ns_capable(net->user_ns, CAP_NET_ADMIN)) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700558 fl = fl_lookup(net, freq.flr_label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 if (fl) {
560 err = fl6_renew(fl, freq.flr_linger, freq.flr_expires);
561 fl_release(fl);
562 return err;
563 }
564 }
565 return -ESRCH;
566
567 case IPV6_FL_A_GET:
568 if (freq.flr_label & ~IPV6_FLOWLABEL_MASK)
569 return -EINVAL;
570
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000571 fl = fl_create(net, sk, &freq, optval, optlen, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (fl == NULL)
573 return err;
574 sfl1 = kmalloc(sizeof(*sfl1), GFP_KERNEL);
575
576 if (freq.flr_label) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 err = -EEXIST;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000578 rcu_read_lock_bh();
579 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (sfl->fl->label == freq.flr_label) {
581 if (freq.flr_flags&IPV6_FL_F_EXCL) {
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000582 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto done;
584 }
585 fl1 = sfl->fl;
Yan Zheng4ea6a802005-10-24 19:55:23 +0800586 atomic_inc(&fl1->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
588 }
589 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000590 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (fl1 == NULL)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700593 fl1 = fl_lookup(net, freq.flr_label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (fl1) {
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700595recheck:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 err = -EEXIST;
597 if (freq.flr_flags&IPV6_FL_F_EXCL)
598 goto release;
599 err = -EPERM;
600 if (fl1->share == IPV6_FL_S_EXCL ||
601 fl1->share != fl->share ||
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600602 ((fl1->share == IPV6_FL_S_PROCESS) &&
603 (fl1->owner.pid == fl->owner.pid)) ||
604 ((fl1->share == IPV6_FL_S_USER) &&
605 uid_eq(fl1->owner.uid, fl->owner.uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 goto release;
607
608 err = -EINVAL;
609 if (!ipv6_addr_equal(&fl1->dst, &fl->dst) ||
610 ipv6_opt_cmp(fl1->opt, fl->opt))
611 goto release;
612
613 err = -ENOMEM;
614 if (sfl1 == NULL)
615 goto release;
616 if (fl->linger > fl1->linger)
617 fl1->linger = fl->linger;
618 if ((long)(fl->expires - fl1->expires) > 0)
619 fl1->expires = fl->expires;
Pavel Emelyanov04028042007-10-18 05:14:58 -0700620 fl_link(np, sfl1, fl1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 fl_free(fl);
622 return 0;
623
624release:
625 fl_release(fl1);
626 goto done;
627 }
628 }
629 err = -ENOENT;
630 if (!(freq.flr_flags&IPV6_FL_F_CREATE))
631 goto done;
632
633 err = -ENOMEM;
634 if (sfl1 == NULL || (err = mem_check(sk)) != 0)
635 goto done;
636
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700637 fl1 = fl_intern(net, fl, freq.flr_label);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700638 if (fl1 != NULL)
639 goto recheck;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
David S. Miller6c94d362005-05-29 20:28:01 -0700641 if (!freq.flr_label) {
642 if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
643 &fl->label, sizeof(fl->label))) {
644 /* Intentionally ignore fault. */
645 }
646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Pavel Emelyanov04028042007-10-18 05:14:58 -0700648 fl_link(np, sfl1, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return 0;
650
651 default:
652 return -EINVAL;
653 }
654
655done:
656 fl_free(fl);
657 kfree(sfl1);
658 return err;
659}
660
661#ifdef CONFIG_PROC_FS
662
663struct ip6fl_iter_state {
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700664 struct seq_net_private p;
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600665 struct pid_namespace *pid_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 int bucket;
667};
668
669#define ip6fl_seq_private(seq) ((struct ip6fl_iter_state *)(seq)->private)
670
671static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq)
672{
673 struct ip6_flowlabel *fl = NULL;
674 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700675 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) {
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000678 for_each_fl_rcu(state->bucket, fl) {
679 if (net_eq(fl->fl_net, net))
680 goto out;
681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000683 fl = NULL;
684out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return fl;
686}
687
688static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl)
689{
690 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700691 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000693 for_each_fl_continue_rcu(fl) {
694 if (net_eq(fl->fl_net, net))
695 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000697
698try_again:
699 if (++state->bucket <= FL_HASH_MASK) {
700 for_each_fl_rcu(state->bucket, fl) {
701 if (net_eq(fl->fl_net, net))
702 goto out;
703 }
704 goto try_again;
705 }
706 fl = NULL;
707
708out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return fl;
710}
711
712static struct ip6_flowlabel *ip6fl_get_idx(struct seq_file *seq, loff_t pos)
713{
714 struct ip6_flowlabel *fl = ip6fl_get_first(seq);
715 if (fl)
716 while (pos && (fl = ip6fl_get_next(seq, fl)) != NULL)
717 --pos;
718 return pos ? NULL : fl;
719}
720
721static void *ip6fl_seq_start(struct seq_file *seq, loff_t *pos)
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000722 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000724 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return *pos ? ip6fl_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
726}
727
728static void *ip6fl_seq_next(struct seq_file *seq, void *v, loff_t *pos)
729{
730 struct ip6_flowlabel *fl;
731
732 if (v == SEQ_START_TOKEN)
733 fl = ip6fl_get_first(seq);
734 else
735 fl = ip6fl_get_next(seq, v);
736 ++*pos;
737 return fl;
738}
739
740static void ip6fl_seq_stop(struct seq_file *seq, void *v)
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000741 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000743 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
James Morris1b7c2db2006-10-31 00:43:44 -0800746static int ip6fl_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600748 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
James Morris1b7c2db2006-10-31 00:43:44 -0800749 if (v == SEQ_START_TOKEN)
750 seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n",
751 "Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt");
752 else {
753 struct ip6_flowlabel *fl = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -0700755 "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000756 (unsigned int)ntohl(fl->label),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 fl->share,
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600758 ((fl->share == IPV6_FL_S_PROCESS) ?
759 pid_nr_ns(fl->owner.pid, state->pid_ns) :
760 ((fl->share == IPV6_FL_S_USER) ?
761 from_kuid_munged(seq_user_ns(seq), fl->owner.uid) :
762 0)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 atomic_read(&fl->users),
764 fl->linger/HZ,
765 (long)(fl->expires - jiffies)/HZ,
Harvey Harrisonb0711952008-10-28 16:05:40 -0700766 &fl->dst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 fl->opt ? fl->opt->opt_nflen : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return 0;
770}
771
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700772static const struct seq_operations ip6fl_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 .start = ip6fl_seq_start,
774 .next = ip6fl_seq_next,
775 .stop = ip6fl_seq_stop,
776 .show = ip6fl_seq_show,
777};
778
779static int ip6fl_seq_open(struct inode *inode, struct file *file)
780{
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600781 struct seq_file *seq;
782 struct ip6fl_iter_state *state;
783 int err;
784
785 err = seq_open_net(inode, file, &ip6fl_seq_ops,
786 sizeof(struct ip6fl_iter_state));
787
788 if (!err) {
789 seq = file->private_data;
790 state = ip6fl_seq_private(seq);
791 rcu_read_lock();
792 state->pid_ns = get_pid_ns(task_active_pid_ns(current));
793 rcu_read_unlock();
794 }
795 return err;
796}
797
798static int ip6fl_seq_release(struct inode *inode, struct file *file)
799{
800 struct seq_file *seq = file->private_data;
801 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
802 put_pid_ns(state->pid_ns);
803 return seq_release_net(inode, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
Arjan van de Ven9a321442007-02-12 00:55:35 -0800806static const struct file_operations ip6fl_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 .owner = THIS_MODULE,
808 .open = ip6fl_seq_open,
809 .read = seq_read,
810 .llseek = seq_lseek,
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600811 .release = ip6fl_seq_release,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000814static int __net_init ip6_flowlabel_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Gao fengd4beaa62013-02-18 01:34:54 +0000816 if (!proc_create("ip6_flowlabel", S_IRUGO, net->proc_net,
817 &ip6fl_seq_fops))
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800818 return -ENOMEM;
819 return 0;
820}
821
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000822static void __net_exit ip6_flowlabel_proc_fini(struct net *net)
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800823{
Gao fengece31ff2013-02-18 01:34:56 +0000824 remove_proc_entry("ip6_flowlabel", net->proc_net);
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800825}
826#else
827static inline int ip6_flowlabel_proc_init(struct net *net)
828{
829 return 0;
830}
831static inline void ip6_flowlabel_proc_fini(struct net *net)
832{
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800833}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#endif
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800835
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000836static void __net_exit ip6_flowlabel_net_exit(struct net *net)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700837{
838 ip6_fl_purge(net);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700839 ip6_flowlabel_proc_fini(net);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700840}
841
842static struct pernet_operations ip6_flowlabel_net_ops = {
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700843 .init = ip6_flowlabel_proc_init,
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700844 .exit = ip6_flowlabel_net_exit,
845};
846
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800847int ip6_flowlabel_init(void)
848{
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700849 return register_pernet_subsys(&ip6_flowlabel_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
852void ip6_flowlabel_cleanup(void)
853{
854 del_timer(&ip6_fl_gc_timer);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700855 unregister_pernet_subsys(&ip6_flowlabel_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}