1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* SCTP kernel implementation
3 * (C) Copyright IBM Corp. 2002, 2004
4 * Copyright (c) 2001 Nokia, Inc.
5 * Copyright (c) 2001 La Monte H.P. Yarroll
6 * Copyright (c) 2002-2003 Intel Corp.
8 * This file is part of the SCTP kernel implementation
12 * Please send any bug reports or fixes you make to the
16 * Written or modified by:
25 * linux/net/ipv6/tcp_ipv6.c
28 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30 #include <linux/module.h>
31 #include <linux/errno.h>
32 #include <linux/types.h>
33 #include <linux/socket.h>
34 #include <linux/sockios.h>
35 #include <linux/net.h>
37 #include <linux/in6.h>
38 #include <linux/netdevice.h>
39 #include <linux/init.h>
40 #include <linux/ipsec.h>
41 #include <linux/slab.h>
43 #include <linux/ipv6.h>
44 #include <linux/icmpv6.h>
45 #include <linux/random.h>
46 #include <linux/seq_file.h>
48 #include <net/protocol.h>
49 #include <net/ndisc.h>
52 #include <net/transp_v6.h>
53 #include <net/addrconf.h>
54 #include <net/ip6_route.h>
55 #include <net/inet_common.h>
56 #include <net/inet_ecn.h>
57 #include <net/sctp/sctp.h>
58 #include <net/udp_tunnel.h>
60 #include <linux/uaccess.h>
62 static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
64 static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
66 static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
67 const union sctp_addr *addr2);
69 /* Event handler for inet6 address addition/deletion events.
70 * The sctp_local_addr_list needs to be protocted by a spin lock since
71 * multiple notifiers (say IPv4 and IPv6) may be running at the same
72 * time and thus corrupt the list.
73 * The reader side is protected with RCU.
75 static int sctp_inet6addr_event(struct notifier_block *this, unsigned long ev,
78 struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
79 struct sctp_sockaddr_entry *addr = NULL;
80 struct sctp_sockaddr_entry *temp;
81 struct net *net = dev_net(ifa->idev->dev);
86 addr = kzalloc(sizeof(*addr), GFP_ATOMIC);
88 addr->a.v6.sin6_family = AF_INET6;
89 addr->a.v6.sin6_addr = ifa->addr;
90 addr->a.v6.sin6_scope_id = ifa->idev->dev->ifindex;
92 spin_lock_bh(&net->sctp.local_addr_lock);
93 list_add_tail_rcu(&addr->list, &net->sctp.local_addr_list);
94 sctp_addr_wq_mgmt(net, addr, SCTP_ADDR_NEW);
95 spin_unlock_bh(&net->sctp.local_addr_lock);
99 spin_lock_bh(&net->sctp.local_addr_lock);
100 list_for_each_entry_safe(addr, temp,
101 &net->sctp.local_addr_list, list) {
102 if (addr->a.sa.sa_family == AF_INET6 &&
103 ipv6_addr_equal(&addr->a.v6.sin6_addr,
105 sctp_addr_wq_mgmt(net, addr, SCTP_ADDR_DEL);
108 list_del_rcu(&addr->list);
112 spin_unlock_bh(&net->sctp.local_addr_lock);
114 kfree_rcu(addr, rcu);
121 static struct notifier_block sctp_inet6addr_notifier = {
122 .notifier_call = sctp_inet6addr_event,
125 /* ICMP error handler. */
126 static int sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
127 u8 type, u8 code, int offset, __be32 info)
129 struct inet6_dev *idev;
131 struct sctp_association *asoc;
132 struct sctp_transport *transport;
133 struct ipv6_pinfo *np;
134 __u16 saveip, savesctp;
136 struct net *net = dev_net(skb->dev);
138 idev = in6_dev_get(skb->dev);
140 /* Fix up skb to look at the embedded net header. */
141 saveip = skb->network_header;
142 savesctp = skb->transport_header;
143 skb_reset_network_header(skb);
144 skb_set_transport_header(skb, offset);
145 sk = sctp_err_lookup(net, AF_INET6, skb, sctp_hdr(skb), &asoc, &transport);
146 /* Put back, the original pointers. */
147 skb->network_header = saveip;
148 skb->transport_header = savesctp;
150 __ICMP6_INC_STATS(net, idev, ICMP6_MIB_INERRORS);
155 /* Warning: The sock lock is held. Remember to call
160 case ICMPV6_PKT_TOOBIG:
161 if (ip6_sk_accept_pmtu(sk))
162 sctp_icmp_frag_needed(sk, asoc, transport, ntohl(info));
164 case ICMPV6_PARAMPROB:
165 if (ICMPV6_UNK_NEXTHDR == code) {
166 sctp_icmp_proto_unreachable(sk, asoc, transport);
171 sctp_icmp_redirect(sk, transport, skb);
178 icmpv6_err_convert(type, code, &err);
179 if (!sock_owned_by_user(sk) && np->recverr) {
181 sk->sk_error_report(sk);
182 } else { /* Only an error on timeout */
183 sk->sk_err_soft = err;
187 sctp_err_finish(sk, transport);
189 if (likely(idev != NULL))
195 static int sctp_v6_xmit(struct sk_buff *skb, struct sctp_transport *t)
197 struct dst_entry *dst = dst_clone(t->dst);
198 struct flowi6 *fl6 = &t->fl.u.ip6;
199 struct sock *sk = skb->sk;
200 struct ipv6_pinfo *np = inet6_sk(sk);
201 __u8 tclass = np->tclass;
204 pr_debug("%s: skb:%p, len:%d, src:%pI6 dst:%pI6\n", __func__, skb,
205 skb->len, &fl6->saddr, &fl6->daddr);
207 if (t->dscp & SCTP_DSCP_SET_MASK)
208 tclass = t->dscp & SCTP_DSCP_VAL_MASK;
210 if (INET_ECN_is_capable(tclass))
211 IP6_ECN_flow_xmit(sk, fl6->flowlabel);
213 if (!(t->param_flags & SPP_PMTUD_ENABLE))
216 SCTP_INC_STATS(sock_net(sk), SCTP_MIB_OUTSCTPPACKS);
218 if (!t->encap_port || !sctp_sk(sk)->udp_port) {
221 skb_dst_set(skb, dst);
223 res = ip6_xmit(sk, skb, fl6, sk->sk_mark,
224 rcu_dereference(np->opt),
225 tclass, sk->sk_priority);
231 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
233 skb->encapsulation = 1;
234 skb_reset_inner_mac_header(skb);
235 skb_reset_inner_transport_header(skb);
236 skb_set_inner_ipproto(skb, IPPROTO_SCTP);
237 label = ip6_make_flowlabel(sock_net(sk), skb, fl6->flowlabel, true, fl6);
239 return udp_tunnel6_xmit_skb(dst, sk, skb, NULL, &fl6->saddr,
240 &fl6->daddr, tclass, ip6_dst_hoplimit(dst),
241 label, sctp_sk(sk)->udp_port, t->encap_port, false);
244 /* Returns the dst cache entry for the given source and destination ip
247 static void sctp_v6_get_dst(struct sctp_transport *t, union sctp_addr *saddr,
248 struct flowi *fl, struct sock *sk)
250 struct sctp_association *asoc = t->asoc;
251 struct dst_entry *dst = NULL;
253 struct flowi6 *fl6 = &_fl.u.ip6;
254 struct sctp_bind_addr *bp;
255 struct ipv6_pinfo *np = inet6_sk(sk);
256 struct sctp_sockaddr_entry *laddr;
257 union sctp_addr *daddr = &t->ipaddr;
258 union sctp_addr dst_saddr;
259 struct in6_addr *final_p, final;
260 enum sctp_scope scope;
263 memset(&_fl, 0, sizeof(_fl));
264 fl6->daddr = daddr->v6.sin6_addr;
265 fl6->fl6_dport = daddr->v6.sin6_port;
266 fl6->flowi6_proto = IPPROTO_SCTP;
267 if (ipv6_addr_type(&daddr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
268 fl6->flowi6_oif = daddr->v6.sin6_scope_id;
270 fl6->flowi6_oif = asoc->base.sk->sk_bound_dev_if;
271 if (t->flowlabel & SCTP_FLOWLABEL_SET_MASK)
272 fl6->flowlabel = htonl(t->flowlabel & SCTP_FLOWLABEL_VAL_MASK);
274 if (np->sndflow && (fl6->flowlabel & IPV6_FLOWLABEL_MASK)) {
275 struct ip6_flowlabel *flowlabel;
277 flowlabel = fl6_sock_lookup(sk, fl6->flowlabel);
278 if (IS_ERR(flowlabel))
280 fl6_sock_release(flowlabel);
283 pr_debug("%s: dst=%pI6 ", __func__, &fl6->daddr);
286 fl6->fl6_sport = htons(asoc->base.bind_addr.port);
289 fl6->saddr = saddr->v6.sin6_addr;
291 fl6->fl6_sport = saddr->v6.sin6_port;
293 pr_debug("src=%pI6 - ", &fl6->saddr);
297 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final);
300 dst = ip6_dst_lookup_flow(sock_net(sk), sk, fl6, final_p);
301 if (!asoc || saddr) {
303 memcpy(fl, &_fl, sizeof(_fl));
307 bp = &asoc->base.bind_addr;
308 scope = sctp_scope(daddr);
309 /* ip6_dst_lookup has filled in the fl6->saddr for us. Check
310 * to see if we can use it.
313 /* Walk through the bind address list and look for a bind
314 * address that matches the source address of the returned dst.
316 sctp_v6_to_addr(&dst_saddr, &fl6->saddr, htons(bp->port));
318 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
319 if (!laddr->valid || laddr->state == SCTP_ADDR_DEL ||
320 (laddr->state != SCTP_ADDR_SRC &&
321 !asoc->src_out_of_asoc_ok))
324 /* Do not compare against v4 addrs */
325 if ((laddr->a.sa.sa_family == AF_INET6) &&
326 (sctp_v6_cmp_addr(&dst_saddr, &laddr->a))) {
329 memcpy(fl, &_fl, sizeof(_fl));
334 /* None of the bound addresses match the source address of the
335 * dst. So release it.
341 /* Walk through the bind address list and try to get the
342 * best source address for a given destination.
345 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
346 struct dst_entry *bdst;
350 laddr->state != SCTP_ADDR_SRC ||
351 laddr->a.sa.sa_family != AF_INET6 ||
352 scope > sctp_scope(&laddr->a))
355 fl6->saddr = laddr->a.v6.sin6_addr;
356 fl6->fl6_sport = laddr->a.v6.sin6_port;
357 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final);
358 bdst = ip6_dst_lookup_flow(sock_net(sk), sk, fl6, final_p);
363 if (ipv6_chk_addr(dev_net(bdst->dev),
364 &laddr->a.v6.sin6_addr, bdst->dev, 1)) {
365 if (!IS_ERR_OR_NULL(dst))
369 memcpy(fl, &_fl, sizeof(_fl));
373 bmatchlen = sctp_v6_addr_match_len(daddr, &laddr->a);
374 if (matchlen > bmatchlen) {
379 if (!IS_ERR_OR_NULL(dst))
382 matchlen = bmatchlen;
384 memcpy(fl, &_fl, sizeof(_fl));
389 if (!IS_ERR_OR_NULL(dst)) {
392 rt = (struct rt6_info *)dst;
393 t->dst_cookie = rt6_get_cookie(rt);
394 pr_debug("rt6_dst:%pI6/%d rt6_src:%pI6\n",
395 &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
399 pr_debug("no route\n");
403 /* Returns the number of consecutive initial bits that match in the 2 ipv6
406 static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
409 return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr);
412 /* Fills in the source address(saddr) based on the destination address(daddr)
413 * and asoc's bind address list.
415 static void sctp_v6_get_saddr(struct sctp_sock *sk,
416 struct sctp_transport *t,
419 struct flowi6 *fl6 = &fl->u.ip6;
420 union sctp_addr *saddr = &t->saddr;
422 pr_debug("%s: asoc:%p dst:%p\n", __func__, t->asoc, t->dst);
425 saddr->v6.sin6_family = AF_INET6;
426 saddr->v6.sin6_addr = fl6->saddr;
430 /* Make a copy of all potential local addresses. */
431 static void sctp_v6_copy_addrlist(struct list_head *addrlist,
432 struct net_device *dev)
434 struct inet6_dev *in6_dev;
435 struct inet6_ifaddr *ifp;
436 struct sctp_sockaddr_entry *addr;
439 if ((in6_dev = __in6_dev_get(dev)) == NULL) {
444 read_lock_bh(&in6_dev->lock);
445 list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
446 /* Add the address to the local list. */
447 addr = kzalloc(sizeof(*addr), GFP_ATOMIC);
449 addr->a.v6.sin6_family = AF_INET6;
450 addr->a.v6.sin6_addr = ifp->addr;
451 addr->a.v6.sin6_scope_id = dev->ifindex;
453 INIT_LIST_HEAD(&addr->list);
454 list_add_tail(&addr->list, addrlist);
458 read_unlock_bh(&in6_dev->lock);
462 /* Copy over any ip options */
463 static void sctp_v6_copy_ip_options(struct sock *sk, struct sock *newsk)
465 struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
466 struct ipv6_txoptions *opt;
468 newnp = inet6_sk(newsk);
471 opt = rcu_dereference(np->opt);
473 opt = ipv6_dup_options(newsk, opt);
475 pr_err("%s: Failed to copy ip options\n", __func__);
477 RCU_INIT_POINTER(newnp->opt, opt);
481 /* Account for the IP options */
482 static int sctp_v6_ip_options_len(struct sock *sk)
484 struct ipv6_pinfo *np = inet6_sk(sk);
485 struct ipv6_txoptions *opt;
489 opt = rcu_dereference(np->opt);
491 len = opt->opt_flen + opt->opt_nflen;
497 /* Initialize a sockaddr_storage from in incoming skb. */
498 static void sctp_v6_from_skb(union sctp_addr *addr, struct sk_buff *skb,
501 /* Always called on head skb, so this is safe */
502 struct sctphdr *sh = sctp_hdr(skb);
503 struct sockaddr_in6 *sa = &addr->v6;
505 addr->v6.sin6_family = AF_INET6;
506 addr->v6.sin6_flowinfo = 0; /* FIXME */
507 addr->v6.sin6_scope_id = ((struct inet6_skb_parm *)skb->cb)->iif;
510 sa->sin6_port = sh->source;
511 sa->sin6_addr = ipv6_hdr(skb)->saddr;
513 sa->sin6_port = sh->dest;
514 sa->sin6_addr = ipv6_hdr(skb)->daddr;
518 /* Initialize an sctp_addr from a socket. */
519 static void sctp_v6_from_sk(union sctp_addr *addr, struct sock *sk)
521 addr->v6.sin6_family = AF_INET6;
522 addr->v6.sin6_port = 0;
523 addr->v6.sin6_addr = sk->sk_v6_rcv_saddr;
526 /* Initialize sk->sk_rcv_saddr from sctp_addr. */
527 static void sctp_v6_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
529 if (addr->sa.sa_family == AF_INET) {
530 sk->sk_v6_rcv_saddr.s6_addr32[0] = 0;
531 sk->sk_v6_rcv_saddr.s6_addr32[1] = 0;
532 sk->sk_v6_rcv_saddr.s6_addr32[2] = htonl(0x0000ffff);
533 sk->sk_v6_rcv_saddr.s6_addr32[3] =
534 addr->v4.sin_addr.s_addr;
536 sk->sk_v6_rcv_saddr = addr->v6.sin6_addr;
540 /* Initialize sk->sk_daddr from sctp_addr. */
541 static void sctp_v6_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
543 if (addr->sa.sa_family == AF_INET) {
544 sk->sk_v6_daddr.s6_addr32[0] = 0;
545 sk->sk_v6_daddr.s6_addr32[1] = 0;
546 sk->sk_v6_daddr.s6_addr32[2] = htonl(0x0000ffff);
547 sk->sk_v6_daddr.s6_addr32[3] = addr->v4.sin_addr.s_addr;
549 sk->sk_v6_daddr = addr->v6.sin6_addr;
553 /* Initialize a sctp_addr from an address parameter. */
554 static void sctp_v6_from_addr_param(union sctp_addr *addr,
555 union sctp_addr_param *param,
556 __be16 port, int iif)
558 addr->v6.sin6_family = AF_INET6;
559 addr->v6.sin6_port = port;
560 addr->v6.sin6_flowinfo = 0; /* BUG */
561 addr->v6.sin6_addr = param->v6.addr;
562 addr->v6.sin6_scope_id = iif;
565 /* Initialize an address parameter from a sctp_addr and return the length
566 * of the address parameter.
568 static int sctp_v6_to_addr_param(const union sctp_addr *addr,
569 union sctp_addr_param *param)
571 int length = sizeof(struct sctp_ipv6addr_param);
573 param->v6.param_hdr.type = SCTP_PARAM_IPV6_ADDRESS;
574 param->v6.param_hdr.length = htons(length);
575 param->v6.addr = addr->v6.sin6_addr;
580 /* Initialize a sctp_addr from struct in6_addr. */
581 static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
584 addr->sa.sa_family = AF_INET6;
585 addr->v6.sin6_port = port;
586 addr->v6.sin6_flowinfo = 0;
587 addr->v6.sin6_addr = *saddr;
588 addr->v6.sin6_scope_id = 0;
591 static int __sctp_v6_cmp_addr(const union sctp_addr *addr1,
592 const union sctp_addr *addr2)
594 if (addr1->sa.sa_family != addr2->sa.sa_family) {
595 if (addr1->sa.sa_family == AF_INET &&
596 addr2->sa.sa_family == AF_INET6 &&
597 ipv6_addr_v4mapped(&addr2->v6.sin6_addr) &&
598 addr2->v6.sin6_addr.s6_addr32[3] ==
599 addr1->v4.sin_addr.s_addr)
602 if (addr2->sa.sa_family == AF_INET &&
603 addr1->sa.sa_family == AF_INET6 &&
604 ipv6_addr_v4mapped(&addr1->v6.sin6_addr) &&
605 addr1->v6.sin6_addr.s6_addr32[3] ==
606 addr2->v4.sin_addr.s_addr)
612 if (!ipv6_addr_equal(&addr1->v6.sin6_addr, &addr2->v6.sin6_addr))
615 /* If this is a linklocal address, compare the scope_id. */
616 if ((ipv6_addr_type(&addr1->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL) &&
617 addr1->v6.sin6_scope_id && addr2->v6.sin6_scope_id &&
618 addr1->v6.sin6_scope_id != addr2->v6.sin6_scope_id)
624 /* Compare addresses exactly.
625 * v4-mapped-v6 is also in consideration.
627 static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
628 const union sctp_addr *addr2)
630 return __sctp_v6_cmp_addr(addr1, addr2) &&
631 addr1->v6.sin6_port == addr2->v6.sin6_port;
634 /* Initialize addr struct to INADDR_ANY. */
635 static void sctp_v6_inaddr_any(union sctp_addr *addr, __be16 port)
637 memset(addr, 0x00, sizeof(union sctp_addr));
638 addr->v6.sin6_family = AF_INET6;
639 addr->v6.sin6_port = port;
642 /* Is this a wildcard address? */
643 static int sctp_v6_is_any(const union sctp_addr *addr)
645 return ipv6_addr_any(&addr->v6.sin6_addr);
648 /* Should this be available for binding? */
649 static int sctp_v6_available(union sctp_addr *addr, struct sctp_sock *sp)
652 struct net *net = sock_net(&sp->inet.sk);
653 const struct in6_addr *in6 = (const struct in6_addr *)&addr->v6.sin6_addr;
655 type = ipv6_addr_type(in6);
656 if (IPV6_ADDR_ANY == type)
658 if (type == IPV6_ADDR_MAPPED) {
659 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
661 sctp_v6_map_v4(addr);
662 return sctp_get_af_specific(AF_INET)->available(addr, sp);
664 if (!(type & IPV6_ADDR_UNICAST))
667 return sp->inet.freebind || net->ipv6.sysctl.ip_nonlocal_bind ||
668 ipv6_chk_addr(net, in6, NULL, 0);
671 /* This function checks if the address is a valid address to be used for
675 * Return 0 - If the address is a non-unicast or an illegal address.
676 * Return 1 - If the address is a unicast.
678 static int sctp_v6_addr_valid(union sctp_addr *addr,
679 struct sctp_sock *sp,
680 const struct sk_buff *skb)
682 int ret = ipv6_addr_type(&addr->v6.sin6_addr);
684 /* Support v4-mapped-v6 address. */
685 if (ret == IPV6_ADDR_MAPPED) {
686 /* Note: This routine is used in input, so v4-mapped-v6
687 * are disallowed here when there is no sctp_sock.
689 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
691 sctp_v6_map_v4(addr);
692 return sctp_get_af_specific(AF_INET)->addr_valid(addr, sp, skb);
695 /* Is this a non-unicast address */
696 if (!(ret & IPV6_ADDR_UNICAST))
702 /* What is the scope of 'addr'? */
703 static enum sctp_scope sctp_v6_scope(union sctp_addr *addr)
705 enum sctp_scope retval;
708 /* The IPv6 scope is really a set of bit fields.
709 * See IFA_* in <net/if_inet6.h>. Map to a generic SCTP scope.
712 v6scope = ipv6_addr_scope(&addr->v6.sin6_addr);
715 retval = SCTP_SCOPE_LOOPBACK;
718 retval = SCTP_SCOPE_LINK;
721 retval = SCTP_SCOPE_PRIVATE;
724 retval = SCTP_SCOPE_GLOBAL;
731 /* Create and initialize a new sk for the socket to be returned by accept(). */
732 static struct sock *sctp_v6_create_accept_sk(struct sock *sk,
733 struct sctp_association *asoc,
737 struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
738 struct sctp6_sock *newsctp6sk;
740 newsk = sk_alloc(sock_net(sk), PF_INET6, GFP_KERNEL, sk->sk_prot, kern);
744 sock_init_data(NULL, newsk);
746 sctp_copy_sock(newsk, sk, asoc);
747 sock_reset_flag(sk, SOCK_ZAPPED);
749 newsctp6sk = (struct sctp6_sock *)newsk;
750 inet_sk(newsk)->pinet6 = &newsctp6sk->inet6;
752 sctp_sk(newsk)->v4mapped = sctp_sk(sk)->v4mapped;
754 newnp = inet6_sk(newsk);
756 memcpy(newnp, np, sizeof(struct ipv6_pinfo));
757 newnp->ipv6_mc_list = NULL;
758 newnp->ipv6_ac_list = NULL;
759 newnp->ipv6_fl_list = NULL;
761 sctp_v6_copy_ip_options(sk, newsk);
763 /* Initialize sk's sport, dport, rcv_saddr and daddr for getsockname()
766 sctp_v6_to_sk_daddr(&asoc->peer.primary_addr, newsk);
768 newsk->sk_v6_rcv_saddr = sk->sk_v6_rcv_saddr;
770 sk_refcnt_debug_inc(newsk);
772 if (newsk->sk_prot->init(newsk)) {
773 sk_common_release(newsk);
781 /* Format a sockaddr for return to user space. This makes sure the return is
782 * AF_INET or AF_INET6 depending on the SCTP_I_WANT_MAPPED_V4_ADDR option.
784 static int sctp_v6_addr_to_user(struct sctp_sock *sp, union sctp_addr *addr)
787 if (addr->sa.sa_family == AF_INET)
788 sctp_v4_map_v6(addr);
790 if (addr->sa.sa_family == AF_INET6 &&
791 ipv6_addr_v4mapped(&addr->v6.sin6_addr))
792 sctp_v6_map_v4(addr);
795 if (addr->sa.sa_family == AF_INET) {
796 memset(addr->v4.sin_zero, 0, sizeof(addr->v4.sin_zero));
797 return sizeof(struct sockaddr_in);
799 return sizeof(struct sockaddr_in6);
802 /* Where did this skb come from? */
803 static int sctp_v6_skb_iif(const struct sk_buff *skb)
805 return IP6CB(skb)->iif;
808 /* Was this packet marked by Explicit Congestion Notification? */
809 static int sctp_v6_is_ce(const struct sk_buff *skb)
811 return *((__u32 *)(ipv6_hdr(skb))) & (__force __u32)htonl(1 << 20);
814 /* Dump the v6 addr to the seq file. */
815 static void sctp_v6_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
817 seq_printf(seq, "%pI6 ", &addr->v6.sin6_addr);
820 static void sctp_v6_ecn_capable(struct sock *sk)
822 inet6_sk(sk)->tclass |= INET_ECN_ECT_0;
825 /* Initialize a PF_INET msgname from a ulpevent. */
826 static void sctp_inet6_event_msgname(struct sctp_ulpevent *event,
827 char *msgname, int *addrlen)
829 union sctp_addr *addr;
830 struct sctp_association *asoc;
831 union sctp_addr *paddr;
836 addr = (union sctp_addr *)msgname;
838 paddr = &asoc->peer.primary_addr;
840 if (paddr->sa.sa_family == AF_INET) {
841 addr->v4.sin_family = AF_INET;
842 addr->v4.sin_port = htons(asoc->peer.port);
843 addr->v4.sin_addr = paddr->v4.sin_addr;
845 addr->v6.sin6_family = AF_INET6;
846 addr->v6.sin6_flowinfo = 0;
847 if (ipv6_addr_type(&paddr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
848 addr->v6.sin6_scope_id = paddr->v6.sin6_scope_id;
850 addr->v6.sin6_scope_id = 0;
851 addr->v6.sin6_port = htons(asoc->peer.port);
852 addr->v6.sin6_addr = paddr->v6.sin6_addr;
855 *addrlen = sctp_v6_addr_to_user(sctp_sk(asoc->base.sk), addr);
858 /* Initialize a msg_name from an inbound skb. */
859 static void sctp_inet6_skb_msgname(struct sk_buff *skb, char *msgname,
862 union sctp_addr *addr;
868 addr = (union sctp_addr *)msgname;
871 if (ip_hdr(skb)->version == 4) {
872 addr->v4.sin_family = AF_INET;
873 addr->v4.sin_port = sh->source;
874 addr->v4.sin_addr.s_addr = ip_hdr(skb)->saddr;
876 addr->v6.sin6_family = AF_INET6;
877 addr->v6.sin6_flowinfo = 0;
878 addr->v6.sin6_port = sh->source;
879 addr->v6.sin6_addr = ipv6_hdr(skb)->saddr;
880 if (ipv6_addr_type(&addr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
881 addr->v6.sin6_scope_id = sctp_v6_skb_iif(skb);
883 addr->v6.sin6_scope_id = 0;
886 *addr_len = sctp_v6_addr_to_user(sctp_sk(skb->sk), addr);
889 /* Do we support this AF? */
890 static int sctp_inet6_af_supported(sa_family_t family, struct sctp_sock *sp)
895 /* v4-mapped-v6 addresses */
897 if (!__ipv6_only_sock(sctp_opt2sk(sp)))
905 /* Address matching with wildcards allowed. This extra level
906 * of indirection lets us choose whether a PF_INET6 should
907 * disallow any v4 addresses if we so choose.
909 static int sctp_inet6_cmp_addr(const union sctp_addr *addr1,
910 const union sctp_addr *addr2,
911 struct sctp_sock *opt)
913 struct sock *sk = sctp_opt2sk(opt);
914 struct sctp_af *af1, *af2;
916 af1 = sctp_get_af_specific(addr1->sa.sa_family);
917 af2 = sctp_get_af_specific(addr2->sa.sa_family);
922 /* If the socket is IPv6 only, v4 addrs will not match */
923 if (__ipv6_only_sock(sk) && af1 != af2)
926 /* Today, wildcard AF_INET/AF_INET6. */
927 if (sctp_is_any(sk, addr1) || sctp_is_any(sk, addr2))
930 if (addr1->sa.sa_family == AF_INET && addr2->sa.sa_family == AF_INET)
931 return addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr;
933 return __sctp_v6_cmp_addr(addr1, addr2);
936 /* Verify that the provided sockaddr looks bindable. Common verification,
937 * has already been taken care of.
939 static int sctp_inet6_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
943 /* ASSERT: address family has already been verified. */
944 if (addr->sa.sa_family != AF_INET6)
945 af = sctp_get_af_specific(addr->sa.sa_family);
947 int type = ipv6_addr_type(&addr->v6.sin6_addr);
948 struct net_device *dev;
950 if (type & IPV6_ADDR_LINKLOCAL) {
952 if (!addr->v6.sin6_scope_id)
954 net = sock_net(&opt->inet.sk);
956 dev = dev_get_by_index_rcu(net, addr->v6.sin6_scope_id);
957 if (!dev || !(opt->inet.freebind ||
958 net->ipv6.sysctl.ip_nonlocal_bind ||
959 ipv6_chk_addr(net, &addr->v6.sin6_addr,
969 return af->available(addr, opt);
972 /* Verify that the provided sockaddr looks sendable. Common verification,
973 * has already been taken care of.
975 static int sctp_inet6_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
977 struct sctp_af *af = NULL;
979 /* ASSERT: address family has already been verified. */
980 if (addr->sa.sa_family != AF_INET6)
981 af = sctp_get_af_specific(addr->sa.sa_family);
983 int type = ipv6_addr_type(&addr->v6.sin6_addr);
984 struct net_device *dev;
986 if (type & IPV6_ADDR_LINKLOCAL) {
987 if (!addr->v6.sin6_scope_id)
990 dev = dev_get_by_index_rcu(sock_net(&opt->inet.sk),
991 addr->v6.sin6_scope_id);
1002 /* Fill in Supported Address Type information for INIT and INIT-ACK
1003 * chunks. Note: In the future, we may want to look at sock options
1004 * to determine whether a PF_INET6 socket really wants to have IPV4
1006 * Returns number of addresses supported.
1008 static int sctp_inet6_supported_addrs(const struct sctp_sock *opt,
1011 types[0] = SCTP_PARAM_IPV6_ADDRESS;
1012 if (!opt || !ipv6_only_sock(sctp_opt2sk(opt))) {
1013 types[1] = SCTP_PARAM_IPV4_ADDRESS;
1019 /* Handle SCTP_I_WANT_MAPPED_V4_ADDR for getpeername() and getsockname() */
1020 static int sctp_getname(struct socket *sock, struct sockaddr *uaddr,
1025 rc = inet6_getname(sock, uaddr, peer);
1030 rc = sctp_v6_addr_to_user(sctp_sk(sock->sk),
1031 (union sctp_addr *)uaddr);
1036 static const struct proto_ops inet6_seqpacket_ops = {
1038 .owner = THIS_MODULE,
1039 .release = inet6_release,
1041 .connect = sctp_inet_connect,
1042 .socketpair = sock_no_socketpair,
1043 .accept = inet_accept,
1044 .getname = sctp_getname,
1046 .ioctl = inet6_ioctl,
1047 .gettstamp = sock_gettstamp,
1048 .listen = sctp_inet_listen,
1049 .shutdown = inet_shutdown,
1050 .setsockopt = sock_common_setsockopt,
1051 .getsockopt = sock_common_getsockopt,
1052 .sendmsg = inet_sendmsg,
1053 .recvmsg = inet_recvmsg,
1054 .mmap = sock_no_mmap,
1055 #ifdef CONFIG_COMPAT
1056 .compat_ioctl = inet6_compat_ioctl,
1060 static struct inet_protosw sctpv6_seqpacket_protosw = {
1061 .type = SOCK_SEQPACKET,
1062 .protocol = IPPROTO_SCTP,
1063 .prot = &sctpv6_prot,
1064 .ops = &inet6_seqpacket_ops,
1065 .flags = SCTP_PROTOSW_FLAG
1067 static struct inet_protosw sctpv6_stream_protosw = {
1068 .type = SOCK_STREAM,
1069 .protocol = IPPROTO_SCTP,
1070 .prot = &sctpv6_prot,
1071 .ops = &inet6_seqpacket_ops,
1072 .flags = SCTP_PROTOSW_FLAG,
1075 static int sctp6_rcv(struct sk_buff *skb)
1077 SCTP_INPUT_CB(skb)->encap_port = 0;
1078 return sctp_rcv(skb) ? -1 : 0;
1081 static const struct inet6_protocol sctpv6_protocol = {
1082 .handler = sctp6_rcv,
1083 .err_handler = sctp_v6_err,
1084 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL,
1087 static struct sctp_af sctp_af_inet6 = {
1088 .sa_family = AF_INET6,
1089 .sctp_xmit = sctp_v6_xmit,
1090 .setsockopt = ipv6_setsockopt,
1091 .getsockopt = ipv6_getsockopt,
1092 .get_dst = sctp_v6_get_dst,
1093 .get_saddr = sctp_v6_get_saddr,
1094 .copy_addrlist = sctp_v6_copy_addrlist,
1095 .from_skb = sctp_v6_from_skb,
1096 .from_sk = sctp_v6_from_sk,
1097 .from_addr_param = sctp_v6_from_addr_param,
1098 .to_addr_param = sctp_v6_to_addr_param,
1099 .cmp_addr = sctp_v6_cmp_addr,
1100 .scope = sctp_v6_scope,
1101 .addr_valid = sctp_v6_addr_valid,
1102 .inaddr_any = sctp_v6_inaddr_any,
1103 .is_any = sctp_v6_is_any,
1104 .available = sctp_v6_available,
1105 .skb_iif = sctp_v6_skb_iif,
1106 .is_ce = sctp_v6_is_ce,
1107 .seq_dump_addr = sctp_v6_seq_dump_addr,
1108 .ecn_capable = sctp_v6_ecn_capable,
1109 .net_header_len = sizeof(struct ipv6hdr),
1110 .sockaddr_len = sizeof(struct sockaddr_in6),
1111 .ip_options_len = sctp_v6_ip_options_len,
1114 static struct sctp_pf sctp_pf_inet6 = {
1115 .event_msgname = sctp_inet6_event_msgname,
1116 .skb_msgname = sctp_inet6_skb_msgname,
1117 .af_supported = sctp_inet6_af_supported,
1118 .cmp_addr = sctp_inet6_cmp_addr,
1119 .bind_verify = sctp_inet6_bind_verify,
1120 .send_verify = sctp_inet6_send_verify,
1121 .supported_addrs = sctp_inet6_supported_addrs,
1122 .create_accept_sk = sctp_v6_create_accept_sk,
1123 .addr_to_user = sctp_v6_addr_to_user,
1124 .to_sk_saddr = sctp_v6_to_sk_saddr,
1125 .to_sk_daddr = sctp_v6_to_sk_daddr,
1126 .copy_ip_options = sctp_v6_copy_ip_options,
1127 .af = &sctp_af_inet6,
1130 /* Initialize IPv6 support and register with socket layer. */
1131 void sctp_v6_pf_init(void)
1133 /* Register the SCTP specific PF_INET6 functions. */
1134 sctp_register_pf(&sctp_pf_inet6, PF_INET6);
1136 /* Register the SCTP specific AF_INET6 functions. */
1137 sctp_register_af(&sctp_af_inet6);
1140 void sctp_v6_pf_exit(void)
1142 list_del(&sctp_af_inet6.list);
1145 /* Initialize IPv6 support and register with socket layer. */
1146 int sctp_v6_protosw_init(void)
1150 rc = proto_register(&sctpv6_prot, 1);
1154 /* Add SCTPv6(UDP and TCP style) to inetsw6 linked list. */
1155 inet6_register_protosw(&sctpv6_seqpacket_protosw);
1156 inet6_register_protosw(&sctpv6_stream_protosw);
1161 void sctp_v6_protosw_exit(void)
1163 inet6_unregister_protosw(&sctpv6_seqpacket_protosw);
1164 inet6_unregister_protosw(&sctpv6_stream_protosw);
1165 proto_unregister(&sctpv6_prot);
1169 /* Register with inet6 layer. */
1170 int sctp_v6_add_protocol(void)
1172 /* Register notifier for inet6 address additions/deletions. */
1173 register_inet6addr_notifier(&sctp_inet6addr_notifier);
1175 if (inet6_add_protocol(&sctpv6_protocol, IPPROTO_SCTP) < 0)
1181 /* Unregister with inet6 layer. */
1182 void sctp_v6_del_protocol(void)
1184 inet6_del_protocol(&sctpv6_protocol, IPPROTO_SCTP);
1185 unregister_inet6addr_notifier(&sctp_inet6addr_notifier);