blob: 470dbdc27d584a6ce99691a879891359c85619f6 [file] [log] [blame]
Thomas Gleixner47505b82019-05-23 11:14:41 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Vlad Yasevich60c778b2008-01-11 09:57:09 -05002/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * (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.
7 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05008 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * SCTP over IPv6.
11 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Please send any bug reports or fixes you make to the
13 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020014 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * Written or modified by:
17 * Le Yanqun <yanqun.le@nokia.com>
18 * Hui Huang <hui.huang@nokia.com>
19 * La Monte H.P. Yarroll <piggy@acm.org>
20 * Sridhar Samudrala <sri@us.ibm.com>
21 * Jon Grimm <jgrimm@us.ibm.com>
22 * Ardelle Fan <ardelle.fan@intel.com>
23 *
24 * Based on:
25 * linux/net/ipv6/tcp_ipv6.c
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 */
27
Joe Perches145ce502010-08-24 13:21:08 +000028#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/in.h>
37#include <linux/in6.h>
38#include <linux/netdevice.h>
39#include <linux/init.h>
40#include <linux/ipsec.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090041#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/ipv6.h>
44#include <linux/icmpv6.h>
45#include <linux/random.h>
46#include <linux/seq_file.h>
47
48#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <net/ndisc.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070050#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <net/ipv6.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>
Xin Long259db532020-10-29 15:05:07 +080058#include <net/udp_tunnel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080060#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Weixing Shi62503412011-04-26 21:36:32 +000062static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
63 union sctp_addr *s2);
Vlad Yasevich9914ae32011-04-26 21:51:31 +000064static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
65 __be16 port);
66static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
67 const union sctp_addr *addr2);
Weixing Shi62503412011-04-26 21:36:32 +000068
Vlad Yasevich29303542007-09-16 16:02:12 -070069/* 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.
74 */
Adrian Bunk24123182006-12-20 16:08:22 -080075static int sctp_inet6addr_event(struct notifier_block *this, unsigned long ev,
76 void *ptr)
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -080077{
78 struct inet6_ifaddr *ifa = (struct inet6_ifaddr *)ptr;
Vlad Yasevich29303542007-09-16 16:02:12 -070079 struct sctp_sockaddr_entry *addr = NULL;
80 struct sctp_sockaddr_entry *temp;
Eric W. Biederman4db67e82012-08-06 08:42:04 +000081 struct net *net = dev_net(ifa->idev->dev);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -070082 int found = 0;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -080083
84 switch (ev) {
85 case NETDEV_UP:
Xin Long400b8b92019-01-14 18:34:02 +080086 addr = kzalloc(sizeof(*addr), GFP_ATOMIC);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -080087 if (addr) {
88 addr->a.v6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +000089 addr->a.v6.sin6_addr = ifa->addr;
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -080090 addr->a.v6.sin6_scope_id = ifa->idev->dev->ifindex;
Vlad Yasevich29303542007-09-16 16:02:12 -070091 addr->valid = 1;
Eric W. Biederman4db67e82012-08-06 08:42:04 +000092 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);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -080096 }
97 break;
98 case NETDEV_DOWN:
Eric W. Biederman4db67e82012-08-06 08:42:04 +000099 spin_lock_bh(&net->sctp.local_addr_lock);
Vlad Yasevich29303542007-09-16 16:02:12 -0700100 list_for_each_entry_safe(addr, temp,
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000101 &net->sctp.local_addr_list, list) {
Pavel Emelyanova40a7d12008-04-12 18:40:38 -0700102 if (addr->a.sa.sa_family == AF_INET6 &&
Chen Shen2ebda0272021-07-26 13:47:34 +0800103 ipv6_addr_equal(&addr->a.v6.sin6_addr,
104 &ifa->addr) &&
105 addr->a.v6.sin6_scope_id == ifa->idev->dev->ifindex) {
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000106 sctp_addr_wq_mgmt(net, addr, SCTP_ADDR_DEL);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700107 found = 1;
Vlad Yasevich29303542007-09-16 16:02:12 -0700108 addr->valid = 0;
109 list_del_rcu(&addr->list);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800110 break;
111 }
112 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000113 spin_unlock_bh(&net->sctp.local_addr_lock);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700114 if (found)
Lai Jiangshan1231f0b2011-03-15 18:05:02 +0800115 kfree_rcu(addr, rcu);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800116 break;
117 }
118
119 return NOTIFY_DONE;
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static struct notifier_block sctp_inet6addr_notifier = {
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800123 .notifier_call = sctp_inet6addr_event,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124};
125
Xin Longf6549bd2021-06-22 14:04:58 -0400126static void sctp_v6_err_handle(struct sctp_transport *t, struct sk_buff *skb,
127 __u8 type, __u8 code, __u32 info)
128{
129 struct sctp_association *asoc = t->asoc;
130 struct sock *sk = asoc->base.sk;
131 struct ipv6_pinfo *np;
132 int err = 0;
133
134 switch (type) {
135 case ICMPV6_PKT_TOOBIG:
136 if (ip6_sk_accept_pmtu(sk))
137 sctp_icmp_frag_needed(sk, asoc, t, info);
138 return;
139 case ICMPV6_PARAMPROB:
140 if (ICMPV6_UNK_NEXTHDR == code) {
141 sctp_icmp_proto_unreachable(sk, asoc, t);
142 return;
143 }
144 break;
145 case NDISC_REDIRECT:
146 sctp_icmp_redirect(sk, t, skb);
147 return;
148 default:
149 break;
150 }
151
152 np = inet6_sk(sk);
153 icmpv6_err_convert(type, code, &err);
154 if (!sock_owned_by_user(sk) && np->recverr) {
155 sk->sk_err = err;
Alexander Aringe3ae2362021-06-27 18:48:21 -0400156 sk_error_report(sk);
Xin Longf6549bd2021-06-22 14:04:58 -0400157 } else {
158 sk->sk_err_soft = err;
159 }
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162/* ICMP error handler. */
Stefano Brivio32bbd872018-11-08 12:19:21 +0100163static int sctp_v6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
Xin Longf6549bd2021-06-22 14:04:58 -0400164 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000166 struct net *net = dev_net(skb->dev);
Xin Longf6549bd2021-06-22 14:04:58 -0400167 struct sctp_transport *transport;
168 struct sctp_association *asoc;
169 __u16 saveip, savesctp;
170 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 /* Fix up skb to look at the embedded net header. */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700173 saveip = skb->network_header;
174 savesctp = skb->transport_header;
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300175 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloa27ef742007-03-13 17:17:10 -0300176 skb_set_transport_header(skb, offset);
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000177 sk = sctp_err_lookup(net, AF_INET6, skb, sctp_hdr(skb), &asoc, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* Put back, the original pointers. */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700179 skb->network_header = saveip;
180 skb->transport_header = savesctp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (!sk) {
Xin Long237a6a22021-06-22 14:04:57 -0400182 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev), ICMP6_MIB_INERRORS);
183 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Xin Longf6549bd2021-06-22 14:04:58 -0400186 sctp_v6_err_handle(transport, skb, type, code, ntohl(info));
Xin Longdae399d2016-10-31 20:32:33 +0800187 sctp_err_finish(sk, transport);
Xin Longf6549bd2021-06-22 14:04:58 -0400188
189 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Xin Long9e47df02021-06-22 14:05:00 -0400192int sctp_udp_v6_err(struct sock *sk, struct sk_buff *skb)
193{
194 struct net *net = dev_net(skb->dev);
195 struct sctp_association *asoc;
196 struct sctp_transport *t;
197 struct icmp6hdr *hdr;
198 __u32 info = 0;
199
200 skb->transport_header += sizeof(struct udphdr);
201 sk = sctp_err_lookup(net, AF_INET6, skb, sctp_hdr(skb), &asoc, &t);
202 if (!sk) {
203 __ICMP6_INC_STATS(net, __in6_dev_get(skb->dev), ICMP6_MIB_INERRORS);
204 return -ENOENT;
205 }
206
207 skb->transport_header -= sizeof(struct udphdr);
208 hdr = (struct icmp6hdr *)(skb_network_header(skb) - sizeof(struct icmp6hdr));
209 if (hdr->icmp6_type == NDISC_REDIRECT) {
210 /* can't be handled without outer ip6hdr known, leave it to udpv6_err */
211 sctp_err_finish(sk, t);
212 return 0;
213 }
214 if (hdr->icmp6_type == ICMPV6_PKT_TOOBIG)
215 info = ntohl(hdr->icmp6_mtu);
216 sctp_v6_err_handle(t, skb, hdr->icmp6_type, hdr->icmp6_code, info);
217
218 sctp_err_finish(sk, t);
219 return 1;
220}
221
Xin Long259db532020-10-29 15:05:07 +0800222static int sctp_v6_xmit(struct sk_buff *skb, struct sctp_transport *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Xin Long259db532020-10-29 15:05:07 +0800224 struct dst_entry *dst = dst_clone(t->dst);
225 struct flowi6 *fl6 = &t->fl.u.ip6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct sock *sk = skb->sk;
227 struct ipv6_pinfo *np = inet6_sk(sk);
Xin Long8a9c58d2018-07-02 18:21:12 +0800228 __u8 tclass = np->tclass;
Xin Long259db532020-10-29 15:05:07 +0800229 __be32 label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Daniel Borkmannbb333812013-06-28 19:49:40 +0200231 pr_debug("%s: skb:%p, len:%d, src:%pI6 dst:%pI6\n", __func__, skb,
Daniel Borkmann95ee6202013-09-11 16:58:36 +0200232 skb->len, &fl6->saddr, &fl6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Xin Long259db532020-10-29 15:05:07 +0800234 if (t->dscp & SCTP_DSCP_SET_MASK)
235 tclass = t->dscp & SCTP_DSCP_VAL_MASK;
Xin Long8a9c58d2018-07-02 18:21:12 +0800236
237 if (INET_ECN_is_capable(tclass))
238 IP6_ECN_flow_xmit(sk, fl6->flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Xin Long259db532020-10-29 15:05:07 +0800240 if (!(t->param_flags & SPP_PMTUD_ENABLE))
WANG Cong60ff7462014-05-04 16:39:18 -0700241 skb->ignore_df = 1;
Herbert Xuf8803742008-08-03 21:15:08 -0700242
Daniel Borkmann95ee6202013-09-11 16:58:36 +0200243 SCTP_INC_STATS(sock_net(sk), SCTP_MIB_OUTSCTPPACKS);
244
Xin Long259db532020-10-29 15:05:07 +0800245 if (!t->encap_port || !sctp_sk(sk)->udp_port) {
246 int res;
247
248 skb_dst_set(skb, dst);
249 rcu_read_lock();
250 res = ip6_xmit(sk, skb, fl6, sk->sk_mark,
251 rcu_dereference(np->opt),
252 tclass, sk->sk_priority);
253 rcu_read_unlock();
254 return res;
255 }
256
257 if (skb_is_gso(skb))
258 skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
259
260 skb->encapsulation = 1;
261 skb_reset_inner_mac_header(skb);
262 skb_reset_inner_transport_header(skb);
263 skb_set_inner_ipproto(skb, IPPROTO_SCTP);
264 label = ip6_make_flowlabel(sock_net(sk), skb, fl6->flowlabel, true, fl6);
265
266 return udp_tunnel6_xmit_skb(dst, sk, skb, NULL, &fl6->saddr,
267 &fl6->daddr, tclass, ip6_dst_hoplimit(dst),
268 label, sctp_sk(sk)->udp_port, t->encap_port, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271/* Returns the dst cache entry for the given source and destination ip
272 * addresses.
273 */
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000274static void sctp_v6_get_dst(struct sctp_transport *t, union sctp_addr *saddr,
275 struct flowi *fl, struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000277 struct sctp_association *asoc = t->asoc;
Weixing Shi62503412011-04-26 21:36:32 +0000278 struct dst_entry *dst = NULL;
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300279 struct flowi _fl;
280 struct flowi6 *fl6 = &_fl.u.ip6;
Weixing Shi62503412011-04-26 21:36:32 +0000281 struct sctp_bind_addr *bp;
Daniel Borkmann95ee6202013-09-11 16:58:36 +0200282 struct ipv6_pinfo *np = inet6_sk(sk);
Weixing Shi62503412011-04-26 21:36:32 +0000283 struct sctp_sockaddr_entry *laddr;
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000284 union sctp_addr *daddr = &t->ipaddr;
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000285 union sctp_addr dst_saddr;
Daniel Borkmann95ee6202013-09-11 16:58:36 +0200286 struct in6_addr *final_p, final;
Xin Long1c662012017-08-05 19:59:54 +0800287 enum sctp_scope scope;
Weixing Shi62503412011-04-26 21:36:32 +0000288 __u8 matchlen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300290 memset(&_fl, 0, sizeof(_fl));
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000291 fl6->daddr = daddr->v6.sin6_addr;
Vlad Yasevich9c6a02f2011-04-26 21:52:27 +0000292 fl6->fl6_dport = daddr->v6.sin6_port;
293 fl6->flowi6_proto = IPPROTO_SCTP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (ipv6_addr_type(&daddr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000295 fl6->flowi6_oif = daddr->v6.sin6_scope_id;
Zheng Li25e7f2d2017-07-06 15:00:09 +0800296 else if (asoc)
297 fl6->flowi6_oif = asoc->base.sk->sk_bound_dev_if;
Xin Long8a9c58d2018-07-02 18:21:12 +0800298 if (t->flowlabel & SCTP_FLOWLABEL_SET_MASK)
299 fl6->flowlabel = htonl(t->flowlabel & SCTP_FLOWLABEL_VAL_MASK);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900300
Xin Long0999f022018-07-02 18:21:15 +0800301 if (np->sndflow && (fl6->flowlabel & IPV6_FLOWLABEL_MASK)) {
302 struct ip6_flowlabel *flowlabel;
303
304 flowlabel = fl6_sock_lookup(sk, fl6->flowlabel);
Willem de Bruijn59c820b2019-07-07 05:34:45 -0400305 if (IS_ERR(flowlabel))
Xin Long0999f022018-07-02 18:21:15 +0800306 goto out;
307 fl6_sock_release(flowlabel);
308 }
309
Daniel Borkmannbb333812013-06-28 19:49:40 +0200310 pr_debug("%s: dst=%pI6 ", __func__, &fl6->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Vlad Yasevich9c6a02f2011-04-26 21:52:27 +0000312 if (asoc)
313 fl6->fl6_sport = htons(asoc->base.bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (saddr) {
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000316 fl6->saddr = saddr->v6.sin6_addr;
Xin Longecf938f2019-01-22 02:42:41 +0800317 if (!fl6->fl6_sport)
318 fl6->fl6_sport = saddr->v6.sin6_port;
Daniel Borkmannbb333812013-06-28 19:49:40 +0200319
320 pr_debug("src=%pI6 - ", &fl6->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Eric Dumazetc836a8b2015-12-02 21:48:14 -0800323 rcu_read_lock();
324 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final);
325 rcu_read_unlock();
326
Sabrina Dubrocac4e85f72019-12-04 15:35:52 +0100327 dst = ip6_dst_lookup_flow(sock_net(sk), sk, fl6, final_p);
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300328 if (!asoc || saddr) {
329 t->dst = dst;
330 memcpy(fl, &_fl, sizeof(_fl));
Weixing Shi62503412011-04-26 21:36:32 +0000331 goto out;
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300332 }
Weixing Shi62503412011-04-26 21:36:32 +0000333
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000334 bp = &asoc->base.bind_addr;
335 scope = sctp_scope(daddr);
336 /* ip6_dst_lookup has filled in the fl6->saddr for us. Check
337 * to see if we can use it.
338 */
Vlad Yasevich9c6a02f2011-04-26 21:52:27 +0000339 if (!IS_ERR(dst)) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000340 /* Walk through the bind address list and look for a bind
341 * address that matches the source address of the returned dst.
Weixing Shi62503412011-04-26 21:36:32 +0000342 */
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000343 sctp_v6_to_addr(&dst_saddr, &fl6->saddr, htons(bp->port));
Weixing Shi62503412011-04-26 21:36:32 +0000344 rcu_read_lock();
345 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
Daniel Borkmannfecda032013-10-22 18:34:56 +0200346 if (!laddr->valid || laddr->state == SCTP_ADDR_DEL ||
347 (laddr->state != SCTP_ADDR_SRC &&
348 !asoc->src_out_of_asoc_ok))
Weixing Shi62503412011-04-26 21:36:32 +0000349 continue;
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000350
351 /* Do not compare against v4 addrs */
352 if ((laddr->a.sa.sa_family == AF_INET6) &&
353 (sctp_v6_cmp_addr(&dst_saddr, &laddr->a))) {
354 rcu_read_unlock();
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300355 t->dst = dst;
356 memcpy(fl, &_fl, sizeof(_fl));
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000357 goto out;
Weixing Shi62503412011-04-26 21:36:32 +0000358 }
359 }
360 rcu_read_unlock();
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000361 /* None of the bound addresses match the source address of the
362 * dst. So release it.
363 */
364 dst_release(dst);
365 dst = NULL;
366 }
367
368 /* Walk through the bind address list and try to get the
369 * best source address for a given destination.
370 */
371 rcu_read_lock();
372 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
Xin Longdbc2b5e2017-05-12 14:39:52 +0800373 struct dst_entry *bdst;
374 __u8 bmatchlen;
375
376 if (!laddr->valid ||
377 laddr->state != SCTP_ADDR_SRC ||
378 laddr->a.sa.sa_family != AF_INET6 ||
379 scope > sctp_scope(&laddr->a))
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000380 continue;
Xin Longdbc2b5e2017-05-12 14:39:52 +0800381
382 fl6->saddr = laddr->a.v6.sin6_addr;
383 fl6->fl6_sport = laddr->a.v6.sin6_port;
Eric Dumazetc836a8b2015-12-02 21:48:14 -0800384 final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final);
Sabrina Dubrocac4e85f72019-12-04 15:35:52 +0100385 bdst = ip6_dst_lookup_flow(sock_net(sk), sk, fl6, final_p);
Xin Longdbc2b5e2017-05-12 14:39:52 +0800386
Alexey Kodanev957d7612018-02-05 15:10:35 +0300387 if (IS_ERR(bdst))
388 continue;
389
390 if (ipv6_chk_addr(dev_net(bdst->dev),
Xin Longdbc2b5e2017-05-12 14:39:52 +0800391 &laddr->a.v6.sin6_addr, bdst->dev, 1)) {
392 if (!IS_ERR_OR_NULL(dst))
393 dst_release(dst);
394 dst = bdst;
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300395 t->dst = dst;
396 memcpy(fl, &_fl, sizeof(_fl));
Xin Longdbc2b5e2017-05-12 14:39:52 +0800397 break;
398 }
399
400 bmatchlen = sctp_v6_addr_match_len(daddr, &laddr->a);
Alexey Kodanev957d7612018-02-05 15:10:35 +0300401 if (matchlen > bmatchlen) {
402 dst_release(bdst);
Xin Longdbc2b5e2017-05-12 14:39:52 +0800403 continue;
Alexey Kodanev957d7612018-02-05 15:10:35 +0300404 }
Xin Longdbc2b5e2017-05-12 14:39:52 +0800405
406 if (!IS_ERR_OR_NULL(dst))
407 dst_release(dst);
408 dst = bdst;
409 matchlen = bmatchlen;
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300410 t->dst = dst;
411 memcpy(fl, &_fl, sizeof(_fl));
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000412 }
Eric Dumazet69ce6482015-12-07 08:25:21 -0800413 rcu_read_unlock();
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000414
Weixing Shi62503412011-04-26 21:36:32 +0000415out:
Tommi Rantalaee3f34e2012-11-29 23:17:42 +0000416 if (!IS_ERR_OR_NULL(dst)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 struct rt6_info *rt;
Daniel Borkmannbb333812013-06-28 19:49:40 +0200418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700420 t->dst_cookie = rt6_get_cookie(rt);
Martin KaFai Laufd0273d2015-05-22 20:55:57 -0700421 pr_debug("rt6_dst:%pI6/%d rt6_src:%pI6\n",
422 &rt->rt6i_dst.addr, rt->rt6i_dst.plen,
Marcelo Ricardo Leitner582eea22020-03-26 20:47:46 -0300423 &fl->u.ip6.saddr);
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000424 } else {
425 t->dst = NULL;
Daniel Borkmannbb333812013-06-28 19:49:40 +0200426 pr_debug("no route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
430/* Returns the number of consecutive initial bits that match in the 2 ipv6
431 * addresses.
432 */
433static inline int sctp_v6_addr_match_len(union sctp_addr *s1,
434 union sctp_addr *s2)
435{
YOSHIFUJI Hideaki / 吉藤英明de7737e2010-03-26 08:34:30 +0000436 return ipv6_addr_diff(&s1->v6.sin6_addr, &s2->v6.sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439/* Fills in the source address(saddr) based on the destination address(daddr)
440 * and asoc's bind address list.
441 */
YOSHIFUJI Hideakie5117102008-05-29 19:55:05 +0900442static void sctp_v6_get_saddr(struct sctp_sock *sk,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000443 struct sctp_transport *t,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000444 struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000446 struct flowi6 *fl6 = &fl->u.ip6;
447 union sctp_addr *saddr = &t->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Daniel Borkmannbb333812013-06-28 19:49:40 +0200449 pr_debug("%s: asoc:%p dst:%p\n", __func__, t->asoc, t->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000451 if (t->dst) {
452 saddr->v6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000453 saddr->v6.sin6_addr = fl6->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
457/* Make a copy of all potential local addresses. */
458static void sctp_v6_copy_addrlist(struct list_head *addrlist,
459 struct net_device *dev)
460{
461 struct inet6_dev *in6_dev;
462 struct inet6_ifaddr *ifp;
463 struct sctp_sockaddr_entry *addr;
464
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700465 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if ((in6_dev = __in6_dev_get(dev)) == NULL) {
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700467 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 return;
469 }
470
Jarek Poplawskie2eb8d42007-03-08 14:43:41 -0800471 read_lock_bh(&in6_dev->lock);
stephen hemminger502a2ff2010-03-17 20:31:13 +0000472 list_for_each_entry(ifp, &in6_dev->addr_list, if_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* Add the address to the local list. */
Daniel Borkmann939cfa72013-06-17 11:40:04 +0200474 addr = kzalloc(sizeof(*addr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 if (addr) {
Al Viro2a6fd782006-11-20 17:04:42 -0800476 addr->a.v6.sin6_family = AF_INET6;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000477 addr->a.v6.sin6_addr = ifp->addr;
Al Viro2a6fd782006-11-20 17:04:42 -0800478 addr->a.v6.sin6_scope_id = dev->ifindex;
Vlad Yasevich29303542007-09-16 16:02:12 -0700479 addr->valid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 INIT_LIST_HEAD(&addr->list);
481 list_add_tail(&addr->list, addrlist);
482 }
483 }
484
Jarek Poplawskie2eb8d42007-03-08 14:43:41 -0800485 read_unlock_bh(&in6_dev->lock);
YOSHIFUJI Hideaki8814c4b2006-09-22 14:44:24 -0700486 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Richard Hainesb7e10c22018-02-24 16:18:51 +0000489/* Copy over any ip options */
490static void sctp_v6_copy_ip_options(struct sock *sk, struct sock *newsk)
491{
492 struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
493 struct ipv6_txoptions *opt;
494
495 newnp = inet6_sk(newsk);
496
497 rcu_read_lock();
498 opt = rcu_dereference(np->opt);
499 if (opt) {
500 opt = ipv6_dup_options(newsk, opt);
501 if (!opt)
502 pr_err("%s: Failed to copy ip options\n", __func__);
503 }
504 RCU_INIT_POINTER(newnp->opt, opt);
505 rcu_read_unlock();
506}
507
508/* Account for the IP options */
509static int sctp_v6_ip_options_len(struct sock *sk)
510{
511 struct ipv6_pinfo *np = inet6_sk(sk);
512 struct ipv6_txoptions *opt;
513 int len = 0;
514
515 rcu_read_lock();
516 opt = rcu_dereference(np->opt);
517 if (opt)
518 len = opt->opt_flen + opt->opt_nflen;
519
520 rcu_read_unlock();
521 return len;
522}
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524/* Initialize a sockaddr_storage from in incoming skb. */
wangweidongcb3f8372013-12-23 12:16:50 +0800525static void sctp_v6_from_skb(union sctp_addr *addr, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int is_saddr)
527{
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200528 /* Always called on head skb, so this is safe */
529 struct sctphdr *sh = sctp_hdr(skb);
530 struct sockaddr_in6 *sa = &addr->v6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 addr->v6.sin6_family = AF_INET6;
533 addr->v6.sin6_flowinfo = 0; /* FIXME */
534 addr->v6.sin6_scope_id = ((struct inet6_skb_parm *)skb->cb)->iif;
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (is_saddr) {
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200537 sa->sin6_port = sh->source;
538 sa->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 } else {
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200540 sa->sin6_port = sh->dest;
541 sa->sin6_addr = ipv6_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545/* Initialize an sctp_addr from a socket. */
546static void sctp_v6_from_sk(union sctp_addr *addr, struct sock *sk)
547{
548 addr->v6.sin6_family = AF_INET6;
Al Viro7dcdbd92006-11-20 17:24:21 -0800549 addr->v6.sin6_port = 0;
Eric Dumazetefe42082013-10-03 15:42:29 -0700550 addr->v6.sin6_addr = sk->sk_v6_rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551}
552
553/* Initialize sk->sk_rcv_saddr from sctp_addr. */
554static void sctp_v6_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
555{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600556 if (addr->sa.sa_family == AF_INET) {
Eric Dumazetefe42082013-10-03 15:42:29 -0700557 sk->sk_v6_rcv_saddr.s6_addr32[0] = 0;
558 sk->sk_v6_rcv_saddr.s6_addr32[1] = 0;
559 sk->sk_v6_rcv_saddr.s6_addr32[2] = htonl(0x0000ffff);
560 sk->sk_v6_rcv_saddr.s6_addr32[3] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 addr->v4.sin_addr.s_addr;
562 } else {
Eric Dumazetefe42082013-10-03 15:42:29 -0700563 sk->sk_v6_rcv_saddr = addr->v6.sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
565}
566
567/* Initialize sk->sk_daddr from sctp_addr. */
568static void sctp_v6_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
569{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600570 if (addr->sa.sa_family == AF_INET) {
Eric Dumazetefe42082013-10-03 15:42:29 -0700571 sk->sk_v6_daddr.s6_addr32[0] = 0;
572 sk->sk_v6_daddr.s6_addr32[1] = 0;
573 sk->sk_v6_daddr.s6_addr32[2] = htonl(0x0000ffff);
574 sk->sk_v6_daddr.s6_addr32[3] = addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 } else {
Eric Dumazetefe42082013-10-03 15:42:29 -0700576 sk->sk_v6_daddr = addr->v6.sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
578}
579
580/* Initialize a sctp_addr from an address parameter. */
Marcelo Ricardo Leitner0c5dc072021-06-28 16:13:41 -0300581static bool sctp_v6_from_addr_param(union sctp_addr *addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 union sctp_addr_param *param,
Al Virodd86d132006-11-20 17:11:13 -0800583 __be16 port, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Marcelo Ricardo Leitner0c5dc072021-06-28 16:13:41 -0300585 if (ntohs(param->v6.param_hdr.length) < sizeof(struct sctp_ipv6addr_param))
586 return false;
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 addr->v6.sin6_family = AF_INET6;
589 addr->v6.sin6_port = port;
590 addr->v6.sin6_flowinfo = 0; /* BUG */
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000591 addr->v6.sin6_addr = param->v6.addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 addr->v6.sin6_scope_id = iif;
Marcelo Ricardo Leitner0c5dc072021-06-28 16:13:41 -0300593
594 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
597/* Initialize an address parameter from a sctp_addr and return the length
598 * of the address parameter.
599 */
600static int sctp_v6_to_addr_param(const union sctp_addr *addr,
601 union sctp_addr_param *param)
602{
Xin Long00987cc2017-07-17 11:29:50 +0800603 int length = sizeof(struct sctp_ipv6addr_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 param->v6.param_hdr.type = SCTP_PARAM_IPV6_ADDRESS;
Al Virodbc16db2006-11-20 17:01:42 -0800606 param->v6.param_hdr.length = htons(length);
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000607 param->v6.addr = addr->v6.sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 return length;
610}
611
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000612/* Initialize a sctp_addr from struct in6_addr. */
613static void sctp_v6_to_addr(union sctp_addr *addr, struct in6_addr *saddr,
Al Viro854d43a2006-11-20 17:06:24 -0800614 __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 addr->sa.sa_family = AF_INET6;
617 addr->v6.sin6_port = port;
Alexander Potapenko15339e442017-08-16 20:16:40 +0200618 addr->v6.sin6_flowinfo = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000619 addr->v6.sin6_addr = *saddr;
Alexander Potapenko15339e442017-08-16 20:16:40 +0200620 addr->v6.sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
Xin Long1071ec92018-04-12 14:24:31 +0800623static int __sctp_v6_cmp_addr(const union sctp_addr *addr1,
624 const union sctp_addr *addr2)
625{
626 if (addr1->sa.sa_family != addr2->sa.sa_family) {
627 if (addr1->sa.sa_family == AF_INET &&
628 addr2->sa.sa_family == AF_INET6 &&
629 ipv6_addr_v4mapped(&addr2->v6.sin6_addr) &&
630 addr2->v6.sin6_addr.s6_addr32[3] ==
631 addr1->v4.sin_addr.s_addr)
632 return 1;
633
634 if (addr2->sa.sa_family == AF_INET &&
635 addr1->sa.sa_family == AF_INET6 &&
636 ipv6_addr_v4mapped(&addr1->v6.sin6_addr) &&
637 addr1->v6.sin6_addr.s6_addr32[3] ==
638 addr2->v4.sin_addr.s_addr)
639 return 1;
640
641 return 0;
642 }
643
644 if (!ipv6_addr_equal(&addr1->v6.sin6_addr, &addr2->v6.sin6_addr))
645 return 0;
646
647 /* If this is a linklocal address, compare the scope_id. */
648 if ((ipv6_addr_type(&addr1->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL) &&
649 addr1->v6.sin6_scope_id && addr2->v6.sin6_scope_id &&
650 addr1->v6.sin6_scope_id != addr2->v6.sin6_scope_id)
651 return 0;
652
653 return 1;
654}
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656/* Compare addresses exactly.
657 * v4-mapped-v6 is also in consideration.
658 */
659static int sctp_v6_cmp_addr(const union sctp_addr *addr1,
660 const union sctp_addr *addr2)
661{
Xin Long1071ec92018-04-12 14:24:31 +0800662 return __sctp_v6_cmp_addr(addr1, addr2) &&
663 addr1->v6.sin6_port == addr2->v6.sin6_port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
666/* Initialize addr struct to INADDR_ANY. */
Al Viro6fbfa9f2006-11-20 17:24:53 -0800667static void sctp_v6_inaddr_any(union sctp_addr *addr, __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
669 memset(addr, 0x00, sizeof(union sctp_addr));
670 addr->v6.sin6_family = AF_INET6;
671 addr->v6.sin6_port = port;
672}
673
674/* Is this a wildcard address? */
675static int sctp_v6_is_any(const union sctp_addr *addr)
676{
Brian Haleyb9b9e102005-04-28 11:59:16 -0700677 return ipv6_addr_any(&addr->v6.sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680/* Should this be available for binding? */
681static int sctp_v6_available(union sctp_addr *addr, struct sctp_sock *sp)
682{
683 int type;
Xin Long9b974202016-07-22 17:38:51 +0800684 struct net *net = sock_net(&sp->inet.sk);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000685 const struct in6_addr *in6 = (const struct in6_addr *)&addr->v6.sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 type = ipv6_addr_type(in6);
688 if (IPV6_ADDR_ANY == type)
689 return 1;
690 if (type == IPV6_ADDR_MAPPED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
692 return 0;
693 sctp_v6_map_v4(addr);
694 return sctp_get_af_specific(AF_INET)->available(addr, sp);
695 }
696 if (!(type & IPV6_ADDR_UNICAST))
697 return 0;
698
Maciej Żenczykowski630e4572021-04-05 00:06:52 -0700699 return ipv6_can_nonlocal_bind(net, &sp->inet) ||
700 ipv6_chk_addr(net, in6, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703/* This function checks if the address is a valid address to be used for
704 * SCTP.
705 *
706 * Output:
707 * Return 0 - If the address is a non-unicast or an illegal address.
708 * Return 1 - If the address is a unicast.
709 */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700710static int sctp_v6_addr_valid(union sctp_addr *addr,
711 struct sctp_sock *sp,
712 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 int ret = ipv6_addr_type(&addr->v6.sin6_addr);
715
716 /* Support v4-mapped-v6 address. */
717 if (ret == IPV6_ADDR_MAPPED) {
718 /* Note: This routine is used in input, so v4-mapped-v6
719 * are disallowed here when there is no sctp_sock.
720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
722 return 0;
723 sctp_v6_map_v4(addr);
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700724 return sctp_get_af_specific(AF_INET)->addr_valid(addr, sp, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 }
726
727 /* Is this a non-unicast address */
728 if (!(ret & IPV6_ADDR_UNICAST))
729 return 0;
730
731 return 1;
732}
733
734/* What is the scope of 'addr'? */
Xin Long1c662012017-08-05 19:59:54 +0800735static enum sctp_scope sctp_v6_scope(union sctp_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Xin Long1c662012017-08-05 19:59:54 +0800737 enum sctp_scope retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 int v6scope;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /* The IPv6 scope is really a set of bit fields.
741 * See IFA_* in <net/if_inet6.h>. Map to a generic SCTP scope.
742 */
743
744 v6scope = ipv6_addr_scope(&addr->v6.sin6_addr);
745 switch (v6scope) {
746 case IFA_HOST:
747 retval = SCTP_SCOPE_LOOPBACK;
748 break;
749 case IFA_LINK:
750 retval = SCTP_SCOPE_LINK;
751 break;
752 case IFA_SITE:
753 retval = SCTP_SCOPE_PRIVATE;
754 break;
755 default:
756 retval = SCTP_SCOPE_GLOBAL;
757 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 return retval;
761}
762
763/* Create and initialize a new sk for the socket to be returned by accept(). */
764static struct sock *sctp_v6_create_accept_sk(struct sock *sk,
David Howellscdfbabf2017-03-09 08:09:05 +0000765 struct sctp_association *asoc,
766 bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 struct sock *newsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct ipv6_pinfo *newnp, *np = inet6_sk(sk);
770 struct sctp6_sock *newsctp6sk;
771
David Howellscdfbabf2017-03-09 08:09:05 +0000772 newsk = sk_alloc(sock_net(sk), PF_INET6, GFP_KERNEL, sk->sk_prot, kern);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (!newsk)
774 goto out;
775
776 sock_init_data(NULL, newsk);
777
Vlad Yasevich914e1c82009-02-13 08:33:44 +0000778 sctp_copy_sock(newsk, sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 sock_reset_flag(sk, SOCK_ZAPPED);
780
781 newsctp6sk = (struct sctp6_sock *)newsk;
782 inet_sk(newsk)->pinet6 = &newsctp6sk->inet6;
783
Dave Johnsonb225b882007-07-25 19:49:29 -0400784 sctp_sk(newsk)->v4mapped = sctp_sk(sk)->v4mapped;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 newnp = inet6_sk(newsk);
787
788 memcpy(newnp, np, sizeof(struct ipv6_pinfo));
Eric Dumazetfdcee2c2017-05-17 07:16:40 -0700789 newnp->ipv6_mc_list = NULL;
790 newnp->ipv6_ac_list = NULL;
791 newnp->ipv6_fl_list = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Richard Hainesb7e10c22018-02-24 16:18:51 +0000793 sctp_v6_copy_ip_options(sk, newsk);
Eric Dumazet9470e242015-12-09 07:25:06 -0800794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /* Initialize sk's sport, dport, rcv_saddr and daddr for getsockname()
796 * and getpeername().
797 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 sctp_v6_to_sk_daddr(&asoc->peer.primary_addr, newsk);
799
Matija Glavinic Pecotic661dbf32014-02-06 08:30:10 +0100800 newsk->sk_v6_rcv_saddr = sk->sk_v6_rcv_saddr;
801
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700802 sk_refcnt_debug_inc(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (newsk->sk_prot->init(newsk)) {
805 sk_common_release(newsk);
806 newsk = NULL;
807 }
808
809out:
810 return newsk;
811}
812
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600813/* Format a sockaddr for return to user space. This makes sure the return is
814 * AF_INET or AF_INET6 depending on the SCTP_I_WANT_MAPPED_V4_ADDR option.
815 */
816static int sctp_v6_addr_to_user(struct sctp_sock *sp, union sctp_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600818 if (sp->v4mapped) {
819 if (addr->sa.sa_family == AF_INET)
820 sctp_v4_map_v6(addr);
821 } else {
822 if (addr->sa.sa_family == AF_INET6 &&
823 ipv6_addr_v4mapped(&addr->v6.sin6_addr))
824 sctp_v6_map_v4(addr);
825 }
826
Eric Dumazet6780db22018-04-07 17:15:22 -0700827 if (addr->sa.sa_family == AF_INET) {
828 memset(addr->v4.sin_zero, 0, sizeof(addr->v4.sin_zero));
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600829 return sizeof(struct sockaddr_in);
Eric Dumazet6780db22018-04-07 17:15:22 -0700830 }
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600831 return sizeof(struct sockaddr_in6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/* Where did this skb come from? */
835static int sctp_v6_skb_iif(const struct sk_buff *skb)
836{
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -0300837 return IP6CB(skb)->iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
840/* Was this packet marked by Explicit Congestion Notification? */
841static int sctp_v6_is_ce(const struct sk_buff *skb)
842{
Xin Long978aa042017-10-28 19:43:57 +0800843 return *((__u32 *)(ipv6_hdr(skb))) & (__force __u32)htonl(1 << 20);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
846/* Dump the v6 addr to the seq file. */
847static void sctp_v6_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
848{
Harvey Harrison5b095d9892008-10-29 12:52:50 -0700849 seq_printf(seq, "%pI6 ", &addr->v6.sin6_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Vlad Yasevichb9031d92008-06-04 12:40:15 -0700852static void sctp_v6_ecn_capable(struct sock *sk)
853{
854 inet6_sk(sk)->tclass |= INET_ECN_ECT_0;
855}
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857/* Initialize a PF_INET msgname from a ulpevent. */
858static void sctp_inet6_event_msgname(struct sctp_ulpevent *event,
859 char *msgname, int *addrlen)
860{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600861 union sctp_addr *addr;
862 struct sctp_association *asoc;
863 union sctp_addr *paddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600865 if (!msgname)
866 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600868 addr = (union sctp_addr *)msgname;
869 asoc = event->asoc;
870 paddr = &asoc->peer.primary_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600872 if (paddr->sa.sa_family == AF_INET) {
873 addr->v4.sin_family = AF_INET;
874 addr->v4.sin_port = htons(asoc->peer.port);
875 addr->v4.sin_addr = paddr->v4.sin_addr;
876 } else {
877 addr->v6.sin6_family = AF_INET6;
878 addr->v6.sin6_flowinfo = 0;
879 if (ipv6_addr_type(&paddr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
880 addr->v6.sin6_scope_id = paddr->v6.sin6_scope_id;
881 else
882 addr->v6.sin6_scope_id = 0;
883 addr->v6.sin6_port = htons(asoc->peer.port);
884 addr->v6.sin6_addr = paddr->v6.sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600886
887 *addrlen = sctp_v6_addr_to_user(sctp_sk(asoc->base.sk), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890/* Initialize a msg_name from an inbound skb. */
891static void sctp_inet6_skb_msgname(struct sk_buff *skb, char *msgname,
892 int *addr_len)
893{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600894 union sctp_addr *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 struct sctphdr *sh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600897 if (!msgname)
898 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600900 addr = (union sctp_addr *)msgname;
901 sh = sctp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600903 if (ip_hdr(skb)->version == 4) {
904 addr->v4.sin_family = AF_INET;
905 addr->v4.sin_port = sh->source;
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -0300906 addr->v4.sin_addr.s_addr = ip_hdr(skb)->saddr;
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600907 } else {
908 addr->v6.sin6_family = AF_INET6;
909 addr->v6.sin6_flowinfo = 0;
910 addr->v6.sin6_port = sh->source;
911 addr->v6.sin6_addr = ipv6_hdr(skb)->saddr;
Eric W. Biederman7c8a61d2017-11-15 22:17:48 -0600912 if (ipv6_addr_type(&addr->v6.sin6_addr) & IPV6_ADDR_LINKLOCAL)
Marcelo Ricardo Leitner1f45f782016-07-13 15:08:57 -0300913 addr->v6.sin6_scope_id = sctp_v6_skb_iif(skb);
Eric W. Biederman7c8a61d2017-11-15 22:17:48 -0600914 else
915 addr->v6.sin6_scope_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600917
918 *addr_len = sctp_v6_addr_to_user(sctp_sk(skb->sk), addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
920
921/* Do we support this AF? */
922static int sctp_inet6_af_supported(sa_family_t family, struct sctp_sock *sp)
923{
924 switch (family) {
925 case AF_INET6:
926 return 1;
927 /* v4-mapped-v6 addresses */
928 case AF_INET:
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700929 if (!__ipv6_only_sock(sctp_opt2sk(sp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return 1;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500931 fallthrough;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 default:
933 return 0;
934 }
935}
936
937/* Address matching with wildcards allowed. This extra level
938 * of indirection lets us choose whether a PF_INET6 should
939 * disallow any v4 addresses if we so choose.
940 */
941static int sctp_inet6_cmp_addr(const union sctp_addr *addr1,
942 const union sctp_addr *addr2,
943 struct sctp_sock *opt)
944{
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400945 struct sock *sk = sctp_opt2sk(opt);
Xin Long1071ec92018-04-12 14:24:31 +0800946 struct sctp_af *af1, *af2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 af1 = sctp_get_af_specific(addr1->sa.sa_family);
949 af2 = sctp_get_af_specific(addr2->sa.sa_family);
950
951 if (!af1 || !af2)
952 return 0;
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700953
954 /* If the socket is IPv6 only, v4 addrs will not match */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400955 if (__ipv6_only_sock(sk) && af1 != af2)
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700956 return 0;
957
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 /* Today, wildcard AF_INET/AF_INET6. */
Vlad Yasevich52cae8f2008-08-18 10:34:34 -0400959 if (sctp_is_any(sk, addr1) || sctp_is_any(sk, addr2))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return 1;
961
Xin Longd6253292018-04-26 14:13:57 +0800962 if (addr1->sa.sa_family == AF_INET && addr2->sa.sa_family == AF_INET)
963 return addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr;
964
Xin Long1071ec92018-04-12 14:24:31 +0800965 return __sctp_v6_cmp_addr(addr1, addr2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/* Verify that the provided sockaddr looks bindable. Common verification,
969 * has already been taken care of.
970 */
971static int sctp_inet6_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
972{
973 struct sctp_af *af;
974
975 /* ASSERT: address family has already been verified. */
976 if (addr->sa.sa_family != AF_INET6)
977 af = sctp_get_af_specific(addr->sa.sa_family);
978 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int type = ipv6_addr_type(&addr->v6.sin6_addr);
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -0700980 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -0700982 if (type & IPV6_ADDR_LINKLOCAL) {
Eric W. Biedermanbb2db452012-08-06 08:46:26 +0000983 struct net *net;
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -0700984 if (!addr->v6.sin6_scope_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 return 0;
Eric W. Biedermanbb2db452012-08-06 08:46:26 +0000986 net = sock_net(&opt->inet.sk);
Eric Dumazet40c9c312009-11-05 20:56:46 -0800987 rcu_read_lock();
Eric W. Biedermanbb2db452012-08-06 08:46:26 +0000988 dev = dev_get_by_index_rcu(net, addr->v6.sin6_scope_id);
Maciej Żenczykowski630e4572021-04-05 00:06:52 -0700989 if (!dev || !(ipv6_can_nonlocal_bind(net, &opt->inet) ||
Laszlo Tothb71d21c2017-10-23 19:19:33 +0200990 ipv6_chk_addr(net, &addr->v6.sin6_addr,
991 dev, 0))) {
Eric Dumazet40c9c312009-11-05 20:56:46 -0800992 rcu_read_unlock();
Vlad Yasevich1669d852007-07-03 14:29:23 -0400993 return 0;
994 }
Eric Dumazet40c9c312009-11-05 20:56:46 -0800995 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 af = opt->pf->af;
999 }
1000 return af->available(addr, opt);
1001}
1002
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -07001003/* Verify that the provided sockaddr looks sendable. Common verification,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 * has already been taken care of.
1005 */
1006static int sctp_inet6_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
1007{
1008 struct sctp_af *af = NULL;
1009
1010 /* ASSERT: address family has already been verified. */
1011 if (addr->sa.sa_family != AF_INET6)
1012 af = sctp_get_af_specific(addr->sa.sa_family);
1013 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 int type = ipv6_addr_type(&addr->v6.sin6_addr);
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -07001015 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -07001017 if (type & IPV6_ADDR_LINKLOCAL) {
1018 if (!addr->v6.sin6_scope_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 return 0;
Eric Dumazet40c9c312009-11-05 20:56:46 -08001020 rcu_read_lock();
Eric W. Biedermanbb2db452012-08-06 08:46:26 +00001021 dev = dev_get_by_index_rcu(sock_net(&opt->inet.sk),
Eric Dumazet40c9c312009-11-05 20:56:46 -08001022 addr->v6.sin6_scope_id);
1023 rcu_read_unlock();
Sridhar Samudrala6a6ddb22005-06-13 15:13:05 -07001024 if (!dev)
1025 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 }
1027 af = opt->pf->af;
1028 }
1029
1030 return af != NULL;
1031}
1032
1033/* Fill in Supported Address Type information for INIT and INIT-ACK
1034 * chunks. Note: In the future, we may want to look at sock options
1035 * to determine whether a PF_INET6 socket really wants to have IPV4
1036 * addresses.
1037 * Returns number of addresses supported.
1038 */
1039static int sctp_inet6_supported_addrs(const struct sctp_sock *opt,
Al Viro3dbe8652006-11-20 17:25:49 -08001040 __be16 *types)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07001042 types[0] = SCTP_PARAM_IPV6_ADDRESS;
1043 if (!opt || !ipv6_only_sock(sctp_opt2sk(opt))) {
1044 types[1] = SCTP_PARAM_IPV4_ADDRESS;
1045 return 2;
1046 }
1047 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001050/* Handle SCTP_I_WANT_MAPPED_V4_ADDR for getpeername() and getsockname() */
1051static int sctp_getname(struct socket *sock, struct sockaddr *uaddr,
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001052 int peer)
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001053{
1054 int rc;
1055
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001056 rc = inet6_getname(sock, uaddr, peer);
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001057
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001058 if (rc < 0)
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001059 return rc;
1060
Denys Vlasenko9b2c45d2018-02-12 20:00:20 +01001061 rc = sctp_v6_addr_to_user(sctp_sk(sock->sk),
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001062 (union sctp_addr *)uaddr);
1063
1064 return rc;
1065}
1066
Eric Dumazet90ddc4f2005-12-22 12:49:22 -08001067static const struct proto_ops inet6_seqpacket_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001068 .family = PF_INET6,
1069 .owner = THIS_MODULE,
1070 .release = inet6_release,
1071 .bind = inet6_bind,
Xin Long644fbde2018-05-20 16:39:10 +08001072 .connect = sctp_inet_connect,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001073 .socketpair = sock_no_socketpair,
1074 .accept = inet_accept,
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001075 .getname = sctp_getname,
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001076 .poll = sctp_poll,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001077 .ioctl = inet6_ioctl,
Arnd Bergmannc7cbdbf2019-04-17 22:51:48 +02001078 .gettstamp = sock_gettstamp,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001079 .listen = sctp_inet_listen,
1080 .shutdown = inet_shutdown,
1081 .setsockopt = sock_common_setsockopt,
1082 .getsockopt = sock_common_getsockopt,
1083 .sendmsg = inet_sendmsg,
Xin Longfd2d1802016-07-22 21:25:42 +08001084 .recvmsg = inet_recvmsg,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001085 .mmap = sock_no_mmap,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001086#ifdef CONFIG_COMPAT
Christoph Hellwig39869122020-05-18 08:28:06 +02001087 .compat_ioctl = inet6_compat_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001088#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089};
1090
1091static struct inet_protosw sctpv6_seqpacket_protosw = {
1092 .type = SOCK_SEQPACKET,
1093 .protocol = IPPROTO_SCTP,
1094 .prot = &sctpv6_prot,
1095 .ops = &inet6_seqpacket_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .flags = SCTP_PROTOSW_FLAG
1097};
1098static struct inet_protosw sctpv6_stream_protosw = {
1099 .type = SOCK_STREAM,
1100 .protocol = IPPROTO_SCTP,
1101 .prot = &sctpv6_prot,
1102 .ops = &inet6_seqpacket_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .flags = SCTP_PROTOSW_FLAG,
1104};
1105
Herbert Xue5bbef22007-10-15 12:50:28 -07001106static int sctp6_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Xin Long03560102020-11-04 14:55:32 +08001108 SCTP_INPUT_CB(skb)->encap_port = 0;
Herbert Xue5bbef22007-10-15 12:50:28 -07001109 return sctp_rcv(skb) ? -1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Alexey Dobriyan41135cc2009-09-14 12:22:28 +00001112static const struct inet6_protocol sctpv6_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 .handler = sctp6_rcv,
1114 .err_handler = sctp_v6_err,
1115 .flags = INET6_PROTO_NOPOLICY | INET6_PROTO_FINAL,
1116};
1117
Neil Horman15efbe72008-02-15 09:53:59 -05001118static struct sctp_af sctp_af_inet6 = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001119 .sa_family = AF_INET6,
1120 .sctp_xmit = sctp_v6_xmit,
1121 .setsockopt = ipv6_setsockopt,
1122 .getsockopt = ipv6_getsockopt,
1123 .get_dst = sctp_v6_get_dst,
1124 .get_saddr = sctp_v6_get_saddr,
1125 .copy_addrlist = sctp_v6_copy_addrlist,
1126 .from_skb = sctp_v6_from_skb,
1127 .from_sk = sctp_v6_from_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001128 .from_addr_param = sctp_v6_from_addr_param,
1129 .to_addr_param = sctp_v6_to_addr_param,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001130 .cmp_addr = sctp_v6_cmp_addr,
1131 .scope = sctp_v6_scope,
1132 .addr_valid = sctp_v6_addr_valid,
1133 .inaddr_any = sctp_v6_inaddr_any,
1134 .is_any = sctp_v6_is_any,
1135 .available = sctp_v6_available,
1136 .skb_iif = sctp_v6_skb_iif,
1137 .is_ce = sctp_v6_is_ce,
1138 .seq_dump_addr = sctp_v6_seq_dump_addr,
Vlad Yasevichb9031d92008-06-04 12:40:15 -07001139 .ecn_capable = sctp_v6_ecn_capable,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001140 .net_header_len = sizeof(struct ipv6hdr),
1141 .sockaddr_len = sizeof(struct sockaddr_in6),
Richard Hainesb7e10c22018-02-24 16:18:51 +00001142 .ip_options_len = sctp_v6_ip_options_len,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143};
1144
Neil Horman15efbe72008-02-15 09:53:59 -05001145static struct sctp_pf sctp_pf_inet6 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 .event_msgname = sctp_inet6_event_msgname,
1147 .skb_msgname = sctp_inet6_skb_msgname,
1148 .af_supported = sctp_inet6_af_supported,
1149 .cmp_addr = sctp_inet6_cmp_addr,
1150 .bind_verify = sctp_inet6_bind_verify,
1151 .send_verify = sctp_inet6_send_verify,
1152 .supported_addrs = sctp_inet6_supported_addrs,
1153 .create_accept_sk = sctp_v6_create_accept_sk,
Jason Gunthorpe299ee122014-07-30 12:40:53 -06001154 .addr_to_user = sctp_v6_addr_to_user,
1155 .to_sk_saddr = sctp_v6_to_sk_saddr,
1156 .to_sk_daddr = sctp_v6_to_sk_daddr,
Richard Hainesb7e10c22018-02-24 16:18:51 +00001157 .copy_ip_options = sctp_v6_copy_ip_options,
Neil Horman15efbe72008-02-15 09:53:59 -05001158 .af = &sctp_af_inet6,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159};
1160
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001161/* Initialize IPv6 support and register with socket layer. */
Vlad Yasevich270637a2008-03-20 15:17:14 -07001162void sctp_v6_pf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 /* Register the SCTP specific PF_INET6 functions. */
Neil Horman15efbe72008-02-15 09:53:59 -05001165 sctp_register_pf(&sctp_pf_inet6, PF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
1167 /* Register the SCTP specific AF_INET6 functions. */
Neil Horman15efbe72008-02-15 09:53:59 -05001168 sctp_register_af(&sctp_af_inet6);
Vlad Yasevich270637a2008-03-20 15:17:14 -07001169}
1170
1171void sctp_v6_pf_exit(void)
1172{
1173 list_del(&sctp_af_inet6.list);
1174}
1175
1176/* Initialize IPv6 support and register with socket layer. */
1177int sctp_v6_protosw_init(void)
1178{
1179 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001181 rc = proto_register(&sctpv6_prot, 1);
1182 if (rc)
1183 return rc;
1184
1185 /* Add SCTPv6(UDP and TCP style) to inetsw6 linked list. */
1186 inet6_register_protosw(&sctpv6_seqpacket_protosw);
1187 inet6_register_protosw(&sctpv6_stream_protosw);
1188
1189 return 0;
1190}
1191
Vlad Yasevich270637a2008-03-20 15:17:14 -07001192void sctp_v6_protosw_exit(void)
1193{
1194 inet6_unregister_protosw(&sctpv6_seqpacket_protosw);
1195 inet6_unregister_protosw(&sctpv6_stream_protosw);
1196 proto_unregister(&sctpv6_prot);
1197}
1198
1199
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001200/* Register with inet6 layer. */
1201int sctp_v6_add_protocol(void)
1202{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /* Register notifier for inet6 address additions/deletions. */
1204 register_inet6addr_notifier(&sctp_inet6addr_notifier);
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001205
1206 if (inet6_add_protocol(&sctpv6_protocol, IPPROTO_SCTP) < 0)
1207 return -EAGAIN;
1208
1209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210}
1211
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001212/* Unregister with inet6 layer. */
1213void sctp_v6_del_protocol(void)
1214{
1215 inet6_del_protocol(&sctpv6_protocol, IPPROTO_SCTP);
1216 unregister_inet6addr_notifier(&sctp_inet6addr_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}