igb: Add support for pci-e Advanced Error Reporting
[linux-2.6-block.git] / net / sctp / protocol.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * (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 *
60c778b2 9 * This file is part of the SCTP kernel implementation
1da177e4
LT
10 *
11 * Initialization/cleanup for SCTP protocol support.
12 *
60c778b2 13 * This SCTP implementation is free software;
1da177e4
LT
14 * 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 *
60c778b2 19 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
20 * 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
26 * along with GNU CC; see the file COPYING. If not, write to
27 * the Free Software Foundation, 59 Temple Place - Suite 330,
28 * Boston, MA 02111-1307, USA.
29 *
30 * Please send any bug reports or fixes you make to the
31 * email address(es):
32 * lksctp developers <lksctp-developers@lists.sourceforge.net>
33 *
34 * Or submit a bug report through the following website:
35 * http://www.sf.net/projects/lksctp
36 *
37 * Written or modified by:
38 * La Monte H.P. Yarroll <piggy@acm.org>
39 * Karl Knutson <karl@athena.chicago.il.us>
40 * Jon Grimm <jgrimm@us.ibm.com>
41 * Sridhar Samudrala <sri@us.ibm.com>
42 * Daisy Chang <daisyc@us.ibm.com>
43 * Ardelle Fan <ardelle.fan@intel.com>
44 *
45 * Any bugs reported given to us we will try to fix... any fixes shared will
46 * be incorporated into the next SCTP release.
47 */
48
49#include <linux/module.h>
50#include <linux/init.h>
51#include <linux/netdevice.h>
52#include <linux/inetdevice.h>
53#include <linux/seq_file.h>
4d93df0a 54#include <linux/bootmem.h>
845525a6
VY
55#include <linux/highmem.h>
56#include <linux/swap.h>
457c4cbc 57#include <net/net_namespace.h>
1da177e4
LT
58#include <net/protocol.h>
59#include <net/ip.h>
60#include <net/ipv6.h>
14c85021 61#include <net/route.h>
1da177e4
LT
62#include <net/sctp/sctp.h>
63#include <net/addrconf.h>
64#include <net/inet_common.h>
65#include <net/inet_ecn.h>
66
67/* Global data structures. */
4cbf1cae 68struct sctp_globals sctp_globals __read_mostly;
ba89966c 69DEFINE_SNMP_STAT(struct sctp_mib, sctp_statistics) __read_mostly;
1da177e4 70
c4e85f82
FW
71#ifdef CONFIG_PROC_FS
72struct proc_dir_entry *proc_net_sctp;
73#endif
74
1da177e4
LT
75struct idr sctp_assocs_id;
76DEFINE_SPINLOCK(sctp_assocs_id_lock);
77
78/* This is the global socket data structure used for responding to
79 * the Out-of-the-blue (OOTB) packets. A control sock will be created
80 * for this socket at the initialization time.
81 */
8258175c 82static struct sock *sctp_ctl_sock;
1da177e4
LT
83
84static struct sctp_pf *sctp_pf_inet6_specific;
85static struct sctp_pf *sctp_pf_inet_specific;
86static struct sctp_af *sctp_af_v4_specific;
87static struct sctp_af *sctp_af_v6_specific;
88
e18b890b
CL
89struct kmem_cache *sctp_chunk_cachep __read_mostly;
90struct kmem_cache *sctp_bucket_cachep __read_mostly;
1da177e4 91
007e3936
VY
92int sysctl_sctp_mem[3];
93int sysctl_sctp_rmem[3];
94int sysctl_sctp_wmem[3];
4d93df0a 95
1da177e4
LT
96/* Return the address of the control sock. */
97struct sock *sctp_get_ctl_sock(void)
98{
8258175c 99 return sctp_ctl_sock;
1da177e4
LT
100}
101
102/* Set up the proc fs entry for the SCTP protocol. */
103static __init int sctp_proc_init(void)
104{
1748376b
ED
105 if (percpu_counter_init(&sctp_sockets_allocated, 0))
106 goto out_nomem;
c4e85f82 107#ifdef CONFIG_PROC_FS
1da177e4
LT
108 if (!proc_net_sctp) {
109 struct proc_dir_entry *ent;
457c4cbc 110 ent = proc_mkdir("sctp", init_net.proc_net);
1da177e4
LT
111 if (ent) {
112 ent->owner = THIS_MODULE;
113 proc_net_sctp = ent;
114 } else
1748376b 115 goto out_free_percpu;
1da177e4
LT
116 }
117
118 if (sctp_snmp_proc_init())
80896a35 119 goto out_snmp_proc_init;
1da177e4 120 if (sctp_eps_proc_init())
80896a35 121 goto out_eps_proc_init;
1da177e4 122 if (sctp_assocs_proc_init())
80896a35 123 goto out_assocs_proc_init;
20c2c1fd 124 if (sctp_remaddr_proc_init())
caea902f 125 goto out_remaddr_proc_init;
1da177e4
LT
126
127 return 0;
128
caea902f 129out_remaddr_proc_init:
3d00fb9e 130 sctp_assocs_proc_exit();
80896a35
WY
131out_assocs_proc_init:
132 sctp_eps_proc_exit();
133out_eps_proc_init:
134 sctp_snmp_proc_exit();
135out_snmp_proc_init:
136 if (proc_net_sctp) {
137 proc_net_sctp = NULL;
138 remove_proc_entry("sctp", init_net.proc_net);
139 }
1748376b
ED
140out_free_percpu:
141 percpu_counter_destroy(&sctp_sockets_allocated);
1da177e4
LT
142out_nomem:
143 return -ENOMEM;
c4e85f82
FW
144#else
145 return 0;
146#endif /* CONFIG_PROC_FS */
1da177e4
LT
147}
148
d808ad9a 149/* Clean up the proc fs entry for the SCTP protocol.
1da177e4
LT
150 * Note: Do not make this __exit as it is used in the init error
151 * path.
152 */
153static void sctp_proc_exit(void)
154{
c4e85f82 155#ifdef CONFIG_PROC_FS
1da177e4
LT
156 sctp_snmp_proc_exit();
157 sctp_eps_proc_exit();
158 sctp_assocs_proc_exit();
20c2c1fd 159 sctp_remaddr_proc_exit();
1da177e4
LT
160
161 if (proc_net_sctp) {
162 proc_net_sctp = NULL;
457c4cbc 163 remove_proc_entry("sctp", init_net.proc_net);
1da177e4 164 }
c4e85f82 165#endif
1da177e4
LT
166}
167
168/* Private helper to extract ipv4 address and stash them in
169 * the protocol structure.
170 */
171static void sctp_v4_copy_addrlist(struct list_head *addrlist,
172 struct net_device *dev)
173{
174 struct in_device *in_dev;
175 struct in_ifaddr *ifa;
176 struct sctp_sockaddr_entry *addr;
177
178 rcu_read_lock();
e5ed6399 179 if ((in_dev = __in_dev_get_rcu(dev)) == NULL) {
1da177e4
LT
180 rcu_read_unlock();
181 return;
182 }
183
184 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
185 /* Add the address to the local list. */
186 addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC);
187 if (addr) {
2a6fd78a
AV
188 addr->a.v4.sin_family = AF_INET;
189 addr->a.v4.sin_port = 0;
190 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
29303547
VY
191 addr->valid = 1;
192 INIT_LIST_HEAD(&addr->list);
193 INIT_RCU_HEAD(&addr->rcu);
1da177e4
LT
194 list_add_tail(&addr->list, addrlist);
195 }
196 }
197
198 rcu_read_unlock();
199}
200
201/* Extract our IP addresses from the system and stash them in the
202 * protocol structure.
203 */
29c7cf96 204static void sctp_get_local_addr_list(void)
1da177e4
LT
205{
206 struct net_device *dev;
207 struct list_head *pos;
208 struct sctp_af *af;
209
210 read_lock(&dev_base_lock);
881d966b 211 for_each_netdev(&init_net, dev) {
1da177e4
LT
212 __list_for_each(pos, &sctp_address_families) {
213 af = list_entry(pos, struct sctp_af, list);
214 af->copy_addrlist(&sctp_local_addr_list, dev);
215 }
216 }
217 read_unlock(&dev_base_lock);
218}
219
1da177e4 220/* Free the existing local addresses. */
29c7cf96 221static void sctp_free_local_addr_list(void)
1da177e4
LT
222{
223 struct sctp_sockaddr_entry *addr;
224 struct list_head *pos, *temp;
225
226 list_for_each_safe(pos, temp, &sctp_local_addr_list) {
227 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
228 list_del(pos);
229 kfree(addr);
230 }
231}
232
29303547
VY
233void sctp_local_addr_free(struct rcu_head *head)
234{
235 struct sctp_sockaddr_entry *e = container_of(head,
236 struct sctp_sockaddr_entry, rcu);
237 kfree(e);
238}
239
1da177e4
LT
240/* Copy the local addresses which are valid for 'scope' into 'bp'. */
241int sctp_copy_local_addr_list(struct sctp_bind_addr *bp, sctp_scope_t scope,
dd0fc66f 242 gfp_t gfp, int copy_flags)
1da177e4
LT
243{
244 struct sctp_sockaddr_entry *addr;
245 int error = 0;
1da177e4 246
29303547
VY
247 rcu_read_lock();
248 list_for_each_entry_rcu(addr, &sctp_local_addr_list, list) {
249 if (!addr->valid)
250 continue;
6244be4e 251 if (sctp_in_scope(&addr->a, scope)) {
1da177e4
LT
252 /* Now that the address is in scope, check to see if
253 * the address type is really supported by the local
254 * sock as well as the remote peer.
255 */
6244be4e 256 if ((((AF_INET == addr->a.sa.sa_family) &&
1da177e4 257 (copy_flags & SCTP_ADDR4_PEERSUPP))) ||
6244be4e 258 (((AF_INET6 == addr->a.sa.sa_family) &&
1da177e4
LT
259 (copy_flags & SCTP_ADDR6_ALLOWED) &&
260 (copy_flags & SCTP_ADDR6_PEERSUPP)))) {
f57d96b2
VY
261 error = sctp_add_bind_addr(bp, &addr->a,
262 SCTP_ADDR_SRC, GFP_ATOMIC);
1da177e4
LT
263 if (error)
264 goto end_copy;
265 }
266 }
267 }
268
269end_copy:
29303547 270 rcu_read_unlock();
1da177e4
LT
271 return error;
272}
273
274/* Initialize a sctp_addr from in incoming skb. */
275static void sctp_v4_from_skb(union sctp_addr *addr, struct sk_buff *skb,
276 int is_saddr)
277{
278 void *from;
d55c41b1 279 __be16 *port;
1da177e4
LT
280 struct sctphdr *sh;
281
282 port = &addr->v4.sin_port;
283 addr->v4.sin_family = AF_INET;
284
2c0fd387 285 sh = sctp_hdr(skb);
1da177e4 286 if (is_saddr) {
d55c41b1 287 *port = sh->source;
eddc9ec5 288 from = &ip_hdr(skb)->saddr;
1da177e4 289 } else {
d55c41b1 290 *port = sh->dest;
eddc9ec5 291 from = &ip_hdr(skb)->daddr;
1da177e4
LT
292 }
293 memcpy(&addr->v4.sin_addr.s_addr, from, sizeof(struct in_addr));
294}
295
296/* Initialize an sctp_addr from a socket. */
297static void sctp_v4_from_sk(union sctp_addr *addr, struct sock *sk)
298{
299 addr->v4.sin_family = AF_INET;
7dcdbd95 300 addr->v4.sin_port = 0;
1da177e4
LT
301 addr->v4.sin_addr.s_addr = inet_sk(sk)->rcv_saddr;
302}
303
304/* Initialize sk->sk_rcv_saddr from sctp_addr. */
305static void sctp_v4_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
306{
307 inet_sk(sk)->rcv_saddr = addr->v4.sin_addr.s_addr;
308}
309
310/* Initialize sk->sk_daddr from sctp_addr. */
311static void sctp_v4_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
312{
313 inet_sk(sk)->daddr = addr->v4.sin_addr.s_addr;
314}
315
316/* Initialize a sctp_addr from an address parameter. */
317static void sctp_v4_from_addr_param(union sctp_addr *addr,
318 union sctp_addr_param *param,
dd86d136 319 __be16 port, int iif)
1da177e4
LT
320{
321 addr->v4.sin_family = AF_INET;
322 addr->v4.sin_port = port;
323 addr->v4.sin_addr.s_addr = param->v4.addr.s_addr;
324}
325
326/* Initialize an address parameter from a sctp_addr and return the length
327 * of the address parameter.
328 */
329static int sctp_v4_to_addr_param(const union sctp_addr *addr,
330 union sctp_addr_param *param)
331{
332 int length = sizeof(sctp_ipv4addr_param_t);
333
334 param->v4.param_hdr.type = SCTP_PARAM_IPV4_ADDRESS;
dbc16db1 335 param->v4.param_hdr.length = htons(length);
d808ad9a 336 param->v4.addr.s_addr = addr->v4.sin_addr.s_addr;
1da177e4
LT
337
338 return length;
339}
340
341/* Initialize a sctp_addr from a dst_entry. */
342static void sctp_v4_dst_saddr(union sctp_addr *saddr, struct dst_entry *dst,
854d43a4 343 __be16 port)
1da177e4
LT
344{
345 struct rtable *rt = (struct rtable *)dst;
346 saddr->v4.sin_family = AF_INET;
347 saddr->v4.sin_port = port;
348 saddr->v4.sin_addr.s_addr = rt->rt_src;
349}
350
351/* Compare two addresses exactly. */
352static int sctp_v4_cmp_addr(const union sctp_addr *addr1,
353 const union sctp_addr *addr2)
354{
355 if (addr1->sa.sa_family != addr2->sa.sa_family)
356 return 0;
357 if (addr1->v4.sin_port != addr2->v4.sin_port)
358 return 0;
359 if (addr1->v4.sin_addr.s_addr != addr2->v4.sin_addr.s_addr)
360 return 0;
361
362 return 1;
363}
364
365/* Initialize addr struct to INADDR_ANY. */
6fbfa9f9 366static void sctp_v4_inaddr_any(union sctp_addr *addr, __be16 port)
1da177e4
LT
367{
368 addr->v4.sin_family = AF_INET;
e6f1cebf 369 addr->v4.sin_addr.s_addr = htonl(INADDR_ANY);
1da177e4
LT
370 addr->v4.sin_port = port;
371}
372
373/* Is this a wildcard address? */
374static int sctp_v4_is_any(const union sctp_addr *addr)
375{
e6f1cebf 376 return htonl(INADDR_ANY) == addr->v4.sin_addr.s_addr;
1da177e4
LT
377}
378
379/* This function checks if the address is a valid address to be used for
380 * SCTP binding.
381 *
382 * Output:
383 * Return 0 - If the address is a non-unicast or an illegal address.
384 * Return 1 - If the address is a unicast.
385 */
5636bef7
VY
386static int sctp_v4_addr_valid(union sctp_addr *addr,
387 struct sctp_sock *sp,
388 const struct sk_buff *skb)
1da177e4 389{
7dab83de
VY
390 /* IPv4 addresses not allowed */
391 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
392 return 0;
393
1da177e4 394 /* Is this a non-unicast address or a unusable SCTP address? */
b5cb2bbc 395 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr))
1da177e4
LT
396 return 0;
397
d808ad9a 398 /* Is this a broadcast address? */
ee6b9673 399 if (skb && skb->rtable->rt_flags & RTCF_BROADCAST)
d808ad9a 400 return 0;
5636bef7 401
1da177e4
LT
402 return 1;
403}
404
405/* Should this be available for binding? */
406static int sctp_v4_available(union sctp_addr *addr, struct sctp_sock *sp)
407{
6b175b26 408 int ret = inet_addr_type(&init_net, addr->v4.sin_addr.s_addr);
1da177e4 409
1da177e4 410
e6f1cebf 411 if (addr->v4.sin_addr.s_addr != htonl(INADDR_ANY) &&
cdac4e07
NH
412 ret != RTN_LOCAL &&
413 !sp->inet.freebind &&
414 !sysctl_ip_nonlocal_bind)
1da177e4 415 return 0;
cdac4e07 416
7dab83de
VY
417 if (ipv6_only_sock(sctp_opt2sk(sp)))
418 return 0;
419
1da177e4
LT
420 return 1;
421}
422
423/* Checking the loopback, private and other address scopes as defined in
424 * RFC 1918. The IPv4 scoping is based on the draft for SCTP IPv4
425 * scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
426 *
427 * Level 0 - unusable SCTP addresses
428 * Level 1 - loopback address
429 * Level 2 - link-local addresses
430 * Level 3 - private addresses.
431 * Level 4 - global addresses
432 * For INIT and INIT-ACK address list, let L be the level of
433 * of requested destination address, sender and receiver
434 * SHOULD include all of its addresses with level greater
435 * than or equal to L.
436 */
437static sctp_scope_t sctp_v4_scope(union sctp_addr *addr)
438{
439 sctp_scope_t retval;
440
441 /* Should IPv4 scoping be a sysctl configurable option
442 * so users can turn it off (default on) for certain
443 * unconventional networking environments?
444 */
445
446 /* Check for unusable SCTP addresses. */
b5cb2bbc 447 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr)) {
1da177e4 448 retval = SCTP_SCOPE_UNUSABLE;
b5cb2bbc 449 } else if (ipv4_is_loopback(addr->v4.sin_addr.s_addr)) {
1da177e4 450 retval = SCTP_SCOPE_LOOPBACK;
b5cb2bbc 451 } else if (ipv4_is_linklocal_169(addr->v4.sin_addr.s_addr)) {
1da177e4 452 retval = SCTP_SCOPE_LINK;
b5cb2bbc
JP
453 } else if (ipv4_is_private_10(addr->v4.sin_addr.s_addr) ||
454 ipv4_is_private_172(addr->v4.sin_addr.s_addr) ||
455 ipv4_is_private_192(addr->v4.sin_addr.s_addr)) {
1da177e4
LT
456 retval = SCTP_SCOPE_PRIVATE;
457 } else {
458 retval = SCTP_SCOPE_GLOBAL;
459 }
460
461 return retval;
462}
463
464/* Returns a valid dst cache entry for the given source and destination ip
465 * addresses. If an association is passed, trys to get a dst entry with a
466 * source address that matches an address in the bind address list.
467 */
468static struct dst_entry *sctp_v4_get_dst(struct sctp_association *asoc,
469 union sctp_addr *daddr,
470 union sctp_addr *saddr)
471{
472 struct rtable *rt;
473 struct flowi fl;
474 struct sctp_bind_addr *bp;
1da177e4 475 struct sctp_sockaddr_entry *laddr;
1da177e4
LT
476 struct dst_entry *dst = NULL;
477 union sctp_addr dst_saddr;
478
479 memset(&fl, 0x0, sizeof(struct flowi));
480 fl.fl4_dst = daddr->v4.sin_addr.s_addr;
481 fl.proto = IPPROTO_SCTP;
482 if (asoc) {
483 fl.fl4_tos = RT_CONN_FLAGS(asoc->base.sk);
484 fl.oif = asoc->base.sk->sk_bound_dev_if;
485 }
486 if (saddr)
487 fl.fl4_src = saddr->v4.sin_addr.s_addr;
488
21454aaa
HH
489 SCTP_DEBUG_PRINTK("%s: DST:%pI4, SRC:%pI4 - ",
490 __func__, &fl.fl4_dst, &fl.fl4_src);
1da177e4 491
f206351a 492 if (!ip_route_output_key(&init_net, &rt, &fl)) {
1da177e4
LT
493 dst = &rt->u.dst;
494 }
495
496 /* If there is no association or if a source address is passed, no
497 * more validation is required.
498 */
499 if (!asoc || saddr)
500 goto out;
501
502 bp = &asoc->base.bind_addr;
1da177e4
LT
503
504 if (dst) {
505 /* Walk through the bind address list and look for a bind
506 * address that matches the source address of the returned dst.
507 */
159c6bea 508 sctp_v4_dst_saddr(&dst_saddr, dst, htons(bp->port));
559cf710
VY
509 rcu_read_lock();
510 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
f57d96b2 511 if (!laddr->valid || (laddr->state != SCTP_ADDR_SRC))
dc022a98 512 continue;
854d43a4 513 if (sctp_v4_cmp_addr(&dst_saddr, &laddr->a))
1da177e4
LT
514 goto out_unlock;
515 }
559cf710 516 rcu_read_unlock();
1da177e4
LT
517
518 /* None of the bound addresses match the source address of the
519 * dst. So release it.
520 */
521 dst_release(dst);
522 dst = NULL;
523 }
524
525 /* Walk through the bind address list and try to get a dst that
526 * matches a bind address as the source address.
527 */
559cf710
VY
528 rcu_read_lock();
529 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
530 if (!laddr->valid)
531 continue;
f57d96b2 532 if ((laddr->state == SCTP_ADDR_SRC) &&
6244be4e
AV
533 (AF_INET == laddr->a.sa.sa_family)) {
534 fl.fl4_src = laddr->a.v4.sin_addr.s_addr;
f206351a 535 if (!ip_route_output_key(&init_net, &rt, &fl)) {
1da177e4
LT
536 dst = &rt->u.dst;
537 goto out_unlock;
538 }
539 }
540 }
541
542out_unlock:
559cf710 543 rcu_read_unlock();
1da177e4
LT
544out:
545 if (dst)
21454aaa
HH
546 SCTP_DEBUG_PRINTK("rt_dst:%pI4, rt_src:%pI4\n",
547 &rt->rt_dst, &rt->rt_src);
1da177e4
LT
548 else
549 SCTP_DEBUG_PRINTK("NO ROUTE\n");
550
551 return dst;
552}
553
554/* For v4, the source address is cached in the route entry(dst). So no need
555 * to cache it separately and hence this is an empty routine.
556 */
e5117101
YH
557static void sctp_v4_get_saddr(struct sctp_sock *sk,
558 struct sctp_association *asoc,
1da177e4
LT
559 struct dst_entry *dst,
560 union sctp_addr *daddr,
561 union sctp_addr *saddr)
562{
563 struct rtable *rt = (struct rtable *)dst;
564
23ec47a0
VY
565 if (!asoc)
566 return;
567
1da177e4
LT
568 if (rt) {
569 saddr->v4.sin_family = AF_INET;
d3f7a54a 570 saddr->v4.sin_port = htons(asoc->base.bind_addr.port);
d808ad9a 571 saddr->v4.sin_addr.s_addr = rt->rt_src;
1da177e4
LT
572 }
573}
574
575/* What interface did this skb arrive on? */
576static int sctp_v4_skb_iif(const struct sk_buff *skb)
577{
ee6b9673 578 return skb->rtable->rt_iif;
1da177e4
LT
579}
580
581/* Was this packet marked by Explicit Congestion Notification? */
582static int sctp_v4_is_ce(const struct sk_buff *skb)
583{
eddc9ec5 584 return INET_ECN_is_ce(ip_hdr(skb)->tos);
1da177e4
LT
585}
586
587/* Create and initialize a new sk for the socket returned by accept(). */
588static struct sock *sctp_v4_create_accept_sk(struct sock *sk,
589 struct sctp_association *asoc)
590{
591 struct inet_sock *inet = inet_sk(sk);
592 struct inet_sock *newinet;
3b1e0a65 593 struct sock *newsk = sk_alloc(sock_net(sk), PF_INET, GFP_KERNEL,
6257ff21 594 sk->sk_prot);
1da177e4
LT
595
596 if (!newsk)
597 goto out;
598
599 sock_init_data(NULL, newsk);
600
601 newsk->sk_type = SOCK_STREAM;
602
603 newsk->sk_no_check = sk->sk_no_check;
604 newsk->sk_reuse = sk->sk_reuse;
605 newsk->sk_shutdown = sk->sk_shutdown;
606
607 newsk->sk_destruct = inet_sock_destruct;
608 newsk->sk_family = PF_INET;
609 newsk->sk_protocol = IPPROTO_SCTP;
610 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
611 sock_reset_flag(newsk, SOCK_ZAPPED);
612
613 newinet = inet_sk(newsk);
614
615 /* Initialize sk's sport, dport, rcv_saddr and daddr for
616 * getsockname() and getpeername()
617 */
618 newinet->sport = inet->sport;
619 newinet->saddr = inet->saddr;
620 newinet->rcv_saddr = inet->rcv_saddr;
621 newinet->dport = htons(asoc->peer.port);
622 newinet->daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
623 newinet->pmtudisc = inet->pmtudisc;
d808ad9a 624 newinet->id = asoc->next_tsn ^ jiffies;
1da177e4
LT
625
626 newinet->uc_ttl = -1;
627 newinet->mc_loop = 1;
628 newinet->mc_ttl = 1;
629 newinet->mc_index = 0;
630 newinet->mc_list = NULL;
631
e6848976 632 sk_refcnt_debug_inc(newsk);
1da177e4
LT
633
634 if (newsk->sk_prot->init(newsk)) {
635 sk_common_release(newsk);
636 newsk = NULL;
637 }
638
639out:
640 return newsk;
641}
642
643/* Map address, empty for v4 family */
644static void sctp_v4_addr_v4map(struct sctp_sock *sp, union sctp_addr *addr)
645{
646 /* Empty */
647}
648
649/* Dump the v4 addr to the seq file. */
650static void sctp_v4_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
651{
21454aaa 652 seq_printf(seq, "%pI4 ", &addr->v4.sin_addr);
1da177e4
LT
653}
654
b9031d9d
VY
655static void sctp_v4_ecn_capable(struct sock *sk)
656{
657 INET_ECN_xmit(sk);
658}
659
29303547
VY
660/* Event handler for inet address addition/deletion events.
661 * The sctp_local_addr_list needs to be protocted by a spin lock since
662 * multiple notifiers (say IPv4 and IPv6) may be running at the same
663 * time and thus corrupt the list.
664 * The reader side is protected with RCU.
665 */
24123186
AB
666static int sctp_inetaddr_event(struct notifier_block *this, unsigned long ev,
667 void *ptr)
1da177e4 668{
29c7cf96 669 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
29303547
VY
670 struct sctp_sockaddr_entry *addr = NULL;
671 struct sctp_sockaddr_entry *temp;
22626216 672 int found = 0;
1da177e4 673
721499e8 674 if (!net_eq(dev_net(ifa->ifa_dev->dev), &init_net))
6133fb1a
DL
675 return NOTIFY_DONE;
676
29c7cf96
SS
677 switch (ev) {
678 case NETDEV_UP:
679 addr = kmalloc(sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
680 if (addr) {
681 addr->a.v4.sin_family = AF_INET;
682 addr->a.v4.sin_port = 0;
683 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
29303547
VY
684 addr->valid = 1;
685 spin_lock_bh(&sctp_local_addr_lock);
686 list_add_tail_rcu(&addr->list, &sctp_local_addr_list);
687 spin_unlock_bh(&sctp_local_addr_lock);
29c7cf96
SS
688 }
689 break;
690 case NETDEV_DOWN:
29303547
VY
691 spin_lock_bh(&sctp_local_addr_lock);
692 list_for_each_entry_safe(addr, temp,
693 &sctp_local_addr_list, list) {
a40a7d15
PE
694 if (addr->a.sa.sa_family == AF_INET &&
695 addr->a.v4.sin_addr.s_addr ==
696 ifa->ifa_local) {
22626216 697 found = 1;
29303547
VY
698 addr->valid = 0;
699 list_del_rcu(&addr->list);
29c7cf96
SS
700 break;
701 }
702 }
29303547 703 spin_unlock_bh(&sctp_local_addr_lock);
22626216 704 if (found)
29303547 705 call_rcu(&addr->rcu, sctp_local_addr_free);
29c7cf96
SS
706 break;
707 }
1da177e4
LT
708
709 return NOTIFY_DONE;
710}
711
712/*
713 * Initialize the control inode/socket with a control endpoint data
714 * structure. This endpoint is reserved exclusively for the OOTB processing.
715 */
716static int sctp_ctl_sock_init(void)
717{
718 int err;
719 sa_family_t family;
720
721 if (sctp_get_pf_specific(PF_INET6))
722 family = PF_INET6;
723 else
724 family = PF_INET;
725
eee4fe4d 726 err = inet_ctl_sock_create(&sctp_ctl_sock, family,
5677242f 727 SOCK_SEQPACKET, IPPROTO_SCTP, &init_net);
1da177e4
LT
728 if (err < 0) {
729 printk(KERN_ERR
730 "SCTP: Failed to create the SCTP control socket.\n");
731 return err;
732 }
1da177e4
LT
733 return 0;
734}
735
736/* Register address family specific functions. */
737int sctp_register_af(struct sctp_af *af)
738{
739 switch (af->sa_family) {
740 case AF_INET:
741 if (sctp_af_v4_specific)
742 return 0;
743 sctp_af_v4_specific = af;
744 break;
745 case AF_INET6:
746 if (sctp_af_v6_specific)
747 return 0;
748 sctp_af_v6_specific = af;
749 break;
750 default:
751 return 0;
752 }
753
754 INIT_LIST_HEAD(&af->list);
755 list_add_tail(&af->list, &sctp_address_families);
756 return 1;
757}
758
759/* Get the table of functions for manipulating a particular address
760 * family.
761 */
762struct sctp_af *sctp_get_af_specific(sa_family_t family)
763{
764 switch (family) {
765 case AF_INET:
766 return sctp_af_v4_specific;
767 case AF_INET6:
768 return sctp_af_v6_specific;
769 default:
770 return NULL;
771 }
772}
773
774/* Common code to initialize a AF_INET msg_name. */
775static void sctp_inet_msgname(char *msgname, int *addr_len)
776{
777 struct sockaddr_in *sin;
778
779 sin = (struct sockaddr_in *)msgname;
780 *addr_len = sizeof(struct sockaddr_in);
781 sin->sin_family = AF_INET;
782 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
783}
784
785/* Copy the primary address of the peer primary address as the msg_name. */
786static void sctp_inet_event_msgname(struct sctp_ulpevent *event, char *msgname,
787 int *addr_len)
788{
789 struct sockaddr_in *sin, *sinfrom;
790
791 if (msgname) {
792 struct sctp_association *asoc;
793
794 asoc = event->asoc;
795 sctp_inet_msgname(msgname, addr_len);
796 sin = (struct sockaddr_in *)msgname;
797 sinfrom = &asoc->peer.primary_addr.v4;
798 sin->sin_port = htons(asoc->peer.port);
799 sin->sin_addr.s_addr = sinfrom->sin_addr.s_addr;
800 }
801}
802
803/* Initialize and copy out a msgname from an inbound skb. */
804static void sctp_inet_skb_msgname(struct sk_buff *skb, char *msgname, int *len)
805{
1da177e4 806 if (msgname) {
2c0fd387
ACM
807 struct sctphdr *sh = sctp_hdr(skb);
808 struct sockaddr_in *sin = (struct sockaddr_in *)msgname;
809
1da177e4 810 sctp_inet_msgname(msgname, len);
1da177e4 811 sin->sin_port = sh->source;
eddc9ec5 812 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
1da177e4
LT
813 }
814}
815
816/* Do we support this AF? */
817static int sctp_inet_af_supported(sa_family_t family, struct sctp_sock *sp)
818{
819 /* PF_INET only supports AF_INET addresses. */
820 return (AF_INET == family);
821}
822
823/* Address matching with wildcards allowed. */
824static int sctp_inet_cmp_addr(const union sctp_addr *addr1,
825 const union sctp_addr *addr2,
826 struct sctp_sock *opt)
827{
828 /* PF_INET only supports AF_INET addresses. */
829 if (addr1->sa.sa_family != addr2->sa.sa_family)
830 return 0;
e6f1cebf
AV
831 if (htonl(INADDR_ANY) == addr1->v4.sin_addr.s_addr ||
832 htonl(INADDR_ANY) == addr2->v4.sin_addr.s_addr)
1da177e4
LT
833 return 1;
834 if (addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr)
835 return 1;
836
837 return 0;
838}
839
840/* Verify that provided sockaddr looks bindable. Common verification has
841 * already been taken care of.
842 */
843static int sctp_inet_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
844{
845 return sctp_v4_available(addr, opt);
846}
847
848/* Verify that sockaddr looks sendable. Common verification has already
849 * been taken care of.
850 */
851static int sctp_inet_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
852{
853 return 1;
854}
855
856/* Fill in Supported Address Type information for INIT and INIT-ACK
857 * chunks. Returns number of addresses supported.
858 */
859static int sctp_inet_supported_addrs(const struct sctp_sock *opt,
3dbe8656 860 __be16 *types)
1da177e4
LT
861{
862 types[0] = SCTP_PARAM_IPV4_ADDRESS;
863 return 1;
864}
865
866/* Wrapper routine that calls the ip transmit routine. */
867static inline int sctp_v4_xmit(struct sk_buff *skb,
f880374c 868 struct sctp_transport *transport)
1da177e4 869{
f880374c
HX
870 struct inet_sock *inet = inet_sk(skb->sk);
871
21454aaa 872 SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, src:%pI4, dst:%pI4\n",
0dc47877 873 __func__, skb, skb->len,
21454aaa
HH
874 &skb->rtable->rt_src,
875 &skb->rtable->rt_dst);
1da177e4 876
f880374c
HX
877 inet->pmtudisc = transport->param_flags & SPP_PMTUD_ENABLE ?
878 IP_PMTUDISC_DO : IP_PMTUDISC_DONT;
879
1da177e4 880 SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS);
f880374c 881 return ip_queue_xmit(skb, 0);
1da177e4
LT
882}
883
15efbe76 884static struct sctp_af sctp_af_inet;
1da177e4
LT
885
886static struct sctp_pf sctp_pf_inet = {
887 .event_msgname = sctp_inet_event_msgname,
888 .skb_msgname = sctp_inet_skb_msgname,
889 .af_supported = sctp_inet_af_supported,
890 .cmp_addr = sctp_inet_cmp_addr,
891 .bind_verify = sctp_inet_bind_verify,
892 .send_verify = sctp_inet_send_verify,
893 .supported_addrs = sctp_inet_supported_addrs,
894 .create_accept_sk = sctp_v4_create_accept_sk,
895 .addr_v4map = sctp_v4_addr_v4map,
15efbe76 896 .af = &sctp_af_inet
1da177e4
LT
897};
898
899/* Notifier for inetaddr addition/deletion events. */
900static struct notifier_block sctp_inetaddr_notifier = {
901 .notifier_call = sctp_inetaddr_event,
902};
903
904/* Socket operations. */
90ddc4f0 905static const struct proto_ops inet_seqpacket_ops = {
543d9cfe
ACM
906 .family = PF_INET,
907 .owner = THIS_MODULE,
908 .release = inet_release, /* Needs to be wrapped... */
909 .bind = inet_bind,
910 .connect = inet_dgram_connect,
911 .socketpair = sock_no_socketpair,
912 .accept = inet_accept,
913 .getname = inet_getname, /* Semantics are different. */
914 .poll = sctp_poll,
915 .ioctl = inet_ioctl,
916 .listen = sctp_inet_listen,
917 .shutdown = inet_shutdown, /* Looks harmless. */
918 .setsockopt = sock_common_setsockopt, /* IP_SOL IP_OPTION is a problem */
919 .getsockopt = sock_common_getsockopt,
920 .sendmsg = inet_sendmsg,
921 .recvmsg = sock_common_recvmsg,
922 .mmap = sock_no_mmap,
923 .sendpage = sock_no_sendpage,
3fdadf7d 924#ifdef CONFIG_COMPAT
543d9cfe
ACM
925 .compat_setsockopt = compat_sock_common_setsockopt,
926 .compat_getsockopt = compat_sock_common_getsockopt,
3fdadf7d 927#endif
1da177e4
LT
928};
929
930/* Registration with AF_INET family. */
931static struct inet_protosw sctp_seqpacket_protosw = {
932 .type = SOCK_SEQPACKET,
933 .protocol = IPPROTO_SCTP,
934 .prot = &sctp_prot,
935 .ops = &inet_seqpacket_ops,
936 .capability = -1,
937 .no_check = 0,
938 .flags = SCTP_PROTOSW_FLAG
939};
940static struct inet_protosw sctp_stream_protosw = {
941 .type = SOCK_STREAM,
942 .protocol = IPPROTO_SCTP,
943 .prot = &sctp_prot,
944 .ops = &inet_seqpacket_ops,
945 .capability = -1,
946 .no_check = 0,
947 .flags = SCTP_PROTOSW_FLAG
948};
949
950/* Register with IP layer. */
951static struct net_protocol sctp_protocol = {
952 .handler = sctp_rcv,
953 .err_handler = sctp_v4_err,
954 .no_policy = 1,
955};
956
957/* IPv4 address related functions. */
15efbe76 958static struct sctp_af sctp_af_inet = {
543d9cfe
ACM
959 .sa_family = AF_INET,
960 .sctp_xmit = sctp_v4_xmit,
961 .setsockopt = ip_setsockopt,
962 .getsockopt = ip_getsockopt,
963 .get_dst = sctp_v4_get_dst,
964 .get_saddr = sctp_v4_get_saddr,
965 .copy_addrlist = sctp_v4_copy_addrlist,
966 .from_skb = sctp_v4_from_skb,
967 .from_sk = sctp_v4_from_sk,
968 .to_sk_saddr = sctp_v4_to_sk_saddr,
969 .to_sk_daddr = sctp_v4_to_sk_daddr,
970 .from_addr_param = sctp_v4_from_addr_param,
971 .to_addr_param = sctp_v4_to_addr_param,
972 .dst_saddr = sctp_v4_dst_saddr,
973 .cmp_addr = sctp_v4_cmp_addr,
974 .addr_valid = sctp_v4_addr_valid,
975 .inaddr_any = sctp_v4_inaddr_any,
976 .is_any = sctp_v4_is_any,
977 .available = sctp_v4_available,
978 .scope = sctp_v4_scope,
979 .skb_iif = sctp_v4_skb_iif,
980 .is_ce = sctp_v4_is_ce,
981 .seq_dump_addr = sctp_v4_seq_dump_addr,
b9031d9d 982 .ecn_capable = sctp_v4_ecn_capable,
543d9cfe
ACM
983 .net_header_len = sizeof(struct iphdr),
984 .sockaddr_len = sizeof(struct sockaddr_in),
3fdadf7d 985#ifdef CONFIG_COMPAT
543d9cfe
ACM
986 .compat_setsockopt = compat_ip_setsockopt,
987 .compat_getsockopt = compat_ip_getsockopt,
3fdadf7d 988#endif
1da177e4
LT
989};
990
991struct sctp_pf *sctp_get_pf_specific(sa_family_t family) {
992
993 switch (family) {
994 case PF_INET:
995 return sctp_pf_inet_specific;
996 case PF_INET6:
997 return sctp_pf_inet6_specific;
998 default:
999 return NULL;
1000 }
1001}
1002
1003/* Register the PF specific function table. */
1004int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
1005{
1006 switch (family) {
1007 case PF_INET:
1008 if (sctp_pf_inet_specific)
1009 return 0;
1010 sctp_pf_inet_specific = pf;
1011 break;
1012 case PF_INET6:
1013 if (sctp_pf_inet6_specific)
1014 return 0;
1015 sctp_pf_inet6_specific = pf;
1016 break;
1017 default:
1018 return 0;
1019 }
1020 return 1;
1021}
1022
996b1dba
YH
1023static inline int init_sctp_mibs(void)
1024{
1025 return snmp_mib_init((void**)sctp_statistics, sizeof(struct sctp_mib));
1da177e4
LT
1026}
1027
996b1dba 1028static inline void cleanup_sctp_mibs(void)
1da177e4 1029{
996b1dba 1030 snmp_mib_free((void**)sctp_statistics);
1da177e4
LT
1031}
1032
270637ab
VY
1033static void sctp_v4_pf_init(void)
1034{
1035 /* Initialize the SCTP specific PF functions. */
1036 sctp_register_pf(&sctp_pf_inet, PF_INET);
1037 sctp_register_af(&sctp_af_inet);
1038}
1039
1040static void sctp_v4_pf_exit(void)
1041{
1042 list_del(&sctp_af_inet.list);
1043}
1044
1045static int sctp_v4_protosw_init(void)
1046{
1047 int rc;
1048
1049 rc = proto_register(&sctp_prot, 1);
1050 if (rc)
1051 return rc;
1052
1053 /* Register SCTP(UDP and TCP style) with socket layer. */
1054 inet_register_protosw(&sctp_seqpacket_protosw);
1055 inet_register_protosw(&sctp_stream_protosw);
1056
1057 return 0;
1058}
1059
1060static void sctp_v4_protosw_exit(void)
1061{
1062 inet_unregister_protosw(&sctp_stream_protosw);
1063 inet_unregister_protosw(&sctp_seqpacket_protosw);
1064 proto_unregister(&sctp_prot);
1065}
1066
1067static int sctp_v4_add_protocol(void)
1068{
1069 /* Register notifier for inet address additions/deletions. */
1070 register_inetaddr_notifier(&sctp_inetaddr_notifier);
1071
1072 /* Register SCTP with inet layer. */
1073 if (inet_add_protocol(&sctp_protocol, IPPROTO_SCTP) < 0)
1074 return -EAGAIN;
1075
1076 return 0;
1077}
1078
1079static void sctp_v4_del_protocol(void)
1080{
1081 inet_del_protocol(&sctp_protocol, IPPROTO_SCTP);
1082 unregister_inetaddr_notifier(&sctp_inetaddr_notifier);
1083}
1084
1da177e4
LT
1085/* Initialize the universe into something sensible. */
1086SCTP_STATIC __init int sctp_init(void)
1087{
1088 int i;
1089 int status = -EINVAL;
1090 unsigned long goal;
4d93df0a 1091 unsigned long limit;
845525a6 1092 unsigned long nr_pages;
4d93df0a 1093 int max_share;
1da177e4
LT
1094 int order;
1095
1096 /* SCTP_DEBUG sanity check. */
1097 if (!sctp_sanity_check())
1098 goto out;
1099
827bf122 1100 /* Allocate bind_bucket and chunk caches. */
1da177e4
LT
1101 status = -ENOBUFS;
1102 sctp_bucket_cachep = kmem_cache_create("sctp_bind_bucket",
1103 sizeof(struct sctp_bind_bucket),
1104 0, SLAB_HWCACHE_ALIGN,
20c2df83 1105 NULL);
1da177e4 1106 if (!sctp_bucket_cachep)
827bf122 1107 goto out;
1da177e4
LT
1108
1109 sctp_chunk_cachep = kmem_cache_create("sctp_chunk",
1110 sizeof(struct sctp_chunk),
1111 0, SLAB_HWCACHE_ALIGN,
20c2df83 1112 NULL);
1da177e4
LT
1113 if (!sctp_chunk_cachep)
1114 goto err_chunk_cachep;
1115
1116 /* Allocate and initialise sctp mibs. */
1117 status = init_sctp_mibs();
1118 if (status)
1119 goto err_init_mibs;
1120
1121 /* Initialize proc fs directory. */
1122 status = sctp_proc_init();
1123 if (status)
1124 goto err_init_proc;
1125
1126 /* Initialize object count debugging. */
1127 sctp_dbg_objcnt_init();
1128
1da177e4
LT
1129 /*
1130 * 14. Suggested SCTP Protocol Parameter Values
1131 */
1132 /* The following protocol parameters are RECOMMENDED: */
1133 /* RTO.Initial - 3 seconds */
1134 sctp_rto_initial = SCTP_RTO_INITIAL;
1135 /* RTO.Min - 1 second */
1136 sctp_rto_min = SCTP_RTO_MIN;
1137 /* RTO.Max - 60 seconds */
1138 sctp_rto_max = SCTP_RTO_MAX;
1139 /* RTO.Alpha - 1/8 */
1140 sctp_rto_alpha = SCTP_RTO_ALPHA;
1141 /* RTO.Beta - 1/4 */
1142 sctp_rto_beta = SCTP_RTO_BETA;
1143
1144 /* Valid.Cookie.Life - 60 seconds */
3fd091e7 1145 sctp_valid_cookie_life = SCTP_DEFAULT_COOKIE_LIFE;
1da177e4
LT
1146
1147 /* Whether Cookie Preservative is enabled(1) or not(0) */
1148 sctp_cookie_preserve_enable = 1;
1149
1150 /* Max.Burst - 4 */
70331571 1151 sctp_max_burst = SCTP_DEFAULT_MAX_BURST;
1da177e4
LT
1152
1153 /* Association.Max.Retrans - 10 attempts
1154 * Path.Max.Retrans - 5 attempts (per destination address)
1155 * Max.Init.Retransmits - 8 attempts
1156 */
1157 sctp_max_retrans_association = 10;
1158 sctp_max_retrans_path = 5;
1159 sctp_max_retrans_init = 8;
1160
4eb701df
NH
1161 /* Sendbuffer growth - do per-socket accounting */
1162 sctp_sndbuf_policy = 0;
1163
049b3ff5
NH
1164 /* Rcvbuffer growth - do per-socket accounting */
1165 sctp_rcvbuf_policy = 0;
1166
1da177e4 1167 /* HB.interval - 30 seconds */
2f85a429
VY
1168 sctp_hb_interval = SCTP_DEFAULT_TIMEOUT_HEARTBEAT;
1169
1170 /* delayed SACK timeout */
1171 sctp_sack_timeout = SCTP_DEFAULT_TIMEOUT_SACK;
1da177e4
LT
1172
1173 /* Implementation specific variables. */
1174
1175 /* Initialize default stream count setup information. */
1176 sctp_max_instreams = SCTP_DEFAULT_INSTREAMS;
1177 sctp_max_outstreams = SCTP_DEFAULT_OUTSTREAMS;
1178
1179 /* Initialize handle used for association ids. */
1180 idr_init(&sctp_assocs_id);
1181
4d93df0a
NH
1182 /* Set the pressure threshold to be a fraction of global memory that
1183 * is up to 1/2 at 256 MB, decreasing toward zero with the amount of
1184 * memory, with a floor of 128 pages.
1185 * Note this initalizes the data in sctpv6_prot too
1186 * Unabashedly stolen from tcp_init
1187 */
845525a6
VY
1188 nr_pages = totalram_pages - totalhigh_pages;
1189 limit = min(nr_pages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT);
1190 limit = (limit * (nr_pages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11);
4d93df0a
NH
1191 limit = max(limit, 128UL);
1192 sysctl_sctp_mem[0] = limit / 4 * 3;
1193 sysctl_sctp_mem[1] = limit;
1194 sysctl_sctp_mem[2] = sysctl_sctp_mem[0] * 2;
1195
1196 /* Set per-socket limits to no more than 1/128 the pressure threshold*/
1197 limit = (sysctl_sctp_mem[1]) << (PAGE_SHIFT - 7);
1198 max_share = min(4UL*1024*1024, limit);
1199
845525a6 1200 sysctl_sctp_rmem[0] = SK_MEM_QUANTUM; /* give each asoc 1 page min */
4d93df0a
NH
1201 sysctl_sctp_rmem[1] = (1500 *(sizeof(struct sk_buff) + 1));
1202 sysctl_sctp_rmem[2] = max(sysctl_sctp_rmem[1], max_share);
1203
3ab224be 1204 sysctl_sctp_wmem[0] = SK_MEM_QUANTUM;
4d93df0a
NH
1205 sysctl_sctp_wmem[1] = 16*1024;
1206 sysctl_sctp_wmem[2] = max(64*1024, max_share);
1207
1da177e4
LT
1208 /* Size and allocate the association hash table.
1209 * The methodology is similar to that of the tcp hash tables.
1210 */
1211 if (num_physpages >= (128 * 1024))
1212 goal = num_physpages >> (22 - PAGE_SHIFT);
1213 else
1214 goal = num_physpages >> (24 - PAGE_SHIFT);
1215
1216 for (order = 0; (1UL << order) < goal; order++)
1217 ;
1218
1219 do {
1220 sctp_assoc_hashsize = (1UL << order) * PAGE_SIZE /
1221 sizeof(struct sctp_hashbucket);
1222 if ((sctp_assoc_hashsize > (64 * 1024)) && order > 0)
1223 continue;
1224 sctp_assoc_hashtable = (struct sctp_hashbucket *)
1225 __get_free_pages(GFP_ATOMIC, order);
1226 } while (!sctp_assoc_hashtable && --order > 0);
1227 if (!sctp_assoc_hashtable) {
1228 printk(KERN_ERR "SCTP: Failed association hash alloc.\n");
1229 status = -ENOMEM;
1230 goto err_ahash_alloc;
1231 }
1232 for (i = 0; i < sctp_assoc_hashsize; i++) {
1233 rwlock_init(&sctp_assoc_hashtable[i].lock);
d970dbf8 1234 INIT_HLIST_HEAD(&sctp_assoc_hashtable[i].chain);
1da177e4
LT
1235 }
1236
1237 /* Allocate and initialize the endpoint hash table. */
1238 sctp_ep_hashsize = 64;
1239 sctp_ep_hashtable = (struct sctp_hashbucket *)
1240 kmalloc(64 * sizeof(struct sctp_hashbucket), GFP_KERNEL);
1241 if (!sctp_ep_hashtable) {
1242 printk(KERN_ERR "SCTP: Failed endpoint_hash alloc.\n");
1243 status = -ENOMEM;
1244 goto err_ehash_alloc;
1245 }
1246 for (i = 0; i < sctp_ep_hashsize; i++) {
1247 rwlock_init(&sctp_ep_hashtable[i].lock);
d970dbf8 1248 INIT_HLIST_HEAD(&sctp_ep_hashtable[i].chain);
1da177e4
LT
1249 }
1250
1251 /* Allocate and initialize the SCTP port hash table. */
1252 do {
1253 sctp_port_hashsize = (1UL << order) * PAGE_SIZE /
1254 sizeof(struct sctp_bind_hashbucket);
1255 if ((sctp_port_hashsize > (64 * 1024)) && order > 0)
1256 continue;
1257 sctp_port_hashtable = (struct sctp_bind_hashbucket *)
1258 __get_free_pages(GFP_ATOMIC, order);
1259 } while (!sctp_port_hashtable && --order > 0);
1260 if (!sctp_port_hashtable) {
1261 printk(KERN_ERR "SCTP: Failed bind hash alloc.");
1262 status = -ENOMEM;
1263 goto err_bhash_alloc;
1264 }
1265 for (i = 0; i < sctp_port_hashsize; i++) {
1266 spin_lock_init(&sctp_port_hashtable[i].lock);
d970dbf8 1267 INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain);
1da177e4
LT
1268 }
1269
1da177e4
LT
1270 printk(KERN_INFO "SCTP: Hash tables configured "
1271 "(established %d bind %d)\n",
1272 sctp_assoc_hashsize, sctp_port_hashsize);
1273
1274 /* Disable ADDIP by default. */
1275 sctp_addip_enable = 0;
73d9c4fd 1276 sctp_addip_noauth = 0;
1da177e4
LT
1277
1278 /* Enable PR-SCTP by default. */
1279 sctp_prsctp_enable = 1;
1280
a29a5bd4
VY
1281 /* Disable AUTH by default. */
1282 sctp_auth_enable = 0;
1283
1da177e4
LT
1284 sctp_sysctl_register();
1285
1286 INIT_LIST_HEAD(&sctp_address_families);
270637ab
VY
1287 sctp_v4_pf_init();
1288 sctp_v6_pf_init();
1da177e4 1289
270637ab
VY
1290 /* Initialize the local address list. */
1291 INIT_LIST_HEAD(&sctp_local_addr_list);
1292 spin_lock_init(&sctp_local_addr_lock);
1293 sctp_get_local_addr_list();
827bf122 1294
270637ab 1295 status = sctp_v4_protosw_init();
827bf122 1296
1da177e4 1297 if (status)
270637ab
VY
1298 goto err_protosw_init;
1299
1300 status = sctp_v6_protosw_init();
1301 if (status)
1302 goto err_v6_protosw_init;
1da177e4
LT
1303
1304 /* Initialize the control inode/socket for handling OOTB packets. */
1305 if ((status = sctp_ctl_sock_init())) {
1306 printk (KERN_ERR
1307 "SCTP: Failed to initialize the SCTP control sock.\n");
1308 goto err_ctl_sock_init;
1309 }
1310
270637ab
VY
1311 status = sctp_v4_add_protocol();
1312 if (status)
827bf122 1313 goto err_add_protocol;
827bf122
SS
1314
1315 /* Register SCTP with inet6 layer. */
1316 status = sctp_v6_add_protocol();
1317 if (status)
1318 goto err_v6_add_protocol;
1319
1da177e4
LT
1320 status = 0;
1321out:
1322 return status;
827bf122 1323err_v6_add_protocol:
270637ab 1324 sctp_v6_del_protocol();
827bf122 1325err_add_protocol:
270637ab 1326 sctp_v4_del_protocol();
5677242f 1327 inet_ctl_sock_destroy(sctp_ctl_sock);
1da177e4 1328err_ctl_sock_init:
270637ab
VY
1329 sctp_v6_protosw_exit();
1330err_v6_protosw_init:
1331 sctp_v4_protosw_exit();
1332err_protosw_init:
1333 sctp_free_local_addr_list();
1334 sctp_v4_pf_exit();
1335 sctp_v6_pf_exit();
1da177e4 1336 sctp_sysctl_unregister();
15efbe76 1337 list_del(&sctp_af_inet.list);
1da177e4
LT
1338 free_pages((unsigned long)sctp_port_hashtable,
1339 get_order(sctp_port_hashsize *
1340 sizeof(struct sctp_bind_hashbucket)));
1341err_bhash_alloc:
1342 kfree(sctp_ep_hashtable);
1343err_ehash_alloc:
1344 free_pages((unsigned long)sctp_assoc_hashtable,
1345 get_order(sctp_assoc_hashsize *
1346 sizeof(struct sctp_hashbucket)));
1347err_ahash_alloc:
1348 sctp_dbg_objcnt_exit();
1da177e4 1349 sctp_proc_exit();
827bf122 1350err_init_proc:
1da177e4
LT
1351 cleanup_sctp_mibs();
1352err_init_mibs:
1353 kmem_cache_destroy(sctp_chunk_cachep);
1354err_chunk_cachep:
1355 kmem_cache_destroy(sctp_bucket_cachep);
1da177e4
LT
1356 goto out;
1357}
1358
1359/* Exit handler for the SCTP protocol. */
1360SCTP_STATIC __exit void sctp_exit(void)
1361{
1362 /* BUG. This should probably do something useful like clean
1363 * up all the remaining associations and all that memory.
1364 */
1365
827bf122
SS
1366 /* Unregister with inet6/inet layers. */
1367 sctp_v6_del_protocol();
270637ab 1368 sctp_v4_del_protocol();
1da177e4
LT
1369
1370 /* Free the control endpoint. */
5677242f 1371 inet_ctl_sock_destroy(sctp_ctl_sock);
1da177e4 1372
270637ab
VY
1373 /* Free protosw registrations */
1374 sctp_v6_protosw_exit();
1375 sctp_v4_protosw_exit();
1376
1377 /* Free the local address list. */
1378 sctp_free_local_addr_list();
827bf122
SS
1379
1380 /* Unregister with socket layer. */
270637ab
VY
1381 sctp_v6_pf_exit();
1382 sctp_v4_pf_exit();
827bf122 1383
1da177e4 1384 sctp_sysctl_unregister();
15efbe76 1385 list_del(&sctp_af_inet.list);
1da177e4
LT
1386
1387 free_pages((unsigned long)sctp_assoc_hashtable,
1388 get_order(sctp_assoc_hashsize *
1389 sizeof(struct sctp_hashbucket)));
1390 kfree(sctp_ep_hashtable);
1391 free_pages((unsigned long)sctp_port_hashtable,
1392 get_order(sctp_port_hashsize *
1393 sizeof(struct sctp_bind_hashbucket)));
1394
1da177e4
LT
1395 sctp_dbg_objcnt_exit();
1396 sctp_proc_exit();
1397 cleanup_sctp_mibs();
1398
827bf122
SS
1399 kmem_cache_destroy(sctp_chunk_cachep);
1400 kmem_cache_destroy(sctp_bucket_cachep);
1da177e4
LT
1401}
1402
1403module_init(sctp_init);
1404module_exit(sctp_exit);
1405
bb97d31f
ACM
1406/*
1407 * __stringify doesn't likes enums, so use IPPROTO_SCTP value (132) directly.
1408 */
1409MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-132");
882a382c 1410MODULE_ALIAS("net-pf-" __stringify(PF_INET6) "-proto-132");
1da177e4
LT
1411MODULE_AUTHOR("Linux Kernel SCTP developers <lksctp-developers@lists.sourceforge.net>");
1412MODULE_DESCRIPTION("Support for the SCTP protocol (RFC2960)");
1413MODULE_LICENSE("GPL");