blob: a5d3d634fd9a5dd92e2852a87bb58f1ed9f0c8d3 [file] [log] [blame]
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +08001/* drivers/net/pppolac.c
2 *
3 * Driver for PPP on L2TP Access Concentrator / PPPoLAC Socket (RFC 2661)
4 *
5 * Copyright (C) 2009 Google, Inc.
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +08006 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17/* This driver handles L2TP data packets between a UDP socket and a PPP channel.
Chia-chi Yeh463ebc12011-04-15 15:22:09 -070018 * The socket must keep connected, and only one session per socket is permitted.
19 * Sequencing of outgoing packets is controlled by LNS. Incoming packets with
20 * sequences are reordered within a sliding window of one second. Currently
21 * reordering only happens when a packet is received. It is done for simplicity
22 * since no additional locks or threads are required. This driver only works on
23 * IPv4 due to the lack of UDP encapsulation support in IPv6. */
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080024
25#include <linux/module.h>
Chia-chi Yeh463ebc12011-04-15 15:22:09 -070026#include <linux/jiffies.h>
Chia-chi Yehc54f6742009-06-13 02:29:04 +080027#include <linux/workqueue.h>
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080028#include <linux/skbuff.h>
29#include <linux/file.h>
Chia-chi Yehc54f6742009-06-13 02:29:04 +080030#include <linux/netdevice.h>
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080031#include <linux/net.h>
32#include <linux/udp.h>
33#include <linux/ppp_defs.h>
34#include <linux/if_ppp.h>
35#include <linux/if_pppox.h>
36#include <linux/ppp_channel.h>
37#include <net/tcp_states.h>
Chia-chi Yehc54f6742009-06-13 02:29:04 +080038#include <asm/uaccess.h>
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080039
Chia-chi Yehc54f6742009-06-13 02:29:04 +080040#define L2TP_CONTROL_BIT 0x80
41#define L2TP_LENGTH_BIT 0x40
42#define L2TP_SEQUENCE_BIT 0x08
43#define L2TP_OFFSET_BIT 0x02
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080044#define L2TP_VERSION 0x02
Chia-chi Yehc54f6742009-06-13 02:29:04 +080045#define L2TP_VERSION_MASK 0x0F
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080046
47#define PPP_ADDR 0xFF
48#define PPP_CTRL 0x03
49
50union unaligned {
51 __u32 u32;
52} __attribute__((packed));
53
54static inline union unaligned *unaligned(void *ptr)
55{
56 return (union unaligned *)ptr;
57}
58
Chia-chi Yeh463ebc12011-04-15 15:22:09 -070059struct meta {
60 __u32 sequence;
61 __u32 timestamp;
62};
63
64static inline struct meta *skb_meta(struct sk_buff *skb)
65{
66 return (struct meta *)skb->cb;
67}
68
69/******************************************************************************/
70
Chia-chi Yehc54f6742009-06-13 02:29:04 +080071static int pppolac_recv_core(struct sock *sk_udp, struct sk_buff *skb)
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080072{
Chia-chi Yehc54f6742009-06-13 02:29:04 +080073 struct sock *sk = (struct sock *)sk_udp->sk_user_data;
74 struct pppolac_opt *opt = &pppox_sk(sk)->proto.lac;
Chia-chi Yeh463ebc12011-04-15 15:22:09 -070075 struct meta *meta = skb_meta(skb);
76 __u32 now = jiffies;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080077 __u8 bits;
78 __u8 *ptr;
79
Chia-chi Yeh463ebc12011-04-15 15:22:09 -070080 /* Drop the packet if L2TP header is missing. */
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080081 if (skb->len < sizeof(struct udphdr) + 6)
82 goto drop;
83
84 /* Put it back if it is a control packet. */
Chia-chi Yehc54f6742009-06-13 02:29:04 +080085 if (skb->data[sizeof(struct udphdr)] & L2TP_CONTROL_BIT)
86 return opt->backlog_rcv(sk_udp, skb);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080087
Chia-chi Yehc54f6742009-06-13 02:29:04 +080088 /* Skip UDP header. */
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080089 skb_pull(skb, sizeof(struct udphdr));
90
91 /* Check the version. */
92 if ((skb->data[1] & L2TP_VERSION_MASK) != L2TP_VERSION)
93 goto drop;
94 bits = skb->data[0];
95 ptr = &skb->data[2];
96
97 /* Check the length if it is present. */
Chia-chi Yehc54f6742009-06-13 02:29:04 +080098 if (bits & L2TP_LENGTH_BIT) {
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +080099 if ((ptr[0] << 8 | ptr[1]) != skb->len)
100 goto drop;
101 ptr += 2;
102 }
103
104 /* Skip all fields including optional ones. */
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800105 if (!skb_pull(skb, 6 + (bits & L2TP_SEQUENCE_BIT ? 4 : 0) +
106 (bits & L2TP_LENGTH_BIT ? 2 : 0) +
107 (bits & L2TP_OFFSET_BIT ? 2 : 0)))
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800108 goto drop;
109
110 /* Skip the offset padding if it is present. */
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800111 if (bits & L2TP_OFFSET_BIT &&
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800112 !skb_pull(skb, skb->data[-2] << 8 | skb->data[-1]))
113 goto drop;
114
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800115 /* Check the tunnel and the session. */
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800116 if (unaligned(ptr)->u32 != opt->local)
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800117 goto drop;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800118
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700119 /* Check the sequence if it is present. */
120 if (bits & L2TP_SEQUENCE_BIT) {
121 meta->sequence = ptr[4] << 8 | ptr[5];
122 if ((__s16)(meta->sequence - opt->recv_sequence) < 0)
123 goto drop;
124 }
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800125
126 /* Skip PPP address and control if they are present. */
127 if (skb->len >= 2 && skb->data[0] == PPP_ADDR &&
128 skb->data[1] == PPP_CTRL)
129 skb_pull(skb, 2);
130
131 /* Fix PPP protocol if it is compressed. */
132 if (skb->len >= 1 && skb->data[0] & 1)
133 skb_push(skb, 1)[0] = 0;
134
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700135 /* Drop the packet if PPP protocol is missing. */
136 if (skb->len < 2)
137 goto drop;
138
139 /* Perform reordering if sequencing is enabled. */
140 atomic_set(&opt->sequencing, bits & L2TP_SEQUENCE_BIT);
141 if (bits & L2TP_SEQUENCE_BIT) {
142 struct sk_buff *skb1;
143
144 /* Insert the packet into receive queue in order. */
145 skb_set_owner_r(skb, sk);
146 skb_queue_walk(&sk->sk_receive_queue, skb1) {
147 struct meta *meta1 = skb_meta(skb1);
148 __s16 order = meta->sequence - meta1->sequence;
149 if (order == 0)
150 goto drop;
151 if (order < 0) {
152 meta->timestamp = meta1->timestamp;
153 skb_insert(skb1, skb, &sk->sk_receive_queue);
154 skb = NULL;
155 break;
156 }
157 }
158 if (skb) {
159 meta->timestamp = now;
160 skb_queue_tail(&sk->sk_receive_queue, skb);
161 }
162
163 /* Remove packets from receive queue as long as
164 * 1. the receive buffer is full,
165 * 2. they are queued longer than one second, or
166 * 3. there are no missing packets before them. */
167 skb_queue_walk_safe(&sk->sk_receive_queue, skb, skb1) {
168 meta = skb_meta(skb);
169 if (atomic_read(&sk->sk_rmem_alloc) < sk->sk_rcvbuf &&
170 now - meta->timestamp < HZ &&
171 meta->sequence != opt->recv_sequence)
172 break;
173 skb_unlink(skb, &sk->sk_receive_queue);
174 opt->recv_sequence = (__u16)(meta->sequence + 1);
175 skb_orphan(skb);
176 ppp_input(&pppox_sk(sk)->chan, skb);
177 }
178 return NET_RX_SUCCESS;
179 }
180
181 /* Flush receive queue if sequencing is disabled. */
182 skb_queue_purge(&sk->sk_receive_queue);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800183 skb_orphan(skb);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800184 ppp_input(&pppox_sk(sk)->chan, skb);
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800185 return NET_RX_SUCCESS;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800186drop:
187 kfree_skb(skb);
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800188 return NET_RX_DROP;
189}
190
191static int pppolac_recv(struct sock *sk_udp, struct sk_buff *skb)
192{
193 sock_hold(sk_udp);
194 sk_receive_skb(sk_udp, skb, 0);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800195 return 0;
196}
197
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800198static struct sk_buff_head delivery_queue;
199
200static void pppolac_xmit_core(struct work_struct *delivery_work)
201{
202 mm_segment_t old_fs = get_fs();
203 struct sk_buff *skb;
204
205 set_fs(KERNEL_DS);
206 while ((skb = skb_dequeue(&delivery_queue))) {
207 struct sock *sk_udp = skb->sk;
208 struct kvec iov = {.iov_base = skb->data, .iov_len = skb->len};
209 struct msghdr msg = {
210 .msg_iov = (struct iovec *)&iov,
211 .msg_iovlen = 1,
212 .msg_flags = MSG_NOSIGNAL | MSG_DONTWAIT,
213 };
214 sk_udp->sk_prot->sendmsg(NULL, sk_udp, &msg, skb->len);
215 kfree_skb(skb);
216 }
217 set_fs(old_fs);
218}
219
220static DECLARE_WORK(delivery_work, pppolac_xmit_core);
221
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800222static int pppolac_xmit(struct ppp_channel *chan, struct sk_buff *skb)
223{
224 struct sock *sk_udp = (struct sock *)chan->private;
225 struct pppolac_opt *opt = &pppox_sk(sk_udp->sk_user_data)->proto.lac;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800226
227 /* Install PPP address and control. */
228 skb_push(skb, 2);
229 skb->data[0] = PPP_ADDR;
230 skb->data[1] = PPP_CTRL;
231
232 /* Install L2TP header. */
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700233 if (atomic_read(&opt->sequencing)) {
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800234 skb_push(skb, 10);
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800235 skb->data[0] = L2TP_SEQUENCE_BIT;
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700236 skb->data[6] = opt->xmit_sequence >> 8;
237 skb->data[7] = opt->xmit_sequence;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800238 skb->data[8] = 0;
239 skb->data[9] = 0;
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700240 opt->xmit_sequence++;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800241 } else {
242 skb_push(skb, 6);
243 skb->data[0] = 0;
244 }
245 skb->data[1] = L2TP_VERSION;
246 unaligned(&skb->data[2])->u32 = opt->remote;
247
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800248 /* Now send the packet via the delivery queue. */
249 skb_set_owner_w(skb, sk_udp);
250 skb_queue_tail(&delivery_queue, skb);
251 schedule_work(&delivery_work);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800252 return 1;
253}
254
255/******************************************************************************/
256
257static struct ppp_channel_ops pppolac_channel_ops = {
258 .start_xmit = pppolac_xmit,
259};
260
261static int pppolac_connect(struct socket *sock, struct sockaddr *useraddr,
262 int addrlen, int flags)
263{
264 struct sock *sk = sock->sk;
265 struct pppox_sock *po = pppox_sk(sk);
266 struct sockaddr_pppolac *addr = (struct sockaddr_pppolac *)useraddr;
267 struct socket *sock_udp = NULL;
268 struct sock *sk_udp;
269 int error;
270
271 if (addrlen != sizeof(struct sockaddr_pppolac) ||
272 !addr->local.tunnel || !addr->local.session ||
273 !addr->remote.tunnel || !addr->remote.session) {
274 return -EINVAL;
275 }
276
277 lock_sock(sk);
278 error = -EALREADY;
279 if (sk->sk_state != PPPOX_NONE)
280 goto out;
281
282 sock_udp = sockfd_lookup(addr->udp_socket, &error);
283 if (!sock_udp)
284 goto out;
285 sk_udp = sock_udp->sk;
286 lock_sock(sk_udp);
287
288 /* Remove this check when IPv6 supports UDP encapsulation. */
289 error = -EAFNOSUPPORT;
290 if (sk_udp->sk_family != AF_INET)
291 goto out;
292 error = -EPROTONOSUPPORT;
293 if (sk_udp->sk_protocol != IPPROTO_UDP)
294 goto out;
295 error = -EDESTADDRREQ;
296 if (sk_udp->sk_state != TCP_ESTABLISHED)
297 goto out;
298 error = -EBUSY;
299 if (udp_sk(sk_udp)->encap_type || sk_udp->sk_user_data)
300 goto out;
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800301 if (!sk_udp->sk_bound_dev_if) {
302 struct dst_entry *dst = sk_dst_get(sk_udp);
303 error = -ENODEV;
304 if (!dst)
305 goto out;
306 sk_udp->sk_bound_dev_if = dst->dev->ifindex;
307 dst_release(dst);
308 }
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800309
310 po->chan.hdrlen = 12;
311 po->chan.private = sk_udp;
312 po->chan.ops = &pppolac_channel_ops;
tirupathireddyf8cf8442012-08-23 18:57:01 +0530313 po->chan.mtu = PPP_MRU - 80;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800314 po->proto.lac.local = unaligned(&addr->local)->u32;
315 po->proto.lac.remote = unaligned(&addr->remote)->u32;
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700316 atomic_set(&po->proto.lac.sequencing, 1);
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800317 po->proto.lac.backlog_rcv = sk_udp->sk_backlog_rcv;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800318
319 error = ppp_register_channel(&po->chan);
320 if (error)
321 goto out;
322
323 sk->sk_state = PPPOX_CONNECTED;
324 udp_sk(sk_udp)->encap_type = UDP_ENCAP_L2TPINUDP;
325 udp_sk(sk_udp)->encap_rcv = pppolac_recv;
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800326 sk_udp->sk_backlog_rcv = pppolac_recv_core;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800327 sk_udp->sk_user_data = sk;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800328out:
329 if (sock_udp) {
330 release_sock(sk_udp);
331 if (error)
332 sockfd_put(sock_udp);
333 }
334 release_sock(sk);
335 return error;
336}
337
338static int pppolac_release(struct socket *sock)
339{
340 struct sock *sk = sock->sk;
341
342 if (!sk)
343 return 0;
344
345 lock_sock(sk);
346 if (sock_flag(sk, SOCK_DEAD)) {
347 release_sock(sk);
348 return -EBADF;
349 }
350
351 if (sk->sk_state != PPPOX_NONE) {
352 struct sock *sk_udp = (struct sock *)pppox_sk(sk)->chan.private;
353 lock_sock(sk_udp);
Chia-chi Yeh463ebc12011-04-15 15:22:09 -0700354 skb_queue_purge(&sk->sk_receive_queue);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800355 pppox_unbind_sock(sk);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800356 udp_sk(sk_udp)->encap_type = 0;
357 udp_sk(sk_udp)->encap_rcv = NULL;
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800358 sk_udp->sk_backlog_rcv = pppox_sk(sk)->proto.lac.backlog_rcv;
359 sk_udp->sk_user_data = NULL;
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800360 release_sock(sk_udp);
361 sockfd_put(sk_udp->sk_socket);
362 }
363
364 sock_orphan(sk);
365 sock->sk = NULL;
366 release_sock(sk);
367 sock_put(sk);
368 return 0;
369}
370
371/******************************************************************************/
372
373static struct proto pppolac_proto = {
374 .name = "PPPOLAC",
375 .owner = THIS_MODULE,
376 .obj_size = sizeof(struct pppox_sock),
377};
378
379static struct proto_ops pppolac_proto_ops = {
380 .family = PF_PPPOX,
381 .owner = THIS_MODULE,
382 .release = pppolac_release,
383 .bind = sock_no_bind,
384 .connect = pppolac_connect,
385 .socketpair = sock_no_socketpair,
386 .accept = sock_no_accept,
387 .getname = sock_no_getname,
388 .poll = sock_no_poll,
389 .ioctl = pppox_ioctl,
390 .listen = sock_no_listen,
391 .shutdown = sock_no_shutdown,
392 .setsockopt = sock_no_setsockopt,
393 .getsockopt = sock_no_getsockopt,
394 .sendmsg = sock_no_sendmsg,
395 .recvmsg = sock_no_recvmsg,
396 .mmap = sock_no_mmap,
397};
398
399static int pppolac_create(struct net *net, struct socket *sock)
400{
401 struct sock *sk;
402
403 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppolac_proto);
404 if (!sk)
405 return -ENOMEM;
406
407 sock_init_data(sock, sk);
408 sock->state = SS_UNCONNECTED;
409 sock->ops = &pppolac_proto_ops;
410 sk->sk_protocol = PX_PROTO_OLAC;
411 sk->sk_state = PPPOX_NONE;
412 return 0;
413}
414
415/******************************************************************************/
416
417static struct pppox_proto pppolac_pppox_proto = {
418 .create = pppolac_create,
419 .owner = THIS_MODULE,
420};
421
422static int __init pppolac_init(void)
423{
424 int error;
425
426 error = proto_register(&pppolac_proto, 0);
427 if (error)
428 return error;
429
430 error = register_pppox_proto(PX_PROTO_OLAC, &pppolac_pppox_proto);
431 if (error)
432 proto_unregister(&pppolac_proto);
Chia-chi Yehc54f6742009-06-13 02:29:04 +0800433 else
434 skb_queue_head_init(&delivery_queue);
Chia-chi Yeh49c48cb2009-05-08 04:02:40 +0800435 return error;
436}
437
438static void __exit pppolac_exit(void)
439{
440 unregister_pppox_proto(PX_PROTO_OLAC);
441 proto_unregister(&pppolac_proto);
442}
443
444module_init(pppolac_init);
445module_exit(pppolac_exit);
446
447MODULE_DESCRIPTION("PPP on L2TP Access Concentrator (PPPoLAC)");
448MODULE_AUTHOR("Chia-chi Yeh <chiachi@android.com>");
449MODULE_LICENSE("GPL");