Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
[deliverable/linux.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>
1da177e4 18#include <linux/in6.h>
1da177e4
LT
19#include <linux/proc_fs.h>
20#include <linux/seq_file.h>
5a0e3ad6 21#include <linux/slab.h>
bc3b2d7f 22#include <linux/export.h>
4f82f457 23#include <linux/pid_namespace.h>
1da177e4 24
457c4cbc 25#include <net/net_namespace.h>
1da177e4
LT
26#include <net/sock.h>
27
28#include <net/ipv6.h>
1da177e4 29#include <net/rawv6.h>
1da177e4
LT
30#include <net/transp_v6.h>
31
32#include <asm/uaccess.h>
33
34#define FL_MIN_LINGER 6 /* Minimal linger. It is set to 6sec specified
35 in old IPv6 RFC. Well, it was reasonable value.
36 */
53b47106 37#define FL_MAX_LINGER 150 /* Maximal linger timeout */
1da177e4
LT
38
39/* FL hash table */
40
41#define FL_MAX_PER_SOCK 32
42#define FL_MAX_SIZE 4096
43#define FL_HASH_MASK 255
44#define FL_HASH(l) (ntohl(l)&FL_HASH_MASK)
45
46static atomic_t fl_size = ATOMIC_INIT(0);
d3aedd5e 47static struct ip6_flowlabel __rcu *fl_ht[FL_HASH_MASK+1];
1da177e4
LT
48
49static void ip6_fl_gc(unsigned long dummy);
8d06afab 50static DEFINE_TIMER(ip6_fl_gc_timer, ip6_fl_gc, 0, 0);
1da177e4
LT
51
52/* FL hash table lock: it protects only of GC */
53
d3aedd5e 54static DEFINE_SPINLOCK(ip6_fl_lock);
1da177e4
LT
55
56/* Big socket sock */
57
18367681 58static DEFINE_SPINLOCK(ip6_sk_fl_lock);
1da177e4 59
d3aedd5e 60#define for_each_fl_rcu(hash, fl) \
6a98dcf0 61 for (fl = rcu_dereference_bh(fl_ht[(hash)]); \
d3aedd5e 62 fl != NULL; \
6a98dcf0 63 fl = rcu_dereference_bh(fl->next))
d3aedd5e 64#define for_each_fl_continue_rcu(fl) \
6a98dcf0 65 for (fl = rcu_dereference_bh(fl->next); \
d3aedd5e 66 fl != NULL; \
6a98dcf0 67 fl = rcu_dereference_bh(fl->next))
1da177e4 68
18367681
YH
69#define for_each_sk_fl_rcu(np, sfl) \
70 for (sfl = rcu_dereference_bh(np->ipv6_fl_list); \
71 sfl != NULL; \
72 sfl = rcu_dereference_bh(sfl->next))
73
60e8fbc4 74static inline struct ip6_flowlabel *__fl_lookup(struct net *net, __be32 label)
1da177e4
LT
75{
76 struct ip6_flowlabel *fl;
77
d3aedd5e 78 for_each_fl_rcu(FL_HASH(label), fl) {
09ad9bc7 79 if (fl->label == label && net_eq(fl->fl_net, net))
1da177e4
LT
80 return fl;
81 }
82 return NULL;
83}
84
60e8fbc4 85static struct ip6_flowlabel *fl_lookup(struct net *net, __be32 label)
1da177e4
LT
86{
87 struct ip6_flowlabel *fl;
88
d3aedd5e 89 rcu_read_lock_bh();
60e8fbc4 90 fl = __fl_lookup(net, label);
d3aedd5e
YH
91 if (fl && !atomic_inc_not_zero(&fl->users))
92 fl = NULL;
93 rcu_read_unlock_bh();
1da177e4
LT
94 return fl;
95}
96
97
98static void fl_free(struct ip6_flowlabel *fl)
99{
60e8fbc4 100 if (fl) {
898132ae
DC
101 if (fl->share == IPV6_FL_S_PROCESS)
102 put_pid(fl->owner.pid);
60e8fbc4 103 release_net(fl->fl_net);
1da177e4 104 kfree(fl->opt);
d3aedd5e 105 kfree_rcu(fl, rcu);
60e8fbc4 106 }
1da177e4
LT
107}
108
109static void fl_release(struct ip6_flowlabel *fl)
110{
d3aedd5e 111 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
112
113 fl->lastuse = jiffies;
114 if (atomic_dec_and_test(&fl->users)) {
115 unsigned long ttd = fl->lastuse + fl->linger;
116 if (time_after(ttd, fl->expires))
117 fl->expires = ttd;
118 ttd = fl->expires;
119 if (fl->opt && fl->share == IPV6_FL_S_EXCL) {
120 struct ipv6_txoptions *opt = fl->opt;
121 fl->opt = NULL;
122 kfree(opt);
123 }
124 if (!timer_pending(&ip6_fl_gc_timer) ||
125 time_after(ip6_fl_gc_timer.expires, ttd))
126 mod_timer(&ip6_fl_gc_timer, ttd);
127 }
d3aedd5e 128 spin_unlock_bh(&ip6_fl_lock);
1da177e4
LT
129}
130
131static void ip6_fl_gc(unsigned long dummy)
132{
133 int i;
134 unsigned long now = jiffies;
135 unsigned long sched = 0;
136
d3aedd5e 137 spin_lock(&ip6_fl_lock);
1da177e4 138
67ba4152 139 for (i = 0; i <= FL_HASH_MASK; i++) {
7f0e44ac
ED
140 struct ip6_flowlabel *fl;
141 struct ip6_flowlabel __rcu **flp;
142
1da177e4 143 flp = &fl_ht[i];
d3aedd5e
YH
144 while ((fl = rcu_dereference_protected(*flp,
145 lockdep_is_held(&ip6_fl_lock))) != NULL) {
1da177e4
LT
146 if (atomic_read(&fl->users) == 0) {
147 unsigned long ttd = fl->lastuse + fl->linger;
148 if (time_after(ttd, fl->expires))
149 fl->expires = ttd;
150 ttd = fl->expires;
151 if (time_after_eq(now, ttd)) {
152 *flp = fl->next;
153 fl_free(fl);
154 atomic_dec(&fl_size);
155 continue;
156 }
157 if (!sched || time_before(ttd, sched))
158 sched = ttd;
159 }
160 flp = &fl->next;
161 }
162 }
163 if (!sched && atomic_read(&fl_size))
164 sched = now + FL_MAX_LINGER;
165 if (sched) {
60e8fbc4 166 mod_timer(&ip6_fl_gc_timer, sched);
1da177e4 167 }
d3aedd5e 168 spin_unlock(&ip6_fl_lock);
1da177e4
LT
169}
170
2c8c1e72 171static void __net_exit ip6_fl_purge(struct net *net)
60e8fbc4
BT
172{
173 int i;
174
d3aedd5e 175 spin_lock(&ip6_fl_lock);
60e8fbc4 176 for (i = 0; i <= FL_HASH_MASK; i++) {
7f0e44ac
ED
177 struct ip6_flowlabel *fl;
178 struct ip6_flowlabel __rcu **flp;
179
60e8fbc4 180 flp = &fl_ht[i];
d3aedd5e
YH
181 while ((fl = rcu_dereference_protected(*flp,
182 lockdep_is_held(&ip6_fl_lock))) != NULL) {
09ad9bc7
OP
183 if (net_eq(fl->fl_net, net) &&
184 atomic_read(&fl->users) == 0) {
60e8fbc4
BT
185 *flp = fl->next;
186 fl_free(fl);
187 atomic_dec(&fl_size);
188 continue;
189 }
190 flp = &fl->next;
191 }
192 }
d3aedd5e 193 spin_unlock(&ip6_fl_lock);
60e8fbc4
BT
194}
195
196static struct ip6_flowlabel *fl_intern(struct net *net,
197 struct ip6_flowlabel *fl, __be32 label)
1da177e4 198{
78c2e502
PE
199 struct ip6_flowlabel *lfl;
200
1da177e4
LT
201 fl->label = label & IPV6_FLOWLABEL_MASK;
202
d3aedd5e 203 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
204 if (label == 0) {
205 for (;;) {
63862b5b 206 fl->label = htonl(prandom_u32())&IPV6_FLOWLABEL_MASK;
1da177e4 207 if (fl->label) {
60e8fbc4 208 lfl = __fl_lookup(net, fl->label);
1da177e4
LT
209 if (lfl == NULL)
210 break;
211 }
212 }
78c2e502
PE
213 } else {
214 /*
215 * we dropper the ip6_fl_lock, so this entry could reappear
216 * and we need to recheck with it.
217 *
218 * OTOH no need to search the active socket first, like it is
219 * done in ipv6_flowlabel_opt - sock is locked, so new entry
220 * with the same label can only appear on another sock
221 */
60e8fbc4 222 lfl = __fl_lookup(net, fl->label);
78c2e502
PE
223 if (lfl != NULL) {
224 atomic_inc(&lfl->users);
d3aedd5e 225 spin_unlock_bh(&ip6_fl_lock);
78c2e502
PE
226 return lfl;
227 }
1da177e4
LT
228 }
229
230 fl->lastuse = jiffies;
231 fl->next = fl_ht[FL_HASH(fl->label)];
d3aedd5e 232 rcu_assign_pointer(fl_ht[FL_HASH(fl->label)], fl);
1da177e4 233 atomic_inc(&fl_size);
d3aedd5e 234 spin_unlock_bh(&ip6_fl_lock);
78c2e502 235 return NULL;
1da177e4
LT
236}
237
238
239
240/* Socket flowlabel lists */
241
67ba4152 242struct ip6_flowlabel *fl6_sock_lookup(struct sock *sk, __be32 label)
1da177e4
LT
243{
244 struct ipv6_fl_socklist *sfl;
245 struct ipv6_pinfo *np = inet6_sk(sk);
246
247 label &= IPV6_FLOWLABEL_MASK;
248
18367681
YH
249 rcu_read_lock_bh();
250 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
251 struct ip6_flowlabel *fl = sfl->fl;
252 if (fl->label == label) {
253 fl->lastuse = jiffies;
254 atomic_inc(&fl->users);
18367681 255 rcu_read_unlock_bh();
1da177e4
LT
256 return fl;
257 }
258 }
18367681 259 rcu_read_unlock_bh();
1da177e4
LT
260 return NULL;
261}
3cf3dc6c
ACM
262EXPORT_SYMBOL_GPL(fl6_sock_lookup);
263
1da177e4
LT
264void fl6_free_socklist(struct sock *sk)
265{
266 struct ipv6_pinfo *np = inet6_sk(sk);
267 struct ipv6_fl_socklist *sfl;
268
18367681 269 if (!rcu_access_pointer(np->ipv6_fl_list))
f256dc59
YH
270 return;
271
18367681
YH
272 spin_lock_bh(&ip6_sk_fl_lock);
273 while ((sfl = rcu_dereference_protected(np->ipv6_fl_list,
274 lockdep_is_held(&ip6_sk_fl_lock))) != NULL) {
275 np->ipv6_fl_list = sfl->next;
276 spin_unlock_bh(&ip6_sk_fl_lock);
f256dc59 277
1da177e4 278 fl_release(sfl->fl);
18367681
YH
279 kfree_rcu(sfl, rcu);
280
281 spin_lock_bh(&ip6_sk_fl_lock);
1da177e4 282 }
18367681 283 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4
LT
284}
285
286/* Service routines */
287
288
289/*
290 It is the only difficult place. flowlabel enforces equal headers
291 before and including routing header, however user may supply options
292 following rthdr.
293 */
294
67ba4152
IM
295struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions *opt_space,
296 struct ip6_flowlabel *fl,
297 struct ipv6_txoptions *fopt)
1da177e4 298{
67ba4152 299 struct ipv6_txoptions *fl_opt = fl->opt;
1ab1457c 300
df9890c3
YH
301 if (fopt == NULL || fopt->opt_flen == 0)
302 return fl_opt;
1ab1457c 303
1da177e4
LT
304 if (fl_opt != NULL) {
305 opt_space->hopopt = fl_opt->hopopt;
df9890c3 306 opt_space->dst0opt = fl_opt->dst0opt;
1da177e4
LT
307 opt_space->srcrt = fl_opt->srcrt;
308 opt_space->opt_nflen = fl_opt->opt_nflen;
309 } else {
310 if (fopt->opt_nflen == 0)
311 return fopt;
312 opt_space->hopopt = NULL;
313 opt_space->dst0opt = NULL;
314 opt_space->srcrt = NULL;
315 opt_space->opt_nflen = 0;
316 }
317 opt_space->dst1opt = fopt->dst1opt;
1da177e4
LT
318 opt_space->opt_flen = fopt->opt_flen;
319 return opt_space;
320}
a495f836 321EXPORT_SYMBOL_GPL(fl6_merge_options);
1da177e4
LT
322
323static unsigned long check_linger(unsigned long ttl)
324{
325 if (ttl < FL_MIN_LINGER)
326 return FL_MIN_LINGER*HZ;
327 if (ttl > FL_MAX_LINGER && !capable(CAP_NET_ADMIN))
328 return 0;
329 return ttl*HZ;
330}
331
332static int fl6_renew(struct ip6_flowlabel *fl, unsigned long linger, unsigned long expires)
333{
334 linger = check_linger(linger);
335 if (!linger)
336 return -EPERM;
337 expires = check_linger(expires);
338 if (!expires)
339 return -EPERM;
394055f6
FF
340
341 spin_lock_bh(&ip6_fl_lock);
1da177e4
LT
342 fl->lastuse = jiffies;
343 if (time_before(fl->linger, linger))
344 fl->linger = linger;
345 if (time_before(expires, fl->linger))
346 expires = fl->linger;
347 if (time_before(fl->expires, fl->lastuse + expires))
348 fl->expires = fl->lastuse + expires;
394055f6
FF
349 spin_unlock_bh(&ip6_fl_lock);
350
1da177e4
LT
351 return 0;
352}
353
354static struct ip6_flowlabel *
ec0506db
355fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
356 char __user *optval, int optlen, int *err_p)
1da177e4 357{
684de409 358 struct ip6_flowlabel *fl = NULL;
1da177e4
LT
359 int olen;
360 int addr_type;
361 int err;
362
684de409
DM
363 olen = optlen - CMSG_ALIGN(sizeof(*freq));
364 err = -EINVAL;
365 if (olen > 64 * 1024)
366 goto done;
367
1da177e4 368 err = -ENOMEM;
0c600eda 369 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
1da177e4
LT
370 if (fl == NULL)
371 goto done;
1da177e4 372
1da177e4
LT
373 if (olen > 0) {
374 struct msghdr msg;
4c9483b2 375 struct flowi6 flowi6;
1da177e4
LT
376 int junk;
377
378 err = -ENOMEM;
379 fl->opt = kmalloc(sizeof(*fl->opt) + olen, GFP_KERNEL);
380 if (fl->opt == NULL)
381 goto done;
382
383 memset(fl->opt, 0, sizeof(*fl->opt));
384 fl->opt->tot_len = sizeof(*fl->opt) + olen;
385 err = -EFAULT;
386 if (copy_from_user(fl->opt+1, optval+CMSG_ALIGN(sizeof(*freq)), olen))
387 goto done;
388
389 msg.msg_controllen = olen;
67ba4152 390 msg.msg_control = (void *)(fl->opt+1);
4c9483b2 391 memset(&flowi6, 0, sizeof(flowi6));
1da177e4 392
73df66f8
TP
393 err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, fl->opt,
394 &junk, &junk, &junk);
1da177e4
LT
395 if (err)
396 goto done;
397 err = -EINVAL;
398 if (fl->opt->opt_flen)
399 goto done;
400 if (fl->opt->opt_nflen == 0) {
401 kfree(fl->opt);
402 fl->opt = NULL;
403 }
404 }
405
60e8fbc4 406 fl->fl_net = hold_net(net);
1da177e4
LT
407 fl->expires = jiffies;
408 err = fl6_renew(fl, freq->flr_linger, freq->flr_expires);
409 if (err)
410 goto done;
411 fl->share = freq->flr_share;
412 addr_type = ipv6_addr_type(&freq->flr_dst);
35700212
JP
413 if ((addr_type & IPV6_ADDR_MAPPED) ||
414 addr_type == IPV6_ADDR_ANY) {
c6817e4c 415 err = -EINVAL;
1da177e4 416 goto done;
c6817e4c 417 }
4e3fd7a0 418 fl->dst = freq->flr_dst;
1da177e4
LT
419 atomic_set(&fl->users, 1);
420 switch (fl->share) {
421 case IPV6_FL_S_EXCL:
422 case IPV6_FL_S_ANY:
423 break;
424 case IPV6_FL_S_PROCESS:
4f82f457 425 fl->owner.pid = get_task_pid(current, PIDTYPE_PID);
1da177e4
LT
426 break;
427 case IPV6_FL_S_USER:
4f82f457 428 fl->owner.uid = current_euid();
1da177e4
LT
429 break;
430 default:
431 err = -EINVAL;
432 goto done;
433 }
434 return fl;
435
436done:
437 fl_free(fl);
438 *err_p = err;
439 return NULL;
440}
441
442static int mem_check(struct sock *sk)
443{
444 struct ipv6_pinfo *np = inet6_sk(sk);
445 struct ipv6_fl_socklist *sfl;
446 int room = FL_MAX_SIZE - atomic_read(&fl_size);
447 int count = 0;
448
449 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK)
450 return 0;
451
f8c31c8f 452 rcu_read_lock_bh();
18367681 453 for_each_sk_fl_rcu(np, sfl)
1da177e4 454 count++;
f8c31c8f 455 rcu_read_unlock_bh();
1da177e4
LT
456
457 if (room <= 0 ||
458 ((count >= FL_MAX_PER_SOCK ||
35700212
JP
459 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) &&
460 !capable(CAP_NET_ADMIN)))
1da177e4
LT
461 return -ENOBUFS;
462
463 return 0;
464}
465
04028045
PE
466static inline void fl_link(struct ipv6_pinfo *np, struct ipv6_fl_socklist *sfl,
467 struct ip6_flowlabel *fl)
468{
18367681 469 spin_lock_bh(&ip6_sk_fl_lock);
04028045
PE
470 sfl->fl = fl;
471 sfl->next = np->ipv6_fl_list;
18367681
YH
472 rcu_assign_pointer(np->ipv6_fl_list, sfl);
473 spin_unlock_bh(&ip6_sk_fl_lock);
04028045
PE
474}
475
46e5f401
FF
476int ipv6_flowlabel_opt_get(struct sock *sk, struct in6_flowlabel_req *freq,
477 int flags)
3fdfa5ff
FF
478{
479 struct ipv6_pinfo *np = inet6_sk(sk);
480 struct ipv6_fl_socklist *sfl;
481
46e5f401
FF
482 if (flags & IPV6_FL_F_REMOTE) {
483 freq->flr_label = np->rcv_flowinfo & IPV6_FLOWLABEL_MASK;
484 return 0;
485 }
486
df3687ff
FF
487 if (np->repflow) {
488 freq->flr_label = np->flow_label;
489 return 0;
490 }
491
3fdfa5ff
FF
492 rcu_read_lock_bh();
493
494 for_each_sk_fl_rcu(np, sfl) {
495 if (sfl->fl->label == (np->flow_label & IPV6_FLOWLABEL_MASK)) {
496 spin_lock_bh(&ip6_fl_lock);
497 freq->flr_label = sfl->fl->label;
498 freq->flr_dst = sfl->fl->dst;
499 freq->flr_share = sfl->fl->share;
500 freq->flr_expires = (sfl->fl->expires - jiffies) / HZ;
501 freq->flr_linger = sfl->fl->linger / HZ;
502
503 spin_unlock_bh(&ip6_fl_lock);
504 rcu_read_unlock_bh();
505 return 0;
506 }
507 }
508 rcu_read_unlock_bh();
509
510 return -ENOENT;
511}
512
1da177e4
LT
513int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen)
514{
55205d40 515 int uninitialized_var(err);
60e8fbc4 516 struct net *net = sock_net(sk);
1da177e4
LT
517 struct ipv6_pinfo *np = inet6_sk(sk);
518 struct in6_flowlabel_req freq;
67ba4152 519 struct ipv6_fl_socklist *sfl1 = NULL;
7f0e44ac
ED
520 struct ipv6_fl_socklist *sfl;
521 struct ipv6_fl_socklist __rcu **sflp;
78c2e502
PE
522 struct ip6_flowlabel *fl, *fl1 = NULL;
523
1da177e4
LT
524
525 if (optlen < sizeof(freq))
526 return -EINVAL;
527
528 if (copy_from_user(&freq, optval, sizeof(freq)))
529 return -EFAULT;
530
531 switch (freq.flr_action) {
532 case IPV6_FL_A_PUT:
df3687ff
FF
533 if (freq.flr_flags & IPV6_FL_F_REFLECT) {
534 if (sk->sk_protocol != IPPROTO_TCP)
535 return -ENOPROTOOPT;
536 if (!np->repflow)
537 return -ESRCH;
538 np->flow_label = 0;
539 np->repflow = 0;
540 return 0;
541 }
18367681
YH
542 spin_lock_bh(&ip6_sk_fl_lock);
543 for (sflp = &np->ipv6_fl_list;
67ba4152 544 (sfl = rcu_dereference(*sflp)) != NULL;
18367681 545 sflp = &sfl->next) {
1da177e4
LT
546 if (sfl->fl->label == freq.flr_label) {
547 if (freq.flr_label == (np->flow_label&IPV6_FLOWLABEL_MASK))
548 np->flow_label &= ~IPV6_FLOWLABEL_MASK;
18367681
YH
549 *sflp = rcu_dereference(sfl->next);
550 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4 551 fl_release(sfl->fl);
18367681 552 kfree_rcu(sfl, rcu);
1da177e4
LT
553 return 0;
554 }
555 }
18367681 556 spin_unlock_bh(&ip6_sk_fl_lock);
1da177e4
LT
557 return -ESRCH;
558
559 case IPV6_FL_A_RENEW:
18367681
YH
560 rcu_read_lock_bh();
561 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
562 if (sfl->fl->label == freq.flr_label) {
563 err = fl6_renew(sfl->fl, freq.flr_linger, freq.flr_expires);
18367681 564 rcu_read_unlock_bh();
1da177e4
LT
565 return err;
566 }
567 }
18367681 568 rcu_read_unlock_bh();
1da177e4 569
af31f412
EB
570 if (freq.flr_share == IPV6_FL_S_NONE &&
571 ns_capable(net->user_ns, CAP_NET_ADMIN)) {
60e8fbc4 572 fl = fl_lookup(net, freq.flr_label);
1da177e4
LT
573 if (fl) {
574 err = fl6_renew(fl, freq.flr_linger, freq.flr_expires);
575 fl_release(fl);
576 return err;
577 }
578 }
579 return -ESRCH;
580
581 case IPV6_FL_A_GET:
df3687ff 582 if (freq.flr_flags & IPV6_FL_F_REFLECT) {
6444f72b
FF
583 struct net *net = sock_net(sk);
584 if (net->ipv6.sysctl.flowlabel_consistency) {
585 net_info_ratelimited("Can not set IPV6_FL_F_REFLECT if flowlabel_consistency sysctl is enable\n");
586 return -EPERM;
587 }
588
df3687ff
FF
589 if (sk->sk_protocol != IPPROTO_TCP)
590 return -ENOPROTOOPT;
6444f72b 591
df3687ff
FF
592 np->repflow = 1;
593 return 0;
594 }
595
1da177e4
LT
596 if (freq.flr_label & ~IPV6_FLOWLABEL_MASK)
597 return -EINVAL;
598
ec0506db 599 fl = fl_create(net, sk, &freq, optval, optlen, &err);
1da177e4
LT
600 if (fl == NULL)
601 return err;
602 sfl1 = kmalloc(sizeof(*sfl1), GFP_KERNEL);
603
604 if (freq.flr_label) {
1da177e4 605 err = -EEXIST;
18367681
YH
606 rcu_read_lock_bh();
607 for_each_sk_fl_rcu(np, sfl) {
1da177e4
LT
608 if (sfl->fl->label == freq.flr_label) {
609 if (freq.flr_flags&IPV6_FL_F_EXCL) {
18367681 610 rcu_read_unlock_bh();
1da177e4
LT
611 goto done;
612 }
613 fl1 = sfl->fl;
4ea6a804 614 atomic_inc(&fl1->users);
1da177e4
LT
615 break;
616 }
617 }
18367681 618 rcu_read_unlock_bh();
1da177e4
LT
619
620 if (fl1 == NULL)
60e8fbc4 621 fl1 = fl_lookup(net, freq.flr_label);
1da177e4 622 if (fl1) {
78c2e502 623recheck:
1da177e4
LT
624 err = -EEXIST;
625 if (freq.flr_flags&IPV6_FL_F_EXCL)
626 goto release;
627 err = -EPERM;
628 if (fl1->share == IPV6_FL_S_EXCL ||
629 fl1->share != fl->share ||
4f82f457
EB
630 ((fl1->share == IPV6_FL_S_PROCESS) &&
631 (fl1->owner.pid == fl->owner.pid)) ||
632 ((fl1->share == IPV6_FL_S_USER) &&
633 uid_eq(fl1->owner.uid, fl->owner.uid)))
1da177e4
LT
634 goto release;
635
1da177e4
LT
636 err = -ENOMEM;
637 if (sfl1 == NULL)
638 goto release;
639 if (fl->linger > fl1->linger)
640 fl1->linger = fl->linger;
641 if ((long)(fl->expires - fl1->expires) > 0)
642 fl1->expires = fl->expires;
04028045 643 fl_link(np, sfl1, fl1);
1da177e4
LT
644 fl_free(fl);
645 return 0;
646
647release:
648 fl_release(fl1);
649 goto done;
650 }
651 }
652 err = -ENOENT;
653 if (!(freq.flr_flags&IPV6_FL_F_CREATE))
654 goto done;
655
656 err = -ENOMEM;
657 if (sfl1 == NULL || (err = mem_check(sk)) != 0)
658 goto done;
659
60e8fbc4 660 fl1 = fl_intern(net, fl, freq.flr_label);
78c2e502
PE
661 if (fl1 != NULL)
662 goto recheck;
1da177e4 663
6c94d361
DM
664 if (!freq.flr_label) {
665 if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
666 &fl->label, sizeof(fl->label))) {
667 /* Intentionally ignore fault. */
668 }
669 }
1da177e4 670
04028045 671 fl_link(np, sfl1, fl);
1da177e4
LT
672 return 0;
673
674 default:
675 return -EINVAL;
676 }
677
678done:
679 fl_free(fl);
680 kfree(sfl1);
681 return err;
682}
683
684#ifdef CONFIG_PROC_FS
685
686struct ip6fl_iter_state {
5983a3df 687 struct seq_net_private p;
4f82f457 688 struct pid_namespace *pid_ns;
1da177e4
LT
689 int bucket;
690};
691
692#define ip6fl_seq_private(seq) ((struct ip6fl_iter_state *)(seq)->private)
693
694static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq)
695{
696 struct ip6_flowlabel *fl = NULL;
697 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
5983a3df 698 struct net *net = seq_file_net(seq);
1da177e4
LT
699
700 for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) {
d3aedd5e
YH
701 for_each_fl_rcu(state->bucket, fl) {
702 if (net_eq(fl->fl_net, net))
703 goto out;
704 }
1da177e4 705 }
d3aedd5e
YH
706 fl = NULL;
707out:
1da177e4
LT
708 return fl;
709}
710
711static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl)
712{
713 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
5983a3df 714 struct net *net = seq_file_net(seq);
1da177e4 715
d3aedd5e
YH
716 for_each_fl_continue_rcu(fl) {
717 if (net_eq(fl->fl_net, net))
718 goto out;
719 }
720
5983a3df 721try_again:
d3aedd5e
YH
722 if (++state->bucket <= FL_HASH_MASK) {
723 for_each_fl_rcu(state->bucket, fl) {
724 if (net_eq(fl->fl_net, net))
725 goto out;
726 }
727 goto try_again;
1da177e4 728 }
d3aedd5e
YH
729 fl = NULL;
730
731out:
1da177e4
LT
732 return fl;
733}
734
735static struct ip6_flowlabel *ip6fl_get_idx(struct seq_file *seq, loff_t pos)
736{
737 struct ip6_flowlabel *fl = ip6fl_get_first(seq);
738 if (fl)
739 while (pos && (fl = ip6fl_get_next(seq, fl)) != NULL)
740 --pos;
741 return pos ? NULL : fl;
742}
743
744static void *ip6fl_seq_start(struct seq_file *seq, loff_t *pos)
d3aedd5e 745 __acquires(RCU)
1da177e4 746{
d3aedd5e 747 rcu_read_lock_bh();
1da177e4
LT
748 return *pos ? ip6fl_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
749}
750
751static void *ip6fl_seq_next(struct seq_file *seq, void *v, loff_t *pos)
752{
753 struct ip6_flowlabel *fl;
754
755 if (v == SEQ_START_TOKEN)
756 fl = ip6fl_get_first(seq);
757 else
758 fl = ip6fl_get_next(seq, v);
759 ++*pos;
760 return fl;
761}
762
763static void ip6fl_seq_stop(struct seq_file *seq, void *v)
d3aedd5e 764 __releases(RCU)
1da177e4 765{
d3aedd5e 766 rcu_read_unlock_bh();
1da177e4
LT
767}
768
1b7c2dbc 769static int ip6fl_seq_show(struct seq_file *seq, void *v)
1da177e4 770{
4f82f457 771 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
1b7c2dbc
JM
772 if (v == SEQ_START_TOKEN)
773 seq_printf(seq, "%-5s %-1s %-6s %-6s %-6s %-8s %-32s %s\n",
774 "Label", "S", "Owner", "Users", "Linger", "Expires", "Dst", "Opt");
775 else {
776 struct ip6_flowlabel *fl = v;
1da177e4 777 seq_printf(seq,
4b7a4274 778 "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n",
95c96174 779 (unsigned int)ntohl(fl->label),
1da177e4 780 fl->share,
4f82f457
EB
781 ((fl->share == IPV6_FL_S_PROCESS) ?
782 pid_nr_ns(fl->owner.pid, state->pid_ns) :
783 ((fl->share == IPV6_FL_S_USER) ?
784 from_kuid_munged(seq_user_ns(seq), fl->owner.uid) :
785 0)),
1da177e4
LT
786 atomic_read(&fl->users),
787 fl->linger/HZ,
788 (long)(fl->expires - jiffies)/HZ,
b071195d 789 &fl->dst,
1da177e4 790 fl->opt ? fl->opt->opt_nflen : 0);
1da177e4 791 }
1da177e4
LT
792 return 0;
793}
794
56b3d975 795static const struct seq_operations ip6fl_seq_ops = {
1da177e4
LT
796 .start = ip6fl_seq_start,
797 .next = ip6fl_seq_next,
798 .stop = ip6fl_seq_stop,
799 .show = ip6fl_seq_show,
800};
801
802static int ip6fl_seq_open(struct inode *inode, struct file *file)
803{
4f82f457
EB
804 struct seq_file *seq;
805 struct ip6fl_iter_state *state;
806 int err;
807
808 err = seq_open_net(inode, file, &ip6fl_seq_ops,
809 sizeof(struct ip6fl_iter_state));
810
811 if (!err) {
812 seq = file->private_data;
813 state = ip6fl_seq_private(seq);
814 rcu_read_lock();
815 state->pid_ns = get_pid_ns(task_active_pid_ns(current));
816 rcu_read_unlock();
817 }
818 return err;
819}
820
821static int ip6fl_seq_release(struct inode *inode, struct file *file)
822{
823 struct seq_file *seq = file->private_data;
824 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
825 put_pid_ns(state->pid_ns);
826 return seq_release_net(inode, file);
1da177e4
LT
827}
828
9a32144e 829static const struct file_operations ip6fl_seq_fops = {
1da177e4
LT
830 .owner = THIS_MODULE,
831 .open = ip6fl_seq_open,
832 .read = seq_read,
833 .llseek = seq_lseek,
4f82f457 834 .release = ip6fl_seq_release,
1da177e4 835};
1da177e4 836
2c8c1e72 837static int __net_init ip6_flowlabel_proc_init(struct net *net)
0a3e78ac 838{
d4beaa66
G
839 if (!proc_create("ip6_flowlabel", S_IRUGO, net->proc_net,
840 &ip6fl_seq_fops))
0a3e78ac
DL
841 return -ENOMEM;
842 return 0;
843}
1da177e4 844
2c8c1e72 845static void __net_exit ip6_flowlabel_proc_fini(struct net *net)
1da177e4 846{
ece31ffd 847 remove_proc_entry("ip6_flowlabel", net->proc_net);
0a3e78ac
DL
848}
849#else
850static inline int ip6_flowlabel_proc_init(struct net *net)
851{
852 return 0;
853}
854static inline void ip6_flowlabel_proc_fini(struct net *net)
855{
0a3e78ac 856}
1da177e4 857#endif
0a3e78ac 858
2c8c1e72 859static void __net_exit ip6_flowlabel_net_exit(struct net *net)
60e8fbc4
BT
860{
861 ip6_fl_purge(net);
5983a3df 862 ip6_flowlabel_proc_fini(net);
60e8fbc4
BT
863}
864
865static struct pernet_operations ip6_flowlabel_net_ops = {
5983a3df 866 .init = ip6_flowlabel_proc_init,
60e8fbc4
BT
867 .exit = ip6_flowlabel_net_exit,
868};
869
0a3e78ac
DL
870int ip6_flowlabel_init(void)
871{
5983a3df 872 return register_pernet_subsys(&ip6_flowlabel_net_ops);
1da177e4
LT
873}
874
875void ip6_flowlabel_cleanup(void)
876{
877 del_timer(&ip6_fl_gc_timer);
60e8fbc4 878 unregister_pernet_subsys(&ip6_flowlabel_net_ops);
1da177e4 879}
This page took 0.782409 seconds and 5 git commands to generate.