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