blob: 2f3eb7dc45daa5012b4b29f34b0542e00c60d135 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * ip6_flowlabel.c IPv6 flowlabel manager.
4 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
6 */
7
Randy Dunlap4fc268d2006-01-11 12:17:47 -08008#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/errno.h>
10#include <linux/types.h>
11#include <linux/socket.h>
12#include <linux/net.h>
13#include <linux/netdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/in6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/proc_fs.h>
16#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040018#include <linux/export.h>
Eric W. Biederman4f82f452012-05-24 10:37:59 -060019#include <linux/pid_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020021#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <net/sock.h>
23
24#include <net/ipv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <net/rawv6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/transp_v6.h>
27
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080028#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#define FL_MIN_LINGER 6 /* Minimal linger. It is set to 6sec specified
31 in old IPv6 RFC. Well, it was reasonable value.
32 */
Florent Fourcot53b47102013-11-07 17:53:13 +010033#define FL_MAX_LINGER 150 /* Maximal linger timeout */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* FL hash table */
36
37#define FL_MAX_PER_SOCK 32
38#define FL_MAX_SIZE 4096
39#define FL_HASH_MASK 255
40#define FL_HASH(l) (ntohl(l)&FL_HASH_MASK)
41
42static atomic_t fl_size = ATOMIC_INIT(0);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000043static struct ip6_flowlabel __rcu *fl_ht[FL_HASH_MASK+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Kees Cook24ed9602017-08-28 11:28:21 -070045static void ip6_fl_gc(struct timer_list *unused);
Kees Cook1d27e3e2017-10-04 16:27:04 -070046static DEFINE_TIMER(ip6_fl_gc_timer, ip6_fl_gc);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/* FL hash table lock: it protects only of GC */
49
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000050static DEFINE_SPINLOCK(ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/* Big socket sock */
53
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +000054static DEFINE_SPINLOCK(ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000056#define for_each_fl_rcu(hash, fl) \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000057 for (fl = rcu_dereference_bh(fl_ht[(hash)]); \
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000058 fl != NULL; \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000059 fl = rcu_dereference_bh(fl->next))
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000060#define for_each_fl_continue_rcu(fl) \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000061 for (fl = rcu_dereference_bh(fl->next); \
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000062 fl != NULL; \
Amerigo Wang6a98dcf2013-02-07 15:52:40 +000063 fl = rcu_dereference_bh(fl->next))
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +000065#define for_each_sk_fl_rcu(np, sfl) \
66 for (sfl = rcu_dereference_bh(np->ipv6_fl_list); \
67 sfl != NULL; \
68 sfl = rcu_dereference_bh(sfl->next))
69
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070070static inline struct ip6_flowlabel *__fl_lookup(struct net *net, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 struct ip6_flowlabel *fl;
73
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000074 for_each_fl_rcu(FL_HASH(label), fl) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -080075 if (fl->label == label && net_eq(fl->fl_net, net))
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return fl;
77 }
78 return NULL;
79}
80
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070081static struct ip6_flowlabel *fl_lookup(struct net *net, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct ip6_flowlabel *fl;
84
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000085 rcu_read_lock_bh();
Benjamin Thery60e8fbc2008-03-26 16:53:08 -070086 fl = __fl_lookup(net, label);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +000087 if (fl && !atomic_inc_not_zero(&fl->users))
88 fl = NULL;
89 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 return fl;
91}
92
Eric Dumazet6c0afef52019-04-27 16:49:06 -070093static void fl_free_rcu(struct rcu_head *head)
94{
95 struct ip6_flowlabel *fl = container_of(head, struct ip6_flowlabel, rcu);
96
97 if (fl->share == IPV6_FL_S_PROCESS)
98 put_pid(fl->owner.pid);
99 kfree(fl->opt);
100 kfree(fl);
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104static void fl_free(struct ip6_flowlabel *fl)
105{
Eric Dumazet6c0afef52019-04-27 16:49:06 -0700106 if (fl)
107 call_rcu(&fl->rcu, fl_free_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109
110static void fl_release(struct ip6_flowlabel *fl)
111{
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000112 spin_lock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114 fl->lastuse = jiffies;
115 if (atomic_dec_and_test(&fl->users)) {
116 unsigned long ttd = fl->lastuse + fl->linger;
117 if (time_after(ttd, fl->expires))
118 fl->expires = ttd;
119 ttd = fl->expires;
120 if (fl->opt && fl->share == IPV6_FL_S_EXCL) {
121 struct ipv6_txoptions *opt = fl->opt;
122 fl->opt = NULL;
123 kfree(opt);
124 }
125 if (!timer_pending(&ip6_fl_gc_timer) ||
126 time_after(ip6_fl_gc_timer.expires, ttd))
127 mod_timer(&ip6_fl_gc_timer, ttd);
128 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000129 spin_unlock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Kees Cook24ed9602017-08-28 11:28:21 -0700132static void ip6_fl_gc(struct timer_list *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133{
134 int i;
135 unsigned long now = jiffies;
136 unsigned long sched = 0;
137
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000138 spin_lock(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Ian Morris67ba4152014-08-24 21:53:10 +0100140 for (i = 0; i <= FL_HASH_MASK; i++) {
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000141 struct ip6_flowlabel *fl;
142 struct ip6_flowlabel __rcu **flp;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 flp = &fl_ht[i];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000145 while ((fl = rcu_dereference_protected(*flp,
146 lockdep_is_held(&ip6_fl_lock))) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (atomic_read(&fl->users) == 0) {
148 unsigned long ttd = fl->lastuse + fl->linger;
149 if (time_after(ttd, fl->expires))
150 fl->expires = ttd;
151 ttd = fl->expires;
152 if (time_after_eq(now, ttd)) {
153 *flp = fl->next;
154 fl_free(fl);
155 atomic_dec(&fl_size);
156 continue;
157 }
158 if (!sched || time_before(ttd, sched))
159 sched = ttd;
160 }
161 flp = &fl->next;
162 }
163 }
164 if (!sched && atomic_read(&fl_size))
165 sched = now + FL_MAX_LINGER;
166 if (sched) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700167 mod_timer(&ip6_fl_gc_timer, sched);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000169 spin_unlock(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000172static void __net_exit ip6_fl_purge(struct net *net)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700173{
174 int i;
175
Jan Stancek4762fb92015-02-11 14:06:23 +0100176 spin_lock_bh(&ip6_fl_lock);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700177 for (i = 0; i <= FL_HASH_MASK; i++) {
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000178 struct ip6_flowlabel *fl;
179 struct ip6_flowlabel __rcu **flp;
180
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700181 flp = &fl_ht[i];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000182 while ((fl = rcu_dereference_protected(*flp,
183 lockdep_is_held(&ip6_fl_lock))) != NULL) {
Octavian Purdila09ad9bc2009-11-25 15:14:13 -0800184 if (net_eq(fl->fl_net, net) &&
185 atomic_read(&fl->users) == 0) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700186 *flp = fl->next;
187 fl_free(fl);
188 atomic_dec(&fl_size);
189 continue;
190 }
191 flp = &fl->next;
192 }
193 }
Jan Stancek4762fb92015-02-11 14:06:23 +0100194 spin_unlock_bh(&ip6_fl_lock);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700195}
196
197static struct ip6_flowlabel *fl_intern(struct net *net,
198 struct ip6_flowlabel *fl, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700200 struct ip6_flowlabel *lfl;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 fl->label = label & IPV6_FLOWLABEL_MASK;
203
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000204 spin_lock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (label == 0) {
206 for (;;) {
Aruna-Hewapathirane63862b52014-01-11 07:15:59 -0500207 fl->label = htonl(prandom_u32())&IPV6_FLOWLABEL_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 if (fl->label) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700209 lfl = __fl_lookup(net, fl->label);
Ian Morris63159f22015-03-29 14:00:04 +0100210 if (!lfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 break;
212 }
213 }
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700214 } else {
215 /*
216 * we dropper the ip6_fl_lock, so this entry could reappear
217 * and we need to recheck with it.
218 *
219 * OTOH no need to search the active socket first, like it is
220 * done in ipv6_flowlabel_opt - sock is locked, so new entry
221 * with the same label can only appear on another sock
222 */
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700223 lfl = __fl_lookup(net, fl->label);
Ian Morris53b24b82015-03-29 14:00:05 +0100224 if (lfl) {
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700225 atomic_inc(&lfl->users);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000226 spin_unlock_bh(&ip6_fl_lock);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700227 return lfl;
228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230
231 fl->lastuse = jiffies;
232 fl->next = fl_ht[FL_HASH(fl->label)];
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000233 rcu_assign_pointer(fl_ht[FL_HASH(fl->label)], fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 atomic_inc(&fl_size);
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000235 spin_unlock_bh(&ip6_fl_lock);
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700236 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239
240
241/* Socket flowlabel lists */
242
Ian Morris67ba4152014-08-24 21:53:10 +0100243struct ip6_flowlabel *fl6_sock_lookup(struct sock *sk, __be32 label)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct ipv6_fl_socklist *sfl;
246 struct ipv6_pinfo *np = inet6_sk(sk);
247
248 label &= IPV6_FLOWLABEL_MASK;
249
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000250 rcu_read_lock_bh();
251 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 struct ip6_flowlabel *fl = sfl->fl;
253 if (fl->label == label) {
254 fl->lastuse = jiffies;
255 atomic_inc(&fl->users);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000256 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return fl;
258 }
259 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000260 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return NULL;
262}
Arnaldo Carvalho de Melo3cf3dc62005-12-13 23:23:20 -0800263EXPORT_SYMBOL_GPL(fl6_sock_lookup);
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265void fl6_free_socklist(struct sock *sk)
266{
267 struct ipv6_pinfo *np = inet6_sk(sk);
268 struct ipv6_fl_socklist *sfl;
269
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000270 if (!rcu_access_pointer(np->ipv6_fl_list))
YOSHIFUJI Hideaki / 吉藤英明f256dc52013-01-30 09:26:42 +0000271 return;
272
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000273 spin_lock_bh(&ip6_sk_fl_lock);
274 while ((sfl = rcu_dereference_protected(np->ipv6_fl_list,
275 lockdep_is_held(&ip6_sk_fl_lock))) != NULL) {
276 np->ipv6_fl_list = sfl->next;
277 spin_unlock_bh(&ip6_sk_fl_lock);
YOSHIFUJI Hideaki / 吉藤英明f256dc52013-01-30 09:26:42 +0000278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 fl_release(sfl->fl);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000280 kfree_rcu(sfl, rcu);
281
282 spin_lock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000284 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285}
286
287/* Service routines */
288
289
290/*
291 It is the only difficult place. flowlabel enforces equal headers
292 before and including routing header, however user may supply options
293 following rthdr.
294 */
295
Ian Morris67ba4152014-08-24 21:53:10 +0100296struct ipv6_txoptions *fl6_merge_options(struct ipv6_txoptions *opt_space,
297 struct ip6_flowlabel *fl,
298 struct ipv6_txoptions *fopt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Ian Morris67ba4152014-08-24 21:53:10 +0100300 struct ipv6_txoptions *fl_opt = fl->opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900301
Ian Morris63159f22015-03-29 14:00:04 +0100302 if (!fopt || fopt->opt_flen == 0)
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900303 return fl_opt;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900304
Ian Morris53b24b82015-03-29 14:00:05 +0100305 if (fl_opt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 opt_space->hopopt = fl_opt->hopopt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900307 opt_space->dst0opt = fl_opt->dst0opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 opt_space->srcrt = fl_opt->srcrt;
309 opt_space->opt_nflen = fl_opt->opt_nflen;
310 } else {
311 if (fopt->opt_nflen == 0)
312 return fopt;
313 opt_space->hopopt = NULL;
314 opt_space->dst0opt = NULL;
315 opt_space->srcrt = NULL;
316 opt_space->opt_nflen = 0;
317 }
318 opt_space->dst1opt = fopt->dst1opt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 opt_space->opt_flen = fopt->opt_flen;
Eric Dumazet864e2a12017-10-21 12:26:23 -0700320 opt_space->tot_len = fopt->tot_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return opt_space;
322}
Chris Elstona495f832012-04-29 21:48:53 +0000323EXPORT_SYMBOL_GPL(fl6_merge_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325static unsigned long check_linger(unsigned long ttl)
326{
327 if (ttl < FL_MIN_LINGER)
328 return FL_MIN_LINGER*HZ;
329 if (ttl > FL_MAX_LINGER && !capable(CAP_NET_ADMIN))
330 return 0;
331 return ttl*HZ;
332}
333
334static int fl6_renew(struct ip6_flowlabel *fl, unsigned long linger, unsigned long expires)
335{
336 linger = check_linger(linger);
337 if (!linger)
338 return -EPERM;
339 expires = check_linger(expires);
340 if (!expires)
341 return -EPERM;
Florent Fourcot394055f2013-11-07 17:53:14 +0100342
343 spin_lock_bh(&ip6_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 fl->lastuse = jiffies;
345 if (time_before(fl->linger, linger))
346 fl->linger = linger;
347 if (time_before(expires, fl->linger))
348 expires = fl->linger;
349 if (time_before(fl->expires, fl->lastuse + expires))
350 fl->expires = fl->lastuse + expires;
Florent Fourcot394055f2013-11-07 17:53:14 +0100351 spin_unlock_bh(&ip6_fl_lock);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return 0;
354}
355
356static struct ip6_flowlabel *
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000357fl_create(struct net *net, struct sock *sk, struct in6_flowlabel_req *freq,
358 char __user *optval, int optlen, int *err_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
David S. Miller684de402009-02-06 00:49:55 -0800360 struct ip6_flowlabel *fl = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 int olen;
362 int addr_type;
363 int err;
364
David S. Miller684de402009-02-06 00:49:55 -0800365 olen = optlen - CMSG_ALIGN(sizeof(*freq));
366 err = -EINVAL;
367 if (olen > 64 * 1024)
368 goto done;
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 err = -ENOMEM;
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800371 fl = kzalloc(sizeof(*fl), GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100372 if (!fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 if (olen > 0) {
376 struct msghdr msg;
David S. Miller4c9483b2011-03-12 16:22:43 -0500377 struct flowi6 flowi6;
Wei Wang26879da2016-05-02 21:40:07 -0700378 struct ipcm6_cookie ipc6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 err = -ENOMEM;
381 fl->opt = kmalloc(sizeof(*fl->opt) + olen, GFP_KERNEL);
Ian Morris63159f22015-03-29 14:00:04 +0100382 if (!fl->opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 goto done;
384
385 memset(fl->opt, 0, sizeof(*fl->opt));
386 fl->opt->tot_len = sizeof(*fl->opt) + olen;
387 err = -EFAULT;
388 if (copy_from_user(fl->opt+1, optval+CMSG_ALIGN(sizeof(*freq)), olen))
389 goto done;
390
391 msg.msg_controllen = olen;
Ian Morris67ba4152014-08-24 21:53:10 +0100392 msg.msg_control = (void *)(fl->opt+1);
David S. Miller4c9483b2011-03-12 16:22:43 -0500393 memset(&flowi6, 0, sizeof(flowi6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Wei Wang26879da2016-05-02 21:40:07 -0700395 ipc6.opt = fl->opt;
Willem de Bruijn5fdaa882018-07-06 10:12:57 -0400396 err = ip6_datagram_send_ctl(net, sk, &msg, &flowi6, &ipc6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (err)
398 goto done;
399 err = -EINVAL;
400 if (fl->opt->opt_flen)
401 goto done;
402 if (fl->opt->opt_nflen == 0) {
403 kfree(fl->opt);
404 fl->opt = NULL;
405 }
406 }
407
Eric W. Biedermanefd7ef12015-03-11 23:04:08 -0500408 fl->fl_net = net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 fl->expires = jiffies;
410 err = fl6_renew(fl, freq->flr_linger, freq->flr_expires);
411 if (err)
412 goto done;
413 fl->share = freq->flr_share;
414 addr_type = ipv6_addr_type(&freq->flr_dst);
Joe Perches35700212009-11-24 14:52:52 -0800415 if ((addr_type & IPV6_ADDR_MAPPED) ||
416 addr_type == IPV6_ADDR_ANY) {
James Morrisc6817e42006-10-30 18:56:06 -0800417 err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 goto done;
James Morrisc6817e42006-10-30 18:56:06 -0800419 }
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000420 fl->dst = freq->flr_dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 atomic_set(&fl->users, 1);
422 switch (fl->share) {
423 case IPV6_FL_S_EXCL:
424 case IPV6_FL_S_ANY:
425 break;
426 case IPV6_FL_S_PROCESS:
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600427 fl->owner.pid = get_task_pid(current, PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 break;
429 case IPV6_FL_S_USER:
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600430 fl->owner.uid = current_euid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 break;
432 default:
433 err = -EINVAL;
434 goto done;
435 }
436 return fl;
437
438done:
439 fl_free(fl);
440 *err_p = err;
441 return NULL;
442}
443
444static int mem_check(struct sock *sk)
445{
446 struct ipv6_pinfo *np = inet6_sk(sk);
447 struct ipv6_fl_socklist *sfl;
448 int room = FL_MAX_SIZE - atomic_read(&fl_size);
449 int count = 0;
450
451 if (room > FL_MAX_SIZE - FL_MAX_PER_SOCK)
452 return 0;
453
Hannes Frederic Sowaf8c31c82013-11-08 19:26:21 +0100454 rcu_read_lock_bh();
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000455 for_each_sk_fl_rcu(np, sfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 count++;
Hannes Frederic Sowaf8c31c82013-11-08 19:26:21 +0100457 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
459 if (room <= 0 ||
460 ((count >= FL_MAX_PER_SOCK ||
Joe Perches35700212009-11-24 14:52:52 -0800461 (count > 0 && room < FL_MAX_SIZE/2) || room < FL_MAX_SIZE/4) &&
462 !capable(CAP_NET_ADMIN)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -ENOBUFS;
464
465 return 0;
466}
467
Pavel Emelyanov04028042007-10-18 05:14:58 -0700468static inline void fl_link(struct ipv6_pinfo *np, struct ipv6_fl_socklist *sfl,
469 struct ip6_flowlabel *fl)
470{
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000471 spin_lock_bh(&ip6_sk_fl_lock);
Pavel Emelyanov04028042007-10-18 05:14:58 -0700472 sfl->fl = fl;
473 sfl->next = np->ipv6_fl_list;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000474 rcu_assign_pointer(np->ipv6_fl_list, sfl);
475 spin_unlock_bh(&ip6_sk_fl_lock);
Pavel Emelyanov04028042007-10-18 05:14:58 -0700476}
477
Florent Fourcot46e5f402014-01-17 17:15:04 +0100478int ipv6_flowlabel_opt_get(struct sock *sk, struct in6_flowlabel_req *freq,
479 int flags)
Florent Fourcot3fdfa5f2013-11-07 17:53:12 +0100480{
481 struct ipv6_pinfo *np = inet6_sk(sk);
482 struct ipv6_fl_socklist *sfl;
483
Florent Fourcot46e5f402014-01-17 17:15:04 +0100484 if (flags & IPV6_FL_F_REMOTE) {
485 freq->flr_label = np->rcv_flowinfo & IPV6_FLOWLABEL_MASK;
486 return 0;
487 }
488
Florent Fourcotdf3687f2014-01-17 17:15:03 +0100489 if (np->repflow) {
490 freq->flr_label = np->flow_label;
491 return 0;
492 }
493
Florent Fourcot3fdfa5f2013-11-07 17:53:12 +0100494 rcu_read_lock_bh();
495
496 for_each_sk_fl_rcu(np, sfl) {
497 if (sfl->fl->label == (np->flow_label & IPV6_FLOWLABEL_MASK)) {
498 spin_lock_bh(&ip6_fl_lock);
499 freq->flr_label = sfl->fl->label;
500 freq->flr_dst = sfl->fl->dst;
501 freq->flr_share = sfl->fl->share;
502 freq->flr_expires = (sfl->fl->expires - jiffies) / HZ;
503 freq->flr_linger = sfl->fl->linger / HZ;
504
505 spin_unlock_bh(&ip6_fl_lock);
506 rcu_read_unlock_bh();
507 return 0;
508 }
509 }
510 rcu_read_unlock_bh();
511
512 return -ENOENT;
513}
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515int ipv6_flowlabel_opt(struct sock *sk, char __user *optval, int optlen)
516{
Ingo Molnar55205d42008-11-25 16:50:30 -0800517 int uninitialized_var(err);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700518 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 struct ipv6_pinfo *np = inet6_sk(sk);
520 struct in6_flowlabel_req freq;
Ian Morris67ba4152014-08-24 21:53:10 +0100521 struct ipv6_fl_socklist *sfl1 = NULL;
Eric Dumazet7f0e44a2013-03-07 04:20:32 +0000522 struct ipv6_fl_socklist *sfl;
523 struct ipv6_fl_socklist __rcu **sflp;
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700524 struct ip6_flowlabel *fl, *fl1 = NULL;
525
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527 if (optlen < sizeof(freq))
528 return -EINVAL;
529
530 if (copy_from_user(&freq, optval, sizeof(freq)))
531 return -EFAULT;
532
533 switch (freq.flr_action) {
534 case IPV6_FL_A_PUT:
Florent Fourcotdf3687f2014-01-17 17:15:03 +0100535 if (freq.flr_flags & IPV6_FL_F_REFLECT) {
536 if (sk->sk_protocol != IPPROTO_TCP)
537 return -ENOPROTOOPT;
538 if (!np->repflow)
539 return -ESRCH;
540 np->flow_label = 0;
541 np->repflow = 0;
542 return 0;
543 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000544 spin_lock_bh(&ip6_sk_fl_lock);
545 for (sflp = &np->ipv6_fl_list;
Eric Dumazet44c3d0c2016-02-02 17:55:01 -0800546 (sfl = rcu_dereference_protected(*sflp,
547 lockdep_is_held(&ip6_sk_fl_lock))) != NULL;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000548 sflp = &sfl->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (sfl->fl->label == freq.flr_label) {
550 if (freq.flr_label == (np->flow_label&IPV6_FLOWLABEL_MASK))
551 np->flow_label &= ~IPV6_FLOWLABEL_MASK;
Eric Dumazet44c3d0c2016-02-02 17:55:01 -0800552 *sflp = sfl->next;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000553 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 fl_release(sfl->fl);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000555 kfree_rcu(sfl, rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 return 0;
557 }
558 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000559 spin_unlock_bh(&ip6_sk_fl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 return -ESRCH;
561
562 case IPV6_FL_A_RENEW:
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000563 rcu_read_lock_bh();
564 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 if (sfl->fl->label == freq.flr_label) {
566 err = fl6_renew(sfl->fl, freq.flr_linger, freq.flr_expires);
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000567 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return err;
569 }
570 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000571 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Eric W. Biedermanaf31f412012-11-16 03:03:06 +0000573 if (freq.flr_share == IPV6_FL_S_NONE &&
574 ns_capable(net->user_ns, CAP_NET_ADMIN)) {
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700575 fl = fl_lookup(net, freq.flr_label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (fl) {
577 err = fl6_renew(fl, freq.flr_linger, freq.flr_expires);
578 fl_release(fl);
579 return err;
580 }
581 }
582 return -ESRCH;
583
584 case IPV6_FL_A_GET:
Florent Fourcotdf3687f2014-01-17 17:15:03 +0100585 if (freq.flr_flags & IPV6_FL_F_REFLECT) {
Florent Fourcot6444f722014-01-17 17:15:05 +0100586 struct net *net = sock_net(sk);
587 if (net->ipv6.sysctl.flowlabel_consistency) {
588 net_info_ratelimited("Can not set IPV6_FL_F_REFLECT if flowlabel_consistency sysctl is enable\n");
589 return -EPERM;
590 }
591
Florent Fourcotdf3687f2014-01-17 17:15:03 +0100592 if (sk->sk_protocol != IPPROTO_TCP)
593 return -ENOPROTOOPT;
Florent Fourcot6444f722014-01-17 17:15:05 +0100594
Florent Fourcotdf3687f2014-01-17 17:15:03 +0100595 np->repflow = 1;
596 return 0;
597 }
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (freq.flr_label & ~IPV6_FLOWLABEL_MASK)
600 return -EINVAL;
601
Tom Herbert82a584b2015-04-29 15:33:21 -0700602 if (net->ipv6.sysctl.flowlabel_state_ranges &&
603 (freq.flr_label & IPV6_FLOWLABEL_STATELESS_FLAG))
604 return -ERANGE;
605
Maciej Żenczykowskiec0506d2011-08-28 12:35:31 +0000606 fl = fl_create(net, sk, &freq, optval, optlen, &err);
Ian Morris63159f22015-03-29 14:00:04 +0100607 if (!fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return err;
609 sfl1 = kmalloc(sizeof(*sfl1), GFP_KERNEL);
610
611 if (freq.flr_label) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 err = -EEXIST;
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000613 rcu_read_lock_bh();
614 for_each_sk_fl_rcu(np, sfl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (sfl->fl->label == freq.flr_label) {
616 if (freq.flr_flags&IPV6_FL_F_EXCL) {
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000617 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 goto done;
619 }
620 fl1 = sfl->fl;
Yan Zheng4ea6a802005-10-24 19:55:23 +0800621 atomic_inc(&fl1->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 break;
623 }
624 }
YOSHIFUJI Hideaki / 吉藤英明18367682013-01-30 09:27:52 +0000625 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Ian Morris63159f22015-03-29 14:00:04 +0100627 if (!fl1)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700628 fl1 = fl_lookup(net, freq.flr_label);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (fl1) {
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700630recheck:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 err = -EEXIST;
632 if (freq.flr_flags&IPV6_FL_F_EXCL)
633 goto release;
634 err = -EPERM;
635 if (fl1->share == IPV6_FL_S_EXCL ||
636 fl1->share != fl->share ||
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600637 ((fl1->share == IPV6_FL_S_PROCESS) &&
Willem de Bruijn95c16922019-04-25 12:06:54 -0400638 (fl1->owner.pid != fl->owner.pid)) ||
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600639 ((fl1->share == IPV6_FL_S_USER) &&
Willem de Bruijn95c16922019-04-25 12:06:54 -0400640 !uid_eq(fl1->owner.uid, fl->owner.uid)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 goto release;
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 err = -ENOMEM;
Ian Morris63159f22015-03-29 14:00:04 +0100644 if (!sfl1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 goto release;
646 if (fl->linger > fl1->linger)
647 fl1->linger = fl->linger;
648 if ((long)(fl->expires - fl1->expires) > 0)
649 fl1->expires = fl->expires;
Pavel Emelyanov04028042007-10-18 05:14:58 -0700650 fl_link(np, sfl1, fl1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 fl_free(fl);
652 return 0;
653
654release:
655 fl_release(fl1);
656 goto done;
657 }
658 }
659 err = -ENOENT;
660 if (!(freq.flr_flags&IPV6_FL_F_CREATE))
661 goto done;
662
663 err = -ENOMEM;
Ian Morris63159f22015-03-29 14:00:04 +0100664 if (!sfl1)
Ian Morrise5d08d72014-11-23 21:28:43 +0000665 goto done;
666
667 err = mem_check(sk);
668 if (err != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 goto done;
670
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700671 fl1 = fl_intern(net, fl, freq.flr_label);
Ian Morris53b24b82015-03-29 14:00:05 +0100672 if (fl1)
Pavel Emelyanov78c2e502007-10-18 05:18:56 -0700673 goto recheck;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
David S. Miller6c94d362005-05-29 20:28:01 -0700675 if (!freq.flr_label) {
676 if (copy_to_user(&((struct in6_flowlabel_req __user *) optval)->flr_label,
677 &fl->label, sizeof(fl->label))) {
678 /* Intentionally ignore fault. */
679 }
680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Pavel Emelyanov04028042007-10-18 05:14:58 -0700682 fl_link(np, sfl1, fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 return 0;
684
685 default:
686 return -EINVAL;
687 }
688
689done:
690 fl_free(fl);
691 kfree(sfl1);
692 return err;
693}
694
695#ifdef CONFIG_PROC_FS
696
697struct ip6fl_iter_state {
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700698 struct seq_net_private p;
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600699 struct pid_namespace *pid_ns;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 int bucket;
701};
702
703#define ip6fl_seq_private(seq) ((struct ip6fl_iter_state *)(seq)->private)
704
705static struct ip6_flowlabel *ip6fl_get_first(struct seq_file *seq)
706{
707 struct ip6_flowlabel *fl = NULL;
708 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700709 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 for (state->bucket = 0; state->bucket <= FL_HASH_MASK; ++state->bucket) {
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000712 for_each_fl_rcu(state->bucket, fl) {
713 if (net_eq(fl->fl_net, net))
714 goto out;
715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000717 fl = NULL;
718out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return fl;
720}
721
722static struct ip6_flowlabel *ip6fl_get_next(struct seq_file *seq, struct ip6_flowlabel *fl)
723{
724 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700725 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000727 for_each_fl_continue_rcu(fl) {
728 if (net_eq(fl->fl_net, net))
729 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 }
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000731
732try_again:
733 if (++state->bucket <= FL_HASH_MASK) {
734 for_each_fl_rcu(state->bucket, fl) {
735 if (net_eq(fl->fl_net, net))
736 goto out;
737 }
738 goto try_again;
739 }
740 fl = NULL;
741
742out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 return fl;
744}
745
746static struct ip6_flowlabel *ip6fl_get_idx(struct seq_file *seq, loff_t pos)
747{
748 struct ip6_flowlabel *fl = ip6fl_get_first(seq);
749 if (fl)
750 while (pos && (fl = ip6fl_get_next(seq, fl)) != NULL)
751 --pos;
752 return pos ? NULL : fl;
753}
754
755static void *ip6fl_seq_start(struct seq_file *seq, loff_t *pos)
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000756 __acquires(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Christoph Hellwigad089782018-04-11 10:01:30 +0200758 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
759
760 state->pid_ns = proc_pid_ns(file_inode(seq->file));
761
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000762 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return *pos ? ip6fl_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
764}
765
766static void *ip6fl_seq_next(struct seq_file *seq, void *v, loff_t *pos)
767{
768 struct ip6_flowlabel *fl;
769
770 if (v == SEQ_START_TOKEN)
771 fl = ip6fl_get_first(seq);
772 else
773 fl = ip6fl_get_next(seq, v);
774 ++*pos;
775 return fl;
776}
777
778static void ip6fl_seq_stop(struct seq_file *seq, void *v)
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000779 __releases(RCU)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
YOSHIFUJI Hideaki / 吉藤英明d3aedd52013-01-30 09:27:47 +0000781 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
James Morris1b7c2db2006-10-31 00:43:44 -0800784static int ip6fl_seq_show(struct seq_file *seq, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785{
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600786 struct ip6fl_iter_state *state = ip6fl_seq_private(seq);
Florent Fourcot869ba982014-11-04 23:01:00 +0100787 if (v == SEQ_START_TOKEN) {
Joe Perches1744bea2014-11-04 15:37:03 -0800788 seq_puts(seq, "Label S Owner Users Linger Expires Dst Opt\n");
Florent Fourcot869ba982014-11-04 23:01:00 +0100789 } else {
James Morris1b7c2db2006-10-31 00:43:44 -0800790 struct ip6_flowlabel *fl = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 seq_printf(seq,
Harvey Harrison4b7a4272008-10-29 12:50:24 -0700792 "%05X %-1d %-6d %-6d %-6ld %-8ld %pi6 %-4d\n",
Eric Dumazet95c96172012-04-15 05:58:06 +0000793 (unsigned int)ntohl(fl->label),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 fl->share,
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600795 ((fl->share == IPV6_FL_S_PROCESS) ?
796 pid_nr_ns(fl->owner.pid, state->pid_ns) :
797 ((fl->share == IPV6_FL_S_USER) ?
798 from_kuid_munged(seq_user_ns(seq), fl->owner.uid) :
799 0)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 atomic_read(&fl->users),
801 fl->linger/HZ,
802 (long)(fl->expires - jiffies)/HZ,
Harvey Harrisonb0711952008-10-28 16:05:40 -0700803 &fl->dst,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 fl->opt ? fl->opt->opt_nflen : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return 0;
807}
808
Philippe De Muyter56b3d972007-07-10 23:07:31 -0700809static const struct seq_operations ip6fl_seq_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 .start = ip6fl_seq_start,
811 .next = ip6fl_seq_next,
812 .stop = ip6fl_seq_stop,
813 .show = ip6fl_seq_show,
814};
815
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000816static int __net_init ip6_flowlabel_proc_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Christoph Hellwigc3506372018-04-10 19:42:55 +0200818 if (!proc_create_net("ip6_flowlabel", 0444, net->proc_net,
819 &ip6fl_seq_ops, sizeof(struct ip6fl_iter_state)))
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800820 return -ENOMEM;
821 return 0;
822}
823
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000824static void __net_exit ip6_flowlabel_proc_fini(struct net *net)
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800825{
Gao fengece31ff2013-02-18 01:34:56 +0000826 remove_proc_entry("ip6_flowlabel", net->proc_net);
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800827}
828#else
829static inline int ip6_flowlabel_proc_init(struct net *net)
830{
831 return 0;
832}
833static inline void ip6_flowlabel_proc_fini(struct net *net)
834{
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800835}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#endif
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800837
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +0000838static void __net_exit ip6_flowlabel_net_exit(struct net *net)
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700839{
840 ip6_fl_purge(net);
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700841 ip6_flowlabel_proc_fini(net);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700842}
843
844static struct pernet_operations ip6_flowlabel_net_ops = {
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700845 .init = ip6_flowlabel_proc_init,
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700846 .exit = ip6_flowlabel_net_exit,
847};
848
Daniel Lezcano0a3e78a2007-12-11 02:23:18 -0800849int ip6_flowlabel_init(void)
850{
Benjamin Thery5983a3d2008-03-26 16:53:30 -0700851 return register_pernet_subsys(&ip6_flowlabel_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854void ip6_flowlabel_cleanup(void)
855{
856 del_timer(&ip6_fl_gc_timer);
Benjamin Thery60e8fbc2008-03-26 16:53:08 -0700857 unregister_pernet_subsys(&ip6_flowlabel_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}