blob: b1d4370c8962fc947f16dde54846c11ece2716b5 [file] [log] [blame]
James Chapman0d767512010-04-02 06:19:00 +00001/*
2 * L2TPv3 IP encapsulation support
3 *
4 * Copyright (c) 2008,2009,2010 Katalix Systems Ltd
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/icmp.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/random.h>
16#include <linux/socket.h>
17#include <linux/l2tp.h>
18#include <linux/in.h>
19#include <net/sock.h>
20#include <net/ip.h>
21#include <net/icmp.h>
22#include <net/udp.h>
23#include <net/inet_common.h>
24#include <net/inet_hashtables.h>
25#include <net/tcp_states.h>
26#include <net/protocol.h>
27#include <net/xfrm.h>
28
29#include "l2tp_core.h"
30
31struct l2tp_ip_sock {
32 /* inet_sock has to be the first member of l2tp_ip_sock */
33 struct inet_sock inet;
34
35 __u32 conn_id;
36 __u32 peer_conn_id;
37
38 __u64 tx_packets;
39 __u64 tx_bytes;
40 __u64 tx_errors;
41 __u64 rx_packets;
42 __u64 rx_bytes;
43 __u64 rx_errors;
44};
45
46static DEFINE_RWLOCK(l2tp_ip_lock);
47static struct hlist_head l2tp_ip_table;
48static struct hlist_head l2tp_ip_bind_table;
49
50static inline struct l2tp_ip_sock *l2tp_ip_sk(const struct sock *sk)
51{
52 return (struct l2tp_ip_sock *)sk;
53}
54
55static struct sock *__l2tp_ip_bind_lookup(struct net *net, __be32 laddr, int dif, u32 tunnel_id)
56{
57 struct hlist_node *node;
58 struct sock *sk;
59
60 sk_for_each_bound(sk, node, &l2tp_ip_bind_table) {
61 struct inet_sock *inet = inet_sk(sk);
62 struct l2tp_ip_sock *l2tp = l2tp_ip_sk(sk);
63
64 if (l2tp == NULL)
65 continue;
66
67 if ((l2tp->conn_id == tunnel_id) &&
Eric Dumazete83726b2010-10-21 04:39:09 -070068 net_eq(sock_net(sk), net) &&
James Chapman0d767512010-04-02 06:19:00 +000069 !(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) &&
70 !(sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif))
71 goto found;
72 }
73
74 sk = NULL;
75found:
76 return sk;
77}
78
79static inline struct sock *l2tp_ip_bind_lookup(struct net *net, __be32 laddr, int dif, u32 tunnel_id)
80{
81 struct sock *sk = __l2tp_ip_bind_lookup(net, laddr, dif, tunnel_id);
82 if (sk)
83 sock_hold(sk);
84
85 return sk;
86}
87
88/* When processing receive frames, there are two cases to
89 * consider. Data frames consist of a non-zero session-id and an
90 * optional cookie. Control frames consist of a regular L2TP header
91 * preceded by 32-bits of zeros.
92 *
93 * L2TPv3 Session Header Over IP
94 *
95 * 0 1 2 3
96 * 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
97 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
98 * | Session ID |
99 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
100 * | Cookie (optional, maximum 64 bits)...
101 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102 * |
103 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
104 *
105 * L2TPv3 Control Message Header Over IP
106 *
107 * 0 1 2 3
108 * 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
109 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
110 * | (32 bits of zeros) |
111 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
112 * |T|L|x|x|S|x|x|x|x|x|x|x| Ver | Length |
113 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
114 * | Control Connection ID |
115 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
116 * | Ns | Nr |
117 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
118 *
119 * All control frames are passed to userspace.
120 */
121static int l2tp_ip_recv(struct sk_buff *skb)
122{
123 struct sock *sk;
124 u32 session_id;
125 u32 tunnel_id;
126 unsigned char *ptr, *optr;
127 struct l2tp_session *session;
128 struct l2tp_tunnel *tunnel = NULL;
129 int length;
130 int offset;
131
132 /* Point to L2TP header */
133 optr = ptr = skb->data;
134
135 if (!pskb_may_pull(skb, 4))
136 goto discard;
137
138 session_id = ntohl(*((__be32 *) ptr));
139 ptr += 4;
140
141 /* RFC3931: L2TP/IP packets have the first 4 bytes containing
142 * the session_id. If it is 0, the packet is a L2TP control
143 * frame and the session_id value can be discarded.
144 */
145 if (session_id == 0) {
146 __skb_pull(skb, 4);
147 goto pass_up;
148 }
149
150 /* Ok, this is a data packet. Lookup the session. */
151 session = l2tp_session_find(&init_net, NULL, session_id);
152 if (session == NULL)
153 goto discard;
154
155 tunnel = session->tunnel;
156 if (tunnel == NULL)
157 goto discard;
158
159 /* Trace packet contents, if enabled */
160 if (tunnel->debug & L2TP_MSG_DATA) {
161 length = min(32u, skb->len);
162 if (!pskb_may_pull(skb, length))
163 goto discard;
164
165 printk(KERN_DEBUG "%s: ip recv: ", tunnel->name);
166
167 offset = 0;
168 do {
169 printk(" %02X", ptr[offset]);
170 } while (++offset < length);
171
172 printk("\n");
173 }
174
175 l2tp_recv_common(session, skb, ptr, optr, 0, skb->len, tunnel->recv_payload_hook);
176
177 return 0;
178
179pass_up:
180 /* Get the tunnel_id from the L2TP header */
181 if (!pskb_may_pull(skb, 12))
182 goto discard;
183
184 if ((skb->data[0] & 0xc0) != 0xc0)
185 goto discard;
186
187 tunnel_id = ntohl(*(__be32 *) &skb->data[4]);
188 tunnel = l2tp_tunnel_find(&init_net, tunnel_id);
189 if (tunnel != NULL)
190 sk = tunnel->sock;
191 else {
192 struct iphdr *iph = (struct iphdr *) skb_network_header(skb);
193
194 read_lock_bh(&l2tp_ip_lock);
195 sk = __l2tp_ip_bind_lookup(&init_net, iph->daddr, 0, tunnel_id);
196 read_unlock_bh(&l2tp_ip_lock);
197 }
198
199 if (sk == NULL)
200 goto discard;
201
202 sock_hold(sk);
203
204 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
205 goto discard_put;
206
207 nf_reset(skb);
208
209 return sk_receive_skb(sk, skb, 1);
210
211discard_put:
212 sock_put(sk);
213
214discard:
215 kfree_skb(skb);
216 return 0;
217}
218
219static int l2tp_ip_open(struct sock *sk)
220{
221 /* Prevent autobind. We don't have ports. */
222 inet_sk(sk)->inet_num = IPPROTO_L2TP;
223
224 write_lock_bh(&l2tp_ip_lock);
225 sk_add_node(sk, &l2tp_ip_table);
226 write_unlock_bh(&l2tp_ip_lock);
227
228 return 0;
229}
230
231static void l2tp_ip_close(struct sock *sk, long timeout)
232{
233 write_lock_bh(&l2tp_ip_lock);
234 hlist_del_init(&sk->sk_bind_node);
James Chapmand1f224a2012-04-10 00:10:42 +0000235 sk_del_node_init(sk);
James Chapman0d767512010-04-02 06:19:00 +0000236 write_unlock_bh(&l2tp_ip_lock);
237 sk_common_release(sk);
238}
239
240static void l2tp_ip_destroy_sock(struct sock *sk)
241{
242 struct sk_buff *skb;
243
244 while ((skb = __skb_dequeue_tail(&sk->sk_write_queue)) != NULL)
245 kfree_skb(skb);
246
247 sk_refcnt_debug_dec(sk);
248}
249
250static int l2tp_ip_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
251{
252 struct inet_sock *inet = inet_sk(sk);
253 struct sockaddr_l2tpip *addr = (struct sockaddr_l2tpip *) uaddr;
James Chapmanea1ae372012-05-29 23:13:23 +0000254 int ret;
James Chapman0d767512010-04-02 06:19:00 +0000255 int chk_addr_ret;
256
James Chapmanea1ae372012-05-29 23:13:23 +0000257 if (!sock_flag(sk, SOCK_ZAPPED))
258 return -EINVAL;
259 if (addr_len < sizeof(struct sockaddr_l2tpip))
260 return -EINVAL;
261 if (addr->l2tp_family != AF_INET)
262 return -EINVAL;
263
James Chapman0d767512010-04-02 06:19:00 +0000264 ret = -EADDRINUSE;
265 read_lock_bh(&l2tp_ip_lock);
266 if (__l2tp_ip_bind_lookup(&init_net, addr->l2tp_addr.s_addr, sk->sk_bound_dev_if, addr->l2tp_conn_id))
267 goto out_in_use;
268
269 read_unlock_bh(&l2tp_ip_lock);
270
271 lock_sock(sk);
272 if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_l2tpip))
273 goto out;
274
275 chk_addr_ret = inet_addr_type(&init_net, addr->l2tp_addr.s_addr);
276 ret = -EADDRNOTAVAIL;
277 if (addr->l2tp_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
278 chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
279 goto out;
280
James Chapmanc9be48d2012-04-10 00:10:43 +0000281 if (addr->l2tp_addr.s_addr)
282 inet->inet_rcv_saddr = inet->inet_saddr = addr->l2tp_addr.s_addr;
James Chapman0d767512010-04-02 06:19:00 +0000283 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
284 inet->inet_saddr = 0; /* Use device */
285 sk_dst_reset(sk);
286
287 l2tp_ip_sk(sk)->conn_id = addr->l2tp_conn_id;
288
289 write_lock_bh(&l2tp_ip_lock);
290 sk_add_bind_node(sk, &l2tp_ip_bind_table);
291 sk_del_node_init(sk);
292 write_unlock_bh(&l2tp_ip_lock);
293 ret = 0;
James Chapmanea1ae372012-05-29 23:13:23 +0000294 sock_reset_flag(sk, SOCK_ZAPPED);
295
James Chapman0d767512010-04-02 06:19:00 +0000296out:
297 release_sock(sk);
298
299 return ret;
300
301out_in_use:
302 read_unlock_bh(&l2tp_ip_lock);
303
304 return ret;
305}
306
307static int l2tp_ip_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
308{
James Chapman0d767512010-04-02 06:19:00 +0000309 struct sockaddr_l2tpip *lsa = (struct sockaddr_l2tpip *) uaddr;
David S. Miller2d7192d2011-04-26 13:28:44 -0700310 struct inet_sock *inet = inet_sk(sk);
David S. Millerfdbb0f02011-05-08 13:48:37 -0700311 struct flowi4 *fl4;
James Chapman0d767512010-04-02 06:19:00 +0000312 struct rtable *rt;
313 __be32 saddr;
David S. Miller2d7192d2011-04-26 13:28:44 -0700314 int oif, rc;
James Chapman0d767512010-04-02 06:19:00 +0000315
James Chapmanea1ae372012-05-29 23:13:23 +0000316 if (sock_flag(sk, SOCK_ZAPPED)) /* Must bind first - autobinding does not work */
317 return -EINVAL;
James Chapman0d767512010-04-02 06:19:00 +0000318
James Chapmanea1ae372012-05-29 23:13:23 +0000319 if (addr_len < sizeof(*lsa))
320 return -EINVAL;
321
James Chapman0d767512010-04-02 06:19:00 +0000322 if (lsa->l2tp_family != AF_INET)
James Chapmanea1ae372012-05-29 23:13:23 +0000323 return -EAFNOSUPPORT;
James Chapman0d767512010-04-02 06:19:00 +0000324
David S. Miller2f162702011-05-08 13:39:01 -0700325 lock_sock(sk);
326
James Chapman0d767512010-04-02 06:19:00 +0000327 sk_dst_reset(sk);
328
329 oif = sk->sk_bound_dev_if;
330 saddr = inet->inet_saddr;
331
332 rc = -EINVAL;
333 if (ipv4_is_multicast(lsa->l2tp_addr.s_addr))
334 goto out;
335
David S. Millerfdbb0f02011-05-08 13:48:37 -0700336 fl4 = &inet->cork.fl.u.ip4;
337 rt = ip_route_connect(fl4, lsa->l2tp_addr.s_addr, saddr,
James Chapman0d767512010-04-02 06:19:00 +0000338 RT_CONN_FLAGS(sk), oif,
339 IPPROTO_L2TP,
David S. Millerabdf7e72011-03-01 14:15:24 -0800340 0, 0, sk, true);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800341 if (IS_ERR(rt)) {
342 rc = PTR_ERR(rt);
James Chapman0d767512010-04-02 06:19:00 +0000343 if (rc == -ENETUNREACH)
344 IP_INC_STATS_BH(&init_net, IPSTATS_MIB_OUTNOROUTES);
345 goto out;
346 }
347
348 rc = -ENETUNREACH;
349 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
350 ip_rt_put(rt);
351 goto out;
352 }
353
354 l2tp_ip_sk(sk)->peer_conn_id = lsa->l2tp_conn_id;
355
356 if (!inet->inet_saddr)
David S. Millerfdbb0f02011-05-08 13:48:37 -0700357 inet->inet_saddr = fl4->saddr;
James Chapman0d767512010-04-02 06:19:00 +0000358 if (!inet->inet_rcv_saddr)
David S. Millerfdbb0f02011-05-08 13:48:37 -0700359 inet->inet_rcv_saddr = fl4->saddr;
360 inet->inet_daddr = fl4->daddr;
James Chapman0d767512010-04-02 06:19:00 +0000361 sk->sk_state = TCP_ESTABLISHED;
362 inet->inet_id = jiffies;
363
Changli Gaod8d1f302010-06-10 23:31:35 -0700364 sk_dst_set(sk, &rt->dst);
James Chapman0d767512010-04-02 06:19:00 +0000365
366 write_lock_bh(&l2tp_ip_lock);
367 hlist_del_init(&sk->sk_bind_node);
368 sk_add_bind_node(sk, &l2tp_ip_bind_table);
369 write_unlock_bh(&l2tp_ip_lock);
370
371 rc = 0;
372out:
David S. Miller2f162702011-05-08 13:39:01 -0700373 release_sock(sk);
James Chapman0d767512010-04-02 06:19:00 +0000374 return rc;
375}
376
James Chapmanea1ae372012-05-29 23:13:23 +0000377static int l2tp_ip_disconnect(struct sock *sk, int flags)
378{
379 if (sock_flag(sk, SOCK_ZAPPED))
380 return 0;
381
382 return udp_disconnect(sk, flags);
383}
384
James Chapman0d767512010-04-02 06:19:00 +0000385static int l2tp_ip_getname(struct socket *sock, struct sockaddr *uaddr,
386 int *uaddr_len, int peer)
387{
388 struct sock *sk = sock->sk;
389 struct inet_sock *inet = inet_sk(sk);
390 struct l2tp_ip_sock *lsk = l2tp_ip_sk(sk);
391 struct sockaddr_l2tpip *lsa = (struct sockaddr_l2tpip *)uaddr;
392
393 memset(lsa, 0, sizeof(*lsa));
394 lsa->l2tp_family = AF_INET;
395 if (peer) {
396 if (!inet->inet_dport)
397 return -ENOTCONN;
398 lsa->l2tp_conn_id = lsk->peer_conn_id;
399 lsa->l2tp_addr.s_addr = inet->inet_daddr;
400 } else {
401 __be32 addr = inet->inet_rcv_saddr;
402 if (!addr)
403 addr = inet->inet_saddr;
404 lsa->l2tp_conn_id = lsk->conn_id;
405 lsa->l2tp_addr.s_addr = addr;
406 }
407 *uaddr_len = sizeof(*lsa);
408 return 0;
409}
410
411static int l2tp_ip_backlog_recv(struct sock *sk, struct sk_buff *skb)
412{
413 int rc;
414
James Chapman0d767512010-04-02 06:19:00 +0000415 /* Charge it to the socket, dropping if the queue is full. */
416 rc = sock_queue_rcv_skb(sk, skb);
417 if (rc < 0)
418 goto drop;
419
420 return 0;
421
422drop:
423 IP_INC_STATS(&init_net, IPSTATS_MIB_INDISCARDS);
424 kfree_skb(skb);
425 return -1;
426}
427
428/* Userspace will call sendmsg() on the tunnel socket to send L2TP
429 * control frames.
430 */
431static int l2tp_ip_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg, size_t len)
432{
433 struct sk_buff *skb;
434 int rc;
435 struct l2tp_ip_sock *lsa = l2tp_ip_sk(sk);
436 struct inet_sock *inet = inet_sk(sk);
James Chapman0d767512010-04-02 06:19:00 +0000437 struct rtable *rt = NULL;
David S. Millerfdbb0f02011-05-08 13:48:37 -0700438 struct flowi4 *fl4;
James Chapman0d767512010-04-02 06:19:00 +0000439 int connected = 0;
440 __be32 daddr;
441
David S. Miller2f162702011-05-08 13:39:01 -0700442 lock_sock(sk);
443
444 rc = -ENOTCONN;
James Chapman0d767512010-04-02 06:19:00 +0000445 if (sock_flag(sk, SOCK_DEAD))
David S. Miller2f162702011-05-08 13:39:01 -0700446 goto out;
James Chapman0d767512010-04-02 06:19:00 +0000447
448 /* Get and verify the address. */
449 if (msg->msg_name) {
450 struct sockaddr_l2tpip *lip = (struct sockaddr_l2tpip *) msg->msg_name;
David S. Miller2f162702011-05-08 13:39:01 -0700451 rc = -EINVAL;
James Chapman0d767512010-04-02 06:19:00 +0000452 if (msg->msg_namelen < sizeof(*lip))
David S. Miller2f162702011-05-08 13:39:01 -0700453 goto out;
James Chapman0d767512010-04-02 06:19:00 +0000454
455 if (lip->l2tp_family != AF_INET) {
David S. Miller2f162702011-05-08 13:39:01 -0700456 rc = -EAFNOSUPPORT;
James Chapman0d767512010-04-02 06:19:00 +0000457 if (lip->l2tp_family != AF_UNSPEC)
David S. Miller2f162702011-05-08 13:39:01 -0700458 goto out;
James Chapman0d767512010-04-02 06:19:00 +0000459 }
460
461 daddr = lip->l2tp_addr.s_addr;
462 } else {
Sasha Levin84768ed2012-05-02 03:58:43 +0000463 rc = -EDESTADDRREQ;
James Chapman0d767512010-04-02 06:19:00 +0000464 if (sk->sk_state != TCP_ESTABLISHED)
Sasha Levin84768ed2012-05-02 03:58:43 +0000465 goto out;
James Chapman0d767512010-04-02 06:19:00 +0000466
467 daddr = inet->inet_daddr;
468 connected = 1;
469 }
470
471 /* Allocate a socket buffer */
472 rc = -ENOMEM;
473 skb = sock_wmalloc(sk, 2 + NET_SKB_PAD + sizeof(struct iphdr) +
474 4 + len, 0, GFP_KERNEL);
475 if (!skb)
476 goto error;
477
478 /* Reserve space for headers, putting IP header on 4-byte boundary. */
479 skb_reserve(skb, 2 + NET_SKB_PAD);
480 skb_reset_network_header(skb);
481 skb_reserve(skb, sizeof(struct iphdr));
482 skb_reset_transport_header(skb);
483
484 /* Insert 0 session_id */
485 *((__be32 *) skb_put(skb, 4)) = 0;
486
487 /* Copy user data into skb */
488 rc = memcpy_fromiovec(skb_put(skb, len), msg->msg_iov, len);
489 if (rc < 0) {
490 kfree_skb(skb);
491 goto error;
492 }
493
David S. Millerfdbb0f02011-05-08 13:48:37 -0700494 fl4 = &inet->cork.fl.u.ip4;
James Chapman0d767512010-04-02 06:19:00 +0000495 if (connected)
496 rt = (struct rtable *) __sk_dst_check(sk, 0);
497
Eric Dumazet081b1b12011-06-11 22:27:09 +0000498 rcu_read_lock();
James Chapman0d767512010-04-02 06:19:00 +0000499 if (rt == NULL) {
Eric Dumazet081b1b12011-06-11 22:27:09 +0000500 const struct ip_options_rcu *inet_opt;
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000501
David S. Miller778865a2011-04-28 13:54:06 -0700502 inet_opt = rcu_dereference(inet->inet_opt);
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000503
James Chapman0d767512010-04-02 06:19:00 +0000504 /* Use correct destination address if we have options. */
Eric Dumazetf6d8bd02011-04-21 09:45:37 +0000505 if (inet_opt && inet_opt->opt.srr)
506 daddr = inet_opt->opt.faddr;
James Chapman0d767512010-04-02 06:19:00 +0000507
David S. Miller78fbfd82011-03-12 00:00:52 -0500508 /* If this fails, retransmit mechanism of transport layer will
509 * keep trying until route appears or the connection times
510 * itself out.
511 */
David S. Millerfdbb0f02011-05-08 13:48:37 -0700512 rt = ip_route_output_ports(sock_net(sk), fl4, sk,
David S. Miller78fbfd82011-03-12 00:00:52 -0500513 daddr, inet->inet_saddr,
514 inet->inet_dport, inet->inet_sport,
515 sk->sk_protocol, RT_CONN_FLAGS(sk),
516 sk->sk_bound_dev_if);
517 if (IS_ERR(rt))
518 goto no_route;
Eric Dumazet4ffa79b2012-06-08 06:25:00 +0000519 if (connected) {
Eric Dumazet081b1b12011-06-11 22:27:09 +0000520 sk_setup_caps(sk, &rt->dst);
Eric Dumazet4ffa79b2012-06-08 06:25:00 +0000521 } else {
522 skb_dst_set(skb, &rt->dst);
523 goto xmit;
524 }
James Chapman0d767512010-04-02 06:19:00 +0000525 }
Eric Dumazet081b1b12011-06-11 22:27:09 +0000526
527 /* We dont need to clone dst here, it is guaranteed to not disappear.
528 * __dev_xmit_skb() might force a refcount if needed.
529 */
530 skb_dst_set_noref(skb, &rt->dst);
James Chapman0d767512010-04-02 06:19:00 +0000531
Eric Dumazet4ffa79b2012-06-08 06:25:00 +0000532xmit:
James Chapman0d767512010-04-02 06:19:00 +0000533 /* Queue the packet to IP for output */
David S. Millerd9d8da82011-05-06 22:23:20 -0700534 rc = ip_queue_xmit(skb, &inet->cork.fl);
Eric Dumazet081b1b12011-06-11 22:27:09 +0000535 rcu_read_unlock();
James Chapman0d767512010-04-02 06:19:00 +0000536
537error:
538 /* Update stats */
539 if (rc >= 0) {
540 lsa->tx_packets++;
541 lsa->tx_bytes += len;
542 rc = len;
543 } else {
544 lsa->tx_errors++;
545 }
546
David S. Miller2f162702011-05-08 13:39:01 -0700547out:
548 release_sock(sk);
James Chapman0d767512010-04-02 06:19:00 +0000549 return rc;
550
551no_route:
Eric Dumazet081b1b12011-06-11 22:27:09 +0000552 rcu_read_unlock();
James Chapman0d767512010-04-02 06:19:00 +0000553 IP_INC_STATS(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
554 kfree_skb(skb);
David S. Miller2f162702011-05-08 13:39:01 -0700555 rc = -EHOSTUNREACH;
556 goto out;
James Chapman0d767512010-04-02 06:19:00 +0000557}
558
559static int l2tp_ip_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
560 size_t len, int noblock, int flags, int *addr_len)
561{
562 struct inet_sock *inet = inet_sk(sk);
563 struct l2tp_ip_sock *lsk = l2tp_ip_sk(sk);
564 size_t copied = 0;
565 int err = -EOPNOTSUPP;
566 struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
567 struct sk_buff *skb;
568
569 if (flags & MSG_OOB)
570 goto out;
571
572 if (addr_len)
573 *addr_len = sizeof(*sin);
574
575 skb = skb_recv_datagram(sk, flags, noblock, &err);
576 if (!skb)
577 goto out;
578
579 copied = skb->len;
580 if (len < copied) {
581 msg->msg_flags |= MSG_TRUNC;
582 copied = len;
583 }
584
585 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
586 if (err)
587 goto done;
588
589 sock_recv_timestamp(msg, sk, skb);
590
591 /* Copy the address. */
592 if (sin) {
593 sin->sin_family = AF_INET;
594 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
595 sin->sin_port = 0;
596 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
597 }
598 if (inet->cmsg_flags)
599 ip_cmsg_recv(msg, skb);
600 if (flags & MSG_TRUNC)
601 copied = skb->len;
602done:
603 skb_free_datagram(sk, skb);
604out:
605 if (err) {
606 lsk->rx_errors++;
607 return err;
608 }
609
610 lsk->rx_packets++;
611 lsk->rx_bytes += copied;
612
613 return copied;
614}
615
stephen hemmingerfc130842010-10-21 07:50:46 +0000616static struct proto l2tp_ip_prot = {
James Chapman0d767512010-04-02 06:19:00 +0000617 .name = "L2TP/IP",
618 .owner = THIS_MODULE,
619 .init = l2tp_ip_open,
620 .close = l2tp_ip_close,
621 .bind = l2tp_ip_bind,
622 .connect = l2tp_ip_connect,
James Chapmanea1ae372012-05-29 23:13:23 +0000623 .disconnect = l2tp_ip_disconnect,
James Chapman0d767512010-04-02 06:19:00 +0000624 .ioctl = udp_ioctl,
625 .destroy = l2tp_ip_destroy_sock,
626 .setsockopt = ip_setsockopt,
627 .getsockopt = ip_getsockopt,
628 .sendmsg = l2tp_ip_sendmsg,
629 .recvmsg = l2tp_ip_recvmsg,
630 .backlog_rcv = l2tp_ip_backlog_recv,
631 .hash = inet_hash,
632 .unhash = inet_unhash,
633 .obj_size = sizeof(struct l2tp_ip_sock),
634#ifdef CONFIG_COMPAT
635 .compat_setsockopt = compat_ip_setsockopt,
636 .compat_getsockopt = compat_ip_getsockopt,
637#endif
638};
639
640static const struct proto_ops l2tp_ip_ops = {
641 .family = PF_INET,
642 .owner = THIS_MODULE,
643 .release = inet_release,
644 .bind = inet_bind,
645 .connect = inet_dgram_connect,
646 .socketpair = sock_no_socketpair,
647 .accept = sock_no_accept,
648 .getname = l2tp_ip_getname,
649 .poll = datagram_poll,
650 .ioctl = inet_ioctl,
651 .listen = sock_no_listen,
652 .shutdown = inet_shutdown,
653 .setsockopt = sock_common_setsockopt,
654 .getsockopt = sock_common_getsockopt,
655 .sendmsg = inet_sendmsg,
656 .recvmsg = sock_common_recvmsg,
657 .mmap = sock_no_mmap,
658 .sendpage = sock_no_sendpage,
659#ifdef CONFIG_COMPAT
660 .compat_setsockopt = compat_sock_common_setsockopt,
661 .compat_getsockopt = compat_sock_common_getsockopt,
662#endif
663};
664
665static struct inet_protosw l2tp_ip_protosw = {
666 .type = SOCK_DGRAM,
667 .protocol = IPPROTO_L2TP,
668 .prot = &l2tp_ip_prot,
669 .ops = &l2tp_ip_ops,
670 .no_check = 0,
671};
672
673static struct net_protocol l2tp_ip_protocol __read_mostly = {
674 .handler = l2tp_ip_recv,
675};
676
677static int __init l2tp_ip_init(void)
678{
679 int err;
680
681 printk(KERN_INFO "L2TP IP encapsulation support (L2TPv3)\n");
682
683 err = proto_register(&l2tp_ip_prot, 1);
684 if (err != 0)
685 goto out;
686
687 err = inet_add_protocol(&l2tp_ip_protocol, IPPROTO_L2TP);
688 if (err)
689 goto out1;
690
691 inet_register_protosw(&l2tp_ip_protosw);
692 return 0;
693
694out1:
695 proto_unregister(&l2tp_ip_prot);
696out:
697 return err;
698}
699
700static void __exit l2tp_ip_exit(void)
701{
702 inet_unregister_protosw(&l2tp_ip_protosw);
703 inet_del_protocol(&l2tp_ip_protocol, IPPROTO_L2TP);
704 proto_unregister(&l2tp_ip_prot);
705}
706
707module_init(l2tp_ip_init);
708module_exit(l2tp_ip_exit);
709
710MODULE_LICENSE("GPL");
711MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
712MODULE_DESCRIPTION("L2TP over IP");
713MODULE_VERSION("1.0");
Michal Mareke8d34a882010-12-06 02:39:12 +0000714
Lucas De Marchie9c54992011-04-26 23:28:26 -0700715/* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
Michal Mareke8d34a882010-12-06 02:39:12 +0000716 * enums
717 */
718MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET, 2, IPPROTO_L2TP);