blob: e841ef2a68a55e337b1a32886718a3c3329cbc4e [file] [log] [blame]
James Chapmanfd558d12010-04-02 06:18:33 +00001/*
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
Joe Perchesa4ca44f2012-05-16 09:55:56 +000021#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
James Chapmanfd558d12010-04-02 06:18:33 +000023#include <linux/module.h>
24#include <linux/string.h>
25#include <linux/list.h>
James Chapmane02d4942010-04-02 06:19:16 +000026#include <linux/rculist.h>
James Chapmanfd558d12010-04-02 06:18:33 +000027#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>
James Chapman0d767512010-04-02 06:19:00 +000042#include <linux/in.h>
James Chapmanfd558d12010-04-02 06:18:33 +000043#include <linux/ip.h>
44#include <linux/udp.h>
James Chapman0d767512010-04-02 06:19:00 +000045#include <linux/l2tp.h>
James Chapmanfd558d12010-04-02 06:18:33 +000046#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>
James Chapman309795f2010-04-02 06:19:10 +000055#include <net/inet_common.h>
James Chapmanfd558d12010-04-02 06:18:33 +000056#include <net/xfrm.h>
James Chapman0d767512010-04-02 06:19:00 +000057#include <net/protocol.h>
Benjamin LaHaised2cf3362012-04-27 08:24:18 +000058#include <net/inet6_connection_sock.h>
59#include <net/inet_ecn.h>
60#include <net/ip6_route.h>
David S. Millerd499bd22012-04-30 13:21:28 -040061#include <net/ip6_checksum.h>
James Chapmanfd558d12010-04-02 06:18:33 +000062
63#include <asm/byteorder.h>
Arun Sharma600634972011-07-26 16:09:06 -070064#include <linux/atomic.h>
James Chapmanfd558d12010-04-02 06:18:33 +000065
66#include "l2tp_core.h"
67
68#define L2TP_DRV_VERSION "V2.0"
69
70/* L2TP header constants */
71#define L2TP_HDRFLAG_T 0x8000
72#define L2TP_HDRFLAG_L 0x4000
73#define L2TP_HDRFLAG_S 0x0800
74#define L2TP_HDRFLAG_O 0x0200
75#define L2TP_HDRFLAG_P 0x0100
76
77#define L2TP_HDR_VER_MASK 0x000F
78#define L2TP_HDR_VER_2 0x0002
James Chapmanf7faffa2010-04-02 06:18:49 +000079#define L2TP_HDR_VER_3 0x0003
James Chapmanfd558d12010-04-02 06:18:33 +000080
81/* L2TPv3 default L2-specific sublayer */
82#define L2TP_SLFLAG_S 0x40000000
83#define L2TP_SL_SEQ_MASK 0x00ffffff
84
85#define L2TP_HDR_SIZE_SEQ 10
86#define L2TP_HDR_SIZE_NOSEQ 6
87
88/* Default trace flags */
89#define L2TP_DEFAULT_DEBUG_FLAGS 0
90
James Chapmanfd558d12010-04-02 06:18:33 +000091/* Private data stored for received packets in the skb.
92 */
93struct l2tp_skb_cb {
James Chapmanf7faffa2010-04-02 06:18:49 +000094 u32 ns;
James Chapmanfd558d12010-04-02 06:18:33 +000095 u16 has_seq;
96 u16 length;
97 unsigned long expires;
98};
99
100#define L2TP_SKB_CB(skb) ((struct l2tp_skb_cb *) &skb->cb[sizeof(struct inet_skb_parm)])
101
102static atomic_t l2tp_tunnel_count;
103static atomic_t l2tp_session_count;
Tom Parkinf8ccac02013-01-31 23:43:00 +0000104static struct workqueue_struct *l2tp_wq;
James Chapmanfd558d12010-04-02 06:18:33 +0000105
106/* per-net private data for this module */
107static unsigned int l2tp_net_id;
108struct l2tp_net {
109 struct list_head l2tp_tunnel_list;
James Chapmane02d4942010-04-02 06:19:16 +0000110 spinlock_t l2tp_tunnel_list_lock;
James Chapmanf7faffa2010-04-02 06:18:49 +0000111 struct hlist_head l2tp_session_hlist[L2TP_HASH_SIZE_2];
James Chapmane02d4942010-04-02 06:19:16 +0000112 spinlock_t l2tp_session_hlist_lock;
James Chapmanfd558d12010-04-02 06:18:33 +0000113};
114
stephen hemmingerfc130842010-10-21 07:50:46 +0000115static void l2tp_session_set_header_len(struct l2tp_session *session, int version);
116static void l2tp_tunnel_free(struct l2tp_tunnel *tunnel);
stephen hemmingerfc130842010-10-21 07:50:46 +0000117
James Chapmanfd558d12010-04-02 06:18:33 +0000118static inline struct l2tp_net *l2tp_pernet(struct net *net)
119{
120 BUG_ON(!net);
121
122 return net_generic(net, l2tp_net_id);
123}
124
stephen hemmingerfc130842010-10-21 07:50:46 +0000125/* Tunnel reference counts. Incremented per session that is added to
126 * the tunnel.
127 */
128static inline void l2tp_tunnel_inc_refcount_1(struct l2tp_tunnel *tunnel)
129{
130 atomic_inc(&tunnel->ref_count);
131}
132
133static inline void l2tp_tunnel_dec_refcount_1(struct l2tp_tunnel *tunnel)
134{
135 if (atomic_dec_and_test(&tunnel->ref_count))
136 l2tp_tunnel_free(tunnel);
137}
138#ifdef L2TP_REFCNT_DEBUG
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000139#define l2tp_tunnel_inc_refcount(_t) \
140do { \
141 pr_debug("l2tp_tunnel_inc_refcount: %s:%d %s: cnt=%d\n", \
142 __func__, __LINE__, (_t)->name, \
143 atomic_read(&_t->ref_count)); \
144 l2tp_tunnel_inc_refcount_1(_t); \
145} while (0)
146#define l2tp_tunnel_dec_refcount(_t)
147do { \
148 pr_debug("l2tp_tunnel_dec_refcount: %s:%d %s: cnt=%d\n", \
149 __func__, __LINE__, (_t)->name, \
150 atomic_read(&_t->ref_count)); \
151 l2tp_tunnel_dec_refcount_1(_t); \
152} while (0)
stephen hemmingerfc130842010-10-21 07:50:46 +0000153#else
154#define l2tp_tunnel_inc_refcount(t) l2tp_tunnel_inc_refcount_1(t)
155#define l2tp_tunnel_dec_refcount(t) l2tp_tunnel_dec_refcount_1(t)
156#endif
157
James Chapmanf7faffa2010-04-02 06:18:49 +0000158/* Session hash global list for L2TPv3.
159 * The session_id SHOULD be random according to RFC3931, but several
160 * L2TP implementations use incrementing session_ids. So we do a real
161 * hash on the session_id, rather than a simple bitmask.
162 */
163static inline struct hlist_head *
164l2tp_session_id_hash_2(struct l2tp_net *pn, u32 session_id)
165{
166 return &pn->l2tp_session_hlist[hash_32(session_id, L2TP_HASH_BITS_2)];
167
168}
169
Tom Parkin80d84ef2013-01-22 05:13:48 +0000170/* Lookup the tunnel socket, possibly involving the fs code if the socket is
171 * owned by userspace. A struct sock returned from this function must be
172 * released using l2tp_tunnel_sock_put once you're done with it.
173 */
174struct sock *l2tp_tunnel_sock_lookup(struct l2tp_tunnel *tunnel)
175{
176 int err = 0;
177 struct socket *sock = NULL;
178 struct sock *sk = NULL;
179
180 if (!tunnel)
181 goto out;
182
183 if (tunnel->fd >= 0) {
184 /* Socket is owned by userspace, who might be in the process
185 * of closing it. Look the socket up using the fd to ensure
186 * consistency.
187 */
188 sock = sockfd_lookup(tunnel->fd, &err);
189 if (sock)
190 sk = sock->sk;
191 } else {
192 /* Socket is owned by kernelspace */
193 sk = tunnel->sock;
Tom Parkin8abbbe82013-03-19 06:11:17 +0000194 sock_hold(sk);
Tom Parkin80d84ef2013-01-22 05:13:48 +0000195 }
196
197out:
198 return sk;
199}
200EXPORT_SYMBOL_GPL(l2tp_tunnel_sock_lookup);
201
202/* Drop a reference to a tunnel socket obtained via. l2tp_tunnel_sock_put */
203void l2tp_tunnel_sock_put(struct sock *sk)
204{
205 struct l2tp_tunnel *tunnel = l2tp_sock_to_tunnel(sk);
206 if (tunnel) {
207 if (tunnel->fd >= 0) {
208 /* Socket is owned by userspace */
209 sockfd_put(sk->sk_socket);
210 }
211 sock_put(sk);
212 }
Tom Parkin8abbbe82013-03-19 06:11:17 +0000213 sock_put(sk);
Tom Parkin80d84ef2013-01-22 05:13:48 +0000214}
215EXPORT_SYMBOL_GPL(l2tp_tunnel_sock_put);
216
James Chapmanf7faffa2010-04-02 06:18:49 +0000217/* Lookup a session by id in the global session list
218 */
219static struct l2tp_session *l2tp_session_find_2(struct net *net, u32 session_id)
220{
221 struct l2tp_net *pn = l2tp_pernet(net);
222 struct hlist_head *session_list =
223 l2tp_session_id_hash_2(pn, session_id);
224 struct l2tp_session *session;
James Chapmanf7faffa2010-04-02 06:18:49 +0000225
James Chapmane02d4942010-04-02 06:19:16 +0000226 rcu_read_lock_bh();
Sasha Levinb67bfe02013-02-27 17:06:00 -0800227 hlist_for_each_entry_rcu(session, session_list, global_hlist) {
James Chapmanf7faffa2010-04-02 06:18:49 +0000228 if (session->session_id == session_id) {
James Chapmane02d4942010-04-02 06:19:16 +0000229 rcu_read_unlock_bh();
James Chapmanf7faffa2010-04-02 06:18:49 +0000230 return session;
231 }
232 }
James Chapmane02d4942010-04-02 06:19:16 +0000233 rcu_read_unlock_bh();
James Chapmanf7faffa2010-04-02 06:18:49 +0000234
235 return NULL;
236}
237
James Chapmanfd558d12010-04-02 06:18:33 +0000238/* Session hash list.
239 * The session_id SHOULD be random according to RFC2661, but several
240 * L2TP implementations (Cisco and Microsoft) use incrementing
241 * session_ids. So we do a real hash on the session_id, rather than a
242 * simple bitmask.
243 */
244static inline struct hlist_head *
245l2tp_session_id_hash(struct l2tp_tunnel *tunnel, u32 session_id)
246{
247 return &tunnel->session_hlist[hash_32(session_id, L2TP_HASH_BITS)];
248}
249
250/* Lookup a session by id
251 */
James Chapmanf7faffa2010-04-02 06:18:49 +0000252struct l2tp_session *l2tp_session_find(struct net *net, struct l2tp_tunnel *tunnel, u32 session_id)
James Chapmanfd558d12010-04-02 06:18:33 +0000253{
James Chapmanf7faffa2010-04-02 06:18:49 +0000254 struct hlist_head *session_list;
James Chapmanfd558d12010-04-02 06:18:33 +0000255 struct l2tp_session *session;
James Chapmanfd558d12010-04-02 06:18:33 +0000256
James Chapmanf7faffa2010-04-02 06:18:49 +0000257 /* In L2TPv3, session_ids are unique over all tunnels and we
258 * sometimes need to look them up before we know the
259 * tunnel.
260 */
261 if (tunnel == NULL)
262 return l2tp_session_find_2(net, session_id);
263
264 session_list = l2tp_session_id_hash(tunnel, session_id);
James Chapmanfd558d12010-04-02 06:18:33 +0000265 read_lock_bh(&tunnel->hlist_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800266 hlist_for_each_entry(session, session_list, hlist) {
James Chapmanfd558d12010-04-02 06:18:33 +0000267 if (session->session_id == session_id) {
268 read_unlock_bh(&tunnel->hlist_lock);
269 return session;
270 }
271 }
272 read_unlock_bh(&tunnel->hlist_lock);
273
274 return NULL;
275}
276EXPORT_SYMBOL_GPL(l2tp_session_find);
277
278struct l2tp_session *l2tp_session_find_nth(struct l2tp_tunnel *tunnel, int nth)
279{
280 int hash;
James Chapmanfd558d12010-04-02 06:18:33 +0000281 struct l2tp_session *session;
282 int count = 0;
283
284 read_lock_bh(&tunnel->hlist_lock);
285 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800286 hlist_for_each_entry(session, &tunnel->session_hlist[hash], hlist) {
James Chapmanfd558d12010-04-02 06:18:33 +0000287 if (++count > nth) {
288 read_unlock_bh(&tunnel->hlist_lock);
289 return session;
290 }
291 }
292 }
293
294 read_unlock_bh(&tunnel->hlist_lock);
295
296 return NULL;
297}
298EXPORT_SYMBOL_GPL(l2tp_session_find_nth);
299
James Chapman309795f2010-04-02 06:19:10 +0000300/* Lookup a session by interface name.
301 * This is very inefficient but is only used by management interfaces.
302 */
303struct l2tp_session *l2tp_session_find_by_ifname(struct net *net, char *ifname)
304{
305 struct l2tp_net *pn = l2tp_pernet(net);
306 int hash;
James Chapman309795f2010-04-02 06:19:10 +0000307 struct l2tp_session *session;
308
James Chapmane02d4942010-04-02 06:19:16 +0000309 rcu_read_lock_bh();
James Chapman309795f2010-04-02 06:19:10 +0000310 for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800311 hlist_for_each_entry_rcu(session, &pn->l2tp_session_hlist[hash], global_hlist) {
James Chapman309795f2010-04-02 06:19:10 +0000312 if (!strcmp(session->ifname, ifname)) {
James Chapmane02d4942010-04-02 06:19:16 +0000313 rcu_read_unlock_bh();
James Chapman309795f2010-04-02 06:19:10 +0000314 return session;
315 }
316 }
317 }
318
James Chapmane02d4942010-04-02 06:19:16 +0000319 rcu_read_unlock_bh();
James Chapman309795f2010-04-02 06:19:10 +0000320
321 return NULL;
322}
323EXPORT_SYMBOL_GPL(l2tp_session_find_by_ifname);
324
James Chapmanfd558d12010-04-02 06:18:33 +0000325/* Lookup a tunnel by id
326 */
327struct l2tp_tunnel *l2tp_tunnel_find(struct net *net, u32 tunnel_id)
328{
329 struct l2tp_tunnel *tunnel;
330 struct l2tp_net *pn = l2tp_pernet(net);
331
James Chapmane02d4942010-04-02 06:19:16 +0000332 rcu_read_lock_bh();
333 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
James Chapmanfd558d12010-04-02 06:18:33 +0000334 if (tunnel->tunnel_id == tunnel_id) {
James Chapmane02d4942010-04-02 06:19:16 +0000335 rcu_read_unlock_bh();
James Chapmanfd558d12010-04-02 06:18:33 +0000336 return tunnel;
337 }
338 }
James Chapmane02d4942010-04-02 06:19:16 +0000339 rcu_read_unlock_bh();
James Chapmanfd558d12010-04-02 06:18:33 +0000340
341 return NULL;
342}
343EXPORT_SYMBOL_GPL(l2tp_tunnel_find);
344
345struct l2tp_tunnel *l2tp_tunnel_find_nth(struct net *net, int nth)
346{
347 struct l2tp_net *pn = l2tp_pernet(net);
348 struct l2tp_tunnel *tunnel;
349 int count = 0;
350
James Chapmane02d4942010-04-02 06:19:16 +0000351 rcu_read_lock_bh();
352 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
James Chapmanfd558d12010-04-02 06:18:33 +0000353 if (++count > nth) {
James Chapmane02d4942010-04-02 06:19:16 +0000354 rcu_read_unlock_bh();
James Chapmanfd558d12010-04-02 06:18:33 +0000355 return tunnel;
356 }
357 }
358
James Chapmane02d4942010-04-02 06:19:16 +0000359 rcu_read_unlock_bh();
James Chapmanfd558d12010-04-02 06:18:33 +0000360
361 return NULL;
362}
363EXPORT_SYMBOL_GPL(l2tp_tunnel_find_nth);
364
365/*****************************************************************************
366 * Receive data handling
367 *****************************************************************************/
368
369/* Queue a skb in order. We come here only if the skb has an L2TP sequence
370 * number.
371 */
372static void l2tp_recv_queue_skb(struct l2tp_session *session, struct sk_buff *skb)
373{
374 struct sk_buff *skbp;
375 struct sk_buff *tmp;
James Chapmanf7faffa2010-04-02 06:18:49 +0000376 u32 ns = L2TP_SKB_CB(skb)->ns;
James Chapman5de7aee2012-04-29 21:48:46 +0000377 struct l2tp_stats *sstats;
James Chapmanfd558d12010-04-02 06:18:33 +0000378
379 spin_lock_bh(&session->reorder_q.lock);
James Chapman5de7aee2012-04-29 21:48:46 +0000380 sstats = &session->stats;
James Chapmanfd558d12010-04-02 06:18:33 +0000381 skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
382 if (L2TP_SKB_CB(skbp)->ns > ns) {
383 __skb_queue_before(&session->reorder_q, skbp, skb);
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000384 l2tp_dbg(session, L2TP_MSG_SEQ,
385 "%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
386 session->name, ns, L2TP_SKB_CB(skbp)->ns,
387 skb_queue_len(&session->reorder_q));
James Chapman5de7aee2012-04-29 21:48:46 +0000388 u64_stats_update_begin(&sstats->syncp);
389 sstats->rx_oos_packets++;
390 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000391 goto out;
392 }
393 }
394
395 __skb_queue_tail(&session->reorder_q, skb);
396
397out:
398 spin_unlock_bh(&session->reorder_q.lock);
399}
400
401/* Dequeue a single skb.
402 */
403static void l2tp_recv_dequeue_skb(struct l2tp_session *session, struct sk_buff *skb)
404{
405 struct l2tp_tunnel *tunnel = session->tunnel;
406 int length = L2TP_SKB_CB(skb)->length;
James Chapman5de7aee2012-04-29 21:48:46 +0000407 struct l2tp_stats *tstats, *sstats;
James Chapmanfd558d12010-04-02 06:18:33 +0000408
409 /* We're about to requeue the skb, so return resources
410 * to its current owner (a socket receive buffer).
411 */
412 skb_orphan(skb);
413
James Chapman5de7aee2012-04-29 21:48:46 +0000414 tstats = &tunnel->stats;
415 u64_stats_update_begin(&tstats->syncp);
416 sstats = &session->stats;
417 u64_stats_update_begin(&sstats->syncp);
418 tstats->rx_packets++;
419 tstats->rx_bytes += length;
420 sstats->rx_packets++;
421 sstats->rx_bytes += length;
422 u64_stats_update_end(&tstats->syncp);
423 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000424
425 if (L2TP_SKB_CB(skb)->has_seq) {
426 /* Bump our Nr */
427 session->nr++;
James Chapmanf7faffa2010-04-02 06:18:49 +0000428 if (tunnel->version == L2TP_HDR_VER_2)
429 session->nr &= 0xffff;
430 else
431 session->nr &= 0xffffff;
432
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000433 l2tp_dbg(session, L2TP_MSG_SEQ, "%s: updated nr to %hu\n",
434 session->name, session->nr);
James Chapmanfd558d12010-04-02 06:18:33 +0000435 }
436
437 /* call private receive handler */
438 if (session->recv_skb != NULL)
439 (*session->recv_skb)(session, skb, L2TP_SKB_CB(skb)->length);
440 else
441 kfree_skb(skb);
442
443 if (session->deref)
444 (*session->deref)(session);
445}
446
447/* Dequeue skbs from the session's reorder_q, subject to packet order.
448 * Skbs that have been in the queue for too long are simply discarded.
449 */
450static void l2tp_recv_dequeue(struct l2tp_session *session)
451{
452 struct sk_buff *skb;
453 struct sk_buff *tmp;
James Chapman5de7aee2012-04-29 21:48:46 +0000454 struct l2tp_stats *sstats;
James Chapmanfd558d12010-04-02 06:18:33 +0000455
456 /* If the pkt at the head of the queue has the nr that we
457 * expect to send up next, dequeue it and any other
458 * in-sequence packets behind it.
459 */
Eric Dumazete2e210c2011-11-02 22:47:44 +0000460start:
James Chapmanfd558d12010-04-02 06:18:33 +0000461 spin_lock_bh(&session->reorder_q.lock);
James Chapman5de7aee2012-04-29 21:48:46 +0000462 sstats = &session->stats;
James Chapmanfd558d12010-04-02 06:18:33 +0000463 skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
464 if (time_after(jiffies, L2TP_SKB_CB(skb)->expires)) {
James Chapman5de7aee2012-04-29 21:48:46 +0000465 u64_stats_update_begin(&sstats->syncp);
466 sstats->rx_seq_discards++;
467 sstats->rx_errors++;
468 u64_stats_update_end(&sstats->syncp);
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000469 l2tp_dbg(session, L2TP_MSG_SEQ,
470 "%s: oos pkt %u len %d discarded (too old), waiting for %u, reorder_q_len=%d\n",
471 session->name, L2TP_SKB_CB(skb)->ns,
472 L2TP_SKB_CB(skb)->length, session->nr,
473 skb_queue_len(&session->reorder_q));
James Chapman38d40b32012-05-09 23:43:08 +0000474 session->reorder_skip = 1;
James Chapmanfd558d12010-04-02 06:18:33 +0000475 __skb_unlink(skb, &session->reorder_q);
476 kfree_skb(skb);
477 if (session->deref)
478 (*session->deref)(session);
479 continue;
480 }
481
482 if (L2TP_SKB_CB(skb)->has_seq) {
James Chapman38d40b32012-05-09 23:43:08 +0000483 if (session->reorder_skip) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000484 l2tp_dbg(session, L2TP_MSG_SEQ,
485 "%s: advancing nr to next pkt: %u -> %u",
486 session->name, session->nr,
487 L2TP_SKB_CB(skb)->ns);
James Chapman38d40b32012-05-09 23:43:08 +0000488 session->reorder_skip = 0;
489 session->nr = L2TP_SKB_CB(skb)->ns;
490 }
James Chapmanfd558d12010-04-02 06:18:33 +0000491 if (L2TP_SKB_CB(skb)->ns != session->nr) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000492 l2tp_dbg(session, L2TP_MSG_SEQ,
493 "%s: holding oos pkt %u len %d, waiting for %u, reorder_q_len=%d\n",
494 session->name, L2TP_SKB_CB(skb)->ns,
495 L2TP_SKB_CB(skb)->length, session->nr,
496 skb_queue_len(&session->reorder_q));
James Chapmanfd558d12010-04-02 06:18:33 +0000497 goto out;
498 }
499 }
500 __skb_unlink(skb, &session->reorder_q);
501
502 /* Process the skb. We release the queue lock while we
503 * do so to let other contexts process the queue.
504 */
505 spin_unlock_bh(&session->reorder_q.lock);
506 l2tp_recv_dequeue_skb(session, skb);
Eric Dumazete2e210c2011-11-02 22:47:44 +0000507 goto start;
James Chapmanfd558d12010-04-02 06:18:33 +0000508 }
509
510out:
511 spin_unlock_bh(&session->reorder_q.lock);
512}
513
514static inline int l2tp_verify_udp_checksum(struct sock *sk,
515 struct sk_buff *skb)
516{
517 struct udphdr *uh = udp_hdr(skb);
518 u16 ulen = ntohs(uh->len);
James Chapmanfd558d12010-04-02 06:18:33 +0000519 __wsum psum;
520
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000521 if (sk->sk_no_check || skb_csum_unnecessary(skb))
James Chapmanfd558d12010-04-02 06:18:33 +0000522 return 0;
523
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000524#if IS_ENABLED(CONFIG_IPV6)
525 if (sk->sk_family == PF_INET6) {
526 if (!uh->check) {
527 LIMIT_NETDEBUG(KERN_INFO "L2TP: IPv6: checksum is 0\n");
528 return 1;
529 }
530 if ((skb->ip_summed == CHECKSUM_COMPLETE) &&
531 !csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
532 &ipv6_hdr(skb)->daddr, ulen,
533 IPPROTO_UDP, skb->csum)) {
534 skb->ip_summed = CHECKSUM_UNNECESSARY;
535 return 0;
536 }
537 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
538 &ipv6_hdr(skb)->daddr,
539 skb->len, IPPROTO_UDP,
540 0));
541 } else
542#endif
543 {
544 struct inet_sock *inet;
545 if (!uh->check)
546 return 0;
547 inet = inet_sk(sk);
548 psum = csum_tcpudp_nofold(inet->inet_saddr, inet->inet_daddr,
549 ulen, IPPROTO_UDP, 0);
James Chapmanfd558d12010-04-02 06:18:33 +0000550
Benjamin LaHaised2cf3362012-04-27 08:24:18 +0000551 if ((skb->ip_summed == CHECKSUM_COMPLETE) &&
552 !csum_fold(csum_add(psum, skb->csum)))
553 return 0;
554 skb->csum = psum;
555 }
James Chapmanfd558d12010-04-02 06:18:33 +0000556
557 return __skb_checksum_complete(skb);
558}
559
James Chapmanf7faffa2010-04-02 06:18:49 +0000560/* Do receive processing of L2TP data frames. We handle both L2TPv2
561 * and L2TPv3 data frames here.
562 *
563 * L2TPv2 Data Message Header
564 *
565 * 0 1 2 3
566 * 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
567 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
568 * |T|L|x|x|S|x|O|P|x|x|x|x| Ver | Length (opt) |
569 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
570 * | Tunnel ID | Session ID |
571 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
572 * | Ns (opt) | Nr (opt) |
573 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
574 * | Offset Size (opt) | Offset pad... (opt)
575 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
576 *
577 * Data frames are marked by T=0. All other fields are the same as
578 * those in L2TP control frames.
579 *
580 * L2TPv3 Data Message Header
581 *
582 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
583 * | L2TP Session Header |
584 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
585 * | L2-Specific Sublayer |
586 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
587 * | Tunnel Payload ...
588 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
589 *
590 * L2TPv3 Session Header Over IP
591 *
592 * 0 1 2 3
593 * 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
594 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
595 * | Session ID |
596 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
597 * | Cookie (optional, maximum 64 bits)...
598 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
599 * |
600 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
601 *
602 * L2TPv3 L2-Specific Sublayer Format
603 *
604 * 0 1 2 3
605 * 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
606 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
607 * |x|S|x|x|x|x|x|x| Sequence Number |
608 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
609 *
610 * Cookie value, sublayer format and offset (pad) are negotiated with
611 * the peer when the session is set up. Unlike L2TPv2, we do not need
612 * to parse the packet header to determine if optional fields are
613 * present.
614 *
615 * Caller must already have parsed the frame and determined that it is
616 * a data (not control) frame before coming here. Fields up to the
617 * session-id have already been parsed and ptr points to the data
618 * after the session-id.
James Chapmanfd558d12010-04-02 06:18:33 +0000619 */
James Chapmanf7faffa2010-04-02 06:18:49 +0000620void l2tp_recv_common(struct l2tp_session *session, struct sk_buff *skb,
621 unsigned char *ptr, unsigned char *optr, u16 hdrflags,
622 int length, int (*payload_hook)(struct sk_buff *skb))
James Chapmanfd558d12010-04-02 06:18:33 +0000623{
James Chapmanf7faffa2010-04-02 06:18:49 +0000624 struct l2tp_tunnel *tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +0000625 int offset;
James Chapmanf7faffa2010-04-02 06:18:49 +0000626 u32 ns, nr;
James Chapman5de7aee2012-04-29 21:48:46 +0000627 struct l2tp_stats *sstats = &session->stats;
James Chapmanfd558d12010-04-02 06:18:33 +0000628
629 /* The ref count is increased since we now hold a pointer to
630 * the session. Take care to decrement the refcnt when exiting
631 * this function from now on...
632 */
633 l2tp_session_inc_refcount(session);
634 if (session->ref)
635 (*session->ref)(session);
636
James Chapmanf7faffa2010-04-02 06:18:49 +0000637 /* Parse and check optional cookie */
638 if (session->peer_cookie_len > 0) {
639 if (memcmp(ptr, &session->peer_cookie[0], session->peer_cookie_len)) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000640 l2tp_info(tunnel, L2TP_MSG_DATA,
641 "%s: cookie mismatch (%u/%u). Discarding.\n",
642 tunnel->name, tunnel->tunnel_id,
643 session->session_id);
James Chapman5de7aee2012-04-29 21:48:46 +0000644 u64_stats_update_begin(&sstats->syncp);
645 sstats->rx_cookie_discards++;
646 u64_stats_update_end(&sstats->syncp);
James Chapmanf7faffa2010-04-02 06:18:49 +0000647 goto discard;
648 }
649 ptr += session->peer_cookie_len;
650 }
651
James Chapmanfd558d12010-04-02 06:18:33 +0000652 /* Handle the optional sequence numbers. Sequence numbers are
653 * in different places for L2TPv2 and L2TPv3.
654 *
655 * If we are the LAC, enable/disable sequence numbers under
656 * the control of the LNS. If no sequence numbers present but
657 * we were expecting them, discard frame.
658 */
659 ns = nr = 0;
660 L2TP_SKB_CB(skb)->has_seq = 0;
James Chapmanf7faffa2010-04-02 06:18:49 +0000661 if (tunnel->version == L2TP_HDR_VER_2) {
662 if (hdrflags & L2TP_HDRFLAG_S) {
663 ns = ntohs(*(__be16 *) ptr);
664 ptr += 2;
665 nr = ntohs(*(__be16 *) ptr);
666 ptr += 2;
James Chapmanfd558d12010-04-02 06:18:33 +0000667
James Chapmanf7faffa2010-04-02 06:18:49 +0000668 /* Store L2TP info in the skb */
669 L2TP_SKB_CB(skb)->ns = ns;
670 L2TP_SKB_CB(skb)->has_seq = 1;
James Chapmanfd558d12010-04-02 06:18:33 +0000671
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000672 l2tp_dbg(session, L2TP_MSG_SEQ,
673 "%s: recv data ns=%u, nr=%u, session nr=%u\n",
674 session->name, ns, nr, session->nr);
James Chapmanf7faffa2010-04-02 06:18:49 +0000675 }
676 } else if (session->l2specific_type == L2TP_L2SPECTYPE_DEFAULT) {
677 u32 l2h = ntohl(*(__be32 *) ptr);
678
679 if (l2h & 0x40000000) {
680 ns = l2h & 0x00ffffff;
681
682 /* Store L2TP info in the skb */
683 L2TP_SKB_CB(skb)->ns = ns;
684 L2TP_SKB_CB(skb)->has_seq = 1;
685
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000686 l2tp_dbg(session, L2TP_MSG_SEQ,
687 "%s: recv data ns=%u, session nr=%u\n",
688 session->name, ns, session->nr);
James Chapmanf7faffa2010-04-02 06:18:49 +0000689 }
James Chapmanfd558d12010-04-02 06:18:33 +0000690 }
691
James Chapmanf7faffa2010-04-02 06:18:49 +0000692 /* Advance past L2-specific header, if present */
693 ptr += session->l2specific_len;
694
James Chapmanfd558d12010-04-02 06:18:33 +0000695 if (L2TP_SKB_CB(skb)->has_seq) {
696 /* Received a packet with sequence numbers. If we're the LNS,
697 * check if we sre sending sequence numbers and if not,
698 * configure it so.
699 */
700 if ((!session->lns_mode) && (!session->send_seq)) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000701 l2tp_info(session, L2TP_MSG_SEQ,
702 "%s: requested to enable seq numbers by LNS\n",
703 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000704 session->send_seq = -1;
James Chapmanf7faffa2010-04-02 06:18:49 +0000705 l2tp_session_set_header_len(session, tunnel->version);
James Chapmanfd558d12010-04-02 06:18:33 +0000706 }
707 } else {
708 /* No sequence numbers.
709 * If user has configured mandatory sequence numbers, discard.
710 */
711 if (session->recv_seq) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000712 l2tp_warn(session, L2TP_MSG_SEQ,
713 "%s: recv data has no seq numbers when required. Discarding.\n",
714 session->name);
James Chapman5de7aee2012-04-29 21:48:46 +0000715 u64_stats_update_begin(&sstats->syncp);
716 sstats->rx_seq_discards++;
717 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000718 goto discard;
719 }
720
721 /* If we're the LAC and we're sending sequence numbers, the
722 * LNS has requested that we no longer send sequence numbers.
723 * If we're the LNS and we're sending sequence numbers, the
724 * LAC is broken. Discard the frame.
725 */
726 if ((!session->lns_mode) && (session->send_seq)) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000727 l2tp_info(session, L2TP_MSG_SEQ,
728 "%s: requested to disable seq numbers by LNS\n",
729 session->name);
James Chapmanfd558d12010-04-02 06:18:33 +0000730 session->send_seq = 0;
James Chapmanf7faffa2010-04-02 06:18:49 +0000731 l2tp_session_set_header_len(session, tunnel->version);
James Chapmanfd558d12010-04-02 06:18:33 +0000732 } else if (session->send_seq) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000733 l2tp_warn(session, L2TP_MSG_SEQ,
734 "%s: recv data has no seq numbers when required. Discarding.\n",
735 session->name);
James Chapman5de7aee2012-04-29 21:48:46 +0000736 u64_stats_update_begin(&sstats->syncp);
737 sstats->rx_seq_discards++;
738 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000739 goto discard;
740 }
741 }
742
James Chapmanf7faffa2010-04-02 06:18:49 +0000743 /* Session data offset is handled differently for L2TPv2 and
744 * L2TPv3. For L2TPv2, there is an optional 16-bit value in
745 * the header. For L2TPv3, the offset is negotiated using AVPs
746 * in the session setup control protocol.
747 */
748 if (tunnel->version == L2TP_HDR_VER_2) {
749 /* If offset bit set, skip it. */
750 if (hdrflags & L2TP_HDRFLAG_O) {
751 offset = ntohs(*(__be16 *)ptr);
752 ptr += 2 + offset;
753 }
754 } else
755 ptr += session->offset;
James Chapmanfd558d12010-04-02 06:18:33 +0000756
757 offset = ptr - optr;
758 if (!pskb_may_pull(skb, offset))
759 goto discard;
760
761 __skb_pull(skb, offset);
762
763 /* If caller wants to process the payload before we queue the
764 * packet, do so now.
765 */
766 if (payload_hook)
767 if ((*payload_hook)(skb))
768 goto discard;
769
770 /* Prepare skb for adding to the session's reorder_q. Hold
771 * packets for max reorder_timeout or 1 second if not
772 * reordering.
773 */
774 L2TP_SKB_CB(skb)->length = length;
775 L2TP_SKB_CB(skb)->expires = jiffies +
776 (session->reorder_timeout ? session->reorder_timeout : HZ);
777
778 /* Add packet to the session's receive queue. Reordering is done here, if
779 * enabled. Saved L2TP protocol info is stored in skb->sb[].
780 */
781 if (L2TP_SKB_CB(skb)->has_seq) {
782 if (session->reorder_timeout != 0) {
783 /* Packet reordering enabled. Add skb to session's
784 * reorder queue, in order of ns.
785 */
786 l2tp_recv_queue_skb(session, skb);
787 } else {
788 /* Packet reordering disabled. Discard out-of-sequence
789 * packets
790 */
791 if (L2TP_SKB_CB(skb)->ns != session->nr) {
James Chapman5de7aee2012-04-29 21:48:46 +0000792 u64_stats_update_begin(&sstats->syncp);
793 sstats->rx_seq_discards++;
794 u64_stats_update_end(&sstats->syncp);
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000795 l2tp_dbg(session, L2TP_MSG_SEQ,
796 "%s: oos pkt %u len %d discarded, waiting for %u, reorder_q_len=%d\n",
797 session->name, L2TP_SKB_CB(skb)->ns,
798 L2TP_SKB_CB(skb)->length, session->nr,
799 skb_queue_len(&session->reorder_q));
James Chapmanfd558d12010-04-02 06:18:33 +0000800 goto discard;
801 }
802 skb_queue_tail(&session->reorder_q, skb);
803 }
804 } else {
805 /* No sequence numbers. Add the skb to the tail of the
806 * reorder queue. This ensures that it will be
807 * delivered after all previous sequenced skbs.
808 */
809 skb_queue_tail(&session->reorder_q, skb);
810 }
811
812 /* Try to dequeue as many skbs from reorder_q as we can. */
813 l2tp_recv_dequeue(session);
814
815 l2tp_session_dec_refcount(session);
816
James Chapmanf7faffa2010-04-02 06:18:49 +0000817 return;
James Chapmanfd558d12010-04-02 06:18:33 +0000818
819discard:
James Chapman5de7aee2012-04-29 21:48:46 +0000820 u64_stats_update_begin(&sstats->syncp);
821 sstats->rx_errors++;
822 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000823 kfree_skb(skb);
824
825 if (session->deref)
826 (*session->deref)(session);
827
828 l2tp_session_dec_refcount(session);
James Chapmanf7faffa2010-04-02 06:18:49 +0000829}
830EXPORT_SYMBOL(l2tp_recv_common);
831
832/* Internal UDP receive frame. Do the real work of receiving an L2TP data frame
833 * here. The skb is not on a list when we get here.
834 * Returns 0 if the packet was a data packet and was successfully passed on.
835 * Returns 1 if the packet was not a good data packet and could not be
836 * forwarded. All such packets are passed up to userspace to deal with.
837 */
stephen hemmingerfc130842010-10-21 07:50:46 +0000838static int l2tp_udp_recv_core(struct l2tp_tunnel *tunnel, struct sk_buff *skb,
839 int (*payload_hook)(struct sk_buff *skb))
James Chapmanf7faffa2010-04-02 06:18:49 +0000840{
841 struct l2tp_session *session = NULL;
842 unsigned char *ptr, *optr;
843 u16 hdrflags;
844 u32 tunnel_id, session_id;
James Chapmanf7faffa2010-04-02 06:18:49 +0000845 u16 version;
846 int length;
James Chapman5de7aee2012-04-29 21:48:46 +0000847 struct l2tp_stats *tstats;
James Chapmanf7faffa2010-04-02 06:18:49 +0000848
849 if (tunnel->sock && l2tp_verify_udp_checksum(tunnel->sock, skb))
850 goto discard_bad_csum;
851
852 /* UDP always verifies the packet length. */
853 __skb_pull(skb, sizeof(struct udphdr));
854
855 /* Short packet? */
856 if (!pskb_may_pull(skb, L2TP_HDR_SIZE_SEQ)) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000857 l2tp_info(tunnel, L2TP_MSG_DATA,
858 "%s: recv short packet (len=%d)\n",
859 tunnel->name, skb->len);
James Chapmanf7faffa2010-04-02 06:18:49 +0000860 goto error;
861 }
862
James Chapmanf7faffa2010-04-02 06:18:49 +0000863 /* Trace packet contents, if enabled */
864 if (tunnel->debug & L2TP_MSG_DATA) {
865 length = min(32u, skb->len);
866 if (!pskb_may_pull(skb, length))
867 goto error;
868
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000869 pr_debug("%s: recv\n", tunnel->name);
870 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, skb->data, length);
James Chapmanf7faffa2010-04-02 06:18:49 +0000871 }
872
Eric Dumazete50e7052011-11-08 13:59:44 -0500873 /* Point to L2TP header */
874 optr = ptr = skb->data;
875
James Chapmanf7faffa2010-04-02 06:18:49 +0000876 /* Get L2TP header flags */
877 hdrflags = ntohs(*(__be16 *) ptr);
878
879 /* Check protocol version */
880 version = hdrflags & L2TP_HDR_VER_MASK;
881 if (version != tunnel->version) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000882 l2tp_info(tunnel, L2TP_MSG_DATA,
883 "%s: recv protocol version mismatch: got %d expected %d\n",
884 tunnel->name, version, tunnel->version);
James Chapmanf7faffa2010-04-02 06:18:49 +0000885 goto error;
886 }
887
888 /* Get length of L2TP packet */
889 length = skb->len;
890
891 /* If type is control packet, it is handled by userspace. */
892 if (hdrflags & L2TP_HDRFLAG_T) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000893 l2tp_dbg(tunnel, L2TP_MSG_DATA,
894 "%s: recv control packet, len=%d\n",
895 tunnel->name, length);
James Chapmanf7faffa2010-04-02 06:18:49 +0000896 goto error;
897 }
898
899 /* Skip flags */
900 ptr += 2;
901
902 if (tunnel->version == L2TP_HDR_VER_2) {
903 /* If length is present, skip it */
904 if (hdrflags & L2TP_HDRFLAG_L)
905 ptr += 2;
906
907 /* Extract tunnel and session ID */
908 tunnel_id = ntohs(*(__be16 *) ptr);
909 ptr += 2;
910 session_id = ntohs(*(__be16 *) ptr);
911 ptr += 2;
912 } else {
913 ptr += 2; /* skip reserved bits */
914 tunnel_id = tunnel->tunnel_id;
915 session_id = ntohl(*(__be32 *) ptr);
916 ptr += 4;
917 }
918
919 /* Find the session context */
920 session = l2tp_session_find(tunnel->l2tp_net, tunnel, session_id);
James Chapman309795f2010-04-02 06:19:10 +0000921 if (!session || !session->recv_skb) {
James Chapmanf7faffa2010-04-02 06:18:49 +0000922 /* Not found? Pass to userspace to deal with */
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000923 l2tp_info(tunnel, L2TP_MSG_DATA,
924 "%s: no session found (%u/%u). Passing up.\n",
925 tunnel->name, tunnel_id, session_id);
James Chapmanf7faffa2010-04-02 06:18:49 +0000926 goto error;
927 }
928
929 l2tp_recv_common(session, skb, ptr, optr, hdrflags, length, payload_hook);
James Chapmanfd558d12010-04-02 06:18:33 +0000930
931 return 0;
932
933discard_bad_csum:
934 LIMIT_NETDEBUG("%s: UDP: bad checksum\n", tunnel->name);
935 UDP_INC_STATS_USER(tunnel->l2tp_net, UDP_MIB_INERRORS, 0);
James Chapman5de7aee2012-04-29 21:48:46 +0000936 tstats = &tunnel->stats;
937 u64_stats_update_begin(&tstats->syncp);
938 tstats->rx_errors++;
939 u64_stats_update_end(&tstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +0000940 kfree_skb(skb);
941
942 return 0;
943
944error:
945 /* Put UDP header back */
946 __skb_push(skb, sizeof(struct udphdr));
947
948 return 1;
949}
James Chapmanfd558d12010-04-02 06:18:33 +0000950
951/* UDP encapsulation receive handler. See net/ipv4/udp.c.
952 * Return codes:
953 * 0 : success.
954 * <0: error
955 * >0: skb should be passed up to userspace as UDP.
956 */
957int l2tp_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
958{
959 struct l2tp_tunnel *tunnel;
960
961 tunnel = l2tp_sock_to_tunnel(sk);
962 if (tunnel == NULL)
963 goto pass_up;
964
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000965 l2tp_dbg(tunnel, L2TP_MSG_DATA, "%s: received %d bytes\n",
966 tunnel->name, skb->len);
James Chapmanfd558d12010-04-02 06:18:33 +0000967
968 if (l2tp_udp_recv_core(tunnel, skb, tunnel->recv_payload_hook))
969 goto pass_up_put;
970
971 sock_put(sk);
972 return 0;
973
974pass_up_put:
975 sock_put(sk);
976pass_up:
977 return 1;
978}
979EXPORT_SYMBOL_GPL(l2tp_udp_encap_recv);
980
981/************************************************************************
982 * Transmit handling
983 ***********************************************************************/
984
985/* Build an L2TP header for the session into the buffer provided.
986 */
James Chapmanf7faffa2010-04-02 06:18:49 +0000987static int l2tp_build_l2tpv2_header(struct l2tp_session *session, void *buf)
James Chapmanfd558d12010-04-02 06:18:33 +0000988{
James Chapmanf7faffa2010-04-02 06:18:49 +0000989 struct l2tp_tunnel *tunnel = session->tunnel;
James Chapmanfd558d12010-04-02 06:18:33 +0000990 __be16 *bufp = buf;
James Chapmanf7faffa2010-04-02 06:18:49 +0000991 __be16 *optr = buf;
James Chapmanfd558d12010-04-02 06:18:33 +0000992 u16 flags = L2TP_HDR_VER_2;
993 u32 tunnel_id = tunnel->peer_tunnel_id;
994 u32 session_id = session->peer_session_id;
995
996 if (session->send_seq)
997 flags |= L2TP_HDRFLAG_S;
998
999 /* Setup L2TP header. */
1000 *bufp++ = htons(flags);
1001 *bufp++ = htons(tunnel_id);
1002 *bufp++ = htons(session_id);
1003 if (session->send_seq) {
1004 *bufp++ = htons(session->ns);
1005 *bufp++ = 0;
1006 session->ns++;
James Chapmanf7faffa2010-04-02 06:18:49 +00001007 session->ns &= 0xffff;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001008 l2tp_dbg(session, L2TP_MSG_SEQ, "%s: updated ns to %u\n",
1009 session->name, session->ns);
James Chapmanfd558d12010-04-02 06:18:33 +00001010 }
James Chapmanf7faffa2010-04-02 06:18:49 +00001011
1012 return bufp - optr;
James Chapmanfd558d12010-04-02 06:18:33 +00001013}
1014
James Chapmanf7faffa2010-04-02 06:18:49 +00001015static int l2tp_build_l2tpv3_header(struct l2tp_session *session, void *buf)
James Chapmanfd558d12010-04-02 06:18:33 +00001016{
James Chapman0d767512010-04-02 06:19:00 +00001017 struct l2tp_tunnel *tunnel = session->tunnel;
James Chapmanf7faffa2010-04-02 06:18:49 +00001018 char *bufp = buf;
1019 char *optr = bufp;
James Chapmanfd558d12010-04-02 06:18:33 +00001020
James Chapman0d767512010-04-02 06:19:00 +00001021 /* Setup L2TP header. The header differs slightly for UDP and
1022 * IP encapsulations. For UDP, there is 4 bytes of flags.
1023 */
1024 if (tunnel->encap == L2TP_ENCAPTYPE_UDP) {
1025 u16 flags = L2TP_HDR_VER_3;
1026 *((__be16 *) bufp) = htons(flags);
1027 bufp += 2;
1028 *((__be16 *) bufp) = 0;
1029 bufp += 2;
1030 }
1031
James Chapmanf7faffa2010-04-02 06:18:49 +00001032 *((__be32 *) bufp) = htonl(session->peer_session_id);
1033 bufp += 4;
1034 if (session->cookie_len) {
1035 memcpy(bufp, &session->cookie[0], session->cookie_len);
1036 bufp += session->cookie_len;
1037 }
1038 if (session->l2specific_len) {
1039 if (session->l2specific_type == L2TP_L2SPECTYPE_DEFAULT) {
1040 u32 l2h = 0;
1041 if (session->send_seq) {
1042 l2h = 0x40000000 | session->ns;
1043 session->ns++;
1044 session->ns &= 0xffffff;
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001045 l2tp_dbg(session, L2TP_MSG_SEQ,
1046 "%s: updated ns to %u\n",
1047 session->name, session->ns);
James Chapmanf7faffa2010-04-02 06:18:49 +00001048 }
1049
1050 *((__be32 *) bufp) = htonl(l2h);
1051 }
1052 bufp += session->l2specific_len;
1053 }
1054 if (session->offset)
1055 bufp += session->offset;
1056
1057 return bufp - optr;
James Chapmanfd558d12010-04-02 06:18:33 +00001058}
James Chapmanfd558d12010-04-02 06:18:33 +00001059
stephen hemmingerfc130842010-10-21 07:50:46 +00001060static int l2tp_xmit_core(struct l2tp_session *session, struct sk_buff *skb,
David S. Millerd9d8da82011-05-06 22:23:20 -07001061 struct flowi *fl, size_t data_len)
James Chapmanfd558d12010-04-02 06:18:33 +00001062{
1063 struct l2tp_tunnel *tunnel = session->tunnel;
1064 unsigned int len = skb->len;
1065 int error;
James Chapman5de7aee2012-04-29 21:48:46 +00001066 struct l2tp_stats *tstats, *sstats;
James Chapmanfd558d12010-04-02 06:18:33 +00001067
1068 /* Debug */
1069 if (session->send_seq)
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001070 l2tp_dbg(session, L2TP_MSG_DATA, "%s: send %Zd bytes, ns=%u\n",
1071 session->name, data_len, session->ns - 1);
James Chapmanfd558d12010-04-02 06:18:33 +00001072 else
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001073 l2tp_dbg(session, L2TP_MSG_DATA, "%s: send %Zd bytes\n",
1074 session->name, data_len);
James Chapmanfd558d12010-04-02 06:18:33 +00001075
1076 if (session->debug & L2TP_MSG_DATA) {
James Chapman0d767512010-04-02 06:19:00 +00001077 int uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
1078 unsigned char *datap = skb->data + uhlen;
James Chapmanfd558d12010-04-02 06:18:33 +00001079
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001080 pr_debug("%s: xmit\n", session->name);
1081 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
1082 datap, min_t(size_t, 32, len - uhlen));
James Chapmanfd558d12010-04-02 06:18:33 +00001083 }
1084
1085 /* Queue the packet to IP for output */
Shan Wei4e15ed42010-04-15 16:43:08 +00001086 skb->local_df = 1;
Benjamin LaHaised2cf3362012-04-27 08:24:18 +00001087#if IS_ENABLED(CONFIG_IPV6)
1088 if (skb->sk->sk_family == PF_INET6)
1089 error = inet6_csk_xmit(skb, NULL);
1090 else
1091#endif
1092 error = ip_queue_xmit(skb, fl);
James Chapmanfd558d12010-04-02 06:18:33 +00001093
1094 /* Update stats */
James Chapman5de7aee2012-04-29 21:48:46 +00001095 tstats = &tunnel->stats;
1096 u64_stats_update_begin(&tstats->syncp);
1097 sstats = &session->stats;
1098 u64_stats_update_begin(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +00001099 if (error >= 0) {
James Chapman5de7aee2012-04-29 21:48:46 +00001100 tstats->tx_packets++;
1101 tstats->tx_bytes += len;
1102 sstats->tx_packets++;
1103 sstats->tx_bytes += len;
James Chapmanfd558d12010-04-02 06:18:33 +00001104 } else {
James Chapman5de7aee2012-04-29 21:48:46 +00001105 tstats->tx_errors++;
1106 sstats->tx_errors++;
James Chapmanfd558d12010-04-02 06:18:33 +00001107 }
James Chapman5de7aee2012-04-29 21:48:46 +00001108 u64_stats_update_end(&tstats->syncp);
1109 u64_stats_update_end(&sstats->syncp);
James Chapmanfd558d12010-04-02 06:18:33 +00001110
1111 return 0;
1112}
James Chapmanfd558d12010-04-02 06:18:33 +00001113
1114/* Automatically called when the skb is freed.
1115 */
1116static void l2tp_sock_wfree(struct sk_buff *skb)
1117{
1118 sock_put(skb->sk);
1119}
1120
1121/* For data skbs that we transmit, we associate with the tunnel socket
1122 * but don't do accounting.
1123 */
1124static inline void l2tp_skb_set_owner_w(struct sk_buff *skb, struct sock *sk)
1125{
1126 sock_hold(sk);
1127 skb->sk = sk;
1128 skb->destructor = l2tp_sock_wfree;
1129}
1130
Benjamin LaHaised2cf3362012-04-27 08:24:18 +00001131#if IS_ENABLED(CONFIG_IPV6)
1132static void l2tp_xmit_ipv6_csum(struct sock *sk, struct sk_buff *skb,
1133 int udp_len)
1134{
1135 struct ipv6_pinfo *np = inet6_sk(sk);
1136 struct udphdr *uh = udp_hdr(skb);
1137
1138 if (!skb_dst(skb) || !skb_dst(skb)->dev ||
1139 !(skb_dst(skb)->dev->features & NETIF_F_IPV6_CSUM)) {
1140 __wsum csum = skb_checksum(skb, 0, udp_len, 0);
1141 skb->ip_summed = CHECKSUM_UNNECESSARY;
1142 uh->check = csum_ipv6_magic(&np->saddr, &np->daddr, udp_len,
1143 IPPROTO_UDP, csum);
1144 if (uh->check == 0)
1145 uh->check = CSUM_MANGLED_0;
1146 } else {
1147 skb->ip_summed = CHECKSUM_PARTIAL;
1148 skb->csum_start = skb_transport_header(skb) - skb->head;
1149 skb->csum_offset = offsetof(struct udphdr, check);
1150 uh->check = ~csum_ipv6_magic(&np->saddr, &np->daddr,
1151 udp_len, IPPROTO_UDP, 0);
1152 }
1153}
1154#endif
1155
James Chapmanfd558d12010-04-02 06:18:33 +00001156/* If caller requires the skb to have a ppp header, the header must be
1157 * inserted in the skb data before calling this function.
1158 */
1159int l2tp_xmit_skb(struct l2tp_session *session, struct sk_buff *skb, int hdr_len)
1160{
1161 int data_len = skb->len;
James Chapman0d767512010-04-02 06:19:00 +00001162 struct l2tp_tunnel *tunnel = session->tunnel;
1163 struct sock *sk = tunnel->sock;
David S. Millerd9d8da82011-05-06 22:23:20 -07001164 struct flowi *fl;
James Chapmanfd558d12010-04-02 06:18:33 +00001165 struct udphdr *uh;
James Chapmanfd558d12010-04-02 06:18:33 +00001166 struct inet_sock *inet;
1167 __wsum csum;
James Chapmanfd558d12010-04-02 06:18:33 +00001168 int headroom;
James Chapman0d767512010-04-02 06:19:00 +00001169 int uhlen = (tunnel->encap == L2TP_ENCAPTYPE_UDP) ? sizeof(struct udphdr) : 0;
1170 int udp_len;
Eric Dumazetb8c84302012-06-28 20:15:13 +00001171 int ret = NET_XMIT_SUCCESS;
James Chapmanfd558d12010-04-02 06:18:33 +00001172
1173 /* Check that there's enough headroom in the skb to insert IP,
1174 * UDP and L2TP headers. If not enough, expand it to
1175 * make room. Adjust truesize.
1176 */
1177 headroom = NET_SKB_PAD + sizeof(struct iphdr) +
James Chapman0d767512010-04-02 06:19:00 +00001178 uhlen + hdr_len;
Eric Dumazet835acf52011-10-07 05:35:46 +00001179 if (skb_cow_head(skb, headroom)) {
Eric Dumazetb8c84302012-06-28 20:15:13 +00001180 kfree_skb(skb);
1181 return NET_XMIT_DROP;
Eric Dumazet835acf52011-10-07 05:35:46 +00001182 }
James Chapmanfd558d12010-04-02 06:18:33 +00001183
James Chapmanfd558d12010-04-02 06:18:33 +00001184 skb_orphan(skb);
James Chapmanfd558d12010-04-02 06:18:33 +00001185 /* Setup L2TP header */
James Chapmanf7faffa2010-04-02 06:18:49 +00001186 session->build_header(session, __skb_push(skb, hdr_len));
James Chapmanfd558d12010-04-02 06:18:33 +00001187
James Chapman0d767512010-04-02 06:19:00 +00001188 /* Reset skb netfilter state */
James Chapmanfd558d12010-04-02 06:18:33 +00001189 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1190 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1191 IPSKB_REROUTED);
1192 nf_reset(skb);
1193
David S. Miller6af88da2011-05-08 13:45:20 -07001194 bh_lock_sock(sk);
1195 if (sock_owned_by_user(sk)) {
Eric Dumazetb8c84302012-06-28 20:15:13 +00001196 kfree_skb(skb);
1197 ret = NET_XMIT_DROP;
David S. Miller6af88da2011-05-08 13:45:20 -07001198 goto out_unlock;
1199 }
1200
James Chapmanfd558d12010-04-02 06:18:33 +00001201 /* Get routing info from the tunnel socket */
1202 skb_dst_drop(skb);
Florian Westphal71b13912011-11-25 06:47:16 +00001203 skb_dst_set(skb, dst_clone(__sk_dst_check(sk, 0)));
James Chapmanfd558d12010-04-02 06:18:33 +00001204
David S. Millerd9d8da82011-05-06 22:23:20 -07001205 inet = inet_sk(sk);
1206 fl = &inet->cork.fl;
James Chapman0d767512010-04-02 06:19:00 +00001207 switch (tunnel->encap) {
1208 case L2TP_ENCAPTYPE_UDP:
1209 /* Setup UDP header */
James Chapman0d767512010-04-02 06:19:00 +00001210 __skb_push(skb, sizeof(*uh));
1211 skb_reset_transport_header(skb);
1212 uh = udp_hdr(skb);
1213 uh->source = inet->inet_sport;
1214 uh->dest = inet->inet_dport;
1215 udp_len = uhlen + hdr_len + data_len;
1216 uh->len = htons(udp_len);
1217 uh->check = 0;
1218
1219 /* Calculate UDP checksum if configured to do so */
Benjamin LaHaised2cf3362012-04-27 08:24:18 +00001220#if IS_ENABLED(CONFIG_IPV6)
1221 if (sk->sk_family == PF_INET6)
1222 l2tp_xmit_ipv6_csum(sk, skb, udp_len);
1223 else
1224#endif
James Chapman0d767512010-04-02 06:19:00 +00001225 if (sk->sk_no_check == UDP_CSUM_NOXMIT)
1226 skb->ip_summed = CHECKSUM_NONE;
1227 else if ((skb_dst(skb) && skb_dst(skb)->dev) &&
1228 (!(skb_dst(skb)->dev->features & NETIF_F_V4_CSUM))) {
1229 skb->ip_summed = CHECKSUM_COMPLETE;
1230 csum = skb_checksum(skb, 0, udp_len, 0);
1231 uh->check = csum_tcpudp_magic(inet->inet_saddr,
1232 inet->inet_daddr,
1233 udp_len, IPPROTO_UDP, csum);
1234 if (uh->check == 0)
1235 uh->check = CSUM_MANGLED_0;
1236 } else {
1237 skb->ip_summed = CHECKSUM_PARTIAL;
1238 skb->csum_start = skb_transport_header(skb) - skb->head;
1239 skb->csum_offset = offsetof(struct udphdr, check);
1240 uh->check = ~csum_tcpudp_magic(inet->inet_saddr,
1241 inet->inet_daddr,
1242 udp_len, IPPROTO_UDP, 0);
1243 }
1244 break;
1245
1246 case L2TP_ENCAPTYPE_IP:
1247 break;
James Chapmanfd558d12010-04-02 06:18:33 +00001248 }
1249
James Chapman0d767512010-04-02 06:19:00 +00001250 l2tp_skb_set_owner_w(skb, sk);
1251
David S. Millerd9d8da82011-05-06 22:23:20 -07001252 l2tp_xmit_core(session, skb, fl, data_len);
David S. Miller6af88da2011-05-08 13:45:20 -07001253out_unlock:
1254 bh_unlock_sock(sk);
James Chapmanfd558d12010-04-02 06:18:33 +00001255
Eric Dumazetb8c84302012-06-28 20:15:13 +00001256 return ret;
James Chapmanfd558d12010-04-02 06:18:33 +00001257}
1258EXPORT_SYMBOL_GPL(l2tp_xmit_skb);
1259
1260/*****************************************************************************
1261 * Tinnel and session create/destroy.
1262 *****************************************************************************/
1263
1264/* Tunnel socket destruct hook.
1265 * The tunnel context is deleted only when all session sockets have been
1266 * closed.
1267 */
stephen hemmingerfc130842010-10-21 07:50:46 +00001268static void l2tp_tunnel_destruct(struct sock *sk)
James Chapmanfd558d12010-04-02 06:18:33 +00001269{
1270 struct l2tp_tunnel *tunnel;
Tom Parkinf8ccac02013-01-31 23:43:00 +00001271 struct l2tp_net *pn;
James Chapmanfd558d12010-04-02 06:18:33 +00001272
1273 tunnel = sk->sk_user_data;
1274 if (tunnel == NULL)
1275 goto end;
1276
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001277 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: closing...\n", tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001278
James Chapmanfd558d12010-04-02 06:18:33 +00001279
Tom Parkinf8ccac02013-01-31 23:43:00 +00001280 /* Disable udp encapsulation */
James Chapman0d767512010-04-02 06:19:00 +00001281 switch (tunnel->encap) {
1282 case L2TP_ENCAPTYPE_UDP:
1283 /* No longer an encapsulation socket. See net/ipv4/udp.c */
1284 (udp_sk(sk))->encap_type = 0;
1285 (udp_sk(sk))->encap_rcv = NULL;
Tom Parkin9980d002013-03-19 06:11:13 +00001286 (udp_sk(sk))->encap_destroy = NULL;
James Chapman0d767512010-04-02 06:19:00 +00001287 break;
1288 case L2TP_ENCAPTYPE_IP:
1289 break;
1290 }
James Chapmanfd558d12010-04-02 06:18:33 +00001291
1292 /* Remove hooks into tunnel socket */
James Chapmanfd558d12010-04-02 06:18:33 +00001293 sk->sk_destruct = tunnel->old_sk_destruct;
1294 sk->sk_user_data = NULL;
Tom Parkinf8ccac02013-01-31 23:43:00 +00001295 tunnel->sock = NULL;
1296
1297 /* Remove the tunnel struct from the tunnel list */
1298 pn = l2tp_pernet(tunnel->l2tp_net);
1299 spin_lock_bh(&pn->l2tp_tunnel_list_lock);
1300 list_del_rcu(&tunnel->list);
1301 spin_unlock_bh(&pn->l2tp_tunnel_list_lock);
1302 atomic_dec(&l2tp_tunnel_count);
1303
1304 l2tp_tunnel_closeall(tunnel);
1305 l2tp_tunnel_dec_refcount(tunnel);
James Chapmanfd558d12010-04-02 06:18:33 +00001306
1307 /* Call the original destructor */
1308 if (sk->sk_destruct)
1309 (*sk->sk_destruct)(sk);
James Chapmanfd558d12010-04-02 06:18:33 +00001310end:
1311 return;
1312}
James Chapmanfd558d12010-04-02 06:18:33 +00001313
1314/* When the tunnel is closed, all the attached sessions need to go too.
1315 */
Tom Parkine34f4c72013-03-19 06:11:14 +00001316void l2tp_tunnel_closeall(struct l2tp_tunnel *tunnel)
James Chapmanfd558d12010-04-02 06:18:33 +00001317{
1318 int hash;
1319 struct hlist_node *walk;
1320 struct hlist_node *tmp;
1321 struct l2tp_session *session;
1322
1323 BUG_ON(tunnel == NULL);
1324
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001325 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: closing all sessions...\n",
1326 tunnel->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001327
1328 write_lock_bh(&tunnel->hlist_lock);
1329 for (hash = 0; hash < L2TP_HASH_SIZE; hash++) {
1330again:
1331 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
1332 session = hlist_entry(walk, struct l2tp_session, hlist);
1333
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001334 l2tp_info(session, L2TP_MSG_CONTROL,
1335 "%s: closing session\n", session->name);
James Chapmanfd558d12010-04-02 06:18:33 +00001336
1337 hlist_del_init(&session->hlist);
1338
1339 /* Since we should hold the sock lock while
1340 * doing any unbinding, we need to release the
1341 * lock we're holding before taking that lock.
1342 * Hold a reference to the sock so it doesn't
1343 * disappear as we're jumping between locks.
1344 */
1345 if (session->ref != NULL)
1346 (*session->ref)(session);
1347
1348 write_unlock_bh(&tunnel->hlist_lock);
1349
James Chapmanf7faffa2010-04-02 06:18:49 +00001350 if (tunnel->version != L2TP_HDR_VER_2) {
1351 struct l2tp_net *pn = l2tp_pernet(tunnel->l2tp_net);
1352
James Chapmane02d4942010-04-02 06:19:16 +00001353 spin_lock_bh(&pn->l2tp_session_hlist_lock);
1354 hlist_del_init_rcu(&session->global_hlist);
1355 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
1356 synchronize_rcu();
James Chapmanf7faffa2010-04-02 06:18:49 +00001357 }
1358
James Chapmanfd558d12010-04-02 06:18:33 +00001359 if (session->session_close != NULL)
1360 (*session->session_close)(session);
1361
1362 if (session->deref != NULL)
1363 (*session->deref)(session);
1364
Tom Parkin9980d002013-03-19 06:11:13 +00001365 l2tp_session_dec_refcount(session);
1366
James Chapmanfd558d12010-04-02 06:18:33 +00001367 write_lock_bh(&tunnel->hlist_lock);
1368
1369 /* Now restart from the beginning of this hash
1370 * chain. We always remove a session from the
1371 * list so we are guaranteed to make forward
1372 * progress.
1373 */
1374 goto again;
1375 }
1376 }
1377 write_unlock_bh(&tunnel->hlist_lock);
1378}
Tom Parkine34f4c72013-03-19 06:11:14 +00001379EXPORT_SYMBOL_GPL(l2tp_tunnel_closeall);
James Chapmanfd558d12010-04-02 06:18:33 +00001380
Tom Parkin9980d002013-03-19 06:11:13 +00001381/* Tunnel socket destroy hook for UDP encapsulation */
1382static void l2tp_udp_encap_destroy(struct sock *sk)
1383{
1384 struct l2tp_tunnel *tunnel = l2tp_sock_to_tunnel(sk);
1385 if (tunnel) {
1386 l2tp_tunnel_closeall(tunnel);
1387 sock_put(sk);
1388 }
1389}
1390
James Chapmanfd558d12010-04-02 06:18:33 +00001391/* Really kill the tunnel.
1392 * Come here only when all sessions have been cleared from the tunnel.
1393 */
stephen hemmingerfc130842010-10-21 07:50:46 +00001394static void l2tp_tunnel_free(struct l2tp_tunnel *tunnel)
James Chapmanfd558d12010-04-02 06:18:33 +00001395{
James Chapmanfd558d12010-04-02 06:18:33 +00001396 BUG_ON(atomic_read(&tunnel->ref_count) != 0);
1397 BUG_ON(tunnel->sock != NULL);
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001398 l2tp_info(tunnel, L2TP_MSG_CONTROL, "%s: free...\n", tunnel->name);
xeb@mail.ru99469c32012-08-24 01:07:38 +00001399 kfree_rcu(tunnel, rcu);
Tom Parkinf8ccac02013-01-31 23:43:00 +00001400}
James Chapmanfd558d12010-04-02 06:18:33 +00001401
Tom Parkinf8ccac02013-01-31 23:43:00 +00001402/* Workqueue tunnel deletion function */
1403static void l2tp_tunnel_del_work(struct work_struct *work)
1404{
1405 struct l2tp_tunnel *tunnel = NULL;
1406 struct socket *sock = NULL;
1407 struct sock *sk = NULL;
1408
1409 tunnel = container_of(work, struct l2tp_tunnel, del_work);
1410 sk = l2tp_tunnel_sock_lookup(tunnel);
1411 if (!sk)
1412 return;
1413
1414 sock = sk->sk_socket;
Tom Parkinf8ccac02013-01-31 23:43:00 +00001415
Tom Parkin02d13ed2013-03-19 06:11:18 +00001416 /* If the tunnel socket was created by userspace, then go through the
1417 * inet layer to shut the socket down, and let userspace close it.
1418 * Otherwise, if we created the socket directly within the kernel, use
1419 * the sk API to release it here.
Tom Parkin167eb172013-01-31 23:43:03 +00001420 * In either case the tunnel resources are freed in the socket
1421 * destructor when the tunnel socket goes away.
Tom Parkinf8ccac02013-01-31 23:43:00 +00001422 */
Tom Parkin02d13ed2013-03-19 06:11:18 +00001423 if (tunnel->fd >= 0) {
1424 if (sock)
1425 inet_shutdown(sock, 2);
Tom Parkin167eb172013-01-31 23:43:03 +00001426 } else {
Tom Parkin02d13ed2013-03-19 06:11:18 +00001427 if (sock)
1428 kernel_sock_shutdown(sock, SHUT_RDWR);
1429 sk_release_kernel(sk);
Tom Parkin167eb172013-01-31 23:43:03 +00001430 }
Tom Parkinf8ccac02013-01-31 23:43:00 +00001431
1432 l2tp_tunnel_sock_put(sk);
James Chapmanfd558d12010-04-02 06:18:33 +00001433}
James Chapmanfd558d12010-04-02 06:18:33 +00001434
James Chapman789a4a22010-04-02 06:19:40 +00001435/* Create a socket for the tunnel, if one isn't set up by
1436 * userspace. This is used for static tunnels where there is no
1437 * managing L2TP daemon.
Tom Parkin167eb172013-01-31 23:43:03 +00001438 *
1439 * Since we don't want these sockets to keep a namespace alive by
1440 * themselves, we drop the socket's namespace refcount after creation.
1441 * These sockets are freed when the namespace exits using the pernet
1442 * exit hook.
James Chapman789a4a22010-04-02 06:19:40 +00001443 */
Tom Parkin167eb172013-01-31 23:43:03 +00001444static int l2tp_tunnel_sock_create(struct net *net,
1445 u32 tunnel_id,
1446 u32 peer_tunnel_id,
1447 struct l2tp_tunnel_cfg *cfg,
1448 struct socket **sockp)
James Chapman789a4a22010-04-02 06:19:40 +00001449{
1450 int err = -EINVAL;
Eric Dumazet7bddd0d2010-04-04 01:02:46 -07001451 struct socket *sock = NULL;
Tom Parkin167eb172013-01-31 23:43:03 +00001452 struct sockaddr_in udp_addr = {0};
1453 struct sockaddr_l2tpip ip_addr = {0};
1454#if IS_ENABLED(CONFIG_IPV6)
1455 struct sockaddr_in6 udp6_addr = {0};
1456 struct sockaddr_l2tpip6 ip6_addr = {0};
1457#endif
James Chapman789a4a22010-04-02 06:19:40 +00001458
1459 switch (cfg->encap) {
1460 case L2TP_ENCAPTYPE_UDP:
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001461#if IS_ENABLED(CONFIG_IPV6)
1462 if (cfg->local_ip6 && cfg->peer_ip6) {
Tom Parkin167eb172013-01-31 23:43:03 +00001463 err = sock_create_kern(AF_INET6, SOCK_DGRAM, 0, &sock);
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001464 if (err < 0)
1465 goto out;
James Chapman789a4a22010-04-02 06:19:40 +00001466
Tom Parkin167eb172013-01-31 23:43:03 +00001467 sk_change_net(sock->sk, net);
James Chapman789a4a22010-04-02 06:19:40 +00001468
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001469 udp6_addr.sin6_family = AF_INET6;
1470 memcpy(&udp6_addr.sin6_addr, cfg->local_ip6,
1471 sizeof(udp6_addr.sin6_addr));
1472 udp6_addr.sin6_port = htons(cfg->local_udp_port);
1473 err = kernel_bind(sock, (struct sockaddr *) &udp6_addr,
1474 sizeof(udp6_addr));
1475 if (err < 0)
1476 goto out;
James Chapman789a4a22010-04-02 06:19:40 +00001477
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001478 udp6_addr.sin6_family = AF_INET6;
1479 memcpy(&udp6_addr.sin6_addr, cfg->peer_ip6,
1480 sizeof(udp6_addr.sin6_addr));
1481 udp6_addr.sin6_port = htons(cfg->peer_udp_port);
1482 err = kernel_connect(sock,
1483 (struct sockaddr *) &udp6_addr,
1484 sizeof(udp6_addr), 0);
1485 if (err < 0)
1486 goto out;
1487 } else
1488#endif
1489 {
Tom Parkin167eb172013-01-31 23:43:03 +00001490 err = sock_create_kern(AF_INET, SOCK_DGRAM, 0, &sock);
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001491 if (err < 0)
1492 goto out;
1493
Tom Parkin167eb172013-01-31 23:43:03 +00001494 sk_change_net(sock->sk, net);
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001495
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001496 udp_addr.sin_family = AF_INET;
1497 udp_addr.sin_addr = cfg->local_ip;
1498 udp_addr.sin_port = htons(cfg->local_udp_port);
1499 err = kernel_bind(sock, (struct sockaddr *) &udp_addr,
1500 sizeof(udp_addr));
1501 if (err < 0)
1502 goto out;
1503
1504 udp_addr.sin_family = AF_INET;
1505 udp_addr.sin_addr = cfg->peer_ip;
1506 udp_addr.sin_port = htons(cfg->peer_udp_port);
1507 err = kernel_connect(sock,
1508 (struct sockaddr *) &udp_addr,
1509 sizeof(udp_addr), 0);
1510 if (err < 0)
1511 goto out;
1512 }
James Chapman789a4a22010-04-02 06:19:40 +00001513
1514 if (!cfg->use_udp_checksums)
1515 sock->sk->sk_no_check = UDP_CSUM_NOXMIT;
1516
1517 break;
1518
1519 case L2TP_ENCAPTYPE_IP:
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001520#if IS_ENABLED(CONFIG_IPV6)
1521 if (cfg->local_ip6 && cfg->peer_ip6) {
Tom Parkin167eb172013-01-31 23:43:03 +00001522 err = sock_create_kern(AF_INET6, SOCK_DGRAM,
1523 IPPROTO_L2TP, &sock);
James Chapman5dac94e2012-04-29 21:48:55 +00001524 if (err < 0)
1525 goto out;
1526
Tom Parkin167eb172013-01-31 23:43:03 +00001527 sk_change_net(sock->sk, net);
James Chapman5dac94e2012-04-29 21:48:55 +00001528
James Chapman5dac94e2012-04-29 21:48:55 +00001529 ip6_addr.l2tp_family = AF_INET6;
1530 memcpy(&ip6_addr.l2tp_addr, cfg->local_ip6,
1531 sizeof(ip6_addr.l2tp_addr));
1532 ip6_addr.l2tp_conn_id = tunnel_id;
1533 err = kernel_bind(sock, (struct sockaddr *) &ip6_addr,
1534 sizeof(ip6_addr));
1535 if (err < 0)
1536 goto out;
1537
1538 ip6_addr.l2tp_family = AF_INET6;
1539 memcpy(&ip6_addr.l2tp_addr, cfg->peer_ip6,
1540 sizeof(ip6_addr.l2tp_addr));
1541 ip6_addr.l2tp_conn_id = peer_tunnel_id;
1542 err = kernel_connect(sock,
1543 (struct sockaddr *) &ip6_addr,
1544 sizeof(ip6_addr), 0);
1545 if (err < 0)
1546 goto out;
1547 } else
Chris Elstonf9bac8d2012-04-29 21:48:52 +00001548#endif
James Chapman5dac94e2012-04-29 21:48:55 +00001549 {
Tom Parkin167eb172013-01-31 23:43:03 +00001550 err = sock_create_kern(AF_INET, SOCK_DGRAM,
1551 IPPROTO_L2TP, &sock);
James Chapman5dac94e2012-04-29 21:48:55 +00001552 if (err < 0)
1553 goto out;
James Chapman789a4a22010-04-02 06:19:40 +00001554
Tom Parkin167eb172013-01-31 23:43:03 +00001555 sk_change_net(sock->sk, net);
James Chapman789a4a22010-04-02 06:19:40 +00001556
James Chapman5dac94e2012-04-29 21:48:55 +00001557 ip_addr.l2tp_family = AF_INET;
1558 ip_addr.l2tp_addr = cfg->local_ip;
1559 ip_addr.l2tp_conn_id = tunnel_id;
1560 err = kernel_bind(sock, (struct sockaddr *) &ip_addr,
1561 sizeof(ip_addr));
1562 if (err < 0)
1563 goto out;
James Chapman789a4a22010-04-02 06:19:40 +00001564
James Chapman5dac94e2012-04-29 21:48:55 +00001565 ip_addr.l2tp_family = AF_INET;
1566 ip_addr.l2tp_addr = cfg->peer_ip;
1567 ip_addr.l2tp_conn_id = peer_tunnel_id;
1568 err = kernel_connect(sock, (struct sockaddr *) &ip_addr,
1569 sizeof(ip_addr), 0);
1570 if (err < 0)
1571 goto out;
1572 }
James Chapman789a4a22010-04-02 06:19:40 +00001573 break;
1574
1575 default:
1576 goto out;
1577 }
1578
1579out:
Tom Parkin167eb172013-01-31 23:43:03 +00001580 *sockp = sock;
James Chapman789a4a22010-04-02 06:19:40 +00001581 if ((err < 0) && sock) {
Tom Parkin167eb172013-01-31 23:43:03 +00001582 kernel_sock_shutdown(sock, SHUT_RDWR);
1583 sk_release_kernel(sock->sk);
James Chapman789a4a22010-04-02 06:19:40 +00001584 *sockp = NULL;
1585 }
1586
1587 return err;
1588}
1589
Eric Dumazet37159ef2012-09-04 07:18:57 +00001590static struct lock_class_key l2tp_socket_class;
1591
James Chapmanfd558d12010-04-02 06:18:33 +00001592int 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)
1593{
1594 struct l2tp_tunnel *tunnel = NULL;
1595 int err;
1596 struct socket *sock = NULL;
1597 struct sock *sk = NULL;
1598 struct l2tp_net *pn;
James Chapman0d767512010-04-02 06:19:00 +00001599 enum l2tp_encap_type encap = L2TP_ENCAPTYPE_UDP;
James Chapmanfd558d12010-04-02 06:18:33 +00001600
1601 /* Get the tunnel socket from the fd, which was opened by
James Chapman789a4a22010-04-02 06:19:40 +00001602 * the userspace L2TP daemon. If not specified, create a
1603 * kernel socket.
James Chapmanfd558d12010-04-02 06:18:33 +00001604 */
James Chapman789a4a22010-04-02 06:19:40 +00001605 if (fd < 0) {
Tom Parkin167eb172013-01-31 23:43:03 +00001606 err = l2tp_tunnel_sock_create(net, tunnel_id, peer_tunnel_id,
1607 cfg, &sock);
James Chapman789a4a22010-04-02 06:19:40 +00001608 if (err < 0)
1609 goto err;
1610 } else {
James Chapman789a4a22010-04-02 06:19:40 +00001611 sock = sockfd_lookup(fd, &err);
1612 if (!sock) {
Tom Parkincbb95e02013-01-31 23:43:02 +00001613 pr_err("tunl %u: sockfd_lookup(fd=%d) returned %d\n",
James Chapman789a4a22010-04-02 06:19:40 +00001614 tunnel_id, fd, err);
Tom Parkincbb95e02013-01-31 23:43:02 +00001615 err = -EBADF;
1616 goto err;
1617 }
1618
1619 /* Reject namespace mismatches */
1620 if (!net_eq(sock_net(sock->sk), net)) {
1621 pr_err("tunl %u: netns mismatch\n", tunnel_id);
1622 err = -EINVAL;
James Chapman789a4a22010-04-02 06:19:40 +00001623 goto err;
1624 }
James Chapmanfd558d12010-04-02 06:18:33 +00001625 }
1626
1627 sk = sock->sk;
1628
James Chapman0d767512010-04-02 06:19:00 +00001629 if (cfg != NULL)
1630 encap = cfg->encap;
1631
James Chapmanfd558d12010-04-02 06:18:33 +00001632 /* Quick sanity checks */
James Chapman0d767512010-04-02 06:19:00 +00001633 switch (encap) {
1634 case L2TP_ENCAPTYPE_UDP:
1635 err = -EPROTONOSUPPORT;
1636 if (sk->sk_protocol != IPPROTO_UDP) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001637 pr_err("tunl %hu: fd %d wrong protocol, got %d, expected %d\n",
James Chapman0d767512010-04-02 06:19:00 +00001638 tunnel_id, fd, sk->sk_protocol, IPPROTO_UDP);
1639 goto err;
1640 }
1641 break;
1642 case L2TP_ENCAPTYPE_IP:
1643 err = -EPROTONOSUPPORT;
1644 if (sk->sk_protocol != IPPROTO_L2TP) {
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001645 pr_err("tunl %hu: fd %d wrong protocol, got %d, expected %d\n",
James Chapman0d767512010-04-02 06:19:00 +00001646 tunnel_id, fd, sk->sk_protocol, IPPROTO_L2TP);
1647 goto err;
1648 }
1649 break;
James Chapmanfd558d12010-04-02 06:18:33 +00001650 }
1651
1652 /* Check if this socket has already been prepped */
1653 tunnel = (struct l2tp_tunnel *)sk->sk_user_data;
1654 if (tunnel != NULL) {
1655 /* This socket has already been prepped */
1656 err = -EBUSY;
1657 goto err;
1658 }
1659
James Chapmanfd558d12010-04-02 06:18:33 +00001660 tunnel = kzalloc(sizeof(struct l2tp_tunnel), GFP_KERNEL);
1661 if (tunnel == NULL) {
1662 err = -ENOMEM;
1663 goto err;
1664 }
1665
1666 tunnel->version = version;
1667 tunnel->tunnel_id = tunnel_id;
1668 tunnel->peer_tunnel_id = peer_tunnel_id;
1669 tunnel->debug = L2TP_DEFAULT_DEBUG_FLAGS;
1670
1671 tunnel->magic = L2TP_TUNNEL_MAGIC;
1672 sprintf(&tunnel->name[0], "tunl %u", tunnel_id);
1673 rwlock_init(&tunnel->hlist_lock);
1674
1675 /* The net we belong to */
1676 tunnel->l2tp_net = net;
1677 pn = l2tp_pernet(net);
1678
James Chapman0d767512010-04-02 06:19:00 +00001679 if (cfg != NULL)
James Chapmanfd558d12010-04-02 06:18:33 +00001680 tunnel->debug = cfg->debug;
1681
1682 /* Mark socket as an encapsulation socket. See net/ipv4/udp.c */
James Chapman0d767512010-04-02 06:19:00 +00001683 tunnel->encap = encap;
1684 if (encap == L2TP_ENCAPTYPE_UDP) {
1685 /* Mark socket as an encapsulation socket. See net/ipv4/udp.c */
1686 udp_sk(sk)->encap_type = UDP_ENCAP_L2TPINUDP;
1687 udp_sk(sk)->encap_rcv = l2tp_udp_encap_recv;
Tom Parkin9980d002013-03-19 06:11:13 +00001688 udp_sk(sk)->encap_destroy = l2tp_udp_encap_destroy;
Benjamin LaHaised2cf3362012-04-27 08:24:18 +00001689#if IS_ENABLED(CONFIG_IPV6)
1690 if (sk->sk_family == PF_INET6)
1691 udpv6_encap_enable();
1692 else
1693#endif
Eric Dumazet447167b2012-04-11 23:05:28 +00001694 udp_encap_enable();
James Chapman0d767512010-04-02 06:19:00 +00001695 }
James Chapmanfd558d12010-04-02 06:18:33 +00001696
1697 sk->sk_user_data = tunnel;
1698
1699 /* Hook on the tunnel socket destructor so that we can cleanup
1700 * if the tunnel socket goes away.
1701 */
1702 tunnel->old_sk_destruct = sk->sk_destruct;
1703 sk->sk_destruct = &l2tp_tunnel_destruct;
1704 tunnel->sock = sk;
Tom Parkin80d84ef2013-01-22 05:13:48 +00001705 tunnel->fd = fd;
Eric Dumazet37159ef2012-09-04 07:18:57 +00001706 lockdep_set_class_and_name(&sk->sk_lock.slock, &l2tp_socket_class, "l2tp_sock");
1707
James Chapmanfd558d12010-04-02 06:18:33 +00001708 sk->sk_allocation = GFP_ATOMIC;
1709
Tom Parkinf8ccac02013-01-31 23:43:00 +00001710 /* Init delete workqueue struct */
1711 INIT_WORK(&tunnel->del_work, l2tp_tunnel_del_work);
1712
James Chapmanfd558d12010-04-02 06:18:33 +00001713 /* Add tunnel to our list */
1714 INIT_LIST_HEAD(&tunnel->list);
James Chapmanfd558d12010-04-02 06:18:33 +00001715 atomic_inc(&l2tp_tunnel_count);
1716
1717 /* Bump the reference count. The tunnel context is deleted
Eric Dumazet17691922011-05-11 18:22:36 +00001718 * only when this drops to zero. Must be done before list insertion
James Chapmanfd558d12010-04-02 06:18:33 +00001719 */
1720 l2tp_tunnel_inc_refcount(tunnel);
Eric Dumazet17691922011-05-11 18:22:36 +00001721 spin_lock_bh(&pn->l2tp_tunnel_list_lock);
1722 list_add_rcu(&tunnel->list, &pn->l2tp_tunnel_list);
1723 spin_unlock_bh(&pn->l2tp_tunnel_list_lock);
James Chapmanfd558d12010-04-02 06:18:33 +00001724
1725 err = 0;
1726err:
1727 if (tunnelp)
1728 *tunnelp = tunnel;
1729
James Chapman789a4a22010-04-02 06:19:40 +00001730 /* If tunnel's socket was created by the kernel, it doesn't
1731 * have a file.
1732 */
1733 if (sock && sock->file)
James Chapmanfd558d12010-04-02 06:18:33 +00001734 sockfd_put(sock);
1735
1736 return err;
1737}
1738EXPORT_SYMBOL_GPL(l2tp_tunnel_create);
1739
James Chapman309795f2010-04-02 06:19:10 +00001740/* This function is used by the netlink TUNNEL_DELETE command.
1741 */
1742int l2tp_tunnel_delete(struct l2tp_tunnel *tunnel)
1743{
Tom Parkin2b551c62013-03-19 06:11:16 +00001744 l2tp_tunnel_closeall(tunnel);
Tom Parkinf8ccac02013-01-31 23:43:00 +00001745 return (false == queue_work(l2tp_wq, &tunnel->del_work));
James Chapman309795f2010-04-02 06:19:10 +00001746}
1747EXPORT_SYMBOL_GPL(l2tp_tunnel_delete);
1748
James Chapmanfd558d12010-04-02 06:18:33 +00001749/* Really kill the session.
1750 */
1751void l2tp_session_free(struct l2tp_session *session)
1752{
1753 struct l2tp_tunnel *tunnel;
1754
1755 BUG_ON(atomic_read(&session->ref_count) != 0);
1756
1757 tunnel = session->tunnel;
1758 if (tunnel != NULL) {
1759 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
1760
1761 /* Delete the session from the hash */
1762 write_lock_bh(&tunnel->hlist_lock);
1763 hlist_del_init(&session->hlist);
1764 write_unlock_bh(&tunnel->hlist_lock);
1765
James Chapmanf7faffa2010-04-02 06:18:49 +00001766 /* Unlink from the global hash if not L2TPv2 */
1767 if (tunnel->version != L2TP_HDR_VER_2) {
1768 struct l2tp_net *pn = l2tp_pernet(tunnel->l2tp_net);
1769
James Chapmane02d4942010-04-02 06:19:16 +00001770 spin_lock_bh(&pn->l2tp_session_hlist_lock);
1771 hlist_del_init_rcu(&session->global_hlist);
1772 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
1773 synchronize_rcu();
James Chapmanf7faffa2010-04-02 06:18:49 +00001774 }
1775
James Chapmanfd558d12010-04-02 06:18:33 +00001776 if (session->session_id != 0)
1777 atomic_dec(&l2tp_session_count);
1778
1779 sock_put(tunnel->sock);
1780
1781 /* This will delete the tunnel context if this
1782 * is the last session on the tunnel.
1783 */
1784 session->tunnel = NULL;
1785 l2tp_tunnel_dec_refcount(tunnel);
1786 }
1787
1788 kfree(session);
1789
1790 return;
1791}
1792EXPORT_SYMBOL_GPL(l2tp_session_free);
1793
James Chapman309795f2010-04-02 06:19:10 +00001794/* This function is used by the netlink SESSION_DELETE command and by
1795 pseudowire modules.
1796 */
1797int l2tp_session_delete(struct l2tp_session *session)
1798{
1799 if (session->session_close != NULL)
1800 (*session->session_close)(session);
1801
1802 l2tp_session_dec_refcount(session);
1803
1804 return 0;
1805}
1806EXPORT_SYMBOL_GPL(l2tp_session_delete);
1807
1808
James Chapmanf7faffa2010-04-02 06:18:49 +00001809/* We come here whenever a session's send_seq, cookie_len or
1810 * l2specific_len parameters are set.
1811 */
stephen hemmingerfc130842010-10-21 07:50:46 +00001812static void l2tp_session_set_header_len(struct l2tp_session *session, int version)
James Chapmanf7faffa2010-04-02 06:18:49 +00001813{
1814 if (version == L2TP_HDR_VER_2) {
1815 session->hdr_len = 6;
1816 if (session->send_seq)
1817 session->hdr_len += 4;
1818 } else {
James Chapman0d767512010-04-02 06:19:00 +00001819 session->hdr_len = 4 + session->cookie_len + session->l2specific_len + session->offset;
1820 if (session->tunnel->encap == L2TP_ENCAPTYPE_UDP)
1821 session->hdr_len += 4;
James Chapmanf7faffa2010-04-02 06:18:49 +00001822 }
1823
1824}
James Chapmanf7faffa2010-04-02 06:18:49 +00001825
James Chapmanfd558d12010-04-02 06:18:33 +00001826struct l2tp_session *l2tp_session_create(int priv_size, struct l2tp_tunnel *tunnel, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
1827{
1828 struct l2tp_session *session;
1829
1830 session = kzalloc(sizeof(struct l2tp_session) + priv_size, GFP_KERNEL);
1831 if (session != NULL) {
1832 session->magic = L2TP_SESSION_MAGIC;
1833 session->tunnel = tunnel;
1834
1835 session->session_id = session_id;
1836 session->peer_session_id = peer_session_id;
James Chapmand301e322012-05-09 23:43:09 +00001837 session->nr = 0;
James Chapmanfd558d12010-04-02 06:18:33 +00001838
1839 sprintf(&session->name[0], "sess %u/%u",
1840 tunnel->tunnel_id, session->session_id);
1841
1842 skb_queue_head_init(&session->reorder_q);
1843
1844 INIT_HLIST_NODE(&session->hlist);
James Chapmanf7faffa2010-04-02 06:18:49 +00001845 INIT_HLIST_NODE(&session->global_hlist);
James Chapmanfd558d12010-04-02 06:18:33 +00001846
1847 /* Inherit debug options from tunnel */
1848 session->debug = tunnel->debug;
1849
1850 if (cfg) {
James Chapmanf7faffa2010-04-02 06:18:49 +00001851 session->pwtype = cfg->pw_type;
James Chapmanfd558d12010-04-02 06:18:33 +00001852 session->debug = cfg->debug;
James Chapmanfd558d12010-04-02 06:18:33 +00001853 session->mtu = cfg->mtu;
1854 session->mru = cfg->mru;
1855 session->send_seq = cfg->send_seq;
1856 session->recv_seq = cfg->recv_seq;
1857 session->lns_mode = cfg->lns_mode;
James Chapmanf7faffa2010-04-02 06:18:49 +00001858 session->reorder_timeout = cfg->reorder_timeout;
1859 session->offset = cfg->offset;
1860 session->l2specific_type = cfg->l2specific_type;
1861 session->l2specific_len = cfg->l2specific_len;
1862 session->cookie_len = cfg->cookie_len;
1863 memcpy(&session->cookie[0], &cfg->cookie[0], cfg->cookie_len);
1864 session->peer_cookie_len = cfg->peer_cookie_len;
1865 memcpy(&session->peer_cookie[0], &cfg->peer_cookie[0], cfg->peer_cookie_len);
James Chapmanfd558d12010-04-02 06:18:33 +00001866 }
1867
James Chapmanf7faffa2010-04-02 06:18:49 +00001868 if (tunnel->version == L2TP_HDR_VER_2)
1869 session->build_header = l2tp_build_l2tpv2_header;
1870 else
1871 session->build_header = l2tp_build_l2tpv3_header;
1872
1873 l2tp_session_set_header_len(session, tunnel->version);
1874
James Chapmanfd558d12010-04-02 06:18:33 +00001875 /* Bump the reference count. The session context is deleted
1876 * only when this drops to zero.
1877 */
1878 l2tp_session_inc_refcount(session);
1879 l2tp_tunnel_inc_refcount(tunnel);
1880
1881 /* Ensure tunnel socket isn't deleted */
1882 sock_hold(tunnel->sock);
1883
1884 /* Add session to the tunnel's hash list */
1885 write_lock_bh(&tunnel->hlist_lock);
1886 hlist_add_head(&session->hlist,
1887 l2tp_session_id_hash(tunnel, session_id));
1888 write_unlock_bh(&tunnel->hlist_lock);
1889
James Chapmanf7faffa2010-04-02 06:18:49 +00001890 /* And to the global session list if L2TPv3 */
1891 if (tunnel->version != L2TP_HDR_VER_2) {
1892 struct l2tp_net *pn = l2tp_pernet(tunnel->l2tp_net);
1893
James Chapmane02d4942010-04-02 06:19:16 +00001894 spin_lock_bh(&pn->l2tp_session_hlist_lock);
1895 hlist_add_head_rcu(&session->global_hlist,
1896 l2tp_session_id_hash_2(pn, session_id));
1897 spin_unlock_bh(&pn->l2tp_session_hlist_lock);
James Chapmanf7faffa2010-04-02 06:18:49 +00001898 }
1899
James Chapmanfd558d12010-04-02 06:18:33 +00001900 /* Ignore management session in session count value */
1901 if (session->session_id != 0)
1902 atomic_inc(&l2tp_session_count);
1903 }
1904
1905 return session;
1906}
1907EXPORT_SYMBOL_GPL(l2tp_session_create);
1908
1909/*****************************************************************************
1910 * Init and cleanup
1911 *****************************************************************************/
1912
1913static __net_init int l2tp_init_net(struct net *net)
1914{
Jiri Pirkoe773aaf2010-04-23 00:53:39 +00001915 struct l2tp_net *pn = net_generic(net, l2tp_net_id);
James Chapmanf7faffa2010-04-02 06:18:49 +00001916 int hash;
James Chapmanfd558d12010-04-02 06:18:33 +00001917
James Chapmanfd558d12010-04-02 06:18:33 +00001918 INIT_LIST_HEAD(&pn->l2tp_tunnel_list);
James Chapmane02d4942010-04-02 06:19:16 +00001919 spin_lock_init(&pn->l2tp_tunnel_list_lock);
James Chapmanfd558d12010-04-02 06:18:33 +00001920
James Chapmanf7faffa2010-04-02 06:18:49 +00001921 for (hash = 0; hash < L2TP_HASH_SIZE_2; hash++)
1922 INIT_HLIST_HEAD(&pn->l2tp_session_hlist[hash]);
1923
James Chapmane02d4942010-04-02 06:19:16 +00001924 spin_lock_init(&pn->l2tp_session_hlist_lock);
James Chapmanf7faffa2010-04-02 06:18:49 +00001925
James Chapmanfd558d12010-04-02 06:18:33 +00001926 return 0;
James Chapmanfd558d12010-04-02 06:18:33 +00001927}
1928
Tom Parkin167eb172013-01-31 23:43:03 +00001929static __net_exit void l2tp_exit_net(struct net *net)
1930{
1931 struct l2tp_net *pn = l2tp_pernet(net);
1932 struct l2tp_tunnel *tunnel = NULL;
1933
1934 rcu_read_lock_bh();
1935 list_for_each_entry_rcu(tunnel, &pn->l2tp_tunnel_list, list) {
1936 (void)l2tp_tunnel_delete(tunnel);
1937 }
1938 rcu_read_unlock_bh();
1939}
1940
James Chapmanfd558d12010-04-02 06:18:33 +00001941static struct pernet_operations l2tp_net_ops = {
1942 .init = l2tp_init_net,
Tom Parkin167eb172013-01-31 23:43:03 +00001943 .exit = l2tp_exit_net,
James Chapmanfd558d12010-04-02 06:18:33 +00001944 .id = &l2tp_net_id,
1945 .size = sizeof(struct l2tp_net),
1946};
1947
1948static int __init l2tp_init(void)
1949{
1950 int rc = 0;
1951
1952 rc = register_pernet_device(&l2tp_net_ops);
1953 if (rc)
1954 goto out;
1955
Tom Parkinf8ccac02013-01-31 23:43:00 +00001956 l2tp_wq = alloc_workqueue("l2tp", WQ_NON_REENTRANT | WQ_UNBOUND, 0);
1957 if (!l2tp_wq) {
1958 pr_err("alloc_workqueue failed\n");
1959 rc = -ENOMEM;
1960 goto out;
1961 }
1962
Joe Perchesa4ca44f2012-05-16 09:55:56 +00001963 pr_info("L2TP core driver, %s\n", L2TP_DRV_VERSION);
James Chapmanfd558d12010-04-02 06:18:33 +00001964
1965out:
1966 return rc;
1967}
1968
1969static void __exit l2tp_exit(void)
1970{
1971 unregister_pernet_device(&l2tp_net_ops);
Tom Parkinf8ccac02013-01-31 23:43:00 +00001972 if (l2tp_wq) {
1973 destroy_workqueue(l2tp_wq);
1974 l2tp_wq = NULL;
1975 }
James Chapmanfd558d12010-04-02 06:18:33 +00001976}
1977
1978module_init(l2tp_init);
1979module_exit(l2tp_exit);
1980
1981MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
1982MODULE_DESCRIPTION("L2TP core");
1983MODULE_LICENSE("GPL");
1984MODULE_VERSION(L2TP_DRV_VERSION);
1985