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