Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Randy Dunlap | 4fc268d | 2006-01-11 12:17:47 -0800 | [diff] [blame] | 12 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/in6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/proc_fs.h> |
| 20 | #include <linux/seq_file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Paul Gortmaker | bc3b2d7 | 2011-07-15 11:47:34 -0400 | [diff] [blame] | 22 | #include <linux/export.h> |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 23 | #include <linux/pid_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Eric W. Biederman | 457c4cb | 2007-09-12 12:01:34 +0200 | [diff] [blame] | 25 | #include <net/net_namespace.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <net/sock.h> |
| 27 | |
| 28 | #include <net/ipv6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <net/rawv6.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Florent Fourcot | 53b4710 | 2013-11-07 17:53:13 +0100 | [diff] [blame] | 37 | #define FL_MAX_LINGER 150 /* Maximal linger timeout */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
| 46 | static atomic_t fl_size = ATOMIC_INIT(0); |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 47 | static struct ip6_flowlabel __rcu *fl_ht[FL_HASH_MASK+1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | static void ip6_fl_gc(unsigned long dummy); |
Ingo Molnar | 8d06afa | 2005-09-09 13:10:40 -0700 | [diff] [blame] | 50 | static DEFINE_TIMER(ip6_fl_gc_timer, ip6_fl_gc, 0, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | /* FL hash table lock: it protects only of GC */ |
| 53 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 54 | static DEFINE_SPINLOCK(ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
| 56 | /* Big socket sock */ |
| 57 | |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 58 | static DEFINE_SPINLOCK(ip6_sk_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 60 | #define for_each_fl_rcu(hash, fl) \ |
Amerigo Wang | 6a98dcf | 2013-02-07 15:52:40 +0000 | [diff] [blame] | 61 | for (fl = rcu_dereference_bh(fl_ht[(hash)]); \ |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 62 | fl != NULL; \ |
Amerigo Wang | 6a98dcf | 2013-02-07 15:52:40 +0000 | [diff] [blame] | 63 | fl = rcu_dereference_bh(fl->next)) |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 64 | #define for_each_fl_continue_rcu(fl) \ |
Amerigo Wang | 6a98dcf | 2013-02-07 15:52:40 +0000 | [diff] [blame] | 65 | for (fl = rcu_dereference_bh(fl->next); \ |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 66 | fl != NULL; \ |
Amerigo Wang | 6a98dcf | 2013-02-07 15:52:40 +0000 | [diff] [blame] | 67 | fl = rcu_dereference_bh(fl->next)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 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 | |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 74 | static inline struct ip6_flowlabel *__fl_lookup(struct net *net, __be32 label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | { |
| 76 | struct ip6_flowlabel *fl; |
| 77 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 78 | for_each_fl_rcu(FL_HASH(label), fl) { |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 79 | if (fl->label == label && net_eq(fl->fl_net, net)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | return fl; |
| 81 | } |
| 82 | return NULL; |
| 83 | } |
| 84 | |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 85 | static struct ip6_flowlabel *fl_lookup(struct net *net, __be32 label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
| 87 | struct ip6_flowlabel *fl; |
| 88 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 89 | rcu_read_lock_bh(); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 90 | fl = __fl_lookup(net, label); |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 91 | if (fl && !atomic_inc_not_zero(&fl->users)) |
| 92 | fl = NULL; |
| 93 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | return fl; |
| 95 | } |
| 96 | |
Eric Dumazet | bf533f4 | 2019-04-27 16:49:06 -0700 | [diff] [blame] | 97 | static void fl_free_rcu(struct rcu_head *head) |
| 98 | { |
| 99 | struct ip6_flowlabel *fl = container_of(head, struct ip6_flowlabel, rcu); |
| 100 | |
| 101 | if (fl->share == IPV6_FL_S_PROCESS) |
| 102 | put_pid(fl->owner.pid); |
| 103 | kfree(fl->opt); |
| 104 | kfree(fl); |
| 105 | } |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | static void fl_free(struct ip6_flowlabel *fl) |
| 109 | { |
Eric Dumazet | bf533f4 | 2019-04-27 16:49:06 -0700 | [diff] [blame] | 110 | if (fl) |
| 111 | call_rcu(&fl->rcu, fl_free_rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | static void fl_release(struct ip6_flowlabel *fl) |
| 115 | { |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 116 | spin_lock_bh(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | fl->lastuse = jiffies; |
| 119 | if (atomic_dec_and_test(&fl->users)) { |
| 120 | unsigned long ttd = fl->lastuse + fl->linger; |
| 121 | if (time_after(ttd, fl->expires)) |
| 122 | fl->expires = ttd; |
| 123 | ttd = fl->expires; |
| 124 | if (fl->opt && fl->share == IPV6_FL_S_EXCL) { |
| 125 | struct ipv6_txoptions *opt = fl->opt; |
| 126 | fl->opt = NULL; |
| 127 | kfree(opt); |
| 128 | } |
| 129 | if (!timer_pending(&ip6_fl_gc_timer) || |
| 130 | time_after(ip6_fl_gc_timer.expires, ttd)) |
| 131 | mod_timer(&ip6_fl_gc_timer, ttd); |
| 132 | } |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 133 | spin_unlock_bh(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | static void ip6_fl_gc(unsigned long dummy) |
| 137 | { |
| 138 | int i; |
| 139 | unsigned long now = jiffies; |
| 140 | unsigned long sched = 0; |
| 141 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 142 | spin_lock(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 144 | for (i = 0; i <= FL_HASH_MASK; i++) { |
Eric Dumazet | 7f0e44a | 2013-03-07 04:20:32 +0000 | [diff] [blame] | 145 | struct ip6_flowlabel *fl; |
| 146 | struct ip6_flowlabel __rcu **flp; |
| 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | flp = &fl_ht[i]; |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 149 | while ((fl = rcu_dereference_protected(*flp, |
| 150 | lockdep_is_held(&ip6_fl_lock))) != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | if (atomic_read(&fl->users) == 0) { |
| 152 | unsigned long ttd = fl->lastuse + fl->linger; |
| 153 | if (time_after(ttd, fl->expires)) |
| 154 | fl->expires = ttd; |
| 155 | ttd = fl->expires; |
| 156 | if (time_after_eq(now, ttd)) { |
| 157 | *flp = fl->next; |
| 158 | fl_free(fl); |
| 159 | atomic_dec(&fl_size); |
| 160 | continue; |
| 161 | } |
| 162 | if (!sched || time_before(ttd, sched)) |
| 163 | sched = ttd; |
| 164 | } |
| 165 | flp = &fl->next; |
| 166 | } |
| 167 | } |
| 168 | if (!sched && atomic_read(&fl_size)) |
| 169 | sched = now + FL_MAX_LINGER; |
| 170 | if (sched) { |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 171 | mod_timer(&ip6_fl_gc_timer, sched); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | } |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 173 | spin_unlock(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 176 | static void __net_exit ip6_fl_purge(struct net *net) |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 177 | { |
| 178 | int i; |
| 179 | |
Jan Stancek | 4762fb9 | 2015-02-11 14:06:23 +0100 | [diff] [blame] | 180 | spin_lock_bh(&ip6_fl_lock); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 181 | for (i = 0; i <= FL_HASH_MASK; i++) { |
Eric Dumazet | 7f0e44a | 2013-03-07 04:20:32 +0000 | [diff] [blame] | 182 | struct ip6_flowlabel *fl; |
| 183 | struct ip6_flowlabel __rcu **flp; |
| 184 | |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 185 | flp = &fl_ht[i]; |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 186 | while ((fl = rcu_dereference_protected(*flp, |
| 187 | lockdep_is_held(&ip6_fl_lock))) != NULL) { |
Octavian Purdila | 09ad9bc | 2009-11-25 15:14:13 -0800 | [diff] [blame] | 188 | if (net_eq(fl->fl_net, net) && |
| 189 | atomic_read(&fl->users) == 0) { |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 190 | *flp = fl->next; |
| 191 | fl_free(fl); |
| 192 | atomic_dec(&fl_size); |
| 193 | continue; |
| 194 | } |
| 195 | flp = &fl->next; |
| 196 | } |
| 197 | } |
Jan Stancek | 4762fb9 | 2015-02-11 14:06:23 +0100 | [diff] [blame] | 198 | spin_unlock_bh(&ip6_fl_lock); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | static struct ip6_flowlabel *fl_intern(struct net *net, |
| 202 | struct ip6_flowlabel *fl, __be32 label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | { |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 204 | struct ip6_flowlabel *lfl; |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | fl->label = label & IPV6_FLOWLABEL_MASK; |
| 207 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 208 | spin_lock_bh(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | if (label == 0) { |
| 210 | for (;;) { |
Aruna-Hewapathirane | 63862b5 | 2014-01-11 07:15:59 -0500 | [diff] [blame] | 211 | fl->label = htonl(prandom_u32())&IPV6_FLOWLABEL_MASK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | if (fl->label) { |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 213 | lfl = __fl_lookup(net, fl->label); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 214 | if (!lfl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | break; |
| 216 | } |
| 217 | } |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 218 | } else { |
| 219 | /* |
| 220 | * we dropper the ip6_fl_lock, so this entry could reappear |
| 221 | * and we need to recheck with it. |
| 222 | * |
| 223 | * OTOH no need to search the active socket first, like it is |
| 224 | * done in ipv6_flowlabel_opt - sock is locked, so new entry |
| 225 | * with the same label can only appear on another sock |
| 226 | */ |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 227 | lfl = __fl_lookup(net, fl->label); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 228 | if (lfl) { |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 229 | atomic_inc(&lfl->users); |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 230 | spin_unlock_bh(&ip6_fl_lock); |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 231 | return lfl; |
| 232 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
| 235 | fl->lastuse = jiffies; |
| 236 | fl->next = fl_ht[FL_HASH(fl->label)]; |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 237 | rcu_assign_pointer(fl_ht[FL_HASH(fl->label)], fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | atomic_inc(&fl_size); |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 239 | spin_unlock_bh(&ip6_fl_lock); |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 240 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | |
| 244 | |
| 245 | /* Socket flowlabel lists */ |
| 246 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 247 | struct ip6_flowlabel *fl6_sock_lookup(struct sock *sk, __be32 label) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | { |
| 249 | struct ipv6_fl_socklist *sfl; |
| 250 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 251 | |
| 252 | label &= IPV6_FLOWLABEL_MASK; |
| 253 | |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 254 | rcu_read_lock_bh(); |
| 255 | for_each_sk_fl_rcu(np, sfl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | struct ip6_flowlabel *fl = sfl->fl; |
Eric Dumazet | 90612f8 | 2019-06-06 14:32:34 -0700 | [diff] [blame] | 257 | |
| 258 | if (fl->label == label && atomic_inc_not_zero(&fl->users)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | fl->lastuse = jiffies; |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 260 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return fl; |
| 262 | } |
| 263 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 264 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | return NULL; |
| 266 | } |
Arnaldo Carvalho de Melo | 3cf3dc6 | 2005-12-13 23:23:20 -0800 | [diff] [blame] | 267 | EXPORT_SYMBOL_GPL(fl6_sock_lookup); |
| 268 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | void fl6_free_socklist(struct sock *sk) |
| 270 | { |
| 271 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 272 | struct ipv6_fl_socklist *sfl; |
| 273 | |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 274 | if (!rcu_access_pointer(np->ipv6_fl_list)) |
YOSHIFUJI Hideaki / 吉藤英明 | f256dc5 | 2013-01-30 09:26:42 +0000 | [diff] [blame] | 275 | return; |
| 276 | |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 277 | spin_lock_bh(&ip6_sk_fl_lock); |
| 278 | while ((sfl = rcu_dereference_protected(np->ipv6_fl_list, |
| 279 | lockdep_is_held(&ip6_sk_fl_lock))) != NULL) { |
| 280 | np->ipv6_fl_list = sfl->next; |
| 281 | spin_unlock_bh(&ip6_sk_fl_lock); |
YOSHIFUJI Hideaki / 吉藤英明 | f256dc5 | 2013-01-30 09:26:42 +0000 | [diff] [blame] | 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | fl_release(sfl->fl); |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 284 | kfree_rcu(sfl, rcu); |
| 285 | |
| 286 | spin_lock_bh(&ip6_sk_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 288 | spin_unlock_bh(&ip6_sk_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | /* Service routines */ |
| 292 | |
| 293 | |
| 294 | /* |
| 295 | It is the only difficult place. flowlabel enforces equal headers |
| 296 | before and including routing header, however user may supply options |
| 297 | following rthdr. |
| 298 | */ |
| 299 | |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 300 | struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions *opt_space, |
| 301 | struct ip6_flowlabel *fl, |
| 302 | struct ipv6_txoptions *fopt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 304 | struct ipv6_txoptions *fl_opt = fl->opt; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 305 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 306 | if (!fopt || fopt->opt_flen == 0) |
YOSHIFUJI Hideaki | df9890c | 2005-11-20 12:23:18 +0900 | [diff] [blame] | 307 | return fl_opt; |
YOSHIFUJI Hideaki | 1ab1457 | 2007-02-09 23:24:49 +0900 | [diff] [blame] | 308 | |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 309 | if (fl_opt) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | opt_space->hopopt = fl_opt->hopopt; |
YOSHIFUJI Hideaki | df9890c | 2005-11-20 12:23:18 +0900 | [diff] [blame] | 311 | opt_space->dst0opt = fl_opt->dst0opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | opt_space->srcrt = fl_opt->srcrt; |
| 313 | opt_space->opt_nflen = fl_opt->opt_nflen; |
| 314 | } else { |
| 315 | if (fopt->opt_nflen == 0) |
| 316 | return fopt; |
| 317 | opt_space->hopopt = NULL; |
| 318 | opt_space->dst0opt = NULL; |
| 319 | opt_space->srcrt = NULL; |
| 320 | opt_space->opt_nflen = 0; |
| 321 | } |
| 322 | opt_space->dst1opt = fopt->dst1opt; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | opt_space->opt_flen = fopt->opt_flen; |
Eric Dumazet | 28fa583 | 2017-10-21 12:26:23 -0700 | [diff] [blame] | 324 | opt_space->tot_len = fopt->tot_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | return opt_space; |
| 326 | } |
Chris Elston | a495f83 | 2012-04-29 21:48:53 +0000 | [diff] [blame] | 327 | EXPORT_SYMBOL_GPL(fl6_merge_options); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | static unsigned long check_linger(unsigned long ttl) |
| 330 | { |
| 331 | if (ttl < FL_MIN_LINGER) |
| 332 | return FL_MIN_LINGER*HZ; |
| 333 | if (ttl > FL_MAX_LINGER && !capable(CAP_NET_ADMIN)) |
| 334 | return 0; |
| 335 | return ttl*HZ; |
| 336 | } |
| 337 | |
| 338 | static int fl6_renew(struct ip6_flowlabel *fl, unsigned long linger, unsigned long expires) |
| 339 | { |
| 340 | linger = check_linger(linger); |
| 341 | if (!linger) |
| 342 | return -EPERM; |
| 343 | expires = check_linger(expires); |
| 344 | if (!expires) |
| 345 | return -EPERM; |
Florent Fourcot | 394055f | 2013-11-07 17:53:14 +0100 | [diff] [blame] | 346 | |
| 347 | spin_lock_bh(&ip6_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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; |
Florent Fourcot | 394055f | 2013-11-07 17:53:14 +0100 | [diff] [blame] | 355 | spin_unlock_bh(&ip6_fl_lock); |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | return 0; |
| 358 | } |
| 359 | |
| 360 | static struct ip6_flowlabel * |
Maciej Żenczykowski | ec0506d | 2011-08-28 12:35:31 +0000 | [diff] [blame] | 361 | fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq, |
| 362 | char __user *optval, int optlen, int *err_p) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
David S. Miller | 684de40 | 2009-02-06 00:49:55 -0800 | [diff] [blame] | 364 | struct ip6_flowlabel *fl = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | int olen; |
| 366 | int addr_type; |
| 367 | int err; |
| 368 | |
David S. Miller | 684de40 | 2009-02-06 00:49:55 -0800 | [diff] [blame] | 369 | olen = optlen - CMSG_ALIGN(sizeof(*freq)); |
| 370 | err = -EINVAL; |
| 371 | if (olen > 64 * 1024) |
| 372 | goto done; |
| 373 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | err = -ENOMEM; |
Ingo Oeser | 0c600ed | 2006-03-20 23:01:32 -0800 | [diff] [blame] | 375 | fl = kzalloc(sizeof(*fl), GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 376 | if (!fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | if (olen > 0) { |
| 380 | struct msghdr msg; |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 381 | struct flowi6 flowi6; |
Soheil Hassas Yeganeh | ad1e46a | 2016-04-02 23:08:11 -0400 | [diff] [blame] | 382 | struct sockcm_cookie sockc_junk; |
Wei Wang | 26879da | 2016-05-02 21:40:07 -0700 | [diff] [blame] | 383 | struct ipcm6_cookie ipc6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | |
| 385 | err = -ENOMEM; |
| 386 | fl->opt = kmalloc(sizeof(*fl->opt) + olen, GFP_KERNEL); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 387 | if (!fl->opt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | goto done; |
| 389 | |
| 390 | memset(fl->opt, 0, sizeof(*fl->opt)); |
| 391 | fl->opt->tot_len = sizeof(*fl->opt) + olen; |
| 392 | err = -EFAULT; |
| 393 | if (copy_from_user(fl->opt+1, optval+CMSG_ALIGN(sizeof(*freq)), olen)) |
| 394 | goto done; |
| 395 | |
| 396 | msg.msg_controllen = olen; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 397 | msg.msg_control = (void *)(fl->opt+1); |
David S. Miller | 4c9483b | 2011-03-12 16:22:43 -0500 | [diff] [blame] | 398 | memset(&flowi6, 0, sizeof(flowi6)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Wei Wang | 26879da | 2016-05-02 21:40:07 -0700 | [diff] [blame] | 400 | ipc6.opt = fl->opt; |
| 401 | err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, &ipc6, &sockc_junk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | if (err) |
| 403 | goto done; |
| 404 | err = -EINVAL; |
| 405 | if (fl->opt->opt_flen) |
| 406 | goto done; |
| 407 | if (fl->opt->opt_nflen == 0) { |
| 408 | kfree(fl->opt); |
| 409 | fl->opt = NULL; |
| 410 | } |
| 411 | } |
| 412 | |
Eric W. Biederman | efd7ef1 | 2015-03-11 23:04:08 -0500 | [diff] [blame] | 413 | fl->fl_net = net; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | fl->expires = jiffies; |
| 415 | err = fl6_renew(fl, freq->flr_linger, freq->flr_expires); |
| 416 | if (err) |
| 417 | goto done; |
| 418 | fl->share = freq->flr_share; |
| 419 | addr_type = ipv6_addr_type(&freq->flr_dst); |
Joe Perches | 3570021 | 2009-11-24 14:52:52 -0800 | [diff] [blame] | 420 | if ((addr_type & IPV6_ADDR_MAPPED) || |
| 421 | addr_type == IPV6_ADDR_ANY) { |
James Morris | c6817e4 | 2006-10-30 18:56:06 -0800 | [diff] [blame] | 422 | err = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 423 | goto done; |
James Morris | c6817e4 | 2006-10-30 18:56:06 -0800 | [diff] [blame] | 424 | } |
Alexey Dobriyan | 4e3fd7a | 2011-11-21 03:39:03 +0000 | [diff] [blame] | 425 | fl->dst = freq->flr_dst; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | atomic_set(&fl->users, 1); |
| 427 | switch (fl->share) { |
| 428 | case IPV6_FL_S_EXCL: |
| 429 | case IPV6_FL_S_ANY: |
| 430 | break; |
| 431 | case IPV6_FL_S_PROCESS: |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 432 | fl->owner.pid = get_task_pid(current, PIDTYPE_PID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | break; |
| 434 | case IPV6_FL_S_USER: |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 435 | fl->owner.uid = current_euid(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | break; |
| 437 | default: |
| 438 | err = -EINVAL; |
| 439 | goto done; |
| 440 | } |
| 441 | return fl; |
| 442 | |
| 443 | done: |
| 444 | fl_free(fl); |
| 445 | *err_p = err; |
| 446 | return NULL; |
| 447 | } |
| 448 | |
| 449 | static int mem_check(struct sock *sk) |
| 450 | { |
| 451 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 452 | struct ipv6_fl_socklist *sfl; |
| 453 | int room = FL_MAX_SIZE - atomic_read(&fl_size); |
| 454 | int count = 0; |
| 455 | |
| 456 | if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK) |
| 457 | return 0; |
| 458 | |
Hannes Frederic Sowa | f8c31c8 | 2013-11-08 19:26:21 +0100 | [diff] [blame] | 459 | rcu_read_lock_bh(); |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 460 | for_each_sk_fl_rcu(np, sfl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | count++; |
Hannes Frederic Sowa | f8c31c8 | 2013-11-08 19:26:21 +0100 | [diff] [blame] | 462 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | |
| 464 | if (room <= 0 || |
| 465 | ((count >= FL_MAX_PER_SOCK || |
Joe Perches | 3570021 | 2009-11-24 14:52:52 -0800 | [diff] [blame] | 466 | (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) && |
| 467 | !capable(CAP_NET_ADMIN))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | return -ENOBUFS; |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Pavel Emelyanov | 0402804 | 2007-10-18 05:14:58 -0700 | [diff] [blame] | 473 | static inline void fl_link(struct ipv6_pinfo *np, struct ipv6_fl_socklist *sfl, |
| 474 | struct ip6_flowlabel *fl) |
| 475 | { |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 476 | spin_lock_bh(&ip6_sk_fl_lock); |
Pavel Emelyanov | 0402804 | 2007-10-18 05:14:58 -0700 | [diff] [blame] | 477 | sfl->fl = fl; |
| 478 | sfl->next = np->ipv6_fl_list; |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 479 | rcu_assign_pointer(np->ipv6_fl_list, sfl); |
| 480 | spin_unlock_bh(&ip6_sk_fl_lock); |
Pavel Emelyanov | 0402804 | 2007-10-18 05:14:58 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Florent Fourcot | 46e5f40 | 2014-01-17 17:15:04 +0100 | [diff] [blame] | 483 | int ipv6_flowlabel_opt_get(struct sock *sk, struct in6_flowlabel_req *freq, |
| 484 | int flags) |
Florent Fourcot | 3fdfa5f | 2013-11-07 17:53:12 +0100 | [diff] [blame] | 485 | { |
| 486 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 487 | struct ipv6_fl_socklist *sfl; |
| 488 | |
Florent Fourcot | 46e5f40 | 2014-01-17 17:15:04 +0100 | [diff] [blame] | 489 | if (flags & IPV6_FL_F_REMOTE) { |
| 490 | freq->flr_label = np->rcv_flowinfo & IPV6_FLOWLABEL_MASK; |
| 491 | return 0; |
| 492 | } |
| 493 | |
Florent Fourcot | df3687f | 2014-01-17 17:15:03 +0100 | [diff] [blame] | 494 | if (np->repflow) { |
| 495 | freq->flr_label = np->flow_label; |
| 496 | return 0; |
| 497 | } |
| 498 | |
Florent Fourcot | 3fdfa5f | 2013-11-07 17:53:12 +0100 | [diff] [blame] | 499 | rcu_read_lock_bh(); |
| 500 | |
| 501 | for_each_sk_fl_rcu(np, sfl) { |
| 502 | if (sfl->fl->label == (np->flow_label & IPV6_FLOWLABEL_MASK)) { |
| 503 | spin_lock_bh(&ip6_fl_lock); |
| 504 | freq->flr_label = sfl->fl->label; |
| 505 | freq->flr_dst = sfl->fl->dst; |
| 506 | freq->flr_share = sfl->fl->share; |
| 507 | freq->flr_expires = (sfl->fl->expires - jiffies) / HZ; |
| 508 | freq->flr_linger = sfl->fl->linger / HZ; |
| 509 | |
| 510 | spin_unlock_bh(&ip6_fl_lock); |
| 511 | rcu_read_unlock_bh(); |
| 512 | return 0; |
| 513 | } |
| 514 | } |
| 515 | rcu_read_unlock_bh(); |
| 516 | |
| 517 | return -ENOENT; |
| 518 | } |
| 519 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen) |
| 521 | { |
Ingo Molnar | 55205d4 | 2008-11-25 16:50:30 -0800 | [diff] [blame] | 522 | int uninitialized_var(err); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 523 | struct net *net = sock_net(sk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | struct ipv6_pinfo *np = inet6_sk(sk); |
| 525 | struct in6_flowlabel_req freq; |
Ian Morris | 67ba415 | 2014-08-24 21:53:10 +0100 | [diff] [blame] | 526 | struct ipv6_fl_socklist *sfl1 = NULL; |
Eric Dumazet | 7f0e44a | 2013-03-07 04:20:32 +0000 | [diff] [blame] | 527 | struct ipv6_fl_socklist *sfl; |
| 528 | struct ipv6_fl_socklist __rcu **sflp; |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 529 | struct ip6_flowlabel *fl, *fl1 = NULL; |
| 530 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
| 532 | if (optlen < sizeof(freq)) |
| 533 | return -EINVAL; |
| 534 | |
| 535 | if (copy_from_user(&freq, optval, sizeof(freq))) |
| 536 | return -EFAULT; |
| 537 | |
| 538 | switch (freq.flr_action) { |
| 539 | case IPV6_FL_A_PUT: |
Florent Fourcot | df3687f | 2014-01-17 17:15:03 +0100 | [diff] [blame] | 540 | if (freq.flr_flags & IPV6_FL_F_REFLECT) { |
| 541 | if (sk->sk_protocol != IPPROTO_TCP) |
| 542 | return -ENOPROTOOPT; |
| 543 | if (!np->repflow) |
| 544 | return -ESRCH; |
| 545 | np->flow_label = 0; |
| 546 | np->repflow = 0; |
| 547 | return 0; |
| 548 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 549 | spin_lock_bh(&ip6_sk_fl_lock); |
| 550 | for (sflp = &np->ipv6_fl_list; |
Eric Dumazet | 44c3d0c | 2016-02-02 17:55:01 -0800 | [diff] [blame] | 551 | (sfl = rcu_dereference_protected(*sflp, |
| 552 | lockdep_is_held(&ip6_sk_fl_lock))) != NULL; |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 553 | sflp = &sfl->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | if (sfl->fl->label == freq.flr_label) { |
| 555 | if (freq.flr_label == (np->flow_label&IPV6_FLOWLABEL_MASK)) |
| 556 | np->flow_label &= ~IPV6_FLOWLABEL_MASK; |
Eric Dumazet | 44c3d0c | 2016-02-02 17:55:01 -0800 | [diff] [blame] | 557 | *sflp = sfl->next; |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 558 | spin_unlock_bh(&ip6_sk_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | fl_release(sfl->fl); |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 560 | kfree_rcu(sfl, rcu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | return 0; |
| 562 | } |
| 563 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 564 | spin_unlock_bh(&ip6_sk_fl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | return -ESRCH; |
| 566 | |
| 567 | case IPV6_FL_A_RENEW: |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 568 | rcu_read_lock_bh(); |
| 569 | for_each_sk_fl_rcu(np, sfl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | if (sfl->fl->label == freq.flr_label) { |
| 571 | err = fl6_renew(sfl->fl, freq.flr_linger, freq.flr_expires); |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 572 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | return err; |
| 574 | } |
| 575 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 576 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Eric W. Biederman | af31f41 | 2012-11-16 03:03:06 +0000 | [diff] [blame] | 578 | if (freq.flr_share == IPV6_FL_S_NONE && |
| 579 | ns_capable(net->user_ns, CAP_NET_ADMIN)) { |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 580 | fl = fl_lookup(net, freq.flr_label); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | if (fl) { |
| 582 | err = fl6_renew(fl, freq.flr_linger, freq.flr_expires); |
| 583 | fl_release(fl); |
| 584 | return err; |
| 585 | } |
| 586 | } |
| 587 | return -ESRCH; |
| 588 | |
| 589 | case IPV6_FL_A_GET: |
Florent Fourcot | df3687f | 2014-01-17 17:15:03 +0100 | [diff] [blame] | 590 | if (freq.flr_flags & IPV6_FL_F_REFLECT) { |
Florent Fourcot | 6444f72 | 2014-01-17 17:15:05 +0100 | [diff] [blame] | 591 | struct net *net = sock_net(sk); |
| 592 | if (net->ipv6.sysctl.flowlabel_consistency) { |
| 593 | net_info_ratelimited("Can not set IPV6_FL_F_REFLECT if flowlabel_consistency sysctl is enable\n"); |
| 594 | return -EPERM; |
| 595 | } |
| 596 | |
Florent Fourcot | df3687f | 2014-01-17 17:15:03 +0100 | [diff] [blame] | 597 | if (sk->sk_protocol != IPPROTO_TCP) |
| 598 | return -ENOPROTOOPT; |
Florent Fourcot | 6444f72 | 2014-01-17 17:15:05 +0100 | [diff] [blame] | 599 | |
Florent Fourcot | df3687f | 2014-01-17 17:15:03 +0100 | [diff] [blame] | 600 | np->repflow = 1; |
| 601 | return 0; |
| 602 | } |
| 603 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 | if (freq.flr_label & ~IPV6_FLOWLABEL_MASK) |
| 605 | return -EINVAL; |
| 606 | |
Tom Herbert | 82a584b | 2015-04-29 15:33:21 -0700 | [diff] [blame] | 607 | if (net->ipv6.sysctl.flowlabel_state_ranges && |
| 608 | (freq.flr_label & IPV6_FLOWLABEL_STATELESS_FLAG)) |
| 609 | return -ERANGE; |
| 610 | |
Maciej Żenczykowski | ec0506d | 2011-08-28 12:35:31 +0000 | [diff] [blame] | 611 | fl = fl_create(net, sk, &freq, optval, optlen, &err); |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 612 | if (!fl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | return err; |
| 614 | sfl1 = kmalloc(sizeof(*sfl1), GFP_KERNEL); |
| 615 | |
| 616 | if (freq.flr_label) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | err = -EEXIST; |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 618 | rcu_read_lock_bh(); |
| 619 | for_each_sk_fl_rcu(np, sfl) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | if (sfl->fl->label == freq.flr_label) { |
| 621 | if (freq.flr_flags&IPV6_FL_F_EXCL) { |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 622 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | goto done; |
| 624 | } |
| 625 | fl1 = sfl->fl; |
Eric Dumazet | 90612f8 | 2019-06-06 14:32:34 -0700 | [diff] [blame] | 626 | if (!atomic_inc_not_zero(&fl1->users)) |
| 627 | fl1 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | break; |
| 629 | } |
| 630 | } |
YOSHIFUJI Hideaki / 吉藤英明 | 1836768 | 2013-01-30 09:27:52 +0000 | [diff] [blame] | 631 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 633 | if (!fl1) |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 634 | fl1 = fl_lookup(net, freq.flr_label); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 635 | if (fl1) { |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 636 | recheck: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | err = -EEXIST; |
| 638 | if (freq.flr_flags&IPV6_FL_F_EXCL) |
| 639 | goto release; |
| 640 | err = -EPERM; |
| 641 | if (fl1->share == IPV6_FL_S_EXCL || |
| 642 | fl1->share != fl->share || |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 643 | ((fl1->share == IPV6_FL_S_PROCESS) && |
Willem de Bruijn | 493cbb3 | 2019-04-25 12:06:54 -0400 | [diff] [blame] | 644 | (fl1->owner.pid != fl->owner.pid)) || |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 645 | ((fl1->share == IPV6_FL_S_USER) && |
Willem de Bruijn | 493cbb3 | 2019-04-25 12:06:54 -0400 | [diff] [blame] | 646 | !uid_eq(fl1->owner.uid, fl->owner.uid))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | goto release; |
| 648 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | err = -ENOMEM; |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 650 | if (!sfl1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | goto release; |
| 652 | if (fl->linger > fl1->linger) |
| 653 | fl1->linger = fl->linger; |
| 654 | if ((long)(fl->expires - fl1->expires) > 0) |
| 655 | fl1->expires = fl->expires; |
Pavel Emelyanov | 0402804 | 2007-10-18 05:14:58 -0700 | [diff] [blame] | 656 | fl_link(np, sfl1, fl1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 657 | fl_free(fl); |
| 658 | return 0; |
| 659 | |
| 660 | release: |
| 661 | fl_release(fl1); |
| 662 | goto done; |
| 663 | } |
| 664 | } |
| 665 | err = -ENOENT; |
| 666 | if (!(freq.flr_flags&IPV6_FL_F_CREATE)) |
| 667 | goto done; |
| 668 | |
| 669 | err = -ENOMEM; |
Ian Morris | 63159f2 | 2015-03-29 14:00:04 +0100 | [diff] [blame] | 670 | if (!sfl1) |
Ian Morris | e5d08d7 | 2014-11-23 21:28:43 +0000 | [diff] [blame] | 671 | goto done; |
| 672 | |
| 673 | err = mem_check(sk); |
| 674 | if (err != 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | goto done; |
| 676 | |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 677 | fl1 = fl_intern(net, fl, freq.flr_label); |
Ian Morris | 53b24b8 | 2015-03-29 14:00:05 +0100 | [diff] [blame] | 678 | if (fl1) |
Pavel Emelyanov | 78c2e50 | 2007-10-18 05:18:56 -0700 | [diff] [blame] | 679 | goto recheck; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | |
David S. Miller | 6c94d36 | 2005-05-29 20:28:01 -0700 | [diff] [blame] | 681 | if (!freq.flr_label) { |
| 682 | if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label, |
| 683 | &fl->label, sizeof(fl->label))) { |
| 684 | /* Intentionally ignore fault. */ |
| 685 | } |
| 686 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | |
Pavel Emelyanov | 0402804 | 2007-10-18 05:14:58 -0700 | [diff] [blame] | 688 | fl_link(np, sfl1, fl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | return 0; |
| 690 | |
| 691 | default: |
| 692 | return -EINVAL; |
| 693 | } |
| 694 | |
| 695 | done: |
| 696 | fl_free(fl); |
| 697 | kfree(sfl1); |
| 698 | return err; |
| 699 | } |
| 700 | |
| 701 | #ifdef CONFIG_PROC_FS |
| 702 | |
| 703 | struct ip6fl_iter_state { |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 704 | struct seq_net_private p; |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 705 | struct pid_namespace *pid_ns; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | int bucket; |
| 707 | }; |
| 708 | |
| 709 | #define ip6fl_seq_private(seq) ((struct ip6fl_iter_state *)(seq)->private) |
| 710 | |
| 711 | static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq) |
| 712 | { |
| 713 | struct ip6_flowlabel *fl = NULL; |
| 714 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 715 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) { |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 718 | for_each_fl_rcu(state->bucket, fl) { |
| 719 | if (net_eq(fl->fl_net, net)) |
| 720 | goto out; |
| 721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | } |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 723 | fl = NULL; |
| 724 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | return fl; |
| 726 | } |
| 727 | |
| 728 | static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl) |
| 729 | { |
| 730 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 731 | struct net *net = seq_file_net(seq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 733 | for_each_fl_continue_rcu(fl) { |
| 734 | if (net_eq(fl->fl_net, net)) |
| 735 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | } |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 737 | |
| 738 | try_again: |
| 739 | if (++state->bucket <= FL_HASH_MASK) { |
| 740 | for_each_fl_rcu(state->bucket, fl) { |
| 741 | if (net_eq(fl->fl_net, net)) |
| 742 | goto out; |
| 743 | } |
| 744 | goto try_again; |
| 745 | } |
| 746 | fl = NULL; |
| 747 | |
| 748 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | return fl; |
| 750 | } |
| 751 | |
| 752 | static struct ip6_flowlabel *ip6fl_get_idx(struct seq_file *seq, loff_t pos) |
| 753 | { |
| 754 | struct ip6_flowlabel *fl = ip6fl_get_first(seq); |
| 755 | if (fl) |
| 756 | while (pos && (fl = ip6fl_get_next(seq, fl)) != NULL) |
| 757 | --pos; |
| 758 | return pos ? NULL : fl; |
| 759 | } |
| 760 | |
| 761 | static void *ip6fl_seq_start(struct seq_file *seq, loff_t *pos) |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 762 | __acquires(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | { |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 764 | rcu_read_lock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | return *pos ? ip6fl_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; |
| 766 | } |
| 767 | |
| 768 | static void *ip6fl_seq_next(struct seq_file *seq, void *v, loff_t *pos) |
| 769 | { |
| 770 | struct ip6_flowlabel *fl; |
| 771 | |
| 772 | if (v == SEQ_START_TOKEN) |
| 773 | fl = ip6fl_get_first(seq); |
| 774 | else |
| 775 | fl = ip6fl_get_next(seq, v); |
| 776 | ++*pos; |
| 777 | return fl; |
| 778 | } |
| 779 | |
| 780 | static void ip6fl_seq_stop(struct seq_file *seq, void *v) |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 781 | __releases(RCU) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | { |
YOSHIFUJI Hideaki / 吉藤英明 | d3aedd5 | 2013-01-30 09:27:47 +0000 | [diff] [blame] | 783 | rcu_read_unlock_bh(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | } |
| 785 | |
James Morris | 1b7c2db | 2006-10-31 00:43:44 -0800 | [diff] [blame] | 786 | static int ip6fl_seq_show(struct seq_file *seq, void *v) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | { |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 788 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); |
Florent Fourcot | 869ba98 | 2014-11-04 23:01:00 +0100 | [diff] [blame] | 789 | if (v == SEQ_START_TOKEN) { |
Joe Perches | 1744bea | 2014-11-04 15:37:03 -0800 | [diff] [blame] | 790 | seq_puts(seq, "Label S Owner Users Linger Expires Dst Opt\n"); |
Florent Fourcot | 869ba98 | 2014-11-04 23:01:00 +0100 | [diff] [blame] | 791 | } else { |
James Morris | 1b7c2db | 2006-10-31 00:43:44 -0800 | [diff] [blame] | 792 | struct ip6_flowlabel *fl = v; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | seq_printf(seq, |
Harvey Harrison | 4b7a427 | 2008-10-29 12:50:24 -0700 | [diff] [blame] | 794 | "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n", |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 795 | (unsigned int)ntohl(fl->label), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | fl->share, |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 797 | ((fl->share == IPV6_FL_S_PROCESS) ? |
| 798 | pid_nr_ns(fl->owner.pid, state->pid_ns) : |
| 799 | ((fl->share == IPV6_FL_S_USER) ? |
| 800 | from_kuid_munged(seq_user_ns(seq), fl->owner.uid) : |
| 801 | 0)), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | atomic_read(&fl->users), |
| 803 | fl->linger/HZ, |
| 804 | (long)(fl->expires - jiffies)/HZ, |
Harvey Harrison | b071195 | 2008-10-28 16:05:40 -0700 | [diff] [blame] | 805 | &fl->dst, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | fl->opt ? fl->opt->opt_nflen : 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | return 0; |
| 809 | } |
| 810 | |
Philippe De Muyter | 56b3d97 | 2007-07-10 23:07:31 -0700 | [diff] [blame] | 811 | static const struct seq_operations ip6fl_seq_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | .start = ip6fl_seq_start, |
| 813 | .next = ip6fl_seq_next, |
| 814 | .stop = ip6fl_seq_stop, |
| 815 | .show = ip6fl_seq_show, |
| 816 | }; |
| 817 | |
| 818 | static int ip6fl_seq_open(struct inode *inode, struct file *file) |
| 819 | { |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 820 | struct seq_file *seq; |
| 821 | struct ip6fl_iter_state *state; |
| 822 | int err; |
| 823 | |
| 824 | err = seq_open_net(inode, file, &ip6fl_seq_ops, |
| 825 | sizeof(struct ip6fl_iter_state)); |
| 826 | |
| 827 | if (!err) { |
| 828 | seq = file->private_data; |
| 829 | state = ip6fl_seq_private(seq); |
| 830 | rcu_read_lock(); |
| 831 | state->pid_ns = get_pid_ns(task_active_pid_ns(current)); |
| 832 | rcu_read_unlock(); |
| 833 | } |
| 834 | return err; |
| 835 | } |
| 836 | |
| 837 | static int ip6fl_seq_release(struct inode *inode, struct file *file) |
| 838 | { |
| 839 | struct seq_file *seq = file->private_data; |
| 840 | struct ip6fl_iter_state *state = ip6fl_seq_private(seq); |
| 841 | put_pid_ns(state->pid_ns); |
| 842 | return seq_release_net(inode, file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | } |
| 844 | |
Arjan van de Ven | 9a32144 | 2007-02-12 00:55:35 -0800 | [diff] [blame] | 845 | static const struct file_operations ip6fl_seq_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | .owner = THIS_MODULE, |
| 847 | .open = ip6fl_seq_open, |
| 848 | .read = seq_read, |
| 849 | .llseek = seq_lseek, |
Eric W. Biederman | 4f82f45 | 2012-05-24 10:37:59 -0600 | [diff] [blame] | 850 | .release = ip6fl_seq_release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 853 | static int __net_init ip6_flowlabel_proc_init(struct net *net) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 854 | { |
Gao feng | d4beaa6 | 2013-02-18 01:34:54 +0000 | [diff] [blame] | 855 | if (!proc_create("ip6_flowlabel", S_IRUGO, net->proc_net, |
| 856 | &ip6fl_seq_fops)) |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 857 | return -ENOMEM; |
| 858 | return 0; |
| 859 | } |
| 860 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 861 | static void __net_exit ip6_flowlabel_proc_fini(struct net *net) |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 862 | { |
Gao feng | ece31ff | 2013-02-18 01:34:56 +0000 | [diff] [blame] | 863 | remove_proc_entry("ip6_flowlabel", net->proc_net); |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 864 | } |
| 865 | #else |
| 866 | static inline int ip6_flowlabel_proc_init(struct net *net) |
| 867 | { |
| 868 | return 0; |
| 869 | } |
| 870 | static inline void ip6_flowlabel_proc_fini(struct net *net) |
| 871 | { |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 872 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | #endif |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 874 | |
Alexey Dobriyan | 2c8c1e7 | 2010-01-17 03:35:32 +0000 | [diff] [blame] | 875 | static void __net_exit ip6_flowlabel_net_exit(struct net *net) |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 876 | { |
| 877 | ip6_fl_purge(net); |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 878 | ip6_flowlabel_proc_fini(net); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 879 | } |
| 880 | |
| 881 | static struct pernet_operations ip6_flowlabel_net_ops = { |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 882 | .init = ip6_flowlabel_proc_init, |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 883 | .exit = ip6_flowlabel_net_exit, |
| 884 | }; |
| 885 | |
Daniel Lezcano | 0a3e78a | 2007-12-11 02:23:18 -0800 | [diff] [blame] | 886 | int ip6_flowlabel_init(void) |
| 887 | { |
Benjamin Thery | 5983a3d | 2008-03-26 16:53:30 -0700 | [diff] [blame] | 888 | return register_pernet_subsys(&ip6_flowlabel_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | void ip6_flowlabel_cleanup(void) |
| 892 | { |
| 893 | del_timer(&ip6_fl_gc_timer); |
Benjamin Thery | 60e8fbc | 2008-03-26 16:53:08 -0700 | [diff] [blame] | 894 | unregister_pernet_subsys(&ip6_flowlabel_net_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 895 | } |