1 /* SCTP kernel reference Implementation
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
9 * This file is part of the SCTP kernel reference Implementation
11 * Initialization/cleanup for SCTP protocol support.
13 * The SCTP reference implementation is free software;
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)
19 * The SCTP reference implementation is distributed in the hope that it
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.
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.
30 * Please send any bug reports or fixes you make to the
32 * lksctp developers <lksctp-developers@lists.sourceforge.net>
34 * Or submit a bug report through the following website:
35 * http://www.sf.net/projects/lksctp
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>
45 * Any bugs reported given to us we will try to fix... any fixes shared will
46 * be incorporated into the next SCTP release.
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>
54 #include <net/protocol.h>
57 #include <net/route.h>
58 #include <net/sctp/sctp.h>
59 #include <net/addrconf.h>
60 #include <net/inet_common.h>
61 #include <net/inet_ecn.h>
63 /* Global data structures. */
64 struct sctp_globals sctp_globals __read_mostly
;
65 struct proc_dir_entry
*proc_net_sctp
;
66 DEFINE_SNMP_STAT(struct sctp_mib
, sctp_statistics
) __read_mostly
;
68 struct idr sctp_assocs_id
;
69 DEFINE_SPINLOCK(sctp_assocs_id_lock
);
71 /* This is the global socket data structure used for responding to
72 * the Out-of-the-blue (OOTB) packets. A control sock will be created
73 * for this socket at the initialization time.
75 static struct socket
*sctp_ctl_socket
;
77 static struct sctp_pf
*sctp_pf_inet6_specific
;
78 static struct sctp_pf
*sctp_pf_inet_specific
;
79 static struct sctp_af
*sctp_af_v4_specific
;
80 static struct sctp_af
*sctp_af_v6_specific
;
82 struct kmem_cache
*sctp_chunk_cachep __read_mostly
;
83 struct kmem_cache
*sctp_bucket_cachep __read_mostly
;
85 /* Return the address of the control sock. */
86 struct sock
*sctp_get_ctl_sock(void)
88 return sctp_ctl_socket
->sk
;
91 /* Set up the proc fs entry for the SCTP protocol. */
92 static __init
int sctp_proc_init(void)
95 struct proc_dir_entry
*ent
;
96 ent
= proc_mkdir("net/sctp", NULL
);
98 ent
->owner
= THIS_MODULE
;
104 if (sctp_snmp_proc_init())
106 if (sctp_eps_proc_init())
108 if (sctp_assocs_proc_init())
117 /* Clean up the proc fs entry for the SCTP protocol.
118 * Note: Do not make this __exit as it is used in the init error
121 static void sctp_proc_exit(void)
123 sctp_snmp_proc_exit();
124 sctp_eps_proc_exit();
125 sctp_assocs_proc_exit();
128 proc_net_sctp
= NULL
;
129 remove_proc_entry("net/sctp", NULL
);
133 /* Private helper to extract ipv4 address and stash them in
134 * the protocol structure.
136 static void sctp_v4_copy_addrlist(struct list_head
*addrlist
,
137 struct net_device
*dev
)
139 struct in_device
*in_dev
;
140 struct in_ifaddr
*ifa
;
141 struct sctp_sockaddr_entry
*addr
;
144 if ((in_dev
= __in_dev_get_rcu(dev
)) == NULL
) {
149 for (ifa
= in_dev
->ifa_list
; ifa
; ifa
= ifa
->ifa_next
) {
150 /* Add the address to the local list. */
151 addr
= t_new(struct sctp_sockaddr_entry
, GFP_ATOMIC
);
153 addr
->a
.v4
.sin_family
= AF_INET
;
154 addr
->a
.v4
.sin_port
= 0;
155 addr
->a
.v4
.sin_addr
.s_addr
= ifa
->ifa_local
;
157 INIT_LIST_HEAD(&addr
->list
);
158 INIT_RCU_HEAD(&addr
->rcu
);
159 list_add_tail(&addr
->list
, addrlist
);
166 /* Extract our IP addresses from the system and stash them in the
167 * protocol structure.
169 static void sctp_get_local_addr_list(void)
171 struct net_device
*dev
;
172 struct list_head
*pos
;
175 read_lock(&dev_base_lock
);
176 for_each_netdev(dev
) {
177 __list_for_each(pos
, &sctp_address_families
) {
178 af
= list_entry(pos
, struct sctp_af
, list
);
179 af
->copy_addrlist(&sctp_local_addr_list
, dev
);
182 read_unlock(&dev_base_lock
);
185 /* Free the existing local addresses. */
186 static void sctp_free_local_addr_list(void)
188 struct sctp_sockaddr_entry
*addr
;
189 struct list_head
*pos
, *temp
;
191 list_for_each_safe(pos
, temp
, &sctp_local_addr_list
) {
192 addr
= list_entry(pos
, struct sctp_sockaddr_entry
, list
);
198 void sctp_local_addr_free(struct rcu_head
*head
)
200 struct sctp_sockaddr_entry
*e
= container_of(head
,
201 struct sctp_sockaddr_entry
, rcu
);
205 /* Copy the local addresses which are valid for 'scope' into 'bp'. */
206 int sctp_copy_local_addr_list(struct sctp_bind_addr
*bp
, sctp_scope_t scope
,
207 gfp_t gfp
, int copy_flags
)
209 struct sctp_sockaddr_entry
*addr
;
213 list_for_each_entry_rcu(addr
, &sctp_local_addr_list
, list
) {
216 if (sctp_in_scope(&addr
->a
, scope
)) {
217 /* Now that the address is in scope, check to see if
218 * the address type is really supported by the local
219 * sock as well as the remote peer.
221 if ((((AF_INET
== addr
->a
.sa
.sa_family
) &&
222 (copy_flags
& SCTP_ADDR4_PEERSUPP
))) ||
223 (((AF_INET6
== addr
->a
.sa
.sa_family
) &&
224 (copy_flags
& SCTP_ADDR6_ALLOWED
) &&
225 (copy_flags
& SCTP_ADDR6_PEERSUPP
)))) {
226 error
= sctp_add_bind_addr(bp
, &addr
->a
, 1,
239 /* Initialize a sctp_addr from in incoming skb. */
240 static void sctp_v4_from_skb(union sctp_addr
*addr
, struct sk_buff
*skb
,
247 port
= &addr
->v4
.sin_port
;
248 addr
->v4
.sin_family
= AF_INET
;
253 from
= &ip_hdr(skb
)->saddr
;
256 from
= &ip_hdr(skb
)->daddr
;
258 memcpy(&addr
->v4
.sin_addr
.s_addr
, from
, sizeof(struct in_addr
));
261 /* Initialize an sctp_addr from a socket. */
262 static void sctp_v4_from_sk(union sctp_addr
*addr
, struct sock
*sk
)
264 addr
->v4
.sin_family
= AF_INET
;
265 addr
->v4
.sin_port
= 0;
266 addr
->v4
.sin_addr
.s_addr
= inet_sk(sk
)->rcv_saddr
;
269 /* Initialize sk->sk_rcv_saddr from sctp_addr. */
270 static void sctp_v4_to_sk_saddr(union sctp_addr
*addr
, struct sock
*sk
)
272 inet_sk(sk
)->rcv_saddr
= addr
->v4
.sin_addr
.s_addr
;
275 /* Initialize sk->sk_daddr from sctp_addr. */
276 static void sctp_v4_to_sk_daddr(union sctp_addr
*addr
, struct sock
*sk
)
278 inet_sk(sk
)->daddr
= addr
->v4
.sin_addr
.s_addr
;
281 /* Initialize a sctp_addr from an address parameter. */
282 static void sctp_v4_from_addr_param(union sctp_addr
*addr
,
283 union sctp_addr_param
*param
,
284 __be16 port
, int iif
)
286 addr
->v4
.sin_family
= AF_INET
;
287 addr
->v4
.sin_port
= port
;
288 addr
->v4
.sin_addr
.s_addr
= param
->v4
.addr
.s_addr
;
291 /* Initialize an address parameter from a sctp_addr and return the length
292 * of the address parameter.
294 static int sctp_v4_to_addr_param(const union sctp_addr
*addr
,
295 union sctp_addr_param
*param
)
297 int length
= sizeof(sctp_ipv4addr_param_t
);
299 param
->v4
.param_hdr
.type
= SCTP_PARAM_IPV4_ADDRESS
;
300 param
->v4
.param_hdr
.length
= htons(length
);
301 param
->v4
.addr
.s_addr
= addr
->v4
.sin_addr
.s_addr
;
306 /* Initialize a sctp_addr from a dst_entry. */
307 static void sctp_v4_dst_saddr(union sctp_addr
*saddr
, struct dst_entry
*dst
,
310 struct rtable
*rt
= (struct rtable
*)dst
;
311 saddr
->v4
.sin_family
= AF_INET
;
312 saddr
->v4
.sin_port
= port
;
313 saddr
->v4
.sin_addr
.s_addr
= rt
->rt_src
;
316 /* Compare two addresses exactly. */
317 static int sctp_v4_cmp_addr(const union sctp_addr
*addr1
,
318 const union sctp_addr
*addr2
)
320 if (addr1
->sa
.sa_family
!= addr2
->sa
.sa_family
)
322 if (addr1
->v4
.sin_port
!= addr2
->v4
.sin_port
)
324 if (addr1
->v4
.sin_addr
.s_addr
!= addr2
->v4
.sin_addr
.s_addr
)
330 /* Initialize addr struct to INADDR_ANY. */
331 static void sctp_v4_inaddr_any(union sctp_addr
*addr
, __be16 port
)
333 addr
->v4
.sin_family
= AF_INET
;
334 addr
->v4
.sin_addr
.s_addr
= INADDR_ANY
;
335 addr
->v4
.sin_port
= port
;
338 /* Is this a wildcard address? */
339 static int sctp_v4_is_any(const union sctp_addr
*addr
)
341 return INADDR_ANY
== addr
->v4
.sin_addr
.s_addr
;
344 /* This function checks if the address is a valid address to be used for
348 * Return 0 - If the address is a non-unicast or an illegal address.
349 * Return 1 - If the address is a unicast.
351 static int sctp_v4_addr_valid(union sctp_addr
*addr
,
352 struct sctp_sock
*sp
,
353 const struct sk_buff
*skb
)
355 /* Is this a non-unicast address or a unusable SCTP address? */
356 if (IS_IPV4_UNUSABLE_ADDRESS(&addr
->v4
.sin_addr
.s_addr
))
359 /* Is this a broadcast address? */
360 if (skb
&& ((struct rtable
*)skb
->dst
)->rt_flags
& RTCF_BROADCAST
)
366 /* Should this be available for binding? */
367 static int sctp_v4_available(union sctp_addr
*addr
, struct sctp_sock
*sp
)
369 int ret
= inet_addr_type(addr
->v4
.sin_addr
.s_addr
);
372 if (addr
->v4
.sin_addr
.s_addr
!= INADDR_ANY
&&
374 !sp
->inet
.freebind
&&
375 !sysctl_ip_nonlocal_bind
)
381 /* Checking the loopback, private and other address scopes as defined in
382 * RFC 1918. The IPv4 scoping is based on the draft for SCTP IPv4
383 * scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
385 * Level 0 - unusable SCTP addresses
386 * Level 1 - loopback address
387 * Level 2 - link-local addresses
388 * Level 3 - private addresses.
389 * Level 4 - global addresses
390 * For INIT and INIT-ACK address list, let L be the level of
391 * of requested destination address, sender and receiver
392 * SHOULD include all of its addresses with level greater
393 * than or equal to L.
395 static sctp_scope_t
sctp_v4_scope(union sctp_addr
*addr
)
399 /* Should IPv4 scoping be a sysctl configurable option
400 * so users can turn it off (default on) for certain
401 * unconventional networking environments?
404 /* Check for unusable SCTP addresses. */
405 if (IS_IPV4_UNUSABLE_ADDRESS(&addr
->v4
.sin_addr
.s_addr
)) {
406 retval
= SCTP_SCOPE_UNUSABLE
;
407 } else if (LOOPBACK(addr
->v4
.sin_addr
.s_addr
)) {
408 retval
= SCTP_SCOPE_LOOPBACK
;
409 } else if (IS_IPV4_LINK_ADDRESS(&addr
->v4
.sin_addr
.s_addr
)) {
410 retval
= SCTP_SCOPE_LINK
;
411 } else if (IS_IPV4_PRIVATE_ADDRESS(&addr
->v4
.sin_addr
.s_addr
)) {
412 retval
= SCTP_SCOPE_PRIVATE
;
414 retval
= SCTP_SCOPE_GLOBAL
;
420 /* Returns a valid dst cache entry for the given source and destination ip
421 * addresses. If an association is passed, trys to get a dst entry with a
422 * source address that matches an address in the bind address list.
424 static struct dst_entry
*sctp_v4_get_dst(struct sctp_association
*asoc
,
425 union sctp_addr
*daddr
,
426 union sctp_addr
*saddr
)
430 struct sctp_bind_addr
*bp
;
431 struct sctp_sockaddr_entry
*laddr
;
432 struct dst_entry
*dst
= NULL
;
433 union sctp_addr dst_saddr
;
435 memset(&fl
, 0x0, sizeof(struct flowi
));
436 fl
.fl4_dst
= daddr
->v4
.sin_addr
.s_addr
;
437 fl
.proto
= IPPROTO_SCTP
;
439 fl
.fl4_tos
= RT_CONN_FLAGS(asoc
->base
.sk
);
440 fl
.oif
= asoc
->base
.sk
->sk_bound_dev_if
;
443 fl
.fl4_src
= saddr
->v4
.sin_addr
.s_addr
;
445 SCTP_DEBUG_PRINTK("%s: DST:%u.%u.%u.%u, SRC:%u.%u.%u.%u - ",
446 __FUNCTION__
, NIPQUAD(fl
.fl4_dst
),
447 NIPQUAD(fl
.fl4_src
));
449 if (!ip_route_output_key(&rt
, &fl
)) {
453 /* If there is no association or if a source address is passed, no
454 * more validation is required.
459 bp
= &asoc
->base
.bind_addr
;
462 /* Walk through the bind address list and look for a bind
463 * address that matches the source address of the returned dst.
466 list_for_each_entry_rcu(laddr
, &bp
->address_list
, list
) {
467 if (!laddr
->valid
|| !laddr
->use_as_src
)
469 sctp_v4_dst_saddr(&dst_saddr
, dst
, htons(bp
->port
));
470 if (sctp_v4_cmp_addr(&dst_saddr
, &laddr
->a
))
475 /* None of the bound addresses match the source address of the
476 * dst. So release it.
482 /* Walk through the bind address list and try to get a dst that
483 * matches a bind address as the source address.
486 list_for_each_entry_rcu(laddr
, &bp
->address_list
, list
) {
489 if ((laddr
->use_as_src
) &&
490 (AF_INET
== laddr
->a
.sa
.sa_family
)) {
491 fl
.fl4_src
= laddr
->a
.v4
.sin_addr
.s_addr
;
492 if (!ip_route_output_key(&rt
, &fl
)) {
503 SCTP_DEBUG_PRINTK("rt_dst:%u.%u.%u.%u, rt_src:%u.%u.%u.%u\n",
504 NIPQUAD(rt
->rt_dst
), NIPQUAD(rt
->rt_src
));
506 SCTP_DEBUG_PRINTK("NO ROUTE\n");
511 /* For v4, the source address is cached in the route entry(dst). So no need
512 * to cache it separately and hence this is an empty routine.
514 static void sctp_v4_get_saddr(struct sctp_association
*asoc
,
515 struct dst_entry
*dst
,
516 union sctp_addr
*daddr
,
517 union sctp_addr
*saddr
)
519 struct rtable
*rt
= (struct rtable
*)dst
;
525 saddr
->v4
.sin_family
= AF_INET
;
526 saddr
->v4
.sin_port
= htons(asoc
->base
.bind_addr
.port
);
527 saddr
->v4
.sin_addr
.s_addr
= rt
->rt_src
;
531 /* What interface did this skb arrive on? */
532 static int sctp_v4_skb_iif(const struct sk_buff
*skb
)
534 return ((struct rtable
*)skb
->dst
)->rt_iif
;
537 /* Was this packet marked by Explicit Congestion Notification? */
538 static int sctp_v4_is_ce(const struct sk_buff
*skb
)
540 return INET_ECN_is_ce(ip_hdr(skb
)->tos
);
543 /* Create and initialize a new sk for the socket returned by accept(). */
544 static struct sock
*sctp_v4_create_accept_sk(struct sock
*sk
,
545 struct sctp_association
*asoc
)
547 struct inet_sock
*inet
= inet_sk(sk
);
548 struct inet_sock
*newinet
;
549 struct sock
*newsk
= sk_alloc(PF_INET
, GFP_KERNEL
, sk
->sk_prot
, 1);
554 sock_init_data(NULL
, newsk
);
556 newsk
->sk_type
= SOCK_STREAM
;
558 newsk
->sk_no_check
= sk
->sk_no_check
;
559 newsk
->sk_reuse
= sk
->sk_reuse
;
560 newsk
->sk_shutdown
= sk
->sk_shutdown
;
562 newsk
->sk_destruct
= inet_sock_destruct
;
563 newsk
->sk_family
= PF_INET
;
564 newsk
->sk_protocol
= IPPROTO_SCTP
;
565 newsk
->sk_backlog_rcv
= sk
->sk_prot
->backlog_rcv
;
566 sock_reset_flag(newsk
, SOCK_ZAPPED
);
568 newinet
= inet_sk(newsk
);
570 /* Initialize sk's sport, dport, rcv_saddr and daddr for
571 * getsockname() and getpeername()
573 newinet
->sport
= inet
->sport
;
574 newinet
->saddr
= inet
->saddr
;
575 newinet
->rcv_saddr
= inet
->rcv_saddr
;
576 newinet
->dport
= htons(asoc
->peer
.port
);
577 newinet
->daddr
= asoc
->peer
.primary_addr
.v4
.sin_addr
.s_addr
;
578 newinet
->pmtudisc
= inet
->pmtudisc
;
579 newinet
->id
= asoc
->next_tsn
^ jiffies
;
581 newinet
->uc_ttl
= -1;
582 newinet
->mc_loop
= 1;
584 newinet
->mc_index
= 0;
585 newinet
->mc_list
= NULL
;
587 sk_refcnt_debug_inc(newsk
);
589 if (newsk
->sk_prot
->init(newsk
)) {
590 sk_common_release(newsk
);
598 /* Map address, empty for v4 family */
599 static void sctp_v4_addr_v4map(struct sctp_sock
*sp
, union sctp_addr
*addr
)
604 /* Dump the v4 addr to the seq file. */
605 static void sctp_v4_seq_dump_addr(struct seq_file
*seq
, union sctp_addr
*addr
)
607 seq_printf(seq
, "%d.%d.%d.%d ", NIPQUAD(addr
->v4
.sin_addr
));
610 /* Event handler for inet address addition/deletion events.
611 * The sctp_local_addr_list needs to be protocted by a spin lock since
612 * multiple notifiers (say IPv4 and IPv6) may be running at the same
613 * time and thus corrupt the list.
614 * The reader side is protected with RCU.
616 static int sctp_inetaddr_event(struct notifier_block
*this, unsigned long ev
,
619 struct in_ifaddr
*ifa
= (struct in_ifaddr
*)ptr
;
620 struct sctp_sockaddr_entry
*addr
= NULL
;
621 struct sctp_sockaddr_entry
*temp
;
625 addr
= kmalloc(sizeof(struct sctp_sockaddr_entry
), GFP_ATOMIC
);
627 addr
->a
.v4
.sin_family
= AF_INET
;
628 addr
->a
.v4
.sin_port
= 0;
629 addr
->a
.v4
.sin_addr
.s_addr
= ifa
->ifa_local
;
631 spin_lock_bh(&sctp_local_addr_lock
);
632 list_add_tail_rcu(&addr
->list
, &sctp_local_addr_list
);
633 spin_unlock_bh(&sctp_local_addr_lock
);
637 spin_lock_bh(&sctp_local_addr_lock
);
638 list_for_each_entry_safe(addr
, temp
,
639 &sctp_local_addr_list
, list
) {
640 if (addr
->a
.v4
.sin_addr
.s_addr
== ifa
->ifa_local
) {
642 list_del_rcu(&addr
->list
);
646 spin_unlock_bh(&sctp_local_addr_lock
);
647 if (addr
&& !addr
->valid
)
648 call_rcu(&addr
->rcu
, sctp_local_addr_free
);
656 * Initialize the control inode/socket with a control endpoint data
657 * structure. This endpoint is reserved exclusively for the OOTB processing.
659 static int sctp_ctl_sock_init(void)
664 if (sctp_get_pf_specific(PF_INET6
))
669 err
= sock_create_kern(family
, SOCK_SEQPACKET
, IPPROTO_SCTP
,
673 "SCTP: Failed to create the SCTP control socket.\n");
676 sctp_ctl_socket
->sk
->sk_allocation
= GFP_ATOMIC
;
677 inet_sk(sctp_ctl_socket
->sk
)->uc_ttl
= -1;
682 /* Register address family specific functions. */
683 int sctp_register_af(struct sctp_af
*af
)
685 switch (af
->sa_family
) {
687 if (sctp_af_v4_specific
)
689 sctp_af_v4_specific
= af
;
692 if (sctp_af_v6_specific
)
694 sctp_af_v6_specific
= af
;
700 INIT_LIST_HEAD(&af
->list
);
701 list_add_tail(&af
->list
, &sctp_address_families
);
705 /* Get the table of functions for manipulating a particular address
708 struct sctp_af
*sctp_get_af_specific(sa_family_t family
)
712 return sctp_af_v4_specific
;
714 return sctp_af_v6_specific
;
720 /* Common code to initialize a AF_INET msg_name. */
721 static void sctp_inet_msgname(char *msgname
, int *addr_len
)
723 struct sockaddr_in
*sin
;
725 sin
= (struct sockaddr_in
*)msgname
;
726 *addr_len
= sizeof(struct sockaddr_in
);
727 sin
->sin_family
= AF_INET
;
728 memset(sin
->sin_zero
, 0, sizeof(sin
->sin_zero
));
731 /* Copy the primary address of the peer primary address as the msg_name. */
732 static void sctp_inet_event_msgname(struct sctp_ulpevent
*event
, char *msgname
,
735 struct sockaddr_in
*sin
, *sinfrom
;
738 struct sctp_association
*asoc
;
741 sctp_inet_msgname(msgname
, addr_len
);
742 sin
= (struct sockaddr_in
*)msgname
;
743 sinfrom
= &asoc
->peer
.primary_addr
.v4
;
744 sin
->sin_port
= htons(asoc
->peer
.port
);
745 sin
->sin_addr
.s_addr
= sinfrom
->sin_addr
.s_addr
;
749 /* Initialize and copy out a msgname from an inbound skb. */
750 static void sctp_inet_skb_msgname(struct sk_buff
*skb
, char *msgname
, int *len
)
753 struct sctphdr
*sh
= sctp_hdr(skb
);
754 struct sockaddr_in
*sin
= (struct sockaddr_in
*)msgname
;
756 sctp_inet_msgname(msgname
, len
);
757 sin
->sin_port
= sh
->source
;
758 sin
->sin_addr
.s_addr
= ip_hdr(skb
)->saddr
;
762 /* Do we support this AF? */
763 static int sctp_inet_af_supported(sa_family_t family
, struct sctp_sock
*sp
)
765 /* PF_INET only supports AF_INET addresses. */
766 return (AF_INET
== family
);
769 /* Address matching with wildcards allowed. */
770 static int sctp_inet_cmp_addr(const union sctp_addr
*addr1
,
771 const union sctp_addr
*addr2
,
772 struct sctp_sock
*opt
)
774 /* PF_INET only supports AF_INET addresses. */
775 if (addr1
->sa
.sa_family
!= addr2
->sa
.sa_family
)
777 if (INADDR_ANY
== addr1
->v4
.sin_addr
.s_addr
||
778 INADDR_ANY
== addr2
->v4
.sin_addr
.s_addr
)
780 if (addr1
->v4
.sin_addr
.s_addr
== addr2
->v4
.sin_addr
.s_addr
)
786 /* Verify that provided sockaddr looks bindable. Common verification has
787 * already been taken care of.
789 static int sctp_inet_bind_verify(struct sctp_sock
*opt
, union sctp_addr
*addr
)
791 return sctp_v4_available(addr
, opt
);
794 /* Verify that sockaddr looks sendable. Common verification has already
795 * been taken care of.
797 static int sctp_inet_send_verify(struct sctp_sock
*opt
, union sctp_addr
*addr
)
802 /* Fill in Supported Address Type information for INIT and INIT-ACK
803 * chunks. Returns number of addresses supported.
805 static int sctp_inet_supported_addrs(const struct sctp_sock
*opt
,
808 types
[0] = SCTP_PARAM_IPV4_ADDRESS
;
812 /* Wrapper routine that calls the ip transmit routine. */
813 static inline int sctp_v4_xmit(struct sk_buff
*skb
,
814 struct sctp_transport
*transport
, int ipfragok
)
816 SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, "
817 "src:%u.%u.%u.%u, dst:%u.%u.%u.%u\n",
818 __FUNCTION__
, skb
, skb
->len
,
819 NIPQUAD(((struct rtable
*)skb
->dst
)->rt_src
),
820 NIPQUAD(((struct rtable
*)skb
->dst
)->rt_dst
));
822 SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS
);
823 return ip_queue_xmit(skb
, ipfragok
);
826 static struct sctp_af sctp_ipv4_specific
;
828 static struct sctp_pf sctp_pf_inet
= {
829 .event_msgname
= sctp_inet_event_msgname
,
830 .skb_msgname
= sctp_inet_skb_msgname
,
831 .af_supported
= sctp_inet_af_supported
,
832 .cmp_addr
= sctp_inet_cmp_addr
,
833 .bind_verify
= sctp_inet_bind_verify
,
834 .send_verify
= sctp_inet_send_verify
,
835 .supported_addrs
= sctp_inet_supported_addrs
,
836 .create_accept_sk
= sctp_v4_create_accept_sk
,
837 .addr_v4map
= sctp_v4_addr_v4map
,
838 .af
= &sctp_ipv4_specific
,
841 /* Notifier for inetaddr addition/deletion events. */
842 static struct notifier_block sctp_inetaddr_notifier
= {
843 .notifier_call
= sctp_inetaddr_event
,
846 /* Socket operations. */
847 static const struct proto_ops inet_seqpacket_ops
= {
849 .owner
= THIS_MODULE
,
850 .release
= inet_release
, /* Needs to be wrapped... */
852 .connect
= inet_dgram_connect
,
853 .socketpair
= sock_no_socketpair
,
854 .accept
= inet_accept
,
855 .getname
= inet_getname
, /* Semantics are different. */
858 .listen
= sctp_inet_listen
,
859 .shutdown
= inet_shutdown
, /* Looks harmless. */
860 .setsockopt
= sock_common_setsockopt
, /* IP_SOL IP_OPTION is a problem */
861 .getsockopt
= sock_common_getsockopt
,
862 .sendmsg
= inet_sendmsg
,
863 .recvmsg
= sock_common_recvmsg
,
864 .mmap
= sock_no_mmap
,
865 .sendpage
= sock_no_sendpage
,
867 .compat_setsockopt
= compat_sock_common_setsockopt
,
868 .compat_getsockopt
= compat_sock_common_getsockopt
,
872 /* Registration with AF_INET family. */
873 static struct inet_protosw sctp_seqpacket_protosw
= {
874 .type
= SOCK_SEQPACKET
,
875 .protocol
= IPPROTO_SCTP
,
877 .ops
= &inet_seqpacket_ops
,
880 .flags
= SCTP_PROTOSW_FLAG
882 static struct inet_protosw sctp_stream_protosw
= {
884 .protocol
= IPPROTO_SCTP
,
886 .ops
= &inet_seqpacket_ops
,
889 .flags
= SCTP_PROTOSW_FLAG
892 /* Register with IP layer. */
893 static struct net_protocol sctp_protocol
= {
895 .err_handler
= sctp_v4_err
,
899 /* IPv4 address related functions. */
900 static struct sctp_af sctp_ipv4_specific
= {
901 .sa_family
= AF_INET
,
902 .sctp_xmit
= sctp_v4_xmit
,
903 .setsockopt
= ip_setsockopt
,
904 .getsockopt
= ip_getsockopt
,
905 .get_dst
= sctp_v4_get_dst
,
906 .get_saddr
= sctp_v4_get_saddr
,
907 .copy_addrlist
= sctp_v4_copy_addrlist
,
908 .from_skb
= sctp_v4_from_skb
,
909 .from_sk
= sctp_v4_from_sk
,
910 .to_sk_saddr
= sctp_v4_to_sk_saddr
,
911 .to_sk_daddr
= sctp_v4_to_sk_daddr
,
912 .from_addr_param
= sctp_v4_from_addr_param
,
913 .to_addr_param
= sctp_v4_to_addr_param
,
914 .dst_saddr
= sctp_v4_dst_saddr
,
915 .cmp_addr
= sctp_v4_cmp_addr
,
916 .addr_valid
= sctp_v4_addr_valid
,
917 .inaddr_any
= sctp_v4_inaddr_any
,
918 .is_any
= sctp_v4_is_any
,
919 .available
= sctp_v4_available
,
920 .scope
= sctp_v4_scope
,
921 .skb_iif
= sctp_v4_skb_iif
,
922 .is_ce
= sctp_v4_is_ce
,
923 .seq_dump_addr
= sctp_v4_seq_dump_addr
,
924 .net_header_len
= sizeof(struct iphdr
),
925 .sockaddr_len
= sizeof(struct sockaddr_in
),
927 .compat_setsockopt
= compat_ip_setsockopt
,
928 .compat_getsockopt
= compat_ip_getsockopt
,
932 struct sctp_pf
*sctp_get_pf_specific(sa_family_t family
) {
936 return sctp_pf_inet_specific
;
938 return sctp_pf_inet6_specific
;
944 /* Register the PF specific function table. */
945 int sctp_register_pf(struct sctp_pf
*pf
, sa_family_t family
)
949 if (sctp_pf_inet_specific
)
951 sctp_pf_inet_specific
= pf
;
954 if (sctp_pf_inet6_specific
)
956 sctp_pf_inet6_specific
= pf
;
964 static int __init
init_sctp_mibs(void)
966 sctp_statistics
[0] = alloc_percpu(struct sctp_mib
);
967 if (!sctp_statistics
[0])
969 sctp_statistics
[1] = alloc_percpu(struct sctp_mib
);
970 if (!sctp_statistics
[1]) {
971 free_percpu(sctp_statistics
[0]);
978 static void cleanup_sctp_mibs(void)
980 free_percpu(sctp_statistics
[0]);
981 free_percpu(sctp_statistics
[1]);
984 /* Initialize the universe into something sensible. */
985 SCTP_STATIC __init
int sctp_init(void)
988 int status
= -EINVAL
;
992 /* SCTP_DEBUG sanity check. */
993 if (!sctp_sanity_check())
996 /* Allocate bind_bucket and chunk caches. */
998 sctp_bucket_cachep
= kmem_cache_create("sctp_bind_bucket",
999 sizeof(struct sctp_bind_bucket
),
1000 0, SLAB_HWCACHE_ALIGN
,
1002 if (!sctp_bucket_cachep
)
1005 sctp_chunk_cachep
= kmem_cache_create("sctp_chunk",
1006 sizeof(struct sctp_chunk
),
1007 0, SLAB_HWCACHE_ALIGN
,
1009 if (!sctp_chunk_cachep
)
1010 goto err_chunk_cachep
;
1012 /* Allocate and initialise sctp mibs. */
1013 status
= init_sctp_mibs();
1017 /* Initialize proc fs directory. */
1018 status
= sctp_proc_init();
1022 /* Initialize object count debugging. */
1023 sctp_dbg_objcnt_init();
1025 /* Initialize the SCTP specific PF functions. */
1026 sctp_register_pf(&sctp_pf_inet
, PF_INET
);
1028 * 14. Suggested SCTP Protocol Parameter Values
1030 /* The following protocol parameters are RECOMMENDED: */
1031 /* RTO.Initial - 3 seconds */
1032 sctp_rto_initial
= SCTP_RTO_INITIAL
;
1033 /* RTO.Min - 1 second */
1034 sctp_rto_min
= SCTP_RTO_MIN
;
1035 /* RTO.Max - 60 seconds */
1036 sctp_rto_max
= SCTP_RTO_MAX
;
1037 /* RTO.Alpha - 1/8 */
1038 sctp_rto_alpha
= SCTP_RTO_ALPHA
;
1039 /* RTO.Beta - 1/4 */
1040 sctp_rto_beta
= SCTP_RTO_BETA
;
1042 /* Valid.Cookie.Life - 60 seconds */
1043 sctp_valid_cookie_life
= SCTP_DEFAULT_COOKIE_LIFE
;
1045 /* Whether Cookie Preservative is enabled(1) or not(0) */
1046 sctp_cookie_preserve_enable
= 1;
1049 sctp_max_burst
= SCTP_DEFAULT_MAX_BURST
;
1051 /* Association.Max.Retrans - 10 attempts
1052 * Path.Max.Retrans - 5 attempts (per destination address)
1053 * Max.Init.Retransmits - 8 attempts
1055 sctp_max_retrans_association
= 10;
1056 sctp_max_retrans_path
= 5;
1057 sctp_max_retrans_init
= 8;
1059 /* Sendbuffer growth - do per-socket accounting */
1060 sctp_sndbuf_policy
= 0;
1062 /* Rcvbuffer growth - do per-socket accounting */
1063 sctp_rcvbuf_policy
= 0;
1065 /* HB.interval - 30 seconds */
1066 sctp_hb_interval
= SCTP_DEFAULT_TIMEOUT_HEARTBEAT
;
1068 /* delayed SACK timeout */
1069 sctp_sack_timeout
= SCTP_DEFAULT_TIMEOUT_SACK
;
1071 /* Implementation specific variables. */
1073 /* Initialize default stream count setup information. */
1074 sctp_max_instreams
= SCTP_DEFAULT_INSTREAMS
;
1075 sctp_max_outstreams
= SCTP_DEFAULT_OUTSTREAMS
;
1077 /* Initialize handle used for association ids. */
1078 idr_init(&sctp_assocs_id
);
1080 /* Size and allocate the association hash table.
1081 * The methodology is similar to that of the tcp hash tables.
1083 if (num_physpages
>= (128 * 1024))
1084 goal
= num_physpages
>> (22 - PAGE_SHIFT
);
1086 goal
= num_physpages
>> (24 - PAGE_SHIFT
);
1088 for (order
= 0; (1UL << order
) < goal
; order
++)
1092 sctp_assoc_hashsize
= (1UL << order
) * PAGE_SIZE
/
1093 sizeof(struct sctp_hashbucket
);
1094 if ((sctp_assoc_hashsize
> (64 * 1024)) && order
> 0)
1096 sctp_assoc_hashtable
= (struct sctp_hashbucket
*)
1097 __get_free_pages(GFP_ATOMIC
, order
);
1098 } while (!sctp_assoc_hashtable
&& --order
> 0);
1099 if (!sctp_assoc_hashtable
) {
1100 printk(KERN_ERR
"SCTP: Failed association hash alloc.\n");
1102 goto err_ahash_alloc
;
1104 for (i
= 0; i
< sctp_assoc_hashsize
; i
++) {
1105 rwlock_init(&sctp_assoc_hashtable
[i
].lock
);
1106 sctp_assoc_hashtable
[i
].chain
= NULL
;
1109 /* Allocate and initialize the endpoint hash table. */
1110 sctp_ep_hashsize
= 64;
1111 sctp_ep_hashtable
= (struct sctp_hashbucket
*)
1112 kmalloc(64 * sizeof(struct sctp_hashbucket
), GFP_KERNEL
);
1113 if (!sctp_ep_hashtable
) {
1114 printk(KERN_ERR
"SCTP: Failed endpoint_hash alloc.\n");
1116 goto err_ehash_alloc
;
1118 for (i
= 0; i
< sctp_ep_hashsize
; i
++) {
1119 rwlock_init(&sctp_ep_hashtable
[i
].lock
);
1120 sctp_ep_hashtable
[i
].chain
= NULL
;
1123 /* Allocate and initialize the SCTP port hash table. */
1125 sctp_port_hashsize
= (1UL << order
) * PAGE_SIZE
/
1126 sizeof(struct sctp_bind_hashbucket
);
1127 if ((sctp_port_hashsize
> (64 * 1024)) && order
> 0)
1129 sctp_port_hashtable
= (struct sctp_bind_hashbucket
*)
1130 __get_free_pages(GFP_ATOMIC
, order
);
1131 } while (!sctp_port_hashtable
&& --order
> 0);
1132 if (!sctp_port_hashtable
) {
1133 printk(KERN_ERR
"SCTP: Failed bind hash alloc.");
1135 goto err_bhash_alloc
;
1137 for (i
= 0; i
< sctp_port_hashsize
; i
++) {
1138 spin_lock_init(&sctp_port_hashtable
[i
].lock
);
1139 sctp_port_hashtable
[i
].chain
= NULL
;
1142 spin_lock_init(&sctp_port_alloc_lock
);
1143 sctp_port_rover
= sysctl_local_port_range
[0] - 1;
1145 printk(KERN_INFO
"SCTP: Hash tables configured "
1146 "(established %d bind %d)\n",
1147 sctp_assoc_hashsize
, sctp_port_hashsize
);
1149 /* Disable ADDIP by default. */
1150 sctp_addip_enable
= 0;
1152 /* Enable PR-SCTP by default. */
1153 sctp_prsctp_enable
= 1;
1155 sctp_sysctl_register();
1157 INIT_LIST_HEAD(&sctp_address_families
);
1158 sctp_register_af(&sctp_ipv4_specific
);
1160 status
= proto_register(&sctp_prot
, 1);
1162 goto err_proto_register
;
1164 /* Register SCTP(UDP and TCP style) with socket layer. */
1165 inet_register_protosw(&sctp_seqpacket_protosw
);
1166 inet_register_protosw(&sctp_stream_protosw
);
1168 status
= sctp_v6_init();
1172 /* Initialize the control inode/socket for handling OOTB packets. */
1173 if ((status
= sctp_ctl_sock_init())) {
1175 "SCTP: Failed to initialize the SCTP control sock.\n");
1176 goto err_ctl_sock_init
;
1179 /* Initialize the local address list. */
1180 INIT_LIST_HEAD(&sctp_local_addr_list
);
1181 spin_lock_init(&sctp_local_addr_lock
);
1182 sctp_get_local_addr_list();
1184 /* Register notifier for inet address additions/deletions. */
1185 register_inetaddr_notifier(&sctp_inetaddr_notifier
);
1187 /* Register SCTP with inet layer. */
1188 if (inet_add_protocol(&sctp_protocol
, IPPROTO_SCTP
) < 0) {
1190 goto err_add_protocol
;
1193 /* Register SCTP with inet6 layer. */
1194 status
= sctp_v6_add_protocol();
1196 goto err_v6_add_protocol
;
1198 __unsafe(THIS_MODULE
);
1202 err_v6_add_protocol
:
1203 inet_del_protocol(&sctp_protocol
, IPPROTO_SCTP
);
1204 unregister_inetaddr_notifier(&sctp_inetaddr_notifier
);
1206 sctp_free_local_addr_list();
1207 sock_release(sctp_ctl_socket
);
1211 inet_unregister_protosw(&sctp_stream_protosw
);
1212 inet_unregister_protosw(&sctp_seqpacket_protosw
);
1213 proto_unregister(&sctp_prot
);
1215 sctp_sysctl_unregister();
1216 list_del(&sctp_ipv4_specific
.list
);
1217 free_pages((unsigned long)sctp_port_hashtable
,
1218 get_order(sctp_port_hashsize
*
1219 sizeof(struct sctp_bind_hashbucket
)));
1221 kfree(sctp_ep_hashtable
);
1223 free_pages((unsigned long)sctp_assoc_hashtable
,
1224 get_order(sctp_assoc_hashsize
*
1225 sizeof(struct sctp_hashbucket
)));
1227 sctp_dbg_objcnt_exit();
1230 cleanup_sctp_mibs();
1232 kmem_cache_destroy(sctp_chunk_cachep
);
1234 kmem_cache_destroy(sctp_bucket_cachep
);
1238 /* Exit handler for the SCTP protocol. */
1239 SCTP_STATIC __exit
void sctp_exit(void)
1241 /* BUG. This should probably do something useful like clean
1242 * up all the remaining associations and all that memory.
1245 /* Unregister with inet6/inet layers. */
1246 sctp_v6_del_protocol();
1247 inet_del_protocol(&sctp_protocol
, IPPROTO_SCTP
);
1249 /* Unregister notifier for inet address additions/deletions. */
1250 unregister_inetaddr_notifier(&sctp_inetaddr_notifier
);
1252 /* Free the local address list. */
1253 sctp_free_local_addr_list();
1255 /* Free the control endpoint. */
1256 sock_release(sctp_ctl_socket
);
1258 /* Cleanup v6 initializations. */
1261 /* Unregister with socket layer. */
1262 inet_unregister_protosw(&sctp_stream_protosw
);
1263 inet_unregister_protosw(&sctp_seqpacket_protosw
);
1265 sctp_sysctl_unregister();
1266 list_del(&sctp_ipv4_specific
.list
);
1268 free_pages((unsigned long)sctp_assoc_hashtable
,
1269 get_order(sctp_assoc_hashsize
*
1270 sizeof(struct sctp_hashbucket
)));
1271 kfree(sctp_ep_hashtable
);
1272 free_pages((unsigned long)sctp_port_hashtable
,
1273 get_order(sctp_port_hashsize
*
1274 sizeof(struct sctp_bind_hashbucket
)));
1276 sctp_dbg_objcnt_exit();
1278 cleanup_sctp_mibs();
1280 kmem_cache_destroy(sctp_chunk_cachep
);
1281 kmem_cache_destroy(sctp_bucket_cachep
);
1283 proto_unregister(&sctp_prot
);
1286 module_init(sctp_init
);
1287 module_exit(sctp_exit
);
1290 * __stringify doesn't likes enums, so use IPPROTO_SCTP value (132) directly.
1292 MODULE_ALIAS("net-pf-" __stringify(PF_INET
) "-proto-132");
1293 MODULE_ALIAS("net-pf-" __stringify(PF_INET6
) "-proto-132");
1294 MODULE_AUTHOR("Linux Kernel SCTP developers <lksctp-developers@lists.sourceforge.net>");
1295 MODULE_DESCRIPTION("Support for the SCTP protocol (RFC2960)");
1296 MODULE_LICENSE("GPL");