drivers/char/Kconfig: don't mess it up for everyone else
[linux-2.6.32.60-moxart.git] / drivers / net / pppol2tp.c
blob92359019991af5aa91497a322852dc16653d635a
1 /*****************************************************************************
2 * Linux PPP over L2TP (PPPoX/PPPoL2TP) Sockets
4 * PPPoX --- Generic PPP encapsulation socket family
5 * PPPoL2TP --- PPP over L2TP (RFC 2661)
7 * Version: 1.0.0
9 * Authors: Martijn van Oosterhout <kleptog@svana.org>
10 * James Chapman (jchapman@katalix.com)
11 * Contributors:
12 * Michal Ostrowski <mostrows@speakeasy.net>
13 * Arnaldo Carvalho de Melo <acme@xconectiva.com.br>
14 * David S. Miller (davem@redhat.com)
16 * License:
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;
40 * int fd;
41 * int session_fd;
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/string.h>
65 #include <linux/list.h>
66 #include <asm/uaccess.h>
68 #include <linux/kernel.h>
69 #include <linux/spinlock.h>
70 #include <linux/kthread.h>
71 #include <linux/sched.h>
72 #include <linux/slab.h>
73 #include <linux/errno.h>
74 #include <linux/jiffies.h>
76 #include <linux/netdevice.h>
77 #include <linux/net.h>
78 #include <linux/inetdevice.h>
79 #include <linux/skbuff.h>
80 #include <linux/init.h>
81 #include <linux/ip.h>
82 #include <linux/udp.h>
83 #include <linux/if_pppox.h>
84 #include <linux/if_pppol2tp.h>
85 #include <net/sock.h>
86 #include <linux/ppp_channel.h>
87 #include <linux/ppp_defs.h>
88 #include <linux/if_ppp.h>
89 #include <linux/file.h>
90 #include <linux/hash.h>
91 #include <linux/sort.h>
92 #include <linux/proc_fs.h>
93 #include <linux/nsproxy.h>
94 #include <net/net_namespace.h>
95 #include <net/netns/generic.h>
96 #include <net/dst.h>
97 #include <net/ip.h>
98 #include <net/udp.h>
99 #include <net/xfrm.h>
101 #include <asm/byteorder.h>
102 #include <asm/atomic.h>
105 #define PPPOL2TP_DRV_VERSION "V1.0"
107 /* L2TP header constants */
108 #define L2TP_HDRFLAG_T 0x8000
109 #define L2TP_HDRFLAG_L 0x4000
110 #define L2TP_HDRFLAG_S 0x0800
111 #define L2TP_HDRFLAG_O 0x0200
112 #define L2TP_HDRFLAG_P 0x0100
114 #define L2TP_HDR_VER_MASK 0x000F
115 #define L2TP_HDR_VER 0x0002
117 /* Space for UDP, L2TP and PPP headers */
118 #define PPPOL2TP_HEADER_OVERHEAD 40
120 /* Just some random numbers */
121 #define L2TP_TUNNEL_MAGIC 0x42114DDA
122 #define L2TP_SESSION_MAGIC 0x0C04EB7D
124 #define PPPOL2TP_HASH_BITS 4
125 #define PPPOL2TP_HASH_SIZE (1 << PPPOL2TP_HASH_BITS)
127 /* Default trace flags */
128 #define PPPOL2TP_DEFAULT_DEBUG_FLAGS 0
130 #define PRINTK(_mask, _type, _lvl, _fmt, args...) \
131 do { \
132 if ((_mask) & (_type)) \
133 printk(_lvl "PPPOL2TP: " _fmt, ##args); \
134 } while(0)
136 /* Number of bytes to build transmit L2TP headers.
137 * Unfortunately the size is different depending on whether sequence numbers
138 * are enabled.
140 #define PPPOL2TP_L2TP_HDR_SIZE_SEQ 10
141 #define PPPOL2TP_L2TP_HDR_SIZE_NOSEQ 6
143 struct pppol2tp_tunnel;
145 /* Describes a session. It is the sk_user_data field in the PPPoL2TP
146 * socket. Contains information to determine incoming packets and transmit
147 * outgoing ones.
149 struct pppol2tp_session
151 int magic; /* should be
152 * L2TP_SESSION_MAGIC */
153 int owner; /* pid that opened the socket */
155 struct sock *sock; /* Pointer to the session
156 * PPPoX socket */
157 struct sock *tunnel_sock; /* Pointer to the tunnel UDP
158 * socket */
160 struct pppol2tp_addr tunnel_addr; /* Description of tunnel */
162 struct pppol2tp_tunnel *tunnel; /* back pointer to tunnel
163 * context */
165 char name[20]; /* "sess xxxxx/yyyyy", where
166 * x=tunnel_id, y=session_id */
167 int mtu;
168 int mru;
169 int flags; /* accessed by PPPIOCGFLAGS.
170 * Unused. */
171 unsigned recv_seq:1; /* expect receive packets with
172 * sequence numbers? */
173 unsigned send_seq:1; /* send packets with sequence
174 * numbers? */
175 unsigned lns_mode:1; /* behave as LNS? LAC enables
176 * sequence numbers under
177 * control of LNS. */
178 int debug; /* bitmask of debug message
179 * categories */
180 int reorder_timeout; /* configured reorder timeout
181 * (in jiffies) */
182 u16 nr; /* session NR state (receive) */
183 u16 ns; /* session NR state (send) */
184 struct sk_buff_head reorder_q; /* receive reorder queue */
185 struct pppol2tp_ioc_stats stats;
186 struct hlist_node hlist; /* Hash list node */
189 /* The sk_user_data field of the tunnel's UDP socket. It contains info to track
190 * all the associated sessions so incoming packets can be sorted out
192 struct pppol2tp_tunnel
194 int magic; /* Should be L2TP_TUNNEL_MAGIC */
195 rwlock_t hlist_lock; /* protect session_hlist */
196 struct hlist_head session_hlist[PPPOL2TP_HASH_SIZE];
197 /* hashed list of sessions,
198 * hashed by id */
199 int debug; /* bitmask of debug message
200 * categories */
201 char name[12]; /* "tunl xxxxx" */
202 struct pppol2tp_ioc_stats stats;
204 void (*old_sk_destruct)(struct sock *);
206 struct sock *sock; /* Parent socket */
207 struct list_head list; /* Keep a list of all open
208 * prepared sockets */
209 struct net *pppol2tp_net; /* the net we belong to */
211 atomic_t ref_count;
214 /* Private data stored for received packets in the skb.
216 struct pppol2tp_skb_cb {
217 u16 ns;
218 u16 nr;
219 u16 has_seq;
220 u16 length;
221 unsigned long expires;
224 #define PPPOL2TP_SKB_CB(skb) ((struct pppol2tp_skb_cb *) &skb->cb[sizeof(struct inet_skb_parm)])
226 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb);
227 static void pppol2tp_tunnel_free(struct pppol2tp_tunnel *tunnel);
229 static atomic_t pppol2tp_tunnel_count;
230 static atomic_t pppol2tp_session_count;
231 static struct ppp_channel_ops pppol2tp_chan_ops = { pppol2tp_xmit , NULL };
232 static const struct proto_ops pppol2tp_ops;
234 /* per-net private data for this module */
235 static int pppol2tp_net_id;
236 struct pppol2tp_net {
237 struct list_head pppol2tp_tunnel_list;
238 rwlock_t pppol2tp_tunnel_list_lock;
241 static inline struct pppol2tp_net *pppol2tp_pernet(struct net *net)
243 BUG_ON(!net);
245 return net_generic(net, pppol2tp_net_id);
248 /* Helpers to obtain tunnel/session contexts from sockets.
250 static inline struct pppol2tp_session *pppol2tp_sock_to_session(struct sock *sk)
252 struct pppol2tp_session *session;
254 if (sk == NULL)
255 return NULL;
257 sock_hold(sk);
258 session = (struct pppol2tp_session *)(sk->sk_user_data);
259 if (session == NULL) {
260 sock_put(sk);
261 goto out;
264 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
265 out:
266 return session;
269 static inline struct pppol2tp_tunnel *pppol2tp_sock_to_tunnel(struct sock *sk)
271 struct pppol2tp_tunnel *tunnel;
273 if (sk == NULL)
274 return NULL;
276 sock_hold(sk);
277 tunnel = (struct pppol2tp_tunnel *)(sk->sk_user_data);
278 if (tunnel == NULL) {
279 sock_put(sk);
280 goto out;
283 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
284 out:
285 return tunnel;
288 /* Tunnel reference counts. Incremented per session that is added to
289 * the tunnel.
291 static inline void pppol2tp_tunnel_inc_refcount(struct pppol2tp_tunnel *tunnel)
293 atomic_inc(&tunnel->ref_count);
296 static inline void pppol2tp_tunnel_dec_refcount(struct pppol2tp_tunnel *tunnel)
298 if (atomic_dec_and_test(&tunnel->ref_count))
299 pppol2tp_tunnel_free(tunnel);
302 /* Session hash list.
303 * The session_id SHOULD be random according to RFC2661, but several
304 * L2TP implementations (Cisco and Microsoft) use incrementing
305 * session_ids. So we do a real hash on the session_id, rather than a
306 * simple bitmask.
308 static inline struct hlist_head *
309 pppol2tp_session_id_hash(struct pppol2tp_tunnel *tunnel, u16 session_id)
311 unsigned long hash_val = (unsigned long) session_id;
312 return &tunnel->session_hlist[hash_long(hash_val, PPPOL2TP_HASH_BITS)];
315 /* Lookup a session by id
317 static struct pppol2tp_session *
318 pppol2tp_session_find(struct pppol2tp_tunnel *tunnel, u16 session_id)
320 struct hlist_head *session_list =
321 pppol2tp_session_id_hash(tunnel, session_id);
322 struct pppol2tp_session *session;
323 struct hlist_node *walk;
325 read_lock_bh(&tunnel->hlist_lock);
326 hlist_for_each_entry(session, walk, session_list, hlist) {
327 if (session->tunnel_addr.s_session == session_id) {
328 read_unlock_bh(&tunnel->hlist_lock);
329 return session;
332 read_unlock_bh(&tunnel->hlist_lock);
334 return NULL;
337 /* Lookup a tunnel by id
339 static struct pppol2tp_tunnel *pppol2tp_tunnel_find(struct net *net, u16 tunnel_id)
341 struct pppol2tp_tunnel *tunnel;
342 struct pppol2tp_net *pn = pppol2tp_pernet(net);
344 read_lock_bh(&pn->pppol2tp_tunnel_list_lock);
345 list_for_each_entry(tunnel, &pn->pppol2tp_tunnel_list, list) {
346 if (tunnel->stats.tunnel_id == tunnel_id) {
347 read_unlock_bh(&pn->pppol2tp_tunnel_list_lock);
348 return tunnel;
351 read_unlock_bh(&pn->pppol2tp_tunnel_list_lock);
353 return NULL;
356 /*****************************************************************************
357 * Receive data handling
358 *****************************************************************************/
360 /* Queue a skb in order. We come here only if the skb has an L2TP sequence
361 * number.
363 static void pppol2tp_recv_queue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
365 struct sk_buff *skbp;
366 struct sk_buff *tmp;
367 u16 ns = PPPOL2TP_SKB_CB(skb)->ns;
369 spin_lock_bh(&session->reorder_q.lock);
370 skb_queue_walk_safe(&session->reorder_q, skbp, tmp) {
371 if (PPPOL2TP_SKB_CB(skbp)->ns > ns) {
372 __skb_queue_before(&session->reorder_q, skbp, skb);
373 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
374 "%s: pkt %hu, inserted before %hu, reorder_q len=%d\n",
375 session->name, ns, PPPOL2TP_SKB_CB(skbp)->ns,
376 skb_queue_len(&session->reorder_q));
377 session->stats.rx_oos_packets++;
378 goto out;
382 __skb_queue_tail(&session->reorder_q, skb);
384 out:
385 spin_unlock_bh(&session->reorder_q.lock);
388 /* Dequeue a single skb.
390 static void pppol2tp_recv_dequeue_skb(struct pppol2tp_session *session, struct sk_buff *skb)
392 struct pppol2tp_tunnel *tunnel = session->tunnel;
393 int length = PPPOL2TP_SKB_CB(skb)->length;
394 struct sock *session_sock = NULL;
396 /* We're about to requeue the skb, so return resources
397 * to its current owner (a socket receive buffer).
399 skb_orphan(skb);
401 tunnel->stats.rx_packets++;
402 tunnel->stats.rx_bytes += length;
403 session->stats.rx_packets++;
404 session->stats.rx_bytes += length;
406 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
407 /* Bump our Nr */
408 session->nr++;
409 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
410 "%s: updated nr to %hu\n", session->name, session->nr);
413 /* If the socket is bound, send it in to PPP's input queue. Otherwise
414 * queue it on the session socket.
416 session_sock = session->sock;
417 if (session_sock->sk_state & PPPOX_BOUND) {
418 struct pppox_sock *po;
419 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
420 "%s: recv %d byte data frame, passing to ppp\n",
421 session->name, length);
423 /* We need to forget all info related to the L2TP packet
424 * gathered in the skb as we are going to reuse the same
425 * skb for the inner packet.
426 * Namely we need to:
427 * - reset xfrm (IPSec) information as it applies to
428 * the outer L2TP packet and not to the inner one
429 * - release the dst to force a route lookup on the inner
430 * IP packet since skb->dst currently points to the dst
431 * of the UDP tunnel
432 * - reset netfilter information as it doesn't apply
433 * to the inner packet either
435 secpath_reset(skb);
436 skb_dst_drop(skb);
437 nf_reset(skb);
439 po = pppox_sk(session_sock);
440 ppp_input(&po->chan, skb);
441 } else {
442 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
443 "%s: socket not bound\n", session->name);
445 /* Not bound. Nothing we can do, so discard. */
446 session->stats.rx_errors++;
447 kfree_skb(skb);
450 sock_put(session->sock);
453 /* Dequeue skbs from the session's reorder_q, subject to packet order.
454 * Skbs that have been in the queue for too long are simply discarded.
456 static void pppol2tp_recv_dequeue(struct pppol2tp_session *session)
458 struct sk_buff *skb;
459 struct sk_buff *tmp;
461 /* If the pkt at the head of the queue has the nr that we
462 * expect to send up next, dequeue it and any other
463 * in-sequence packets behind it.
465 spin_lock_bh(&session->reorder_q.lock);
466 skb_queue_walk_safe(&session->reorder_q, skb, tmp) {
467 if (time_after(jiffies, PPPOL2TP_SKB_CB(skb)->expires)) {
468 session->stats.rx_seq_discards++;
469 session->stats.rx_errors++;
470 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
471 "%s: oos pkt %hu len %d discarded (too old), "
472 "waiting for %hu, reorder_q_len=%d\n",
473 session->name, PPPOL2TP_SKB_CB(skb)->ns,
474 PPPOL2TP_SKB_CB(skb)->length, session->nr,
475 skb_queue_len(&session->reorder_q));
476 __skb_unlink(skb, &session->reorder_q);
477 kfree_skb(skb);
478 sock_put(session->sock);
479 continue;
482 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
483 if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
484 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
485 "%s: holding oos pkt %hu len %d, "
486 "waiting for %hu, reorder_q_len=%d\n",
487 session->name, PPPOL2TP_SKB_CB(skb)->ns,
488 PPPOL2TP_SKB_CB(skb)->length, session->nr,
489 skb_queue_len(&session->reorder_q));
490 goto out;
493 __skb_unlink(skb, &session->reorder_q);
495 /* Process the skb. We release the queue lock while we
496 * do so to let other contexts process the queue.
498 spin_unlock_bh(&session->reorder_q.lock);
499 pppol2tp_recv_dequeue_skb(session, skb);
500 spin_lock_bh(&session->reorder_q.lock);
503 out:
504 spin_unlock_bh(&session->reorder_q.lock);
507 static inline int pppol2tp_verify_udp_checksum(struct sock *sk,
508 struct sk_buff *skb)
510 struct udphdr *uh = udp_hdr(skb);
511 u16 ulen = ntohs(uh->len);
512 struct inet_sock *inet;
513 __wsum psum;
515 if (sk->sk_no_check || skb_csum_unnecessary(skb) || !uh->check)
516 return 0;
518 inet = inet_sk(sk);
519 psum = csum_tcpudp_nofold(inet->saddr, inet->daddr, ulen,
520 IPPROTO_UDP, 0);
522 if ((skb->ip_summed == CHECKSUM_COMPLETE) &&
523 !csum_fold(csum_add(psum, skb->csum)))
524 return 0;
526 skb->csum = psum;
528 return __skb_checksum_complete(skb);
531 /* Internal receive frame. Do the real work of receiving an L2TP data frame
532 * here. The skb is not on a list when we get here.
533 * Returns 0 if the packet was a data packet and was successfully passed on.
534 * Returns 1 if the packet was not a good data packet and could not be
535 * forwarded. All such packets are passed up to userspace to deal with.
537 static int pppol2tp_recv_core(struct sock *sock, struct sk_buff *skb)
539 struct pppol2tp_session *session = NULL;
540 struct pppol2tp_tunnel *tunnel;
541 unsigned char *ptr, *optr;
542 u16 hdrflags;
543 u16 tunnel_id, session_id;
544 int length;
545 int offset;
547 tunnel = pppol2tp_sock_to_tunnel(sock);
548 if (tunnel == NULL)
549 goto no_tunnel;
551 if (tunnel->sock && pppol2tp_verify_udp_checksum(tunnel->sock, skb))
552 goto discard_bad_csum;
554 /* UDP always verifies the packet length. */
555 __skb_pull(skb, sizeof(struct udphdr));
557 /* Short packet? */
558 if (!pskb_may_pull(skb, 12)) {
559 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
560 "%s: recv short packet (len=%d)\n", tunnel->name, skb->len);
561 goto error;
564 /* Point to L2TP header */
565 optr = ptr = skb->data;
567 /* Get L2TP header flags */
568 hdrflags = ntohs(*(__be16*)ptr);
570 /* Trace packet contents, if enabled */
571 if (tunnel->debug & PPPOL2TP_MSG_DATA) {
572 length = min(16u, skb->len);
573 if (!pskb_may_pull(skb, length))
574 goto error;
576 printk(KERN_DEBUG "%s: recv: ", tunnel->name);
578 offset = 0;
579 do {
580 printk(" %02X", ptr[offset]);
581 } while (++offset < length);
583 printk("\n");
586 /* Get length of L2TP packet */
587 length = skb->len;
589 /* If type is control packet, it is handled by userspace. */
590 if (hdrflags & L2TP_HDRFLAG_T) {
591 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
592 "%s: recv control packet, len=%d\n", tunnel->name, length);
593 goto error;
596 /* Skip flags */
597 ptr += 2;
599 /* If length is present, skip it */
600 if (hdrflags & L2TP_HDRFLAG_L)
601 ptr += 2;
603 /* Extract tunnel and session ID */
604 tunnel_id = ntohs(*(__be16 *) ptr);
605 ptr += 2;
606 session_id = ntohs(*(__be16 *) ptr);
607 ptr += 2;
609 /* Find the session context */
610 session = pppol2tp_session_find(tunnel, session_id);
611 if (!session) {
612 /* Not found? Pass to userspace to deal with */
613 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_INFO,
614 "%s: no socket found (%hu/%hu). Passing up.\n",
615 tunnel->name, tunnel_id, session_id);
616 goto error;
618 sock_hold(session->sock);
620 /* The ref count on the socket was increased by the above call since
621 * we now hold a pointer to the session. Take care to do sock_put()
622 * when exiting this function from now on...
625 /* Handle the optional sequence numbers. If we are the LAC,
626 * enable/disable sequence numbers under the control of the LNS. If
627 * no sequence numbers present but we were expecting them, discard
628 * frame.
630 if (hdrflags & L2TP_HDRFLAG_S) {
631 u16 ns, nr;
632 ns = ntohs(*(__be16 *) ptr);
633 ptr += 2;
634 nr = ntohs(*(__be16 *) ptr);
635 ptr += 2;
637 /* Received a packet with sequence numbers. If we're the LNS,
638 * check if we sre sending sequence numbers and if not,
639 * configure it so.
641 if ((!session->lns_mode) && (!session->send_seq)) {
642 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
643 "%s: requested to enable seq numbers by LNS\n",
644 session->name);
645 session->send_seq = -1;
648 /* Store L2TP info in the skb */
649 PPPOL2TP_SKB_CB(skb)->ns = ns;
650 PPPOL2TP_SKB_CB(skb)->nr = nr;
651 PPPOL2TP_SKB_CB(skb)->has_seq = 1;
653 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
654 "%s: recv data ns=%hu, nr=%hu, session nr=%hu\n",
655 session->name, ns, nr, session->nr);
656 } else {
657 /* No sequence numbers.
658 * If user has configured mandatory sequence numbers, discard.
660 if (session->recv_seq) {
661 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
662 "%s: recv data has no seq numbers when required. "
663 "Discarding\n", session->name);
664 session->stats.rx_seq_discards++;
665 goto discard;
668 /* If we're the LAC and we're sending sequence numbers, the
669 * LNS has requested that we no longer send sequence numbers.
670 * If we're the LNS and we're sending sequence numbers, the
671 * LAC is broken. Discard the frame.
673 if ((!session->lns_mode) && (session->send_seq)) {
674 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_INFO,
675 "%s: requested to disable seq numbers by LNS\n",
676 session->name);
677 session->send_seq = 0;
678 } else if (session->send_seq) {
679 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_WARNING,
680 "%s: recv data has no seq numbers when required. "
681 "Discarding\n", session->name);
682 session->stats.rx_seq_discards++;
683 goto discard;
686 /* Store L2TP info in the skb */
687 PPPOL2TP_SKB_CB(skb)->has_seq = 0;
690 /* If offset bit set, skip it. */
691 if (hdrflags & L2TP_HDRFLAG_O) {
692 offset = ntohs(*(__be16 *)ptr);
693 ptr += 2 + offset;
696 offset = ptr - optr;
697 if (!pskb_may_pull(skb, offset))
698 goto discard;
700 __skb_pull(skb, offset);
702 /* Skip PPP header, if present. In testing, Microsoft L2TP clients
703 * don't send the PPP header (PPP header compression enabled), but
704 * other clients can include the header. So we cope with both cases
705 * here. The PPP header is always FF03 when using L2TP.
707 * Note that skb->data[] isn't dereferenced from a u16 ptr here since
708 * the field may be unaligned.
710 if (!pskb_may_pull(skb, 2))
711 goto discard;
713 if ((skb->data[0] == 0xff) && (skb->data[1] == 0x03))
714 skb_pull(skb, 2);
716 /* Prepare skb for adding to the session's reorder_q. Hold
717 * packets for max reorder_timeout or 1 second if not
718 * reordering.
720 PPPOL2TP_SKB_CB(skb)->length = length;
721 PPPOL2TP_SKB_CB(skb)->expires = jiffies +
722 (session->reorder_timeout ? session->reorder_timeout : HZ);
724 /* Add packet to the session's receive queue. Reordering is done here, if
725 * enabled. Saved L2TP protocol info is stored in skb->sb[].
727 if (PPPOL2TP_SKB_CB(skb)->has_seq) {
728 if (session->reorder_timeout != 0) {
729 /* Packet reordering enabled. Add skb to session's
730 * reorder queue, in order of ns.
732 pppol2tp_recv_queue_skb(session, skb);
733 } else {
734 /* Packet reordering disabled. Discard out-of-sequence
735 * packets
737 if (PPPOL2TP_SKB_CB(skb)->ns != session->nr) {
738 session->stats.rx_seq_discards++;
739 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
740 "%s: oos pkt %hu len %d discarded, "
741 "waiting for %hu, reorder_q_len=%d\n",
742 session->name, PPPOL2TP_SKB_CB(skb)->ns,
743 PPPOL2TP_SKB_CB(skb)->length, session->nr,
744 skb_queue_len(&session->reorder_q));
745 goto discard;
747 skb_queue_tail(&session->reorder_q, skb);
749 } else {
750 /* No sequence numbers. Add the skb to the tail of the
751 * reorder queue. This ensures that it will be
752 * delivered after all previous sequenced skbs.
754 skb_queue_tail(&session->reorder_q, skb);
757 /* Try to dequeue as many skbs from reorder_q as we can. */
758 pppol2tp_recv_dequeue(session);
759 sock_put(sock);
761 return 0;
763 discard:
764 session->stats.rx_errors++;
765 kfree_skb(skb);
766 sock_put(session->sock);
767 sock_put(sock);
769 return 0;
771 discard_bad_csum:
772 LIMIT_NETDEBUG("%s: UDP: bad checksum\n", tunnel->name);
773 UDP_INC_STATS_USER(&init_net, UDP_MIB_INERRORS, 0);
774 tunnel->stats.rx_errors++;
775 kfree_skb(skb);
776 sock_put(sock);
778 return 0;
780 error:
781 /* Put UDP header back */
782 __skb_push(skb, sizeof(struct udphdr));
783 sock_put(sock);
785 no_tunnel:
786 return 1;
789 /* UDP encapsulation receive handler. See net/ipv4/udp.c.
790 * Return codes:
791 * 0 : success.
792 * <0: error
793 * >0: skb should be passed up to userspace as UDP.
795 static int pppol2tp_udp_encap_recv(struct sock *sk, struct sk_buff *skb)
797 struct pppol2tp_tunnel *tunnel;
799 tunnel = pppol2tp_sock_to_tunnel(sk);
800 if (tunnel == NULL)
801 goto pass_up;
803 PRINTK(tunnel->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
804 "%s: received %d bytes\n", tunnel->name, skb->len);
806 if (pppol2tp_recv_core(sk, skb))
807 goto pass_up_put;
809 sock_put(sk);
810 return 0;
812 pass_up_put:
813 sock_put(sk);
814 pass_up:
815 return 1;
818 /* Receive message. This is the recvmsg for the PPPoL2TP socket.
820 static int pppol2tp_recvmsg(struct kiocb *iocb, struct socket *sock,
821 struct msghdr *msg, size_t len,
822 int flags)
824 int err;
825 struct sk_buff *skb;
826 struct sock *sk = sock->sk;
828 err = -EIO;
829 if (sk->sk_state & PPPOX_BOUND)
830 goto end;
832 msg->msg_namelen = 0;
834 err = 0;
835 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
836 flags & MSG_DONTWAIT, &err);
837 if (!skb)
838 goto end;
840 if (len > skb->len)
841 len = skb->len;
842 else if (len < skb->len)
843 msg->msg_flags |= MSG_TRUNC;
845 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, len);
846 if (likely(err == 0))
847 err = len;
849 kfree_skb(skb);
850 end:
851 return err;
854 /************************************************************************
855 * Transmit handling
856 ***********************************************************************/
858 /* Tell how big L2TP headers are for a particular session. This
859 * depends on whether sequence numbers are being used.
861 static inline int pppol2tp_l2tp_header_len(struct pppol2tp_session *session)
863 if (session->send_seq)
864 return PPPOL2TP_L2TP_HDR_SIZE_SEQ;
866 return PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
869 /* Build an L2TP header for the session into the buffer provided.
871 static void pppol2tp_build_l2tp_header(struct pppol2tp_session *session,
872 void *buf)
874 __be16 *bufp = buf;
875 u16 flags = L2TP_HDR_VER;
877 if (session->send_seq)
878 flags |= L2TP_HDRFLAG_S;
880 /* Setup L2TP header.
881 * FIXME: Can this ever be unaligned? Is direct dereferencing of
882 * 16-bit header fields safe here for all architectures?
884 *bufp++ = htons(flags);
885 *bufp++ = htons(session->tunnel_addr.d_tunnel);
886 *bufp++ = htons(session->tunnel_addr.d_session);
887 if (session->send_seq) {
888 *bufp++ = htons(session->ns);
889 *bufp++ = 0;
890 session->ns++;
891 PRINTK(session->debug, PPPOL2TP_MSG_SEQ, KERN_DEBUG,
892 "%s: updated ns to %hu\n", session->name, session->ns);
896 /* This is the sendmsg for the PPPoL2TP pppol2tp_session socket. We come here
897 * when a user application does a sendmsg() on the session socket. L2TP and
898 * PPP headers must be inserted into the user's data.
900 static int pppol2tp_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr *m,
901 size_t total_len)
903 static const unsigned char ppph[2] = { 0xff, 0x03 };
904 struct sock *sk = sock->sk;
905 struct inet_sock *inet;
906 __wsum csum;
907 struct sk_buff *skb;
908 int error;
909 int hdr_len;
910 struct pppol2tp_session *session;
911 struct pppol2tp_tunnel *tunnel;
912 struct udphdr *uh;
913 unsigned int len;
914 struct sock *sk_tun;
915 u16 udp_len;
917 error = -ENOTCONN;
918 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
919 goto error;
921 /* Get session and tunnel contexts */
922 error = -EBADF;
923 session = pppol2tp_sock_to_session(sk);
924 if (session == NULL)
925 goto error;
927 sk_tun = session->tunnel_sock;
928 tunnel = pppol2tp_sock_to_tunnel(sk_tun);
929 if (tunnel == NULL)
930 goto error_put_sess;
932 /* What header length is configured for this session? */
933 hdr_len = pppol2tp_l2tp_header_len(session);
935 /* Allocate a socket buffer */
936 error = -ENOMEM;
937 skb = sock_wmalloc(sk, NET_SKB_PAD + sizeof(struct iphdr) +
938 sizeof(struct udphdr) + hdr_len +
939 sizeof(ppph) + total_len,
940 0, GFP_KERNEL);
941 if (!skb)
942 goto error_put_sess_tun;
944 /* Reserve space for headers. */
945 skb_reserve(skb, NET_SKB_PAD);
946 skb_reset_network_header(skb);
947 skb_reserve(skb, sizeof(struct iphdr));
948 skb_reset_transport_header(skb);
950 /* Build UDP header */
951 inet = inet_sk(sk_tun);
952 udp_len = hdr_len + sizeof(ppph) + total_len;
953 uh = (struct udphdr *) skb->data;
954 uh->source = inet->sport;
955 uh->dest = inet->dport;
956 uh->len = htons(udp_len);
957 uh->check = 0;
958 skb_put(skb, sizeof(struct udphdr));
960 /* Build L2TP header */
961 pppol2tp_build_l2tp_header(session, skb->data);
962 skb_put(skb, hdr_len);
964 /* Add PPP header */
965 skb->data[0] = ppph[0];
966 skb->data[1] = ppph[1];
967 skb_put(skb, 2);
969 /* Copy user data into skb */
970 error = memcpy_fromiovec(skb->data, m->msg_iov, total_len);
971 if (error < 0) {
972 kfree_skb(skb);
973 goto error_put_sess_tun;
975 skb_put(skb, total_len);
977 /* Calculate UDP checksum if configured to do so */
978 if (sk_tun->sk_no_check == UDP_CSUM_NOXMIT)
979 skb->ip_summed = CHECKSUM_NONE;
980 else if (!(skb_dst(skb)->dev->features & NETIF_F_V4_CSUM)) {
981 skb->ip_summed = CHECKSUM_COMPLETE;
982 csum = skb_checksum(skb, 0, udp_len, 0);
983 uh->check = csum_tcpudp_magic(inet->saddr, inet->daddr,
984 udp_len, IPPROTO_UDP, csum);
985 if (uh->check == 0)
986 uh->check = CSUM_MANGLED_0;
987 } else {
988 skb->ip_summed = CHECKSUM_PARTIAL;
989 skb->csum_start = skb_transport_header(skb) - skb->head;
990 skb->csum_offset = offsetof(struct udphdr, check);
991 uh->check = ~csum_tcpudp_magic(inet->saddr, inet->daddr,
992 udp_len, IPPROTO_UDP, 0);
995 /* Debug */
996 if (session->send_seq)
997 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
998 "%s: send %Zd bytes, ns=%hu\n", session->name,
999 total_len, session->ns - 1);
1000 else
1001 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1002 "%s: send %Zd bytes\n", session->name, total_len);
1004 if (session->debug & PPPOL2TP_MSG_DATA) {
1005 int i;
1006 unsigned char *datap = skb->data;
1008 printk(KERN_DEBUG "%s: xmit:", session->name);
1009 for (i = 0; i < total_len; i++) {
1010 printk(" %02X", *datap++);
1011 if (i == 15) {
1012 printk(" ...");
1013 break;
1016 printk("\n");
1019 /* Queue the packet to IP for output */
1020 len = skb->len;
1021 error = ip_queue_xmit(skb, 1);
1023 /* Update stats */
1024 if (error >= 0) {
1025 tunnel->stats.tx_packets++;
1026 tunnel->stats.tx_bytes += len;
1027 session->stats.tx_packets++;
1028 session->stats.tx_bytes += len;
1029 } else {
1030 tunnel->stats.tx_errors++;
1031 session->stats.tx_errors++;
1034 return error;
1036 error_put_sess_tun:
1037 sock_put(session->tunnel_sock);
1038 error_put_sess:
1039 sock_put(sk);
1040 error:
1041 return error;
1044 /* Automatically called when the skb is freed.
1046 static void pppol2tp_sock_wfree(struct sk_buff *skb)
1048 sock_put(skb->sk);
1051 /* For data skbs that we transmit, we associate with the tunnel socket
1052 * but don't do accounting.
1054 static inline void pppol2tp_skb_set_owner_w(struct sk_buff *skb, struct sock *sk)
1056 sock_hold(sk);
1057 skb->sk = sk;
1058 skb->destructor = pppol2tp_sock_wfree;
1061 /* Transmit function called by generic PPP driver. Sends PPP frame
1062 * over PPPoL2TP socket.
1064 * This is almost the same as pppol2tp_sendmsg(), but rather than
1065 * being called with a msghdr from userspace, it is called with a skb
1066 * from the kernel.
1068 * The supplied skb from ppp doesn't have enough headroom for the
1069 * insertion of L2TP, UDP and IP headers so we need to allocate more
1070 * headroom in the skb. This will create a cloned skb. But we must be
1071 * careful in the error case because the caller will expect to free
1072 * the skb it supplied, not our cloned skb. So we take care to always
1073 * leave the original skb unfreed if we return an error.
1075 static int pppol2tp_xmit(struct ppp_channel *chan, struct sk_buff *skb)
1077 static const u8 ppph[2] = { 0xff, 0x03 };
1078 struct sock *sk = (struct sock *) chan->private;
1079 struct sock *sk_tun;
1080 int hdr_len;
1081 u16 udp_len;
1082 struct pppol2tp_session *session;
1083 struct pppol2tp_tunnel *tunnel;
1084 int rc;
1085 int headroom;
1086 int data_len = skb->len;
1087 struct inet_sock *inet;
1088 __wsum csum;
1089 struct udphdr *uh;
1090 unsigned int len;
1091 int old_headroom;
1092 int new_headroom;
1094 if (sock_flag(sk, SOCK_DEAD) || !(sk->sk_state & PPPOX_CONNECTED))
1095 goto abort;
1097 /* Get session and tunnel contexts from the socket */
1098 session = pppol2tp_sock_to_session(sk);
1099 if (session == NULL)
1100 goto abort;
1102 sk_tun = session->tunnel_sock;
1103 if (sk_tun == NULL)
1104 goto abort_put_sess;
1105 tunnel = pppol2tp_sock_to_tunnel(sk_tun);
1106 if (tunnel == NULL)
1107 goto abort_put_sess;
1109 /* What header length is configured for this session? */
1110 hdr_len = pppol2tp_l2tp_header_len(session);
1112 /* Check that there's enough headroom in the skb to insert IP,
1113 * UDP and L2TP and PPP headers. If not enough, expand it to
1114 * make room. Adjust truesize.
1116 headroom = NET_SKB_PAD + sizeof(struct iphdr) +
1117 sizeof(struct udphdr) + hdr_len + sizeof(ppph);
1118 old_headroom = skb_headroom(skb);
1119 if (skb_cow_head(skb, headroom))
1120 goto abort_put_sess_tun;
1122 new_headroom = skb_headroom(skb);
1123 skb_orphan(skb);
1124 skb->truesize += new_headroom - old_headroom;
1126 /* Setup PPP header */
1127 __skb_push(skb, sizeof(ppph));
1128 skb->data[0] = ppph[0];
1129 skb->data[1] = ppph[1];
1131 /* Setup L2TP header */
1132 pppol2tp_build_l2tp_header(session, __skb_push(skb, hdr_len));
1134 udp_len = sizeof(struct udphdr) + hdr_len + sizeof(ppph) + data_len;
1136 /* Setup UDP header */
1137 inet = inet_sk(sk_tun);
1138 __skb_push(skb, sizeof(*uh));
1139 skb_reset_transport_header(skb);
1140 uh = udp_hdr(skb);
1141 uh->source = inet->sport;
1142 uh->dest = inet->dport;
1143 uh->len = htons(udp_len);
1144 uh->check = 0;
1146 /* Debug */
1147 if (session->send_seq)
1148 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1149 "%s: send %d bytes, ns=%hu\n", session->name,
1150 data_len, session->ns - 1);
1151 else
1152 PRINTK(session->debug, PPPOL2TP_MSG_DATA, KERN_DEBUG,
1153 "%s: send %d bytes\n", session->name, data_len);
1155 if (session->debug & PPPOL2TP_MSG_DATA) {
1156 int i;
1157 unsigned char *datap = skb->data;
1159 printk(KERN_DEBUG "%s: xmit:", session->name);
1160 for (i = 0; i < data_len; i++) {
1161 printk(" %02X", *datap++);
1162 if (i == 31) {
1163 printk(" ...");
1164 break;
1167 printk("\n");
1170 memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
1171 IPCB(skb)->flags &= ~(IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED |
1172 IPSKB_REROUTED);
1173 nf_reset(skb);
1175 /* Get routing info from the tunnel socket */
1176 skb_dst_drop(skb);
1177 skb_dst_set(skb, dst_clone(__sk_dst_get(sk_tun)));
1178 pppol2tp_skb_set_owner_w(skb, sk_tun);
1180 /* Calculate UDP checksum if configured to do so */
1181 if (sk_tun->sk_no_check == UDP_CSUM_NOXMIT)
1182 skb->ip_summed = CHECKSUM_NONE;
1183 else if ((skb_dst(skb) && skb_dst(skb)->dev) &&
1184 (!(skb_dst(skb)->dev->features & NETIF_F_V4_CSUM))) {
1185 skb->ip_summed = CHECKSUM_COMPLETE;
1186 csum = skb_checksum(skb, 0, udp_len, 0);
1187 uh->check = csum_tcpudp_magic(inet->saddr, inet->daddr,
1188 udp_len, IPPROTO_UDP, csum);
1189 if (uh->check == 0)
1190 uh->check = CSUM_MANGLED_0;
1191 } else {
1192 skb->ip_summed = CHECKSUM_PARTIAL;
1193 skb->csum_start = skb_transport_header(skb) - skb->head;
1194 skb->csum_offset = offsetof(struct udphdr, check);
1195 uh->check = ~csum_tcpudp_magic(inet->saddr, inet->daddr,
1196 udp_len, IPPROTO_UDP, 0);
1199 /* Queue the packet to IP for output */
1200 len = skb->len;
1201 rc = ip_queue_xmit(skb, 1);
1203 /* Update stats */
1204 if (rc >= 0) {
1205 tunnel->stats.tx_packets++;
1206 tunnel->stats.tx_bytes += len;
1207 session->stats.tx_packets++;
1208 session->stats.tx_bytes += len;
1209 } else {
1210 tunnel->stats.tx_errors++;
1211 session->stats.tx_errors++;
1214 sock_put(sk_tun);
1215 sock_put(sk);
1216 return 1;
1218 abort_put_sess_tun:
1219 sock_put(sk_tun);
1220 abort_put_sess:
1221 sock_put(sk);
1222 abort:
1223 /* Free the original skb */
1224 kfree_skb(skb);
1225 return 1;
1228 /*****************************************************************************
1229 * Session (and tunnel control) socket create/destroy.
1230 *****************************************************************************/
1232 /* When the tunnel UDP socket is closed, all the attached sockets need to go
1233 * too.
1235 static void pppol2tp_tunnel_closeall(struct pppol2tp_tunnel *tunnel)
1237 int hash;
1238 struct hlist_node *walk;
1239 struct hlist_node *tmp;
1240 struct pppol2tp_session *session;
1241 struct sock *sk;
1243 BUG_ON(tunnel == NULL);
1245 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1246 "%s: closing all sessions...\n", tunnel->name);
1248 write_lock_bh(&tunnel->hlist_lock);
1249 for (hash = 0; hash < PPPOL2TP_HASH_SIZE; hash++) {
1250 again:
1251 hlist_for_each_safe(walk, tmp, &tunnel->session_hlist[hash]) {
1252 struct sk_buff *skb;
1254 session = hlist_entry(walk, struct pppol2tp_session, hlist);
1256 sk = session->sock;
1258 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1259 "%s: closing session\n", session->name);
1261 hlist_del_init(&session->hlist);
1263 /* Since we should hold the sock lock while
1264 * doing any unbinding, we need to release the
1265 * lock we're holding before taking that lock.
1266 * Hold a reference to the sock so it doesn't
1267 * disappear as we're jumping between locks.
1269 sock_hold(sk);
1270 write_unlock_bh(&tunnel->hlist_lock);
1271 lock_sock(sk);
1273 if (sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND)) {
1274 pppox_unbind_sock(sk);
1275 sk->sk_state = PPPOX_DEAD;
1276 sk->sk_state_change(sk);
1279 /* Purge any queued data */
1280 skb_queue_purge(&sk->sk_receive_queue);
1281 skb_queue_purge(&sk->sk_write_queue);
1282 while ((skb = skb_dequeue(&session->reorder_q))) {
1283 kfree_skb(skb);
1284 sock_put(sk);
1287 release_sock(sk);
1288 sock_put(sk);
1290 /* Now restart from the beginning of this hash
1291 * chain. We always remove a session from the
1292 * list so we are guaranteed to make forward
1293 * progress.
1295 write_lock_bh(&tunnel->hlist_lock);
1296 goto again;
1299 write_unlock_bh(&tunnel->hlist_lock);
1302 /* Really kill the tunnel.
1303 * Come here only when all sessions have been cleared from the tunnel.
1305 static void pppol2tp_tunnel_free(struct pppol2tp_tunnel *tunnel)
1307 struct pppol2tp_net *pn = pppol2tp_pernet(tunnel->pppol2tp_net);
1309 /* Remove from socket list */
1310 write_lock_bh(&pn->pppol2tp_tunnel_list_lock);
1311 list_del_init(&tunnel->list);
1312 write_unlock_bh(&pn->pppol2tp_tunnel_list_lock);
1314 atomic_dec(&pppol2tp_tunnel_count);
1315 kfree(tunnel);
1318 /* Tunnel UDP socket destruct hook.
1319 * The tunnel context is deleted only when all session sockets have been
1320 * closed.
1322 static void pppol2tp_tunnel_destruct(struct sock *sk)
1324 struct pppol2tp_tunnel *tunnel;
1326 tunnel = sk->sk_user_data;
1327 if (tunnel == NULL)
1328 goto end;
1330 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1331 "%s: closing...\n", tunnel->name);
1333 /* Close all sessions */
1334 pppol2tp_tunnel_closeall(tunnel);
1336 /* No longer an encapsulation socket. See net/ipv4/udp.c */
1337 (udp_sk(sk))->encap_type = 0;
1338 (udp_sk(sk))->encap_rcv = NULL;
1340 /* Remove hooks into tunnel socket */
1341 tunnel->sock = NULL;
1342 sk->sk_destruct = tunnel->old_sk_destruct;
1343 sk->sk_user_data = NULL;
1345 /* Call original (UDP) socket descructor */
1346 if (sk->sk_destruct != NULL)
1347 (*sk->sk_destruct)(sk);
1349 pppol2tp_tunnel_dec_refcount(tunnel);
1351 end:
1352 return;
1355 /* Really kill the session socket. (Called from sock_put() if
1356 * refcnt == 0.)
1358 static void pppol2tp_session_destruct(struct sock *sk)
1360 struct pppol2tp_session *session = NULL;
1362 if (sk->sk_user_data != NULL) {
1363 struct pppol2tp_tunnel *tunnel;
1365 session = sk->sk_user_data;
1366 if (session == NULL)
1367 goto out;
1369 BUG_ON(session->magic != L2TP_SESSION_MAGIC);
1371 /* Don't use pppol2tp_sock_to_tunnel() here to
1372 * get the tunnel context because the tunnel
1373 * socket might have already been closed (its
1374 * sk->sk_user_data will be NULL) so use the
1375 * session's private tunnel ptr instead.
1377 tunnel = session->tunnel;
1378 if (tunnel != NULL) {
1379 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
1381 /* If session_id is zero, this is a null
1382 * session context, which was created for a
1383 * socket that is being used only to manage
1384 * tunnels.
1386 if (session->tunnel_addr.s_session != 0) {
1387 /* Delete the session socket from the
1388 * hash
1390 write_lock_bh(&tunnel->hlist_lock);
1391 hlist_del_init(&session->hlist);
1392 write_unlock_bh(&tunnel->hlist_lock);
1394 atomic_dec(&pppol2tp_session_count);
1397 /* This will delete the tunnel context if this
1398 * is the last session on the tunnel.
1400 session->tunnel = NULL;
1401 session->tunnel_sock = NULL;
1402 pppol2tp_tunnel_dec_refcount(tunnel);
1406 kfree(session);
1407 out:
1408 return;
1411 /* Called when the PPPoX socket (session) is closed.
1413 static int pppol2tp_release(struct socket *sock)
1415 struct sock *sk = sock->sk;
1416 struct pppol2tp_session *session;
1417 int error;
1419 if (!sk)
1420 return 0;
1422 error = -EBADF;
1423 lock_sock(sk);
1424 if (sock_flag(sk, SOCK_DEAD) != 0)
1425 goto error;
1427 pppox_unbind_sock(sk);
1429 /* Signal the death of the socket. */
1430 sk->sk_state = PPPOX_DEAD;
1431 sock_orphan(sk);
1432 sock->sk = NULL;
1434 session = pppol2tp_sock_to_session(sk);
1436 /* Purge any queued data */
1437 skb_queue_purge(&sk->sk_receive_queue);
1438 skb_queue_purge(&sk->sk_write_queue);
1439 if (session != NULL) {
1440 struct sk_buff *skb;
1441 while ((skb = skb_dequeue(&session->reorder_q))) {
1442 kfree_skb(skb);
1443 sock_put(sk);
1445 sock_put(sk);
1448 release_sock(sk);
1450 /* This will delete the session context via
1451 * pppol2tp_session_destruct() if the socket's refcnt drops to
1452 * zero.
1454 sock_put(sk);
1456 return 0;
1458 error:
1459 release_sock(sk);
1460 return error;
1463 /* Internal function to prepare a tunnel (UDP) socket to have PPPoX
1464 * sockets attached to it.
1466 static struct sock *pppol2tp_prepare_tunnel_socket(struct net *net,
1467 int fd, u16 tunnel_id, int *error)
1469 int err;
1470 struct socket *sock = NULL;
1471 struct sock *sk;
1472 struct pppol2tp_tunnel *tunnel;
1473 struct pppol2tp_net *pn;
1474 struct sock *ret = NULL;
1476 /* Get the tunnel UDP socket from the fd, which was opened by
1477 * the userspace L2TP daemon.
1479 err = -EBADF;
1480 sock = sockfd_lookup(fd, &err);
1481 if (!sock) {
1482 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1483 "tunl %hu: sockfd_lookup(fd=%d) returned %d\n",
1484 tunnel_id, fd, err);
1485 goto err;
1488 sk = sock->sk;
1490 /* Quick sanity checks */
1491 err = -EPROTONOSUPPORT;
1492 if (sk->sk_protocol != IPPROTO_UDP) {
1493 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1494 "tunl %hu: fd %d wrong protocol, got %d, expected %d\n",
1495 tunnel_id, fd, sk->sk_protocol, IPPROTO_UDP);
1496 goto err;
1498 err = -EAFNOSUPPORT;
1499 if (sock->ops->family != AF_INET) {
1500 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_ERR,
1501 "tunl %hu: fd %d wrong family, got %d, expected %d\n",
1502 tunnel_id, fd, sock->ops->family, AF_INET);
1503 goto err;
1506 err = -ENOTCONN;
1508 /* Check if this socket has already been prepped */
1509 tunnel = (struct pppol2tp_tunnel *)sk->sk_user_data;
1510 if (tunnel != NULL) {
1511 /* User-data field already set */
1512 err = -EBUSY;
1513 BUG_ON(tunnel->magic != L2TP_TUNNEL_MAGIC);
1515 /* This socket has already been prepped */
1516 ret = tunnel->sock;
1517 goto out;
1520 /* This socket is available and needs prepping. Create a new tunnel
1521 * context and init it.
1523 sk->sk_user_data = tunnel = kzalloc(sizeof(struct pppol2tp_tunnel), GFP_KERNEL);
1524 if (sk->sk_user_data == NULL) {
1525 err = -ENOMEM;
1526 goto err;
1529 tunnel->magic = L2TP_TUNNEL_MAGIC;
1530 sprintf(&tunnel->name[0], "tunl %hu", tunnel_id);
1532 tunnel->stats.tunnel_id = tunnel_id;
1533 tunnel->debug = PPPOL2TP_DEFAULT_DEBUG_FLAGS;
1535 /* Hook on the tunnel socket destructor so that we can cleanup
1536 * if the tunnel socket goes away.
1538 tunnel->old_sk_destruct = sk->sk_destruct;
1539 sk->sk_destruct = &pppol2tp_tunnel_destruct;
1541 tunnel->sock = sk;
1542 sk->sk_allocation = GFP_ATOMIC;
1544 /* Misc init */
1545 rwlock_init(&tunnel->hlist_lock);
1547 /* The net we belong to */
1548 tunnel->pppol2tp_net = net;
1549 pn = pppol2tp_pernet(net);
1551 /* Add tunnel to our list */
1552 INIT_LIST_HEAD(&tunnel->list);
1553 write_lock_bh(&pn->pppol2tp_tunnel_list_lock);
1554 list_add(&tunnel->list, &pn->pppol2tp_tunnel_list);
1555 write_unlock_bh(&pn->pppol2tp_tunnel_list_lock);
1556 atomic_inc(&pppol2tp_tunnel_count);
1558 /* Bump the reference count. The tunnel context is deleted
1559 * only when this drops to zero.
1561 pppol2tp_tunnel_inc_refcount(tunnel);
1563 /* Mark socket as an encapsulation socket. See net/ipv4/udp.c */
1564 (udp_sk(sk))->encap_type = UDP_ENCAP_L2TPINUDP;
1565 (udp_sk(sk))->encap_rcv = pppol2tp_udp_encap_recv;
1567 ret = tunnel->sock;
1569 *error = 0;
1570 out:
1571 if (sock)
1572 sockfd_put(sock);
1574 return ret;
1576 err:
1577 *error = err;
1578 goto out;
1581 static struct proto pppol2tp_sk_proto = {
1582 .name = "PPPOL2TP",
1583 .owner = THIS_MODULE,
1584 .obj_size = sizeof(struct pppox_sock),
1587 /* socket() handler. Initialize a new struct sock.
1589 static int pppol2tp_create(struct net *net, struct socket *sock)
1591 int error = -ENOMEM;
1592 struct sock *sk;
1594 sk = sk_alloc(net, PF_PPPOX, GFP_KERNEL, &pppol2tp_sk_proto);
1595 if (!sk)
1596 goto out;
1598 sock_init_data(sock, sk);
1600 sock->state = SS_UNCONNECTED;
1601 sock->ops = &pppol2tp_ops;
1603 sk->sk_backlog_rcv = pppol2tp_recv_core;
1604 sk->sk_protocol = PX_PROTO_OL2TP;
1605 sk->sk_family = PF_PPPOX;
1606 sk->sk_state = PPPOX_NONE;
1607 sk->sk_type = SOCK_STREAM;
1608 sk->sk_destruct = pppol2tp_session_destruct;
1610 error = 0;
1612 out:
1613 return error;
1616 /* connect() handler. Attach a PPPoX socket to a tunnel UDP socket
1618 static int pppol2tp_connect(struct socket *sock, struct sockaddr *uservaddr,
1619 int sockaddr_len, int flags)
1621 struct sock *sk = sock->sk;
1622 struct sockaddr_pppol2tp *sp = (struct sockaddr_pppol2tp *) uservaddr;
1623 struct pppox_sock *po = pppox_sk(sk);
1624 struct sock *tunnel_sock = NULL;
1625 struct pppol2tp_session *session = NULL;
1626 struct pppol2tp_tunnel *tunnel;
1627 struct dst_entry *dst;
1628 int error = 0;
1630 lock_sock(sk);
1632 error = -EINVAL;
1633 if (sp->sa_protocol != PX_PROTO_OL2TP)
1634 goto end;
1636 /* Check for already bound sockets */
1637 error = -EBUSY;
1638 if (sk->sk_state & PPPOX_CONNECTED)
1639 goto end;
1641 /* We don't supporting rebinding anyway */
1642 error = -EALREADY;
1643 if (sk->sk_user_data)
1644 goto end; /* socket is already attached */
1646 /* Don't bind if s_tunnel is 0 */
1647 error = -EINVAL;
1648 if (sp->pppol2tp.s_tunnel == 0)
1649 goto end;
1651 /* Special case: prepare tunnel socket if s_session and
1652 * d_session is 0. Otherwise look up tunnel using supplied
1653 * tunnel id.
1655 if ((sp->pppol2tp.s_session == 0) && (sp->pppol2tp.d_session == 0)) {
1656 tunnel_sock = pppol2tp_prepare_tunnel_socket(sock_net(sk),
1657 sp->pppol2tp.fd,
1658 sp->pppol2tp.s_tunnel,
1659 &error);
1660 if (tunnel_sock == NULL)
1661 goto end;
1663 sock_hold(tunnel_sock);
1664 tunnel = tunnel_sock->sk_user_data;
1665 } else {
1666 tunnel = pppol2tp_tunnel_find(sock_net(sk), sp->pppol2tp.s_tunnel);
1668 /* Error if we can't find the tunnel */
1669 error = -ENOENT;
1670 if (tunnel == NULL)
1671 goto end;
1673 tunnel_sock = tunnel->sock;
1676 /* Check that this session doesn't already exist */
1677 error = -EEXIST;
1678 session = pppol2tp_session_find(tunnel, sp->pppol2tp.s_session);
1679 if (session != NULL)
1680 goto end;
1682 /* Allocate and initialize a new session context. */
1683 session = kzalloc(sizeof(struct pppol2tp_session), GFP_KERNEL);
1684 if (session == NULL) {
1685 error = -ENOMEM;
1686 goto end;
1689 skb_queue_head_init(&session->reorder_q);
1691 session->magic = L2TP_SESSION_MAGIC;
1692 session->owner = current->pid;
1693 session->sock = sk;
1694 session->tunnel = tunnel;
1695 session->tunnel_sock = tunnel_sock;
1696 session->tunnel_addr = sp->pppol2tp;
1697 sprintf(&session->name[0], "sess %hu/%hu",
1698 session->tunnel_addr.s_tunnel,
1699 session->tunnel_addr.s_session);
1701 session->stats.tunnel_id = session->tunnel_addr.s_tunnel;
1702 session->stats.session_id = session->tunnel_addr.s_session;
1704 INIT_HLIST_NODE(&session->hlist);
1706 /* Inherit debug options from tunnel */
1707 session->debug = tunnel->debug;
1709 /* Default MTU must allow space for UDP/L2TP/PPP
1710 * headers.
1712 session->mtu = session->mru = 1500 - PPPOL2TP_HEADER_OVERHEAD;
1714 /* If PMTU discovery was enabled, use the MTU that was discovered */
1715 dst = sk_dst_get(sk);
1716 if (dst != NULL) {
1717 u32 pmtu = dst_mtu(__sk_dst_get(sk));
1718 if (pmtu != 0)
1719 session->mtu = session->mru = pmtu -
1720 PPPOL2TP_HEADER_OVERHEAD;
1721 dst_release(dst);
1724 /* Special case: if source & dest session_id == 0x0000, this socket is
1725 * being created to manage the tunnel. Don't add the session to the
1726 * session hash list, just set up the internal context for use by
1727 * ioctl() and sockopt() handlers.
1729 if ((session->tunnel_addr.s_session == 0) &&
1730 (session->tunnel_addr.d_session == 0)) {
1731 error = 0;
1732 sk->sk_user_data = session;
1733 goto out_no_ppp;
1736 /* Get tunnel context from the tunnel socket */
1737 tunnel = pppol2tp_sock_to_tunnel(tunnel_sock);
1738 if (tunnel == NULL) {
1739 error = -EBADF;
1740 goto end;
1743 /* Right now, because we don't have a way to push the incoming skb's
1744 * straight through the UDP layer, the only header we need to worry
1745 * about is the L2TP header. This size is different depending on
1746 * whether sequence numbers are enabled for the data channel.
1748 po->chan.hdrlen = PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
1750 po->chan.private = sk;
1751 po->chan.ops = &pppol2tp_chan_ops;
1752 po->chan.mtu = session->mtu;
1754 error = ppp_register_net_channel(sock_net(sk), &po->chan);
1755 if (error)
1756 goto end_put_tun;
1758 /* This is how we get the session context from the socket. */
1759 sk->sk_user_data = session;
1761 /* Add session to the tunnel's hash list */
1762 write_lock_bh(&tunnel->hlist_lock);
1763 hlist_add_head(&session->hlist,
1764 pppol2tp_session_id_hash(tunnel,
1765 session->tunnel_addr.s_session));
1766 write_unlock_bh(&tunnel->hlist_lock);
1768 atomic_inc(&pppol2tp_session_count);
1770 out_no_ppp:
1771 pppol2tp_tunnel_inc_refcount(tunnel);
1772 sk->sk_state = PPPOX_CONNECTED;
1773 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1774 "%s: created\n", session->name);
1776 end_put_tun:
1777 sock_put(tunnel_sock);
1778 end:
1779 release_sock(sk);
1781 if (error != 0) {
1782 if (session)
1783 PRINTK(session->debug,
1784 PPPOL2TP_MSG_CONTROL, KERN_WARNING,
1785 "%s: connect failed: %d\n",
1786 session->name, error);
1787 else
1788 PRINTK(-1, PPPOL2TP_MSG_CONTROL, KERN_WARNING,
1789 "connect failed: %d\n", error);
1792 return error;
1795 /* getname() support.
1797 static int pppol2tp_getname(struct socket *sock, struct sockaddr *uaddr,
1798 int *usockaddr_len, int peer)
1800 int len = sizeof(struct sockaddr_pppol2tp);
1801 struct sockaddr_pppol2tp sp;
1802 int error = 0;
1803 struct pppol2tp_session *session;
1805 error = -ENOTCONN;
1806 if (sock->sk->sk_state != PPPOX_CONNECTED)
1807 goto end;
1809 session = pppol2tp_sock_to_session(sock->sk);
1810 if (session == NULL) {
1811 error = -EBADF;
1812 goto end;
1815 sp.sa_family = AF_PPPOX;
1816 sp.sa_protocol = PX_PROTO_OL2TP;
1817 memcpy(&sp.pppol2tp, &session->tunnel_addr,
1818 sizeof(struct pppol2tp_addr));
1820 memcpy(uaddr, &sp, len);
1822 *usockaddr_len = len;
1824 error = 0;
1825 sock_put(sock->sk);
1827 end:
1828 return error;
1831 /****************************************************************************
1832 * ioctl() handlers.
1834 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
1835 * sockets. However, in order to control kernel tunnel features, we allow
1836 * userspace to create a special "tunnel" PPPoX socket which is used for
1837 * control only. Tunnel PPPoX sockets have session_id == 0 and simply allow
1838 * the user application to issue L2TP setsockopt(), getsockopt() and ioctl()
1839 * calls.
1840 ****************************************************************************/
1842 /* Session ioctl helper.
1844 static int pppol2tp_session_ioctl(struct pppol2tp_session *session,
1845 unsigned int cmd, unsigned long arg)
1847 struct ifreq ifr;
1848 int err = 0;
1849 struct sock *sk = session->sock;
1850 int val = (int) arg;
1852 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1853 "%s: pppol2tp_session_ioctl(cmd=%#x, arg=%#lx)\n",
1854 session->name, cmd, arg);
1856 sock_hold(sk);
1858 switch (cmd) {
1859 case SIOCGIFMTU:
1860 err = -ENXIO;
1861 if (!(sk->sk_state & PPPOX_CONNECTED))
1862 break;
1864 err = -EFAULT;
1865 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1866 break;
1867 ifr.ifr_mtu = session->mtu;
1868 if (copy_to_user((void __user *) arg, &ifr, sizeof(struct ifreq)))
1869 break;
1871 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1872 "%s: get mtu=%d\n", session->name, session->mtu);
1873 err = 0;
1874 break;
1876 case SIOCSIFMTU:
1877 err = -ENXIO;
1878 if (!(sk->sk_state & PPPOX_CONNECTED))
1879 break;
1881 err = -EFAULT;
1882 if (copy_from_user(&ifr, (void __user *) arg, sizeof(struct ifreq)))
1883 break;
1885 session->mtu = ifr.ifr_mtu;
1887 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1888 "%s: set mtu=%d\n", session->name, session->mtu);
1889 err = 0;
1890 break;
1892 case PPPIOCGMRU:
1893 err = -ENXIO;
1894 if (!(sk->sk_state & PPPOX_CONNECTED))
1895 break;
1897 err = -EFAULT;
1898 if (put_user(session->mru, (int __user *) arg))
1899 break;
1901 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1902 "%s: get mru=%d\n", session->name, session->mru);
1903 err = 0;
1904 break;
1906 case PPPIOCSMRU:
1907 err = -ENXIO;
1908 if (!(sk->sk_state & PPPOX_CONNECTED))
1909 break;
1911 err = -EFAULT;
1912 if (get_user(val,(int __user *) arg))
1913 break;
1915 session->mru = val;
1916 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1917 "%s: set mru=%d\n", session->name, session->mru);
1918 err = 0;
1919 break;
1921 case PPPIOCGFLAGS:
1922 err = -EFAULT;
1923 if (put_user(session->flags, (int __user *) arg))
1924 break;
1926 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1927 "%s: get flags=%d\n", session->name, session->flags);
1928 err = 0;
1929 break;
1931 case PPPIOCSFLAGS:
1932 err = -EFAULT;
1933 if (get_user(val, (int __user *) arg))
1934 break;
1935 session->flags = val;
1936 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1937 "%s: set flags=%d\n", session->name, session->flags);
1938 err = 0;
1939 break;
1941 case PPPIOCGL2TPSTATS:
1942 err = -ENXIO;
1943 if (!(sk->sk_state & PPPOX_CONNECTED))
1944 break;
1946 if (copy_to_user((void __user *) arg, &session->stats,
1947 sizeof(session->stats)))
1948 break;
1949 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
1950 "%s: get L2TP stats\n", session->name);
1951 err = 0;
1952 break;
1954 default:
1955 err = -ENOSYS;
1956 break;
1959 sock_put(sk);
1961 return err;
1964 /* Tunnel ioctl helper.
1966 * Note the special handling for PPPIOCGL2TPSTATS below. If the ioctl data
1967 * specifies a session_id, the session ioctl handler is called. This allows an
1968 * application to retrieve session stats via a tunnel socket.
1970 static int pppol2tp_tunnel_ioctl(struct pppol2tp_tunnel *tunnel,
1971 unsigned int cmd, unsigned long arg)
1973 int err = 0;
1974 struct sock *sk = tunnel->sock;
1975 struct pppol2tp_ioc_stats stats_req;
1977 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_DEBUG,
1978 "%s: pppol2tp_tunnel_ioctl(cmd=%#x, arg=%#lx)\n", tunnel->name,
1979 cmd, arg);
1981 sock_hold(sk);
1983 switch (cmd) {
1984 case PPPIOCGL2TPSTATS:
1985 err = -ENXIO;
1986 if (!(sk->sk_state & PPPOX_CONNECTED))
1987 break;
1989 if (copy_from_user(&stats_req, (void __user *) arg,
1990 sizeof(stats_req))) {
1991 err = -EFAULT;
1992 break;
1994 if (stats_req.session_id != 0) {
1995 /* resend to session ioctl handler */
1996 struct pppol2tp_session *session =
1997 pppol2tp_session_find(tunnel, stats_req.session_id);
1998 if (session != NULL)
1999 err = pppol2tp_session_ioctl(session, cmd, arg);
2000 else
2001 err = -EBADR;
2002 break;
2004 #ifdef CONFIG_XFRM
2005 tunnel->stats.using_ipsec = (sk->sk_policy[0] || sk->sk_policy[1]) ? 1 : 0;
2006 #endif
2007 if (copy_to_user((void __user *) arg, &tunnel->stats,
2008 sizeof(tunnel->stats))) {
2009 err = -EFAULT;
2010 break;
2012 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2013 "%s: get L2TP stats\n", tunnel->name);
2014 err = 0;
2015 break;
2017 default:
2018 err = -ENOSYS;
2019 break;
2022 sock_put(sk);
2024 return err;
2027 /* Main ioctl() handler.
2028 * Dispatch to tunnel or session helpers depending on the socket.
2030 static int pppol2tp_ioctl(struct socket *sock, unsigned int cmd,
2031 unsigned long arg)
2033 struct sock *sk = sock->sk;
2034 struct pppol2tp_session *session;
2035 struct pppol2tp_tunnel *tunnel;
2036 int err;
2038 if (!sk)
2039 return 0;
2041 err = -EBADF;
2042 if (sock_flag(sk, SOCK_DEAD) != 0)
2043 goto end;
2045 err = -ENOTCONN;
2046 if ((sk->sk_user_data == NULL) ||
2047 (!(sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND))))
2048 goto end;
2050 /* Get session context from the socket */
2051 err = -EBADF;
2052 session = pppol2tp_sock_to_session(sk);
2053 if (session == NULL)
2054 goto end;
2056 /* Special case: if session's session_id is zero, treat ioctl as a
2057 * tunnel ioctl
2059 if ((session->tunnel_addr.s_session == 0) &&
2060 (session->tunnel_addr.d_session == 0)) {
2061 err = -EBADF;
2062 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
2063 if (tunnel == NULL)
2064 goto end_put_sess;
2066 err = pppol2tp_tunnel_ioctl(tunnel, cmd, arg);
2067 sock_put(session->tunnel_sock);
2068 goto end_put_sess;
2071 err = pppol2tp_session_ioctl(session, cmd, arg);
2073 end_put_sess:
2074 sock_put(sk);
2075 end:
2076 return err;
2079 /*****************************************************************************
2080 * setsockopt() / getsockopt() support.
2082 * The PPPoX socket is created for L2TP sessions: tunnels have their own UDP
2083 * sockets. In order to control kernel tunnel features, we allow userspace to
2084 * create a special "tunnel" PPPoX socket which is used for control only.
2085 * Tunnel PPPoX sockets have session_id == 0 and simply allow the user
2086 * application to issue L2TP setsockopt(), getsockopt() and ioctl() calls.
2087 *****************************************************************************/
2089 /* Tunnel setsockopt() helper.
2091 static int pppol2tp_tunnel_setsockopt(struct sock *sk,
2092 struct pppol2tp_tunnel *tunnel,
2093 int optname, int val)
2095 int err = 0;
2097 switch (optname) {
2098 case PPPOL2TP_SO_DEBUG:
2099 tunnel->debug = val;
2100 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2101 "%s: set debug=%x\n", tunnel->name, tunnel->debug);
2102 break;
2104 default:
2105 err = -ENOPROTOOPT;
2106 break;
2109 return err;
2112 /* Session setsockopt helper.
2114 static int pppol2tp_session_setsockopt(struct sock *sk,
2115 struct pppol2tp_session *session,
2116 int optname, int val)
2118 int err = 0;
2120 switch (optname) {
2121 case PPPOL2TP_SO_RECVSEQ:
2122 if ((val != 0) && (val != 1)) {
2123 err = -EINVAL;
2124 break;
2126 session->recv_seq = val ? -1 : 0;
2127 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2128 "%s: set recv_seq=%d\n", session->name,
2129 session->recv_seq);
2130 break;
2132 case PPPOL2TP_SO_SENDSEQ:
2133 if ((val != 0) && (val != 1)) {
2134 err = -EINVAL;
2135 break;
2137 session->send_seq = val ? -1 : 0;
2139 struct sock *ssk = session->sock;
2140 struct pppox_sock *po = pppox_sk(ssk);
2141 po->chan.hdrlen = val ? PPPOL2TP_L2TP_HDR_SIZE_SEQ :
2142 PPPOL2TP_L2TP_HDR_SIZE_NOSEQ;
2144 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2145 "%s: set send_seq=%d\n", session->name, session->send_seq);
2146 break;
2148 case PPPOL2TP_SO_LNSMODE:
2149 if ((val != 0) && (val != 1)) {
2150 err = -EINVAL;
2151 break;
2153 session->lns_mode = val ? -1 : 0;
2154 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2155 "%s: set lns_mode=%d\n", session->name,
2156 session->lns_mode);
2157 break;
2159 case PPPOL2TP_SO_DEBUG:
2160 session->debug = val;
2161 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2162 "%s: set debug=%x\n", session->name, session->debug);
2163 break;
2165 case PPPOL2TP_SO_REORDERTO:
2166 session->reorder_timeout = msecs_to_jiffies(val);
2167 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2168 "%s: set reorder_timeout=%d\n", session->name,
2169 session->reorder_timeout);
2170 break;
2172 default:
2173 err = -ENOPROTOOPT;
2174 break;
2177 return err;
2180 /* Main setsockopt() entry point.
2181 * Does API checks, then calls either the tunnel or session setsockopt
2182 * handler, according to whether the PPPoL2TP socket is a for a regular
2183 * session or the special tunnel type.
2185 static int pppol2tp_setsockopt(struct socket *sock, int level, int optname,
2186 char __user *optval, unsigned int optlen)
2188 struct sock *sk = sock->sk;
2189 struct pppol2tp_session *session = sk->sk_user_data;
2190 struct pppol2tp_tunnel *tunnel;
2191 int val;
2192 int err;
2194 if (level != SOL_PPPOL2TP)
2195 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
2197 if (optlen < sizeof(int))
2198 return -EINVAL;
2200 if (get_user(val, (int __user *)optval))
2201 return -EFAULT;
2203 err = -ENOTCONN;
2204 if (sk->sk_user_data == NULL)
2205 goto end;
2207 /* Get session context from the socket */
2208 err = -EBADF;
2209 session = pppol2tp_sock_to_session(sk);
2210 if (session == NULL)
2211 goto end;
2213 /* Special case: if session_id == 0x0000, treat as operation on tunnel
2215 if ((session->tunnel_addr.s_session == 0) &&
2216 (session->tunnel_addr.d_session == 0)) {
2217 err = -EBADF;
2218 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
2219 if (tunnel == NULL)
2220 goto end_put_sess;
2222 err = pppol2tp_tunnel_setsockopt(sk, tunnel, optname, val);
2223 sock_put(session->tunnel_sock);
2224 } else
2225 err = pppol2tp_session_setsockopt(sk, session, optname, val);
2227 err = 0;
2229 end_put_sess:
2230 sock_put(sk);
2231 end:
2232 return err;
2235 /* Tunnel getsockopt helper. Called with sock locked.
2237 static int pppol2tp_tunnel_getsockopt(struct sock *sk,
2238 struct pppol2tp_tunnel *tunnel,
2239 int optname, int *val)
2241 int err = 0;
2243 switch (optname) {
2244 case PPPOL2TP_SO_DEBUG:
2245 *val = tunnel->debug;
2246 PRINTK(tunnel->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2247 "%s: get debug=%x\n", tunnel->name, tunnel->debug);
2248 break;
2250 default:
2251 err = -ENOPROTOOPT;
2252 break;
2255 return err;
2258 /* Session getsockopt helper. Called with sock locked.
2260 static int pppol2tp_session_getsockopt(struct sock *sk,
2261 struct pppol2tp_session *session,
2262 int optname, int *val)
2264 int err = 0;
2266 switch (optname) {
2267 case PPPOL2TP_SO_RECVSEQ:
2268 *val = session->recv_seq;
2269 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2270 "%s: get recv_seq=%d\n", session->name, *val);
2271 break;
2273 case PPPOL2TP_SO_SENDSEQ:
2274 *val = session->send_seq;
2275 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2276 "%s: get send_seq=%d\n", session->name, *val);
2277 break;
2279 case PPPOL2TP_SO_LNSMODE:
2280 *val = session->lns_mode;
2281 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2282 "%s: get lns_mode=%d\n", session->name, *val);
2283 break;
2285 case PPPOL2TP_SO_DEBUG:
2286 *val = session->debug;
2287 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2288 "%s: get debug=%d\n", session->name, *val);
2289 break;
2291 case PPPOL2TP_SO_REORDERTO:
2292 *val = (int) jiffies_to_msecs(session->reorder_timeout);
2293 PRINTK(session->debug, PPPOL2TP_MSG_CONTROL, KERN_INFO,
2294 "%s: get reorder_timeout=%d\n", session->name, *val);
2295 break;
2297 default:
2298 err = -ENOPROTOOPT;
2301 return err;
2304 /* Main getsockopt() entry point.
2305 * Does API checks, then calls either the tunnel or session getsockopt
2306 * handler, according to whether the PPPoX socket is a for a regular session
2307 * or the special tunnel type.
2309 static int pppol2tp_getsockopt(struct socket *sock, int level,
2310 int optname, char __user *optval, int __user *optlen)
2312 struct sock *sk = sock->sk;
2313 struct pppol2tp_session *session = sk->sk_user_data;
2314 struct pppol2tp_tunnel *tunnel;
2315 int val, len;
2316 int err;
2318 if (level != SOL_PPPOL2TP)
2319 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
2321 if (get_user(len, (int __user *) optlen))
2322 return -EFAULT;
2324 len = min_t(unsigned int, len, sizeof(int));
2326 if (len < 0)
2327 return -EINVAL;
2329 err = -ENOTCONN;
2330 if (sk->sk_user_data == NULL)
2331 goto end;
2333 /* Get the session context */
2334 err = -EBADF;
2335 session = pppol2tp_sock_to_session(sk);
2336 if (session == NULL)
2337 goto end;
2339 /* Special case: if session_id == 0x0000, treat as operation on tunnel */
2340 if ((session->tunnel_addr.s_session == 0) &&
2341 (session->tunnel_addr.d_session == 0)) {
2342 err = -EBADF;
2343 tunnel = pppol2tp_sock_to_tunnel(session->tunnel_sock);
2344 if (tunnel == NULL)
2345 goto end_put_sess;
2347 err = pppol2tp_tunnel_getsockopt(sk, tunnel, optname, &val);
2348 sock_put(session->tunnel_sock);
2349 } else
2350 err = pppol2tp_session_getsockopt(sk, session, optname, &val);
2352 err = -EFAULT;
2353 if (put_user(len, (int __user *) optlen))
2354 goto end_put_sess;
2356 if (copy_to_user((void __user *) optval, &val, len))
2357 goto end_put_sess;
2359 err = 0;
2361 end_put_sess:
2362 sock_put(sk);
2363 end:
2364 return err;
2367 /*****************************************************************************
2368 * /proc filesystem for debug
2369 *****************************************************************************/
2371 #ifdef CONFIG_PROC_FS
2373 #include <linux/seq_file.h>
2375 struct pppol2tp_seq_data {
2376 struct seq_net_private p;
2377 struct pppol2tp_tunnel *tunnel; /* current tunnel */
2378 struct pppol2tp_session *session; /* NULL means get first session in tunnel */
2381 static struct pppol2tp_session *next_session(struct pppol2tp_tunnel *tunnel, struct pppol2tp_session *curr)
2383 struct pppol2tp_session *session = NULL;
2384 struct hlist_node *walk;
2385 int found = 0;
2386 int next = 0;
2387 int i;
2389 read_lock_bh(&tunnel->hlist_lock);
2390 for (i = 0; i < PPPOL2TP_HASH_SIZE; i++) {
2391 hlist_for_each_entry(session, walk, &tunnel->session_hlist[i], hlist) {
2392 if (curr == NULL) {
2393 found = 1;
2394 goto out;
2396 if (session == curr) {
2397 next = 1;
2398 continue;
2400 if (next) {
2401 found = 1;
2402 goto out;
2406 out:
2407 read_unlock_bh(&tunnel->hlist_lock);
2408 if (!found)
2409 session = NULL;
2411 return session;
2414 static struct pppol2tp_tunnel *next_tunnel(struct pppol2tp_net *pn,
2415 struct pppol2tp_tunnel *curr)
2417 struct pppol2tp_tunnel *tunnel = NULL;
2419 read_lock_bh(&pn->pppol2tp_tunnel_list_lock);
2420 if (list_is_last(&curr->list, &pn->pppol2tp_tunnel_list)) {
2421 goto out;
2423 tunnel = list_entry(curr->list.next, struct pppol2tp_tunnel, list);
2424 out:
2425 read_unlock_bh(&pn->pppol2tp_tunnel_list_lock);
2427 return tunnel;
2430 static void *pppol2tp_seq_start(struct seq_file *m, loff_t *offs)
2432 struct pppol2tp_seq_data *pd = SEQ_START_TOKEN;
2433 struct pppol2tp_net *pn;
2434 loff_t pos = *offs;
2436 if (!pos)
2437 goto out;
2439 BUG_ON(m->private == NULL);
2440 pd = m->private;
2441 pn = pppol2tp_pernet(seq_file_net(m));
2443 if (pd->tunnel == NULL) {
2444 if (!list_empty(&pn->pppol2tp_tunnel_list))
2445 pd->tunnel = list_entry(pn->pppol2tp_tunnel_list.next, struct pppol2tp_tunnel, list);
2446 } else {
2447 pd->session = next_session(pd->tunnel, pd->session);
2448 if (pd->session == NULL) {
2449 pd->tunnel = next_tunnel(pn, pd->tunnel);
2453 /* NULL tunnel and session indicates end of list */
2454 if ((pd->tunnel == NULL) && (pd->session == NULL))
2455 pd = NULL;
2457 out:
2458 return pd;
2461 static void *pppol2tp_seq_next(struct seq_file *m, void *v, loff_t *pos)
2463 (*pos)++;
2464 return NULL;
2467 static void pppol2tp_seq_stop(struct seq_file *p, void *v)
2469 /* nothing to do */
2472 static void pppol2tp_seq_tunnel_show(struct seq_file *m, void *v)
2474 struct pppol2tp_tunnel *tunnel = v;
2476 seq_printf(m, "\nTUNNEL '%s', %c %d\n",
2477 tunnel->name,
2478 (tunnel == tunnel->sock->sk_user_data) ? 'Y':'N',
2479 atomic_read(&tunnel->ref_count) - 1);
2480 seq_printf(m, " %08x %llu/%llu/%llu %llu/%llu/%llu\n",
2481 tunnel->debug,
2482 (unsigned long long)tunnel->stats.tx_packets,
2483 (unsigned long long)tunnel->stats.tx_bytes,
2484 (unsigned long long)tunnel->stats.tx_errors,
2485 (unsigned long long)tunnel->stats.rx_packets,
2486 (unsigned long long)tunnel->stats.rx_bytes,
2487 (unsigned long long)tunnel->stats.rx_errors);
2490 static void pppol2tp_seq_session_show(struct seq_file *m, void *v)
2492 struct pppol2tp_session *session = v;
2494 seq_printf(m, " SESSION '%s' %08X/%d %04X/%04X -> "
2495 "%04X/%04X %d %c\n",
2496 session->name,
2497 ntohl(session->tunnel_addr.addr.sin_addr.s_addr),
2498 ntohs(session->tunnel_addr.addr.sin_port),
2499 session->tunnel_addr.s_tunnel,
2500 session->tunnel_addr.s_session,
2501 session->tunnel_addr.d_tunnel,
2502 session->tunnel_addr.d_session,
2503 session->sock->sk_state,
2504 (session == session->sock->sk_user_data) ?
2505 'Y' : 'N');
2506 seq_printf(m, " %d/%d/%c/%c/%s %08x %u\n",
2507 session->mtu, session->mru,
2508 session->recv_seq ? 'R' : '-',
2509 session->send_seq ? 'S' : '-',
2510 session->lns_mode ? "LNS" : "LAC",
2511 session->debug,
2512 jiffies_to_msecs(session->reorder_timeout));
2513 seq_printf(m, " %hu/%hu %llu/%llu/%llu %llu/%llu/%llu\n",
2514 session->nr, session->ns,
2515 (unsigned long long)session->stats.tx_packets,
2516 (unsigned long long)session->stats.tx_bytes,
2517 (unsigned long long)session->stats.tx_errors,
2518 (unsigned long long)session->stats.rx_packets,
2519 (unsigned long long)session->stats.rx_bytes,
2520 (unsigned long long)session->stats.rx_errors);
2523 static int pppol2tp_seq_show(struct seq_file *m, void *v)
2525 struct pppol2tp_seq_data *pd = v;
2527 /* display header on line 1 */
2528 if (v == SEQ_START_TOKEN) {
2529 seq_puts(m, "PPPoL2TP driver info, " PPPOL2TP_DRV_VERSION "\n");
2530 seq_puts(m, "TUNNEL name, user-data-ok session-count\n");
2531 seq_puts(m, " debug tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2532 seq_puts(m, " SESSION name, addr/port src-tid/sid "
2533 "dest-tid/sid state user-data-ok\n");
2534 seq_puts(m, " mtu/mru/rcvseq/sendseq/lns debug reorderto\n");
2535 seq_puts(m, " nr/ns tx-pkts/bytes/errs rx-pkts/bytes/errs\n");
2536 goto out;
2539 /* Show the tunnel or session context.
2541 if (pd->session == NULL)
2542 pppol2tp_seq_tunnel_show(m, pd->tunnel);
2543 else
2544 pppol2tp_seq_session_show(m, pd->session);
2546 out:
2547 return 0;
2550 static const struct seq_operations pppol2tp_seq_ops = {
2551 .start = pppol2tp_seq_start,
2552 .next = pppol2tp_seq_next,
2553 .stop = pppol2tp_seq_stop,
2554 .show = pppol2tp_seq_show,
2557 /* Called when our /proc file is opened. We allocate data for use when
2558 * iterating our tunnel / session contexts and store it in the private
2559 * data of the seq_file.
2561 static int pppol2tp_proc_open(struct inode *inode, struct file *file)
2563 return seq_open_net(inode, file, &pppol2tp_seq_ops,
2564 sizeof(struct pppol2tp_seq_data));
2567 static const struct file_operations pppol2tp_proc_fops = {
2568 .owner = THIS_MODULE,
2569 .open = pppol2tp_proc_open,
2570 .read = seq_read,
2571 .llseek = seq_lseek,
2572 .release = seq_release_net,
2575 #endif /* CONFIG_PROC_FS */
2577 /*****************************************************************************
2578 * Init and cleanup
2579 *****************************************************************************/
2581 static const struct proto_ops pppol2tp_ops = {
2582 .family = AF_PPPOX,
2583 .owner = THIS_MODULE,
2584 .release = pppol2tp_release,
2585 .bind = sock_no_bind,
2586 .connect = pppol2tp_connect,
2587 .socketpair = sock_no_socketpair,
2588 .accept = sock_no_accept,
2589 .getname = pppol2tp_getname,
2590 .poll = datagram_poll,
2591 .listen = sock_no_listen,
2592 .shutdown = sock_no_shutdown,
2593 .setsockopt = pppol2tp_setsockopt,
2594 .getsockopt = pppol2tp_getsockopt,
2595 .sendmsg = pppol2tp_sendmsg,
2596 .recvmsg = pppol2tp_recvmsg,
2597 .mmap = sock_no_mmap,
2598 .ioctl = pppox_ioctl,
2601 static struct pppox_proto pppol2tp_proto = {
2602 .create = pppol2tp_create,
2603 .ioctl = pppol2tp_ioctl
2606 static __net_init int pppol2tp_init_net(struct net *net)
2608 struct pppol2tp_net *pn;
2609 struct proc_dir_entry *pde;
2610 int err;
2612 pn = kzalloc(sizeof(*pn), GFP_KERNEL);
2613 if (!pn)
2614 return -ENOMEM;
2616 INIT_LIST_HEAD(&pn->pppol2tp_tunnel_list);
2617 rwlock_init(&pn->pppol2tp_tunnel_list_lock);
2619 err = net_assign_generic(net, pppol2tp_net_id, pn);
2620 if (err)
2621 goto out;
2623 pde = proc_net_fops_create(net, "pppol2tp", S_IRUGO, &pppol2tp_proc_fops);
2624 #ifdef CONFIG_PROC_FS
2625 if (!pde) {
2626 err = -ENOMEM;
2627 goto out;
2629 #endif
2631 return 0;
2633 out:
2634 kfree(pn);
2635 return err;
2638 static __net_exit void pppol2tp_exit_net(struct net *net)
2640 struct pppoe_net *pn;
2642 proc_net_remove(net, "pppol2tp");
2643 pn = net_generic(net, pppol2tp_net_id);
2645 * if someone has cached our net then
2646 * further net_generic call will return NULL
2648 net_assign_generic(net, pppol2tp_net_id, NULL);
2649 kfree(pn);
2652 static struct pernet_operations pppol2tp_net_ops = {
2653 .init = pppol2tp_init_net,
2654 .exit = pppol2tp_exit_net,
2657 static int __init pppol2tp_init(void)
2659 int err;
2661 err = proto_register(&pppol2tp_sk_proto, 0);
2662 if (err)
2663 goto out;
2664 err = register_pppox_proto(PX_PROTO_OL2TP, &pppol2tp_proto);
2665 if (err)
2666 goto out_unregister_pppol2tp_proto;
2668 err = register_pernet_gen_device(&pppol2tp_net_id, &pppol2tp_net_ops);
2669 if (err)
2670 goto out_unregister_pppox_proto;
2672 printk(KERN_INFO "PPPoL2TP kernel driver, %s\n",
2673 PPPOL2TP_DRV_VERSION);
2675 out:
2676 return err;
2677 out_unregister_pppox_proto:
2678 unregister_pppox_proto(PX_PROTO_OL2TP);
2679 out_unregister_pppol2tp_proto:
2680 proto_unregister(&pppol2tp_sk_proto);
2681 goto out;
2684 static void __exit pppol2tp_exit(void)
2686 unregister_pppox_proto(PX_PROTO_OL2TP);
2687 unregister_pernet_gen_device(pppol2tp_net_id, &pppol2tp_net_ops);
2688 proto_unregister(&pppol2tp_sk_proto);
2691 module_init(pppol2tp_init);
2692 module_exit(pppol2tp_exit);
2694 MODULE_AUTHOR("Martijn van Oosterhout <kleptog@svana.org>, "
2695 "James Chapman <jchapman@katalix.com>");
2696 MODULE_DESCRIPTION("PPP over L2TP over UDP");
2697 MODULE_LICENSE("GPL");
2698 MODULE_VERSION(PPPOL2TP_DRV_VERSION);