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