]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipv6/ip6_flowlabel.c
ipv6: protect flow label renew against GC
[mirror_ubuntu-bionic-kernel.git] / net / ipv6 / ip6_flowlabel.c
CommitLineData
1da177e4
LT
1/*
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
4fc268d2 12#include <linux/capability.h>
1da177e4
LT
13#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>
5a0e3ad6 23#include <linux/slab.h>
bc3b2d7f 24#include <linux/export.h>
4f82f457 25#include <linux/pid_namespace.h>
1da177e4 26
457c4cbc 27#include <net/net_namespace.h>
1da177e4
LT
28#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 */
53b47106 44#define FL_MAX_LINGER 150 /* Maximal linger timeout */
1da177e4
LT
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);
d3aedd5e 54static struct ip6_flowlabel __rcu *fl_ht[FL_HASH_MASK+1];
1da177e4
LT
55
56static void ip6_fl_gc(unsigned long dummy);
8d06afab 57static DEFINE_TIMER(ip6_fl_gc_timer, ip6_fl_gc, 0, 0);
1da177e4
LT
58
59/* FL hash table lock: it protects only of GC */
60
d3aedd5e 61static DEFINE_SPINLOCK(ip6_fl_lock);
1da177e4
LT
62
63/* Big socket sock */
64
18367681 65static DEFINE_SPINLOCK(ip6_sk_fl_lock);
1da177e4 66
d3aedd5e 67#define for_each_fl_rcu(hash, fl) \
6a98dcf0 68 for (fl = rcu_dereference_bh(fl_ht[(hash)]); \
d3aedd5e 69 fl != NULL; \
6a98dcf0 70 fl = rcu_dereference_bh(fl->next))
d3aedd5e 71#define for_each_fl_continue_rcu(fl) \
6a98dcf0 72 for (fl = rcu_dereference_bh(fl->next); \
d3aedd5e 73 fl != NULL; \
6a98dcf0 74 fl = rcu_dereference_bh(fl->next))
1da177e4 75
18367681
YH
76#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
60e8fbc4 81static inline struct ip6_flowlabel *__fl_lookup(struct net *net, __be32 label)
1da177e4
LT
82{
83 struct ip6_flowlabel *fl;
84
d3aedd5e 85 for_each_fl_rcu(FL_HASH(label), fl) {
09ad9bc7 86 if (fl->label == label && net_eq(fl->fl_net, net))
1da177e4
LT
87 return fl;
88 }
89 return NULL;
90}
91
60e8fbc4 92static struct ip6_flowlabel *fl_lookup(struct net *net, __be32 label)
1da177e4
LT
93{
94 struct ip6_flowlabel *fl;
95
d3aedd5e 96 rcu_read_lock_bh();
60e8fbc4 97 fl = __fl_lookup(net, label);
d3aedd5e
YH
98 if (fl && !atomic_inc_not_zero(&fl->users))
99 fl = NULL;
100 rcu_read_unlock_bh();
1da177e4
LT
101 return fl;
102}
103
104
105static void fl_free(struct ip6_flowlabel *fl)
106{
60e8fbc4 107 if (fl) {
898132ae
DC
108 if (fl->share == IPV6_FL_S_PROCESS)
109 put_pid(fl->owner.pid);
60e8fbc4 110 release_net(fl->fl_net);
1da177e4 111 kfree(fl->opt);
d3aedd5e 112 kfree_rcu(fl, rcu);
60e8fbc4 113 }
1da177e4
LT
114}
115
116static void fl_release(struct ip6_flowlabel *fl)
117{
d3aedd5e 118 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
119
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 }
d3aedd5e 135 spin_unlock_bh(&ip6_fl_lock);
1da177e4
LT
136}
137
138static void ip6_fl_gc(unsigned long dummy)
139{
140 int i;
141 unsigned long now = jiffies;
142 unsigned long sched = 0;
143
d3aedd5e 144 spin_lock(&ip6_fl_lock);
1da177e4
LT
145
146 for (i=0; i<=FL_HASH_MASK; i++) {
7f0e44ac
ED
147 struct ip6_flowlabel *fl;
148 struct ip6_flowlabel __rcu **flp;
149
1da177e4 150 flp = &fl_ht[i];
d3aedd5e
YH
151 while ((fl = rcu_dereference_protected(*flp,
152 lockdep_is_held(&ip6_fl_lock))) != NULL) {
1da177e4
LT
153 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) {
60e8fbc4 173 mod_timer(&ip6_fl_gc_timer, sched);
1da177e4 174 }
d3aedd5e 175 spin_unlock(&ip6_fl_lock);
1da177e4
LT
176}
177
2c8c1e72 178static void __net_exit ip6_fl_purge(struct net *net)
60e8fbc4
BT
179{
180 int i;
181
d3aedd5e 182 spin_lock(&ip6_fl_lock);
60e8fbc4 183 for (i = 0; i <= FL_HASH_MASK; i++) {
7f0e44ac
ED
184 struct ip6_flowlabel *fl;
185 struct ip6_flowlabel __rcu **flp;
186
60e8fbc4 187 flp = &fl_ht[i];
d3aedd5e
YH
188 while ((fl = rcu_dereference_protected(*flp,
189 lockdep_is_held(&ip6_fl_lock))) != NULL) {
09ad9bc7
OP
190 if (net_eq(fl->fl_net, net) &&
191 atomic_read(&fl->users) == 0) {
60e8fbc4
BT
192 *flp = fl->next;
193 fl_free(fl);
194 atomic_dec(&fl_size);
195 continue;
196 }
197 flp = &fl->next;
198 }
199 }
d3aedd5e 200 spin_unlock(&ip6_fl_lock);
60e8fbc4
BT
201}
202
203static struct ip6_flowlabel *fl_intern(struct net *net,
204 struct ip6_flowlabel *fl, __be32 label)
1da177e4 205{
78c2e502
PE
206 struct ip6_flowlabel *lfl;
207
1da177e4
LT
208 fl->label = label & IPV6_FLOWLABEL_MASK;
209
d3aedd5e 210 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
211 if (label == 0) {
212 for (;;) {
213 fl->label = htonl(net_random())&IPV6_FLOWLABEL_MASK;
214 if (fl->label) {
60e8fbc4 215 lfl = __fl_lookup(net, fl->label);
1da177e4
LT
216 if (lfl == NULL)
217 break;
218 }
219 }
78c2e502
PE
220 } 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 */
60e8fbc4 229 lfl = __fl_lookup(net, fl->label);
78c2e502
PE
230 if (lfl != NULL) {
231 atomic_inc(&lfl->users);
d3aedd5e 232 spin_unlock_bh(&ip6_fl_lock);
78c2e502
PE
233 return lfl;
234 }
1da177e4
LT
235 }
236
237 fl->lastuse = jiffies;
238 fl->next = fl_ht[FL_HASH(fl->label)];
d3aedd5e 239 rcu_assign_pointer(fl_ht[FL_HASH(fl->label)], fl);
1da177e4 240 atomic_inc(&fl_size);
d3aedd5e 241 spin_unlock_bh(&ip6_fl_lock);
78c2e502 242 return NULL;
1da177e4
LT
243}
244
245
246
247/* Socket flowlabel lists */
248
90bcaf7b 249struct ip6_flowlabel * fl6_sock_lookup(struct sock *sk, __be32 label)
1da177e4
LT
250{
251 struct ipv6_fl_socklist *sfl;
252 struct ipv6_pinfo *np = inet6_sk(sk);
253
254 label &= IPV6_FLOWLABEL_MASK;
255
18367681
YH
256 rcu_read_lock_bh();
257 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
258 struct ip6_flowlabel *fl = sfl->fl;
259 if (fl->label == label) {
260 fl->lastuse = jiffies;
261 atomic_inc(&fl->users);
18367681 262 rcu_read_unlock_bh();
1da177e4
LT
263 return fl;
264 }
265 }
18367681 266 rcu_read_unlock_bh();
1da177e4
LT
267 return NULL;
268}
269
3cf3dc6c
ACM
270EXPORT_SYMBOL_GPL(fl6_sock_lookup);
271
1da177e4
LT
272void fl6_free_socklist(struct sock *sk)
273{
274 struct ipv6_pinfo *np = inet6_sk(sk);
275 struct ipv6_fl_socklist *sfl;
276
18367681 277 if (!rcu_access_pointer(np->ipv6_fl_list))
f256dc59
YH
278 return;
279
18367681
YH
280 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);
f256dc59 285
1da177e4 286 fl_release(sfl->fl);
18367681
YH
287 kfree_rcu(sfl, rcu);
288
289 spin_lock_bh(&ip6_sk_fl_lock);
1da177e4 290 }
18367681 291 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4
LT
292}
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{
df9890c3 307 struct ipv6_txoptions * fl_opt = fl->opt;
1ab1457c 308
df9890c3
YH
309 if (fopt == NULL || fopt->opt_flen == 0)
310 return fl_opt;
1ab1457c 311
1da177e4
LT
312 if (fl_opt != NULL) {
313 opt_space->hopopt = fl_opt->hopopt;
df9890c3 314 opt_space->dst0opt = fl_opt->dst0opt;
1da177e4
LT
315 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;
1da177e4
LT
326 opt_space->opt_flen = fopt->opt_flen;
327 return opt_space;
328}
a495f836 329EXPORT_SYMBOL_GPL(fl6_merge_options);
1da177e4
LT
330
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;
394055f6
FF
348
349 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
350 fl->lastuse = jiffies;
351 if (time_before(fl->linger, linger))
352 fl->linger = linger;
353 if (time_before(expires, fl->linger))
354 expires = fl->linger;
355 if (time_before(fl->expires, fl->lastuse + expires))
356 fl->expires = fl->lastuse + expires;
394055f6
FF
357 spin_unlock_bh(&ip6_fl_lock);
358
1da177e4
LT
359 return 0;
360}
361
362static struct ip6_flowlabel *
ec0506db
363fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
364 char __user *optval, int optlen, int *err_p)
1da177e4 365{
684de409 366 struct ip6_flowlabel *fl = NULL;
1da177e4
LT
367 int olen;
368 int addr_type;
369 int err;
370
684de409
DM
371 olen = optlen - CMSG_ALIGN(sizeof(*freq));
372 err = -EINVAL;
373 if (olen > 64 * 1024)
374 goto done;
375
1da177e4 376 err = -ENOMEM;
0c600eda 377 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
1da177e4
LT
378 if (fl == NULL)
379 goto done;
1da177e4 380
1da177e4
LT
381 if (olen > 0) {
382 struct msghdr msg;
4c9483b2 383 struct flowi6 flowi6;
1da177e4
LT
384 int junk;
385
386 err = -ENOMEM;
387 fl->opt = kmalloc(sizeof(*fl->opt) + olen, GFP_KERNEL);
388 if (fl->opt == NULL)
389 goto done;
390
391 memset(fl->opt, 0, sizeof(*fl->opt));
392 fl->opt->tot_len = sizeof(*fl->opt) + olen;
393 err = -EFAULT;
394 if (copy_from_user(fl->opt+1, optval+CMSG_ALIGN(sizeof(*freq)), olen))
395 goto done;
396
397 msg.msg_controllen = olen;
398 msg.msg_control = (void*)(fl->opt+1);
4c9483b2 399 memset(&flowi6, 0, sizeof(flowi6));
1da177e4 400
73df66f8
TP
401 err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, fl->opt,
402 &junk, &junk, &junk);
1da177e4
LT
403 if (err)
404 goto done;
405 err = -EINVAL;
406 if (fl->opt->opt_flen)
407 goto done;
408 if (fl->opt->opt_nflen == 0) {
409 kfree(fl->opt);
410 fl->opt = NULL;
411 }
412 }
413
60e8fbc4 414 fl->fl_net = hold_net(net);
1da177e4
LT
415 fl->expires = jiffies;
416 err = fl6_renew(fl, freq->flr_linger, freq->flr_expires);
417 if (err)
418 goto done;
419 fl->share = freq->flr_share;
420 addr_type = ipv6_addr_type(&freq->flr_dst);
35700212
JP
421 if ((addr_type & IPV6_ADDR_MAPPED) ||
422 addr_type == IPV6_ADDR_ANY) {
c6817e4c 423 err = -EINVAL;
1da177e4 424 goto done;
c6817e4c 425 }
4e3fd7a0 426 fl->dst = freq->flr_dst;
1da177e4
LT
427 atomic_set(&fl->users, 1);
428 switch (fl->share) {
429 case IPV6_FL_S_EXCL:
430 case IPV6_FL_S_ANY:
431 break;
432 case IPV6_FL_S_PROCESS:
4f82f457 433 fl->owner.pid = get_task_pid(current, PIDTYPE_PID);
1da177e4
LT
434 break;
435 case IPV6_FL_S_USER:
4f82f457 436 fl->owner.uid = current_euid();
1da177e4
LT
437 break;
438 default:
439 err = -EINVAL;
440 goto done;
441 }
442 return fl;
443
444done:
445 fl_free(fl);
446 *err_p = err;
447 return NULL;
448}
449
450static int mem_check(struct sock *sk)
451{
452 struct ipv6_pinfo *np = inet6_sk(sk);
453 struct ipv6_fl_socklist *sfl;
454 int room = FL_MAX_SIZE - atomic_read(&fl_size);
455 int count = 0;
456
457 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK)
458 return 0;
459
18367681 460 for_each_sk_fl_rcu(np, sfl)
1da177e4
LT
461 count++;
462
463 if (room <= 0 ||
464 ((count >= FL_MAX_PER_SOCK ||
35700212
JP
465 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) &&
466 !capable(CAP_NET_ADMIN)))
1da177e4
LT
467 return -ENOBUFS;
468
469 return 0;
470}
471
04028045
PE
472static inline void fl_link(struct ipv6_pinfo *np, struct ipv6_fl_socklist *sfl,
473 struct ip6_flowlabel *fl)
474{
18367681 475 spin_lock_bh(&ip6_sk_fl_lock);
04028045
PE
476 sfl->fl = fl;
477 sfl->next = np->ipv6_fl_list;
18367681
YH
478 rcu_assign_pointer(np->ipv6_fl_list, sfl);
479 spin_unlock_bh(&ip6_sk_fl_lock);
04028045
PE
480}
481
3fdfa5ff
FF
482int ipv6_flowlabel_opt_get(struct sock *sk, struct in6_flowlabel_req *freq)
483{
484 struct ipv6_pinfo *np = inet6_sk(sk);
485 struct ipv6_fl_socklist *sfl;
486
487 rcu_read_lock_bh();
488
489 for_each_sk_fl_rcu(np, sfl) {
490 if (sfl->fl->label == (np->flow_label & IPV6_FLOWLABEL_MASK)) {
491 spin_lock_bh(&ip6_fl_lock);
492 freq->flr_label = sfl->fl->label;
493 freq->flr_dst = sfl->fl->dst;
494 freq->flr_share = sfl->fl->share;
495 freq->flr_expires = (sfl->fl->expires - jiffies) / HZ;
496 freq->flr_linger = sfl->fl->linger / HZ;
497
498 spin_unlock_bh(&ip6_fl_lock);
499 rcu_read_unlock_bh();
500 return 0;
501 }
502 }
503 rcu_read_unlock_bh();
504
505 return -ENOENT;
506}
507
1da177e4
LT
508int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen)
509{
55205d40 510 int uninitialized_var(err);
60e8fbc4 511 struct net *net = sock_net(sk);
1da177e4
LT
512 struct ipv6_pinfo *np = inet6_sk(sk);
513 struct in6_flowlabel_req freq;
514 struct ipv6_fl_socklist *sfl1=NULL;
7f0e44ac
ED
515 struct ipv6_fl_socklist *sfl;
516 struct ipv6_fl_socklist __rcu **sflp;
78c2e502
PE
517 struct ip6_flowlabel *fl, *fl1 = NULL;
518
1da177e4
LT
519
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:
18367681
YH
528 spin_lock_bh(&ip6_sk_fl_lock);
529 for (sflp = &np->ipv6_fl_list;
530 (sfl = rcu_dereference(*sflp))!=NULL;
531 sflp = &sfl->next) {
1da177e4
LT
532 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;
18367681
YH
535 *sflp = rcu_dereference(sfl->next);
536 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4 537 fl_release(sfl->fl);
18367681 538 kfree_rcu(sfl, rcu);
1da177e4
LT
539 return 0;
540 }
541 }
18367681 542 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4
LT
543 return -ESRCH;
544
545 case IPV6_FL_A_RENEW:
18367681
YH
546 rcu_read_lock_bh();
547 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
548 if (sfl->fl->label == freq.flr_label) {
549 err = fl6_renew(sfl->fl, freq.flr_linger, freq.flr_expires);
18367681 550 rcu_read_unlock_bh();
1da177e4
LT
551 return err;
552 }
553 }
18367681 554 rcu_read_unlock_bh();
1da177e4 555
af31f412
EB
556 if (freq.flr_share == IPV6_FL_S_NONE &&
557 ns_capable(net->user_ns, CAP_NET_ADMIN)) {
60e8fbc4 558 fl = fl_lookup(net, freq.flr_label);
1da177e4
LT
559 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
ec0506db 571 fl = fl_create(net, sk, &freq, optval, optlen, &err);
1da177e4
LT
572 if (fl == NULL)
573 return err;
574 sfl1 = kmalloc(sizeof(*sfl1), GFP_KERNEL);
575
576 if (freq.flr_label) {
1da177e4 577 err = -EEXIST;
18367681
YH
578 rcu_read_lock_bh();
579 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
580 if (sfl->fl->label == freq.flr_label) {
581 if (freq.flr_flags&IPV6_FL_F_EXCL) {
18367681 582 rcu_read_unlock_bh();
1da177e4
LT
583 goto done;
584 }
585 fl1 = sfl->fl;
4ea6a804 586 atomic_inc(&fl1->users);
1da177e4
LT
587 break;
588 }
589 }
18367681 590 rcu_read_unlock_bh();
1da177e4
LT
591
592 if (fl1 == NULL)
60e8fbc4 593 fl1 = fl_lookup(net, freq.flr_label);
1da177e4 594 if (fl1) {
78c2e502 595recheck:
1da177e4
LT
596 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 ||
4f82f457
EB
602 ((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)))
1da177e4
LT
606 goto release;
607
1da177e4
LT
608 err = -ENOMEM;
609 if (sfl1 == NULL)
610 goto release;
611 if (fl->linger > fl1->linger)
612 fl1->linger = fl->linger;
613 if ((long)(fl->expires - fl1->expires) > 0)
614 fl1->expires = fl->expires;
04028045 615 fl_link(np, sfl1, fl1);
1da177e4
LT
616 fl_free(fl);
617 return 0;
618
619release:
620 fl_release(fl1);
621 goto done;
622 }
623 }
624 err = -ENOENT;
625 if (!(freq.flr_flags&IPV6_FL_F_CREATE))
626 goto done;
627
628 err = -ENOMEM;
629 if (sfl1 == NULL || (err = mem_check(sk)) != 0)
630 goto done;
631
60e8fbc4 632 fl1 = fl_intern(net, fl, freq.flr_label);
78c2e502
PE
633 if (fl1 != NULL)
634 goto recheck;
1da177e4 635
6c94d361
DM
636 if (!freq.flr_label) {
637 if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
638 &fl->label, sizeof(fl->label))) {
639 /* Intentionally ignore fault. */
640 }
641 }
1da177e4 642
04028045 643 fl_link(np, sfl1, fl);
1da177e4
LT
644 return 0;
645
646 default:
647 return -EINVAL;
648 }
649
650done:
651 fl_free(fl);
652 kfree(sfl1);
653 return err;
654}
655
656#ifdef CONFIG_PROC_FS
657
658struct ip6fl_iter_state {
5983a3df 659 struct seq_net_private p;
4f82f457 660 struct pid_namespace *pid_ns;
1da177e4
LT
661 int bucket;
662};
663
664#define ip6fl_seq_private(seq) ((struct ip6fl_iter_state *)(seq)->private)
665
666static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq)
667{
668 struct ip6_flowlabel *fl = NULL;
669 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
5983a3df 670 struct net *net = seq_file_net(seq);
1da177e4
LT
671
672 for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) {
d3aedd5e
YH
673 for_each_fl_rcu(state->bucket, fl) {
674 if (net_eq(fl->fl_net, net))
675 goto out;
676 }
1da177e4 677 }
d3aedd5e
YH
678 fl = NULL;
679out:
1da177e4
LT
680 return fl;
681}
682
683static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl)
684{
685 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
5983a3df 686 struct net *net = seq_file_net(seq);
1da177e4 687
d3aedd5e
YH
688 for_each_fl_continue_rcu(fl) {
689 if (net_eq(fl->fl_net, net))
690 goto out;
691 }
692
5983a3df 693try_again:
d3aedd5e
YH
694 if (++state->bucket <= FL_HASH_MASK) {
695 for_each_fl_rcu(state->bucket, fl) {
696 if (net_eq(fl->fl_net, net))
697 goto out;
698 }
699 goto try_again;
1da177e4 700 }
d3aedd5e
YH
701 fl = NULL;
702
703out:
1da177e4
LT
704 return fl;
705}
706
707static struct ip6_flowlabel *ip6fl_get_idx(struct seq_file *seq, loff_t pos)
708{
709 struct ip6_flowlabel *fl = ip6fl_get_first(seq);
710 if (fl)
711 while (pos && (fl = ip6fl_get_next(seq, fl)) != NULL)
712 --pos;
713 return pos ? NULL : fl;
714}
715
716static void *ip6fl_seq_start(struct seq_file *seq, loff_t *pos)
d3aedd5e 717 __acquires(RCU)
1da177e4 718{
d3aedd5e 719 rcu_read_lock_bh();
1da177e4
LT
720 return *pos ? ip6fl_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
721}
722
723static void *ip6fl_seq_next(struct seq_file *seq, void *v, loff_t *pos)
724{
725 struct ip6_flowlabel *fl;
726
727 if (v == SEQ_START_TOKEN)
728 fl = ip6fl_get_first(seq);
729 else
730 fl = ip6fl_get_next(seq, v);
731 ++*pos;
732 return fl;
733}
734
735static void ip6fl_seq_stop(struct seq_file *seq, void *v)
d3aedd5e 736 __releases(RCU)
1da177e4 737{
d3aedd5e 738 rcu_read_unlock_bh();
1da177e4
LT
739}
740
1b7c2dbc 741static int ip6fl_seq_show(struct seq_file *seq, void *v)
1da177e4 742{
4f82f457 743 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
1b7c2dbc
JM
744 if (v == SEQ_START_TOKEN)
745 seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n",
746 "Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt");
747 else {
748 struct ip6_flowlabel *fl = v;
1da177e4 749 seq_printf(seq,
4b7a4274 750 "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n",
95c96174 751 (unsigned int)ntohl(fl->label),
1da177e4 752 fl->share,
4f82f457
EB
753 ((fl->share == IPV6_FL_S_PROCESS) ?
754 pid_nr_ns(fl->owner.pid, state->pid_ns) :
755 ((fl->share == IPV6_FL_S_USER) ?
756 from_kuid_munged(seq_user_ns(seq), fl->owner.uid) :
757 0)),
1da177e4
LT
758 atomic_read(&fl->users),
759 fl->linger/HZ,
760 (long)(fl->expires - jiffies)/HZ,
b071195d 761 &fl->dst,
1da177e4 762 fl->opt ? fl->opt->opt_nflen : 0);
1da177e4 763 }
1da177e4
LT
764 return 0;
765}
766
56b3d975 767static const struct seq_operations ip6fl_seq_ops = {
1da177e4
LT
768 .start = ip6fl_seq_start,
769 .next = ip6fl_seq_next,
770 .stop = ip6fl_seq_stop,
771 .show = ip6fl_seq_show,
772};
773
774static int ip6fl_seq_open(struct inode *inode, struct file *file)
775{
4f82f457
EB
776 struct seq_file *seq;
777 struct ip6fl_iter_state *state;
778 int err;
779
780 err = seq_open_net(inode, file, &ip6fl_seq_ops,
781 sizeof(struct ip6fl_iter_state));
782
783 if (!err) {
784 seq = file->private_data;
785 state = ip6fl_seq_private(seq);
786 rcu_read_lock();
787 state->pid_ns = get_pid_ns(task_active_pid_ns(current));
788 rcu_read_unlock();
789 }
790 return err;
791}
792
793static int ip6fl_seq_release(struct inode *inode, struct file *file)
794{
795 struct seq_file *seq = file->private_data;
796 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
797 put_pid_ns(state->pid_ns);
798 return seq_release_net(inode, file);
1da177e4
LT
799}
800
9a32144e 801static const struct file_operations ip6fl_seq_fops = {
1da177e4
LT
802 .owner = THIS_MODULE,
803 .open = ip6fl_seq_open,
804 .read = seq_read,
805 .llseek = seq_lseek,
4f82f457 806 .release = ip6fl_seq_release,
1da177e4 807};
1da177e4 808
2c8c1e72 809static int __net_init ip6_flowlabel_proc_init(struct net *net)
0a3e78ac 810{
d4beaa66
G
811 if (!proc_create("ip6_flowlabel", S_IRUGO, net->proc_net,
812 &ip6fl_seq_fops))
0a3e78ac
DL
813 return -ENOMEM;
814 return 0;
815}
1da177e4 816
2c8c1e72 817static void __net_exit ip6_flowlabel_proc_fini(struct net *net)
1da177e4 818{
ece31ffd 819 remove_proc_entry("ip6_flowlabel", net->proc_net);
0a3e78ac
DL
820}
821#else
822static inline int ip6_flowlabel_proc_init(struct net *net)
823{
824 return 0;
825}
826static inline void ip6_flowlabel_proc_fini(struct net *net)
827{
0a3e78ac 828}
1da177e4 829#endif
0a3e78ac 830
2c8c1e72 831static void __net_exit ip6_flowlabel_net_exit(struct net *net)
60e8fbc4
BT
832{
833 ip6_fl_purge(net);
5983a3df 834 ip6_flowlabel_proc_fini(net);
60e8fbc4
BT
835}
836
837static struct pernet_operations ip6_flowlabel_net_ops = {
5983a3df 838 .init = ip6_flowlabel_proc_init,
60e8fbc4
BT
839 .exit = ip6_flowlabel_net_exit,
840};
841
0a3e78ac
DL
842int ip6_flowlabel_init(void)
843{
5983a3df 844 return register_pernet_subsys(&ip6_flowlabel_net_ops);
1da177e4
LT
845}
846
847void ip6_flowlabel_cleanup(void)
848{
849 del_timer(&ip6_fl_gc_timer);
60e8fbc4 850 unregister_pernet_subsys(&ip6_flowlabel_net_ops);
1da177e4 851}