1 /*****************************************************************************
2 * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoL2TP --- PPP over L2TP (RFC 2661)
9 * Authors: Martijn van Oosterhout <kleptog@svana.org>
10 * James Chapman (jchapman@katalix.com)
12 * Michal Ostrowski <mostrows@speakeasy.net>
13 * Arnaldo Carvalho de Melo <acme@xconectiva.com.br>
14 * David S. Miller (davem@redhat.com)
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
24 /* This driver handles only L2TP data frames; control frames are handled by a
25 * userspace application.
27 * To send data in an L2TP session, userspace opens a PPPoL2TP socket and
28 * attaches it to a bound UDP socket with local tunnel_id / session_id and
29 * peer tunnel_id / session_id set. Data can then be sent or received using
30 * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket
31 * can be read or modified using ioctl() or [gs]etsockopt() calls.
33 * When a PPPoL2TP socket is connected with local and peer session_id values
34 * zero, the socket is treated as a special tunnel management socket.
36 * Here's example userspace code to create a socket for sending/receiving data
37 * over an L2TP session:-
39 * struct sockaddr_pppol2tp sax;
43 * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP);
45 * sax.sa_family = AF_PPPOX;
46 * sax.sa_protocol = PX_PROTO_OL2TP;
47 * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket
48 * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr;
49 * sax.pppol2tp.addr.sin_port = addr->sin_port;
50 * sax.pppol2tp.addr.sin_family = AF_INET;
51 * sax.pppol2tp.s_tunnel = tunnel_id;
52 * sax.pppol2tp.s_session = session_id;
53 * sax.pppol2tp.d_tunnel = peer_tunnel_id;
54 * sax.pppol2tp.d_session = peer_session_id;
56 * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax));
58 * A pppd plugin that allows PPP traffic to be carried over L2TP using
59 * this driver is available from the OpenL2TP project at
60 * http://openl2tp.sourceforge.net.
63 #include <linux/module.h>
64 #include <linux/version.h>
65 #include <linux/string.h>
66 #include <linux/list.h>
67 #include <asm/uaccess.h>
69 #include <linux/kernel.h>
70 #include <linux/spinlock.h>
71 #include <linux/kthread.h>
72 #include <linux/sched.h>
73 #include <linux/slab.h>
74 #include <linux/errno.h>
75 #include <linux/jiffies.h>
77 #include <linux/netdevice.h>
78 #include <linux/net.h>
79 #include <linux/inetdevice.h>
80 #include <linux/skbuff.h>
81 #include <linux/init.h>
83 #include <linux/udp.h>
84 #include <linux/if_pppox.h>
85 #include <linux/if_pppol2tp.h>
87 #include <linux/ppp_channel.h>
88 #include <linux/ppp_defs.h>
89 #include <linux/if_ppp.h>
90 #include <linux/file.h>
91 #include <linux/hash.h>
92 #include <linux/sort.h>
93 #include <linux/proc_fs.h>
94 #include <net/net_namespace.h>
100 #include <asm/byteorder.h>
101 #include <asm/atomic.h>
104 #define PPPOL2TP_DRV_VERSION "V1.0"
106 /* L2TP header constants */
107 #define L2TP_HDRFLAG_T 0x8000
108 #define L2TP_HDRFLAG_L 0x4000
109 #define L2TP_HDRFLAG_S 0x0800
110 #define L2TP_HDRFLAG_O 0x0200
111 #define L2TP_HDRFLAG_P 0x0100
113 #define L2TP_HDR_VER_MASK 0x000F
114 #define L2TP_HDR_VER 0x0002
116 /* Space for UDP, L2TP and PPP headers */
117 #define PPPOL2TP_HEADER_OVERHEAD 40
119 /* Just some random numbers */
120 #define L2TP_TUNNEL_MAGIC 0x42114DDA
121 #define L2TP_SESSION_MAGIC 0x0C04EB7D
123 #define PPPOL2TP_HASH_BITS 4
124 #define PPPOL2TP_HASH_SIZE (1 << PPPOL2TP_HASH_BITS)
126 /* Default trace flags */
127 #define PPPOL2TP_DEFAULT_DEBUG_FLAGS 0
129 #define PRINTK(_mask, _type, _lvl, _fmt, args...) \
131 if ((_mask) & (_type)) \
132 printk(_lvl "PPPOL2TP: " _fmt, ##args); \
135 /* Number of bytes to build transmit L2TP headers.
136 * Unfortunately the size is different depending on whether sequence numbers
139 #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
140 #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
142 struct pppol2tp_tunnel;
144 /* Describes a session. It is the sk_user_data field in the PPPoL2TP
145 * socket. Contains information to determine incoming packets and transmit
148 struct pppol2tp_session
150 int magic; /* should be
151 * L2TP_SESSION_MAGIC */
152 int owner; /* pid that opened the socket */
154 struct sock *sock; /* Pointer to the session
156 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
159 struct pppol2tp_addr tunnel_addr; /* Description of tunnel */
161 struct pppol2tp_tunnel *tunnel; /* back pointer to tunnel
164 char name[20]; /* "sess xxxxx/yyyyy", where
165 * x=tunnel_id, y=session_id */
168 int flags; /* accessed by PPPIOCGFLAGS.
170 unsigned recv_seq:1; /* expect receive packets with
171 * sequence numbers? */
172 unsigned send_seq:1; /* send packets with sequence
174 unsigned lns_mode:1; /* behave as LNS? LAC enables
175 * sequence numbers under
177 int debug; /* bitmask of debug message
179 int reorder_timeout; /* configured reorder timeout
181 u16 nr; /* session NR state (receive) */
182 u16 ns; /* session NR state (send) */
183 struct sk_buff_head reorder_q; /* receive reorder queue */
184 struct pppol2tp_ioc_stats stats;
185 struct hlist_node hlist; /* Hash list node */
188 /* The sk_user_data field of the tunnel's UDP socket. It contains info to track
189 * all the associated sessions so incoming packets can be sorted out
191 struct pppol2tp_tunnel
193 int magic; /* Should be L2TP_TUNNEL_MAGIC */
194 rwlock_t hlist_lock; /* protect session_hlist */
195 struct hlist_head session_hlist[PPPOL2TP_HASH_SIZE];
196 /* hashed list of sessions,
198 int debug; /* bitmask of debug message
200 char name[12]; /* "tunl xxxxx" */
201 struct pppol2tp_ioc_stats stats;
203 void (*old_sk_destruct)(struct sock *);
205 struct sock *sock; /* Parent socket */
206 struct list_head list; /* Keep a list of all open
207 * prepared sockets */
212 /* Private data stored for received packets in the skb.
214 struct pppol2tp_skb_cb {
219 unsigned long expires;
222 #define PPPOL2TP_SKB_CB(skb) ((struct pppol2tp_skb_cb *) &skb->cb[sizeof(struct inet_skb_parm)])
224 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
225 static void pppol2tp_tunnel_free(struct pppol2tp_tunnel *tunnel);
227 static atomic_t pppol2tp_tunnel_count;
228 static atomic_t pppol2tp_session_count;
229 static struct ppp_channel_ops pppol2tp_chan_ops = { pppol2tp_xmit , NULL };
230 static struct proto_ops pppol2tp_ops;
231 static LIST_HEAD(pppol2tp_tunnel_list);
232 static DEFINE_RWLOCK(pppol2tp_tunnel_list_lock);
234 /* Helpers to obtain tunnel/session contexts from sockets.
236 static inline struct pppol2tp_session *pppol2tp_sock_to_session(struct sock *sk)
238 struct pppol2tp_session *session;
243 session = (struct pppol2tp_session *)(sk->sk_user_data);
247 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
252 static inline struct pppol2tp_tunnel *pppol2tp_sock_to_tunnel(struct sock *sk)
254 struct pppol2tp_tunnel *tunnel;
259 tunnel = (struct pppol2tp_tunnel *)(sk->sk_user_data);
263 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
268 /* Tunnel reference counts. Incremented per session that is added to
271 static inline void pppol2tp_tunnel_inc_refcount(struct pppol2tp_tunnel *tunnel)
273 atomic_inc(&tunnel->ref_count);
276 static inline void pppol2tp_tunnel_dec_refcount(struct pppol2tp_tunnel *tunnel)
278 if (atomic_dec_and_test(&tunnel->ref_count))
279 pppol2tp_tunnel_free(tunnel);
282 /* Session hash list.
283 * The session_id SHOULD be random according to RFC2661, but several
284 * L2TP implementations (Cisco and Microsoft) use incrementing
285 * session_ids. So we do a real hash on the session_id, rather than a
288 static inline struct hlist_head *
289 pppol2tp_session_id_hash(struct pppol2tp_tunnel *tunnel, u16 session_id)
291 unsigned long hash_val = (unsigned long) session_id;
292 return &tunnel->session_hlist[hash_long(hash_val, PPPOL2TP_HASH_BITS)];
295 /* Lookup a session by id
297 static struct pppol2tp_session *
298 pppol2tp_session_find(struct pppol2tp_tunnel *tunnel, u16 session_id)
300 struct hlist_head *session_list =
301 pppol2tp_session_id_hash(tunnel, session_id);
302 struct pppol2tp_session *session;
303 struct hlist_node *walk;
305 read_lock_bh(&tunnel->hlist_lock);
306 hlist_for_each_entry(session, walk, session_list, hlist) {
307 if (session->tunnel_addr.s_session == session_id) {
308 read_unlock_bh(&tunnel->hlist_lock);
312 read_unlock_bh(&tunnel->hlist_lock);
317 /* Lookup a tunnel by id
319 static struct pppol2tp_tunnel *pppol2tp_tunnel_find(u16 tunnel_id)
321 struct pppol2tp_tunnel *tunnel = NULL;
323 read_lock_bh(&pppol2tp_tunnel_list_lock);
324 list_for_each_entry(tunnel, &pppol2tp_tunnel_list, list) {
325 if (tunnel->stats.tunnel_id == tunnel_id) {
326 read_unlock_bh(&pppol2tp_tunnel_list_lock);
330 read_unlock_bh(&pppol2tp_tunnel_list_lock);
335 /*****************************************************************************
336 * Receive data handling
337 *****************************************************************************/
339 /* Queue a skb in order. We come here only if the skb has an L2TP sequence
342 static void pppol2tp_recv_queue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
344 struct sk_buff *skbp;
346 u16 ns = PPPOL2TP_SKB_CB(skb)->ns;
348 spin_lock_bh(&session->reorder_q.lock);
349 skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
350 if (PPPOL2TP_SKB_CB(skbp)->ns > ns) {
351 __skb_insert(skb, skbp->prev, skbp, &session->reorder_q);
352 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
353 "%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
354 session->name, ns, PPPOL2TP_SKB_CB(skbp)->ns,
355 skb_queue_len(&session->reorder_q));
356 session->stats.rx_oos_packets++;
361 __skb_queue_tail(&session->reorder_q, skb);
364 spin_unlock_bh(&session->reorder_q.lock);
367 /* Dequeue a single skb.
369 static void pppol2tp_recv_dequeue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
371 struct pppol2tp_tunnel *tunnel = session->tunnel;
372 int length = PPPOL2TP_SKB_CB(skb)->length;
373 struct sock *session_sock = NULL;
375 /* We're about to requeue the skb, so return resources
376 * to its current owner (a socket receive buffer).
380 tunnel->stats.rx_packets++;
381 tunnel->stats.rx_bytes += length;
382 session->stats.rx_packets++;
383 session->stats.rx_bytes += length;
385 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
388 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
389 "%s: updated nr to %hu\n", session->name, session->nr);
392 /* If the socket is bound, send it in to PPP's input queue. Otherwise
393 * queue it on the session socket.
395 session_sock = session->sock;
396 if (session_sock->sk_state & PPPOX_BOUND) {
397 struct pppox_sock *po;
398 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
399 "%s: recv %d byte data frame, passing to ppp\n",
400 session->name, length);
402 /* We need to forget all info related to the L2TP packet
403 * gathered in the skb as we are going to reuse the same
404 * skb for the inner packet.
406 * - reset xfrm (IPSec) information as it applies to
407 * the outer L2TP packet and not to the inner one
408 * - release the dst to force a route lookup on the inner
409 * IP packet since skb->dst currently points to the dst
411 * - reset netfilter information as it doesn't apply
412 * to the inner packet either
415 dst_release(skb->dst);
419 po = pppox_sk(session_sock);
420 ppp_input(&po->chan, skb);
422 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
423 "%s: socket not bound\n", session->name);
425 /* Not bound. Nothing we can do, so discard. */
426 session->stats.rx_errors++;
430 sock_put(session->sock);
433 /* Dequeue skbs from the session's reorder_q, subject to packet order.
434 * Skbs that have been in the queue for too long are simply discarded.
436 static void pppol2tp_recv_dequeue(struct pppol2tp_session *session)
441 /* If the pkt at the head of the queue has the nr that we
442 * expect to send up next, dequeue it and any other
443 * in-sequence packets behind it.
445 spin_lock_bh(&session->reorder_q.lock);
446 skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
447 if (time_after(jiffies, PPPOL2TP_SKB_CB(skb)->expires)) {
448 session->stats.rx_seq_discards++;
449 session->stats.rx_errors++;
450 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
451 "%s: oos pkt %hu len %d discarded (too old), "
452 "waiting for %hu, reorder_q_len=%d\n",
453 session->name, PPPOL2TP_SKB_CB(skb)->ns,
454 PPPOL2TP_SKB_CB(skb)->length, session->nr,
455 skb_queue_len(&session->reorder_q));
456 __skb_unlink(skb, &session->reorder_q);
458 sock_put(session->sock);
462 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
463 if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
464 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
465 "%s: holding oos pkt %hu len %d, "
466 "waiting for %hu, reorder_q_len=%d\n",
467 session->name, PPPOL2TP_SKB_CB(skb)->ns,
468 PPPOL2TP_SKB_CB(skb)->length, session->nr,
469 skb_queue_len(&session->reorder_q));
473 __skb_unlink(skb, &session->reorder_q);
475 /* Process the skb. We release the queue lock while we
476 * do so to let other contexts process the queue.
478 spin_unlock_bh(&session->reorder_q.lock);
479 pppol2tp_recv_dequeue_skb(session, skb);
480 spin_lock_bh(&session->reorder_q.lock);
484 spin_unlock_bh(&session->reorder_q.lock);
487 /* Internal receive frame. Do the real work of receiving an L2TP data frame
488 * here. The skb is not on a list when we get here.
489 * Returns 0 if the packet was a data packet and was successfully passed on.
490 * Returns 1 if the packet was not a good data packet and could not be
491 * forwarded. All such packets are passed up to userspace to deal with.
493 static int pppol2tp_recv_core(struct sock *sock, struct sk_buff *skb)
495 struct pppol2tp_session *session = NULL;
496 struct pppol2tp_tunnel *tunnel;
497 unsigned char *ptr, *optr;
499 u16 tunnel_id, session_id;
503 tunnel = pppol2tp_sock_to_tunnel(sock);
507 /* UDP always verifies the packet length. */
508 __skb_pull(skb, sizeof(struct udphdr));
511 if (!pskb_may_pull(skb, 12)) {
512 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
513 "%s: recv short packet (len=%d)\n", tunnel->name, skb->len);
517 /* Point to L2TP header */
518 optr = ptr = skb->data;
520 /* Get L2TP header flags */
521 hdrflags = ntohs(*(__be16*)ptr);
523 /* Trace packet contents, if enabled */
524 if (tunnel->debug & PPPOL2TP_MSG_DATA) {
525 length = min(16u, skb->len);
526 if (!pskb_may_pull(skb, length))
529 printk(KERN_DEBUG "%s: recv: ", tunnel->name);
533 printk(" %02X", ptr[offset]);
534 } while (++offset < length);
539 /* Get length of L2TP packet */
542 /* If type is control packet, it is handled by userspace. */
543 if (hdrflags & L2TP_HDRFLAG_T) {
544 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
545 "%s: recv control packet, len=%d\n", tunnel->name, length);
552 /* If length is present, skip it */
553 if (hdrflags & L2TP_HDRFLAG_L)
556 /* Extract tunnel and session ID */
557 tunnel_id = ntohs(*(__be16 *) ptr);
559 session_id = ntohs(*(__be16 *) ptr);
562 /* Find the session context */
563 session = pppol2tp_session_find(tunnel, session_id);
565 /* Not found? Pass to userspace to deal with */
566 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
567 "%s: no socket found (%hu/%hu). Passing up.\n",
568 tunnel->name, tunnel_id, session_id);
571 sock_hold(session->sock);
573 /* The ref count on the socket was increased by the above call since
574 * we now hold a pointer to the session. Take care to do sock_put()
575 * when exiting this function from now on...
578 /* Handle the optional sequence numbers. If we are the LAC,
579 * enable/disable sequence numbers under the control of the LNS. If
580 * no sequence numbers present but we were expecting them, discard
583 if (hdrflags & L2TP_HDRFLAG_S) {
585 ns = ntohs(*(__be16 *) ptr);
587 nr = ntohs(*(__be16 *) ptr);
590 /* Received a packet with sequence numbers. If we're the LNS,
591 * check if we sre sending sequence numbers and if not,
594 if ((!session->lns_mode) && (!session->send_seq)) {
595 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
596 "%s: requested to enable seq numbers by LNS\n",
598 session->send_seq = -1;
601 /* Store L2TP info in the skb */
602 PPPOL2TP_SKB_CB(skb)->ns = ns;
603 PPPOL2TP_SKB_CB(skb)->nr = nr;
604 PPPOL2TP_SKB_CB(skb)->has_seq = 1;
606 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
607 "%s: recv data ns=%hu, nr=%hu, session nr=%hu\n",
608 session->name, ns, nr, session->nr);
610 /* No sequence numbers.
611 * If user has configured mandatory sequence numbers, discard.
613 if (session->recv_seq) {
614 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
615 "%s: recv data has no seq numbers when required. "
616 "Discarding\n", session->name);
617 session->stats.rx_seq_discards++;
621 /* If we're the LAC and we're sending sequence numbers, the
622 * LNS has requested that we no longer send sequence numbers.
623 * If we're the LNS and we're sending sequence numbers, the
624 * LAC is broken. Discard the frame.
626 if ((!session->lns_mode) && (session->send_seq)) {
627 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
628 "%s: requested to disable seq numbers by LNS\n",
630 session->send_seq = 0;
631 } else if (session->send_seq) {
632 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
633 "%s: recv data has no seq numbers when required. "
634 "Discarding\n", session->name);
635 session->stats.rx_seq_discards++;
639 /* Store L2TP info in the skb */
640 PPPOL2TP_SKB_CB(skb)->has_seq = 0;
643 /* If offset bit set, skip it. */
644 if (hdrflags & L2TP_HDRFLAG_O) {
645 offset = ntohs(*(__be16 *)ptr);
650 if (!pskb_may_pull(skb, offset))
653 __skb_pull(skb, offset);
655 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
656 * don't send the PPP header (PPP header compression enabled), but
657 * other clients can include the header. So we cope with both cases
658 * here. The PPP header is always FF03 when using L2TP.
660 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
661 * the field may be unaligned.
663 if (!pskb_may_pull(skb, 2))
666 if ((skb->data[0] == 0xff) && (skb->data[1] == 0x03))
669 /* Prepare skb for adding to the session's reorder_q. Hold
670 * packets for max reorder_timeout or 1 second if not
673 PPPOL2TP_SKB_CB(skb)->length = length;
674 PPPOL2TP_SKB_CB(skb)->expires = jiffies +
675 (session->reorder_timeout ? session->reorder_timeout : HZ);
677 /* Add packet to the session's receive queue. Reordering is done here, if
678 * enabled. Saved L2TP protocol info is stored in skb->sb[].
680 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
681 if (session->reorder_timeout != 0) {
682 /* Packet reordering enabled. Add skb to session's
683 * reorder queue, in order of ns.
685 pppol2tp_recv_queue_skb(session, skb);
687 /* Packet reordering disabled. Discard out-of-sequence
690 if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
691 session->stats.rx_seq_discards++;
692 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
693 "%s: oos pkt %hu len %d discarded, "
694 "waiting for %hu, reorder_q_len=%d\n",
695 session->name, PPPOL2TP_SKB_CB(skb)->ns,
696 PPPOL2TP_SKB_CB(skb)->length, session->nr,
697 skb_queue_len(&session->reorder_q));
700 skb_queue_tail(&session->reorder_q, skb);
703 /* No sequence numbers. Add the skb to the tail of the
704 * reorder queue. This ensures that it will be
705 * delivered after all previous sequenced skbs.
707 skb_queue_tail(&session->reorder_q, skb);
710 /* Try to dequeue as many skbs from reorder_q as we can. */
711 pppol2tp_recv_dequeue(session);
716 session->stats.rx_errors++;
718 sock_put(session->sock);
723 /* Put UDP header back */
724 __skb_push(skb, sizeof(struct udphdr));
730 /* UDP encapsulation receive handler. See net/ipv4/udp.c.
734 * >0: skb should be passed up to userspace as UDP.
736 static int pppol2tp_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
738 struct pppol2tp_tunnel *tunnel;
740 tunnel = pppol2tp_sock_to_tunnel(sk);
744 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
745 "%s: received %d bytes\n", tunnel->name, skb->len);
747 if (pppol2tp_recv_core(sk, skb))
756 /* Receive message. This is the recvmsg for the PPPoL2TP socket.
758 static int pppol2tp_recvmsg(struct kiocb *iocb, struct socket *sock,
759 struct msghdr *msg, size_t len,
764 struct sock *sk = sock->sk;
767 if (sk->sk_state & PPPOX_BOUND)
770 msg->msg_namelen = 0;
773 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
774 flags & MSG_DONTWAIT, &err);
776 err = memcpy_toiovec(msg->msg_iov, (unsigned char *) skb->data,
788 /************************************************************************
790 ***********************************************************************/
792 /* Tell how big L2TP headers are for a particular session. This
793 * depends on whether sequence numbers are being used.
795 static inline int pppol2tp_l2tp_header_len(struct pppol2tp_session *session)
797 if (session->send_seq)
798 return PPPOL2TP_L2TP_HDR_SIZE_SEQ;
800 return PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
803 /* Build an L2TP header for the session into the buffer provided.
805 static void pppol2tp_build_l2tp_header(struct pppol2tp_session *session,
809 u16 flags = L2TP_HDR_VER;
811 if (session->send_seq)
812 flags |= L2TP_HDRFLAG_S;
814 /* Setup L2TP header.
815 * FIXME: Can this ever be unaligned? Is direct dereferencing of
816 * 16-bit header fields safe here for all architectures?
818 *bufp++ = htons(flags);
819 *bufp++ = htons(session->tunnel_addr.d_tunnel);
820 *bufp++ = htons(session->tunnel_addr.d_session);
821 if (session->send_seq) {
822 *bufp++ = htons(session->ns);
825 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
826 "%s: updated ns to %hu\n", session->name, session->ns);
830 /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
831 * when a user application does a sendmsg() on the session socket. L2TP and
832 * PPP headers must be inserted into the user's data.
834 static int pppol2tp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
837 static const unsigned char ppph[2] = { 0xff, 0x03 };
838 struct sock *sk = sock->sk;
839 struct inet_sock *inet;
844 struct pppol2tp_session *session;
845 struct pppol2tp_tunnel *tunnel;
850 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
853 /* Get session and tunnel contexts */
855 session = pppol2tp_sock_to_session(sk);
859 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
863 /* What header length is configured for this session? */
864 hdr_len = pppol2tp_l2tp_header_len(session);
866 /* Allocate a socket buffer */
868 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
869 sizeof(struct udphdr) + hdr_len +
870 sizeof(ppph) + total_len,
875 /* Reserve space for headers. */
876 skb_reserve(skb, NET_SKB_PAD);
877 skb_reset_network_header(skb);
878 skb_reserve(skb, sizeof(struct iphdr));
879 skb_reset_transport_header(skb);
881 /* Build UDP header */
882 inet = inet_sk(session->tunnel_sock);
883 uh = (struct udphdr *) skb->data;
884 uh->source = inet->sport;
885 uh->dest = inet->dport;
886 uh->len = htons(hdr_len + sizeof(ppph) + total_len);
888 skb_put(skb, sizeof(struct udphdr));
890 /* Build L2TP header */
891 pppol2tp_build_l2tp_header(session, skb->data);
892 skb_put(skb, hdr_len);
895 skb->data[0] = ppph[0];
896 skb->data[1] = ppph[1];
899 /* Copy user data into skb */
900 error = memcpy_fromiovec(skb->data, m->msg_iov, total_len);
905 skb_put(skb, total_len);
907 /* Calculate UDP checksum if configured to do so */
908 if (session->tunnel_sock->sk_no_check != UDP_CSUM_NOXMIT)
909 csum = udp_csum_outgoing(sk, skb);
912 if (session->send_seq)
913 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
914 "%s: send %Zd bytes, ns=%hu\n", session->name,
915 total_len, session->ns - 1);
917 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
918 "%s: send %Zd bytes\n", session->name, total_len);
920 if (session->debug & PPPOL2TP_MSG_DATA) {
922 unsigned char *datap = skb->data;
924 printk(KERN_DEBUG "%s: xmit:", session->name);
925 for (i = 0; i < total_len; i++) {
926 printk(" %02X", *datap++);
935 /* Queue the packet to IP for output */
937 error = ip_queue_xmit(skb, 1);
941 tunnel->stats.tx_packets++;
942 tunnel->stats.tx_bytes += len;
943 session->stats.tx_packets++;
944 session->stats.tx_bytes += len;
946 tunnel->stats.tx_errors++;
947 session->stats.tx_errors++;
954 /* Transmit function called by generic PPP driver. Sends PPP frame
955 * over PPPoL2TP socket.
957 * This is almost the same as pppol2tp_sendmsg(), but rather than
958 * being called with a msghdr from userspace, it is called with a skb
961 * The supplied skb from ppp doesn't have enough headroom for the
962 * insertion of L2TP, UDP and IP headers so we need to allocate more
963 * headroom in the skb. This will create a cloned skb. But we must be
964 * careful in the error case because the caller will expect to free
965 * the skb it supplied, not our cloned skb. So we take care to always
966 * leave the original skb unfreed if we return an error.
968 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
970 static const u8 ppph[2] = { 0xff, 0x03 };
971 struct sock *sk = (struct sock *) chan->private;
974 struct pppol2tp_session *session;
975 struct pppol2tp_tunnel *tunnel;
978 int data_len = skb->len;
979 struct inet_sock *inet;
984 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
987 /* Get session and tunnel contexts from the socket */
988 session = pppol2tp_sock_to_session(sk);
992 sk_tun = session->tunnel_sock;
995 tunnel = pppol2tp_sock_to_tunnel(sk_tun);
999 /* What header length is configured for this session? */
1000 hdr_len = pppol2tp_l2tp_header_len(session);
1002 /* Check that there's enough headroom in the skb to insert IP,
1003 * UDP and L2TP and PPP headers. If not enough, expand it to
1004 * make room. Note that a new skb (or a clone) is
1005 * allocated. If we return an error from this point on, make
1006 * sure we free the new skb but do not free the original skb
1007 * since that is done by the caller for the error case.
1009 headroom = NET_SKB_PAD + sizeof(struct iphdr) +
1010 sizeof(struct udphdr) + hdr_len + sizeof(ppph);
1011 if (skb_cow_head(skb, headroom))
1014 /* Setup PPP header */
1015 __skb_push(skb, sizeof(ppph));
1016 skb->data[0] = ppph[0];
1017 skb->data[1] = ppph[1];
1019 /* Setup L2TP header */
1020 pppol2tp_build_l2tp_header(session, __skb_push(skb, hdr_len));
1022 /* Setup UDP header */
1023 inet = inet_sk(sk_tun);
1024 __skb_push(skb, sizeof(*uh));
1025 skb_reset_transport_header(skb);
1027 uh->source = inet->sport;
1028 uh->dest = inet->dport;
1029 uh->len = htons(sizeof(struct udphdr) + hdr_len + sizeof(ppph) + data_len);
1032 /* *BROKEN* Calculate UDP checksum if configured to do so */
1033 if (sk_tun->sk_no_check != UDP_CSUM_NOXMIT)
1034 csum = udp_csum_outgoing(sk_tun, skb);
1037 if (session->send_seq)
1038 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1039 "%s: send %d bytes, ns=%hu\n", session->name,
1040 data_len, session->ns - 1);
1042 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1043 "%s: send %d bytes\n", session->name, data_len);
1045 if (session->debug & PPPOL2TP_MSG_DATA) {
1047 unsigned char *datap = skb->data;
1049 printk(KERN_DEBUG "%s: xmit:", session->name);
1050 for (i = 0; i < data_len; i++) {
1051 printk(" %02X", *datap++);
1060 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1061 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1065 /* Get routing info from the tunnel socket */
1066 dst_release(skb->dst);
1067 skb->dst = dst_clone(__sk_dst_get(sk_tun));
1071 /* Queue the packet to IP for output */
1073 rc = ip_queue_xmit(skb, 1);
1077 tunnel->stats.tx_packets++;
1078 tunnel->stats.tx_bytes += len;
1079 session->stats.tx_packets++;
1080 session->stats.tx_bytes += len;
1082 tunnel->stats.tx_errors++;
1083 session->stats.tx_errors++;
1089 /* Free the original skb */
1094 /*****************************************************************************
1095 * Session (and tunnel control) socket create/destroy.
1096 *****************************************************************************/
1098 /* When the tunnel UDP socket is closed, all the attached sockets need to go
1101 static void pppol2tp_tunnel_closeall(struct pppol2tp_tunnel *tunnel)
1104 struct hlist_node *walk;
1105 struct hlist_node *tmp;
1106 struct pppol2tp_session *session;
1112 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1113 "%s: closing all sessions...\n", tunnel->name);
1115 write_lock_bh(&tunnel->hlist_lock);
1116 for (hash = 0; hash < PPPOL2TP_HASH_SIZE; hash++) {
1118 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
1119 struct sk_buff *skb;
1121 session = hlist_entry(walk, struct pppol2tp_session, hlist);
1125 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1126 "%s: closing session\n", session->name);
1128 hlist_del_init(&session->hlist);
1130 /* Since we should hold the sock lock while
1131 * doing any unbinding, we need to release the
1132 * lock we're holding before taking that lock.
1133 * Hold a reference to the sock so it doesn't
1134 * disappear as we're jumping between locks.
1137 write_unlock_bh(&tunnel->hlist_lock);
1140 if (sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)) {
1141 pppox_unbind_sock(sk);
1142 sk->sk_state = PPPOX_DEAD;
1143 sk->sk_state_change(sk);
1146 /* Purge any queued data */
1147 skb_queue_purge(&sk->sk_receive_queue);
1148 skb_queue_purge(&sk->sk_write_queue);
1149 while ((skb = skb_dequeue(&session->reorder_q))) {
1157 /* Now restart from the beginning of this hash
1158 * chain. We always remove a session from the
1159 * list so we are guaranteed to make forward
1162 write_lock_bh(&tunnel->hlist_lock);
1166 write_unlock_bh(&tunnel->hlist_lock);
1169 /* Really kill the tunnel.
1170 * Come here only when all sessions have been cleared from the tunnel.
1172 static void pppol2tp_tunnel_free(struct pppol2tp_tunnel *tunnel)
1174 /* Remove from socket list */
1175 write_lock_bh(&pppol2tp_tunnel_list_lock);
1176 list_del_init(&tunnel->list);
1177 write_unlock_bh(&pppol2tp_tunnel_list_lock);
1179 atomic_dec(&pppol2tp_tunnel_count);
1183 /* Tunnel UDP socket destruct hook.
1184 * The tunnel context is deleted only when all session sockets have been
1187 static void pppol2tp_tunnel_destruct(struct sock *sk)
1189 struct pppol2tp_tunnel *tunnel;
1191 tunnel = pppol2tp_sock_to_tunnel(sk);
1195 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1196 "%s: closing...\n", tunnel->name);
1198 /* Close all sessions */
1199 pppol2tp_tunnel_closeall(tunnel);
1201 /* No longer an encapsulation socket. See net/ipv4/udp.c */
1202 (udp_sk(sk))->encap_type = 0;
1203 (udp_sk(sk))->encap_rcv = NULL;
1205 /* Remove hooks into tunnel socket */
1206 tunnel->sock = NULL;
1207 sk->sk_destruct = tunnel->old_sk_destruct;
1208 sk->sk_user_data = NULL;
1210 /* Call original (UDP) socket descructor */
1211 if (sk->sk_destruct != NULL)
1212 (*sk->sk_destruct)(sk);
1214 pppol2tp_tunnel_dec_refcount(tunnel);
1220 /* Really kill the session socket. (Called from sock_put() if
1223 static void pppol2tp_session_destruct(struct sock *sk)
1225 struct pppol2tp_session *session = NULL;
1227 if (sk->sk_user_data != NULL) {
1228 struct pppol2tp_tunnel *tunnel;
1230 session = pppol2tp_sock_to_session(sk);
1231 if (session == NULL)
1234 /* Don't use pppol2tp_sock_to_tunnel() here to
1235 * get the tunnel context because the tunnel
1236 * socket might have already been closed (its
1237 * sk->sk_user_data will be NULL) so use the
1238 * session's private tunnel ptr instead.
1240 tunnel = session->tunnel;
1241 if (tunnel != NULL) {
1242 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
1244 /* If session_id is zero, this is a null
1245 * session context, which was created for a
1246 * socket that is being used only to manage
1249 if (session->tunnel_addr.s_session != 0) {
1250 /* Delete the session socket from the
1253 write_lock_bh(&tunnel->hlist_lock);
1254 hlist_del_init(&session->hlist);
1255 write_unlock_bh(&tunnel->hlist_lock);
1257 atomic_dec(&pppol2tp_session_count);
1260 /* This will delete the tunnel context if this
1261 * is the last session on the tunnel.
1263 session->tunnel = NULL;
1264 session->tunnel_sock = NULL;
1265 pppol2tp_tunnel_dec_refcount(tunnel);
1274 /* Called when the PPPoX socket (session) is closed.
1276 static int pppol2tp_release(struct socket *sock)
1278 struct sock *sk = sock->sk;
1286 if (sock_flag(sk, SOCK_DEAD) != 0)
1289 pppox_unbind_sock(sk);
1291 /* Signal the death of the socket. */
1292 sk->sk_state = PPPOX_DEAD;
1296 /* Purge any queued data */
1297 skb_queue_purge(&sk->sk_receive_queue);
1298 skb_queue_purge(&sk->sk_write_queue);
1302 /* This will delete the session context via
1303 * pppol2tp_session_destruct() if the socket's refcnt drops to
1315 /* Internal function to prepare a tunnel (UDP) socket to have PPPoX
1316 * sockets attached to it.
1318 static struct sock *pppol2tp_prepare_tunnel_socket(int fd, u16 tunnel_id,
1322 struct socket *sock = NULL;
1324 struct pppol2tp_tunnel *tunnel;
1325 struct sock *ret = NULL;
1327 /* Get the tunnel UDP socket from the fd, which was opened by
1328 * the userspace L2TP daemon.
1331 sock = sockfd_lookup(fd, &err);
1333 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1334 "tunl %hu: sockfd_lookup(fd=%d) returned %d\n",
1335 tunnel_id, fd, err);
1341 /* Quick sanity checks */
1342 err = -EPROTONOSUPPORT;
1343 if (sk->sk_protocol != IPPROTO_UDP) {
1344 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1345 "tunl %hu: fd %d wrong protocol, got %d, expected %d\n",
1346 tunnel_id, fd, sk->sk_protocol, IPPROTO_UDP);
1349 err = -EAFNOSUPPORT;
1350 if (sock->ops->family != AF_INET) {
1351 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1352 "tunl %hu: fd %d wrong family, got %d, expected %d\n",
1353 tunnel_id, fd, sock->ops->family, AF_INET);
1359 /* Check if this socket has already been prepped */
1360 tunnel = (struct pppol2tp_tunnel *)sk->sk_user_data;
1361 if (tunnel != NULL) {
1362 /* User-data field already set */
1364 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
1366 /* This socket has already been prepped */
1371 /* This socket is available and needs prepping. Create a new tunnel
1372 * context and init it.
1374 sk->sk_user_data = tunnel = kzalloc(sizeof(struct pppol2tp_tunnel), GFP_KERNEL);
1375 if (sk->sk_user_data == NULL) {
1380 tunnel->magic = L2TP_TUNNEL_MAGIC;
1381 sprintf(&tunnel->name[0], "tunl %hu", tunnel_id);
1383 tunnel->stats.tunnel_id = tunnel_id;
1384 tunnel->debug = PPPOL2TP_DEFAULT_DEBUG_FLAGS;
1386 /* Hook on the tunnel socket destructor so that we can cleanup
1387 * if the tunnel socket goes away.
1389 tunnel->old_sk_destruct = sk->sk_destruct;
1390 sk->sk_destruct = &pppol2tp_tunnel_destruct;
1393 sk->sk_allocation = GFP_ATOMIC;
1396 rwlock_init(&tunnel->hlist_lock);
1398 /* Add tunnel to our list */
1399 INIT_LIST_HEAD(&tunnel->list);
1400 write_lock_bh(&pppol2tp_tunnel_list_lock);
1401 list_add(&tunnel->list, &pppol2tp_tunnel_list);
1402 write_unlock_bh(&pppol2tp_tunnel_list_lock);
1403 atomic_inc(&pppol2tp_tunnel_count);
1405 /* Bump the reference count. The tunnel context is deleted
1406 * only when this drops to zero.
1408 pppol2tp_tunnel_inc_refcount(tunnel);
1410 /* Mark socket as an encapsulation socket. See net/ipv4/udp.c */
1411 (udp_sk(sk))->encap_type = UDP_ENCAP_L2TPINUDP;
1412 (udp_sk(sk))->encap_rcv = pppol2tp_udp_encap_recv;
1428 static struct proto pppol2tp_sk_proto = {
1430 .owner = THIS_MODULE,
1431 .obj_size = sizeof(struct pppox_sock),
1434 /* socket() handler. Initialize a new struct sock.
1436 static int pppol2tp_create(struct net *net, struct socket *sock)
1438 int error = -ENOMEM;
1441 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto);
1445 sock_init_data(sock, sk);
1447 sock->state = SS_UNCONNECTED;
1448 sock->ops = &pppol2tp_ops;
1450 sk->sk_backlog_rcv = pppol2tp_recv_core;
1451 sk->sk_protocol = PX_PROTO_OL2TP;
1452 sk->sk_family = PF_PPPOX;
1453 sk->sk_state = PPPOX_NONE;
1454 sk->sk_type = SOCK_STREAM;
1455 sk->sk_destruct = pppol2tp_session_destruct;
1463 /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
1465 static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
1466 int sockaddr_len, int flags)
1468 struct sock *sk = sock->sk;
1469 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
1470 struct pppox_sock *po = pppox_sk(sk);
1471 struct sock *tunnel_sock = NULL;
1472 struct pppol2tp_session *session = NULL;
1473 struct pppol2tp_tunnel *tunnel;
1474 struct dst_entry *dst;
1480 if (sp->sa_protocol != PX_PROTO_OL2TP)
1483 /* Check for already bound sockets */
1485 if (sk->sk_state & PPPOX_CONNECTED)
1488 /* We don't supporting rebinding anyway */
1490 if (sk->sk_user_data)
1491 goto end; /* socket is already attached */
1493 /* Don't bind if s_tunnel is 0 */
1495 if (sp->pppol2tp.s_tunnel == 0)
1498 /* Special case: prepare tunnel socket if s_session and
1499 * d_session is 0. Otherwise look up tunnel using supplied
1502 if ((sp->pppol2tp.s_session == 0) && (sp->pppol2tp.d_session == 0)) {
1503 tunnel_sock = pppol2tp_prepare_tunnel_socket(sp->pppol2tp.fd,
1504 sp->pppol2tp.s_tunnel,
1506 if (tunnel_sock == NULL)
1509 tunnel = tunnel_sock->sk_user_data;
1511 tunnel = pppol2tp_tunnel_find(sp->pppol2tp.s_tunnel);
1513 /* Error if we can't find the tunnel */
1518 tunnel_sock = tunnel->sock;
1521 /* Check that this session doesn't already exist */
1523 session = pppol2tp_session_find(tunnel, sp->pppol2tp.s_session);
1524 if (session != NULL)
1527 /* Allocate and initialize a new session context. */
1528 session = kzalloc(sizeof(struct pppol2tp_session), GFP_KERNEL);
1529 if (session == NULL) {
1534 skb_queue_head_init(&session->reorder_q);
1536 session->magic = L2TP_SESSION_MAGIC;
1537 session->owner = current->pid;
1539 session->tunnel = tunnel;
1540 session->tunnel_sock = tunnel_sock;
1541 session->tunnel_addr = sp->pppol2tp;
1542 sprintf(&session->name[0], "sess %hu/%hu",
1543 session->tunnel_addr.s_tunnel,
1544 session->tunnel_addr.s_session);
1546 session->stats.tunnel_id = session->tunnel_addr.s_tunnel;
1547 session->stats.session_id = session->tunnel_addr.s_session;
1549 INIT_HLIST_NODE(&session->hlist);
1551 /* Inherit debug options from tunnel */
1552 session->debug = tunnel->debug;
1554 /* Default MTU must allow space for UDP/L2TP/PPP
1557 session->mtu = session->mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
1559 /* If PMTU discovery was enabled, use the MTU that was discovered */
1560 dst = sk_dst_get(sk);
1562 u32 pmtu = dst_mtu(__sk_dst_get(sk));
1564 session->mtu = session->mru = pmtu -
1565 PPPOL2TP_HEADER_OVERHEAD;
1569 /* Special case: if source & dest session_id == 0x0000, this socket is
1570 * being created to manage the tunnel. Don't add the session to the
1571 * session hash list, just set up the internal context for use by
1572 * ioctl() and sockopt() handlers.
1574 if ((session->tunnel_addr.s_session == 0) &&
1575 (session->tunnel_addr.d_session == 0)) {
1577 sk->sk_user_data = session;
1581 /* Get tunnel context from the tunnel socket */
1582 tunnel = pppol2tp_sock_to_tunnel(tunnel_sock);
1583 if (tunnel == NULL) {
1588 /* Right now, because we don't have a way to push the incoming skb's
1589 * straight through the UDP layer, the only header we need to worry
1590 * about is the L2TP header. This size is different depending on
1591 * whether sequence numbers are enabled for the data channel.
1593 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1595 po->chan.private = sk;
1596 po->chan.ops = &pppol2tp_chan_ops;
1597 po->chan.mtu = session->mtu;
1599 error = ppp_register_channel(&po->chan);
1603 /* This is how we get the session context from the socket. */
1604 sk->sk_user_data = session;
1606 /* Add session to the tunnel's hash list */
1607 write_lock_bh(&tunnel->hlist_lock);
1608 hlist_add_head(&session->hlist,
1609 pppol2tp_session_id_hash(tunnel,
1610 session->tunnel_addr.s_session));
1611 write_unlock_bh(&tunnel->hlist_lock);
1613 atomic_inc(&pppol2tp_session_count);
1616 pppol2tp_tunnel_inc_refcount(tunnel);
1617 sk->sk_state = PPPOX_CONNECTED;
1618 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1619 "%s: created\n", session->name);
1626 PRINTK(session->debug,
1627 PPPOL2TP_MSG_CONTROL, KERN_WARNING,
1628 "%s: connect failed: %d\n",
1629 session->name, error);
1631 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_WARNING,
1632 "connect failed: %d\n", error);
1638 /* getname() support.
1640 static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
1641 int *usockaddr_len, int peer)
1643 int len = sizeof(struct sockaddr_pppol2tp);
1644 struct sockaddr_pppol2tp sp;
1646 struct pppol2tp_session *session;
1649 if (sock->sk->sk_state != PPPOX_CONNECTED)
1652 session = pppol2tp_sock_to_session(sock->sk);
1653 if (session == NULL) {
1658 sp.sa_family = AF_PPPOX;
1659 sp.sa_protocol = PX_PROTO_OL2TP;
1660 memcpy(&sp.pppol2tp, &session->tunnel_addr,
1661 sizeof(struct pppol2tp_addr));
1663 memcpy(uaddr, &sp, len);
1665 *usockaddr_len = len;
1673 /****************************************************************************
1676 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1677 * sockets. However, in order to control kernel tunnel features, we allow
1678 * userspace to create a special "tunnel" PPPoX socket which is used for
1679 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1680 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1682 ****************************************************************************/
1684 /* Session ioctl helper.
1686 static int pppol2tp_session_ioctl(struct pppol2tp_session *session,
1687 unsigned int cmd, unsigned long arg)
1691 struct sock *sk = session->sock;
1692 int val = (int) arg;
1694 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1695 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1696 session->name, cmd, arg);
1703 if (!(sk->sk_state & PPPOX_CONNECTED))
1707 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1709 ifr.ifr_mtu = session->mtu;
1710 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1713 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1714 "%s: get mtu=%d\n", session->name, session->mtu);
1720 if (!(sk->sk_state & PPPOX_CONNECTED))
1724 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1727 session->mtu = ifr.ifr_mtu;
1729 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1730 "%s: set mtu=%d\n", session->name, session->mtu);
1736 if (!(sk->sk_state & PPPOX_CONNECTED))
1740 if (put_user(session->mru, (int __user *) arg))
1743 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1744 "%s: get mru=%d\n", session->name, session->mru);
1750 if (!(sk->sk_state & PPPOX_CONNECTED))
1754 if (get_user(val,(int __user *) arg))
1758 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1759 "%s: set mru=%d\n", session->name, session->mru);
1765 if (put_user(session->flags, (int __user *) arg))
1768 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1769 "%s: get flags=%d\n", session->name, session->flags);
1775 if (get_user(val, (int __user *) arg))
1777 session->flags = val;
1778 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1779 "%s: set flags=%d\n", session->name, session->flags);
1783 case PPPIOCGL2TPSTATS:
1785 if (!(sk->sk_state & PPPOX_CONNECTED))
1788 if (copy_to_user((void __user *) arg, &session->stats,
1789 sizeof(session->stats)))
1791 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1792 "%s: get L2TP stats\n", session->name);
1806 /* Tunnel ioctl helper.
1808 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1809 * specifies a session_id, the session ioctl handler is called. This allows an
1810 * application to retrieve session stats via a tunnel socket.
1812 static int pppol2tp_tunnel_ioctl(struct pppol2tp_tunnel *tunnel,
1813 unsigned int cmd, unsigned long arg)
1816 struct sock *sk = tunnel->sock;
1817 struct pppol2tp_ioc_stats stats_req;
1819 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1820 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", tunnel->name,
1826 case PPPIOCGL2TPSTATS:
1828 if (!(sk->sk_state & PPPOX_CONNECTED))
1831 if (copy_from_user(&stats_req, (void __user *) arg,
1832 sizeof(stats_req))) {
1836 if (stats_req.session_id != 0) {
1837 /* resend to session ioctl handler */
1838 struct pppol2tp_session *session =
1839 pppol2tp_session_find(tunnel, stats_req.session_id);
1840 if (session != NULL)
1841 err = pppol2tp_session_ioctl(session, cmd, arg);
1847 tunnel->stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
1849 if (copy_to_user((void __user *) arg, &tunnel->stats,
1850 sizeof(tunnel->stats))) {
1854 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1855 "%s: get L2TP stats\n", tunnel->name);
1869 /* Main ioctl() handler.
1870 * Dispatch to tunnel or session helpers depending on the socket.
1872 static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
1875 struct sock *sk = sock->sk;
1876 struct pppol2tp_session *session;
1877 struct pppol2tp_tunnel *tunnel;
1884 if (sock_flag(sk, SOCK_DEAD) != 0)
1888 if ((sk->sk_user_data == NULL) ||
1889 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
1892 /* Get session context from the socket */
1894 session = pppol2tp_sock_to_session(sk);
1895 if (session == NULL)
1898 /* Special case: if session's session_id is zero, treat ioctl as a
1901 if ((session->tunnel_addr.s_session == 0) &&
1902 (session->tunnel_addr.d_session == 0)) {
1904 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
1908 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
1912 err = pppol2tp_session_ioctl(session, cmd, arg);
1918 /*****************************************************************************
1919 * setsockopt() / getsockopt() support.
1921 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1922 * sockets. In order to control kernel tunnel features, we allow userspace to
1923 * create a special "tunnel" PPPoX socket which is used for control only.
1924 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
1925 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
1926 *****************************************************************************/
1928 /* Tunnel setsockopt() helper.
1930 static int pppol2tp_tunnel_setsockopt(struct sock *sk,
1931 struct pppol2tp_tunnel *tunnel,
1932 int optname, int val)
1937 case PPPOL2TP_SO_DEBUG:
1938 tunnel->debug = val;
1939 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1940 "%s: set debug=%x\n", tunnel->name, tunnel->debug);
1951 /* Session setsockopt helper.
1953 static int pppol2tp_session_setsockopt(struct sock *sk,
1954 struct pppol2tp_session *session,
1955 int optname, int val)
1960 case PPPOL2TP_SO_RECVSEQ:
1961 if ((val != 0) && (val != 1)) {
1965 session->recv_seq = val ? -1 : 0;
1966 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1967 "%s: set recv_seq=%d\n", session->name,
1971 case PPPOL2TP_SO_SENDSEQ:
1972 if ((val != 0) && (val != 1)) {
1976 session->send_seq = val ? -1 : 0;
1978 struct sock *ssk = session->sock;
1979 struct pppox_sock *po = pppox_sk(ssk);
1980 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
1981 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1983 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1984 "%s: set send_seq=%d\n", session->name, session->send_seq);
1987 case PPPOL2TP_SO_LNSMODE:
1988 if ((val != 0) && (val != 1)) {
1992 session->lns_mode = val ? -1 : 0;
1993 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1994 "%s: set lns_mode=%d\n", session->name,
1998 case PPPOL2TP_SO_DEBUG:
1999 session->debug = val;
2000 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2001 "%s: set debug=%x\n", session->name, session->debug);
2004 case PPPOL2TP_SO_REORDERTO:
2005 session->reorder_timeout = msecs_to_jiffies(val);
2006 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2007 "%s: set reorder_timeout=%d\n", session->name,
2008 session->reorder_timeout);
2019 /* Main setsockopt() entry point.
2020 * Does API checks, then calls either the tunnel or session setsockopt
2021 * handler, according to whether the PPPoL2TP socket is a for a regular
2022 * session or the special tunnel type.
2024 static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
2025 char __user *optval, int optlen)
2027 struct sock *sk = sock->sk;
2028 struct pppol2tp_session *session = sk->sk_user_data;
2029 struct pppol2tp_tunnel *tunnel;
2033 if (level != SOL_PPPOL2TP)
2034 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
2036 if (optlen < sizeof(int))
2039 if (get_user(val, (int __user *)optval))
2043 if (sk->sk_user_data == NULL)
2046 /* Get session context from the socket */
2048 session = pppol2tp_sock_to_session(sk);
2049 if (session == NULL)
2052 /* Special case: if session_id == 0x0000, treat as operation on tunnel
2054 if ((session->tunnel_addr.s_session == 0) &&
2055 (session->tunnel_addr.d_session == 0)) {
2057 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
2061 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
2063 err = pppol2tp_session_setsockopt(sk, session, optname, val);
2071 /* Tunnel getsockopt helper. Called with sock locked.
2073 static int pppol2tp_tunnel_getsockopt(struct sock *sk,
2074 struct pppol2tp_tunnel *tunnel,
2075 int optname, int *val)
2080 case PPPOL2TP_SO_DEBUG:
2081 *val = tunnel->debug;
2082 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2083 "%s: get debug=%x\n", tunnel->name, tunnel->debug);
2094 /* Session getsockopt helper. Called with sock locked.
2096 static int pppol2tp_session_getsockopt(struct sock *sk,
2097 struct pppol2tp_session *session,
2098 int optname, int *val)
2103 case PPPOL2TP_SO_RECVSEQ:
2104 *val = session->recv_seq;
2105 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2106 "%s: get recv_seq=%d\n", session->name, *val);
2109 case PPPOL2TP_SO_SENDSEQ:
2110 *val = session->send_seq;
2111 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2112 "%s: get send_seq=%d\n", session->name, *val);
2115 case PPPOL2TP_SO_LNSMODE:
2116 *val = session->lns_mode;
2117 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2118 "%s: get lns_mode=%d\n", session->name, *val);
2121 case PPPOL2TP_SO_DEBUG:
2122 *val = session->debug;
2123 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2124 "%s: get debug=%d\n", session->name, *val);
2127 case PPPOL2TP_SO_REORDERTO:
2128 *val = (int) jiffies_to_msecs(session->reorder_timeout);
2129 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2130 "%s: get reorder_timeout=%d\n", session->name, *val);
2140 /* Main getsockopt() entry point.
2141 * Does API checks, then calls either the tunnel or session getsockopt
2142 * handler, according to whether the PPPoX socket is a for a regular session
2143 * or the special tunnel type.
2145 static int pppol2tp_getsockopt(struct socket *sock, int level,
2146 int optname, char __user *optval, int __user *optlen)
2148 struct sock *sk = sock->sk;
2149 struct pppol2tp_session *session = sk->sk_user_data;
2150 struct pppol2tp_tunnel *tunnel;
2154 if (level != SOL_PPPOL2TP)
2155 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
2157 if (get_user(len, (int __user *) optlen))
2160 len = min_t(unsigned int, len, sizeof(int));
2166 if (sk->sk_user_data == NULL)
2169 /* Get the session context */
2171 session = pppol2tp_sock_to_session(sk);
2172 if (session == NULL)
2175 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
2176 if ((session->tunnel_addr.s_session == 0) &&
2177 (session->tunnel_addr.d_session == 0)) {
2179 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
2183 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
2185 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
2188 if (put_user(len, (int __user *) optlen))
2191 if (copy_to_user((void __user *) optval, &val, len))
2199 /*****************************************************************************
2200 * /proc filesystem for debug
2201 *****************************************************************************/
2203 #ifdef CONFIG_PROC_FS
2205 #include <linux/seq_file.h>
2207 struct pppol2tp_seq_data {
2208 struct pppol2tp_tunnel *tunnel; /* current tunnel */
2209 struct pppol2tp_session *session; /* NULL means get first session in tunnel */
2212 static struct pppol2tp_session *next_session(struct pppol2tp_tunnel *tunnel, struct pppol2tp_session *curr)
2214 struct pppol2tp_session *session = NULL;
2215 struct hlist_node *walk;
2220 read_lock_bh(&tunnel->hlist_lock);
2221 for (i = 0; i < PPPOL2TP_HASH_SIZE; i++) {
2222 hlist_for_each_entry(session, walk, &tunnel->session_hlist[i], hlist) {
2227 if (session == curr) {
2238 read_unlock_bh(&tunnel->hlist_lock);
2245 static struct pppol2tp_tunnel *next_tunnel(struct pppol2tp_tunnel *curr)
2247 struct pppol2tp_tunnel *tunnel = NULL;
2249 read_lock_bh(&pppol2tp_tunnel_list_lock);
2250 if (list_is_last(&curr->list, &pppol2tp_tunnel_list)) {
2253 tunnel = list_entry(curr->list.next, struct pppol2tp_tunnel, list);
2255 read_unlock_bh(&pppol2tp_tunnel_list_lock);
2260 static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
2262 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
2268 BUG_ON(m->private == NULL);
2271 if (pd->tunnel == NULL) {
2272 if (!list_empty(&pppol2tp_tunnel_list))
2273 pd->tunnel = list_entry(pppol2tp_tunnel_list.next, struct pppol2tp_tunnel, list);
2275 pd->session = next_session(pd->tunnel, pd->session);
2276 if (pd->session == NULL) {
2277 pd->tunnel = next_tunnel(pd->tunnel);
2281 /* NULL tunnel and session indicates end of list */
2282 if ((pd->tunnel == NULL) && (pd->session == NULL))
2289 static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
2295 static void pppol2tp_seq_stop(struct seq_file *p, void *v)
2300 static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
2302 struct pppol2tp_tunnel *tunnel = v;
2304 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
2306 (tunnel == tunnel->sock->sk_user_data) ? 'Y':'N',
2307 atomic_read(&tunnel->ref_count) - 1);
2308 seq_printf(m, " %08x %llu/%llu/%llu %llu/%llu/%llu\n",
2310 (unsigned long long)tunnel->stats.tx_packets,
2311 (unsigned long long)tunnel->stats.tx_bytes,
2312 (unsigned long long)tunnel->stats.tx_errors,
2313 (unsigned long long)tunnel->stats.rx_packets,
2314 (unsigned long long)tunnel->stats.rx_bytes,
2315 (unsigned long long)tunnel->stats.rx_errors);
2318 static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
2320 struct pppol2tp_session *session = v;
2322 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
2323 "%04X/%04X %d %c\n",
2325 ntohl(session->tunnel_addr.addr.sin_addr.s_addr),
2326 ntohs(session->tunnel_addr.addr.sin_port),
2327 session->tunnel_addr.s_tunnel,
2328 session->tunnel_addr.s_session,
2329 session->tunnel_addr.d_tunnel,
2330 session->tunnel_addr.d_session,
2331 session->sock->sk_state,
2332 (session == session->sock->sk_user_data) ?
2334 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
2335 session->mtu, session->mru,
2336 session->recv_seq ? 'R' : '-',
2337 session->send_seq ? 'S' : '-',
2338 session->lns_mode ? "LNS" : "LAC",
2340 jiffies_to_msecs(session->reorder_timeout));
2341 seq_printf(m, " %hu/%hu %llu/%llu/%llu %llu/%llu/%llu\n",
2342 session->nr, session->ns,
2343 (unsigned long long)session->stats.tx_packets,
2344 (unsigned long long)session->stats.tx_bytes,
2345 (unsigned long long)session->stats.tx_errors,
2346 (unsigned long long)session->stats.rx_packets,
2347 (unsigned long long)session->stats.rx_bytes,
2348 (unsigned long long)session->stats.rx_errors);
2351 static int pppol2tp_seq_show(struct seq_file *m, void *v)
2353 struct pppol2tp_seq_data *pd = v;
2355 /* display header on line 1 */
2356 if (v == SEQ_START_TOKEN) {
2357 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
2358 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
2359 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2360 seq_puts(m, " SESSION name, addr/port src-tid/sid "
2361 "dest-tid/sid state user-data-ok\n");
2362 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
2363 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2367 /* Show the tunnel or session context.
2369 if (pd->session == NULL)
2370 pppol2tp_seq_tunnel_show(m, pd->tunnel);
2372 pppol2tp_seq_session_show(m, pd->session);
2378 static struct seq_operations pppol2tp_seq_ops = {
2379 .start = pppol2tp_seq_start,
2380 .next = pppol2tp_seq_next,
2381 .stop = pppol2tp_seq_stop,
2382 .show = pppol2tp_seq_show,
2385 /* Called when our /proc file is opened. We allocate data for use when
2386 * iterating our tunnel / session contexts and store it in the private
2387 * data of the seq_file.
2389 static int pppol2tp_proc_open(struct inode *inode, struct file *file)
2392 struct pppol2tp_seq_data *pd;
2395 ret = seq_open(file, &pppol2tp_seq_ops);
2399 m = file->private_data;
2401 /* Allocate and fill our proc_data for access later */
2403 m->private = kzalloc(sizeof(struct pppol2tp_seq_data), GFP_KERNEL);
2404 if (m->private == NULL)
2414 /* Called when /proc file access completes.
2416 static int pppol2tp_proc_release(struct inode *inode, struct file *file)
2418 struct seq_file *m = (struct seq_file *)file->private_data;
2423 return seq_release(inode, file);
2426 static struct file_operations pppol2tp_proc_fops = {
2427 .owner = THIS_MODULE,
2428 .open = pppol2tp_proc_open,
2430 .llseek = seq_lseek,
2431 .release = pppol2tp_proc_release,
2434 static struct proc_dir_entry *pppol2tp_proc;
2436 #endif /* CONFIG_PROC_FS */
2438 /*****************************************************************************
2440 *****************************************************************************/
2442 static struct proto_ops pppol2tp_ops = {
2444 .owner = THIS_MODULE,
2445 .release = pppol2tp_release,
2446 .bind = sock_no_bind,
2447 .connect = pppol2tp_connect,
2448 .socketpair = sock_no_socketpair,
2449 .accept = sock_no_accept,
2450 .getname = pppol2tp_getname,
2451 .poll = datagram_poll,
2452 .listen = sock_no_listen,
2453 .shutdown = sock_no_shutdown,
2454 .setsockopt = pppol2tp_setsockopt,
2455 .getsockopt = pppol2tp_getsockopt,
2456 .sendmsg = pppol2tp_sendmsg,
2457 .recvmsg = pppol2tp_recvmsg,
2458 .mmap = sock_no_mmap,
2459 .ioctl = pppox_ioctl,
2462 static struct pppox_proto pppol2tp_proto = {
2463 .create = pppol2tp_create,
2464 .ioctl = pppol2tp_ioctl
2467 static int __init pppol2tp_init(void)
2471 err = proto_register(&pppol2tp_sk_proto, 0);
2474 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
2476 goto out_unregister_pppol2tp_proto;
2478 #ifdef CONFIG_PROC_FS
2479 pppol2tp_proc = proc_net_fops_create(&init_net, "pppol2tp", 0,
2480 &pppol2tp_proc_fops);
2481 if (!pppol2tp_proc) {
2483 goto out_unregister_pppox_proto;
2485 #endif /* CONFIG_PROC_FS */
2486 printk(KERN_INFO "PPPoL2TP kernel driver, %s\n",
2487 PPPOL2TP_DRV_VERSION);
2491 #ifdef CONFIG_PROC_FS
2492 out_unregister_pppox_proto:
2493 unregister_pppox_proto(PX_PROTO_OL2TP);
2495 out_unregister_pppol2tp_proto:
2496 proto_unregister(&pppol2tp_sk_proto);
2500 static void __exit pppol2tp_exit(void)
2502 unregister_pppox_proto(PX_PROTO_OL2TP);
2504 #ifdef CONFIG_PROC_FS
2505 remove_proc_entry("pppol2tp", init_net.proc_net);
2507 proto_unregister(&pppol2tp_sk_proto);
2510 module_init(pppol2tp_init);
2511 module_exit(pppol2tp_exit);
2513 MODULE_AUTHOR("Martijn van Oosterhout <kleptog@svana.org>, "
2514 "James Chapman <jchapman@katalix.com>");
2515 MODULE_DESCRIPTION("PPP over L2TP over UDP");
2516 MODULE_LICENSE("GPL");
2517 MODULE_VERSION(PPPOL2TP_DRV_VERSION);