blob: 493b817f6a2a370b7c6a4a19dad08c82e96e4ece [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Initialization/cleanup for SCTP protocol support.
12 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050013 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * you can redistribute it and/or modify it under the terms of
15 * the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050019 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
21 * ************************
22 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 * See the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
Jeff Kirsher4b2f13a2013-12-06 06:28:48 -080026 * along with GNU CC; see the file COPYING. If not, see
27 * <http://www.gnu.org/licenses/>.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * Please send any bug reports or fixes you make to the
30 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020031 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 * Written or modified by:
34 * La Monte H.P. Yarroll <piggy@acm.org>
35 * Karl Knutson <karl@athena.chicago.il.us>
36 * Jon Grimm <jgrimm@us.ibm.com>
37 * Sridhar Samudrala <sri@us.ibm.com>
38 * Daisy Chang <daisyc@us.ibm.com>
39 * Ardelle Fan <ardelle.fan@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 */
41
Joe Perches145ce502010-08-24 13:21:08 +000042#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/module.h>
45#include <linux/init.h>
46#include <linux/netdevice.h>
47#include <linux/inetdevice.h>
48#include <linux/seq_file.h>
Neil Horman4d93df02007-08-15 16:07:44 -070049#include <linux/bootmem.h>
Vlad Yasevich845525a2008-07-18 23:08:21 -070050#include <linux/highmem.h>
51#include <linux/swap.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090052#include <linux/slab.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020053#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <net/protocol.h>
55#include <net/ip.h>
56#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020057#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#include <net/sctp/sctp.h>
59#include <net/addrconf.h>
60#include <net/inet_common.h>
61#include <net/inet_ecn.h>
62
Neil Hormand9749fb2016-02-18 16:10:57 -050063#define MAX_SCTP_PORT_HASH_ENTRIES (64 * 1024)
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/* Global data structures. */
Brian Haley4cbf1ca2006-09-18 00:04:22 -070066struct sctp_globals sctp_globals __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68struct idr sctp_assocs_id;
69DEFINE_SPINLOCK(sctp_assocs_id_lock);
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071static struct sctp_pf *sctp_pf_inet6_specific;
72static struct sctp_pf *sctp_pf_inet_specific;
73static struct sctp_af *sctp_af_v4_specific;
74static struct sctp_af *sctp_af_v6_specific;
75
Christoph Lametere18b8902006-12-06 20:33:20 -080076struct kmem_cache *sctp_chunk_cachep __read_mostly;
77struct kmem_cache *sctp_bucket_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Eric Dumazet8d987e52010-11-09 23:24:26 +000079long sysctl_sctp_mem[3];
Vlad Yasevich007e3932007-09-16 16:04:37 -070080int sysctl_sctp_rmem[3];
81int sysctl_sctp_wmem[3];
Neil Horman4d93df02007-08-15 16:07:44 -070082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083/* Private helper to extract ipv4 address and stash them in
84 * the protocol structure.
85 */
86static void sctp_v4_copy_addrlist(struct list_head *addrlist,
87 struct net_device *dev)
88{
89 struct in_device *in_dev;
90 struct in_ifaddr *ifa;
91 struct sctp_sockaddr_entry *addr;
92
93 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -070094 if ((in_dev = __in_dev_get_rcu(dev)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 rcu_read_unlock();
96 return;
97 }
98
99 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
100 /* Add the address to the local list. */
Daniel Borkmann939cfa72013-06-17 11:40:04 +0200101 addr = kzalloc(sizeof(*addr), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (addr) {
Al Viro2a6fd782006-11-20 17:04:42 -0800103 addr->a.v4.sin_family = AF_INET;
104 addr->a.v4.sin_port = 0;
105 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
Vlad Yasevich29303542007-09-16 16:02:12 -0700106 addr->valid = 1;
107 INIT_LIST_HEAD(&addr->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 list_add_tail(&addr->list, addrlist);
109 }
110 }
111
112 rcu_read_unlock();
113}
114
115/* Extract our IP addresses from the system and stash them in the
116 * protocol structure.
117 */
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000118static void sctp_get_local_addr_list(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 struct net_device *dev;
121 struct list_head *pos;
122 struct sctp_af *af;
123
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800124 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000125 for_each_netdev_rcu(net, dev) {
Dave Jones2c0740e2013-06-17 22:26:52 -0400126 list_for_each(pos, &sctp_address_families) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 af = list_entry(pos, struct sctp_af, list);
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000128 af->copy_addrlist(&net->sctp.local_addr_list, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130 }
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800131 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/* Free the existing local addresses. */
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000135static void sctp_free_local_addr_list(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136{
137 struct sctp_sockaddr_entry *addr;
138 struct list_head *pos, *temp;
139
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000140 list_for_each_safe(pos, temp, &net->sctp.local_addr_list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
142 list_del(pos);
143 kfree(addr);
144 }
145}
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/* Copy the local addresses which are valid for 'scope' into 'bp'. */
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000148int sctp_copy_local_addr_list(struct net *net, struct sctp_bind_addr *bp,
Xin Long1c662012017-08-05 19:59:54 +0800149 enum sctp_scope scope, gfp_t gfp, int copy_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
151 struct sctp_sockaddr_entry *addr;
Xin Long2e3ce5b2017-02-24 15:18:46 +0800152 union sctp_addr laddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Vlad Yasevich29303542007-09-16 16:02:12 -0700155 rcu_read_lock();
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000156 list_for_each_entry_rcu(addr, &net->sctp.local_addr_list, list) {
Vlad Yasevich29303542007-09-16 16:02:12 -0700157 if (!addr->valid)
158 continue;
Xin Long165f2cf2016-12-20 13:49:49 +0800159 if (!sctp_in_scope(net, &addr->a, scope))
160 continue;
161
162 /* Now that the address is in scope, check to see if
163 * the address type is really supported by the local
164 * sock as well as the remote peer.
165 */
166 if (addr->a.sa.sa_family == AF_INET &&
167 !(copy_flags & SCTP_ADDR4_PEERSUPP))
168 continue;
169 if (addr->a.sa.sa_family == AF_INET6 &&
170 (!(copy_flags & SCTP_ADDR6_ALLOWED) ||
171 !(copy_flags & SCTP_ADDR6_PEERSUPP)))
172 continue;
173
Xin Long2e3ce5b2017-02-24 15:18:46 +0800174 laddr = addr->a;
175 /* also works for setting ipv6 address port */
176 laddr.v4.sin_port = htons(bp->port);
177 if (sctp_bind_addr_state(bp, &laddr) != -1)
Xin Longb8607802016-12-20 13:49:50 +0800178 continue;
179
Xin Long165f2cf2016-12-20 13:49:49 +0800180 error = sctp_add_bind_addr(bp, &addr->a, sizeof(addr->a),
181 SCTP_ADDR_SRC, GFP_ATOMIC);
182 if (error)
183 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
185
Vlad Yasevich29303542007-09-16 16:02:12 -0700186 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 return error;
188}
189
190/* Initialize a sctp_addr from in incoming skb. */
191static void sctp_v4_from_skb(union sctp_addr *addr, struct sk_buff *skb,
192 int is_saddr)
193{
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200194 /* Always called on head skb, so this is safe */
195 struct sctphdr *sh = sctp_hdr(skb);
196 struct sockaddr_in *sa = &addr->v4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 addr->v4.sin_family = AF_INET;
199
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (is_saddr) {
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200201 sa->sin_port = sh->source;
202 sa->sin_addr.s_addr = ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 } else {
Marcelo Ricardo Leitner0630c562016-12-28 09:26:33 -0200204 sa->sin_port = sh->dest;
205 sa->sin_addr.s_addr = ip_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
209/* Initialize an sctp_addr from a socket. */
210static void sctp_v4_from_sk(union sctp_addr *addr, struct sock *sk)
211{
212 addr->v4.sin_family = AF_INET;
Al Viro7dcdbd92006-11-20 17:24:21 -0800213 addr->v4.sin_port = 0;
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000214 addr->v4.sin_addr.s_addr = inet_sk(sk)->inet_rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/* Initialize sk->sk_rcv_saddr from sctp_addr. */
218static void sctp_v4_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
219{
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000220 inet_sk(sk)->inet_rcv_saddr = addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221}
222
223/* Initialize sk->sk_daddr from sctp_addr. */
224static void sctp_v4_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
225{
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000226 inet_sk(sk)->inet_daddr = addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
229/* Initialize a sctp_addr from an address parameter. */
230static void sctp_v4_from_addr_param(union sctp_addr *addr,
231 union sctp_addr_param *param,
Al Virodd86d132006-11-20 17:11:13 -0800232 __be16 port, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 addr->v4.sin_family = AF_INET;
235 addr->v4.sin_port = port;
236 addr->v4.sin_addr.s_addr = param->v4.addr.s_addr;
237}
238
239/* Initialize an address parameter from a sctp_addr and return the length
240 * of the address parameter.
241 */
242static int sctp_v4_to_addr_param(const union sctp_addr *addr,
243 union sctp_addr_param *param)
244{
Xin Longa38905e2017-07-17 11:29:49 +0800245 int length = sizeof(struct sctp_ipv4addr_param);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 param->v4.param_hdr.type = SCTP_PARAM_IPV4_ADDRESS;
Al Virodbc16db2006-11-20 17:01:42 -0800248 param->v4.param_hdr.length = htons(length);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900249 param->v4.addr.s_addr = addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 return length;
252}
253
254/* Initialize a sctp_addr from a dst_entry. */
David S. Miller18a353f42011-05-03 20:55:05 -0700255static void sctp_v4_dst_saddr(union sctp_addr *saddr, struct flowi4 *fl4,
Al Viro854d43a2006-11-20 17:06:24 -0800256 __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 saddr->v4.sin_family = AF_INET;
259 saddr->v4.sin_port = port;
David S. Miller18a353f42011-05-03 20:55:05 -0700260 saddr->v4.sin_addr.s_addr = fl4->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261}
262
263/* Compare two addresses exactly. */
264static int sctp_v4_cmp_addr(const union sctp_addr *addr1,
265 const union sctp_addr *addr2)
266{
267 if (addr1->sa.sa_family != addr2->sa.sa_family)
268 return 0;
269 if (addr1->v4.sin_port != addr2->v4.sin_port)
270 return 0;
271 if (addr1->v4.sin_addr.s_addr != addr2->v4.sin_addr.s_addr)
272 return 0;
273
274 return 1;
275}
276
277/* Initialize addr struct to INADDR_ANY. */
Al Viro6fbfa9f2006-11-20 17:24:53 -0800278static void sctp_v4_inaddr_any(union sctp_addr *addr, __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 addr->v4.sin_family = AF_INET;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700281 addr->v4.sin_addr.s_addr = htonl(INADDR_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 addr->v4.sin_port = port;
283}
284
285/* Is this a wildcard address? */
286static int sctp_v4_is_any(const union sctp_addr *addr)
287{
Al Viroe6f1ceb2008-03-17 22:44:53 -0700288 return htonl(INADDR_ANY) == addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291/* This function checks if the address is a valid address to be used for
292 * SCTP binding.
293 *
294 * Output:
295 * Return 0 - If the address is a non-unicast or an illegal address.
296 * Return 1 - If the address is a unicast.
297 */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700298static int sctp_v4_addr_valid(union sctp_addr *addr,
299 struct sctp_sock *sp,
300 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301{
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700302 /* IPv4 addresses not allowed */
303 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
304 return 0;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Is this a non-unicast address or a unusable SCTP address? */
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800307 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 return 0;
309
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900310 /* Is this a broadcast address? */
Eric Dumazet511c3f92009-06-02 05:14:27 +0000311 if (skb && skb_rtable(skb)->rt_flags & RTCF_BROADCAST)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900312 return 0;
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return 1;
315}
316
317/* Should this be available for binding? */
318static int sctp_v4_available(union sctp_addr *addr, struct sctp_sock *sp)
319{
Eric W. Biedermanbb2db452012-08-06 08:46:26 +0000320 struct net *net = sock_net(&sp->inet.sk);
321 int ret = inet_addr_type(net, addr->v4.sin_addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Al Viroe6f1ceb2008-03-17 22:44:53 -0700324 if (addr->v4.sin_addr.s_addr != htonl(INADDR_ANY) &&
Neil Hormancdac4e02005-06-13 15:12:33 -0700325 ret != RTN_LOCAL &&
326 !sp->inet.freebind &&
Vincent Bernat49a60152014-09-05 15:09:03 +0200327 !net->ipv4.sysctl_ip_nonlocal_bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return 0;
Neil Hormancdac4e02005-06-13 15:12:33 -0700329
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700330 if (ipv6_only_sock(sctp_opt2sk(sp)))
331 return 0;
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 return 1;
334}
335
336/* Checking the loopback, private and other address scopes as defined in
337 * RFC 1918. The IPv4 scoping is based on the draft for SCTP IPv4
338 * scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
339 *
340 * Level 0 - unusable SCTP addresses
341 * Level 1 - loopback address
342 * Level 2 - link-local addresses
343 * Level 3 - private addresses.
344 * Level 4 - global addresses
345 * For INIT and INIT-ACK address list, let L be the level of
346 * of requested destination address, sender and receiver
347 * SHOULD include all of its addresses with level greater
348 * than or equal to L.
Bhaskar Dutta72388432009-09-03 17:25:47 +0530349 *
350 * IPv4 scoping can be controlled through sysctl option
351 * net.sctp.addr_scope_policy
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
Xin Long1c662012017-08-05 19:59:54 +0800353static enum sctp_scope sctp_v4_scope(union sctp_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Xin Long1c662012017-08-05 19:59:54 +0800355 enum sctp_scope retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* Check for unusable SCTP addresses. */
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800358 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 retval = SCTP_SCOPE_UNUSABLE;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800360 } else if (ipv4_is_loopback(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 retval = SCTP_SCOPE_LOOPBACK;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800362 } else if (ipv4_is_linklocal_169(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 retval = SCTP_SCOPE_LINK;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800364 } else if (ipv4_is_private_10(addr->v4.sin_addr.s_addr) ||
365 ipv4_is_private_172(addr->v4.sin_addr.s_addr) ||
366 ipv4_is_private_192(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 retval = SCTP_SCOPE_PRIVATE;
368 } else {
369 retval = SCTP_SCOPE_GLOBAL;
370 }
371
372 return retval;
373}
374
375/* Returns a valid dst cache entry for the given source and destination ip
376 * addresses. If an association is passed, trys to get a dst entry with a
377 * source address that matches an address in the bind address list.
378 */
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000379static void sctp_v4_get_dst(struct sctp_transport *t, union sctp_addr *saddr,
380 struct flowi *fl, struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000382 struct sctp_association *asoc = t->asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct rtable *rt;
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000384 struct flowi4 *fl4 = &fl->u.ip4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct sctp_bind_addr *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 struct sctp_sockaddr_entry *laddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 struct dst_entry *dst = NULL;
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000388 union sctp_addr *daddr = &t->ipaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 union sctp_addr dst_saddr;
390
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000391 memset(fl4, 0x0, sizeof(struct flowi4));
392 fl4->daddr = daddr->v4.sin_addr.s_addr;
393 fl4->fl4_dport = daddr->v4.sin_port;
394 fl4->flowi4_proto = IPPROTO_SCTP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (asoc) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000396 fl4->flowi4_tos = RT_CONN_FLAGS(asoc->base.sk);
397 fl4->flowi4_oif = asoc->base.sk->sk_bound_dev_if;
398 fl4->fl4_sport = htons(asoc->base.bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
Wei Yongjun6429d3d2010-04-30 21:42:44 -0400400 if (saddr) {
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000401 fl4->saddr = saddr->v4.sin_addr.s_addr;
402 fl4->fl4_sport = saddr->v4.sin_port;
Wei Yongjun6429d3d2010-04-30 21:42:44 -0400403 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Daniel Borkmannbb333812013-06-28 19:49:40 +0200405 pr_debug("%s: dst:%pI4, src:%pI4 - ", __func__, &fl4->daddr,
406 &fl4->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Eric W. Biedermanbb2db452012-08-06 08:46:26 +0000408 rt = ip_route_output_key(sock_net(sk), fl4);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800409 if (!IS_ERR(rt))
Changli Gaod8d1f302010-06-10 23:31:35 -0700410 dst = &rt->dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* If there is no association or if a source address is passed, no
413 * more validation is required.
414 */
415 if (!asoc || saddr)
416 goto out;
417
418 bp = &asoc->base.bind_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 if (dst) {
421 /* Walk through the bind address list and look for a bind
422 * address that matches the source address of the returned dst.
423 */
David S. Miller18a353f42011-05-03 20:55:05 -0700424 sctp_v4_dst_saddr(&dst_saddr, fl4, htons(bp->port));
Vlad Yasevich559cf712007-09-16 16:03:28 -0700425 rcu_read_lock();
426 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
Michio Honda8a07eb02011-04-26 20:19:36 +0900427 if (!laddr->valid || (laddr->state == SCTP_ADDR_DEL) ||
428 (laddr->state != SCTP_ADDR_SRC &&
429 !asoc->src_out_of_asoc_ok))
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700430 continue;
Al Viro854d43a2006-11-20 17:06:24 -0800431 if (sctp_v4_cmp_addr(&dst_saddr, &laddr->a))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 goto out_unlock;
433 }
Vlad Yasevich559cf712007-09-16 16:03:28 -0700434 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /* None of the bound addresses match the source address of the
437 * dst. So release it.
438 */
439 dst_release(dst);
440 dst = NULL;
441 }
442
443 /* Walk through the bind address list and try to get a dst that
444 * matches a bind address as the source address.
445 */
Vlad Yasevich559cf712007-09-16 16:03:28 -0700446 rcu_read_lock();
447 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
Marcelo Ricardo Leitner0ca50d12015-07-17 12:34:18 -0300448 struct net_device *odev;
449
Vlad Yasevich559cf712007-09-16 16:03:28 -0700450 if (!laddr->valid)
451 continue;
Marcelo Ricardo Leitner07868282015-07-17 12:34:17 -0300452 if (laddr->state != SCTP_ADDR_SRC ||
453 AF_INET != laddr->a.sa.sa_family)
454 continue;
Xufeng Zhang85350872014-04-25 16:55:41 +0800455
Marcelo Ricardo Leitner07868282015-07-17 12:34:17 -0300456 fl4->fl4_sport = laddr->a.v4.sin_port;
457 flowi4_update_output(fl4,
458 asoc->base.sk->sk_bound_dev_if,
459 RT_CONN_FLAGS(asoc->base.sk),
460 daddr->v4.sin_addr.s_addr,
461 laddr->a.v4.sin_addr.s_addr);
462
463 rt = ip_route_output_key(sock_net(sk), fl4);
464 if (IS_ERR(rt))
465 continue;
466
Marcelo Ricardo Leitner0ca50d12015-07-17 12:34:18 -0300467 /* Ensure the src address belongs to the output
468 * interface.
469 */
470 odev = __ip_dev_find(sock_net(sk), laddr->a.v4.sin_addr.s_addr,
471 false);
Marcelo Ricardo Leitnerd82f0f1f2015-09-02 16:20:21 -0300472 if (!odev || odev->ifindex != fl4->flowi4_oif) {
Tommi Rantala4a31a6b2018-02-05 21:48:14 +0200473 if (!dst)
474 dst = &rt->dst;
475 else
Marcelo Ricardo Leitner410f0382015-09-02 16:20:22 -0300476 dst_release(&rt->dst);
Marcelo Ricardo Leitner0ca50d12015-07-17 12:34:18 -0300477 continue;
Marcelo Ricardo Leitnerd82f0f1f2015-09-02 16:20:21 -0300478 }
Marcelo Ricardo Leitner0ca50d12015-07-17 12:34:18 -0300479
Tommi Rantala4a31a6b2018-02-05 21:48:14 +0200480 dst_release(dst);
Marcelo Ricardo Leitner07868282015-07-17 12:34:17 -0300481 dst = &rt->dst;
482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485out_unlock:
Vlad Yasevich559cf712007-09-16 16:03:28 -0700486 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487out:
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000488 t->dst = dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (dst)
Daniel Borkmannbb333812013-06-28 19:49:40 +0200490 pr_debug("rt_dst:%pI4, rt_src:%pI4\n",
491 &fl4->daddr, &fl4->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 else
Daniel Borkmannbb333812013-06-28 19:49:40 +0200493 pr_debug("no route\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496/* For v4, the source address is cached in the route entry(dst). So no need
497 * to cache it separately and hence this is an empty routine.
498 */
YOSHIFUJI Hideakie5117102008-05-29 19:55:05 +0900499static void sctp_v4_get_saddr(struct sctp_sock *sk,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000500 struct sctp_transport *t,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000501 struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000503 union sctp_addr *saddr = &t->saddr;
504 struct rtable *rt = (struct rtable *)t->dst;
Vladislav Yasevich23ec47a2005-11-11 16:05:55 -0800505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 if (rt) {
507 saddr->v4.sin_family = AF_INET;
David S. Miller902ebd32011-05-09 14:49:13 -0700508 saddr->v4.sin_addr.s_addr = fl->u.ip4.saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510}
511
512/* What interface did this skb arrive on? */
513static int sctp_v4_skb_iif(const struct sk_buff *skb)
514{
David S. Miller92101b32012-07-23 16:29:00 -0700515 return inet_iif(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
518/* Was this packet marked by Explicit Congestion Notification? */
519static int sctp_v4_is_ce(const struct sk_buff *skb)
520{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700521 return INET_ECN_is_ce(ip_hdr(skb)->tos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/* Create and initialize a new sk for the socket returned by accept(). */
525static struct sock *sctp_v4_create_accept_sk(struct sock *sk,
David Howellscdfbabf2017-03-09 08:09:05 +0000526 struct sctp_association *asoc,
527 bool kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900529 struct sock *newsk = sk_alloc(sock_net(sk), PF_INET, GFP_KERNEL,
David Howellscdfbabf2017-03-09 08:09:05 +0000530 sk->sk_prot, kern);
Vlad Yasevich914e1c82009-02-13 08:33:44 +0000531 struct inet_sock *newinet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 if (!newsk)
534 goto out;
535
536 sock_init_data(NULL, newsk);
537
Vlad Yasevich914e1c82009-02-13 08:33:44 +0000538 sctp_copy_sock(newsk, sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 sock_reset_flag(newsk, SOCK_ZAPPED);
540
541 newinet = inet_sk(newsk);
542
Eric Dumazetc720c7e82009-10-15 06:30:45 +0000543 newinet->inet_daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700545 sk_refcnt_debug_inc(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 if (newsk->sk_prot->init(newsk)) {
548 sk_common_release(newsk);
549 newsk = NULL;
550 }
551
552out:
553 return newsk;
554}
555
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600556static int sctp_v4_addr_to_user(struct sctp_sock *sp, union sctp_addr *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600558 /* No address mapping for V4 sockets */
559 return sizeof(struct sockaddr_in);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562/* Dump the v4 addr to the seq file. */
563static void sctp_v4_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
564{
Harvey Harrison21454aa2008-10-31 00:54:56 -0700565 seq_printf(seq, "%pI4 ", &addr->v4.sin_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Vlad Yasevichb9031d92008-06-04 12:40:15 -0700568static void sctp_v4_ecn_capable(struct sock *sk)
569{
570 INET_ECN_xmit(sk);
571}
572
Kees Cook9c3b5752017-10-24 01:45:31 -0700573static void sctp_addr_wq_timeout_handler(struct timer_list *t)
Michio Honda9f7d6532011-04-26 19:32:51 +0900574{
Kees Cook9c3b5752017-10-24 01:45:31 -0700575 struct net *net = from_timer(net, t, sctp.addr_wq_timer);
Michio Honda9f7d6532011-04-26 19:32:51 +0900576 struct sctp_sockaddr_entry *addrw, *temp;
577 struct sctp_sock *sp;
578
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000579 spin_lock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900580
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000581 list_for_each_entry_safe(addrw, temp, &net->sctp.addr_waitq, list) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200582 pr_debug("%s: the first ent in wq:%p is addr:%pISc for cmd:%d at "
583 "entry:%p\n", __func__, &net->sctp.addr_waitq, &addrw->a.sa,
584 addrw->state, addrw);
Michio Honda9f7d6532011-04-26 19:32:51 +0900585
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000586#if IS_ENABLED(CONFIG_IPV6)
Michio Honda9f7d6532011-04-26 19:32:51 +0900587 /* Now we send an ASCONF for each association */
588 /* Note. we currently don't handle link local IPv6 addressees */
589 if (addrw->a.sa.sa_family == AF_INET6) {
590 struct in6_addr *in6;
591
592 if (ipv6_addr_type(&addrw->a.v6.sin6_addr) &
593 IPV6_ADDR_LINKLOCAL)
594 goto free_next;
595
596 in6 = (struct in6_addr *)&addrw->a.v6.sin6_addr;
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000597 if (ipv6_chk_addr(net, in6, NULL, 0) == 0 &&
Michio Honda9f7d6532011-04-26 19:32:51 +0900598 addrw->state == SCTP_ADDR_NEW) {
599 unsigned long timeo_val;
600
Daniel Borkmannbb333812013-06-28 19:49:40 +0200601 pr_debug("%s: this is on DAD, trying %d sec "
602 "later\n", __func__,
603 SCTP_ADDRESS_TICK_DELAY);
604
Michio Honda9f7d6532011-04-26 19:32:51 +0900605 timeo_val = jiffies;
606 timeo_val += msecs_to_jiffies(SCTP_ADDRESS_TICK_DELAY);
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000607 mod_timer(&net->sctp.addr_wq_timer, timeo_val);
Michio Honda9f7d6532011-04-26 19:32:51 +0900608 break;
609 }
610 }
David S. Miller5d0c90c2011-06-06 13:05:55 -0700611#endif
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000612 list_for_each_entry(sp, &net->sctp.auto_asconf_splist, auto_asconf_list) {
Michio Honda9f7d6532011-04-26 19:32:51 +0900613 struct sock *sk;
614
615 sk = sctp_opt2sk(sp);
616 /* ignore bound-specific endpoints */
617 if (!sctp_is_ep_boundall(sk))
618 continue;
wangweidong5bc1d1b2014-01-21 15:44:12 +0800619 bh_lock_sock(sk);
Michio Honda9f7d6532011-04-26 19:32:51 +0900620 if (sctp_asconf_mgmt(sp, addrw) < 0)
Daniel Borkmannbb333812013-06-28 19:49:40 +0200621 pr_debug("%s: sctp_asconf_mgmt failed\n", __func__);
wangweidong5bc1d1b2014-01-21 15:44:12 +0800622 bh_unlock_sock(sk);
Michio Honda9f7d6532011-04-26 19:32:51 +0900623 }
Daniel Halperin39d84a52012-06-18 11:04:55 +0000624#if IS_ENABLED(CONFIG_IPV6)
Michio Honda9f7d6532011-04-26 19:32:51 +0900625free_next:
Daniel Halperin39d84a52012-06-18 11:04:55 +0000626#endif
Michio Honda9f7d6532011-04-26 19:32:51 +0900627 list_del(&addrw->list);
628 kfree(addrw);
629 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000630 spin_unlock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900631}
632
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000633static void sctp_free_addr_wq(struct net *net)
Michio Honda9f7d6532011-04-26 19:32:51 +0900634{
635 struct sctp_sockaddr_entry *addrw;
636 struct sctp_sockaddr_entry *temp;
637
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000638 spin_lock_bh(&net->sctp.addr_wq_lock);
639 del_timer(&net->sctp.addr_wq_timer);
640 list_for_each_entry_safe(addrw, temp, &net->sctp.addr_waitq, list) {
Michio Honda9f7d6532011-04-26 19:32:51 +0900641 list_del(&addrw->list);
642 kfree(addrw);
643 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000644 spin_unlock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900645}
646
647/* lookup the entry for the same address in the addr_waitq
648 * sctp_addr_wq MUST be locked
649 */
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000650static struct sctp_sockaddr_entry *sctp_addr_wq_lookup(struct net *net,
651 struct sctp_sockaddr_entry *addr)
Michio Honda9f7d6532011-04-26 19:32:51 +0900652{
653 struct sctp_sockaddr_entry *addrw;
654
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000655 list_for_each_entry(addrw, &net->sctp.addr_waitq, list) {
Michio Honda9f7d6532011-04-26 19:32:51 +0900656 if (addrw->a.sa.sa_family != addr->a.sa.sa_family)
657 continue;
658 if (addrw->a.sa.sa_family == AF_INET) {
659 if (addrw->a.v4.sin_addr.s_addr ==
660 addr->a.v4.sin_addr.s_addr)
661 return addrw;
662 } else if (addrw->a.sa.sa_family == AF_INET6) {
663 if (ipv6_addr_equal(&addrw->a.v6.sin6_addr,
664 &addr->a.v6.sin6_addr))
665 return addrw;
666 }
667 }
668 return NULL;
669}
670
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000671void sctp_addr_wq_mgmt(struct net *net, struct sctp_sockaddr_entry *addr, int cmd)
Michio Honda9f7d6532011-04-26 19:32:51 +0900672{
673 struct sctp_sockaddr_entry *addrw;
674 unsigned long timeo_val;
675
676 /* first, we check if an opposite message already exist in the queue.
677 * If we found such message, it is removed.
678 * This operation is a bit stupid, but the DHCP client attaches the
679 * new address after a couple of addition and deletion of that address
680 */
681
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000682 spin_lock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900683 /* Offsets existing events in addr_wq */
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000684 addrw = sctp_addr_wq_lookup(net, addr);
Michio Honda9f7d6532011-04-26 19:32:51 +0900685 if (addrw) {
686 if (addrw->state != cmd) {
Daniel Borkmannbb333812013-06-28 19:49:40 +0200687 pr_debug("%s: offsets existing entry for %d, addr:%pISc "
688 "in wq:%p\n", __func__, addrw->state, &addrw->a.sa,
689 &net->sctp.addr_waitq);
690
Michio Honda9f7d6532011-04-26 19:32:51 +0900691 list_del(&addrw->list);
692 kfree(addrw);
693 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000694 spin_unlock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900695 return;
696 }
697
698 /* OK, we have to add the new address to the wait queue */
699 addrw = kmemdup(addr, sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
700 if (addrw == NULL) {
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000701 spin_unlock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900702 return;
703 }
704 addrw->state = cmd;
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000705 list_add_tail(&addrw->list, &net->sctp.addr_waitq);
Daniel Borkmannbb333812013-06-28 19:49:40 +0200706
707 pr_debug("%s: add new entry for cmd:%d, addr:%pISc in wq:%p\n",
708 __func__, addrw->state, &addrw->a.sa, &net->sctp.addr_waitq);
Michio Honda9f7d6532011-04-26 19:32:51 +0900709
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000710 if (!timer_pending(&net->sctp.addr_wq_timer)) {
Michio Honda9f7d6532011-04-26 19:32:51 +0900711 timeo_val = jiffies;
712 timeo_val += msecs_to_jiffies(SCTP_ADDRESS_TICK_DELAY);
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000713 mod_timer(&net->sctp.addr_wq_timer, timeo_val);
Michio Honda9f7d6532011-04-26 19:32:51 +0900714 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000715 spin_unlock_bh(&net->sctp.addr_wq_lock);
Michio Honda9f7d6532011-04-26 19:32:51 +0900716}
717
Vlad Yasevich29303542007-09-16 16:02:12 -0700718/* Event handler for inet address addition/deletion events.
719 * The sctp_local_addr_list needs to be protocted by a spin lock since
720 * multiple notifiers (say IPv4 and IPv6) may be running at the same
721 * time and thus corrupt the list.
722 * The reader side is protected with RCU.
723 */
Adrian Bunk24123182006-12-20 16:08:22 -0800724static int sctp_inetaddr_event(struct notifier_block *this, unsigned long ev,
725 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800727 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Vlad Yasevich29303542007-09-16 16:02:12 -0700728 struct sctp_sockaddr_entry *addr = NULL;
729 struct sctp_sockaddr_entry *temp;
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000730 struct net *net = dev_net(ifa->ifa_dev->dev);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700731 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800733 switch (ev) {
734 case NETDEV_UP:
735 addr = kmalloc(sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
736 if (addr) {
737 addr->a.v4.sin_family = AF_INET;
738 addr->a.v4.sin_port = 0;
739 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
Vlad Yasevich29303542007-09-16 16:02:12 -0700740 addr->valid = 1;
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000741 spin_lock_bh(&net->sctp.local_addr_lock);
742 list_add_tail_rcu(&addr->list, &net->sctp.local_addr_list);
743 sctp_addr_wq_mgmt(net, addr, SCTP_ADDR_NEW);
744 spin_unlock_bh(&net->sctp.local_addr_lock);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800745 }
746 break;
747 case NETDEV_DOWN:
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000748 spin_lock_bh(&net->sctp.local_addr_lock);
Vlad Yasevich29303542007-09-16 16:02:12 -0700749 list_for_each_entry_safe(addr, temp,
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000750 &net->sctp.local_addr_list, list) {
Pavel Emelyanova40a7d12008-04-12 18:40:38 -0700751 if (addr->a.sa.sa_family == AF_INET &&
752 addr->a.v4.sin_addr.s_addr ==
753 ifa->ifa_local) {
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000754 sctp_addr_wq_mgmt(net, addr, SCTP_ADDR_DEL);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700755 found = 1;
Vlad Yasevich29303542007-09-16 16:02:12 -0700756 addr->valid = 0;
757 list_del_rcu(&addr->list);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800758 break;
759 }
760 }
Eric W. Biederman4db67e82012-08-06 08:42:04 +0000761 spin_unlock_bh(&net->sctp.local_addr_lock);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700762 if (found)
Lai Jiangshan1231f0b2011-03-15 18:05:02 +0800763 kfree_rcu(addr, rcu);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800764 break;
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 return NOTIFY_DONE;
768}
769
770/*
771 * Initialize the control inode/socket with a control endpoint data
772 * structure. This endpoint is reserved exclusively for the OOTB processing.
773 */
Eric W. Biederman2ce95502012-08-06 08:43:06 +0000774static int sctp_ctl_sock_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int err;
Brian Haleyfb13d9f2009-03-04 03:20:26 -0800777 sa_family_t family = PF_INET;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
779 if (sctp_get_pf_specific(PF_INET6))
780 family = PF_INET6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Eric W. Biederman2ce95502012-08-06 08:43:06 +0000782 err = inet_ctl_sock_create(&net->sctp.ctl_sock, family,
783 SOCK_SEQPACKET, IPPROTO_SCTP, net);
Brian Haleyfb13d9f2009-03-04 03:20:26 -0800784
785 /* If IPv6 socket could not be created, try the IPv4 socket */
786 if (err < 0 && family == PF_INET6)
Eric W. Biederman2ce95502012-08-06 08:43:06 +0000787 err = inet_ctl_sock_create(&net->sctp.ctl_sock, AF_INET,
Brian Haleyfb13d9f2009-03-04 03:20:26 -0800788 SOCK_SEQPACKET, IPPROTO_SCTP,
Eric W. Biederman2ce95502012-08-06 08:43:06 +0000789 net);
Brian Haleyfb13d9f2009-03-04 03:20:26 -0800790
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (err < 0) {
Joe Perches145ce502010-08-24 13:21:08 +0000792 pr_err("Failed to create the SCTP control socket\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return err;
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return 0;
796}
797
798/* Register address family specific functions. */
799int sctp_register_af(struct sctp_af *af)
800{
801 switch (af->sa_family) {
802 case AF_INET:
803 if (sctp_af_v4_specific)
804 return 0;
805 sctp_af_v4_specific = af;
806 break;
807 case AF_INET6:
808 if (sctp_af_v6_specific)
809 return 0;
810 sctp_af_v6_specific = af;
811 break;
812 default:
813 return 0;
814 }
815
816 INIT_LIST_HEAD(&af->list);
817 list_add_tail(&af->list, &sctp_address_families);
818 return 1;
819}
820
821/* Get the table of functions for manipulating a particular address
822 * family.
823 */
824struct sctp_af *sctp_get_af_specific(sa_family_t family)
825{
826 switch (family) {
827 case AF_INET:
828 return sctp_af_v4_specific;
829 case AF_INET6:
830 return sctp_af_v6_specific;
831 default:
832 return NULL;
833 }
834}
835
836/* Common code to initialize a AF_INET msg_name. */
837static void sctp_inet_msgname(char *msgname, int *addr_len)
838{
839 struct sockaddr_in *sin;
840
841 sin = (struct sockaddr_in *)msgname;
842 *addr_len = sizeof(struct sockaddr_in);
843 sin->sin_family = AF_INET;
844 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
845}
846
847/* Copy the primary address of the peer primary address as the msg_name. */
848static void sctp_inet_event_msgname(struct sctp_ulpevent *event, char *msgname,
849 int *addr_len)
850{
851 struct sockaddr_in *sin, *sinfrom;
852
853 if (msgname) {
854 struct sctp_association *asoc;
855
856 asoc = event->asoc;
857 sctp_inet_msgname(msgname, addr_len);
858 sin = (struct sockaddr_in *)msgname;
859 sinfrom = &asoc->peer.primary_addr.v4;
860 sin->sin_port = htons(asoc->peer.port);
861 sin->sin_addr.s_addr = sinfrom->sin_addr.s_addr;
862 }
863}
864
865/* Initialize and copy out a msgname from an inbound skb. */
866static void sctp_inet_skb_msgname(struct sk_buff *skb, char *msgname, int *len)
867{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 if (msgname) {
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -0300869 struct sctphdr *sh = sctp_hdr(skb);
870 struct sockaddr_in *sin = (struct sockaddr_in *)msgname;
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 sctp_inet_msgname(msgname, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 sin->sin_port = sh->source;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700874 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876}
877
878/* Do we support this AF? */
879static int sctp_inet_af_supported(sa_family_t family, struct sctp_sock *sp)
880{
881 /* PF_INET only supports AF_INET addresses. */
Eric Dumazeta02cec22010-09-22 20:43:57 +0000882 return AF_INET == family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
885/* Address matching with wildcards allowed. */
886static int sctp_inet_cmp_addr(const union sctp_addr *addr1,
887 const union sctp_addr *addr2,
888 struct sctp_sock *opt)
889{
890 /* PF_INET only supports AF_INET addresses. */
891 if (addr1->sa.sa_family != addr2->sa.sa_family)
892 return 0;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700893 if (htonl(INADDR_ANY) == addr1->v4.sin_addr.s_addr ||
894 htonl(INADDR_ANY) == addr2->v4.sin_addr.s_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 1;
896 if (addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr)
897 return 1;
898
899 return 0;
900}
901
902/* Verify that provided sockaddr looks bindable. Common verification has
903 * already been taken care of.
904 */
905static int sctp_inet_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
906{
907 return sctp_v4_available(addr, opt);
908}
909
910/* Verify that sockaddr looks sendable. Common verification has already
911 * been taken care of.
912 */
913static int sctp_inet_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
914{
915 return 1;
916}
917
918/* Fill in Supported Address Type information for INIT and INIT-ACK
919 * chunks. Returns number of addresses supported.
920 */
921static int sctp_inet_supported_addrs(const struct sctp_sock *opt,
Al Viro3dbe8652006-11-20 17:25:49 -0800922 __be16 *types)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
924 types[0] = SCTP_PARAM_IPV4_ADDRESS;
925 return 1;
926}
927
928/* Wrapper routine that calls the ip transmit routine. */
929static inline int sctp_v4_xmit(struct sk_buff *skb,
Herbert Xuf8803742008-08-03 21:15:08 -0700930 struct sctp_transport *transport)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931{
Herbert Xuf8803742008-08-03 21:15:08 -0700932 struct inet_sock *inet = inet_sk(skb->sk);
933
Daniel Borkmannbb333812013-06-28 19:49:40 +0200934 pr_debug("%s: skb:%p, len:%d, src:%pI4, dst:%pI4\n", __func__, skb,
935 skb->len, &transport->fl.u.ip4.saddr, &transport->fl.u.ip4.daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
Herbert Xuf8803742008-08-03 21:15:08 -0700937 inet->pmtudisc = transport->param_flags & SPP_PMTUD_ENABLE ?
938 IP_PMTUDISC_DO : IP_PMTUDISC_DONT;
939
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000940 SCTP_INC_STATS(sock_net(&inet->sk), SCTP_MIB_OUTSCTPPACKS);
Daniel Borkmannbb333812013-06-28 19:49:40 +0200941
Eric Dumazetb0270e92014-04-15 12:58:34 -0400942 return ip_queue_xmit(&inet->sk, skb, &transport->fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
Neil Horman15efbe72008-02-15 09:53:59 -0500945static struct sctp_af sctp_af_inet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947static struct sctp_pf sctp_pf_inet = {
948 .event_msgname = sctp_inet_event_msgname,
949 .skb_msgname = sctp_inet_skb_msgname,
950 .af_supported = sctp_inet_af_supported,
951 .cmp_addr = sctp_inet_cmp_addr,
952 .bind_verify = sctp_inet_bind_verify,
953 .send_verify = sctp_inet_send_verify,
954 .supported_addrs = sctp_inet_supported_addrs,
955 .create_accept_sk = sctp_v4_create_accept_sk,
Jason Gunthorpe299ee122014-07-30 12:40:53 -0600956 .addr_to_user = sctp_v4_addr_to_user,
957 .to_sk_saddr = sctp_v4_to_sk_saddr,
958 .to_sk_daddr = sctp_v4_to_sk_daddr,
Neil Horman15efbe72008-02-15 09:53:59 -0500959 .af = &sctp_af_inet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960};
961
962/* Notifier for inetaddr addition/deletion events. */
963static struct notifier_block sctp_inetaddr_notifier = {
964 .notifier_call = sctp_inetaddr_event,
965};
966
967/* Socket operations. */
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800968static const struct proto_ops inet_seqpacket_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800969 .family = PF_INET,
970 .owner = THIS_MODULE,
971 .release = inet_release, /* Needs to be wrapped... */
972 .bind = inet_bind,
973 .connect = inet_dgram_connect,
974 .socketpair = sock_no_socketpair,
975 .accept = inet_accept,
976 .getname = inet_getname, /* Semantics are different. */
977 .poll = sctp_poll,
978 .ioctl = inet_ioctl,
979 .listen = sctp_inet_listen,
980 .shutdown = inet_shutdown, /* Looks harmless. */
981 .setsockopt = sock_common_setsockopt, /* IP_SOL IP_OPTION is a problem */
982 .getsockopt = sock_common_getsockopt,
983 .sendmsg = inet_sendmsg,
Xin Longfd2d1802016-07-22 21:25:42 +0800984 .recvmsg = inet_recvmsg,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800985 .mmap = sock_no_mmap,
986 .sendpage = sock_no_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800987#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800988 .compat_setsockopt = compat_sock_common_setsockopt,
989 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800990#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991};
992
993/* Registration with AF_INET family. */
994static struct inet_protosw sctp_seqpacket_protosw = {
995 .type = SOCK_SEQPACKET,
996 .protocol = IPPROTO_SCTP,
997 .prot = &sctp_prot,
998 .ops = &inet_seqpacket_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 .flags = SCTP_PROTOSW_FLAG
1000};
1001static struct inet_protosw sctp_stream_protosw = {
1002 .type = SOCK_STREAM,
1003 .protocol = IPPROTO_SCTP,
1004 .prot = &sctp_prot,
1005 .ops = &inet_seqpacket_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 .flags = SCTP_PROTOSW_FLAG
1007};
1008
1009/* Register with IP layer. */
Alexey Dobriyan32613092009-09-14 12:21:47 +00001010static const struct net_protocol sctp_protocol = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .handler = sctp_rcv,
1012 .err_handler = sctp_v4_err,
1013 .no_policy = 1,
Eric W. Biedermanbb2db452012-08-06 08:46:26 +00001014 .netns_ok = 1,
Hannes Frederic Sowa8ed1dc42014-01-09 10:01:17 +01001015 .icmp_strict_tag_validation = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016};
1017
1018/* IPv4 address related functions. */
Neil Horman15efbe72008-02-15 09:53:59 -05001019static struct sctp_af sctp_af_inet = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001020 .sa_family = AF_INET,
1021 .sctp_xmit = sctp_v4_xmit,
1022 .setsockopt = ip_setsockopt,
1023 .getsockopt = ip_getsockopt,
1024 .get_dst = sctp_v4_get_dst,
1025 .get_saddr = sctp_v4_get_saddr,
1026 .copy_addrlist = sctp_v4_copy_addrlist,
1027 .from_skb = sctp_v4_from_skb,
1028 .from_sk = sctp_v4_from_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001029 .from_addr_param = sctp_v4_from_addr_param,
1030 .to_addr_param = sctp_v4_to_addr_param,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001031 .cmp_addr = sctp_v4_cmp_addr,
1032 .addr_valid = sctp_v4_addr_valid,
1033 .inaddr_any = sctp_v4_inaddr_any,
1034 .is_any = sctp_v4_is_any,
1035 .available = sctp_v4_available,
1036 .scope = sctp_v4_scope,
1037 .skb_iif = sctp_v4_skb_iif,
1038 .is_ce = sctp_v4_is_ce,
1039 .seq_dump_addr = sctp_v4_seq_dump_addr,
Vlad Yasevichb9031d92008-06-04 12:40:15 -07001040 .ecn_capable = sctp_v4_ecn_capable,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001041 .net_header_len = sizeof(struct iphdr),
1042 .sockaddr_len = sizeof(struct sockaddr_in),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001043#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001044 .compat_setsockopt = compat_ip_setsockopt,
1045 .compat_getsockopt = compat_ip_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001046#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047};
1048
wangweidong8d726512013-12-23 12:16:53 +08001049struct sctp_pf *sctp_get_pf_specific(sa_family_t family)
1050{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 switch (family) {
1052 case PF_INET:
1053 return sctp_pf_inet_specific;
1054 case PF_INET6:
1055 return sctp_pf_inet6_specific;
1056 default:
1057 return NULL;
1058 }
1059}
1060
1061/* Register the PF specific function table. */
1062int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
1063{
1064 switch (family) {
1065 case PF_INET:
1066 if (sctp_pf_inet_specific)
1067 return 0;
1068 sctp_pf_inet_specific = pf;
1069 break;
1070 case PF_INET6:
1071 if (sctp_pf_inet6_specific)
1072 return 0;
1073 sctp_pf_inet6_specific = pf;
1074 break;
1075 default:
1076 return 0;
1077 }
1078 return 1;
1079}
1080
Eric W. Biedermanb01a2402012-08-06 08:47:55 +00001081static inline int init_sctp_mibs(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
WANG Cong698365f2014-05-05 15:55:55 -07001083 net->sctp.sctp_statistics = alloc_percpu(struct sctp_mib);
1084 if (!net->sctp.sctp_statistics)
1085 return -ENOMEM;
1086 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087}
1088
Eric W. Biedermanb01a2402012-08-06 08:47:55 +00001089static inline void cleanup_sctp_mibs(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
WANG Cong698365f2014-05-05 15:55:55 -07001091 free_percpu(net->sctp.sctp_statistics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
Vlad Yasevich270637a2008-03-20 15:17:14 -07001094static void sctp_v4_pf_init(void)
1095{
1096 /* Initialize the SCTP specific PF functions. */
1097 sctp_register_pf(&sctp_pf_inet, PF_INET);
1098 sctp_register_af(&sctp_af_inet);
1099}
1100
1101static void sctp_v4_pf_exit(void)
1102{
1103 list_del(&sctp_af_inet.list);
1104}
1105
1106static int sctp_v4_protosw_init(void)
1107{
1108 int rc;
1109
1110 rc = proto_register(&sctp_prot, 1);
1111 if (rc)
1112 return rc;
1113
1114 /* Register SCTP(UDP and TCP style) with socket layer. */
1115 inet_register_protosw(&sctp_seqpacket_protosw);
1116 inet_register_protosw(&sctp_stream_protosw);
1117
1118 return 0;
1119}
1120
1121static void sctp_v4_protosw_exit(void)
1122{
1123 inet_unregister_protosw(&sctp_stream_protosw);
1124 inet_unregister_protosw(&sctp_seqpacket_protosw);
1125 proto_unregister(&sctp_prot);
1126}
1127
1128static int sctp_v4_add_protocol(void)
1129{
1130 /* Register notifier for inet address additions/deletions. */
1131 register_inetaddr_notifier(&sctp_inetaddr_notifier);
1132
1133 /* Register SCTP with inet layer. */
1134 if (inet_add_protocol(&sctp_protocol, IPPROTO_SCTP) < 0)
1135 return -EAGAIN;
1136
1137 return 0;
1138}
1139
1140static void sctp_v4_del_protocol(void)
1141{
1142 inet_del_protocol(&sctp_protocol, IPPROTO_SCTP);
1143 unregister_inetaddr_notifier(&sctp_inetaddr_notifier);
1144}
1145
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001146static int __net_init sctp_defaults_init(struct net *net)
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001147{
Eric W. Biederman2ce95502012-08-06 08:43:06 +00001148 int status;
1149
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001150 /*
1151 * 14. Suggested SCTP Protocol Parameter Values
1152 */
1153 /* The following protocol parameters are RECOMMENDED: */
1154 /* RTO.Initial - 3 seconds */
1155 net->sctp.rto_initial = SCTP_RTO_INITIAL;
1156 /* RTO.Min - 1 second */
1157 net->sctp.rto_min = SCTP_RTO_MIN;
1158 /* RTO.Max - 60 seconds */
1159 net->sctp.rto_max = SCTP_RTO_MAX;
1160 /* RTO.Alpha - 1/8 */
1161 net->sctp.rto_alpha = SCTP_RTO_ALPHA;
1162 /* RTO.Beta - 1/4 */
1163 net->sctp.rto_beta = SCTP_RTO_BETA;
1164
1165 /* Valid.Cookie.Life - 60 seconds */
1166 net->sctp.valid_cookie_life = SCTP_DEFAULT_COOKIE_LIFE;
1167
1168 /* Whether Cookie Preservative is enabled(1) or not(0) */
1169 net->sctp.cookie_preserve_enable = 1;
1170
Neil Horman3c681982012-10-24 09:20:03 +00001171 /* Default sctp sockets to use md5 as their hmac alg */
Neil Horman0d0863b2012-12-14 15:22:01 +00001172#if defined (CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5)
Neil Horman3c681982012-10-24 09:20:03 +00001173 net->sctp.sctp_hmac_alg = "md5";
Neil Horman0d0863b2012-12-14 15:22:01 +00001174#elif defined (CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1)
Neil Horman3c681982012-10-24 09:20:03 +00001175 net->sctp.sctp_hmac_alg = "sha1";
1176#else
1177 net->sctp.sctp_hmac_alg = NULL;
1178#endif
1179
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001180 /* Max.Burst - 4 */
1181 net->sctp.max_burst = SCTP_DEFAULT_MAX_BURST;
1182
Zhu Yanjun566178f2015-12-16 13:55:04 +08001183 /* Enable pf state by default */
1184 net->sctp.pf_enable = 1;
1185
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001186 /* Association.Max.Retrans - 10 attempts
1187 * Path.Max.Retrans - 5 attempts (per destination address)
1188 * Max.Init.Retransmits - 8 attempts
1189 */
1190 net->sctp.max_retrans_association = 10;
1191 net->sctp.max_retrans_path = 5;
1192 net->sctp.max_retrans_init = 8;
1193
1194 /* Sendbuffer growth - do per-socket accounting */
1195 net->sctp.sndbuf_policy = 0;
1196
1197 /* Rcvbuffer growth - do per-socket accounting */
1198 net->sctp.rcvbuf_policy = 0;
1199
1200 /* HB.interval - 30 seconds */
1201 net->sctp.hb_interval = SCTP_DEFAULT_TIMEOUT_HEARTBEAT;
1202
1203 /* delayed SACK timeout */
1204 net->sctp.sack_timeout = SCTP_DEFAULT_TIMEOUT_SACK;
1205
1206 /* Disable ADDIP by default. */
1207 net->sctp.addip_enable = 0;
1208 net->sctp.addip_noauth = 0;
1209 net->sctp.default_auto_asconf = 0;
1210
1211 /* Enable PR-SCTP by default. */
1212 net->sctp.prsctp_enable = 1;
1213
Xin Longc28445c2017-01-18 00:44:45 +08001214 /* Disable RECONF by default. */
1215 net->sctp.reconf_enable = 0;
1216
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001217 /* Disable AUTH by default. */
1218 net->sctp.auth_enable = 0;
1219
1220 /* Set SCOPE policy to enabled */
1221 net->sctp.scope_policy = SCTP_SCOPE_POLICY_ENABLE;
1222
1223 /* Set the default rwnd update threshold */
1224 net->sctp.rwnd_upd_shift = SCTP_DEFAULT_RWND_SHIFT;
1225
1226 /* Initialize maximum autoclose timeout. */
1227 net->sctp.max_autoclose = INT_MAX / HZ;
1228
Eric W. Biedermanebb7e952012-08-07 07:23:59 +00001229 status = sctp_sysctl_net_register(net);
1230 if (status)
1231 goto err_sysctl_register;
1232
Eric W. Biedermanb01a2402012-08-06 08:47:55 +00001233 /* Allocate and initialise sctp mibs. */
1234 status = init_sctp_mibs(net);
1235 if (status)
1236 goto err_init_mibs;
1237
Al Virod47d08c2018-03-16 23:32:51 +00001238#ifdef CONFIG_PROC_FS
Eric W. Biederman13d782f2012-08-06 08:45:15 +00001239 /* Initialize proc fs directory. */
1240 status = sctp_proc_init(net);
1241 if (status)
1242 goto err_init_proc;
Al Virod47d08c2018-03-16 23:32:51 +00001243#endif
Eric W. Biederman13d782f2012-08-06 08:45:15 +00001244
1245 sctp_dbg_objcnt_init(net);
1246
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001247 /* Initialize the local address list. */
1248 INIT_LIST_HEAD(&net->sctp.local_addr_list);
1249 spin_lock_init(&net->sctp.local_addr_lock);
1250 sctp_get_local_addr_list(net);
1251
1252 /* Initialize the address event list */
1253 INIT_LIST_HEAD(&net->sctp.addr_waitq);
1254 INIT_LIST_HEAD(&net->sctp.auto_asconf_splist);
1255 spin_lock_init(&net->sctp.addr_wq_lock);
1256 net->sctp.addr_wq_timer.expires = 0;
Kees Cook9c3b5752017-10-24 01:45:31 -07001257 timer_setup(&net->sctp.addr_wq_timer, sctp_addr_wq_timeout_handler, 0);
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001258
1259 return 0;
Eric W. Biederman2ce95502012-08-06 08:43:06 +00001260
Eric W. Biederman13d782f2012-08-06 08:45:15 +00001261err_init_proc:
Eric W. Biedermanb01a2402012-08-06 08:47:55 +00001262 cleanup_sctp_mibs(net);
1263err_init_mibs:
Eric W. Biedermanebb7e952012-08-07 07:23:59 +00001264 sctp_sysctl_net_unregister(net);
1265err_sysctl_register:
Eric W. Biederman2ce95502012-08-06 08:43:06 +00001266 return status;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001267}
1268
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001269static void __net_exit sctp_defaults_exit(struct net *net)
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001270{
1271 /* Free the local address list */
1272 sctp_free_addr_wq(net);
1273 sctp_free_local_addr_list(net);
Eric W. Biederman2ce95502012-08-06 08:43:06 +00001274
Al Virod47d08c2018-03-16 23:32:51 +00001275#ifdef CONFIG_PROC_FS
1276 remove_proc_subtree("sctp", net->proc_net);
1277 net->sctp.proc_net_sctp = NULL;
1278#endif
Eric W. Biedermanb01a2402012-08-06 08:47:55 +00001279 cleanup_sctp_mibs(net);
Eric W. Biedermanebb7e952012-08-07 07:23:59 +00001280 sctp_sysctl_net_unregister(net);
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001281}
1282
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001283static struct pernet_operations sctp_defaults_ops = {
1284 .init = sctp_defaults_init,
1285 .exit = sctp_defaults_exit,
Kirill Tkhai2e01ae02018-03-13 13:36:51 +03001286 .async = true,
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001287};
1288
1289static int __net_init sctp_ctrlsock_init(struct net *net)
1290{
1291 int status;
1292
1293 /* Initialize the control inode/socket for handling OOTB packets. */
1294 status = sctp_ctl_sock_init(net);
1295 if (status)
1296 pr_err("Failed to initialize the SCTP control sock\n");
1297
1298 return status;
1299}
1300
1301static void __net_init sctp_ctrlsock_exit(struct net *net)
1302{
1303 /* Free the control endpoint. */
1304 inet_ctl_sock_destroy(net->sctp.ctl_sock);
1305}
1306
1307static struct pernet_operations sctp_ctrlsock_ops = {
1308 .init = sctp_ctrlsock_init,
1309 .exit = sctp_ctrlsock_exit,
Kirill Tkhaibfdfa382018-03-13 13:37:02 +03001310 .async = true,
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001311};
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313/* Initialize the universe into something sensible. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001314static __init int sctp_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
1316 int i;
1317 int status = -EINVAL;
1318 unsigned long goal;
Neil Horman4d93df02007-08-15 16:07:44 -07001319 unsigned long limit;
1320 int max_share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 int order;
Neil Hormand9749fb2016-02-18 16:10:57 -05001322 int num_entries;
1323 int max_entry_order;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Eyal Birgerb4772ef2015-03-01 14:58:29 +02001325 sock_skb_cb_check_size(sizeof(struct sctp_ulpevent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001327 /* Allocate bind_bucket and chunk caches. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 status = -ENOBUFS;
1329 sctp_bucket_cachep = kmem_cache_create("sctp_bind_bucket",
1330 sizeof(struct sctp_bind_bucket),
1331 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001332 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 if (!sctp_bucket_cachep)
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001334 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 sctp_chunk_cachep = kmem_cache_create("sctp_chunk",
1337 sizeof(struct sctp_chunk),
1338 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001339 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (!sctp_chunk_cachep)
1341 goto err_chunk_cachep;
1342
Tejun Heo908c7f12014-09-08 09:51:29 +09001343 status = percpu_counter_init(&sctp_sockets_allocated, 0, GFP_KERNEL);
Eric W. Biederman632c9282012-08-06 08:44:24 +00001344 if (status)
1345 goto err_percpu_counter_init;
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 /* Implementation specific variables. */
1348
1349 /* Initialize default stream count setup information. */
1350 sctp_max_instreams = SCTP_DEFAULT_INSTREAMS;
1351 sctp_max_outstreams = SCTP_DEFAULT_OUTSTREAMS;
1352
1353 /* Initialize handle used for association ids. */
1354 idr_init(&sctp_assocs_id);
1355
Eric Dumazetf03d78d2011-07-07 00:27:05 -07001356 limit = nr_free_buffer_pages() / 8;
Neil Horman4d93df02007-08-15 16:07:44 -07001357 limit = max(limit, 128UL);
1358 sysctl_sctp_mem[0] = limit / 4 * 3;
1359 sysctl_sctp_mem[1] = limit;
1360 sysctl_sctp_mem[2] = sysctl_sctp_mem[0] * 2;
1361
1362 /* Set per-socket limits to no more than 1/128 the pressure threshold*/
1363 limit = (sysctl_sctp_mem[1]) << (PAGE_SHIFT - 7);
1364 max_share = min(4UL*1024*1024, limit);
1365
Vlad Yasevich845525a2008-07-18 23:08:21 -07001366 sysctl_sctp_rmem[0] = SK_MEM_QUANTUM; /* give each asoc 1 page min */
Eric Dumazet87fb4b72011-10-13 07:28:54 +00001367 sysctl_sctp_rmem[1] = 1500 * SKB_TRUESIZE(1);
Neil Horman4d93df02007-08-15 16:07:44 -07001368 sysctl_sctp_rmem[2] = max(sysctl_sctp_rmem[1], max_share);
1369
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001370 sysctl_sctp_wmem[0] = SK_MEM_QUANTUM;
Neil Horman4d93df02007-08-15 16:07:44 -07001371 sysctl_sctp_wmem[1] = 16*1024;
1372 sysctl_sctp_wmem[2] = max(64*1024, max_share);
1373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /* Size and allocate the association hash table.
1375 * The methodology is similar to that of the tcp hash tables.
Neil Hormand9749fb2016-02-18 16:10:57 -05001376 * Though not identical. Start by getting a goal size
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 */
Jan Beulich44813742009-09-21 17:03:05 -07001378 if (totalram_pages >= (128 * 1024))
1379 goal = totalram_pages >> (22 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 else
Jan Beulich44813742009-09-21 17:03:05 -07001381 goal = totalram_pages >> (24 - PAGE_SHIFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Neil Hormand9749fb2016-02-18 16:10:57 -05001383 /* Then compute the page order for said goal */
1384 order = get_order(goal);
1385
1386 /* Now compute the required page order for the maximum sized table we
1387 * want to create
1388 */
1389 max_entry_order = get_order(MAX_SCTP_PORT_HASH_ENTRIES *
1390 sizeof(struct sctp_bind_hashbucket));
1391
1392 /* Limit the page order by that maximum hash table size */
1393 order = min(order, max_entry_order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* Allocate and initialize the endpoint hash table. */
1396 sctp_ep_hashsize = 64;
Zhang Yanfei3b77d662013-03-12 13:39:47 +08001397 sctp_ep_hashtable =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 kmalloc(64 * sizeof(struct sctp_hashbucket), GFP_KERNEL);
1399 if (!sctp_ep_hashtable) {
Joe Perches145ce502010-08-24 13:21:08 +00001400 pr_err("Failed endpoint_hash alloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 status = -ENOMEM;
1402 goto err_ehash_alloc;
1403 }
1404 for (i = 0; i < sctp_ep_hashsize; i++) {
1405 rwlock_init(&sctp_ep_hashtable[i].lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001406 INIT_HLIST_HEAD(&sctp_ep_hashtable[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 }
1408
Neil Hormand9749fb2016-02-18 16:10:57 -05001409 /* Allocate and initialize the SCTP port hash table.
1410 * Note that order is initalized to start at the max sized
1411 * table we want to support. If we can't get that many pages
1412 * reduce the order and try again
1413 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 sctp_port_hashtable = (struct sctp_bind_hashbucket *)
Eric Dumazet6857a022015-12-15 15:33:39 -08001416 __get_free_pages(GFP_KERNEL | __GFP_NOWARN, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 } while (!sctp_port_hashtable && --order > 0);
Neil Hormand9749fb2016-02-18 16:10:57 -05001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (!sctp_port_hashtable) {
Joe Perches145ce502010-08-24 13:21:08 +00001420 pr_err("Failed bind hash alloc\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 status = -ENOMEM;
1422 goto err_bhash_alloc;
1423 }
Neil Hormand9749fb2016-02-18 16:10:57 -05001424
1425 /* Now compute the number of entries that will fit in the
1426 * port hash space we allocated
1427 */
1428 num_entries = (1UL << order) * PAGE_SIZE /
1429 sizeof(struct sctp_bind_hashbucket);
1430
1431 /* And finish by rounding it down to the nearest power of two
1432 * this wastes some memory of course, but its needed because
1433 * the hash function operates based on the assumption that
1434 * that the number of entries is a power of two
1435 */
1436 sctp_port_hashsize = rounddown_pow_of_two(num_entries);
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 for (i = 0; i < sctp_port_hashsize; i++) {
1439 spin_lock_init(&sctp_port_hashtable[i].lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001440 INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 }
1442
Wei Yongjuna5e27d12016-06-13 23:08:26 +08001443 status = sctp_transport_hashtable_init();
1444 if (status)
Xin Long4f008782015-12-30 23:50:47 +08001445 goto err_thash_alloc;
1446
Neil Hormand9749fb2016-02-18 16:10:57 -05001447 pr_info("Hash tables configured (bind %d/%d)\n", sctp_port_hashsize,
1448 num_entries);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 sctp_sysctl_register();
1451
1452 INIT_LIST_HEAD(&sctp_address_families);
Vlad Yasevich270637a2008-03-20 15:17:14 -07001453 sctp_v4_pf_init();
1454 sctp_v6_pf_init();
Xin Long1ba896f2017-11-26 20:16:08 +08001455 sctp_sched_ops_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001457 status = register_pernet_subsys(&sctp_defaults_ops);
1458 if (status)
1459 goto err_register_defaults;
Vlad Yasevich270637a2008-03-20 15:17:14 -07001460
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001461 status = sctp_v4_protosw_init();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001462 if (status)
Vlad Yasevich270637a2008-03-20 15:17:14 -07001463 goto err_protosw_init;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001464
Vlad Yasevich270637a2008-03-20 15:17:14 -07001465 status = sctp_v6_protosw_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (status)
Vlad Yasevich270637a2008-03-20 15:17:14 -07001467 goto err_v6_protosw_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001469 status = register_pernet_subsys(&sctp_ctrlsock_ops);
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001470 if (status)
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001471 goto err_register_ctrlsock;
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001472
Vlad Yasevich270637a2008-03-20 15:17:14 -07001473 status = sctp_v4_add_protocol();
1474 if (status)
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001475 goto err_add_protocol;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001476
1477 /* Register SCTP with inet6 layer. */
1478 status = sctp_v6_add_protocol();
1479 if (status)
1480 goto err_v6_add_protocol;
1481
Marcelo Ricardo Leitner90017ac2016-06-02 15:05:43 -03001482 if (sctp_offload_init() < 0)
1483 pr_crit("%s: Cannot add SCTP protocol offload\n", __func__);
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485out:
1486 return status;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001487err_v6_add_protocol:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001488 sctp_v4_del_protocol();
Vlad Yasevichd1dd5242009-03-02 06:46:50 +00001489err_add_protocol:
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001490 unregister_pernet_subsys(&sctp_ctrlsock_ops);
1491err_register_ctrlsock:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001492 sctp_v6_protosw_exit();
1493err_v6_protosw_init:
1494 sctp_v4_protosw_exit();
1495err_protosw_init:
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001496 unregister_pernet_subsys(&sctp_defaults_ops);
1497err_register_defaults:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001498 sctp_v4_pf_exit();
1499 sctp_v6_pf_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 sctp_sysctl_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 free_pages((unsigned long)sctp_port_hashtable,
1502 get_order(sctp_port_hashsize *
1503 sizeof(struct sctp_bind_hashbucket)));
1504err_bhash_alloc:
Xin Long4f008782015-12-30 23:50:47 +08001505 sctp_transport_hashtable_destroy();
1506err_thash_alloc:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 kfree(sctp_ep_hashtable);
1508err_ehash_alloc:
Eric W. Biederman632c9282012-08-06 08:44:24 +00001509 percpu_counter_destroy(&sctp_sockets_allocated);
1510err_percpu_counter_init:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 kmem_cache_destroy(sctp_chunk_cachep);
1512err_chunk_cachep:
1513 kmem_cache_destroy(sctp_bucket_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 goto out;
1515}
1516
1517/* Exit handler for the SCTP protocol. */
Daniel Borkmanndda91922013-06-17 11:40:05 +02001518static __exit void sctp_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
1520 /* BUG. This should probably do something useful like clean
1521 * up all the remaining associations and all that memory.
1522 */
1523
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001524 /* Unregister with inet6/inet layers. */
1525 sctp_v6_del_protocol();
Vlad Yasevich270637a2008-03-20 15:17:14 -07001526 sctp_v4_del_protocol();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001528 unregister_pernet_subsys(&sctp_ctrlsock_ops);
Eric W. Biederman4db67e82012-08-06 08:42:04 +00001529
Vlad Yasevich270637a2008-03-20 15:17:14 -07001530 /* Free protosw registrations */
1531 sctp_v6_protosw_exit();
1532 sctp_v4_protosw_exit();
1533
Marcelo Ricardo Leitner8e2d61e2015-09-10 17:31:15 -03001534 unregister_pernet_subsys(&sctp_defaults_ops);
1535
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001536 /* Unregister with socket layer. */
Vlad Yasevich270637a2008-03-20 15:17:14 -07001537 sctp_v6_pf_exit();
1538 sctp_v4_pf_exit();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 sctp_sysctl_unregister();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 free_pages((unsigned long)sctp_port_hashtable,
1543 get_order(sctp_port_hashsize *
1544 sizeof(struct sctp_bind_hashbucket)));
Xin Longb5eff712015-12-30 23:50:49 +08001545 kfree(sctp_ep_hashtable);
Xin Long4f008782015-12-30 23:50:47 +08001546 sctp_transport_hashtable_destroy();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Eric W. Biederman632c9282012-08-06 08:44:24 +00001548 percpu_counter_destroy(&sctp_sockets_allocated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Jesper Dangaard Brouereaa184a2009-06-08 03:11:43 +00001550 rcu_barrier(); /* Wait for completion of call_rcu()'s */
1551
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001552 kmem_cache_destroy(sctp_chunk_cachep);
1553 kmem_cache_destroy(sctp_bucket_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554}
1555
1556module_init(sctp_init);
1557module_exit(sctp_exit);
1558
Arnaldo Carvalho de Melobb97d312005-08-09 20:19:14 -07001559/*
1560 * __stringify doesn't likes enums, so use IPPROTO_SCTP value (132) directly.
1561 */
1562MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-132");
Sridhar Samudrala882a3822006-12-13 16:33:35 -08001563MODULE_ALIAS("net-pf-" __stringify(PF_INET6) "-proto-132");
Daniel Borkmann91705c62013-07-23 14:51:47 +02001564MODULE_AUTHOR("Linux Kernel SCTP developers <linux-sctp@vger.kernel.org>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565MODULE_DESCRIPTION("Support for the SCTP protocol (RFC2960)");
David S. Miller71acc0d2013-08-09 13:09:41 -07001566module_param_named(no_checksums, sctp_checksum_disable, bool, 0644);
1567MODULE_PARM_DESC(no_checksums, "Disable checksums computing and verification");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568MODULE_LICENSE("GPL");