1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * L2TPv3 IP encapsulation support for IPv6
5 * Copyright (c) 2012 Katalix Systems Ltd
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/icmp.h>
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
13 #include <linux/random.h>
14 #include <linux/socket.h>
15 #include <linux/l2tp.h>
17 #include <linux/in6.h>
22 #include <net/inet_common.h>
23 #include <net/tcp_states.h>
24 #include <net/protocol.h>
27 #include <net/transp_v6.h>
28 #include <net/addrconf.h>
29 #include <net/ip6_route.h>
31 #include "l2tp_core.h"
33 struct l2tp_ip6_sock
{
34 /* inet_sock has to be the first member of l2tp_ip6_sock */
35 struct inet_sock inet
;
40 /* ipv6_pinfo has to be the last member of l2tp_ip6_sock, see
42 struct ipv6_pinfo inet6
;
45 static DEFINE_RWLOCK(l2tp_ip6_lock
);
46 static struct hlist_head l2tp_ip6_table
;
47 static struct hlist_head l2tp_ip6_bind_table
;
49 static inline struct l2tp_ip6_sock
*l2tp_ip6_sk(const struct sock
*sk
)
51 return (struct l2tp_ip6_sock
*)sk
;
54 static struct sock
*__l2tp_ip6_bind_lookup(const struct net
*net
,
55 const struct in6_addr
*laddr
,
56 const struct in6_addr
*raddr
,
57 int dif
, u32 tunnel_id
)
61 sk_for_each_bound(sk
, &l2tp_ip6_bind_table
) {
62 const struct in6_addr
*sk_laddr
= inet6_rcv_saddr(sk
);
63 const struct in6_addr
*sk_raddr
= &sk
->sk_v6_daddr
;
64 const struct l2tp_ip6_sock
*l2tp
= l2tp_ip6_sk(sk
);
66 if (!net_eq(sock_net(sk
), net
))
69 if (sk
->sk_bound_dev_if
&& dif
&& sk
->sk_bound_dev_if
!= dif
)
72 if (sk_laddr
&& !ipv6_addr_any(sk_laddr
) &&
73 !ipv6_addr_any(laddr
) && !ipv6_addr_equal(sk_laddr
, laddr
))
76 if (!ipv6_addr_any(sk_raddr
) && raddr
&&
77 !ipv6_addr_any(raddr
) && !ipv6_addr_equal(sk_raddr
, raddr
))
80 if (l2tp
->conn_id
!= tunnel_id
)
91 /* When processing receive frames, there are two cases to
92 * consider. Data frames consist of a non-zero session-id and an
93 * optional cookie. Control frames consist of a regular L2TP header
94 * preceded by 32-bits of zeros.
96 * L2TPv3 Session Header Over IP
99 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
100 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
102 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
103 * | Cookie (optional, maximum 64 bits)...
104 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
108 * L2TPv3 Control Message Header Over IP
111 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
112 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
113 * | (32 bits of zeros) |
114 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
115 * |T|L|x|x|S|x|x|x|x|x|x|x| Ver | Length |
116 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
117 * | Control Connection ID |
118 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
120 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
122 * All control frames are passed to userspace.
124 static int l2tp_ip6_recv(struct sk_buff
*skb
)
126 struct net
*net
= dev_net(skb
->dev
);
130 unsigned char *ptr
, *optr
;
131 struct l2tp_session
*session
;
132 struct l2tp_tunnel
*tunnel
= NULL
;
136 if (!pskb_may_pull(skb
, 4))
139 /* Point to L2TP header */
140 optr
= ptr
= skb
->data
;
141 session_id
= ntohl(*((__be32
*) ptr
));
144 /* RFC3931: L2TP/IP packets have the first 4 bytes containing
145 * the session_id. If it is 0, the packet is a L2TP control
146 * frame and the session_id value can be discarded.
148 if (session_id
== 0) {
153 /* Ok, this is a data packet. Lookup the session. */
154 session
= l2tp_session_get(net
, session_id
);
158 tunnel
= session
->tunnel
;
162 /* Trace packet contents, if enabled */
163 if (tunnel
->debug
& L2TP_MSG_DATA
) {
164 length
= min(32u, skb
->len
);
165 if (!pskb_may_pull(skb
, length
))
168 /* Point to L2TP header */
169 optr
= ptr
= skb
->data
;
171 pr_debug("%s: ip recv\n", tunnel
->name
);
172 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET
, ptr
, length
);
175 if (l2tp_v3_ensure_opt_in_linear(session
, skb
, &ptr
, &optr
))
178 l2tp_recv_common(session
, skb
, ptr
, optr
, 0, skb
->len
);
179 l2tp_session_dec_refcount(session
);
184 /* Get the tunnel_id from the L2TP header */
185 if (!pskb_may_pull(skb
, 12))
188 if ((skb
->data
[0] & 0xc0) != 0xc0)
191 tunnel_id
= ntohl(*(__be32
*) &skb
->data
[4]);
194 read_lock_bh(&l2tp_ip6_lock
);
195 sk
= __l2tp_ip6_bind_lookup(net
, &iph
->daddr
, &iph
->saddr
,
196 inet6_iif(skb
), tunnel_id
);
198 read_unlock_bh(&l2tp_ip6_lock
);
202 read_unlock_bh(&l2tp_ip6_lock
);
204 if (!xfrm6_policy_check(sk
, XFRM_POLICY_IN
, skb
))
209 return sk_receive_skb(sk
, skb
, 1);
212 l2tp_session_dec_refcount(session
);
223 static int l2tp_ip6_hash(struct sock
*sk
)
225 if (sk_unhashed(sk
)) {
226 write_lock_bh(&l2tp_ip6_lock
);
227 sk_add_node(sk
, &l2tp_ip6_table
);
228 write_unlock_bh(&l2tp_ip6_lock
);
233 static void l2tp_ip6_unhash(struct sock
*sk
)
237 write_lock_bh(&l2tp_ip6_lock
);
238 sk_del_node_init(sk
);
239 write_unlock_bh(&l2tp_ip6_lock
);
242 static int l2tp_ip6_open(struct sock
*sk
)
244 /* Prevent autobind. We don't have ports. */
245 inet_sk(sk
)->inet_num
= IPPROTO_L2TP
;
251 static void l2tp_ip6_close(struct sock
*sk
, long timeout
)
253 write_lock_bh(&l2tp_ip6_lock
);
254 hlist_del_init(&sk
->sk_bind_node
);
255 sk_del_node_init(sk
);
256 write_unlock_bh(&l2tp_ip6_lock
);
258 sk_common_release(sk
);
261 static void l2tp_ip6_destroy_sock(struct sock
*sk
)
263 struct l2tp_tunnel
*tunnel
= sk
->sk_user_data
;
266 ip6_flush_pending_frames(sk
);
270 l2tp_tunnel_delete(tunnel
);
272 inet6_destroy_sock(sk
);
275 static int l2tp_ip6_bind(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
277 struct inet_sock
*inet
= inet_sk(sk
);
278 struct ipv6_pinfo
*np
= inet6_sk(sk
);
279 struct sockaddr_l2tpip6
*addr
= (struct sockaddr_l2tpip6
*) uaddr
;
280 struct net
*net
= sock_net(sk
);
286 if (addr
->l2tp_family
!= AF_INET6
)
288 if (addr_len
< sizeof(*addr
))
291 addr_type
= ipv6_addr_type(&addr
->l2tp_addr
);
293 /* l2tp_ip6 sockets are IPv6 only */
294 if (addr_type
== IPV6_ADDR_MAPPED
)
295 return -EADDRNOTAVAIL
;
297 /* L2TP is point-point, not multicast */
298 if (addr_type
& IPV6_ADDR_MULTICAST
)
299 return -EADDRNOTAVAIL
;
304 if (!sock_flag(sk
, SOCK_ZAPPED
))
307 if (sk
->sk_state
!= TCP_CLOSE
)
310 bound_dev_if
= sk
->sk_bound_dev_if
;
312 /* Check if the address belongs to the host. */
314 if (addr_type
!= IPV6_ADDR_ANY
) {
315 struct net_device
*dev
= NULL
;
317 if (addr_type
& IPV6_ADDR_LINKLOCAL
) {
318 if (addr
->l2tp_scope_id
)
319 bound_dev_if
= addr
->l2tp_scope_id
;
321 /* Binding to link-local address requires an
328 dev
= dev_get_by_index_rcu(sock_net(sk
), bound_dev_if
);
333 /* ipv4 addr of the socket is invalid. Only the
334 * unspecified and mapped address have a v4 equivalent.
336 v4addr
= LOOPBACK4_IPV6
;
337 err
= -EADDRNOTAVAIL
;
338 if (!ipv6_chk_addr(sock_net(sk
), &addr
->l2tp_addr
, dev
, 0))
343 write_lock_bh(&l2tp_ip6_lock
);
344 if (__l2tp_ip6_bind_lookup(net
, &addr
->l2tp_addr
, NULL
, bound_dev_if
,
345 addr
->l2tp_conn_id
)) {
346 write_unlock_bh(&l2tp_ip6_lock
);
351 inet
->inet_saddr
= v4addr
;
352 inet
->inet_rcv_saddr
= v4addr
;
353 sk
->sk_bound_dev_if
= bound_dev_if
;
354 sk
->sk_v6_rcv_saddr
= addr
->l2tp_addr
;
355 np
->saddr
= addr
->l2tp_addr
;
357 l2tp_ip6_sk(sk
)->conn_id
= addr
->l2tp_conn_id
;
359 sk_add_bind_node(sk
, &l2tp_ip6_bind_table
);
360 sk_del_node_init(sk
);
361 write_unlock_bh(&l2tp_ip6_lock
);
363 sock_reset_flag(sk
, SOCK_ZAPPED
);
375 static int l2tp_ip6_connect(struct sock
*sk
, struct sockaddr
*uaddr
,
378 struct sockaddr_l2tpip6
*lsa
= (struct sockaddr_l2tpip6
*) uaddr
;
379 struct sockaddr_in6
*usin
= (struct sockaddr_in6
*) uaddr
;
380 struct in6_addr
*daddr
;
384 if (addr_len
< sizeof(*lsa
))
387 if (usin
->sin6_family
!= AF_INET6
)
390 addr_type
= ipv6_addr_type(&usin
->sin6_addr
);
391 if (addr_type
& IPV6_ADDR_MULTICAST
)
394 if (addr_type
& IPV6_ADDR_MAPPED
) {
395 daddr
= &usin
->sin6_addr
;
396 if (ipv4_is_multicast(daddr
->s6_addr32
[3]))
402 /* Must bind first - autobinding does not work */
403 if (sock_flag(sk
, SOCK_ZAPPED
)) {
408 rc
= __ip6_datagram_connect(sk
, uaddr
, addr_len
);
412 l2tp_ip6_sk(sk
)->peer_conn_id
= lsa
->l2tp_conn_id
;
414 write_lock_bh(&l2tp_ip6_lock
);
415 hlist_del_init(&sk
->sk_bind_node
);
416 sk_add_bind_node(sk
, &l2tp_ip6_bind_table
);
417 write_unlock_bh(&l2tp_ip6_lock
);
425 static int l2tp_ip6_disconnect(struct sock
*sk
, int flags
)
427 if (sock_flag(sk
, SOCK_ZAPPED
))
430 return __udp_disconnect(sk
, flags
);
433 static int l2tp_ip6_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
436 struct sockaddr_l2tpip6
*lsa
= (struct sockaddr_l2tpip6
*)uaddr
;
437 struct sock
*sk
= sock
->sk
;
438 struct ipv6_pinfo
*np
= inet6_sk(sk
);
439 struct l2tp_ip6_sock
*lsk
= l2tp_ip6_sk(sk
);
441 lsa
->l2tp_family
= AF_INET6
;
442 lsa
->l2tp_flowinfo
= 0;
443 lsa
->l2tp_scope_id
= 0;
444 lsa
->l2tp_unused
= 0;
446 if (!lsk
->peer_conn_id
)
448 lsa
->l2tp_conn_id
= lsk
->peer_conn_id
;
449 lsa
->l2tp_addr
= sk
->sk_v6_daddr
;
451 lsa
->l2tp_flowinfo
= np
->flow_label
;
453 if (ipv6_addr_any(&sk
->sk_v6_rcv_saddr
))
454 lsa
->l2tp_addr
= np
->saddr
;
456 lsa
->l2tp_addr
= sk
->sk_v6_rcv_saddr
;
458 lsa
->l2tp_conn_id
= lsk
->conn_id
;
460 if (ipv6_addr_type(&lsa
->l2tp_addr
) & IPV6_ADDR_LINKLOCAL
)
461 lsa
->l2tp_scope_id
= sk
->sk_bound_dev_if
;
465 static int l2tp_ip6_backlog_recv(struct sock
*sk
, struct sk_buff
*skb
)
469 /* Charge it to the socket, dropping if the queue is full. */
470 rc
= sock_queue_rcv_skb(sk
, skb
);
477 IP_INC_STATS(sock_net(sk
), IPSTATS_MIB_INDISCARDS
);
482 static int l2tp_ip6_push_pending_frames(struct sock
*sk
)
485 __be32
*transhdr
= NULL
;
488 skb
= skb_peek(&sk
->sk_write_queue
);
492 transhdr
= (__be32
*)skb_transport_header(skb
);
495 err
= ip6_push_pending_frames(sk
);
501 /* Userspace will call sendmsg() on the tunnel socket to send L2TP
504 static int l2tp_ip6_sendmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
)
506 struct ipv6_txoptions opt_space
;
507 DECLARE_SOCKADDR(struct sockaddr_l2tpip6
*, lsa
, msg
->msg_name
);
508 struct in6_addr
*daddr
, *final_p
, final
;
509 struct ipv6_pinfo
*np
= inet6_sk(sk
);
510 struct ipv6_txoptions
*opt_to_free
= NULL
;
511 struct ipv6_txoptions
*opt
= NULL
;
512 struct ip6_flowlabel
*flowlabel
= NULL
;
513 struct dst_entry
*dst
= NULL
;
515 struct ipcm6_cookie ipc6
;
516 int addr_len
= msg
->msg_namelen
;
517 int transhdrlen
= 4; /* zero session-id */
518 int ulen
= len
+ transhdrlen
;
521 /* Rough check on arithmetic overflow,
522 better check is made in ip6_append_data().
527 /* Mirror BSD error message compatibility */
528 if (msg
->msg_flags
& MSG_OOB
)
532 * Get and verify the address.
534 memset(&fl6
, 0, sizeof(fl6
));
536 fl6
.flowi6_mark
= sk
->sk_mark
;
537 fl6
.flowi6_uid
= sk
->sk_uid
;
542 if (addr_len
< SIN6_LEN_RFC2133
)
545 if (lsa
->l2tp_family
&& lsa
->l2tp_family
!= AF_INET6
)
546 return -EAFNOSUPPORT
;
548 daddr
= &lsa
->l2tp_addr
;
550 fl6
.flowlabel
= lsa
->l2tp_flowinfo
& IPV6_FLOWINFO_MASK
;
551 if (fl6
.flowlabel
&IPV6_FLOWLABEL_MASK
) {
552 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
553 if (IS_ERR(flowlabel
))
559 * Otherwise it will be difficult to maintain
562 if (sk
->sk_state
== TCP_ESTABLISHED
&&
563 ipv6_addr_equal(daddr
, &sk
->sk_v6_daddr
))
564 daddr
= &sk
->sk_v6_daddr
;
566 if (addr_len
>= sizeof(struct sockaddr_in6
) &&
567 lsa
->l2tp_scope_id
&&
568 ipv6_addr_type(daddr
) & IPV6_ADDR_LINKLOCAL
)
569 fl6
.flowi6_oif
= lsa
->l2tp_scope_id
;
571 if (sk
->sk_state
!= TCP_ESTABLISHED
)
572 return -EDESTADDRREQ
;
574 daddr
= &sk
->sk_v6_daddr
;
575 fl6
.flowlabel
= np
->flow_label
;
578 if (fl6
.flowi6_oif
== 0)
579 fl6
.flowi6_oif
= sk
->sk_bound_dev_if
;
581 if (msg
->msg_controllen
) {
583 memset(opt
, 0, sizeof(struct ipv6_txoptions
));
584 opt
->tot_len
= sizeof(struct ipv6_txoptions
);
587 err
= ip6_datagram_send_ctl(sock_net(sk
), sk
, msg
, &fl6
, &ipc6
);
589 fl6_sock_release(flowlabel
);
592 if ((fl6
.flowlabel
& IPV6_FLOWLABEL_MASK
) && !flowlabel
) {
593 flowlabel
= fl6_sock_lookup(sk
, fl6
.flowlabel
);
594 if (IS_ERR(flowlabel
))
597 if (!(opt
->opt_nflen
|opt
->opt_flen
))
606 opt
= fl6_merge_options(&opt_space
, flowlabel
, opt
);
607 opt
= ipv6_fixup_options(&opt_space
, opt
);
610 fl6
.flowi6_proto
= sk
->sk_protocol
;
611 if (!ipv6_addr_any(daddr
))
614 fl6
.daddr
.s6_addr
[15] = 0x1; /* :: means loopback (BSD'ism) */
615 if (ipv6_addr_any(&fl6
.saddr
) && !ipv6_addr_any(&np
->saddr
))
616 fl6
.saddr
= np
->saddr
;
618 final_p
= fl6_update_dst(&fl6
, opt
, &final
);
620 if (!fl6
.flowi6_oif
&& ipv6_addr_is_multicast(&fl6
.daddr
))
621 fl6
.flowi6_oif
= np
->mcast_oif
;
622 else if (!fl6
.flowi6_oif
)
623 fl6
.flowi6_oif
= np
->ucast_oif
;
625 security_sk_classify_flow(sk
, flowi6_to_flowi(&fl6
));
628 ipc6
.tclass
= np
->tclass
;
630 fl6
.flowlabel
= ip6_make_flowinfo(ipc6
.tclass
, fl6
.flowlabel
);
632 dst
= ip6_dst_lookup_flow(sock_net(sk
), sk
, &fl6
, final_p
);
639 ipc6
.hlimit
= ip6_sk_dst_hoplimit(np
, &fl6
, dst
);
641 if (ipc6
.dontfrag
< 0)
642 ipc6
.dontfrag
= np
->dontfrag
;
644 if (msg
->msg_flags
& MSG_CONFIRM
)
649 err
= ip6_append_data(sk
, ip_generic_getfrag
, msg
,
650 ulen
, transhdrlen
, &ipc6
,
651 &fl6
, (struct rt6_info
*)dst
,
654 ip6_flush_pending_frames(sk
);
655 else if (!(msg
->msg_flags
& MSG_MORE
))
656 err
= l2tp_ip6_push_pending_frames(sk
);
661 fl6_sock_release(flowlabel
);
662 txopt_put(opt_to_free
);
664 return err
< 0 ? err
: len
;
667 if (msg
->msg_flags
& MSG_PROBE
)
668 dst_confirm_neigh(dst
, &fl6
.daddr
);
669 if (!(msg
->msg_flags
& MSG_PROBE
) || len
)
670 goto back_from_confirm
;
675 static int l2tp_ip6_recvmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
,
676 int noblock
, int flags
, int *addr_len
)
678 struct ipv6_pinfo
*np
= inet6_sk(sk
);
679 DECLARE_SOCKADDR(struct sockaddr_l2tpip6
*, lsa
, msg
->msg_name
);
681 int err
= -EOPNOTSUPP
;
687 if (flags
& MSG_ERRQUEUE
)
688 return ipv6_recv_error(sk
, msg
, len
, addr_len
);
690 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
696 msg
->msg_flags
|= MSG_TRUNC
;
700 err
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
704 sock_recv_timestamp(msg
, sk
, skb
);
706 /* Copy the address. */
708 lsa
->l2tp_family
= AF_INET6
;
709 lsa
->l2tp_unused
= 0;
710 lsa
->l2tp_addr
= ipv6_hdr(skb
)->saddr
;
711 lsa
->l2tp_flowinfo
= 0;
712 lsa
->l2tp_scope_id
= 0;
713 lsa
->l2tp_conn_id
= 0;
714 if (ipv6_addr_type(&lsa
->l2tp_addr
) & IPV6_ADDR_LINKLOCAL
)
715 lsa
->l2tp_scope_id
= inet6_iif(skb
);
716 *addr_len
= sizeof(*lsa
);
720 ip6_datagram_recv_ctl(sk
, msg
, skb
);
722 if (flags
& MSG_TRUNC
)
725 skb_free_datagram(sk
, skb
);
727 return err
? err
: copied
;
730 static struct proto l2tp_ip6_prot
= {
732 .owner
= THIS_MODULE
,
733 .init
= l2tp_ip6_open
,
734 .close
= l2tp_ip6_close
,
735 .bind
= l2tp_ip6_bind
,
736 .connect
= l2tp_ip6_connect
,
737 .disconnect
= l2tp_ip6_disconnect
,
739 .destroy
= l2tp_ip6_destroy_sock
,
740 .setsockopt
= ipv6_setsockopt
,
741 .getsockopt
= ipv6_getsockopt
,
742 .sendmsg
= l2tp_ip6_sendmsg
,
743 .recvmsg
= l2tp_ip6_recvmsg
,
744 .backlog_rcv
= l2tp_ip6_backlog_recv
,
745 .hash
= l2tp_ip6_hash
,
746 .unhash
= l2tp_ip6_unhash
,
747 .obj_size
= sizeof(struct l2tp_ip6_sock
),
749 .compat_setsockopt
= compat_ipv6_setsockopt
,
750 .compat_getsockopt
= compat_ipv6_getsockopt
,
754 static const struct proto_ops l2tp_ip6_ops
= {
756 .owner
= THIS_MODULE
,
757 .release
= inet6_release
,
759 .connect
= inet_dgram_connect
,
760 .socketpair
= sock_no_socketpair
,
761 .accept
= sock_no_accept
,
762 .getname
= l2tp_ip6_getname
,
763 .poll
= datagram_poll
,
764 .ioctl
= inet6_ioctl
,
765 .gettstamp
= sock_gettstamp
,
766 .listen
= sock_no_listen
,
767 .shutdown
= inet_shutdown
,
768 .setsockopt
= sock_common_setsockopt
,
769 .getsockopt
= sock_common_getsockopt
,
770 .sendmsg
= inet_sendmsg
,
771 .recvmsg
= sock_common_recvmsg
,
772 .mmap
= sock_no_mmap
,
773 .sendpage
= sock_no_sendpage
,
775 .compat_setsockopt
= compat_sock_common_setsockopt
,
776 .compat_getsockopt
= compat_sock_common_getsockopt
,
780 static struct inet_protosw l2tp_ip6_protosw
= {
782 .protocol
= IPPROTO_L2TP
,
783 .prot
= &l2tp_ip6_prot
,
784 .ops
= &l2tp_ip6_ops
,
787 static struct inet6_protocol l2tp_ip6_protocol __read_mostly
= {
788 .handler
= l2tp_ip6_recv
,
791 static int __init
l2tp_ip6_init(void)
795 pr_info("L2TP IP encapsulation support for IPv6 (L2TPv3)\n");
797 err
= proto_register(&l2tp_ip6_prot
, 1);
801 err
= inet6_add_protocol(&l2tp_ip6_protocol
, IPPROTO_L2TP
);
805 inet6_register_protosw(&l2tp_ip6_protosw
);
809 proto_unregister(&l2tp_ip6_prot
);
814 static void __exit
l2tp_ip6_exit(void)
816 inet6_unregister_protosw(&l2tp_ip6_protosw
);
817 inet6_del_protocol(&l2tp_ip6_protocol
, IPPROTO_L2TP
);
818 proto_unregister(&l2tp_ip6_prot
);
821 module_init(l2tp_ip6_init
);
822 module_exit(l2tp_ip6_exit
);
824 MODULE_LICENSE("GPL");
825 MODULE_AUTHOR("Chris Elston <celston@katalix.com>");
826 MODULE_DESCRIPTION("L2TP IP encapsulation for IPv6");
827 MODULE_VERSION("1.0");
829 /* Use the value of SOCK_DGRAM (2) directory, because __stringify doesn't like
832 MODULE_ALIAS_NET_PF_PROTO_TYPE(PF_INET6
, 2, IPPROTO_L2TP
);
833 MODULE_ALIAS_NET_PF_PROTO(PF_INET6
, IPPROTO_L2TP
);