1 Index: linux-2.4.27-l2tp/Documentation/Configure.help
2 ===================================================================
3 --- linux-2.4.27-l2tp.orig/Documentation/Configure.help
4 +++ linux-2.4.27-l2tp/Documentation/Configure.help
5 @@ -9913,6 +9913,16 @@ CONFIG_PPPOE
6 on cvs.samba.org. The required support will be present in the next
11 + Support for PPP-over-L2TP socket family. L2TP is a protocol used by
12 + ISPs and enterprises to tunnel PPP traffic over UDP tunnels. L2TP is
13 + replacing PPTP for VPN uses.
15 + This kernel component handles only L2TP data packets: a userland
16 + daemon handles L2TP control protocol (tunnel and session setup). One
17 + such daemon is OpenL2TP (http://openl2tp.sourceforge.net/).
19 Wireless LAN (non-hamradio)
21 Support for wireless LANs and everything having to do with radio,
22 Index: linux-2.4.27-l2tp/drivers/net/Config.in
23 ===================================================================
24 --- linux-2.4.27-l2tp.orig/drivers/net/Config.in
25 +++ linux-2.4.27-l2tp/drivers/net/Config.in
26 @@ -327,6 +327,7 @@ if [ ! "$CONFIG_PPP" = "n" ]; then
27 dep_tristate ' PPP BSD-Compress compression' CONFIG_PPP_BSDCOMP $CONFIG_PPP
28 if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
29 dep_tristate ' PPP over Ethernet (EXPERIMENTAL)' CONFIG_PPPOE $CONFIG_PPP
30 + dep_tristate ' PPP over L2TP (EXPERIMENTAL)' CONFIG_PPPOL2TP $CONFIG_PPP $CONFIG_PPPOE
32 if [ "$CONFIG_ATM" = "y" -o "$CONFIG_ATM" = "m" ]; then
33 dep_tristate ' PPP over ATM (EXPERIMENTAL)' CONFIG_PPPOATM $CONFIG_PPP $CONFIG_ATM
34 Index: linux-2.4.27-l2tp/drivers/net/Makefile
35 ===================================================================
36 --- linux-2.4.27-l2tp.orig/drivers/net/Makefile
37 +++ linux-2.4.27-l2tp/drivers/net/Makefile
38 @@ -162,6 +162,7 @@ obj-$(CONFIG_PPP_SYNC_TTY) += ppp_synctt
39 obj-$(CONFIG_PPP_DEFLATE) += ppp_deflate.o
40 obj-$(CONFIG_PPP_BSDCOMP) += bsd_comp.o
41 obj-$(CONFIG_PPPOE) += pppox.o pppoe.o
42 +obj-$(CONFIG_PPPOL2TP) += pppox.o pppol2tp.o
44 obj-$(CONFIG_SLIP) += slip.o
45 ifeq ($(CONFIG_SLIP_COMPRESSED),y)
46 Index: linux-2.4.27-l2tp/drivers/net/pppol2tp.c
47 ===================================================================
49 +++ linux-2.4.27-l2tp/drivers/net/pppol2tp.c
51 +/** -*- linux-c -*- ***********************************************************
52 + * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
54 + * PPPoX --- Generic PPP encapsulation socket family
55 + * PPPoL2TP --- PPP over L2TP (RFC 2661)
60 + * 251003 : Copied from pppoe.c version 0.6.9.
62 + * Author: Martijn van Oosterhout <kleptog@svana.org>
64 + * Michal Ostrowski <mostrows@speakeasy.net>
65 + * Arnaldo Carvalho de Melo <acme@xconectiva.com.br>
66 + * David S. Miller (davem@redhat.com)
67 + * James Chapman (jchapman@katalix.com)
70 + * This program is free software; you can redistribute it and/or
71 + * modify it under the terms of the GNU General Public License
72 + * as published by the Free Software Foundation; either version
73 + * 2 of the License, or (at your option) any later version.
77 +/* This driver handles only L2TP data frames; control frames are handled by a
78 + * userspace application.
80 + * To send data in an L2TP session, userspace opens a PPPoL2TP socket and
81 + * attaches it to a bound UDP socket with local tunnel_id / session_id and
82 + * peer tunnel_id / session_id set. Data can then be sent or received using
83 + * regular socket sendmsg() / recvmsg() calls. Kernel parameters of the socket
84 + * can be read or modified using ioctl() or [gs]etsockopt() calls.
86 + * When a PPPoL2TP socket is connected with local and peer session_id values
87 + * zero, the socket is treated as a special tunnel management socket.
89 + * Here's example userspace code to create a socket for sending/receiving data
90 + * over an L2TP session:-
92 + * struct sockaddr_pppol2tp sax;
96 + * fd = socket(AF_PPPOX, SOCK_DGRAM, PX_PROTO_OL2TP);
98 + * sax.sa_family = AF_PPPOX;
99 + * sax.sa_protocol = PX_PROTO_OL2TP;
100 + * sax.pppol2tp.fd = tunnel_fd; // bound UDP socket
101 + * sax.pppol2tp.pid = 0; // current pid owns UDP socket
102 + * sax.pppol2tp.addr.sin_addr.s_addr = addr->sin_addr.s_addr;
103 + * sax.pppol2tp.addr.sin_port = addr->sin_port;
104 + * sax.pppol2tp.addr.sin_family = AF_INET;
105 + * sax.pppol2tp.s_tunnel = tunnel_id;
106 + * sax.pppol2tp.s_session = session_id;
107 + * sax.pppol2tp.d_tunnel = peer_tunnel_id;
108 + * sax.pppol2tp.d_session = peer_session_id;
110 + * session_fd = connect(fd, (struct sockaddr *)&sax, sizeof(sax));
114 +#include <linux/string.h>
115 +#include <linux/module.h>
116 +#include <linux/version.h>
118 +#include <linux/list.h>
119 +#include <asm/uaccess.h>
121 +#include <linux/kernel.h>
122 +#include <linux/sched.h>
123 +#include <linux/slab.h>
124 +#include <linux/errno.h>
126 +#include <linux/netdevice.h>
127 +#include <linux/net.h>
128 +#include <linux/inetdevice.h>
129 +#include <linux/skbuff.h>
130 +#include <linux/init.h>
131 +#include <linux/udp.h>
132 +#include <linux/if_pppox.h>
133 +#include <net/sock.h>
134 +#include <linux/ppp_channel.h>
135 +#include <linux/ppp_defs.h>
136 +#include <linux/if_ppp.h>
137 +#include <linux/if_pppvar.h>
138 +#include <linux/file.h>
139 +#include <linux/hash.h>
140 +#include <linux/proc_fs.h>
141 +#include <net/dst.h>
143 +#include <net/udp.h>
145 +#include <asm/byteorder.h>
146 +#include <asm/atomic.h>
148 +#define PPPOL2TP_DRV_VERSION "V0.13"
150 +/* Developer debug code. */
152 +#define DEBUG /* Define to compile in very verbose developer
154 +#define DEBUG_MOD_USE_COUNT /* Define to debug module use count bugs */
157 +/* Useful to debug module use_count problems */
158 +#ifdef DEBUG_MOD_USE_COUNT
159 +#undef MOD_INC_USE_COUNT
160 +#undef MOD_DEC_USE_COUNT
161 +static int mod_use_count = 0;
162 +#define MOD_INC_USE_COUNT do { \
164 + printk(KERN_DEBUG "%s: INC_USE_COUNT, now %d\n", __FUNCTION__, mod_use_count); \
166 +#define MOD_DEC_USE_COUNT do { \
168 + printk(KERN_DEBUG "%s: DEC_USE_COUNT, now %d\n", __FUNCTION__, mod_use_count); \
170 +#endif /* DEBUG_MOD_USE_COUNT */
172 +/* Timeouts are specified in milliseconds to/from userspace */
173 +#define JIFFIES_TO_MS(t) ((t) * 1000 / HZ)
174 +#define MS_TO_JIFFIES(j) ((j * HZ) / 1000)
176 +/* L2TP header constants */
177 +#define L2TP_HDRFLAG_T 0x8000
178 +#define L2TP_HDRFLAG_L 0x4000
179 +#define L2TP_HDRFLAG_S 0x0800
180 +#define L2TP_HDRFLAG_O 0x0200
181 +#define L2TP_HDRFLAG_P 0x0100
183 +#define L2TP_HDR_VER_MASK 0x000F
184 +#define L2TP_HDR_VER 0x0002
186 +/* Space for UDP, L2TP and PPP headers */
187 +#define PPPOL2TP_HEADER_OVERHEAD 40
189 +/* Just some random numbers */
190 +#define L2TP_TUNNEL_MAGIC 0x42114DDA
191 +#define L2TP_SESSION_MAGIC 0x0C04EB7D
193 +#define PPPOL2TP_HASH_BITS 4
194 +#define PPPOL2TP_HASH_SIZE (1 << PPPOL2TP_HASH_BITS)
196 +/* Default trace flags */
198 +#define PPPOL2TP_DEFAULT_DEBUG_FLAGS -1
200 +#define PPPOL2TP_DEFAULT_DEBUG_FLAGS 0
203 +/* For kernel compatability. This might not work for early 2.4 kernels */
205 +#define dst_pmtu(dst) dst->pmtu
208 +/* Debug kernel message control.
209 + * Verbose debug messages (L2TP_MSG_DEBUG flag) are optionally compiled in.
212 +#define DPRINTK(_mask, _fmt, args...) \
214 + if ((_mask) & PPPOL2TP_MSG_DEBUG) \
215 + printk(KERN_DEBUG "PPPOL2TP %s: " _fmt, \
216 + __FUNCTION__, ##args); \
219 +#define DPRINTK(_mask, _fmt, args...) do { } while(0)
222 +#define PRINTK(_mask, _type, _lvl, _fmt, args...) \
224 + if ((_mask) & (_type)) \
225 + printk(_lvl "PPPOL2TP: " _fmt, ##args); \
228 +/* Extra driver debug. Should only be enabled by developers working on
232 +#define ENTER_FUNCTION printk(KERN_DEBUG "PPPOL2TP: --> %s\n", __FUNCTION__)
233 +#define EXIT_FUNCTION printk(KERN_DEBUG "PPPOL2TP: <-- %s\n", __FUNCTION__)
235 +#define ENTER_FUNCTION do { } while(0)
236 +#define EXIT_FUNCTION do { } while(0)
239 +#define container_of(ptr, type, member) ({ \
240 + const typeof( ((type *)0)->member ) *__mptr = (ptr); \
241 + (type *)( (char *)__mptr - offsetof(type,member) );})
243 +struct pppol2tp_tunnel;
245 +/* Describes a session. It is the user_data field in the PPPoL2TP
246 + * socket. Contains information to determine incoming packets and transmit
249 +struct pppol2tp_session
251 + int magic; /* should be
252 + * L2TP_SESSION_MAGIC */
253 + int owner; /* pid that opened the socket */
255 + struct sock *sock; /* Pointer to the session
257 + struct sock *tunnel_sock; /* Pointer to the tunnel UDP
260 + struct pppol2tp_addr tunnel_addr; /* Description of tunnel */
262 + struct pppol2tp_tunnel *tunnel; /* back pointer to tunnel
265 + char name[20]; /* "sess xxxxx/yyyyy", where
266 + * x=tunnel_id, y=session_id */
269 + int flags; /* accessed by PPPIOCGFLAGS.
271 + int recv_seq:1; /* expect receive packets with
272 + * sequence numbers? */
273 + int send_seq:1; /* send packets with sequence
275 + int lns_mode:1; /* behave as LNS? LAC enables
276 + * sequence numbers under
277 + * control of LNS. */
278 + int debug; /* bitmask of debug message
280 + int reorder_timeout; /* configured reorder timeout
282 + u16 nr; /* session NR state (receive) */
283 + u16 ns; /* session NR state (send) */
284 + struct sk_buff_head reorder_q; /* receive reorder queue */
285 + struct pppol2tp_ioc_stats stats;
286 + struct hlist_node hlist; /* Hash list node */
289 +/* The user_data field of the tunnel's UDP socket. It contains info to track
290 + * all the associated sessions so incoming packets can be sorted out
292 +struct pppol2tp_tunnel
294 + int magic; /* Should be L2TP_TUNNEL_MAGIC */
296 + struct proto *old_proto; /* original proto */
297 + struct proto l2tp_proto; /* L2TP proto */
298 + rwlock_t hlist_lock; /* protect session_hlist */
299 + struct hlist_head session_hlist[PPPOL2TP_HASH_SIZE];
300 + /* hashed list of sessions,
302 + int debug; /* bitmask of debug message
304 + char name[12]; /* "tunl xxxxx" */
305 + struct pppol2tp_ioc_stats stats;
307 + void (*old_data_ready)(struct sock *, int);
308 + void (*old_sk_destruct)(struct sock *);
310 + struct sock *sock; /* Parent socket */
311 + struct list_head list; /* Keep a list of all open
312 + * prepared sockets */
314 + atomic_t session_count;
317 +/* Private data stored for received packets in the skb.
319 +struct pppol2tp_skb_cb {
324 + unsigned long expires;
327 +#define PPPOL2TP_SKB_CB(skb) ((struct pppol2tp_skb_cb *) &skb->cb[sizeof(struct inet_skb_parm)])
329 +/* Number of bytes to build transmit L2TP headers.
330 + * Unfortunately the size is different depending on whether sequence numbers
333 +#define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
334 +#define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
337 +static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
339 +static struct ppp_channel_ops pppol2tp_chan_ops = { pppol2tp_xmit , NULL };
340 +static struct proto_ops pppol2tp_ops;
341 +static LIST_HEAD(pppol2tp_tunnel_list);
343 +/* Macros to derive session/tunnel context pointers from a socket. */
344 +#define SOCK_2_SESSION(sock, session, err, errval, label, quiet) \
345 + session = (struct pppol2tp_session *)((sock)->user_data); \
346 + if (!session || session->magic != L2TP_SESSION_MAGIC) { \
348 + printk(KERN_ERR "%s: %s:%d: BAD SESSION MAGIC " \
349 + "(" #sock "=%p) session=%p magic=%x\n", \
350 + __FUNCTION__, __FILE__, __LINE__, sock, \
351 + session, session ? session->magic : 0); \
356 +#define SOCK_2_TUNNEL(sock, tunnel, err, errval, label, quiet) \
357 + tunnel = (struct pppol2tp_tunnel *)((sock)->user_data); \
358 + if (!tunnel || tunnel->magic != L2TP_TUNNEL_MAGIC) { \
360 + printk(KERN_ERR "%s: %s:%d: BAD TUNNEL MAGIC " \
361 + "(" #sock "=%p) tunnel=%p magic=%x\n", \
362 + __FUNCTION__, __FILE__, __LINE__, sock, \
363 + tunnel, tunnel ? tunnel->magic : 0); \
368 +/* Session hash list.
369 + * The session_id SHOULD be random according to RFC2661, but several
370 + * L2TP implementations (Cisco and Microsoft) use incrementing
371 + * session_ids. So we do a real hash on the session_id, rather than a
374 +static inline struct hlist_head *
375 +pppol2tp_session_id_hash(struct pppol2tp_tunnel *tunnel, u16 session_id)
377 + unsigned long hash_val = (unsigned long) session_id;
378 + return &tunnel->session_hlist[hash_long(hash_val, PPPOL2TP_HASH_BITS)];
381 +/* Lookup a session by id
383 +static struct pppol2tp_session *
384 +pppol2tp_session_find(struct pppol2tp_tunnel *tunnel, u16 session_id)
386 + struct hlist_head *session_list =
387 + pppol2tp_session_id_hash(tunnel, session_id);
388 + struct hlist_node *tmp;
389 + struct hlist_node *walk;
390 + struct pppol2tp_session *session;
392 + hlist_for_each_safe(walk, tmp, session_list) {
393 + session = hlist_entry(walk, struct pppol2tp_session, hlist);
394 + if (session->tunnel_addr.s_session == session_id) {
402 +/* Copied from socket.c
404 +static __inline__ void sockfd_put(struct socket *sock)
409 +/*****************************************************************************
410 + * Receive data handling
411 + *****************************************************************************/
413 +/* Queue a skb in order. If the skb has no sequence number, queue it
416 +static void pppol2tp_recv_queue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
418 + struct sk_buff *next;
419 + struct sk_buff *prev;
420 + u16 ns = PPPOL2TP_SKB_CB(skb)->ns;
424 + spin_lock(&session->reorder_q.lock);
426 + prev = (struct sk_buff *) &session->reorder_q;
428 + while (next != prev) {
429 + if (PPPOL2TP_SKB_CB(next)->ns > ns) {
430 + __skb_insert(skb, next->prev, next, next->list);
431 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
432 + "%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
433 + session->name, ns, PPPOL2TP_SKB_CB(next)->ns,
434 + skb_queue_len(&session->reorder_q));
435 + session->stats.rx_oos_packets++;
441 + __skb_queue_tail(&session->reorder_q, skb);
444 + spin_unlock(&session->reorder_q.lock);
448 +/* Dequeue a single skb, passing it either to ppp or to userspace.
450 +static void pppol2tp_recv_dequeue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
452 + struct pppol2tp_tunnel *tunnel = session->tunnel;
453 + int length = PPPOL2TP_SKB_CB(skb)->length;
454 + struct sock *session_sock = NULL;
458 + /* We're about to requeue the skb, so unlink it and return resources
459 + * to its current owner (a socket receive buffer). Also release the
460 + * dst to force a route lookup on the inner IP packet since skb->dst
461 + * currently points to the dst of the UDP tunnel.
465 + dst_release(skb->dst);
468 +#ifdef CONFIG_NETFILTER
469 + /* We need to forget conntrack info as we reuse the same skb. */
470 + nf_conntrack_put(skb->nfct);
472 +#ifdef CONFIG_NETFILTER_DEBUG
475 +#if defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)
476 + skb->nf_bridge = NULL;
478 +#endif /* CONFIG_NETFILTER */
480 + tunnel->stats.rx_packets++;
481 + tunnel->stats.rx_bytes += length;
482 + session->stats.rx_packets++;
483 + session->stats.rx_bytes += length;
485 + if (PPPOL2TP_SKB_CB(skb)->has_seq) {
488 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
489 + "%s: updated nr to %hu\n", session->name, session->nr);
492 + /* If the socket is bound, send it in to PPP's input queue. Otherwise
493 + * queue it on the session socket.
495 + session_sock = session->sock;
496 + if (session_sock->state & PPPOX_BOUND) {
497 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
498 + "%s: recv %d byte data frame, passing to ppp\n",
499 + session->name, length);
500 + ppp_input(&session_sock->protinfo.pppox->chan, skb);
502 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
503 + "%s: socket not bound\n", session->name);
504 + /* Not bound. Queue it now */
505 + if (sock_queue_rcv_skb(session_sock, skb) < 0) {
506 + session->stats.rx_errors++;
508 + if (!session_sock->dead)
509 + session_sock->data_ready(session_sock, 0);
513 + DPRINTK(session->debug, "calling sock_put; refcnt=%d\n",
514 + session->sock->refcnt.counter);
515 + sock_put(session->sock);
519 +/* Dequeue skbs from the session's reorder_q, subject to packet order.
520 + * Skbs that have been in the queue for too long are simply discarded.
522 +static void pppol2tp_recv_dequeue(struct pppol2tp_session *session)
524 + struct sk_buff *next;
525 + struct sk_buff *prev;
529 + prev = (struct sk_buff *) &session->reorder_q;
530 + spin_lock(&session->reorder_q.lock);
533 + /* If the pkt at the head of the queue has the nr that we
534 + * expect to send up next, dequeue it and any other
535 + * in-sequence packets behind it.
537 + while (next != prev) {
538 + struct sk_buff *skb = next;
540 + spin_unlock(&session->reorder_q.lock);
542 + if (time_after(jiffies, PPPOL2TP_SKB_CB(skb)->expires)) {
543 + session->stats.rx_seq_discards++;
544 + session->stats.rx_errors++;
545 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
546 + "%s: oos pkt %hu len %d discarded (too old), waiting for %hu, reorder_q_len=%d\n",
547 + session->name, PPPOL2TP_SKB_CB(skb)->ns,
548 + PPPOL2TP_SKB_CB(skb)->length, session->nr,
549 + skb_queue_len(&session->reorder_q));
555 + if (PPPOL2TP_SKB_CB(skb)->has_seq) {
556 + if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
557 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
558 + "%s: holding oos pkt %hu len %d, waiting for %hu, reorder_q_len=%d\n",
559 + session->name, PPPOL2TP_SKB_CB(skb)->ns,
560 + PPPOL2TP_SKB_CB(skb)->length, session->nr,
561 + skb_queue_len(&session->reorder_q));
565 + pppol2tp_recv_dequeue_skb(session, skb);
567 + spin_lock(&session->reorder_q.lock);
570 + spin_unlock(&session->reorder_q.lock);
575 +/* Internal receive frame. Do the real work of receiving an L2TP data frame
577 + * Returns 0 if the packet was a data packet and was successfully passed on.
578 + * Returns 1 if the packet was not a good data packet and could not be
579 + * forwarded. All such packets are passed up to userspace to deal with.
581 +static int pppol2tp_recv_core(struct sock *sock, struct sk_buff *skb)
583 + struct pppol2tp_session *session = NULL;
585 + struct pppol2tp_tunnel *tunnel;
586 + unsigned char *ptr;
588 + u16 tunnel_id, session_id;
593 + SOCK_2_TUNNEL(sock, tunnel, error, 1, end, 0);
595 + /* Short packet? */
596 + if (skb->len < sizeof(struct udphdr)) {
597 + PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
598 + "%s: recv short packet (len=%d)\n", tunnel->name, skb->len);
602 + /* Point to L2TP header */
603 + ptr = skb->data + sizeof(struct udphdr);
605 + /* Get L2TP header flags */
606 + hdrflags = ntohs(*(u16*)ptr);
608 + /* Trace packet contents, if enabled */
609 + if (tunnel->debug & PPPOL2TP_MSG_DATA) {
610 + printk(KERN_DEBUG "%s: recv: ", tunnel->name);
612 + for (length = 0; length < 16; length++)
613 + printk(" %02X", ptr[length]);
617 + /* Get length of L2TP packet */
618 + length = ntohs(skb->h.uh->len) - sizeof(struct udphdr);
622 + PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
623 + "%s: recv short L2TP packet (len=%d)\n", tunnel->name, length);
627 + /* If type is control packet, it is handled by userspace. */
628 + if (hdrflags & L2TP_HDRFLAG_T) {
629 + PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
630 + "%s: recv control packet, len=%d\n", tunnel->name, length);
637 + /* If length is present, skip it */
638 + if (hdrflags & L2TP_HDRFLAG_L)
641 + /* Extract tunnel and session ID */
642 + tunnel_id = ntohs(*(u16 *) ptr);
644 + session_id = ntohs(*(u16 *) ptr);
647 + /* Find the session context */
648 + session = pppol2tp_session_find(tunnel, session_id);
650 + /* Not found? Pass to userspace to deal with */
651 + PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
652 + "%s: no socket found (%hu/%hu). Passing up.\n",
653 + tunnel->name, tunnel_id, session_id);
656 + sock_hold(session->sock);
658 + DPRINTK(session->debug, "%s: socket rcvbuf alloc=%d\n",
659 + session->name, atomic_read(&sock->rmem_alloc));
661 + /* The ref count on the socket was increased by the above call since
662 + * we now hold a pointer to the session. Take care to do sock_put()
663 + * when exiting this function from now on...
666 + /* Handle the optional sequence numbers. If we are the LAC,
667 + * enable/disable sequence numbers under the control of the LNS. If
668 + * no sequence numbers present but we were expecting them, discard
671 + if (hdrflags & L2TP_HDRFLAG_S) {
673 + ns = ntohs(*(u16 *) ptr);
675 + nr = ntohs(*(u16 *) ptr);
678 + /* Received a packet with sequence numbers. If we're the LNS,
679 + * check if we sre sending sequence numbers and if not,
682 + if ((!session->lns_mode) && (!session->send_seq)) {
683 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
684 + "%s: requested to enable seq numbers by LNS\n",
686 + session->send_seq = -1;
689 + /* Store L2TP info in the skb */
690 + PPPOL2TP_SKB_CB(skb)->ns = ns;
691 + PPPOL2TP_SKB_CB(skb)->nr = nr;
692 + PPPOL2TP_SKB_CB(skb)->has_seq = 1;
694 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
695 + "%s: recv data ns=%hu, nr=%hu, session nr=%hu\n",
696 + session->name, ns, nr, session->nr);
698 + /* No sequence numbers.
699 + * If user has configured mandatory sequence numbers, discard.
701 + if (session->recv_seq) {
702 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
703 + "%s: recv data has no seq numbers when required. "
704 + "Discarding\n", session->name);
705 + session->stats.rx_seq_discards++;
706 + session->stats.rx_errors++;
710 + /* If we're the LAC and we're sending sequence numbers, the
711 + * LNS has requested that we no longer send sequence numbers.
712 + * If we're the LNS and we're sending sequence numbers, the
713 + * LAC is broken. Discard the frame.
715 + if ((!session->lns_mode) && (session->send_seq)) {
716 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
717 + "%s: requested to disable seq numbers by LNS\n",
719 + session->send_seq = 0;
720 + } else if (session->send_seq) {
721 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
722 + "%s: recv data has no seq numbers when required. "
723 + "Discarding\n", session->name);
724 + session->stats.rx_seq_discards++;
725 + session->stats.rx_errors++;
729 + /* Store L2TP info in the skb */
730 + PPPOL2TP_SKB_CB(skb)->has_seq = 0;
733 + /* If offset bit set, skip it. */
734 + if (hdrflags & L2TP_HDRFLAG_O)
735 + ptr += 2 + ntohs(*(u16 *) ptr);
737 + skb_pull(skb, ptr - skb->data);
739 + /* Skip PPP header, if present. In testing, Microsoft L2TP clients
740 + * don't send the PPP header (PPP header compression enabled), but
741 + * other clients can include the header. So we cope with both cases
742 + * here. The PPP header is always FF03 when using L2TP.
744 + * Note that skb->data[] isn't dereferenced from a u16 ptr here since
745 + * the field may be unaligned.
747 + if ((skb->data[0] == 0xff) && (skb->data[1] == 0x03))
750 + /* Prepare skb for adding to the session's reorder_q. Hold
751 + * packets for max reorder_timeout or 1 second if not
754 + PPPOL2TP_SKB_CB(skb)->length = length;
755 + PPPOL2TP_SKB_CB(skb)->expires = jiffies +
756 + (session->reorder_timeout ? session->reorder_timeout : HZ);
758 + /* Add packet to the session's receive queue. Reordering is done here, if
759 + * enabled. Saved L2TP protocol info is stored in skb->sb[].
761 + if (PPPOL2TP_SKB_CB(skb)->has_seq) {
762 + if (session->reorder_timeout != 0) {
763 + /* Packet reordering enabled. Add skb to session's
764 + * reorder queue, in order of ns.
766 + pppol2tp_recv_queue_skb(session, skb);
768 + /* Packet reordering disabled. Discard out-of-sequence
771 + if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
772 + session->stats.rx_seq_discards++;
773 + session->stats.rx_errors++;
774 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
775 + "%s: oos pkt %hu len %d discarded, waiting for %hu, reorder_q_len=%d\n",
776 + session->name, PPPOL2TP_SKB_CB(skb)->ns,
777 + PPPOL2TP_SKB_CB(skb)->length, session->nr,
778 + skb_queue_len(&session->reorder_q));
781 + skb_queue_tail(&session->reorder_q, skb);
784 + /* No sequence numbers. Add the skb to the tail of the
785 + * reorder queue. This ensures that it will be
786 + * delivered after all previous sequenced skbs.
788 + skb_queue_tail(&session->reorder_q, skb);
791 + /* Try to dequeue as many skbs from reorder_q as we can. */
792 + pppol2tp_recv_dequeue(session);
798 + DPRINTK(session->debug, "discarding skb, len=%d\n", skb->len);
801 + DPRINTK(session->debug, "calling sock_put; refcnt=%d\n",
802 + session->sock->refcnt.counter);
803 + sock_put(session->sock);
812 +/* The data_ready hook on the UDP socket. Scan the incoming packet list for
813 + * packets to process. Only control or bad data packets are delivered to
816 +static void pppol2tp_data_ready(struct sock *sk, int len)
819 + struct pppol2tp_tunnel *tunnel;
820 + struct sk_buff *skb;
823 + SOCK_2_TUNNEL(sk, tunnel, err, -EBADF, end, 0);
825 + PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
826 + "%s: received %d bytes\n", tunnel->name, len);
828 + skb = skb_dequeue(&sk->receive_queue);
829 + if (pppol2tp_recv_core(sk, skb)) {
830 + DPRINTK(tunnel->debug, "%s: packet passing to userspace\n",
832 + skb_queue_head(&sk->receive_queue, skb);
833 + tunnel->old_data_ready(sk, len);
835 + DPRINTK(tunnel->debug, "%s: data packet received\n",
843 +/* Receive message. This is the recvmsg for the PPPoL2TP socket.
845 +static int pppol2tp_recvmsg(struct socket *sock, struct msghdr *msg, int len,
846 + int flags, struct scm_cookie *scm)
849 + struct sk_buff *skb = NULL;
850 + struct sock *sk = sock->sk;
855 + if (sock->state & PPPOX_BOUND)
858 + msg->msg_namelen = 0;
860 + skb=skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
861 + flags & MSG_DONTWAIT, &err);
863 + err = memcpy_toiovec(msg->msg_iov, (unsigned char *) skb->data,
877 +/************************************************************************
878 + * Transmit handling
879 + ***********************************************************************/
881 +/* Internal UDP socket transmission
883 +static int pppol2tp_udp_sock_send(struct pppol2tp_session *session,
884 + struct pppol2tp_tunnel *tunnel,
885 + struct msghdr *msg, int total_len)
892 + DPRINTK(session->debug, "%s: udp_sendmsg call...\n", session->name);
894 + /* Catch bad socket parameter errors */
895 + if (msg->msg_name) {
896 + struct sockaddr_in * usin = (struct sockaddr_in*)msg->msg_name;
897 + if (msg->msg_namelen < sizeof(*usin)) {
898 + printk(KERN_ERR "msg->msg_namelen wrong, %d\n", msg->msg_namelen);
901 + if (usin->sin_family != AF_INET) {
902 + if (usin->sin_family != AF_UNSPEC) {
903 + printk(KERN_ERR "addr family wrong: %d\n", usin->sin_family);
907 + if ((usin->sin_addr.s_addr == 0) || (usin->sin_port == 0)) {
908 + printk(KERN_ERR "udp addr=%x/%hu\n", usin->sin_addr.s_addr, usin->sin_port);
914 + /* Set to userspace data segment while we do a sendmsg() call. We're
915 + * actually calling a userspace API from the kernel here...
920 + /* The actual sendmsg() call... */
921 + error = tunnel->old_proto->sendmsg(session->tunnel_sock, msg, total_len);
923 + tunnel->stats.tx_packets++;
924 + tunnel->stats.tx_bytes += error;
925 + session->stats.tx_packets++;
926 + session->stats.tx_bytes += error;
928 + tunnel->stats.tx_errors++;
929 + session->stats.tx_errors++;
932 + /* Back to kernel space */
935 + DPRINTK(session->debug, "%s: %s: returning result %d\n", __FUNCTION__,
936 + session->name, error);
937 + kfree(msg->msg_iov);
944 +/* Build an L2TP header for the session into the buffer provided.
946 +static int pppol2tp_build_l2tp_header(struct pppol2tp_session *session,
950 + u16 flags = L2TP_HDR_VER;
952 + if (session->send_seq) {
953 + flags |= L2TP_HDRFLAG_S;
956 + /* Setup L2TP header.
957 + * FIXME: Can this ever be unaligned? Is direct dereferencing of
958 + * 16-bit header fields safe here for all architectures?
960 + *bufp++ = htons(flags);
961 + *bufp++ = htons(session->tunnel_addr.d_tunnel);
962 + *bufp++ = htons(session->tunnel_addr.d_session);
963 + if (session->send_seq) {
964 + *bufp++ = htons(session->ns);
967 + PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
968 + "%s: updated ns to %hu\n", session->name, session->ns);
970 + /* This is the PPP header really */
971 + *bufp = htons(0xff03);
973 + return ((void *) bufp) - buf;
976 +/* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
977 + * when a user application does a sendmsg() on the session socket. L2TP and
978 + * PPP headers must be inserted into the user's data.
980 +static int pppol2tp_sendmsg(struct socket *sock, struct msghdr *m,
981 + int total_len, struct scm_cookie *scm)
983 + static unsigned char ppph[2] = { 0xff, 0x03 };
984 + struct sock *sk = sock->sk;
986 + u8 hdr[PPPOL2TP_L2TP_HDR_SIZE_SEQ];
988 + struct msghdr *msg;
989 + struct pppol2tp_session *session;
990 + struct pppol2tp_tunnel *tunnel;
994 + if (sk->dead || !(sk->state & PPPOX_CONNECTED)) {
999 + /* Get session and tunnel contexts */
1000 + SOCK_2_SESSION(sk, session, error, -EBADF, end, 0);
1001 + SOCK_2_TUNNEL(session->tunnel_sock, tunnel, error, -EBADF, end, 0);
1003 + /* Setup L2TP header */
1004 + hdr_len = pppol2tp_build_l2tp_header(session, &hdr);
1006 + if (session->send_seq)
1007 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1008 + "%s: send %d bytes, ns=%hu\n", session->name,
1009 + total_len, session->ns - 1);
1011 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1012 + "%s: send %d bytes\n", session->name, total_len);
1014 + if (session->debug & PPPOL2TP_MSG_DATA) {
1017 + printk(KERN_DEBUG "%s: xmit:", session->name);
1019 + for (i = 0; i < m->msg_iovlen; i++) {
1020 + for (j = 0; j < m->msg_iov[i].iov_len; j++) {
1021 + printk(" %02X", ((unsigned char *) m->msg_iov[i].iov_base)[j]);
1023 + if (count == 15) {
1032 + /* Unfortunately, there is no direct way for us to pass an skb to the
1033 + * UDP layer, we have to pretend to be sending ordinary data and use
1036 + * We add the L2TP and PPP headers here. To do so, we create a new
1037 + * struct msghdr and insert the headers as the first iovecs.
1039 + msg = kmalloc(sizeof(struct msghdr), GFP_ATOMIC);
1040 + if (msg == NULL) {
1042 + tunnel->stats.tx_errors++;
1043 + session->stats.tx_errors++;
1047 + msg->msg_iov = kmalloc((m->msg_iovlen + 2) * sizeof(struct iovec),
1049 + if (msg->msg_iov == NULL) {
1051 + tunnel->stats.tx_errors++;
1052 + session->stats.tx_errors++;
1057 + msg->msg_iov[0].iov_base = &hdr;
1058 + msg->msg_iov[0].iov_len = hdr_len;
1059 + msg->msg_iov[1].iov_base = &ppph;
1060 + msg->msg_iov[1].iov_len = sizeof(ppph);
1061 + memcpy(&msg->msg_iov[2], &m->msg_iov[0],
1062 + m->msg_iovlen * sizeof(struct iovec));
1063 + msg->msg_iovlen = m->msg_iovlen + 2;
1065 + /* If the user calls sendto() that's just too bad */
1066 + msg->msg_name = &session->tunnel_addr.addr;
1067 + msg->msg_namelen = sizeof(session->tunnel_addr.addr);
1069 + msg->msg_control = m->msg_control;
1070 + msg->msg_controllen = m->msg_controllen;
1071 + msg->msg_flags = m->msg_flags;
1073 + /* Do the real work. This always frees msg, regardless of whether
1074 + * there was an error
1076 + error = pppol2tp_udp_sock_send(session, tunnel, msg,
1077 + total_len + hdr_len + sizeof(ppph));
1085 +/* Transmit function called by generic PPP driver. Sends PPP frame over
1086 + * PPPoL2TP socket.
1088 + * This is almost the same as pppol2tp_sendmsg(), but rather than being called
1089 + * with a msghdr from userspace, it is called with a skb from the kernel.
1091 +static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
1093 + static unsigned char ppph[2] = { 0xff, 0x03 };
1094 + struct sock *sk = (struct sock *) chan->private;
1096 + u8 hdr[PPPOL2TP_L2TP_HDR_SIZE_SEQ];
1098 + struct msghdr *msg;
1099 + struct pppol2tp_session *session;
1100 + struct pppol2tp_tunnel *tunnel;
1104 + if (sk->dead || !(sk->state & PPPOX_CONNECTED)) {
1105 + DPRINTK(-1, "dead=%d state=%x\n", sk->dead, sk->state);
1106 + error = -ENOTCONN;
1110 + /* Get session and tunnel contexts from the socket */
1111 + SOCK_2_SESSION(sk, session, error, -EBADF, end, 0);
1112 + SOCK_2_TUNNEL(session->tunnel_sock, tunnel, error, -EBADF, end, 0);
1114 + /* Setup L2TP header */
1115 + hdr_len = pppol2tp_build_l2tp_header(session, &hdr);
1117 + if (session->send_seq)
1118 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1119 + "%s: send %d bytes, ns=%hu\n",
1120 + session->name, skb->len, session->ns - 1);
1122 + PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1123 + "%s: send %d bytes\n", session->name, skb->len);
1125 + if (session->debug & PPPOL2TP_MSG_DATA) {
1128 + printk(KERN_DEBUG "%s: xmit:", session->name);
1129 + for (i = 0; i < skb->len; i++) {
1130 + printk(" %02X", skb->data[i]);
1139 + /* Unfortunatly there doesn't appear to be a way for us to pass an skb
1140 + * to the UDP layer, we have to pretend to be sending ordinary data
1143 + msg = kmalloc(sizeof(struct msghdr), GFP_ATOMIC);
1144 + if (msg == NULL) {
1146 + tunnel->stats.tx_errors++;
1147 + session->stats.tx_errors++;
1151 + msg->msg_iov = kmalloc(2 * sizeof(struct iovec), GFP_ATOMIC);
1152 + if (msg->msg_iov == NULL) {
1154 + tunnel->stats.tx_errors++;
1155 + session->stats.tx_errors++;
1159 + msg->msg_iov[0].iov_base = &hdr;
1160 + msg->msg_iov[0].iov_len = hdr_len;
1161 + /* FIXME: do we need to handle skb fragments here? */
1162 + msg->msg_iov[1].iov_base = &ppph;
1163 + msg->msg_iov[1].iov_len = sizeof(ppph);
1164 + msg->msg_iov[2].iov_base = skb->data;
1165 + msg->msg_iov[2].iov_len = skb->len;
1166 + msg->msg_iovlen = 3;
1168 + /* If the user calls sendto() that's just too bad */
1169 + msg->msg_name = &session->tunnel_addr.addr;
1170 + msg->msg_namelen = sizeof(session->tunnel_addr.addr);
1172 + msg->msg_control = NULL;
1173 + msg->msg_controllen = 0;
1174 + msg->msg_flags = MSG_DONTWAIT; /* Need this to prevent blocking */
1176 + /* Do the real work. This always frees msg, regardless of whether
1177 + * there was an error
1179 + error = pppol2tp_udp_sock_send(session, tunnel, msg,
1180 + skb->len + hdr_len + sizeof(ppph));
1189 +/*****************************************************************************
1190 + * Session (and tunnel control) socket create/destroy.
1191 + *****************************************************************************/
1193 +/* When the tunnel UDP socket is closed, all the attached sockets need to go
1194 + * too. This handles that.
1196 +static void pppol2tp_tunnel_closeall(struct pppol2tp_tunnel *tunnel)
1199 + struct hlist_node *walk;
1200 + struct hlist_node *tmp;
1201 + struct pppol2tp_session *session;
1206 + if (tunnel == NULL)
1209 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1210 + "%s: closing all sessions...\n", tunnel->name);
1212 + for (hash = 0; hash < PPPOL2TP_HASH_SIZE; hash++) {
1213 + hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
1214 + session = hlist_entry(walk, struct pppol2tp_session, hlist);
1216 + sk = session->sock;
1218 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1219 + "%s: closing session\n", session->name);
1221 + write_lock_bh(&tunnel->hlist_lock);
1222 + hlist_del_init(&session->hlist);
1223 + write_unlock_bh(&tunnel->hlist_lock);
1229 + if (sk->state & (PPPOX_CONNECTED | PPPOX_BOUND)) {
1230 + pppox_unbind_sock(sk);
1231 + sk->state = PPPOX_DEAD;
1232 + sk->state_change(sk);
1235 + /* Purge any queued data */
1236 + skb_queue_purge(&sk->receive_queue);
1237 + skb_queue_purge(&sk->write_queue);
1241 + DPRINTK(session->debug, "calling sock_put; refcnt=%d\n",
1242 + sk->refcnt.counter);
1250 +/* Really kill the tunnel.
1251 + * Come here only when all sessions have been cleared from the tunnel.
1253 +static void pppol2tp_tunnel_free(struct pppol2tp_tunnel *tunnel)
1255 + struct sock *sk = tunnel->sock;
1259 + /* Remove from socket list */
1260 + list_del_init(&tunnel->list);
1262 + sk->prot = tunnel->old_proto;
1263 + sk->data_ready = tunnel->old_data_ready;
1264 + sk->destruct = tunnel->old_sk_destruct;
1265 + sk->user_data = NULL;
1267 + DPRINTK(tunnel->debug, "%s: MOD_DEC_USE_COUNT\n", tunnel->name);
1269 + MOD_DEC_USE_COUNT;
1274 +/* Tunnel UDP socket destruct hook.
1275 + * The tunnel context is deleted only when all session sockets have been
1278 +static void pppol2tp_tunnel_destruct(struct sock *sk)
1280 + struct pppol2tp_tunnel *tunnel;
1284 + SOCK_2_TUNNEL(sk, tunnel, error, -EBADF, end, 0);
1286 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1287 + "%s: closing...\n", tunnel->name);
1289 + pppol2tp_tunnel_closeall(tunnel);
1296 +/* Really kill the socket. (Called from sock_put if refcnt == 0.)
1298 +static void pppol2tp_session_destruct(struct sock *sk)
1300 + struct pppol2tp_session *session = NULL;
1305 + if (sk->user_data != NULL) {
1306 + struct pppol2tp_tunnel *tunnel;
1308 + SOCK_2_SESSION(sk, session, error, -EBADF, out, 0);
1309 + skb_queue_purge(&session->reorder_q);
1311 + /* Don't use SOCK_2_TUNNEL() here to get the tunnel context
1312 + * because the tunnel socket might have already been closed
1313 + * (its sk->user_data will be NULL) so use the session's
1314 + * private tunnel ptr instead.
1316 + tunnel = session->tunnel;
1317 + if (tunnel != NULL) {
1318 + if (tunnel->magic != L2TP_TUNNEL_MAGIC) {
1319 + printk(KERN_ERR "%s: %s:%d: BAD TUNNEL MAGIC "
1320 + "( tunnel=%p magic=%x )\n",
1321 + __FUNCTION__, __FILE__, __LINE__,
1322 + tunnel, tunnel->magic);
1327 + /* Delete tunnel context if this was the last session on the
1328 + * tunnel. This was allocated when the first session was
1329 + * created on the tunnel. See
1330 + * pppol2tp_prepare_tunnel_socket().
1332 + DPRINTK(tunnel->debug, "%s: session_count=%d\n",
1333 + tunnel->name, atomic_read(&tunnel->session_count));
1334 + if (atomic_dec_and_test(&tunnel->session_count)) {
1335 + pppol2tp_tunnel_free(tunnel);
1339 + if (session != NULL)
1340 + DPRINTK(session->debug, "%s: MOD_DEC_USE_COUNT\n", session->name);
1342 + if (sk->protinfo.pppox)
1343 + kfree(sk->protinfo.pppox);
1345 + if (session != NULL)
1347 + MOD_DEC_USE_COUNT;
1353 +/* Called when the PPPoX socket (session) is closed.
1355 +static int pppol2tp_release(struct socket *sock)
1357 + struct sock *sk = sock->sk;
1358 + struct pppol2tp_session *session = NULL;
1359 + struct pppol2tp_tunnel *tunnel;
1366 + if (sk->dead != 0)
1369 + if (sk->user_data) { /* Was this socket actually connected? */
1370 + SOCK_2_SESSION(sk, session, error, -EBADF, end, 0);
1372 + /* Don't use SOCK_2_TUNNEL() here to get the tunnel context
1373 + * because the tunnel socket might have already been closed
1374 + * (its sk->user_data will be NULL) so use the session's
1375 + * private tunnel ptr instead.
1377 + tunnel = session->tunnel;
1378 + if (tunnel != NULL) {
1379 + if (tunnel->magic == L2TP_TUNNEL_MAGIC) {
1380 + /* Delete the session socket from the hash */
1381 + write_lock_bh(&tunnel->hlist_lock);
1382 + hlist_del_init(&session->hlist);
1383 + write_unlock_bh(&tunnel->hlist_lock);
1385 + printk(KERN_ERR "%s: %s:%d: BAD TUNNEL MAGIC "
1386 + "( tunnel=%p magic=%x )\n",
1387 + __FUNCTION__, __FILE__, __LINE__,
1388 + tunnel, tunnel->magic);
1396 + if (sk->state & (PPPOX_CONNECTED | PPPOX_BOUND))
1397 + pppox_unbind_sock(sk);
1399 + /* Signal the death of the socket. */
1400 + sk->state = PPPOX_DEAD;
1404 + /* Purge any queued data */
1405 + skb_queue_purge(&sk->receive_queue);
1406 + skb_queue_purge(&sk->write_queue);
1410 + if (session != NULL)
1411 + DPRINTK(session->debug, "calling sock_put; refcnt=%d\n",
1412 + session->sock->refcnt.counter);
1420 +/* Copied from fget() in fs/file_table.c.
1421 + * Allows caller to specify the pid that owns the fd.
1423 +static struct file *pppol2tp_fget(pid_t pid, unsigned int fd)
1425 + struct file *file;
1426 + struct files_struct *files = current->files;
1429 + struct task_struct *tsk = find_task_by_pid(pid);
1432 + files = tsk->files;
1435 + spin_lock(&files->file_lock);
1436 + file = fcheck_files(files, fd);
1439 + spin_unlock(&files->file_lock);
1443 +/* Copied from net/socket.c */
1444 +extern __inline__ struct socket *socki_lookup(struct inode *inode)
1446 + return &inode->u.socket_i;
1449 +/* Copied from sockfd_lookup() in net/socket.c.
1450 + * Allows caller to specify the pid that owns the fd.
1452 +static struct socket *pppol2tp_sockfd_lookup(pid_t pid, int fd, int *err)
1454 + struct file *file;
1455 + struct inode *inode;
1456 + struct socket *sock;
1458 + if (!(file = pppol2tp_fget(pid, fd))) {
1463 + inode = file->f_dentry->d_inode;
1464 + if (!inode->i_sock || !(sock = socki_lookup(inode))) {
1470 + if (sock->file != file) {
1471 + printk(KERN_ERR "socki_lookup: socket file changed!\n");
1472 + sock->file = file;
1477 +/* Internal function to prepare a tunnel (UDP) socket to have PPPoX sockets
1480 +static struct sock *pppol2tp_prepare_tunnel_socket(pid_t pid, int fd,
1481 + u16 tunnel_id, int *error)
1484 + struct socket *sock = NULL;
1486 + struct pppol2tp_tunnel *tunnel;
1487 + struct sock *ret = NULL;
1491 + /* Get the socket from the fd */
1493 + sock = pppol2tp_sockfd_lookup(pid, fd, &err);
1495 + PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1496 + "tunl %hu: sockfd_lookup(fd=%d) returned %d\n",
1497 + tunnel_id, fd, err);
1501 + /* Quick sanity checks */
1502 + err = -ESOCKTNOSUPPORT;
1503 + if (sock->type != SOCK_DGRAM) {
1504 + PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1505 + "tunl %hu: fd %d wrong type, got %d, expected %d\n",
1506 + tunnel_id, fd, sock->type, SOCK_DGRAM);
1509 + err = -EAFNOSUPPORT;
1510 + if (sock->ops->family!=AF_INET) {
1511 + PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1512 + "tunl %hu: fd %d wrong family, got %d, expected %d\n",
1513 + tunnel_id, fd, sock->ops->family, AF_INET);
1520 + /* Check if this socket has already been prepped */
1521 + tunnel = (struct pppol2tp_tunnel *)sk->user_data;
1522 + if (tunnel != NULL) {
1523 + /* User-data field already set */
1525 + if (tunnel->magic != L2TP_TUNNEL_MAGIC) {
1526 + printk(KERN_ERR "%s: %s:%d: BAD TUNNEL MAGIC "
1527 + "( tunnel=%p magic=%x )\n",
1528 + __FUNCTION__, __FILE__, __LINE__,
1529 + tunnel, tunnel->magic);
1533 + /* This socket has already been prepped */
1534 + ret = tunnel->sock;
1538 + /* This socket is available and needs prepping. Create a new tunnel
1539 + * context and init it.
1541 + sk->user_data = tunnel = kmalloc(sizeof(struct pppol2tp_tunnel), GFP_KERNEL);
1542 + if (sk->user_data == NULL) {
1547 + memset(tunnel, 0, sizeof(struct pppol2tp_tunnel));
1549 + tunnel->magic = L2TP_TUNNEL_MAGIC;
1550 + sprintf(&tunnel->name[0], "tunl %hu", tunnel_id);
1552 + tunnel->stats.tunnel_id = tunnel_id;
1554 + tunnel->debug = PPPOL2TP_DEFAULT_DEBUG_FLAGS;
1556 + DPRINTK(tunnel->debug, "tunl %hu: allocated tunnel=%p, sk=%p, sock=%p\n",
1557 + tunnel_id, tunnel, sk, sock);
1559 + /* Setup the new protocol stuff */
1560 + tunnel->old_proto = sk->prot;
1561 + tunnel->l2tp_proto = *sk->prot;
1563 + sk->prot = &tunnel->l2tp_proto;
1565 + tunnel->old_data_ready = sk->data_ready;
1566 + sk->data_ready = &pppol2tp_data_ready;
1568 + tunnel->old_sk_destruct = sk->destruct;
1569 + sk->destruct = &pppol2tp_tunnel_destruct;
1571 + tunnel->sock = sk;
1572 + sk->allocation = GFP_ATOMIC;
1574 + rwlock_init(&tunnel->hlist_lock);
1576 + /* Add tunnel to our list */
1577 + INIT_LIST_HEAD(&tunnel->list);
1578 + list_add(&tunnel->list, &pppol2tp_tunnel_list);
1580 + ret = tunnel->sock;
1582 + MOD_INC_USE_COUNT;
1583 + DPRINTK(-1, "tunl %hu: MOD_INC_USE_COUNT\n", tunnel_id);
1598 +/* socket() handler. Initialize a new struct sock.
1600 +static int pppol2tp_create(struct socket *sock)
1606 + DPRINTK(-1, "sock=%p\n", sock);
1608 + sk = sk_alloc(PF_PPPOX, GFP_KERNEL, 1);
1612 + MOD_INC_USE_COUNT;
1613 + DPRINTK(-1, "MOD_INC_USE_COUNT\n");
1615 + sock_init_data(sock, sk);
1617 + sock->state = SS_UNCONNECTED;
1618 + sock->ops = &pppol2tp_ops;
1620 + sk->protocol = PX_PROTO_OL2TP;
1621 + sk->family = PF_PPPOX;
1625 + sk->state = PPPOX_NONE;
1626 + sk->type = SOCK_STREAM;
1627 + sk->destruct = pppol2tp_session_destruct;
1628 + sk->backlog_rcv = pppol2tp_recv_core;
1630 + sk->protinfo.pppox = kmalloc(sizeof(struct pppox_opt), GFP_KERNEL);
1631 + if (!sk->protinfo.pppox) {
1636 + memset((void *) sk->protinfo.pppox, 0, sizeof(struct pppox_opt));
1637 + sk->protinfo.pppox->sk = sk;
1650 +/* connect() handler.. Attach a PPPoX socket to a tunnel UDP socket
1652 +int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
1653 + int sockaddr_len, int flags)
1655 + struct sock *sk = sock->sk;
1656 + struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
1657 + struct pppox_opt *po = sk->protinfo.pppox;
1658 + struct sock *tunnel_sock = NULL;
1659 + struct pppol2tp_session *session = NULL;
1660 + struct pppol2tp_tunnel *tunnel;
1661 + struct dst_entry *dst;
1666 + DPRINTK(-1, "sock=%p, uservaddr=%p, sockaddr_len=%d, flags=%d, addr=%x/%hu\n",
1667 + sock, uservaddr, sockaddr_len, flags,
1668 + ntohl(sp->pppol2tp.addr.sin_addr.s_addr), ntohs(sp->pppol2tp.addr.sin_port));
1672 + if (sp->sa_protocol != PX_PROTO_OL2TP)
1675 + /* Check for already bound sockets */
1677 + if (sk->state & PPPOX_CONNECTED)
1680 + /* We don't supporting rebinding anyway */
1681 + if (sk->user_data)
1682 + goto end; /* socket is already attached */
1684 + /* Don't bind if s_tunnel is 0 */
1686 + if (sp->pppol2tp.s_tunnel == 0)
1689 + /* Look up the tunnel socket and configure it if necessary */
1690 + tunnel_sock = pppol2tp_prepare_tunnel_socket(sp->pppol2tp.pid,
1692 + sp->pppol2tp.s_tunnel,
1694 + if (tunnel_sock == NULL)
1696 + tunnel = tunnel_sock->user_data;
1698 + /* Allocate and initialize a new session context.
1700 + session = kmalloc(sizeof(struct pppol2tp_session), GFP_KERNEL);
1701 + if (session == NULL) {
1706 + memset(session, 0, sizeof(struct pppol2tp_session));
1708 + skb_queue_head_init(&session->reorder_q);
1710 + session->magic = L2TP_SESSION_MAGIC;
1711 + session->owner = current->pid;
1712 + session->sock = sk;
1713 + session->tunnel = tunnel;
1714 + session->tunnel_sock = tunnel_sock;
1715 + session->tunnel_addr = sp->pppol2tp;
1716 + sprintf(&session->name[0], "sess %hu/%hu",
1717 + session->tunnel_addr.s_tunnel,
1718 + session->tunnel_addr.s_session);
1720 + session->stats.tunnel_id = session->tunnel_addr.s_tunnel;
1721 + session->stats.session_id = session->tunnel_addr.s_session;
1723 + INIT_HLIST_NODE(&session->hlist);
1725 + session->debug = PPPOL2TP_DEFAULT_DEBUG_FLAGS;
1727 + /* Default MTU must allow space for UDP/L2TP/PPP
1728 + * headers. Leave some slack.
1730 + session->mtu = session->mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
1732 + /* If PMTU discovery was enabled, use the MTU that was discovered */
1733 + dst = sk_dst_get(sk);
1734 + if (dst != NULL) {
1735 + u32 pmtu = dst_pmtu(dst);
1737 + session->mtu = session->mru = pmtu -
1738 + PPPOL2TP_HEADER_OVERHEAD;
1739 + DPRINTK(session->debug,
1740 + "%s: MTU set by Path MTU discovery: mtu=%d\n",
1741 + session->name, session->mtu);
1746 + /* Special case: if source & dest session_id == 0x0000, this socket is
1747 + * being created to manage the tunnel. Don't add the session to the
1748 + * session hash list, just set up the internal context for use by
1749 + * ioctl() and sockopt() handlers.
1751 + if ((session->tunnel_addr.s_session == 0) &&
1752 + (session->tunnel_addr.d_session == 0)) {
1754 + DPRINTK(session->debug,
1755 + "tunl %hu: socket created for tunnel mgmt ops\n",
1756 + session->tunnel_addr.s_tunnel);
1757 + sk->user_data = session;
1761 + DPRINTK(session->debug, "%s: allocated session=%p, sock=%p, owner=%d\n",
1762 + session->name, session, sk, session->owner);
1764 + /* Add session to the tunnel's hash list */
1765 + SOCK_2_TUNNEL(tunnel_sock, tunnel, error, -EBADF, end, 0);
1766 + write_lock_bh(&tunnel->hlist_lock);
1767 + hlist_add_head(&session->hlist,
1768 + pppol2tp_session_id_hash(tunnel,
1769 + session->tunnel_addr.s_session));
1770 + write_unlock_bh(&tunnel->hlist_lock);
1772 + /* This is how we get the session context from the socket. */
1773 + sk->user_data = session;
1775 + /* We don't store any more options in the pppox_opt, everything is in
1776 + * user_data (struct pppol2tp_session)
1780 + /* Right now, because we don't have a way to push the incoming skb's
1781 + * straight through the UDP layer, the only header we need to worry
1782 + * about is the L2TP header. This size is different depending on
1783 + * whether sequence numbers are enabled for the data channel.
1785 + po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1787 + po->chan.private = sk;
1788 + po->chan.ops = &pppol2tp_chan_ops;
1789 + po->chan.mtu = session->mtu;
1791 + error = ppp_register_channel(&po->chan);
1796 + atomic_inc(&tunnel->session_count);
1797 + sk->state = PPPOX_CONNECTED;
1798 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1799 + "%s: created\n", session->name);
1805 + PRINTK(session ? session->debug : -1, PPPOL2TP_MSG_CONTROL,
1806 + KERN_WARNING, "%s: connect failed: %d\n", session->name,
1814 +/* getname() support.
1816 +static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
1817 + int *usockaddr_len, int peer)
1819 + int len = sizeof(struct sockaddr_pppol2tp);
1820 + struct sockaddr_pppol2tp sp;
1822 + struct pppol2tp_session *session;
1826 + error = -ENOTCONN;
1827 + if (sock->sk->state != PPPOX_CONNECTED)
1830 + SOCK_2_SESSION(sock->sk, session, error, -EBADF, end, 0);
1832 + sp.sa_family = AF_PPPOX;
1833 + sp.sa_protocol = PX_PROTO_OL2TP;
1834 + memcpy(&sp.pppol2tp, &session->tunnel_addr,
1835 + sizeof(struct pppol2tp_addr));
1837 + memcpy(uaddr, &sp, len);
1839 + *usockaddr_len = len;
1847 +/****************************************************************************
1848 + * ioctl() handlers.
1850 + * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1851 + * sockets. However, in order to control kernel tunnel features, we allow
1852 + * userspace to create a special "tunnel" PPPoX socket which is used for
1853 + * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1854 + * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1856 + ****************************************************************************/
1858 +/* Session ioctl helper.
1860 +static int pppol2tp_session_ioctl(struct pppol2tp_session *session,
1861 + unsigned int cmd, unsigned long arg)
1865 + struct sock *sk = session->sock;
1866 + int val = (int) arg;
1870 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1871 + "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1872 + session->name, cmd, arg);
1877 + if (!(sk->state & PPPOX_CONNECTED))
1881 + if (copy_from_user(&ifr, (void *) arg, sizeof(struct ifreq)))
1883 + ifr.ifr_mtu = session->mtu;
1884 + if (copy_to_user((void *) arg, &ifr, sizeof(struct ifreq)))
1887 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1888 + "%s: get mtu=%d\n", session->name, session->mtu);
1894 + if (!(sk->state & PPPOX_CONNECTED))
1898 + if (copy_from_user(&ifr, (void *) arg, sizeof(struct ifreq)))
1901 + session->mtu = ifr.ifr_mtu;
1903 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1904 + "%s: set mtu=%d\n", session->name, session->mtu);
1910 + if (!(sk->state & PPPOX_CONNECTED))
1914 + if (put_user(session->mru, (int *) arg))
1917 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1918 + "%s: get mru=%d\n", session->name, session->mru);
1924 + if (!(sk->state & PPPOX_CONNECTED))
1928 + if (get_user(val,(int *) arg))
1931 + session->mru = val;
1932 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1933 + "%s: set mru=%d\n", session->name, session->mru);
1937 + case PPPIOCGFLAGS:
1939 + if (put_user(session->flags, (int *) arg))
1942 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1943 + "%s: get flags=%d\n", session->name, session->flags);
1947 + case PPPIOCSFLAGS:
1949 + if (get_user(val, (int *) arg))
1951 + session->flags = val;
1952 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1953 + "%s: set flags=%d\n", session->name, session->flags);
1957 + case PPPIOCGL2TPSTATS:
1960 + if (!(sk->state & PPPOX_CONNECTED))
1963 + if (copy_to_user((void *) arg, &session->stats,
1964 + sizeof(session->stats)))
1966 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1967 + "%s: get L2TP stats\n", session->name);
1981 +/* Tunnel ioctl helper.
1983 + * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1984 + * specifies a session_id, the session ioctl handler is called. This allows an
1985 + * application to retrieve session stats via a tunnel socket.
1987 +static int pppol2tp_tunnel_ioctl(struct pppol2tp_tunnel *tunnel,
1988 + unsigned int cmd, unsigned long arg)
1991 + struct sock *sk = tunnel->sock;
1992 + struct pppol2tp_ioc_stats stats_req;
1996 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1997 + "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", tunnel->name,
2001 + case PPPIOCGL2TPSTATS:
2004 + if (!(sk->state & PPPOX_CONNECTED))
2007 + if (copy_from_user(&stats_req, (void *) arg,
2008 + sizeof(stats_req))) {
2012 + if (stats_req.session_id != 0) {
2013 + /* resend to session ioctl handler */
2014 + struct pppol2tp_session *session =
2015 + pppol2tp_session_find(tunnel, stats_req.session_id);
2016 + if (session != NULL)
2017 + err = pppol2tp_session_ioctl(session, cmd, arg);
2022 + if (copy_to_user((void *) arg, &tunnel->stats,
2023 + sizeof(tunnel->stats))) {
2027 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2028 + "%s: get L2TP stats\n", tunnel->name);
2042 +/* Main ioctl() handler.
2043 + * Dispatch to tunnel or session helpers depending on the socket.
2045 +static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
2046 + unsigned long arg)
2048 + struct sock *sk = sock->sk;
2049 + struct pppol2tp_session *session;
2050 + struct pppol2tp_tunnel *tunnel;
2058 + if (sk->dead != 0)
2061 + if ((sk->user_data == NULL) ||
2062 + (!(sk->state & (PPPOX_CONNECTED | PPPOX_BOUND)))) {
2064 + DPRINTK(-1, "ioctl: socket %p not connected.\n", sk);
2068 + SOCK_2_SESSION(sk, session, err, -EBADF, end, 0);
2069 + SOCK_2_TUNNEL(session->tunnel_sock, tunnel, err, -EBADF, end, 1);
2071 + /* Special case: if session's session_id is zero, treat ioctl as a
2074 + if ((session->tunnel_addr.s_session == 0) &&
2075 + (session->tunnel_addr.d_session == 0)) {
2076 + err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
2080 + err = pppol2tp_session_ioctl(session, cmd, arg);
2087 +/*****************************************************************************
2088 + * setsockopt() / getsockopt() support.
2090 + * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
2091 + * sockets. In order to control kernel tunnel features, we allow userspace to
2092 + * create a special "tunnel" PPPoX socket which is used for control only.
2093 + * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
2094 + * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
2095 + *****************************************************************************/
2097 +/* Tunnel setsockopt() helper.
2099 +static int pppol2tp_tunnel_setsockopt(struct sock *sk,
2100 + struct pppol2tp_tunnel *tunnel,
2101 + int optname, int val)
2105 + switch (optname) {
2106 + case PPPOL2TP_SO_DEBUG:
2107 + tunnel->debug = val;
2108 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2109 + "%s: set debug=%x\n", tunnel->name, tunnel->debug);
2113 + err = -ENOPROTOOPT;
2120 +/* Session setsockopt helper.
2122 +static int pppol2tp_session_setsockopt(struct sock *sk,
2123 + struct pppol2tp_session *session,
2124 + int optname, int val)
2128 + switch (optname) {
2129 + case PPPOL2TP_SO_RECVSEQ:
2130 + if ((val != 0) && (val != 1)) {
2134 + session->recv_seq = val ? -1 : 0;
2135 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2136 + "%s: set recv_seq=%d\n", session->name,
2137 + session->recv_seq);
2140 + case PPPOL2TP_SO_SENDSEQ:
2141 + if ((val != 0) && (val != 1)) {
2145 + session->send_seq = val ? -1 : 0;
2147 + /* FIXME: is it safe to change the ppp channel's
2148 + * hdrlen on the fly?
2150 + struct sock *sk = session->sock;
2151 + struct pppox_opt *po = sk->protinfo.pppox;
2152 + po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
2153 + PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
2155 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2156 + "%s: set send_seq=%d\n", session->name, session->send_seq);
2159 + case PPPOL2TP_SO_LNSMODE:
2160 + if ((val != 0) && (val != 1)) {
2164 + session->lns_mode = val ? -1 : 0;
2165 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2166 + "%s: set lns_mode=%d\n", session->name,
2167 + session->lns_mode);
2170 + case PPPOL2TP_SO_DEBUG:
2171 + session->debug = val;
2172 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2173 + "%s: set debug=%x\n", session->name, session->debug);
2176 + case PPPOL2TP_SO_REORDERTO:
2177 + session->reorder_timeout = MS_TO_JIFFIES(val);
2178 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2179 + "%s: set reorder_timeout=%d\n", session->name,
2180 + session->reorder_timeout);
2184 + err = -ENOPROTOOPT;
2191 +/* Main setsockopt() entry point.
2192 + * Does API checks, then calls either the tunnel or session setsockopt
2193 + * handler, according to whether the PPPoL2TP socket is a for a regular
2194 + * session or the special tunnel type.
2196 +static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
2197 + char *optval, int optlen)
2199 + struct sock *sk = sock->sk;
2200 + struct pppol2tp_session *session = sk->user_data;
2201 + struct pppol2tp_tunnel *tunnel;
2205 + if (level != SOL_PPPOL2TP)
2206 + return udp_prot.setsockopt(sk, level, optname, optval, optlen);
2208 + if (optlen<sizeof(int))
2211 + if (get_user(val, (int *)optval))
2214 + if (sk->user_data == NULL) {
2216 + DPRINTK(-1, "setsockopt: socket %p not connected.\n", sk);
2220 + SOCK_2_SESSION(sk, session, err, -EBADF, end, 0);
2221 + SOCK_2_TUNNEL(session->tunnel_sock, tunnel, err, -EBADF, end, 1);
2225 + /* Special case: if session_id == 0x0000, treat as operation on tunnel
2227 + if ((session->tunnel_addr.s_session == 0) &&
2228 + (session->tunnel_addr.d_session == 0))
2229 + err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
2231 + err = pppol2tp_session_setsockopt(sk, session, optname, val);
2238 +/* Tunnel getsockopt helper.
2240 +static int pppol2tp_tunnel_getsockopt(struct sock *sk,
2241 + struct pppol2tp_tunnel *tunnel,
2242 + int optname, int *val)
2246 + switch (optname) {
2247 + case PPPOL2TP_SO_DEBUG:
2248 + *val = tunnel->debug;
2249 + PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2250 + "%s: get debug=%x\n", tunnel->name, tunnel->debug);
2254 + err = -ENOPROTOOPT;
2261 +/* Session getsockopt helper.
2263 +static int pppol2tp_session_getsockopt(struct sock *sk,
2264 + struct pppol2tp_session *session,
2265 + int optname, int *val)
2269 + switch (optname) {
2270 + case PPPOL2TP_SO_RECVSEQ:
2271 + *val = session->recv_seq;
2272 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2273 + "%s: get recv_seq=%d\n", session->name, *val);
2276 + case PPPOL2TP_SO_SENDSEQ:
2277 + *val = session->send_seq;
2278 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2279 + "%s: get send_seq=%d\n", session->name, *val);
2282 + case PPPOL2TP_SO_LNSMODE:
2283 + *val = session->lns_mode;
2284 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2285 + "%s: get lns_mode=%d\n", session->name, *val);
2288 + case PPPOL2TP_SO_DEBUG:
2289 + *val = session->debug;
2290 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2291 + "%s: get debug=%d\n", session->name, *val);
2294 + case PPPOL2TP_SO_REORDERTO:
2295 + *val = JIFFIES_TO_MS(session->reorder_timeout);
2296 + PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2297 + "%s: get reorder_timeout=%d\n", session->name, *val);
2301 + err = -ENOPROTOOPT;
2307 +/* Main getsockopt() entry point.
2308 + * Does API checks, then calls either the tunnel or session getsockopt
2309 + * handler, according to whether the PPPoX socket is a for a regular session
2310 + * or the special tunnel type.
2312 +static int pppol2tp_getsockopt(struct socket *sock, int level,
2313 + int optname, char *optval, int *optlen)
2315 + struct sock *sk = sock->sk;
2316 + struct pppol2tp_session *session = sk->user_data;
2317 + struct pppol2tp_tunnel *tunnel;
2321 + if (level != SOL_PPPOL2TP)
2322 + return udp_prot.getsockopt(sk, level, optname, optval, optlen);
2324 + if (get_user(len,optlen))
2327 + len = min_t(unsigned int, len, sizeof(int));
2332 + if (sk->user_data == NULL) {
2334 + DPRINTK(-1, "getsockopt: socket %p not connected.\n", sk);
2338 + /* Get the session and tunnel contexts */
2339 + SOCK_2_SESSION(sk, session, err, -EBADF, end, 0);
2340 + SOCK_2_TUNNEL(session->tunnel_sock, tunnel, err, -EBADF, end, 1);
2342 + /* Special case: if session_id == 0x0000, treat as operation on tunnel */
2343 + if ((session->tunnel_addr.s_session == 0) &&
2344 + (session->tunnel_addr.d_session == 0))
2345 + err = pppol2tp_tunnel_getsockopt(sk,tunnel, optname, &val);
2347 + err = pppol2tp_session_getsockopt(sk,session, optname, &val);
2349 + if (put_user(len, optlen))
2352 + if (copy_to_user(optval, &val, len))
2359 +/*****************************************************************************
2360 + * /proc filesystem for debug
2361 + *****************************************************************************/
2363 +#ifdef CONFIG_PROC_FS
2365 +#include <linux/seq_file.h>
2367 +static int pppol2tp_proc_open(struct inode *inode, struct file *file);
2368 +static void *pppol2tp_proc_start(struct seq_file *m, loff_t *_pos);
2369 +static void *pppol2tp_proc_next(struct seq_file *p, void *v, loff_t *pos);
2370 +static void pppol2tp_proc_stop(struct seq_file *p, void *v);
2371 +static int pppol2tp_proc_show(struct seq_file *m, void *v);
2373 +static struct proc_dir_entry *pppol2tp_proc;
2375 +static struct seq_operations pppol2tp_proc_ops = {
2376 + .start = pppol2tp_proc_start,
2377 + .next = pppol2tp_proc_next,
2378 + .stop = pppol2tp_proc_stop,
2379 + .show = pppol2tp_proc_show,
2382 +static struct file_operations pppol2tp_proc_fops = {
2383 + .open = pppol2tp_proc_open,
2385 + .llseek = seq_lseek,
2386 + .release = seq_release,
2390 +#if (LINUX_VERSION_CODE < KERNEL_VERSION(2,4,26))
2391 +static inline struct proc_dir_entry *PDE(const struct inode *inode)
2393 + return (struct proc_dir_entry *)inode->u.generic_ip;
2397 +static int pppol2tp_proc_open(struct inode *inode, struct file *file)
2399 + struct seq_file *m;
2403 + ret = seq_open(file, &pppol2tp_proc_ops);
2407 + m = file->private_data;
2408 + m->private = PDE(inode)->data;
2415 +static void *pppol2tp_proc_start(struct seq_file *m, loff_t *_pos)
2417 + struct pppol2tp_tunnel *tunnel = NULL;
2418 + loff_t pos = *_pos;
2419 + struct list_head *walk;
2420 + struct list_head *tmp;
2424 + /* allow for the header line */
2426 + tunnel = (void *)1;
2431 + /* find the n'th element in the list */
2432 + list_for_each_safe(walk, tmp, &pppol2tp_tunnel_list) {
2433 + tunnel = list_entry(walk, struct pppol2tp_tunnel, list);
2435 + sock_hold(tunnel->sock);
2447 +static void *pppol2tp_proc_next(struct seq_file *p, void *v, loff_t *pos)
2449 + struct pppol2tp_tunnel *tunnel = v;
2450 + struct list_head *tmp;
2451 + struct list_head *list;
2457 + if (v == (void *)1)
2458 + list = &pppol2tp_tunnel_list;
2460 + list = &tunnel->list;
2463 + if (tmp == &pppol2tp_tunnel_list)
2466 + tunnel = list_entry(tmp, struct pppol2tp_tunnel, list);
2473 +static void pppol2tp_proc_stop(struct seq_file *p, void *v)
2475 + struct pppol2tp_tunnel *tunnel = v;
2479 + if (tunnel != NULL)
2480 + sock_put(tunnel->sock);
2485 +static int pppol2tp_proc_show(struct seq_file *m, void *v)
2487 + struct pppol2tp_tunnel *tunnel = v;
2488 + struct pppol2tp_session *session;
2489 + struct hlist_node *walk;
2490 + struct hlist_node *tmp;
2495 + /* display header on line 1 */
2496 + if (v == (void *)1) {
2497 + seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
2498 + seq_puts(m, "TUNNEL name, user-data-ok "
2499 + "session-count magic-ok\n");
2500 + seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2501 + seq_puts(m, " SESSION name, addr/port src-tid/sid "
2502 + "dest-tid/sid state user-data-ok magic-ok\n");
2503 + seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
2504 + seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2508 + seq_printf(m, "TUNNEL '%s', %c %d MAGIC %s\n",
2510 + (tunnel == tunnel->sock->user_data) ? 'Y':'N',
2511 + atomic_read(&tunnel->session_count),
2512 + (tunnel->magic == L2TP_TUNNEL_MAGIC) ? "OK" : "BAD");
2513 + seq_printf(m, " %08x %llu/%llu/%llu %llu/%llu/%llu\n",
2515 + tunnel->stats.tx_packets, tunnel->stats.tx_bytes,
2516 + tunnel->stats.tx_errors,
2517 + tunnel->stats.rx_packets, tunnel->stats.rx_bytes,
2518 + tunnel->stats.rx_errors);
2520 + if (tunnel->magic != L2TP_TUNNEL_MAGIC) {
2521 + seq_puts(m, "*** Aborting ***\n");
2525 + for (i = 0; i < PPPOL2TP_HASH_SIZE; i++) {
2526 + hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[i]) {
2527 + session = hlist_entry(walk, struct pppol2tp_session, hlist);
2528 + seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
2529 + "%04X/%04X %d %c MAGIC %s\n",
2531 + htonl(session->tunnel_addr.addr.sin_addr.s_addr),
2532 + htons(session->tunnel_addr.addr.sin_port),
2533 + session->tunnel_addr.s_tunnel,
2534 + session->tunnel_addr.s_session,
2535 + session->tunnel_addr.d_tunnel,
2536 + session->tunnel_addr.d_session,
2537 + session->sock->state,
2538 + (session == session->sock->user_data) ?
2540 + (session->magic == L2TP_SESSION_MAGIC) ?
2543 + seq_printf(m, " %d/%d/%c/%c/%s %08x %d\n",
2544 + session->mtu, session->mru,
2545 + session->recv_seq ? 'R' : '-',
2546 + session->send_seq ? 'S' : '-',
2547 + session->lns_mode ? "LNS" : "LAC",
2549 + JIFFIES_TO_MS(session->reorder_timeout));
2550 + seq_printf(m, " %hu/%hu %llu/%llu/%llu %llu/%llu/%llu\n",
2551 + session->nr, session->ns,
2552 + session->stats.tx_packets,
2553 + session->stats.tx_bytes,
2554 + session->stats.tx_errors,
2555 + session->stats.rx_packets,
2556 + session->stats.rx_bytes,
2557 + session->stats.rx_errors);
2559 + if (session->magic != L2TP_SESSION_MAGIC) {
2560 + seq_puts(m, "*** Aborting ***\n");
2566 + seq_puts(m, "\n");
2573 +#endif /* CONFIG_PROC_FS */
2575 +/*****************************************************************************
2576 + * Init and cleanup
2577 + *****************************************************************************/
2579 +static struct proto_ops pppol2tp_ops = {
2580 + .family = AF_PPPOX,
2581 + .release = pppol2tp_release,
2582 + .bind = sock_no_bind,
2583 + .connect = pppol2tp_connect,
2584 + .socketpair = sock_no_socketpair,
2585 + .accept = sock_no_accept,
2586 + .getname = pppol2tp_getname,
2587 + .poll = datagram_poll,
2588 + .listen = sock_no_listen,
2589 + .shutdown = sock_no_shutdown,
2590 + .setsockopt = pppol2tp_setsockopt,
2591 + .getsockopt = pppol2tp_getsockopt,
2592 + .sendmsg = pppol2tp_sendmsg,
2593 + .recvmsg = pppol2tp_recvmsg,
2594 + .mmap = sock_no_mmap
2597 +struct pppox_proto pppol2tp_proto = {
2598 + .create = pppol2tp_create,
2599 + .ioctl = pppol2tp_ioctl
2602 +int __init pppol2tp_init(void)
2604 + int err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
2607 +#ifdef CONFIG_PROC_FS
2608 + pppol2tp_proc = create_proc_entry("pppol2tp", 0, proc_net);
2609 + if (!pppol2tp_proc) {
2612 + pppol2tp_proc->owner = THIS_MODULE;
2613 + pppol2tp_proc->proc_fops = &pppol2tp_proc_fops;
2614 +#endif /* CONFIG_PROC_FS */
2615 + printk(KERN_INFO "PPPoL2TP kernel driver, %s\n",
2616 + PPPOL2TP_DRV_VERSION);
2622 +void __exit pppol2tp_exit(void)
2624 + unregister_pppox_proto(PX_PROTO_OL2TP);
2625 +#ifdef CONFIG_PROC_FS
2626 + remove_proc_entry("pppol2tp", proc_net);
2628 +#ifdef DEBUG_MOD_USE_COUNT
2629 + printk(KERN_DEBUG "%s: module use_count is %d\n", __FUNCTION__, mod_use_count);
2633 +module_init(pppol2tp_init);
2634 +module_exit(pppol2tp_exit);
2636 +MODULE_AUTHOR("Martijn van Oosterhout <kleptog@svana.org>");
2637 +MODULE_DESCRIPTION("PPP over L2TP over UDP, " PPPOL2TP_DRV_VERSION);
2638 +MODULE_LICENSE("GPL");
2639 Index: linux-2.4.27-l2tp/drivers/net/pppox.c
2640 ===================================================================
2641 --- linux-2.4.27-l2tp.orig/drivers/net/pppox.c
2642 +++ linux-2.4.27-l2tp/drivers/net/pppox.c
2643 @@ -121,10 +121,17 @@ static int pppox_create(struct socket *s
2646 if (protocol < 0 || protocol > PX_MAX_PROTO)
2647 - return -EPROTOTYPE;
2648 + return -EPROTOTYPE;
2651 + if (proto[protocol] == NULL) {
2653 + sprintf(buffer, "pppox-proto-%d", protocol);
2654 + request_module(buffer);
2657 if (proto[protocol] == NULL)
2658 - return -EPROTONOSUPPORT;
2659 + return -EPROTONOSUPPORT;
2661 err = (*proto[protocol]->create)(sock);
2663 Index: linux-2.4.27-l2tp/include/linux/hash.h
2664 ===================================================================
2666 +++ linux-2.4.27-l2tp/include/linux/hash.h
2668 +#ifndef _LINUX_HASH_H
2669 +#define _LINUX_HASH_H
2670 +/* Fast hashing routine for a long.
2671 + (C) 2002 William Lee Irwin III, IBM */
2674 + * Knuth recommends primes in approximately golden ratio to the maximum
2675 + * integer representable by a machine word for multiplicative hashing.
2676 + * Chuck Lever verified the effectiveness of this technique:
2677 + * http://www.citi.umich.edu/techreports/reports/citi-tr-00-1.pdf
2679 + * These primes are chosen to be bit-sparse, that is operations on
2680 + * them can use shifts and additions instead of multiplications for
2681 + * machines where multiplications are slow.
2683 +#if BITS_PER_LONG == 32
2684 +/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
2685 +#define GOLDEN_RATIO_PRIME 0x9e370001UL
2686 +#elif BITS_PER_LONG == 64
2687 +/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
2688 +#define GOLDEN_RATIO_PRIME 0x9e37fffffffc0001UL
2690 +#error Define GOLDEN_RATIO_PRIME for your wordsize.
2693 +static inline unsigned long hash_long(unsigned long val, unsigned int bits)
2695 + unsigned long hash = val;
2697 +#if BITS_PER_LONG == 64
2698 + /* Sigh, gcc can't optimise this alone like it does for 32 bits. */
2699 + unsigned long n = hash;
2713 + /* On some cpus multiply is faster, on others gcc will do shifts */
2714 + hash *= GOLDEN_RATIO_PRIME;
2717 + /* High bits are more random, so use them. */
2718 + return hash >> (BITS_PER_LONG - bits);
2721 +static inline unsigned long hash_ptr(void *ptr, unsigned int bits)
2723 + return hash_long((unsigned long)ptr, bits);
2725 +#endif /* _LINUX_HASH_H */
2726 Index: linux-2.4.27-l2tp/include/linux/if_ppp.h
2727 ===================================================================
2728 --- linux-2.4.27-l2tp.orig/include/linux/if_ppp.h
2729 +++ linux-2.4.27-l2tp/include/linux/if_ppp.h
2730 @@ -107,6 +107,21 @@ struct ifpppcstatsreq {
2731 struct ppp_comp_stats stats;
2734 +/* For PPPIOCGL2TPSTATS */
2735 +struct pppol2tp_ioc_stats {
2736 + __u16 tunnel_id; /* redundant */
2737 + __u16 session_id; /* if zero, get tunnel stats */
2743 + __u64 rx_seq_discards;
2744 + __u64 rx_oos_packets;
2746 + int using_ipsec; /* valid only for session_id == 0 */
2749 #define ifr__name b.ifr_ifrn.ifrn_name
2750 #define stats_ptr b.ifr_ifru.ifru_data
2752 @@ -143,6 +158,7 @@ struct ifpppcstatsreq {
2753 #define PPPIOCDISCONN _IO('t', 57) /* disconnect channel */
2754 #define PPPIOCATTCHAN _IOW('t', 56, int) /* attach to ppp channel */
2755 #define PPPIOCGCHAN _IOR('t', 55, int) /* get ppp channel number */
2756 +#define PPPIOCGL2TPSTATS _IOR('t', 54, struct pppol2tp_ioc_stats)
2758 #define SIOCGPPPSTATS (SIOCDEVPRIVATE + 0)
2759 #define SIOCGPPPVER (SIOCDEVPRIVATE + 1) /* NEVER change this!! */
2760 Index: linux-2.4.27-l2tp/include/linux/if_pppol2tp.h
2761 ===================================================================
2763 +++ linux-2.4.27-l2tp/include/linux/if_pppol2tp.h
2765 +/***************************************************************************
2766 + * Linux PPP over L2TP (PPPoL2TP) Socket Implementation (RFC 2661)
2768 + * This file supplies definitions required by the PPP over L2TP driver
2769 + * (pppol2tp.c). All version information wrt this file is located in pppol2tp.c
2772 + * This program is free software; you can redistribute it and/or
2773 + * modify it under the terms of the GNU General Public License
2774 + * as published by the Free Software Foundation; either version
2775 + * 2 of the License, or (at your option) any later version.
2779 +#ifndef __LINUX_IF_PPPOL2TP_H
2780 +#define __LINUX_IF_PPPOL2TP_H
2782 +#include <asm/types.h>
2785 +#include <linux/in.h>
2788 +/* Structure used to bind() the socket to a particular socket & tunnel */
2789 +struct pppol2tp_addr
2791 + pid_t pid; /* pid that owns the fd.
2793 + int fd; /* FD of UDP socket to use */
2795 + struct sockaddr_in addr; /* IP address and port to send to */
2797 + __u16 s_tunnel, s_session; /* For matching incoming packets */
2798 + __u16 d_tunnel, d_session; /* For sending outgoing packets */
2802 + * DEBUG - bitmask of debug message categories
2803 + * SENDSEQ - 0 => don't send packets with sequence numbers
2804 + * 1 => send packets with sequence numbers
2805 + * RECVSEQ - 0 => receive packet sequence numbers are optional
2806 + * 1 => drop receive packets without sequence numbers
2807 + * LNSMODE - 0 => act as LAC.
2808 + * 1 => act as LNS.
2809 + * REORDERTO - reorder timeout (in millisecs). If 0, don't try to reorder.
2812 + PPPOL2TP_SO_DEBUG = 1,
2813 + PPPOL2TP_SO_RECVSEQ = 2,
2814 + PPPOL2TP_SO_SENDSEQ = 3,
2815 + PPPOL2TP_SO_LNSMODE = 4,
2816 + PPPOL2TP_SO_REORDERTO = 5,
2819 +/* Debug message categories for the DEBUG socket option */
2821 + PPPOL2TP_MSG_DEBUG = (1 << 0), /* verbose debug (if
2823 + PPPOL2TP_MSG_CONTROL = (1 << 1), /* userspace - kernel
2825 + PPPOL2TP_MSG_SEQ = (1 << 2), /* sequence numbers */
2826 + PPPOL2TP_MSG_DATA = (1 << 3), /* data packets */
2832 Index: linux-2.4.27-l2tp/include/linux/if_pppox.h
2833 ===================================================================
2834 --- linux-2.4.27-l2tp.orig/include/linux/if_pppox.h
2835 +++ linux-2.4.27-l2tp/include/linux/if_pppox.h
2837 /***************************************************************************
2838 * Linux PPP over X - Generic PPP transport layer sockets
2839 - * Linux PPP over Ethernet (PPPoE) Socket Implementation (RFC 2516)
2840 + * Linux PPP over Ethernet (PPPoE) Socket Implementation (RFC 2516)
2842 * This file supplies definitions required by the PPP over Ethernet driver
2843 * (pppox.c). All version information wrt this file is located in pppox.c
2845 #include <asm/semaphore.h>
2846 #include <linux/ppp_channel.h>
2847 #endif /* __KERNEL__ */
2848 +#include <linux/if_pppol2tp.h>
2850 /* For user-space programs to pick up these definitions
2851 * which they wouldn't get otherwise without defining __KERNEL__
2853 #define PF_PPPOX AF_PPPOX
2854 #endif /* !(AF_PPPOX) */
2856 -/************************************************************************
2857 - * PPPoE addressing definition
2859 -typedef __u16 sid_t;
2861 - sid_t sid; /* Session identifier */
2862 - unsigned char remote[ETH_ALEN]; /* Remote address */
2863 - char dev[IFNAMSIZ]; /* Local device to use */
2866 -/************************************************************************
2867 - * Protocols supported by AF_PPPOX
2869 +/************************************************************************
2870 + * PPPoE addressing definition
2872 +typedef __u16 sid_t;
2874 + sid_t sid; /* Session identifier */
2875 + unsigned char remote[ETH_ALEN]; /* Remote address */
2876 + char dev[IFNAMSIZ]; /* Local device to use */
2879 +/************************************************************************
2880 + * Protocols supported by AF_PPPOX
2882 #define PX_PROTO_OE 0 /* Currently just PPPoE */
2883 -#define PX_MAX_PROTO 1
2885 -struct sockaddr_pppox {
2886 - sa_family_t sa_family; /* address family, AF_PPPOX */
2887 - unsigned int sa_protocol; /* protocol identifier */
2889 - struct pppoe_addr pppoe;
2891 -}__attribute__ ((packed));
2892 +#define PX_PROTO_OL2TP 1 /* Now L2TP also */
2893 +#define PX_MAX_PROTO 2
2895 +/* The use of a union isn't viable because the size of this struct
2896 + * must stay fixed over time -- applications use sizeof(struct
2897 + * sockaddr_pppox) to fill it. Use protocol specific sockaddr types
2900 +struct sockaddr_pppox {
2901 + sa_family_t sa_family; /* address family, AF_PPPOX */
2902 + unsigned int sa_protocol; /* protocol identifier */
2904 + struct pppoe_addr pppoe;
2906 +}__attribute__ ((packed)); /* deprecated */
2908 +/* Must be binary-compatible with sockaddr_pppox for backwards compatabilty */
2909 +struct sockaddr_pppoe {
2910 + sa_family_t sa_family; /* address family, AF_PPPOX */
2911 + unsigned int sa_protocol; /* protocol identifier */
2912 + struct pppoe_addr pppoe;
2913 +}__attribute__ ((packed));
2915 +struct sockaddr_pppol2tp {
2916 + sa_family_t sa_family; /* address family, AF_PPPOX */
2917 + unsigned int sa_protocol; /* protocol identifier */
2918 + struct pppol2tp_addr pppol2tp;
2919 +}__attribute__ ((packed));
2921 /*********************************************************************
2923 Index: linux-2.4.27-l2tp/include/linux/list.h
2924 ===================================================================
2925 --- linux-2.4.27-l2tp.orig/include/linux/list.h
2926 +++ linux-2.4.27-l2tp/include/linux/list.h
2929 #if defined(__KERNEL__) || defined(_LVM_H_INCLUDE)
2931 +#include <linux/stddef.h>
2932 #include <linux/prefetch.h>
2933 +#include <asm/system.h>
2936 * Simple doubly linked list implementation.
2937 @@ -254,6 +256,159 @@ static inline void list_splice_init(stru
2938 pos = list_entry(pos->member.next, typeof(*pos), member), \
2939 prefetch(pos->member.next))
2942 + * These are non-NULL pointers that will result in page faults
2943 + * under normal circumstances, used to verify that nobody uses
2944 + * non-initialized list entries.
2946 +#define LIST_POISON1 ((void *) 0x00100100)
2947 +#define LIST_POISON2 ((void *) 0x00200200)
2950 + * Double linked lists with a single pointer list head.
2951 + * Mostly useful for hash tables where the two pointer list head is
2953 + * You lose the ability to access the tail in O(1).
2956 +struct hlist_head {
2957 + struct hlist_node *first;
2960 +struct hlist_node {
2961 + struct hlist_node *next, **pprev;
2964 +#define HLIST_HEAD_INIT { .first = NULL }
2965 +#define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
2966 +#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
2967 +#define INIT_HLIST_NODE(ptr) ((ptr)->next = NULL, (ptr)->pprev = NULL)
2969 +static inline int hlist_unhashed(const struct hlist_node *h)
2974 +static inline int hlist_empty(const struct hlist_head *h)
2979 +static inline void __hlist_del(struct hlist_node *n)
2981 + struct hlist_node *next = n->next;
2982 + struct hlist_node **pprev = n->pprev;
2985 + next->pprev = pprev;
2988 +static inline void hlist_del(struct hlist_node *n)
2991 + n->next = LIST_POISON1;
2992 + n->pprev = LIST_POISON2;
2995 +static inline void hlist_del_init(struct hlist_node *n)
2999 + INIT_HLIST_NODE(n);
3003 +static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
3005 + struct hlist_node *first = h->first;
3008 + first->pprev = &n->next;
3010 + n->pprev = &h->first;
3013 +/* next must be != NULL */
3014 +static inline void hlist_add_before(struct hlist_node *n,
3015 + struct hlist_node *next)
3017 + n->pprev = next->pprev;
3019 + next->pprev = &n->next;
3023 +static inline void hlist_add_after(struct hlist_node *n,
3024 + struct hlist_node *next)
3026 + next->next = n->next;
3028 + next->pprev = &n->next;
3031 + next->next->pprev = &next->next;
3034 +#define hlist_entry(ptr, type, member) container_of(ptr,type,member)
3036 +#define hlist_for_each(pos, head) \
3037 + for (pos = (head)->first; pos && ({ prefetch(pos->next); 1; }); \
3040 +#define hlist_for_each_safe(pos, n, head) \
3041 + for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
3045 + * hlist_for_each_entry - iterate over list of given type
3046 + * @tpos: the type * to use as a loop counter.
3047 + * @pos: the &struct hlist_node to use as a loop counter.
3048 + * @head: the head for your list.
3049 + * @member: the name of the hlist_node within the struct.
3051 +#define hlist_for_each_entry(tpos, pos, head, member) \
3052 + for (pos = (head)->first; \
3053 + pos && ({ prefetch(pos->next); 1;}) && \
3054 + ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
3058 + * hlist_for_each_entry_continue - iterate over a hlist continuing after existing point
3059 + * @tpos: the type * to use as a loop counter.
3060 + * @pos: the &struct hlist_node to use as a loop counter.
3061 + * @member: the name of the hlist_node within the struct.
3063 +#define hlist_for_each_entry_continue(tpos, pos, member) \
3064 + for (pos = (pos)->next; \
3065 + pos && ({ prefetch(pos->next); 1;}) && \
3066 + ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
3070 + * hlist_for_each_entry_from - iterate over a hlist continuing from existing point
3071 + * @tpos: the type * to use as a loop counter.
3072 + * @pos: the &struct hlist_node to use as a loop counter.
3073 + * @member: the name of the hlist_node within the struct.
3075 +#define hlist_for_each_entry_from(tpos, pos, member) \
3076 + for (; pos && ({ prefetch(pos->next); 1;}) && \
3077 + ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
3081 + * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
3082 + * @tpos: the type * to use as a loop counter.
3083 + * @pos: the &struct hlist_node to use as a loop counter.
3084 + * @n: another &struct hlist_node to use as temporary storage
3085 + * @head: the head for your list.
3086 + * @member: the name of the hlist_node within the struct.
3088 +#define hlist_for_each_entry_safe(tpos, pos, n, head, member) \
3089 + for (pos = (head)->first; \
3090 + pos && ({ n = pos->next; 1; }) && \
3091 + ({ tpos = hlist_entry(pos, typeof(*tpos), member); 1;}); \
3094 #endif /* __KERNEL__ || _LVM_H_INCLUDE */
3097 Index: linux-2.4.27-l2tp/include/linux/socket.h
3098 ===================================================================
3099 --- linux-2.4.27-l2tp.orig/include/linux/socket.h
3100 +++ linux-2.4.27-l2tp/include/linux/socket.h
3101 @@ -259,6 +259,7 @@ struct ucred {
3102 #define SOL_IRDA 266
3103 #define SOL_NETBEUI 267
3105 +#define SOL_PPPOL2TP 269