hinic: modify irq name
[linux-block.git] / net / l2tp / l2tp_core.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
20dcb110 2/* L2TP core.
fd558d18
JC
3 *
4 * Copyright (c) 2008,2009,2010 Katalix Systems Ltd
5 *
6 * This file contains some code of the original L2TPv2 pppol2tp
7 * driver, which has the following copyright:
8 *
9 * Authors: Martijn van Oosterhout <kleptog@svana.org>
10 * James Chapman (jchapman@katalix.com)
11 * Contributors:
12 * Michal Ostrowski <mostrows@speakeasy.net>
13 * Arnaldo Carvalho de Melo <acme@xconectiva.com.br>
14 * David S. Miller (davem@redhat.com)
fd558d18
JC
15 */
16
a4ca44fa
JP
17#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
fd558d18
JC
19#include <linux/module.h>
20#include <linux/string.h>
21#include <linux/list.h>
e02d494d 22#include <linux/rculist.h>
fd558d18
JC
23#include <linux/uaccess.h>
24
25#include <linux/kernel.h>
26#include <linux/spinlock.h>
27#include <linux/kthread.h>
28#include <linux/sched.h>
29#include <linux/slab.h>
30#include <linux/errno.h>
31#include <linux/jiffies.h>
32
33#include <linux/netdevice.h>
34#include <linux/net.h>
35#include <linux/inetdevice.h>
36#include <linux/skbuff.h>
37#include <linux/init.h>
0d76751f 38#include <linux/in.h>
fd558d18
JC
39#include <linux/ip.h>
40#include <linux/udp.h>
0d76751f 41#include <linux/l2tp.h>
fd558d18
JC
42#include <linux/hash.h>
43#include <linux/sort.h>
44#include <linux/file.h>
45#include <linux/nsproxy.h>
46#include <net/net_namespace.h>
47#include <net/netns/generic.h>
48#include <net/dst.h>
49#include <net/ip.h>
50#include <net/udp.h>
85644b4d 51#include <net/udp_tunnel.h>
309795f4 52#include <net/inet_common.h>
fd558d18 53#include <net/xfrm.h>
0d76751f 54#include <net/protocol.h>
d2cf3361
BL
55#include <net/inet6_connection_sock.h>
56#include <net/inet_ecn.h>
57#include <net/ip6_route.h>
d499bd2e 58#include <net/ip6_checksum.h>
fd558d18
JC
59
60#include <asm/byteorder.h>
60063497 61#include <linux/atomic.h>
fd558d18
JC
62
63#include "l2tp_core.h"
6b7bdcd7 64#include "trace.h"
fd558d18 65
3f117d6f
TP
66#define CREATE_TRACE_POINTS
67#include "trace.h"
68
fd558d18
JC
69#define L2TP_DRV_VERSION "V2.0"
70
71/* L2TP header constants */
72#define L2TP_HDRFLAG_T 0x8000
73#define L2TP_HDRFLAG_L 0x4000
74#define L2TP_HDRFLAG_S 0x0800
75#define L2TP_HDRFLAG_O 0x0200
76#define L2TP_HDRFLAG_P 0x0100
77
78#define L2TP_HDR_VER_MASK 0x000F
79#define L2TP_HDR_VER_2 0x0002
f7faffa3 80#define L2TP_HDR_VER_3 0x0003
fd558d18
JC
81
82/* L2TPv3 default L2-specific sublayer */
83#define L2TP_SLFLAG_S 0x40000000
84#define L2TP_SL_SEQ_MASK 0x00ffffff
85
91c52470 86#define L2TP_HDR_SIZE_MAX 14
fd558d18
JC
87
88/* Default trace flags */
89#define L2TP_DEFAULT_DEBUG_FLAGS 0
90
fd558d18
JC
91/* Private data stored for received packets in the skb.
92 */
93struct l2tp_skb_cb {
f7faffa3 94 u32 ns;
fd558d18
JC
95 u16 has_seq;
96 u16 length;
97 unsigned long expires;
98};
99
efcd8c85 100#define L2TP_SKB_CB(skb) ((struct l2tp_skb_cb *)&(skb)->cb[sizeof(struct inet_skb_parm)])
fd558d18 101
f8ccac0e 102static struct workqueue_struct *l2tp_wq;
fd558d18
JC
103
104/* per-net private data for this module */
105static unsigned int l2tp_net_id;
106struct l2tp_net {
107 struct list_head l2tp_tunnel_list;
20dcb110 108 /* Lock for write access to l2tp_tunnel_list */
e02d494d 109 spinlock_t l2tp_tunnel_list_lock;
f7faffa3 110 struct hlist_head l2tp_session_hlist[L2TP_HASH_SIZE_2];
20dcb110 111 /* Lock for write access to l2tp_session_hlist */
e02d494d 112 spinlock_t l2tp_session_hlist_lock;
fd558d18
JC
113};
114
b954f940
PA
115#if IS_ENABLED(CONFIG_IPV6)
116static bool l2tp_sk_is_v6(struct sock *sk)
117{
118 return sk->sk_family == PF_INET6 &&
119 !ipv6_addr_v4mapped(&sk->sk_v6_daddr);
120}
121#endif
fc130840 122
9aaef50c 123static inline struct l2tp_net *l2tp_pernet(const struct net *net)
fd558d18 124{
fd558d18
JC
125 return net_generic(net, l2tp_net_id);
126}
127
f7faffa3
JC
128/* Session hash global list for L2TPv3.
129 * The session_id SHOULD be random according to RFC3931, but several
130 * L2TP implementations use incrementing session_ids. So we do a real
131 * hash on the session_id, rather than a simple bitmask.
132 */
133static inline struct hlist_head *
134l2tp_session_id_hash_2(struct l2tp_net *pn, u32 session_id)
135{
136 return &pn->l2tp_session_hlist[hash_32(session_id, L2TP_HASH_BITS_2)];
f7faffa3
JC
137}
138
fd558d18
JC
139/* Session hash list.
140 * The session_id SHOULD be random according to RFC2661, but several
141 * L2TP implementations (Cisco and Microsoft) use incrementing
142 * session_ids. So we do a real hash on the session_id, rather than a
143 * simple bitmask.
144 */
145static inline struct hlist_head *
146l2tp_session_id_hash(struct l2tp_tunnel *tunnel, u32 session_id)
147{
148 return &tunnel->session_hlist[hash_32(session_id, L2TP_HASH_BITS)];
149}
150
52016e25 151static void l2tp_tunnel_free(struct l2tp_tunnel *tunnel)
d00fa9ad 152{
6b7bdcd7 153 trace_free_tunnel(tunnel);
d00fa9ad
JC
154 sock_put(tunnel->sock);
155 /* the tunnel is freed in the socket destructor */
156}
52016e25
TP
157
158static void l2tp_session_free(struct l2tp_session *session)
159{
6b7bdcd7 160 trace_free_session(session);
45faeff1
TP
161 if (session->tunnel)
162 l2tp_tunnel_dec_refcount(session->tunnel);
163 kfree(session);
164}
6b7bdcd7 165
45faeff1
TP
166struct l2tp_tunnel *l2tp_sk_to_tunnel(struct sock *sk)
167{
168 struct l2tp_tunnel *tunnel = sk->sk_user_data;
169
170 if (tunnel)
52016e25 171 if (WARN_ON(tunnel->magic != L2TP_TUNNEL_MAGIC))
45faeff1 172 return NULL;
52016e25 173
45faeff1 174 return tunnel;
52016e25 175}
45faeff1 176EXPORT_SYMBOL_GPL(l2tp_sk_to_tunnel);
52016e25
TP
177
178void l2tp_tunnel_inc_refcount(struct l2tp_tunnel *tunnel)
179{
180 refcount_inc(&tunnel->ref_count);
181}
182EXPORT_SYMBOL_GPL(l2tp_tunnel_inc_refcount);
183
184void l2tp_tunnel_dec_refcount(struct l2tp_tunnel *tunnel)
185{
186 if (refcount_dec_and_test(&tunnel->ref_count))
187 l2tp_tunnel_free(tunnel);
188}
189EXPORT_SYMBOL_GPL(l2tp_tunnel_dec_refcount);
190
191void l2tp_session_inc_refcount(struct l2tp_session *session)
192{
193 refcount_inc(&session->ref_count);
194}
195EXPORT_SYMBOL_GPL(l2tp_session_inc_refcount);
196
197void l2tp_session_dec_refcount(struct l2tp_session *session)
198{
199 if (refcount_dec_and_test(&session->ref_count))
200 l2tp_session_free(session);
201}
202EXPORT_SYMBOL_GPL(l2tp_session_dec_refcount);
d00fa9ad 203
54652eb1
GN
204/* Lookup a tunnel. A new reference is held on the returned tunnel. */
205struct l2tp_tunnel *l2tp_tunnel_get(const struct net *net, u32 tunnel_id)
206{
207 const struct l2tp_net *pn = l2tp_pernet(net);
208 struct l2tp_tunnel *tunnel;
209
210 rcu_read_lock_bh();
211 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
a622b400
ED
212 if (tunnel->tunnel_id == tunnel_id &&
213 refcount_inc_not_zero(&tunnel->ref_count)) {
54652eb1
GN
214 rcu_read_unlock_bh();
215
216 return tunnel;
217 }
218 }
219 rcu_read_unlock_bh();
220
221 return NULL;
222}
223EXPORT_SYMBOL_GPL(l2tp_tunnel_get);
224
5846c131
GN
225struct l2tp_tunnel *l2tp_tunnel_get_nth(const struct net *net, int nth)
226{
227 const struct l2tp_net *pn = l2tp_pernet(net);
228 struct l2tp_tunnel *tunnel;
229 int count = 0;
230
231 rcu_read_lock_bh();
232 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
a622b400
ED
233 if (++count > nth &&
234 refcount_inc_not_zero(&tunnel->ref_count)) {
5846c131
GN
235 rcu_read_unlock_bh();
236 return tunnel;
237 }
238 }
239 rcu_read_unlock_bh();
240
241 return NULL;
242}
243EXPORT_SYMBOL_GPL(l2tp_tunnel_get_nth);
244
01e28b92
GN
245struct l2tp_session *l2tp_tunnel_get_session(struct l2tp_tunnel *tunnel,
246 u32 session_id)
61b9a047
GN
247{
248 struct hlist_head *session_list;
249 struct l2tp_session *session;
250
01e28b92 251 session_list = l2tp_session_id_hash(tunnel, session_id);
61b9a047 252
01e28b92
GN
253 read_lock_bh(&tunnel->hlist_lock);
254 hlist_for_each_entry(session, session_list, hlist)
255 if (session->session_id == session_id) {
256 l2tp_session_inc_refcount(session);
257 read_unlock_bh(&tunnel->hlist_lock);
61b9a047 258
01e28b92 259 return session;
61b9a047 260 }
01e28b92 261 read_unlock_bh(&tunnel->hlist_lock);
61b9a047 262
01e28b92
GN
263 return NULL;
264}
265EXPORT_SYMBOL_GPL(l2tp_tunnel_get_session);
61b9a047 266
01e28b92
GN
267struct l2tp_session *l2tp_session_get(const struct net *net, u32 session_id)
268{
269 struct hlist_head *session_list;
270 struct l2tp_session *session;
271
272 session_list = l2tp_session_id_hash_2(l2tp_pernet(net), session_id);
273
274 rcu_read_lock_bh();
275 hlist_for_each_entry_rcu(session, session_list, global_hlist)
61b9a047
GN
276 if (session->session_id == session_id) {
277 l2tp_session_inc_refcount(session);
01e28b92 278 rcu_read_unlock_bh();
61b9a047
GN
279
280 return session;
281 }
01e28b92 282 rcu_read_unlock_bh();
61b9a047
GN
283
284 return NULL;
285}
286EXPORT_SYMBOL_GPL(l2tp_session_get);
287
a4346210 288struct l2tp_session *l2tp_session_get_nth(struct l2tp_tunnel *tunnel, int nth)
fd558d18
JC
289{
290 int hash;
fd558d18
JC
291 struct l2tp_session *session;
292 int count = 0;
293
294 read_lock_bh(&tunnel->hlist_lock);
295 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
b67bfe0d 296 hlist_for_each_entry(session, &tunnel->session_hlist[hash], hlist) {
fd558d18 297 if (++count > nth) {
e08293a4 298 l2tp_session_inc_refcount(session);
fd558d18
JC
299 read_unlock_bh(&tunnel->hlist_lock);
300 return session;
301 }
302 }
303 }
304
305 read_unlock_bh(&tunnel->hlist_lock);
306
307 return NULL;
308}
e08293a4 309EXPORT_SYMBOL_GPL(l2tp_session_get_nth);
fd558d18 310
309795f4
JC
311/* Lookup a session by interface name.
312 * This is very inefficient but is only used by management interfaces.
313 */
9aaef50c 314struct l2tp_session *l2tp_session_get_by_ifname(const struct net *net,
a4346210 315 const char *ifname)
309795f4
JC
316{
317 struct l2tp_net *pn = l2tp_pernet(net);
318 int hash;
309795f4
JC
319 struct l2tp_session *session;
320
e02d494d 321 rcu_read_lock_bh();
309795f4 322 for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++) {
b67bfe0d 323 hlist_for_each_entry_rcu(session, &pn->l2tp_session_hlist[hash], global_hlist) {
309795f4 324 if (!strcmp(session->ifname, ifname)) {
2777e2ab 325 l2tp_session_inc_refcount(session);
e02d494d 326 rcu_read_unlock_bh();
2777e2ab 327
309795f4
JC
328 return session;
329 }
330 }
331 }
332
e02d494d 333 rcu_read_unlock_bh();
309795f4
JC
334
335 return NULL;
336}
2777e2ab 337EXPORT_SYMBOL_GPL(l2tp_session_get_by_ifname);
309795f4 338
3953ae7b
GN
339int l2tp_session_register(struct l2tp_session *session,
340 struct l2tp_tunnel *tunnel)
dbdbc73b
GN
341{
342 struct l2tp_session *session_walk;
343 struct hlist_head *g_head;
344 struct hlist_head *head;
345 struct l2tp_net *pn;
f3c66d4e 346 int err;
dbdbc73b
GN
347
348 head = l2tp_session_id_hash(tunnel, session->session_id);
349
350 write_lock_bh(&tunnel->hlist_lock);
f3c66d4e
GN
351 if (!tunnel->acpt_newsess) {
352 err = -ENODEV;
353 goto err_tlock;
354 }
355
dbdbc73b 356 hlist_for_each_entry(session_walk, head, hlist)
f3c66d4e
GN
357 if (session_walk->session_id == session->session_id) {
358 err = -EEXIST;
359 goto err_tlock;
360 }
dbdbc73b
GN
361
362 if (tunnel->version == L2TP_HDR_VER_3) {
363 pn = l2tp_pernet(tunnel->l2tp_net);
363a341d 364 g_head = l2tp_session_id_hash_2(pn, session->session_id);
dbdbc73b
GN
365
366 spin_lock_bh(&pn->l2tp_session_hlist_lock);
f3c66d4e 367
0d0d9a38
RK
368 /* IP encap expects session IDs to be globally unique, while
369 * UDP encap doesn't.
370 */
dbdbc73b 371 hlist_for_each_entry(session_walk, g_head, global_hlist)
0d0d9a38
RK
372 if (session_walk->session_id == session->session_id &&
373 (session_walk->tunnel->encap == L2TP_ENCAPTYPE_IP ||
374 tunnel->encap == L2TP_ENCAPTYPE_IP)) {
f3c66d4e
GN
375 err = -EEXIST;
376 goto err_tlock_pnlock;
377 }
dbdbc73b 378
f3c66d4e 379 l2tp_tunnel_inc_refcount(tunnel);
dbdbc73b 380 hlist_add_head_rcu(&session->global_hlist, g_head);
f3c66d4e 381
dbdbc73b 382 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
f3c66d4e
GN
383 } else {
384 l2tp_tunnel_inc_refcount(tunnel);
dbdbc73b
GN
385 }
386
387 hlist_add_head(&session->hlist, head);
388 write_unlock_bh(&tunnel->hlist_lock);
389
6b7bdcd7
TP
390 trace_register_session(session);
391
dbdbc73b
GN
392 return 0;
393
f3c66d4e 394err_tlock_pnlock:
dbdbc73b 395 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
f3c66d4e 396err_tlock:
dbdbc73b
GN
397 write_unlock_bh(&tunnel->hlist_lock);
398
f3c66d4e 399 return err;
dbdbc73b 400}
3953ae7b 401EXPORT_SYMBOL_GPL(l2tp_session_register);
dbdbc73b 402
fd558d18
JC
403/*****************************************************************************
404 * Receive data handling
405 *****************************************************************************/
406
407/* Queue a skb in order. We come here only if the skb has an L2TP sequence
408 * number.
409 */
410static void l2tp_recv_queue_skb(struct l2tp_session *session, struct sk_buff *skb)
411{
412 struct sk_buff *skbp;
413 struct sk_buff *tmp;
f7faffa3 414 u32 ns = L2TP_SKB_CB(skb)->ns;
fd558d18
JC
415
416 spin_lock_bh(&session->reorder_q.lock);
417 skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
418 if (L2TP_SKB_CB(skbp)->ns > ns) {
419 __skb_queue_before(&session->reorder_q, skbp, skb);
7b7c0719 420 atomic_long_inc(&session->stats.rx_oos_packets);
fd558d18
JC
421 goto out;
422 }
423 }
424
425 __skb_queue_tail(&session->reorder_q, skb);
426
427out:
428 spin_unlock_bh(&session->reorder_q.lock);
429}
430
431/* Dequeue a single skb.
432 */
433static void l2tp_recv_dequeue_skb(struct l2tp_session *session, struct sk_buff *skb)
434{
435 struct l2tp_tunnel *tunnel = session->tunnel;
436 int length = L2TP_SKB_CB(skb)->length;
437
438 /* We're about to requeue the skb, so return resources
439 * to its current owner (a socket receive buffer).
440 */
441 skb_orphan(skb);
442
7b7c0719
TP
443 atomic_long_inc(&tunnel->stats.rx_packets);
444 atomic_long_add(length, &tunnel->stats.rx_bytes);
445 atomic_long_inc(&session->stats.rx_packets);
446 atomic_long_add(length, &session->stats.rx_bytes);
fd558d18
JC
447
448 if (L2TP_SKB_CB(skb)->has_seq) {
449 /* Bump our Nr */
450 session->nr++;
8a1631d5 451 session->nr &= session->nr_max;
6b7bdcd7 452 trace_session_seqnum_update(session);
fd558d18
JC
453 }
454
455 /* call private receive handler */
0febc7b3 456 if (session->recv_skb)
fd558d18
JC
457 (*session->recv_skb)(session, skb, L2TP_SKB_CB(skb)->length);
458 else
459 kfree_skb(skb);
fd558d18
JC
460}
461
462/* Dequeue skbs from the session's reorder_q, subject to packet order.
463 * Skbs that have been in the queue for too long are simply discarded.
464 */
465static void l2tp_recv_dequeue(struct l2tp_session *session)
466{
467 struct sk_buff *skb;
468 struct sk_buff *tmp;
469
470 /* If the pkt at the head of the queue has the nr that we
471 * expect to send up next, dequeue it and any other
472 * in-sequence packets behind it.
473 */
e2e210c0 474start:
fd558d18
JC
475 spin_lock_bh(&session->reorder_q.lock);
476 skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
6b7bdcd7
TP
477 struct l2tp_skb_cb *cb = L2TP_SKB_CB(skb);
478
479 /* If the packet has been pending on the queue for too long, discard it */
480 if (time_after(jiffies, cb->expires)) {
7b7c0719
TP
481 atomic_long_inc(&session->stats.rx_seq_discards);
482 atomic_long_inc(&session->stats.rx_errors);
6b7bdcd7 483 trace_session_pkt_expired(session, cb->ns);
38d40b3f 484 session->reorder_skip = 1;
fd558d18
JC
485 __skb_unlink(skb, &session->reorder_q);
486 kfree_skb(skb);
fd558d18
JC
487 continue;
488 }
489
6b7bdcd7 490 if (cb->has_seq) {
38d40b3f 491 if (session->reorder_skip) {
38d40b3f 492 session->reorder_skip = 0;
6b7bdcd7
TP
493 session->nr = cb->ns;
494 trace_session_seqnum_reset(session);
38d40b3f 495 }
6b7bdcd7 496 if (cb->ns != session->nr)
fd558d18 497 goto out;
fd558d18
JC
498 }
499 __skb_unlink(skb, &session->reorder_q);
500
501 /* Process the skb. We release the queue lock while we
502 * do so to let other contexts process the queue.
503 */
504 spin_unlock_bh(&session->reorder_q.lock);
505 l2tp_recv_dequeue_skb(session, skb);
e2e210c0 506 goto start;
fd558d18
JC
507 }
508
509out:
510 spin_unlock_bh(&session->reorder_q.lock);
511}
512
8a1631d5
JC
513static int l2tp_seq_check_rx_window(struct l2tp_session *session, u32 nr)
514{
515 u32 nws;
516
517 if (nr >= session->nr)
518 nws = nr - session->nr;
519 else
520 nws = (session->nr_max + 1) - (session->nr - nr);
521
522 return nws < session->nr_window_size;
523}
524
b6dc01a4
JC
525/* If packet has sequence numbers, queue it if acceptable. Returns 0 if
526 * acceptable, else non-zero.
527 */
528static int l2tp_recv_data_seq(struct l2tp_session *session, struct sk_buff *skb)
529{
6b7bdcd7
TP
530 struct l2tp_skb_cb *cb = L2TP_SKB_CB(skb);
531
532 if (!l2tp_seq_check_rx_window(session, cb->ns)) {
8a1631d5
JC
533 /* Packet sequence number is outside allowed window.
534 * Discard it.
535 */
6b7bdcd7 536 trace_session_pkt_outside_rx_window(session, cb->ns);
8a1631d5
JC
537 goto discard;
538 }
539
b6dc01a4
JC
540 if (session->reorder_timeout != 0) {
541 /* Packet reordering enabled. Add skb to session's
542 * reorder queue, in order of ns.
543 */
544 l2tp_recv_queue_skb(session, skb);
a0dbd822
JC
545 goto out;
546 }
547
548 /* Packet reordering disabled. Discard out-of-sequence packets, while
549 * tracking the number if in-sequence packets after the first OOS packet
550 * is seen. After nr_oos_count_max in-sequence packets, reset the
551 * sequence number to re-enable packet reception.
552 */
6b7bdcd7 553 if (cb->ns == session->nr) {
a0dbd822 554 skb_queue_tail(&session->reorder_q, skb);
b6dc01a4 555 } else {
6b7bdcd7 556 u32 nr_oos = cb->ns;
a0dbd822
JC
557 u32 nr_next = (session->nr_oos + 1) & session->nr_max;
558
559 if (nr_oos == nr_next)
560 session->nr_oos_count++;
561 else
562 session->nr_oos_count = 0;
563
564 session->nr_oos = nr_oos;
565 if (session->nr_oos_count > session->nr_oos_count_max) {
566 session->reorder_skip = 1;
a0dbd822
JC
567 }
568 if (!session->reorder_skip) {
b6dc01a4 569 atomic_long_inc(&session->stats.rx_seq_discards);
6b7bdcd7 570 trace_session_pkt_oos(session, cb->ns);
b6dc01a4
JC
571 goto discard;
572 }
573 skb_queue_tail(&session->reorder_q, skb);
574 }
575
a0dbd822 576out:
b6dc01a4
JC
577 return 0;
578
579discard:
580 return 1;
581}
582
f7faffa3
JC
583/* Do receive processing of L2TP data frames. We handle both L2TPv2
584 * and L2TPv3 data frames here.
585 *
586 * L2TPv2 Data Message Header
587 *
588 * 0 1 2 3
589 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
590 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
591 * |T|L|x|x|S|x|O|P|x|x|x|x| Ver | Length (opt) |
592 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
593 * | Tunnel ID | Session ID |
594 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
595 * | Ns (opt) | Nr (opt) |
596 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
597 * | Offset Size (opt) | Offset pad... (opt)
598 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
599 *
600 * Data frames are marked by T=0. All other fields are the same as
601 * those in L2TP control frames.
602 *
603 * L2TPv3 Data Message Header
604 *
605 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
606 * | L2TP Session Header |
607 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
608 * | L2-Specific Sublayer |
609 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
610 * | Tunnel Payload ...
611 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
612 *
613 * L2TPv3 Session Header Over IP
614 *
615 * 0 1 2 3
616 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
617 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
618 * | Session ID |
619 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
620 * | Cookie (optional, maximum 64 bits)...
621 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
622 * |
623 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
624 *
625 * L2TPv3 L2-Specific Sublayer Format
626 *
627 * 0 1 2 3
628 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
629 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
630 * |x|S|x|x|x|x|x|x| Sequence Number |
631 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
632 *
23fe846f
GN
633 * Cookie value and sublayer format are negotiated with the peer when
634 * the session is set up. Unlike L2TPv2, we do not need to parse the
635 * packet header to determine if optional fields are present.
f7faffa3
JC
636 *
637 * Caller must already have parsed the frame and determined that it is
638 * a data (not control) frame before coming here. Fields up to the
639 * session-id have already been parsed and ptr points to the data
640 * after the session-id.
fd558d18 641 */
f7faffa3
JC
642void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
643 unsigned char *ptr, unsigned char *optr, u16 hdrflags,
2b139e6b 644 int length)
fd558d18 645{
f7faffa3 646 struct l2tp_tunnel *tunnel = session->tunnel;
fd558d18 647 int offset;
fd558d18 648
f7faffa3
JC
649 /* Parse and check optional cookie */
650 if (session->peer_cookie_len > 0) {
651 if (memcmp(ptr, &session->peer_cookie[0], session->peer_cookie_len)) {
5ee759cd
TP
652 pr_warn_ratelimited("%s: cookie mismatch (%u/%u). Discarding.\n",
653 tunnel->name, tunnel->tunnel_id,
654 session->session_id);
7b7c0719 655 atomic_long_inc(&session->stats.rx_cookie_discards);
f7faffa3
JC
656 goto discard;
657 }
658 ptr += session->peer_cookie_len;
659 }
660
fd558d18
JC
661 /* Handle the optional sequence numbers. Sequence numbers are
662 * in different places for L2TPv2 and L2TPv3.
663 *
664 * If we are the LAC, enable/disable sequence numbers under
665 * the control of the LNS. If no sequence numbers present but
666 * we were expecting them, discard frame.
667 */
fd558d18 668 L2TP_SKB_CB(skb)->has_seq = 0;
f7faffa3
JC
669 if (tunnel->version == L2TP_HDR_VER_2) {
670 if (hdrflags & L2TP_HDRFLAG_S) {
f7faffa3 671 /* Store L2TP info in the skb */
12923365 672 L2TP_SKB_CB(skb)->ns = ntohs(*(__be16 *)ptr);
f7faffa3 673 L2TP_SKB_CB(skb)->has_seq = 1;
12923365
TP
674 ptr += 2;
675 /* Skip past nr in the header */
676 ptr += 2;
fd558d18 677
f7faffa3
JC
678 }
679 } else if (session->l2specific_type == L2TP_L2SPECTYPE_DEFAULT) {
b71a61cc 680 u32 l2h = ntohl(*(__be32 *)ptr);
f7faffa3
JC
681
682 if (l2h & 0x40000000) {
f7faffa3 683 /* Store L2TP info in the skb */
12923365 684 L2TP_SKB_CB(skb)->ns = l2h & 0x00ffffff;
f7faffa3 685 L2TP_SKB_CB(skb)->has_seq = 1;
f7faffa3 686 }
62e7b6a5 687 ptr += 4;
fd558d18
JC
688 }
689
690 if (L2TP_SKB_CB(skb)->has_seq) {
20dcb110 691 /* Received a packet with sequence numbers. If we're the LAC,
fd558d18
JC
692 * check if we sre sending sequence numbers and if not,
693 * configure it so.
694 */
6c0ec37b 695 if (!session->lns_mode && !session->send_seq) {
6b7bdcd7 696 trace_session_seqnum_lns_enable(session);
3f9b9770 697 session->send_seq = 1;
f7faffa3 698 l2tp_session_set_header_len(session, tunnel->version);
fd558d18
JC
699 }
700 } else {
701 /* No sequence numbers.
702 * If user has configured mandatory sequence numbers, discard.
703 */
704 if (session->recv_seq) {
5ee759cd
TP
705 pr_warn_ratelimited("%s: recv data has no seq numbers when required. Discarding.\n",
706 session->name);
7b7c0719 707 atomic_long_inc(&session->stats.rx_seq_discards);
fd558d18
JC
708 goto discard;
709 }
710
711 /* If we're the LAC and we're sending sequence numbers, the
712 * LNS has requested that we no longer send sequence numbers.
713 * If we're the LNS and we're sending sequence numbers, the
714 * LAC is broken. Discard the frame.
715 */
6c0ec37b 716 if (!session->lns_mode && session->send_seq) {
6b7bdcd7 717 trace_session_seqnum_lns_disable(session);
fd558d18 718 session->send_seq = 0;
f7faffa3 719 l2tp_session_set_header_len(session, tunnel->version);
fd558d18 720 } else if (session->send_seq) {
5ee759cd
TP
721 pr_warn_ratelimited("%s: recv data has no seq numbers when required. Discarding.\n",
722 session->name);
7b7c0719 723 atomic_long_inc(&session->stats.rx_seq_discards);
fd558d18
JC
724 goto discard;
725 }
726 }
727
900631ee
JC
728 /* Session data offset is defined only for L2TPv2 and is
729 * indicated by an optional 16-bit value in the header.
f7faffa3
JC
730 */
731 if (tunnel->version == L2TP_HDR_VER_2) {
732 /* If offset bit set, skip it. */
733 if (hdrflags & L2TP_HDRFLAG_O) {
734 offset = ntohs(*(__be16 *)ptr);
735 ptr += 2 + offset;
736 }
900631ee 737 }
fd558d18
JC
738
739 offset = ptr - optr;
740 if (!pskb_may_pull(skb, offset))
741 goto discard;
742
743 __skb_pull(skb, offset);
744
fd558d18
JC
745 /* Prepare skb for adding to the session's reorder_q. Hold
746 * packets for max reorder_timeout or 1 second if not
747 * reordering.
748 */
749 L2TP_SKB_CB(skb)->length = length;
750 L2TP_SKB_CB(skb)->expires = jiffies +
751 (session->reorder_timeout ? session->reorder_timeout : HZ);
752
753 /* Add packet to the session's receive queue. Reordering is done here, if
754 * enabled. Saved L2TP protocol info is stored in skb->sb[].
755 */
756 if (L2TP_SKB_CB(skb)->has_seq) {
b6dc01a4
JC
757 if (l2tp_recv_data_seq(session, skb))
758 goto discard;
fd558d18
JC
759 } else {
760 /* No sequence numbers. Add the skb to the tail of the
761 * reorder queue. This ensures that it will be
762 * delivered after all previous sequenced skbs.
763 */
764 skb_queue_tail(&session->reorder_q, skb);
765 }
766
767 /* Try to dequeue as many skbs from reorder_q as we can. */
768 l2tp_recv_dequeue(session);
769
f7faffa3 770 return;
fd558d18
JC
771
772discard:
7b7c0719 773 atomic_long_inc(&session->stats.rx_errors);
fd558d18 774 kfree_skb(skb);
f7faffa3 775}
ca7885db 776EXPORT_SYMBOL_GPL(l2tp_recv_common);
f7faffa3 777
48f72f92
TP
778/* Drop skbs from the session's reorder_q
779 */
493048f5 780static void l2tp_session_queue_purge(struct l2tp_session *session)
48f72f92
TP
781{
782 struct sk_buff *skb = NULL;
b71a61cc 783
48f72f92
TP
784 while ((skb = skb_dequeue(&session->reorder_q))) {
785 atomic_long_inc(&session->stats.rx_errors);
786 kfree_skb(skb);
48f72f92 787 }
48f72f92 788}
48f72f92 789
f7faffa3
JC
790/* Internal UDP receive frame. Do the real work of receiving an L2TP data frame
791 * here. The skb is not on a list when we get here.
792 * Returns 0 if the packet was a data packet and was successfully passed on.
793 * Returns 1 if the packet was not a good data packet and could not be
794 * forwarded. All such packets are passed up to userspace to deal with.
795 */
2b139e6b 796static int l2tp_udp_recv_core(struct l2tp_tunnel *tunnel, struct sk_buff *skb)
f7faffa3
JC
797{
798 struct l2tp_session *session = NULL;
799 unsigned char *ptr, *optr;
800 u16 hdrflags;
801 u32 tunnel_id, session_id;
f7faffa3
JC
802 u16 version;
803 int length;
804
58d6085c 805 /* UDP has verifed checksum */
f7faffa3
JC
806
807 /* UDP always verifies the packet length. */
808 __skb_pull(skb, sizeof(struct udphdr));
809
810 /* Short packet? */
91c52470 811 if (!pskb_may_pull(skb, L2TP_HDR_SIZE_MAX)) {
5ee759cd
TP
812 pr_warn_ratelimited("%s: recv short packet (len=%d)\n",
813 tunnel->name, skb->len);
f7faffa3
JC
814 goto error;
815 }
816
e50e705c 817 /* Point to L2TP header */
95075150
TP
818 optr = skb->data;
819 ptr = skb->data;
e50e705c 820
f7faffa3 821 /* Get L2TP header flags */
b71a61cc 822 hdrflags = ntohs(*(__be16 *)ptr);
f7faffa3
JC
823
824 /* Check protocol version */
825 version = hdrflags & L2TP_HDR_VER_MASK;
826 if (version != tunnel->version) {
5ee759cd
TP
827 pr_warn_ratelimited("%s: recv protocol version mismatch: got %d expected %d\n",
828 tunnel->name, version, tunnel->version);
f7faffa3
JC
829 goto error;
830 }
831
832 /* Get length of L2TP packet */
833 length = skb->len;
834
835 /* If type is control packet, it is handled by userspace. */
12923365 836 if (hdrflags & L2TP_HDRFLAG_T)
f7faffa3 837 goto error;
f7faffa3
JC
838
839 /* Skip flags */
840 ptr += 2;
841
842 if (tunnel->version == L2TP_HDR_VER_2) {
843 /* If length is present, skip it */
844 if (hdrflags & L2TP_HDRFLAG_L)
845 ptr += 2;
846
847 /* Extract tunnel and session ID */
b71a61cc 848 tunnel_id = ntohs(*(__be16 *)ptr);
f7faffa3 849 ptr += 2;
b71a61cc 850 session_id = ntohs(*(__be16 *)ptr);
f7faffa3
JC
851 ptr += 2;
852 } else {
853 ptr += 2; /* skip reserved bits */
854 tunnel_id = tunnel->tunnel_id;
b71a61cc 855 session_id = ntohl(*(__be32 *)ptr);
f7faffa3
JC
856 ptr += 4;
857 }
858
859 /* Find the session context */
01e28b92 860 session = l2tp_tunnel_get_session(tunnel, session_id);
309795f4 861 if (!session || !session->recv_skb) {
a4346210 862 if (session)
61b9a047 863 l2tp_session_dec_refcount(session);
61b9a047 864
f7faffa3 865 /* Not found? Pass to userspace to deal with */
5ee759cd
TP
866 pr_warn_ratelimited("%s: no session found (%u/%u). Passing up.\n",
867 tunnel->name, tunnel_id, session_id);
f7faffa3
JC
868 goto error;
869 }
870
4522a70d
JW
871 if (tunnel->version == L2TP_HDR_VER_3 &&
872 l2tp_v3_ensure_opt_in_linear(session, skb, &ptr, &optr))
873 goto error;
874
2b139e6b 875 l2tp_recv_common(session, skb, ptr, optr, hdrflags, length);
61b9a047 876 l2tp_session_dec_refcount(session);
fd558d18
JC
877
878 return 0;
879
fd558d18
JC
880error:
881 /* Put UDP header back */
882 __skb_push(skb, sizeof(struct udphdr));
883
884 return 1;
885}
fd558d18
JC
886
887/* UDP encapsulation receive handler. See net/ipv4/udp.c.
888 * Return codes:
889 * 0 : success.
890 * <0: error
891 * >0: skb should be passed up to userspace as UDP.
892 */
893int l2tp_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
894{
895 struct l2tp_tunnel *tunnel;
896
45faeff1
TP
897 /* Note that this is called from the encap_rcv hook inside an
898 * RCU-protected region, but without the socket being locked.
899 * Hence we use rcu_dereference_sk_user_data to access the
900 * tunnel data structure rather the usual l2tp_sk_to_tunnel
901 * accessor function.
902 */
c1c47721 903 tunnel = rcu_dereference_sk_user_data(sk);
0febc7b3 904 if (!tunnel)
fd558d18 905 goto pass_up;
45faeff1
TP
906 if (WARN_ON(tunnel->magic != L2TP_TUNNEL_MAGIC))
907 goto pass_up;
fd558d18 908
2b139e6b 909 if (l2tp_udp_recv_core(tunnel, skb))
d00fa9ad 910 goto pass_up;
fd558d18 911
fd558d18
JC
912 return 0;
913
fd558d18
JC
914pass_up:
915 return 1;
916}
917EXPORT_SYMBOL_GPL(l2tp_udp_encap_recv);
918
919/************************************************************************
920 * Transmit handling
921 ***********************************************************************/
922
923/* Build an L2TP header for the session into the buffer provided.
924 */
f7faffa3 925static int l2tp_build_l2tpv2_header(struct l2tp_session *session, void *buf)
fd558d18 926{
f7faffa3 927 struct l2tp_tunnel *tunnel = session->tunnel;
fd558d18 928 __be16 *bufp = buf;
f7faffa3 929 __be16 *optr = buf;
fd558d18
JC
930 u16 flags = L2TP_HDR_VER_2;
931 u32 tunnel_id = tunnel->peer_tunnel_id;
932 u32 session_id = session->peer_session_id;
933
934 if (session->send_seq)
935 flags |= L2TP_HDRFLAG_S;
936
937 /* Setup L2TP header. */
938 *bufp++ = htons(flags);
939 *bufp++ = htons(tunnel_id);
940 *bufp++ = htons(session_id);
941 if (session->send_seq) {
942 *bufp++ = htons(session->ns);
943 *bufp++ = 0;
944 session->ns++;
f7faffa3 945 session->ns &= 0xffff;
6b7bdcd7 946 trace_session_seqnum_update(session);
fd558d18 947 }
f7faffa3
JC
948
949 return bufp - optr;
fd558d18
JC
950}
951
f7faffa3 952static int l2tp_build_l2tpv3_header(struct l2tp_session *session, void *buf)
fd558d18 953{
0d76751f 954 struct l2tp_tunnel *tunnel = session->tunnel;
f7faffa3
JC
955 char *bufp = buf;
956 char *optr = bufp;
f7faffa3 957
0d76751f
JC
958 /* Setup L2TP header. The header differs slightly for UDP and
959 * IP encapsulations. For UDP, there is 4 bytes of flags.
960 */
961 if (tunnel->encap == L2TP_ENCAPTYPE_UDP) {
962 u16 flags = L2TP_HDR_VER_3;
b71a61cc 963 *((__be16 *)bufp) = htons(flags);
0d76751f 964 bufp += 2;
b71a61cc 965 *((__be16 *)bufp) = 0;
0d76751f
JC
966 bufp += 2;
967 }
968
b71a61cc 969 *((__be32 *)bufp) = htonl(session->peer_session_id);
f7faffa3
JC
970 bufp += 4;
971 if (session->cookie_len) {
972 memcpy(bufp, &session->cookie[0], session->cookie_len);
973 bufp += session->cookie_len;
974 }
62e7b6a5
LB
975 if (session->l2specific_type == L2TP_L2SPECTYPE_DEFAULT) {
976 u32 l2h = 0;
f7faffa3 977
62e7b6a5
LB
978 if (session->send_seq) {
979 l2h = 0x40000000 | session->ns;
980 session->ns++;
981 session->ns &= 0xffffff;
6b7bdcd7 982 trace_session_seqnum_update(session);
f7faffa3 983 }
62e7b6a5
LB
984
985 *((__be32 *)bufp) = htonl(l2h);
986 bufp += 4;
f7faffa3 987 }
fd558d18 988
f7faffa3 989 return bufp - optr;
fd558d18 990}
fd558d18 991
de68b039
TP
992/* Queue the packet to IP for output: tunnel socket lock must be held */
993static int l2tp_xmit_queue(struct l2tp_tunnel *tunnel, struct sk_buff *skb, struct flowi *fl)
fd558d18 994{
de68b039 995 int err;
fd558d18 996
60ff7467 997 skb->ignore_df = 1;
27d53323 998 skb_dst_drop(skb);
d2cf3361 999#if IS_ENABLED(CONFIG_IPV6)
b954f940 1000 if (l2tp_sk_is_v6(tunnel->sock))
de68b039 1001 err = inet6_csk_xmit(tunnel->sock, skb, NULL);
d2cf3361
BL
1002 else
1003#endif
de68b039 1004 err = ip_queue_xmit(tunnel->sock, skb, fl);
fd558d18 1005
de68b039 1006 return err >= 0 ? NET_XMIT_SUCCESS : NET_XMIT_DROP;
fd558d18 1007}
fd558d18 1008
de68b039 1009static int l2tp_xmit_core(struct l2tp_session *session, struct sk_buff *skb)
fd558d18 1010{
0d76751f 1011 struct l2tp_tunnel *tunnel = session->tunnel;
de68b039 1012 unsigned int data_len = skb->len;
0d76751f 1013 struct sock *sk = tunnel->sock;
de68b039 1014 int headroom, uhlen, udp_len;
b8c84307 1015 int ret = NET_XMIT_SUCCESS;
de68b039
TP
1016 struct inet_sock *inet;
1017 struct udphdr *uh;
fd558d18
JC
1018
1019 /* Check that there's enough headroom in the skb to insert IP,
1020 * UDP and L2TP headers. If not enough, expand it to
1021 * make room. Adjust truesize.
1022 */
de68b039
TP
1023 uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(*uh) : 0;
1024 headroom = NET_SKB_PAD + sizeof(struct iphdr) + uhlen + session->hdr_len;
835acf5d 1025 if (skb_cow_head(skb, headroom)) {
b8c84307
ED
1026 kfree_skb(skb);
1027 return NET_XMIT_DROP;
835acf5d 1028 }
fd558d18 1029
fd558d18 1030 /* Setup L2TP header */
2dedab6f 1031 if (tunnel->version == L2TP_HDR_VER_2)
efe05278 1032 l2tp_build_l2tpv2_header(session, __skb_push(skb, session->hdr_len));
2dedab6f 1033 else
efe05278 1034 l2tp_build_l2tpv3_header(session, __skb_push(skb, session->hdr_len));
fd558d18 1035
0d76751f 1036 /* Reset skb netfilter state */
fd558d18 1037 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
de68b039 1038 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED | IPSKB_REROUTED);
895b5c9f 1039 nf_reset_ct(skb);
fd558d18 1040
6af88da1
DM
1041 bh_lock_sock(sk);
1042 if (sock_owned_by_user(sk)) {
b8c84307
ED
1043 kfree_skb(skb);
1044 ret = NET_XMIT_DROP;
6af88da1
DM
1045 goto out_unlock;
1046 }
1047
b954f940
PA
1048 /* The user-space may change the connection status for the user-space
1049 * provided socket at run time: we must check it under the socket lock
1050 */
1051 if (tunnel->fd >= 0 && sk->sk_state != TCP_ESTABLISHED) {
1052 kfree_skb(skb);
1053 ret = NET_XMIT_DROP;
1054 goto out_unlock;
1055 }
1056
d9d8da80 1057 inet = inet_sk(sk);
0d76751f
JC
1058 switch (tunnel->encap) {
1059 case L2TP_ENCAPTYPE_UDP:
1060 /* Setup UDP header */
0d76751f
JC
1061 __skb_push(skb, sizeof(*uh));
1062 skb_reset_transport_header(skb);
1063 uh = udp_hdr(skb);
1064 uh->source = inet->inet_sport;
1065 uh->dest = inet->inet_dport;
efe05278 1066 udp_len = uhlen + session->hdr_len + data_len;
0d76751f 1067 uh->len = htons(udp_len);
0d76751f
JC
1068
1069 /* Calculate UDP checksum if configured to do so */
d2cf3361 1070#if IS_ENABLED(CONFIG_IPV6)
b954f940 1071 if (l2tp_sk_is_v6(sk))
77157e19
TH
1072 udp6_set_csum(udp_get_no_check6_tx(sk),
1073 skb, &inet6_sk(sk)->saddr,
1074 &sk->sk_v6_daddr, udp_len);
d2cf3361
BL
1075 else
1076#endif
0864e331
TP
1077 udp_set_csum(sk->sk_no_check_tx, skb, inet->inet_saddr,
1078 inet->inet_daddr, udp_len);
0d76751f
JC
1079 break;
1080
1081 case L2TP_ENCAPTYPE_IP:
1082 break;
fd558d18
JC
1083 }
1084
de68b039
TP
1085 ret = l2tp_xmit_queue(tunnel, skb, &inet->cork.fl);
1086
6af88da1
DM
1087out_unlock:
1088 bh_unlock_sock(sk);
fd558d18 1089
b8c84307 1090 return ret;
fd558d18 1091}
de68b039
TP
1092
1093/* If caller requires the skb to have a ppp header, the header must be
1094 * inserted in the skb data before calling this function.
1095 */
1096int l2tp_xmit_skb(struct l2tp_session *session, struct sk_buff *skb)
1097{
1098 unsigned int len = skb->len;
1099 int ret;
1100
1101 ret = l2tp_xmit_core(session, skb);
1102 if (ret == NET_XMIT_SUCCESS) {
1103 atomic_long_inc(&session->tunnel->stats.tx_packets);
1104 atomic_long_add(len, &session->tunnel->stats.tx_bytes);
1105 atomic_long_inc(&session->stats.tx_packets);
1106 atomic_long_add(len, &session->stats.tx_bytes);
1107 } else {
1108 atomic_long_inc(&session->tunnel->stats.tx_errors);
1109 atomic_long_inc(&session->stats.tx_errors);
1110 }
1111 return ret;
1112}
fd558d18
JC
1113EXPORT_SYMBOL_GPL(l2tp_xmit_skb);
1114
1115/*****************************************************************************
1116 * Tinnel and session create/destroy.
1117 *****************************************************************************/
1118
1119/* Tunnel socket destruct hook.
1120 * The tunnel context is deleted only when all session sockets have been
1121 * closed.
1122 */
fc130840 1123static void l2tp_tunnel_destruct(struct sock *sk)
fd558d18 1124{
45faeff1 1125 struct l2tp_tunnel *tunnel = l2tp_sk_to_tunnel(sk);
fd558d18 1126
0febc7b3 1127 if (!tunnel)
fd558d18
JC
1128 goto end;
1129
f8ccac0e 1130 /* Disable udp encapsulation */
0d76751f
JC
1131 switch (tunnel->encap) {
1132 case L2TP_ENCAPTYPE_UDP:
1133 /* No longer an encapsulation socket. See net/ipv4/udp.c */
1134 (udp_sk(sk))->encap_type = 0;
1135 (udp_sk(sk))->encap_rcv = NULL;
9980d001 1136 (udp_sk(sk))->encap_destroy = NULL;
0d76751f
JC
1137 break;
1138 case L2TP_ENCAPTYPE_IP:
1139 break;
1140 }
fd558d18
JC
1141
1142 /* Remove hooks into tunnel socket */
fd558d18
JC
1143 sk->sk_destruct = tunnel->old_sk_destruct;
1144 sk->sk_user_data = NULL;
1145
f8ccac0e
TP
1146 /* Call the original destructor */
1147 if (sk->sk_destruct)
1148 (*sk->sk_destruct)(sk);
d00fa9ad
JC
1149
1150 kfree_rcu(tunnel, rcu);
fd558d18
JC
1151end:
1152 return;
1153}
fd558d18 1154
b2aecfe8
TP
1155/* Remove an l2tp session from l2tp_core's hash lists. */
1156static void l2tp_session_unhash(struct l2tp_session *session)
1157{
1158 struct l2tp_tunnel *tunnel = session->tunnel;
1159
1160 /* Remove the session from core hashes */
1161 if (tunnel) {
1162 /* Remove from the per-tunnel hash */
1163 write_lock_bh(&tunnel->hlist_lock);
1164 hlist_del_init(&session->hlist);
1165 write_unlock_bh(&tunnel->hlist_lock);
1166
1167 /* For L2TPv3 we have a per-net hash: remove from there, too */
1168 if (tunnel->version != L2TP_HDR_VER_2) {
1169 struct l2tp_net *pn = l2tp_pernet(tunnel->l2tp_net);
1170
1171 spin_lock_bh(&pn->l2tp_session_hlist_lock);
1172 hlist_del_init_rcu(&session->global_hlist);
1173 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
1174 synchronize_rcu();
1175 }
1176 }
1177}
1178
fd558d18
JC
1179/* When the tunnel is closed, all the attached sessions need to go too.
1180 */
d08532bb 1181static void l2tp_tunnel_closeall(struct l2tp_tunnel *tunnel)
fd558d18
JC
1182{
1183 int hash;
1184 struct hlist_node *walk;
1185 struct hlist_node *tmp;
1186 struct l2tp_session *session;
1187
fd558d18 1188 write_lock_bh(&tunnel->hlist_lock);
f3c66d4e 1189 tunnel->acpt_newsess = false;
fd558d18
JC
1190 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
1191again:
1192 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
1193 session = hlist_entry(walk, struct l2tp_session, hlist);
fd558d18
JC
1194 hlist_del_init(&session->hlist);
1195
fd558d18 1196 write_unlock_bh(&tunnel->hlist_lock);
9d319a8e 1197 l2tp_session_delete(session);
fd558d18
JC
1198 write_lock_bh(&tunnel->hlist_lock);
1199
1200 /* Now restart from the beginning of this hash
1201 * chain. We always remove a session from the
1202 * list so we are guaranteed to make forward
1203 * progress.
1204 */
1205 goto again;
1206 }
1207 }
1208 write_unlock_bh(&tunnel->hlist_lock);
1209}
fd558d18 1210
9980d001
TP
1211/* Tunnel socket destroy hook for UDP encapsulation */
1212static void l2tp_udp_encap_destroy(struct sock *sk)
1213{
45faeff1 1214 struct l2tp_tunnel *tunnel = l2tp_sk_to_tunnel(sk);
d00fa9ad
JC
1215
1216 if (tunnel)
1217 l2tp_tunnel_delete(tunnel);
9980d001
TP
1218}
1219
f8ccac0e
TP
1220/* Workqueue tunnel deletion function */
1221static void l2tp_tunnel_del_work(struct work_struct *work)
1222{
d00fa9ad
JC
1223 struct l2tp_tunnel *tunnel = container_of(work, struct l2tp_tunnel,
1224 del_work);
1225 struct sock *sk = tunnel->sock;
1226 struct socket *sock = sk->sk_socket;
28f5bfb8 1227 struct l2tp_net *pn;
12d656af
RK
1228
1229 l2tp_tunnel_closeall(tunnel);
1230
76a6abdb 1231 /* If the tunnel socket was created within the kernel, use
02d13ed5 1232 * the sk API to release it here.
f8ccac0e 1233 */
76a6abdb 1234 if (tunnel->fd < 0) {
26abe143 1235 if (sock) {
02d13ed5 1236 kernel_sock_shutdown(sock, SHUT_RDWR);
26abe143
EB
1237 sock_release(sock);
1238 }
167eb17e 1239 }
f8ccac0e 1240
28f5bfb8
JC
1241 /* Remove the tunnel struct from the tunnel list */
1242 pn = l2tp_pernet(tunnel->l2tp_net);
1243 spin_lock_bh(&pn->l2tp_tunnel_list_lock);
1244 list_del_rcu(&tunnel->list);
1245 spin_unlock_bh(&pn->l2tp_tunnel_list_lock);
1246
d00fa9ad
JC
1247 /* drop initial ref */
1248 l2tp_tunnel_dec_refcount(tunnel);
1249
1250 /* drop workqueue ref */
06a15f51 1251 l2tp_tunnel_dec_refcount(tunnel);
fd558d18 1252}
fd558d18 1253
789a4a2c
JC
1254/* Create a socket for the tunnel, if one isn't set up by
1255 * userspace. This is used for static tunnels where there is no
1256 * managing L2TP daemon.
167eb17e
TP
1257 *
1258 * Since we don't want these sockets to keep a namespace alive by
1259 * themselves, we drop the socket's namespace refcount after creation.
1260 * These sockets are freed when the namespace exits using the pernet
1261 * exit hook.
789a4a2c 1262 */
167eb17e 1263static int l2tp_tunnel_sock_create(struct net *net,
8ce9825a
TP
1264 u32 tunnel_id,
1265 u32 peer_tunnel_id,
1266 struct l2tp_tunnel_cfg *cfg,
1267 struct socket **sockp)
789a4a2c
JC
1268{
1269 int err = -EINVAL;
167eb17e 1270 struct socket *sock = NULL;
85644b4d 1271 struct udp_port_cfg udp_conf;
789a4a2c
JC
1272
1273 switch (cfg->encap) {
1274 case L2TP_ENCAPTYPE_UDP:
85644b4d
TH
1275 memset(&udp_conf, 0, sizeof(udp_conf));
1276
f9bac8df
CE
1277#if IS_ENABLED(CONFIG_IPV6)
1278 if (cfg->local_ip6 && cfg->peer_ip6) {
85644b4d
TH
1279 udp_conf.family = AF_INET6;
1280 memcpy(&udp_conf.local_ip6, cfg->local_ip6,
1281 sizeof(udp_conf.local_ip6));
1282 memcpy(&udp_conf.peer_ip6, cfg->peer_ip6,
1283 sizeof(udp_conf.peer_ip6));
1284 udp_conf.use_udp6_tx_checksums =
b71a61cc 1285 !cfg->udp6_zero_tx_checksums;
85644b4d 1286 udp_conf.use_udp6_rx_checksums =
b71a61cc 1287 !cfg->udp6_zero_rx_checksums;
f9bac8df
CE
1288 } else
1289#endif
1290 {
85644b4d
TH
1291 udp_conf.family = AF_INET;
1292 udp_conf.local_ip = cfg->local_ip;
1293 udp_conf.peer_ip = cfg->peer_ip;
1294 udp_conf.use_udp_checksums = cfg->use_udp_checksums;
f9bac8df 1295 }
789a4a2c 1296
85644b4d
TH
1297 udp_conf.local_udp_port = htons(cfg->local_udp_port);
1298 udp_conf.peer_udp_port = htons(cfg->peer_udp_port);
1299
1300 err = udp_sock_create(net, &udp_conf, &sock);
1301 if (err < 0)
1302 goto out;
789a4a2c
JC
1303
1304 break;
1305
1306 case L2TP_ENCAPTYPE_IP:
f9bac8df
CE
1307#if IS_ENABLED(CONFIG_IPV6)
1308 if (cfg->local_ip6 && cfg->peer_ip6) {
85644b4d
TH
1309 struct sockaddr_l2tpip6 ip6_addr = {0};
1310
26abe143 1311 err = sock_create_kern(net, AF_INET6, SOCK_DGRAM,
8ce9825a 1312 IPPROTO_L2TP, &sock);
5dac94e1
JC
1313 if (err < 0)
1314 goto out;
789a4a2c 1315
5dac94e1
JC
1316 ip6_addr.l2tp_family = AF_INET6;
1317 memcpy(&ip6_addr.l2tp_addr, cfg->local_ip6,
1318 sizeof(ip6_addr.l2tp_addr));
1319 ip6_addr.l2tp_conn_id = tunnel_id;
b71a61cc 1320 err = kernel_bind(sock, (struct sockaddr *)&ip6_addr,
5dac94e1
JC
1321 sizeof(ip6_addr));
1322 if (err < 0)
1323 goto out;
789a4a2c 1324
5dac94e1
JC
1325 ip6_addr.l2tp_family = AF_INET6;
1326 memcpy(&ip6_addr.l2tp_addr, cfg->peer_ip6,
1327 sizeof(ip6_addr.l2tp_addr));
1328 ip6_addr.l2tp_conn_id = peer_tunnel_id;
1329 err = kernel_connect(sock,
b71a61cc 1330 (struct sockaddr *)&ip6_addr,
5dac94e1
JC
1331 sizeof(ip6_addr), 0);
1332 if (err < 0)
1333 goto out;
1334 } else
1335#endif
1336 {
85644b4d
TH
1337 struct sockaddr_l2tpip ip_addr = {0};
1338
26abe143 1339 err = sock_create_kern(net, AF_INET, SOCK_DGRAM,
8ce9825a 1340 IPPROTO_L2TP, &sock);
5dac94e1
JC
1341 if (err < 0)
1342 goto out;
789a4a2c 1343
5dac94e1
JC
1344 ip_addr.l2tp_family = AF_INET;
1345 ip_addr.l2tp_addr = cfg->local_ip;
1346 ip_addr.l2tp_conn_id = tunnel_id;
b71a61cc 1347 err = kernel_bind(sock, (struct sockaddr *)&ip_addr,
5dac94e1
JC
1348 sizeof(ip_addr));
1349 if (err < 0)
1350 goto out;
1351
1352 ip_addr.l2tp_family = AF_INET;
1353 ip_addr.l2tp_addr = cfg->peer_ip;
1354 ip_addr.l2tp_conn_id = peer_tunnel_id;
b71a61cc 1355 err = kernel_connect(sock, (struct sockaddr *)&ip_addr,
5dac94e1
JC
1356 sizeof(ip_addr), 0);
1357 if (err < 0)
1358 goto out;
1359 }
789a4a2c
JC
1360 break;
1361
1362 default:
1363 goto out;
1364 }
1365
1366out:
167eb17e 1367 *sockp = sock;
6c0ec37b 1368 if (err < 0 && sock) {
167eb17e 1369 kernel_sock_shutdown(sock, SHUT_RDWR);
26abe143 1370 sock_release(sock);
789a4a2c
JC
1371 *sockp = NULL;
1372 }
1373
1374 return err;
1375}
1376
37159ef2
ED
1377static struct lock_class_key l2tp_socket_class;
1378
c9ccd4c6 1379int l2tp_tunnel_create(int fd, int version, u32 tunnel_id, u32 peer_tunnel_id,
c0235fb3 1380 struct l2tp_tunnel_cfg *cfg, struct l2tp_tunnel **tunnelp)
fd558d18
JC
1381{
1382 struct l2tp_tunnel *tunnel = NULL;
1383 int err;
0d76751f 1384 enum l2tp_encap_type encap = L2TP_ENCAPTYPE_UDP;
fd558d18 1385
0febc7b3 1386 if (cfg)
0d76751f
JC
1387 encap = cfg->encap;
1388
70c05bfa 1389 tunnel = kzalloc(sizeof(*tunnel), GFP_KERNEL);
0febc7b3 1390 if (!tunnel) {
fd558d18
JC
1391 err = -ENOMEM;
1392 goto err;
1393 }
1394
1395 tunnel->version = version;
1396 tunnel->tunnel_id = tunnel_id;
1397 tunnel->peer_tunnel_id = peer_tunnel_id;
fd558d18
JC
1398
1399 tunnel->magic = L2TP_TUNNEL_MAGIC;
1400 sprintf(&tunnel->name[0], "tunl %u", tunnel_id);
1401 rwlock_init(&tunnel->hlist_lock);
f3c66d4e 1402 tunnel->acpt_newsess = true;
fd558d18 1403
0d76751f 1404 tunnel->encap = encap;
fd558d18 1405
d00fa9ad 1406 refcount_set(&tunnel->ref_count, 1);
d00fa9ad
JC
1407 tunnel->fd = fd;
1408
f8ccac0e
TP
1409 /* Init delete workqueue struct */
1410 INIT_WORK(&tunnel->del_work, l2tp_tunnel_del_work);
1411
fd558d18 1412 INIT_LIST_HEAD(&tunnel->list);
fd558d18
JC
1413
1414 err = 0;
1415err:
1416 if (tunnelp)
1417 *tunnelp = tunnel;
1418
fd558d18
JC
1419 return err;
1420}
1421EXPORT_SYMBOL_GPL(l2tp_tunnel_create);
1422
6b9f3423
GN
1423static int l2tp_validate_socket(const struct sock *sk, const struct net *net,
1424 enum l2tp_encap_type encap)
1425{
1426 if (!net_eq(sock_net(sk), net))
1427 return -EINVAL;
1428
1429 if (sk->sk_type != SOCK_DGRAM)
1430 return -EPROTONOSUPPORT;
1431
d9a81a22
ED
1432 if (sk->sk_family != PF_INET && sk->sk_family != PF_INET6)
1433 return -EPROTONOSUPPORT;
1434
6b9f3423
GN
1435 if ((encap == L2TP_ENCAPTYPE_UDP && sk->sk_protocol != IPPROTO_UDP) ||
1436 (encap == L2TP_ENCAPTYPE_IP && sk->sk_protocol != IPPROTO_L2TP))
1437 return -EPROTONOSUPPORT;
1438
1439 if (sk->sk_user_data)
1440 return -EBUSY;
1441
1442 return 0;
1443}
1444
1445int l2tp_tunnel_register(struct l2tp_tunnel *tunnel, struct net *net,
1446 struct l2tp_tunnel_cfg *cfg)
1447{
f6cd651b 1448 struct l2tp_tunnel *tunnel_walk;
6b9f3423
GN
1449 struct l2tp_net *pn;
1450 struct socket *sock;
1451 struct sock *sk;
1452 int ret;
1453
1454 if (tunnel->fd < 0) {
1455 ret = l2tp_tunnel_sock_create(net, tunnel->tunnel_id,
1456 tunnel->peer_tunnel_id, cfg,
1457 &sock);
1458 if (ret < 0)
1459 goto err;
1460 } else {
1461 sock = sockfd_lookup(tunnel->fd, &ret);
1462 if (!sock)
1463 goto err;
1464
1465 ret = l2tp_validate_socket(sock->sk, net, tunnel->encap);
1466 if (ret < 0)
1467 goto err_sock;
1468 }
1469
6b9f3423 1470 tunnel->l2tp_net = net;
6b9f3423 1471 pn = l2tp_pernet(net);
f6cd651b 1472
6b9f3423 1473 spin_lock_bh(&pn->l2tp_tunnel_list_lock);
f6cd651b
GN
1474 list_for_each_entry(tunnel_walk, &pn->l2tp_tunnel_list, list) {
1475 if (tunnel_walk->tunnel_id == tunnel->tunnel_id) {
1476 spin_unlock_bh(&pn->l2tp_tunnel_list_lock);
1477
1478 ret = -EEXIST;
1479 goto err_sock;
1480 }
1481 }
6b9f3423
GN
1482 list_add_rcu(&tunnel->list, &pn->l2tp_tunnel_list);
1483 spin_unlock_bh(&pn->l2tp_tunnel_list_lock);
1484
f8504f4c
XL
1485 sk = sock->sk;
1486 sock_hold(sk);
1487 tunnel->sock = sk;
1488
6b9f3423
GN
1489 if (tunnel->encap == L2TP_ENCAPTYPE_UDP) {
1490 struct udp_tunnel_sock_cfg udp_cfg = {
1491 .sk_user_data = tunnel,
1492 .encap_type = UDP_ENCAP_L2TPINUDP,
1493 .encap_rcv = l2tp_udp_encap_recv,
1494 .encap_destroy = l2tp_udp_encap_destroy,
1495 };
1496
1497 setup_udp_tunnel_sock(net, sock, &udp_cfg);
1498 } else {
1499 sk->sk_user_data = tunnel;
1500 }
1501
1502 tunnel->old_sk_destruct = sk->sk_destruct;
1503 sk->sk_destruct = &l2tp_tunnel_destruct;
1504 lockdep_set_class_and_name(&sk->sk_lock.slock, &l2tp_socket_class,
1505 "l2tp_sock");
1506 sk->sk_allocation = GFP_ATOMIC;
1507
6b7bdcd7
TP
1508 trace_register_tunnel(tunnel);
1509
6b9f3423
GN
1510 if (tunnel->fd >= 0)
1511 sockfd_put(sock);
1512
1513 return 0;
1514
1515err_sock:
f6cd651b
GN
1516 if (tunnel->fd < 0)
1517 sock_release(sock);
1518 else
1519 sockfd_put(sock);
6b9f3423
GN
1520err:
1521 return ret;
1522}
1523EXPORT_SYMBOL_GPL(l2tp_tunnel_register);
1524
309795f4
JC
1525/* This function is used by the netlink TUNNEL_DELETE command.
1526 */
62b982ee 1527void l2tp_tunnel_delete(struct l2tp_tunnel *tunnel)
309795f4 1528{
62b982ee 1529 if (!test_and_set_bit(0, &tunnel->dead)) {
6b7bdcd7 1530 trace_delete_tunnel(tunnel);
62b982ee
SD
1531 l2tp_tunnel_inc_refcount(tunnel);
1532 queue_work(l2tp_wq, &tunnel->del_work);
06a15f51 1533 }
309795f4
JC
1534}
1535EXPORT_SYMBOL_GPL(l2tp_tunnel_delete);
1536
628703f5 1537void l2tp_session_delete(struct l2tp_session *session)
309795f4 1538{
b228a940 1539 if (test_and_set_bit(0, &session->dead))
628703f5 1540 return;
b228a940 1541
6b7bdcd7 1542 trace_delete_session(session);
b2aecfe8 1543 l2tp_session_unhash(session);
4c6e2fd3 1544 l2tp_session_queue_purge(session);
0febc7b3 1545 if (session->session_close)
309795f4 1546 (*session->session_close)(session);
a4346210 1547
309795f4 1548 l2tp_session_dec_refcount(session);
309795f4
JC
1549}
1550EXPORT_SYMBOL_GPL(l2tp_session_delete);
1551
f7faffa3 1552/* We come here whenever a session's send_seq, cookie_len or
62e7b6a5 1553 * l2specific_type parameters are set.
f7faffa3 1554 */
bb5016ea 1555void l2tp_session_set_header_len(struct l2tp_session *session, int version)
f7faffa3
JC
1556{
1557 if (version == L2TP_HDR_VER_2) {
1558 session->hdr_len = 6;
1559 if (session->send_seq)
1560 session->hdr_len += 4;
1561 } else {
62e7b6a5
LB
1562 session->hdr_len = 4 + session->cookie_len;
1563 session->hdr_len += l2tp_get_l2specific_len(session);
0d76751f
JC
1564 if (session->tunnel->encap == L2TP_ENCAPTYPE_UDP)
1565 session->hdr_len += 4;
f7faffa3 1566 }
f7faffa3 1567}
bb5016ea 1568EXPORT_SYMBOL_GPL(l2tp_session_set_header_len);
f7faffa3 1569
c0235fb3
TP
1570struct l2tp_session *l2tp_session_create(int priv_size, struct l2tp_tunnel *tunnel, u32 session_id,
1571 u32 peer_session_id, struct l2tp_session_cfg *cfg)
fd558d18
JC
1572{
1573 struct l2tp_session *session;
1574
70c05bfa 1575 session = kzalloc(sizeof(*session) + priv_size, GFP_KERNEL);
0febc7b3 1576 if (session) {
fd558d18
JC
1577 session->magic = L2TP_SESSION_MAGIC;
1578 session->tunnel = tunnel;
1579
1580 session->session_id = session_id;
1581 session->peer_session_id = peer_session_id;
d301e325 1582 session->nr = 0;
8a1631d5
JC
1583 if (tunnel->version == L2TP_HDR_VER_2)
1584 session->nr_max = 0xffff;
1585 else
1586 session->nr_max = 0xffffff;
1587 session->nr_window_size = session->nr_max / 2;
a0dbd822
JC
1588 session->nr_oos_count_max = 4;
1589
1590 /* Use NR of first received packet */
1591 session->reorder_skip = 1;
fd558d18
JC
1592
1593 sprintf(&session->name[0], "sess %u/%u",
1594 tunnel->tunnel_id, session->session_id);
1595
1596 skb_queue_head_init(&session->reorder_q);
1597
1598 INIT_HLIST_NODE(&session->hlist);
f7faffa3 1599 INIT_HLIST_NODE(&session->global_hlist);
fd558d18 1600
fd558d18 1601 if (cfg) {
f7faffa3 1602 session->pwtype = cfg->pw_type;
fd558d18
JC
1603 session->send_seq = cfg->send_seq;
1604 session->recv_seq = cfg->recv_seq;
1605 session->lns_mode = cfg->lns_mode;
f7faffa3 1606 session->reorder_timeout = cfg->reorder_timeout;
f7faffa3 1607 session->l2specific_type = cfg->l2specific_type;
f7faffa3
JC
1608 session->cookie_len = cfg->cookie_len;
1609 memcpy(&session->cookie[0], &cfg->cookie[0], cfg->cookie_len);
1610 session->peer_cookie_len = cfg->peer_cookie_len;
1611 memcpy(&session->peer_cookie[0], &cfg->peer_cookie[0], cfg->peer_cookie_len);
fd558d18
JC
1612 }
1613
f7faffa3
JC
1614 l2tp_session_set_header_len(session, tunnel->version);
1615
9ee369a4
GN
1616 refcount_set(&session->ref_count, 1);
1617
dbdbc73b 1618 return session;
fd558d18
JC
1619 }
1620
dbdbc73b 1621 return ERR_PTR(-ENOMEM);
fd558d18
JC
1622}
1623EXPORT_SYMBOL_GPL(l2tp_session_create);
1624
1625/*****************************************************************************
1626 * Init and cleanup
1627 *****************************************************************************/
1628
1629static __net_init int l2tp_init_net(struct net *net)
1630{
e773aaff 1631 struct l2tp_net *pn = net_generic(net, l2tp_net_id);
f7faffa3 1632 int hash;
fd558d18 1633
fd558d18 1634 INIT_LIST_HEAD(&pn->l2tp_tunnel_list);
e02d494d 1635 spin_lock_init(&pn->l2tp_tunnel_list_lock);
fd558d18 1636
f7faffa3
JC
1637 for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++)
1638 INIT_HLIST_HEAD(&pn->l2tp_session_hlist[hash]);
1639
e02d494d 1640 spin_lock_init(&pn->l2tp_session_hlist_lock);
f7faffa3 1641
fd558d18 1642 return 0;
fd558d18
JC
1643}
1644
167eb17e
TP
1645static __net_exit void l2tp_exit_net(struct net *net)
1646{
1647 struct l2tp_net *pn = l2tp_pernet(net);
1648 struct l2tp_tunnel *tunnel = NULL;
1e7af3b2 1649 int hash;
167eb17e
TP
1650
1651 rcu_read_lock_bh();
1652 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
4dc12ffe 1653 l2tp_tunnel_delete(tunnel);
167eb17e
TP
1654 }
1655 rcu_read_unlock_bh();
2f86953e 1656
638a3a1e
Y
1657 if (l2tp_wq)
1658 flush_workqueue(l2tp_wq);
2f86953e 1659 rcu_barrier();
1e7af3b2
VA
1660
1661 for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++)
1662 WARN_ON_ONCE(!hlist_empty(&pn->l2tp_session_hlist[hash]));
167eb17e
TP
1663}
1664
fd558d18
JC
1665static struct pernet_operations l2tp_net_ops = {
1666 .init = l2tp_init_net,
167eb17e 1667 .exit = l2tp_exit_net,
fd558d18
JC
1668 .id = &l2tp_net_id,
1669 .size = sizeof(struct l2tp_net),
1670};
1671
1672static int __init l2tp_init(void)
1673{
1674 int rc = 0;
1675
1676 rc = register_pernet_device(&l2tp_net_ops);
1677 if (rc)
1678 goto out;
1679
59ff3eb6 1680 l2tp_wq = alloc_workqueue("l2tp", WQ_UNBOUND, 0);
f8ccac0e
TP
1681 if (!l2tp_wq) {
1682 pr_err("alloc_workqueue failed\n");
67e04c29 1683 unregister_pernet_device(&l2tp_net_ops);
f8ccac0e
TP
1684 rc = -ENOMEM;
1685 goto out;
1686 }
1687
a4ca44fa 1688 pr_info("L2TP core driver, %s\n", L2TP_DRV_VERSION);
fd558d18
JC
1689
1690out:
1691 return rc;
1692}
1693
1694static void __exit l2tp_exit(void)
1695{
1696 unregister_pernet_device(&l2tp_net_ops);
f8ccac0e
TP
1697 if (l2tp_wq) {
1698 destroy_workqueue(l2tp_wq);
1699 l2tp_wq = NULL;
1700 }
fd558d18
JC
1701}
1702
1703module_init(l2tp_init);
1704module_exit(l2tp_exit);
1705
1706MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1707MODULE_DESCRIPTION("L2TP core");
1708MODULE_LICENSE("GPL");
1709MODULE_VERSION(L2TP_DRV_VERSION);