blob: cdd881142f2c89fbf747099003b96600ba544aee [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * Initialization/cleanup for SCTP protocol support.
12 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050013 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * you can redistribute it and/or modify it under the terms of
15 * the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050019 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
21 * ************************
22 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 * See the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
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>
Neil Horman4d93df02007-08-15 16:07:44 -070054#include <linux/bootmem.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020055#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <net/protocol.h>
57#include <net/ip.h>
58#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020059#include <net/route.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <net/sctp/sctp.h>
61#include <net/addrconf.h>
62#include <net/inet_common.h>
63#include <net/inet_ecn.h>
64
65/* Global data structures. */
Brian Haley4cbf1ca2006-09-18 00:04:22 -070066struct sctp_globals sctp_globals __read_mostly;
Eric Dumazetba899662005-08-26 12:05:31 -070067DEFINE_SNMP_STAT(struct sctp_mib, sctp_statistics) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Florian Westphalc4e85f82008-07-18 23:03:44 -070069#ifdef CONFIG_PROC_FS
70struct proc_dir_entry *proc_net_sctp;
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073struct idr sctp_assocs_id;
74DEFINE_SPINLOCK(sctp_assocs_id_lock);
75
76/* This is the global socket data structure used for responding to
77 * the Out-of-the-blue (OOTB) packets. A control sock will be created
78 * for this socket at the initialization time.
79 */
Denis V. Lunev82581752008-04-03 14:27:26 -070080static struct sock *sctp_ctl_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82static struct sctp_pf *sctp_pf_inet6_specific;
83static struct sctp_pf *sctp_pf_inet_specific;
84static struct sctp_af *sctp_af_v4_specific;
85static struct sctp_af *sctp_af_v6_specific;
86
Christoph Lametere18b8902006-12-06 20:33:20 -080087struct kmem_cache *sctp_chunk_cachep __read_mostly;
88struct kmem_cache *sctp_bucket_cachep __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Vlad Yasevich007e3932007-09-16 16:04:37 -070090int sysctl_sctp_mem[3];
91int sysctl_sctp_rmem[3];
92int sysctl_sctp_wmem[3];
Neil Horman4d93df02007-08-15 16:07:44 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094/* Return the address of the control sock. */
95struct sock *sctp_get_ctl_sock(void)
96{
Denis V. Lunev82581752008-04-03 14:27:26 -070097 return sctp_ctl_sock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
99
100/* Set up the proc fs entry for the SCTP protocol. */
101static __init int sctp_proc_init(void)
102{
Florian Westphalc4e85f82008-07-18 23:03:44 -0700103#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!proc_net_sctp) {
105 struct proc_dir_entry *ent;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200106 ent = proc_mkdir("sctp", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (ent) {
108 ent->owner = THIS_MODULE;
109 proc_net_sctp = ent;
110 } else
111 goto out_nomem;
112 }
113
114 if (sctp_snmp_proc_init())
Wei Yongjun80896a32008-06-16 16:59:55 -0700115 goto out_snmp_proc_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 if (sctp_eps_proc_init())
Wei Yongjun80896a32008-06-16 16:59:55 -0700117 goto out_eps_proc_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 if (sctp_assocs_proc_init())
Wei Yongjun80896a32008-06-16 16:59:55 -0700119 goto out_assocs_proc_init;
Neil Horman20c2c1f2008-05-09 15:14:50 -0700120 if (sctp_remaddr_proc_init())
David S. Millercaea9022008-06-16 18:25:48 -0700121 goto out_remaddr_proc_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 return 0;
124
David S. Millercaea9022008-06-16 18:25:48 -0700125out_remaddr_proc_init:
Pavel Emelyanov3d00fb92008-06-17 15:54:14 -0700126 sctp_assocs_proc_exit();
Wei Yongjun80896a32008-06-16 16:59:55 -0700127out_assocs_proc_init:
128 sctp_eps_proc_exit();
129out_eps_proc_init:
130 sctp_snmp_proc_exit();
131out_snmp_proc_init:
132 if (proc_net_sctp) {
133 proc_net_sctp = NULL;
134 remove_proc_entry("sctp", init_net.proc_net);
135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136out_nomem:
137 return -ENOMEM;
Florian Westphalc4e85f82008-07-18 23:03:44 -0700138#else
139 return 0;
140#endif /* CONFIG_PROC_FS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900143/* Clean up the proc fs entry for the SCTP protocol.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * Note: Do not make this __exit as it is used in the init error
145 * path.
146 */
147static void sctp_proc_exit(void)
148{
Florian Westphalc4e85f82008-07-18 23:03:44 -0700149#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 sctp_snmp_proc_exit();
151 sctp_eps_proc_exit();
152 sctp_assocs_proc_exit();
Neil Horman20c2c1f2008-05-09 15:14:50 -0700153 sctp_remaddr_proc_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 if (proc_net_sctp) {
156 proc_net_sctp = NULL;
Eric W. Biederman457c4cb2007-09-12 12:01:34 +0200157 remove_proc_entry("sctp", init_net.proc_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
Florian Westphalc4e85f82008-07-18 23:03:44 -0700159#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162/* Private helper to extract ipv4 address and stash them in
163 * the protocol structure.
164 */
165static void sctp_v4_copy_addrlist(struct list_head *addrlist,
166 struct net_device *dev)
167{
168 struct in_device *in_dev;
169 struct in_ifaddr *ifa;
170 struct sctp_sockaddr_entry *addr;
171
172 rcu_read_lock();
Herbert Xue5ed6392005-10-03 14:35:55 -0700173 if ((in_dev = __in_dev_get_rcu(dev)) == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 rcu_read_unlock();
175 return;
176 }
177
178 for (ifa = in_dev->ifa_list; ifa; ifa = ifa->ifa_next) {
179 /* Add the address to the local list. */
180 addr = t_new(struct sctp_sockaddr_entry, GFP_ATOMIC);
181 if (addr) {
Al Viro2a6fd782006-11-20 17:04:42 -0800182 addr->a.v4.sin_family = AF_INET;
183 addr->a.v4.sin_port = 0;
184 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
Vlad Yasevich29303542007-09-16 16:02:12 -0700185 addr->valid = 1;
186 INIT_LIST_HEAD(&addr->list);
187 INIT_RCU_HEAD(&addr->rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 list_add_tail(&addr->list, addrlist);
189 }
190 }
191
192 rcu_read_unlock();
193}
194
195/* Extract our IP addresses from the system and stash them in the
196 * protocol structure.
197 */
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800198static void sctp_get_local_addr_list(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 struct net_device *dev;
201 struct list_head *pos;
202 struct sctp_af *af;
203
204 read_lock(&dev_base_lock);
Eric W. Biederman881d9662007-09-17 11:56:21 -0700205 for_each_netdev(&init_net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 __list_for_each(pos, &sctp_address_families) {
207 af = list_entry(pos, struct sctp_af, list);
208 af->copy_addrlist(&sctp_local_addr_list, dev);
209 }
210 }
211 read_unlock(&dev_base_lock);
212}
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/* Free the existing local addresses. */
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800215static void sctp_free_local_addr_list(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 struct sctp_sockaddr_entry *addr;
218 struct list_head *pos, *temp;
219
220 list_for_each_safe(pos, temp, &sctp_local_addr_list) {
221 addr = list_entry(pos, struct sctp_sockaddr_entry, list);
222 list_del(pos);
223 kfree(addr);
224 }
225}
226
Vlad Yasevich29303542007-09-16 16:02:12 -0700227void sctp_local_addr_free(struct rcu_head *head)
228{
229 struct sctp_sockaddr_entry *e = container_of(head,
230 struct sctp_sockaddr_entry, rcu);
231 kfree(e);
232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/* Copy the local addresses which are valid for 'scope' into 'bp'. */
235int sctp_copy_local_addr_list(struct sctp_bind_addr *bp, sctp_scope_t scope,
Al Virodd0fc662005-10-07 07:46:04 +0100236 gfp_t gfp, int copy_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 struct sctp_sockaddr_entry *addr;
239 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Vlad Yasevich29303542007-09-16 16:02:12 -0700241 rcu_read_lock();
242 list_for_each_entry_rcu(addr, &sctp_local_addr_list, list) {
243 if (!addr->valid)
244 continue;
Al Viro6244be42006-11-20 17:21:44 -0800245 if (sctp_in_scope(&addr->a, scope)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /* Now that the address is in scope, check to see if
247 * the address type is really supported by the local
248 * sock as well as the remote peer.
249 */
Al Viro6244be42006-11-20 17:21:44 -0800250 if ((((AF_INET == addr->a.sa.sa_family) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 (copy_flags & SCTP_ADDR4_PEERSUPP))) ||
Al Viro6244be42006-11-20 17:21:44 -0800252 (((AF_INET6 == addr->a.sa.sa_family) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 (copy_flags & SCTP_ADDR6_ALLOWED) &&
254 (copy_flags & SCTP_ADDR6_PEERSUPP)))) {
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800255 error = sctp_add_bind_addr(bp, &addr->a,
256 SCTP_ADDR_SRC, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (error)
258 goto end_copy;
259 }
260 }
261 }
262
263end_copy:
Vlad Yasevich29303542007-09-16 16:02:12 -0700264 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return error;
266}
267
268/* Initialize a sctp_addr from in incoming skb. */
269static void sctp_v4_from_skb(union sctp_addr *addr, struct sk_buff *skb,
270 int is_saddr)
271{
272 void *from;
Al Virod55c41b2006-11-20 17:09:40 -0800273 __be16 *port;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 struct sctphdr *sh;
275
276 port = &addr->v4.sin_port;
277 addr->v4.sin_family = AF_INET;
278
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -0300279 sh = sctp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (is_saddr) {
Al Virod55c41b2006-11-20 17:09:40 -0800281 *port = sh->source;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700282 from = &ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 } else {
Al Virod55c41b2006-11-20 17:09:40 -0800284 *port = sh->dest;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700285 from = &ip_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 memcpy(&addr->v4.sin_addr.s_addr, from, sizeof(struct in_addr));
288}
289
290/* Initialize an sctp_addr from a socket. */
291static void sctp_v4_from_sk(union sctp_addr *addr, struct sock *sk)
292{
293 addr->v4.sin_family = AF_INET;
Al Viro7dcdbd92006-11-20 17:24:21 -0800294 addr->v4.sin_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 addr->v4.sin_addr.s_addr = inet_sk(sk)->rcv_saddr;
296}
297
298/* Initialize sk->sk_rcv_saddr from sctp_addr. */
299static void sctp_v4_to_sk_saddr(union sctp_addr *addr, struct sock *sk)
300{
301 inet_sk(sk)->rcv_saddr = addr->v4.sin_addr.s_addr;
302}
303
304/* Initialize sk->sk_daddr from sctp_addr. */
305static void sctp_v4_to_sk_daddr(union sctp_addr *addr, struct sock *sk)
306{
307 inet_sk(sk)->daddr = addr->v4.sin_addr.s_addr;
308}
309
310/* Initialize a sctp_addr from an address parameter. */
311static void sctp_v4_from_addr_param(union sctp_addr *addr,
312 union sctp_addr_param *param,
Al Virodd86d132006-11-20 17:11:13 -0800313 __be16 port, int iif)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 addr->v4.sin_family = AF_INET;
316 addr->v4.sin_port = port;
317 addr->v4.sin_addr.s_addr = param->v4.addr.s_addr;
318}
319
320/* Initialize an address parameter from a sctp_addr and return the length
321 * of the address parameter.
322 */
323static int sctp_v4_to_addr_param(const union sctp_addr *addr,
324 union sctp_addr_param *param)
325{
326 int length = sizeof(sctp_ipv4addr_param_t);
327
328 param->v4.param_hdr.type = SCTP_PARAM_IPV4_ADDRESS;
Al Virodbc16db2006-11-20 17:01:42 -0800329 param->v4.param_hdr.length = htons(length);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900330 param->v4.addr.s_addr = addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 return length;
333}
334
335/* Initialize a sctp_addr from a dst_entry. */
336static void sctp_v4_dst_saddr(union sctp_addr *saddr, struct dst_entry *dst,
Al Viro854d43a2006-11-20 17:06:24 -0800337 __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 struct rtable *rt = (struct rtable *)dst;
340 saddr->v4.sin_family = AF_INET;
341 saddr->v4.sin_port = port;
342 saddr->v4.sin_addr.s_addr = rt->rt_src;
343}
344
345/* Compare two addresses exactly. */
346static int sctp_v4_cmp_addr(const union sctp_addr *addr1,
347 const union sctp_addr *addr2)
348{
349 if (addr1->sa.sa_family != addr2->sa.sa_family)
350 return 0;
351 if (addr1->v4.sin_port != addr2->v4.sin_port)
352 return 0;
353 if (addr1->v4.sin_addr.s_addr != addr2->v4.sin_addr.s_addr)
354 return 0;
355
356 return 1;
357}
358
359/* Initialize addr struct to INADDR_ANY. */
Al Viro6fbfa9f2006-11-20 17:24:53 -0800360static void sctp_v4_inaddr_any(union sctp_addr *addr, __be16 port)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 addr->v4.sin_family = AF_INET;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700363 addr->v4.sin_addr.s_addr = htonl(INADDR_ANY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 addr->v4.sin_port = port;
365}
366
367/* Is this a wildcard address? */
368static int sctp_v4_is_any(const union sctp_addr *addr)
369{
Al Viroe6f1ceb2008-03-17 22:44:53 -0700370 return htonl(INADDR_ANY) == addr->v4.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
373/* This function checks if the address is a valid address to be used for
374 * SCTP binding.
375 *
376 * Output:
377 * Return 0 - If the address is a non-unicast or an illegal address.
378 * Return 1 - If the address is a unicast.
379 */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700380static int sctp_v4_addr_valid(union sctp_addr *addr,
381 struct sctp_sock *sp,
382 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700384 /* IPv4 addresses not allowed */
385 if (sp && ipv6_only_sock(sctp_opt2sk(sp)))
386 return 0;
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* Is this a non-unicast address or a unusable SCTP address? */
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800389 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 0;
391
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900392 /* Is this a broadcast address? */
Eric Dumazetee6b9672008-03-05 18:30:47 -0800393 if (skb && skb->rtable->rt_flags & RTCF_BROADCAST)
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900394 return 0;
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return 1;
397}
398
399/* Should this be available for binding? */
400static int sctp_v4_available(union sctp_addr *addr, struct sctp_sock *sp)
401{
Eric W. Biederman6b175b22008-01-10 03:25:28 -0800402 int ret = inet_addr_type(&init_net, addr->v4.sin_addr.s_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Al Viroe6f1ceb2008-03-17 22:44:53 -0700405 if (addr->v4.sin_addr.s_addr != htonl(INADDR_ANY) &&
Neil Hormancdac4e02005-06-13 15:12:33 -0700406 ret != RTN_LOCAL &&
407 !sp->inet.freebind &&
408 !sysctl_ip_nonlocal_bind)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 return 0;
Neil Hormancdac4e02005-06-13 15:12:33 -0700410
Vlad Yasevich7dab83d2008-07-18 23:05:40 -0700411 if (ipv6_only_sock(sctp_opt2sk(sp)))
412 return 0;
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return 1;
415}
416
417/* Checking the loopback, private and other address scopes as defined in
418 * RFC 1918. The IPv4 scoping is based on the draft for SCTP IPv4
419 * scoping <draft-stewart-tsvwg-sctp-ipv4-00.txt>.
420 *
421 * Level 0 - unusable SCTP addresses
422 * Level 1 - loopback address
423 * Level 2 - link-local addresses
424 * Level 3 - private addresses.
425 * Level 4 - global addresses
426 * For INIT and INIT-ACK address list, let L be the level of
427 * of requested destination address, sender and receiver
428 * SHOULD include all of its addresses with level greater
429 * than or equal to L.
430 */
431static sctp_scope_t sctp_v4_scope(union sctp_addr *addr)
432{
433 sctp_scope_t retval;
434
435 /* Should IPv4 scoping be a sysctl configurable option
436 * so users can turn it off (default on) for certain
437 * unconventional networking environments?
438 */
439
440 /* Check for unusable SCTP addresses. */
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800441 if (IS_IPV4_UNUSABLE_ADDRESS(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 retval = SCTP_SCOPE_UNUSABLE;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800443 } else if (ipv4_is_loopback(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 retval = SCTP_SCOPE_LOOPBACK;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800445 } else if (ipv4_is_linklocal_169(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 retval = SCTP_SCOPE_LINK;
Joe Perchesb5cb2bb2007-12-16 13:46:59 -0800447 } else if (ipv4_is_private_10(addr->v4.sin_addr.s_addr) ||
448 ipv4_is_private_172(addr->v4.sin_addr.s_addr) ||
449 ipv4_is_private_192(addr->v4.sin_addr.s_addr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 retval = SCTP_SCOPE_PRIVATE;
451 } else {
452 retval = SCTP_SCOPE_GLOBAL;
453 }
454
455 return retval;
456}
457
458/* Returns a valid dst cache entry for the given source and destination ip
459 * addresses. If an association is passed, trys to get a dst entry with a
460 * source address that matches an address in the bind address list.
461 */
462static struct dst_entry *sctp_v4_get_dst(struct sctp_association *asoc,
463 union sctp_addr *daddr,
464 union sctp_addr *saddr)
465{
466 struct rtable *rt;
467 struct flowi fl;
468 struct sctp_bind_addr *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 struct sctp_sockaddr_entry *laddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct dst_entry *dst = NULL;
471 union sctp_addr dst_saddr;
472
473 memset(&fl, 0x0, sizeof(struct flowi));
474 fl.fl4_dst = daddr->v4.sin_addr.s_addr;
475 fl.proto = IPPROTO_SCTP;
476 if (asoc) {
477 fl.fl4_tos = RT_CONN_FLAGS(asoc->base.sk);
478 fl.oif = asoc->base.sk->sk_bound_dev_if;
479 }
480 if (saddr)
481 fl.fl4_src = saddr->v4.sin_addr.s_addr;
482
483 SCTP_DEBUG_PRINTK("%s: DST:%u.%u.%u.%u, SRC:%u.%u.%u.%u - ",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800484 __func__, NIPQUAD(fl.fl4_dst),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 NIPQUAD(fl.fl4_src));
486
Denis V. Lunevf2063512008-01-22 22:07:34 -0800487 if (!ip_route_output_key(&init_net, &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 dst = &rt->u.dst;
489 }
490
491 /* If there is no association or if a source address is passed, no
492 * more validation is required.
493 */
494 if (!asoc || saddr)
495 goto out;
496
497 bp = &asoc->base.bind_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (dst) {
500 /* Walk through the bind address list and look for a bind
501 * address that matches the source address of the returned dst.
502 */
Gui Jianfeng159c6be2008-06-04 12:38:07 -0700503 sctp_v4_dst_saddr(&dst_saddr, dst, htons(bp->port));
Vlad Yasevich559cf712007-09-16 16:03:28 -0700504 rcu_read_lock();
505 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800506 if (!laddr->valid || (laddr->state != SCTP_ADDR_SRC))
Sridhar Samudraladc022a92006-07-21 14:49:25 -0700507 continue;
Al Viro854d43a2006-11-20 17:06:24 -0800508 if (sctp_v4_cmp_addr(&dst_saddr, &laddr->a))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 goto out_unlock;
510 }
Vlad Yasevich559cf712007-09-16 16:03:28 -0700511 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 /* None of the bound addresses match the source address of the
514 * dst. So release it.
515 */
516 dst_release(dst);
517 dst = NULL;
518 }
519
520 /* Walk through the bind address list and try to get a dst that
521 * matches a bind address as the source address.
522 */
Vlad Yasevich559cf712007-09-16 16:03:28 -0700523 rcu_read_lock();
524 list_for_each_entry_rcu(laddr, &bp->address_list, list) {
525 if (!laddr->valid)
526 continue;
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800527 if ((laddr->state == SCTP_ADDR_SRC) &&
Al Viro6244be42006-11-20 17:21:44 -0800528 (AF_INET == laddr->a.sa.sa_family)) {
529 fl.fl4_src = laddr->a.v4.sin_addr.s_addr;
Denis V. Lunevf2063512008-01-22 22:07:34 -0800530 if (!ip_route_output_key(&init_net, &rt, &fl)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 dst = &rt->u.dst;
532 goto out_unlock;
533 }
534 }
535 }
536
537out_unlock:
Vlad Yasevich559cf712007-09-16 16:03:28 -0700538 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539out:
540 if (dst)
541 SCTP_DEBUG_PRINTK("rt_dst:%u.%u.%u.%u, rt_src:%u.%u.%u.%u\n",
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900542 NIPQUAD(rt->rt_dst), NIPQUAD(rt->rt_src));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 else
544 SCTP_DEBUG_PRINTK("NO ROUTE\n");
545
546 return dst;
547}
548
549/* For v4, the source address is cached in the route entry(dst). So no need
550 * to cache it separately and hence this is an empty routine.
551 */
YOSHIFUJI Hideakie5117102008-05-29 19:55:05 +0900552static void sctp_v4_get_saddr(struct sctp_sock *sk,
553 struct sctp_association *asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 struct dst_entry *dst,
555 union sctp_addr *daddr,
556 union sctp_addr *saddr)
557{
558 struct rtable *rt = (struct rtable *)dst;
559
Vladislav Yasevich23ec47a2005-11-11 16:05:55 -0800560 if (!asoc)
561 return;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (rt) {
564 saddr->v4.sin_family = AF_INET;
Al Virod3f7a542006-11-20 17:12:41 -0800565 saddr->v4.sin_port = htons(asoc->base.bind_addr.port);
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900566 saddr->v4.sin_addr.s_addr = rt->rt_src;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 }
568}
569
570/* What interface did this skb arrive on? */
571static int sctp_v4_skb_iif(const struct sk_buff *skb)
572{
Eric Dumazetee6b9672008-03-05 18:30:47 -0800573 return skb->rtable->rt_iif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
576/* Was this packet marked by Explicit Congestion Notification? */
577static int sctp_v4_is_ce(const struct sk_buff *skb)
578{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700579 return INET_ECN_is_ce(ip_hdr(skb)->tos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582/* Create and initialize a new sk for the socket returned by accept(). */
583static struct sock *sctp_v4_create_accept_sk(struct sock *sk,
584 struct sctp_association *asoc)
585{
586 struct inet_sock *inet = inet_sk(sk);
587 struct inet_sock *newinet;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900588 struct sock *newsk = sk_alloc(sock_net(sk), PF_INET, GFP_KERNEL,
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700589 sk->sk_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 if (!newsk)
592 goto out;
593
594 sock_init_data(NULL, newsk);
595
596 newsk->sk_type = SOCK_STREAM;
597
598 newsk->sk_no_check = sk->sk_no_check;
599 newsk->sk_reuse = sk->sk_reuse;
600 newsk->sk_shutdown = sk->sk_shutdown;
601
602 newsk->sk_destruct = inet_sock_destruct;
603 newsk->sk_family = PF_INET;
604 newsk->sk_protocol = IPPROTO_SCTP;
605 newsk->sk_backlog_rcv = sk->sk_prot->backlog_rcv;
606 sock_reset_flag(newsk, SOCK_ZAPPED);
607
608 newinet = inet_sk(newsk);
609
610 /* Initialize sk's sport, dport, rcv_saddr and daddr for
611 * getsockname() and getpeername()
612 */
613 newinet->sport = inet->sport;
614 newinet->saddr = inet->saddr;
615 newinet->rcv_saddr = inet->rcv_saddr;
616 newinet->dport = htons(asoc->peer.port);
617 newinet->daddr = asoc->peer.primary_addr.v4.sin_addr.s_addr;
618 newinet->pmtudisc = inet->pmtudisc;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900619 newinet->id = asoc->next_tsn ^ jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 newinet->uc_ttl = -1;
622 newinet->mc_loop = 1;
623 newinet->mc_ttl = 1;
624 newinet->mc_index = 0;
625 newinet->mc_list = NULL;
626
Arnaldo Carvalho de Meloe6848972005-08-09 19:45:38 -0700627 sk_refcnt_debug_inc(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 if (newsk->sk_prot->init(newsk)) {
630 sk_common_release(newsk);
631 newsk = NULL;
632 }
633
634out:
635 return newsk;
636}
637
638/* Map address, empty for v4 family */
639static void sctp_v4_addr_v4map(struct sctp_sock *sp, union sctp_addr *addr)
640{
641 /* Empty */
642}
643
644/* Dump the v4 addr to the seq file. */
645static void sctp_v4_seq_dump_addr(struct seq_file *seq, union sctp_addr *addr)
646{
647 seq_printf(seq, "%d.%d.%d.%d ", NIPQUAD(addr->v4.sin_addr));
648}
649
Vlad Yasevichb9031d92008-06-04 12:40:15 -0700650static void sctp_v4_ecn_capable(struct sock *sk)
651{
652 INET_ECN_xmit(sk);
653}
654
Vlad Yasevich29303542007-09-16 16:02:12 -0700655/* Event handler for inet address addition/deletion events.
656 * The sctp_local_addr_list needs to be protocted by a spin lock since
657 * multiple notifiers (say IPv4 and IPv6) may be running at the same
658 * time and thus corrupt the list.
659 * The reader side is protected with RCU.
660 */
Adrian Bunk24123182006-12-20 16:08:22 -0800661static int sctp_inetaddr_event(struct notifier_block *this, unsigned long ev,
662 void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663{
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800664 struct in_ifaddr *ifa = (struct in_ifaddr *)ptr;
Vlad Yasevich29303542007-09-16 16:02:12 -0700665 struct sctp_sockaddr_entry *addr = NULL;
666 struct sctp_sockaddr_entry *temp;
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700667 int found = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900669 if (dev_net(ifa->ifa_dev->dev) != &init_net)
Denis V. Lunev6133fb12008-02-28 20:46:17 -0800670 return NOTIFY_DONE;
671
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800672 switch (ev) {
673 case NETDEV_UP:
674 addr = kmalloc(sizeof(struct sctp_sockaddr_entry), GFP_ATOMIC);
675 if (addr) {
676 addr->a.v4.sin_family = AF_INET;
677 addr->a.v4.sin_port = 0;
678 addr->a.v4.sin_addr.s_addr = ifa->ifa_local;
Vlad Yasevich29303542007-09-16 16:02:12 -0700679 addr->valid = 1;
680 spin_lock_bh(&sctp_local_addr_lock);
681 list_add_tail_rcu(&addr->list, &sctp_local_addr_list);
682 spin_unlock_bh(&sctp_local_addr_lock);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800683 }
684 break;
685 case NETDEV_DOWN:
Vlad Yasevich29303542007-09-16 16:02:12 -0700686 spin_lock_bh(&sctp_local_addr_lock);
687 list_for_each_entry_safe(addr, temp,
688 &sctp_local_addr_list, list) {
Pavel Emelyanova40a7d12008-04-12 18:40:38 -0700689 if (addr->a.sa.sa_family == AF_INET &&
690 addr->a.v4.sin_addr.s_addr ==
691 ifa->ifa_local) {
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700692 found = 1;
Vlad Yasevich29303542007-09-16 16:02:12 -0700693 addr->valid = 0;
694 list_del_rcu(&addr->list);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800695 break;
696 }
697 }
Vlad Yasevich29303542007-09-16 16:02:12 -0700698 spin_unlock_bh(&sctp_local_addr_lock);
Chidambar 'ilLogict' Zinnoury22626212008-03-11 18:05:02 -0700699 if (found)
Vlad Yasevich29303542007-09-16 16:02:12 -0700700 call_rcu(&addr->rcu, sctp_local_addr_free);
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800701 break;
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 return NOTIFY_DONE;
705}
706
707/*
708 * Initialize the control inode/socket with a control endpoint data
709 * structure. This endpoint is reserved exclusively for the OOTB processing.
710 */
711static int sctp_ctl_sock_init(void)
712{
713 int err;
714 sa_family_t family;
715
716 if (sctp_get_pf_specific(PF_INET6))
717 family = PF_INET6;
718 else
719 family = PF_INET;
720
Denis V. Luneveee4fe42008-04-03 14:27:58 -0700721 err = inet_ctl_sock_create(&sctp_ctl_sock, family,
Denis V. Lunev56772422008-04-03 14:28:30 -0700722 SOCK_SEQPACKET, IPPROTO_SCTP, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 if (err < 0) {
724 printk(KERN_ERR
725 "SCTP: Failed to create the SCTP control socket.\n");
726 return err;
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return 0;
729}
730
731/* Register address family specific functions. */
732int sctp_register_af(struct sctp_af *af)
733{
734 switch (af->sa_family) {
735 case AF_INET:
736 if (sctp_af_v4_specific)
737 return 0;
738 sctp_af_v4_specific = af;
739 break;
740 case AF_INET6:
741 if (sctp_af_v6_specific)
742 return 0;
743 sctp_af_v6_specific = af;
744 break;
745 default:
746 return 0;
747 }
748
749 INIT_LIST_HEAD(&af->list);
750 list_add_tail(&af->list, &sctp_address_families);
751 return 1;
752}
753
754/* Get the table of functions for manipulating a particular address
755 * family.
756 */
757struct sctp_af *sctp_get_af_specific(sa_family_t family)
758{
759 switch (family) {
760 case AF_INET:
761 return sctp_af_v4_specific;
762 case AF_INET6:
763 return sctp_af_v6_specific;
764 default:
765 return NULL;
766 }
767}
768
769/* Common code to initialize a AF_INET msg_name. */
770static void sctp_inet_msgname(char *msgname, int *addr_len)
771{
772 struct sockaddr_in *sin;
773
774 sin = (struct sockaddr_in *)msgname;
775 *addr_len = sizeof(struct sockaddr_in);
776 sin->sin_family = AF_INET;
777 memset(sin->sin_zero, 0, sizeof(sin->sin_zero));
778}
779
780/* Copy the primary address of the peer primary address as the msg_name. */
781static void sctp_inet_event_msgname(struct sctp_ulpevent *event, char *msgname,
782 int *addr_len)
783{
784 struct sockaddr_in *sin, *sinfrom;
785
786 if (msgname) {
787 struct sctp_association *asoc;
788
789 asoc = event->asoc;
790 sctp_inet_msgname(msgname, addr_len);
791 sin = (struct sockaddr_in *)msgname;
792 sinfrom = &asoc->peer.primary_addr.v4;
793 sin->sin_port = htons(asoc->peer.port);
794 sin->sin_addr.s_addr = sinfrom->sin_addr.s_addr;
795 }
796}
797
798/* Initialize and copy out a msgname from an inbound skb. */
799static void sctp_inet_skb_msgname(struct sk_buff *skb, char *msgname, int *len)
800{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 if (msgname) {
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -0300802 struct sctphdr *sh = sctp_hdr(skb);
803 struct sockaddr_in *sin = (struct sockaddr_in *)msgname;
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 sctp_inet_msgname(msgname, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 sin->sin_port = sh->source;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700807 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809}
810
811/* Do we support this AF? */
812static int sctp_inet_af_supported(sa_family_t family, struct sctp_sock *sp)
813{
814 /* PF_INET only supports AF_INET addresses. */
815 return (AF_INET == family);
816}
817
818/* Address matching with wildcards allowed. */
819static int sctp_inet_cmp_addr(const union sctp_addr *addr1,
820 const union sctp_addr *addr2,
821 struct sctp_sock *opt)
822{
823 /* PF_INET only supports AF_INET addresses. */
824 if (addr1->sa.sa_family != addr2->sa.sa_family)
825 return 0;
Al Viroe6f1ceb2008-03-17 22:44:53 -0700826 if (htonl(INADDR_ANY) == addr1->v4.sin_addr.s_addr ||
827 htonl(INADDR_ANY) == addr2->v4.sin_addr.s_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return 1;
829 if (addr1->v4.sin_addr.s_addr == addr2->v4.sin_addr.s_addr)
830 return 1;
831
832 return 0;
833}
834
835/* Verify that provided sockaddr looks bindable. Common verification has
836 * already been taken care of.
837 */
838static int sctp_inet_bind_verify(struct sctp_sock *opt, union sctp_addr *addr)
839{
840 return sctp_v4_available(addr, opt);
841}
842
843/* Verify that sockaddr looks sendable. Common verification has already
844 * been taken care of.
845 */
846static int sctp_inet_send_verify(struct sctp_sock *opt, union sctp_addr *addr)
847{
848 return 1;
849}
850
851/* Fill in Supported Address Type information for INIT and INIT-ACK
852 * chunks. Returns number of addresses supported.
853 */
854static int sctp_inet_supported_addrs(const struct sctp_sock *opt,
Al Viro3dbe8652006-11-20 17:25:49 -0800855 __be16 *types)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 types[0] = SCTP_PARAM_IPV4_ADDRESS;
858 return 1;
859}
860
861/* Wrapper routine that calls the ip transmit routine. */
862static inline int sctp_v4_xmit(struct sk_buff *skb,
863 struct sctp_transport *transport, int ipfragok)
864{
865 SCTP_DEBUG_PRINTK("%s: skb:%p, len:%d, "
866 "src:%u.%u.%u.%u, dst:%u.%u.%u.%u\n",
Harvey Harrison0dc47872008-03-05 20:47:47 -0800867 __func__, skb, skb->len,
Eric Dumazetee6b9672008-03-05 18:30:47 -0800868 NIPQUAD(skb->rtable->rt_src),
869 NIPQUAD(skb->rtable->rt_dst));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 SCTP_INC_STATS(SCTP_MIB_OUTSCTPPACKS);
David S. Millere89862f2007-01-26 01:04:55 -0800872 return ip_queue_xmit(skb, ipfragok);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
Neil Horman15efbe72008-02-15 09:53:59 -0500875static struct sctp_af sctp_af_inet;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877static struct sctp_pf sctp_pf_inet = {
878 .event_msgname = sctp_inet_event_msgname,
879 .skb_msgname = sctp_inet_skb_msgname,
880 .af_supported = sctp_inet_af_supported,
881 .cmp_addr = sctp_inet_cmp_addr,
882 .bind_verify = sctp_inet_bind_verify,
883 .send_verify = sctp_inet_send_verify,
884 .supported_addrs = sctp_inet_supported_addrs,
885 .create_accept_sk = sctp_v4_create_accept_sk,
886 .addr_v4map = sctp_v4_addr_v4map,
Neil Horman15efbe72008-02-15 09:53:59 -0500887 .af = &sctp_af_inet
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888};
889
890/* Notifier for inetaddr addition/deletion events. */
891static struct notifier_block sctp_inetaddr_notifier = {
892 .notifier_call = sctp_inetaddr_event,
893};
894
895/* Socket operations. */
Eric Dumazet90ddc4f2005-12-22 12:49:22 -0800896static const struct proto_ops inet_seqpacket_ops = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800897 .family = PF_INET,
898 .owner = THIS_MODULE,
899 .release = inet_release, /* Needs to be wrapped... */
900 .bind = inet_bind,
901 .connect = inet_dgram_connect,
902 .socketpair = sock_no_socketpair,
903 .accept = inet_accept,
904 .getname = inet_getname, /* Semantics are different. */
905 .poll = sctp_poll,
906 .ioctl = inet_ioctl,
907 .listen = sctp_inet_listen,
908 .shutdown = inet_shutdown, /* Looks harmless. */
909 .setsockopt = sock_common_setsockopt, /* IP_SOL IP_OPTION is a problem */
910 .getsockopt = sock_common_getsockopt,
911 .sendmsg = inet_sendmsg,
912 .recvmsg = sock_common_recvmsg,
913 .mmap = sock_no_mmap,
914 .sendpage = sock_no_sendpage,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800915#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800916 .compat_setsockopt = compat_sock_common_setsockopt,
917 .compat_getsockopt = compat_sock_common_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919};
920
921/* Registration with AF_INET family. */
922static struct inet_protosw sctp_seqpacket_protosw = {
923 .type = SOCK_SEQPACKET,
924 .protocol = IPPROTO_SCTP,
925 .prot = &sctp_prot,
926 .ops = &inet_seqpacket_ops,
927 .capability = -1,
928 .no_check = 0,
929 .flags = SCTP_PROTOSW_FLAG
930};
931static struct inet_protosw sctp_stream_protosw = {
932 .type = SOCK_STREAM,
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};
940
941/* Register with IP layer. */
942static struct net_protocol sctp_protocol = {
943 .handler = sctp_rcv,
944 .err_handler = sctp_v4_err,
945 .no_policy = 1,
946};
947
948/* IPv4 address related functions. */
Neil Horman15efbe72008-02-15 09:53:59 -0500949static struct sctp_af sctp_af_inet = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800950 .sa_family = AF_INET,
951 .sctp_xmit = sctp_v4_xmit,
952 .setsockopt = ip_setsockopt,
953 .getsockopt = ip_getsockopt,
954 .get_dst = sctp_v4_get_dst,
955 .get_saddr = sctp_v4_get_saddr,
956 .copy_addrlist = sctp_v4_copy_addrlist,
957 .from_skb = sctp_v4_from_skb,
958 .from_sk = sctp_v4_from_sk,
959 .to_sk_saddr = sctp_v4_to_sk_saddr,
960 .to_sk_daddr = sctp_v4_to_sk_daddr,
961 .from_addr_param = sctp_v4_from_addr_param,
962 .to_addr_param = sctp_v4_to_addr_param,
963 .dst_saddr = sctp_v4_dst_saddr,
964 .cmp_addr = sctp_v4_cmp_addr,
965 .addr_valid = sctp_v4_addr_valid,
966 .inaddr_any = sctp_v4_inaddr_any,
967 .is_any = sctp_v4_is_any,
968 .available = sctp_v4_available,
969 .scope = sctp_v4_scope,
970 .skb_iif = sctp_v4_skb_iif,
971 .is_ce = sctp_v4_is_ce,
972 .seq_dump_addr = sctp_v4_seq_dump_addr,
Vlad Yasevichb9031d92008-06-04 12:40:15 -0700973 .ecn_capable = sctp_v4_ecn_capable,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800974 .net_header_len = sizeof(struct iphdr),
975 .sockaddr_len = sizeof(struct sockaddr_in),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800976#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800977 .compat_setsockopt = compat_ip_setsockopt,
978 .compat_getsockopt = compat_ip_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800979#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980};
981
982struct sctp_pf *sctp_get_pf_specific(sa_family_t family) {
983
984 switch (family) {
985 case PF_INET:
986 return sctp_pf_inet_specific;
987 case PF_INET6:
988 return sctp_pf_inet6_specific;
989 default:
990 return NULL;
991 }
992}
993
994/* Register the PF specific function table. */
995int sctp_register_pf(struct sctp_pf *pf, sa_family_t family)
996{
997 switch (family) {
998 case PF_INET:
999 if (sctp_pf_inet_specific)
1000 return 0;
1001 sctp_pf_inet_specific = pf;
1002 break;
1003 case PF_INET6:
1004 if (sctp_pf_inet6_specific)
1005 return 0;
1006 sctp_pf_inet6_specific = pf;
1007 break;
1008 default:
1009 return 0;
1010 }
1011 return 1;
1012}
1013
YOSHIFUJI Hideaki996b1db2008-04-10 03:50:13 -07001014static inline int init_sctp_mibs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
YOSHIFUJI Hideaki996b1db2008-04-10 03:50:13 -07001016 return snmp_mib_init((void**)sctp_statistics, sizeof(struct sctp_mib));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
YOSHIFUJI Hideaki996b1db2008-04-10 03:50:13 -07001019static inline void cleanup_sctp_mibs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
YOSHIFUJI Hideaki996b1db2008-04-10 03:50:13 -07001021 snmp_mib_free((void**)sctp_statistics);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
1023
Vlad Yasevich270637a2008-03-20 15:17:14 -07001024static void sctp_v4_pf_init(void)
1025{
1026 /* Initialize the SCTP specific PF functions. */
1027 sctp_register_pf(&sctp_pf_inet, PF_INET);
1028 sctp_register_af(&sctp_af_inet);
1029}
1030
1031static void sctp_v4_pf_exit(void)
1032{
1033 list_del(&sctp_af_inet.list);
1034}
1035
1036static int sctp_v4_protosw_init(void)
1037{
1038 int rc;
1039
1040 rc = proto_register(&sctp_prot, 1);
1041 if (rc)
1042 return rc;
1043
1044 /* Register SCTP(UDP and TCP style) with socket layer. */
1045 inet_register_protosw(&sctp_seqpacket_protosw);
1046 inet_register_protosw(&sctp_stream_protosw);
1047
1048 return 0;
1049}
1050
1051static void sctp_v4_protosw_exit(void)
1052{
1053 inet_unregister_protosw(&sctp_stream_protosw);
1054 inet_unregister_protosw(&sctp_seqpacket_protosw);
1055 proto_unregister(&sctp_prot);
1056}
1057
1058static int sctp_v4_add_protocol(void)
1059{
1060 /* Register notifier for inet address additions/deletions. */
1061 register_inetaddr_notifier(&sctp_inetaddr_notifier);
1062
1063 /* Register SCTP with inet layer. */
1064 if (inet_add_protocol(&sctp_protocol, IPPROTO_SCTP) < 0)
1065 return -EAGAIN;
1066
1067 return 0;
1068}
1069
1070static void sctp_v4_del_protocol(void)
1071{
1072 inet_del_protocol(&sctp_protocol, IPPROTO_SCTP);
1073 unregister_inetaddr_notifier(&sctp_inetaddr_notifier);
1074}
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076/* Initialize the universe into something sensible. */
1077SCTP_STATIC __init int sctp_init(void)
1078{
1079 int i;
1080 int status = -EINVAL;
1081 unsigned long goal;
Neil Horman4d93df02007-08-15 16:07:44 -07001082 unsigned long limit;
1083 int max_share;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 int order;
1085
1086 /* SCTP_DEBUG sanity check. */
1087 if (!sctp_sanity_check())
1088 goto out;
1089
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001090 /* Allocate bind_bucket and chunk caches. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 status = -ENOBUFS;
1092 sctp_bucket_cachep = kmem_cache_create("sctp_bind_bucket",
1093 sizeof(struct sctp_bind_bucket),
1094 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001095 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 if (!sctp_bucket_cachep)
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001097 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 sctp_chunk_cachep = kmem_cache_create("sctp_chunk",
1100 sizeof(struct sctp_chunk),
1101 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001102 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (!sctp_chunk_cachep)
1104 goto err_chunk_cachep;
1105
1106 /* Allocate and initialise sctp mibs. */
1107 status = init_sctp_mibs();
1108 if (status)
1109 goto err_init_mibs;
1110
1111 /* Initialize proc fs directory. */
1112 status = sctp_proc_init();
1113 if (status)
1114 goto err_init_proc;
1115
1116 /* Initialize object count debugging. */
1117 sctp_dbg_objcnt_init();
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /*
1120 * 14. Suggested SCTP Protocol Parameter Values
1121 */
1122 /* The following protocol parameters are RECOMMENDED: */
1123 /* RTO.Initial - 3 seconds */
1124 sctp_rto_initial = SCTP_RTO_INITIAL;
1125 /* RTO.Min - 1 second */
1126 sctp_rto_min = SCTP_RTO_MIN;
1127 /* RTO.Max - 60 seconds */
1128 sctp_rto_max = SCTP_RTO_MAX;
1129 /* RTO.Alpha - 1/8 */
1130 sctp_rto_alpha = SCTP_RTO_ALPHA;
1131 /* RTO.Beta - 1/4 */
1132 sctp_rto_beta = SCTP_RTO_BETA;
1133
1134 /* Valid.Cookie.Life - 60 seconds */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -07001135 sctp_valid_cookie_life = SCTP_DEFAULT_COOKIE_LIFE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 /* Whether Cookie Preservative is enabled(1) or not(0) */
1138 sctp_cookie_preserve_enable = 1;
1139
1140 /* Max.Burst - 4 */
Vlad Yasevich70331572007-03-23 11:34:36 -07001141 sctp_max_burst = SCTP_DEFAULT_MAX_BURST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
1143 /* Association.Max.Retrans - 10 attempts
1144 * Path.Max.Retrans - 5 attempts (per destination address)
1145 * Max.Init.Retransmits - 8 attempts
1146 */
1147 sctp_max_retrans_association = 10;
1148 sctp_max_retrans_path = 5;
1149 sctp_max_retrans_init = 8;
1150
Neil Horman4eb701d2005-04-28 12:02:04 -07001151 /* Sendbuffer growth - do per-socket accounting */
1152 sctp_sndbuf_policy = 0;
1153
Neil Horman049b3ff2005-11-11 16:08:24 -08001154 /* Rcvbuffer growth - do per-socket accounting */
1155 sctp_rcvbuf_policy = 0;
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /* HB.interval - 30 seconds */
Vlad Yasevich2f85a422005-06-28 13:24:23 -07001158 sctp_hb_interval = SCTP_DEFAULT_TIMEOUT_HEARTBEAT;
1159
1160 /* delayed SACK timeout */
1161 sctp_sack_timeout = SCTP_DEFAULT_TIMEOUT_SACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /* Implementation specific variables. */
1164
1165 /* Initialize default stream count setup information. */
1166 sctp_max_instreams = SCTP_DEFAULT_INSTREAMS;
1167 sctp_max_outstreams = SCTP_DEFAULT_OUTSTREAMS;
1168
1169 /* Initialize handle used for association ids. */
1170 idr_init(&sctp_assocs_id);
1171
Neil Horman4d93df02007-08-15 16:07:44 -07001172 /* Set the pressure threshold to be a fraction of global memory that
1173 * is up to 1/2 at 256 MB, decreasing toward zero with the amount of
1174 * memory, with a floor of 128 pages.
1175 * Note this initalizes the data in sctpv6_prot too
1176 * Unabashedly stolen from tcp_init
1177 */
1178 limit = min(num_physpages, 1UL<<(28-PAGE_SHIFT)) >> (20-PAGE_SHIFT);
1179 limit = (limit * (num_physpages >> (20-PAGE_SHIFT))) >> (PAGE_SHIFT-11);
1180 limit = max(limit, 128UL);
1181 sysctl_sctp_mem[0] = limit / 4 * 3;
1182 sysctl_sctp_mem[1] = limit;
1183 sysctl_sctp_mem[2] = sysctl_sctp_mem[0] * 2;
1184
1185 /* Set per-socket limits to no more than 1/128 the pressure threshold*/
1186 limit = (sysctl_sctp_mem[1]) << (PAGE_SHIFT - 7);
1187 max_share = min(4UL*1024*1024, limit);
1188
1189 sysctl_sctp_rmem[0] = PAGE_SIZE; /* give each asoc 1 page min */
1190 sysctl_sctp_rmem[1] = (1500 *(sizeof(struct sk_buff) + 1));
1191 sysctl_sctp_rmem[2] = max(sysctl_sctp_rmem[1], max_share);
1192
Hideo Aoki3ab224b2007-12-31 00:11:19 -08001193 sysctl_sctp_wmem[0] = SK_MEM_QUANTUM;
Neil Horman4d93df02007-08-15 16:07:44 -07001194 sysctl_sctp_wmem[1] = 16*1024;
1195 sysctl_sctp_wmem[2] = max(64*1024, max_share);
1196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /* Size and allocate the association hash table.
1198 * The methodology is similar to that of the tcp hash tables.
1199 */
1200 if (num_physpages >= (128 * 1024))
1201 goal = num_physpages >> (22 - PAGE_SHIFT);
1202 else
1203 goal = num_physpages >> (24 - PAGE_SHIFT);
1204
1205 for (order = 0; (1UL << order) < goal; order++)
1206 ;
1207
1208 do {
1209 sctp_assoc_hashsize = (1UL << order) * PAGE_SIZE /
1210 sizeof(struct sctp_hashbucket);
1211 if ((sctp_assoc_hashsize > (64 * 1024)) && order > 0)
1212 continue;
1213 sctp_assoc_hashtable = (struct sctp_hashbucket *)
1214 __get_free_pages(GFP_ATOMIC, order);
1215 } while (!sctp_assoc_hashtable && --order > 0);
1216 if (!sctp_assoc_hashtable) {
1217 printk(KERN_ERR "SCTP: Failed association hash alloc.\n");
1218 status = -ENOMEM;
1219 goto err_ahash_alloc;
1220 }
1221 for (i = 0; i < sctp_assoc_hashsize; i++) {
1222 rwlock_init(&sctp_assoc_hashtable[i].lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001223 INIT_HLIST_HEAD(&sctp_assoc_hashtable[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225
1226 /* Allocate and initialize the endpoint hash table. */
1227 sctp_ep_hashsize = 64;
1228 sctp_ep_hashtable = (struct sctp_hashbucket *)
1229 kmalloc(64 * sizeof(struct sctp_hashbucket), GFP_KERNEL);
1230 if (!sctp_ep_hashtable) {
1231 printk(KERN_ERR "SCTP: Failed endpoint_hash alloc.\n");
1232 status = -ENOMEM;
1233 goto err_ehash_alloc;
1234 }
1235 for (i = 0; i < sctp_ep_hashsize; i++) {
1236 rwlock_init(&sctp_ep_hashtable[i].lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001237 INIT_HLIST_HEAD(&sctp_ep_hashtable[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239
1240 /* Allocate and initialize the SCTP port hash table. */
1241 do {
1242 sctp_port_hashsize = (1UL << order) * PAGE_SIZE /
1243 sizeof(struct sctp_bind_hashbucket);
1244 if ((sctp_port_hashsize > (64 * 1024)) && order > 0)
1245 continue;
1246 sctp_port_hashtable = (struct sctp_bind_hashbucket *)
1247 __get_free_pages(GFP_ATOMIC, order);
1248 } while (!sctp_port_hashtable && --order > 0);
1249 if (!sctp_port_hashtable) {
1250 printk(KERN_ERR "SCTP: Failed bind hash alloc.");
1251 status = -ENOMEM;
1252 goto err_bhash_alloc;
1253 }
1254 for (i = 0; i < sctp_port_hashsize; i++) {
1255 spin_lock_init(&sctp_port_hashtable[i].lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001256 INIT_HLIST_HEAD(&sctp_port_hashtable[i].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 }
1258
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 printk(KERN_INFO "SCTP: Hash tables configured "
1260 "(established %d bind %d)\n",
1261 sctp_assoc_hashsize, sctp_port_hashsize);
1262
1263 /* Disable ADDIP by default. */
1264 sctp_addip_enable = 0;
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -04001265 sctp_addip_noauth = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
1267 /* Enable PR-SCTP by default. */
1268 sctp_prsctp_enable = 1;
1269
Vlad Yasevicha29a5bd2007-09-16 19:31:35 -07001270 /* Disable AUTH by default. */
1271 sctp_auth_enable = 0;
1272
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 sctp_sysctl_register();
1274
1275 INIT_LIST_HEAD(&sctp_address_families);
Vlad Yasevich270637a2008-03-20 15:17:14 -07001276 sctp_v4_pf_init();
1277 sctp_v6_pf_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Vlad Yasevich270637a2008-03-20 15:17:14 -07001279 /* Initialize the local address list. */
1280 INIT_LIST_HEAD(&sctp_local_addr_list);
1281 spin_lock_init(&sctp_local_addr_lock);
1282 sctp_get_local_addr_list();
1283
1284 status = sctp_v4_protosw_init();
1285
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001286 if (status)
Vlad Yasevich270637a2008-03-20 15:17:14 -07001287 goto err_protosw_init;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001288
Vlad Yasevich270637a2008-03-20 15:17:14 -07001289 status = sctp_v6_protosw_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (status)
Vlad Yasevich270637a2008-03-20 15:17:14 -07001291 goto err_v6_protosw_init;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 /* Initialize the control inode/socket for handling OOTB packets. */
1294 if ((status = sctp_ctl_sock_init())) {
1295 printk (KERN_ERR
1296 "SCTP: Failed to initialize the SCTP control sock.\n");
1297 goto err_ctl_sock_init;
1298 }
1299
Vlad Yasevich270637a2008-03-20 15:17:14 -07001300 status = sctp_v4_add_protocol();
1301 if (status)
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001302 goto err_add_protocol;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001303
1304 /* Register SCTP with inet6 layer. */
1305 status = sctp_v6_add_protocol();
1306 if (status)
1307 goto err_v6_add_protocol;
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 status = 0;
1310out:
1311 return status;
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001312err_v6_add_protocol:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001313 sctp_v6_del_protocol();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001314err_add_protocol:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001315 sctp_v4_del_protocol();
Denis V. Lunev56772422008-04-03 14:28:30 -07001316 inet_ctl_sock_destroy(sctp_ctl_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317err_ctl_sock_init:
Vlad Yasevich270637a2008-03-20 15:17:14 -07001318 sctp_v6_protosw_exit();
1319err_v6_protosw_init:
1320 sctp_v4_protosw_exit();
1321err_protosw_init:
1322 sctp_free_local_addr_list();
1323 sctp_v4_pf_exit();
1324 sctp_v6_pf_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 sctp_sysctl_unregister();
Neil Horman15efbe72008-02-15 09:53:59 -05001326 list_del(&sctp_af_inet.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 free_pages((unsigned long)sctp_port_hashtable,
1328 get_order(sctp_port_hashsize *
1329 sizeof(struct sctp_bind_hashbucket)));
1330err_bhash_alloc:
1331 kfree(sctp_ep_hashtable);
1332err_ehash_alloc:
1333 free_pages((unsigned long)sctp_assoc_hashtable,
1334 get_order(sctp_assoc_hashsize *
1335 sizeof(struct sctp_hashbucket)));
1336err_ahash_alloc:
1337 sctp_dbg_objcnt_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 sctp_proc_exit();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001339err_init_proc:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 cleanup_sctp_mibs();
1341err_init_mibs:
1342 kmem_cache_destroy(sctp_chunk_cachep);
1343err_chunk_cachep:
1344 kmem_cache_destroy(sctp_bucket_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 goto out;
1346}
1347
1348/* Exit handler for the SCTP protocol. */
1349SCTP_STATIC __exit void sctp_exit(void)
1350{
1351 /* BUG. This should probably do something useful like clean
1352 * up all the remaining associations and all that memory.
1353 */
1354
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001355 /* Unregister with inet6/inet layers. */
1356 sctp_v6_del_protocol();
Vlad Yasevich270637a2008-03-20 15:17:14 -07001357 sctp_v4_del_protocol();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
1359 /* Free the control endpoint. */
Denis V. Lunev56772422008-04-03 14:28:30 -07001360 inet_ctl_sock_destroy(sctp_ctl_sock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Vlad Yasevich270637a2008-03-20 15:17:14 -07001362 /* Free protosw registrations */
1363 sctp_v6_protosw_exit();
1364 sctp_v4_protosw_exit();
1365
1366 /* Free the local address list. */
1367 sctp_free_local_addr_list();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001368
1369 /* Unregister with socket layer. */
Vlad Yasevich270637a2008-03-20 15:17:14 -07001370 sctp_v6_pf_exit();
1371 sctp_v4_pf_exit();
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 sctp_sysctl_unregister();
Neil Horman15efbe72008-02-15 09:53:59 -05001374 list_del(&sctp_af_inet.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 free_pages((unsigned long)sctp_assoc_hashtable,
1377 get_order(sctp_assoc_hashsize *
1378 sizeof(struct sctp_hashbucket)));
1379 kfree(sctp_ep_hashtable);
1380 free_pages((unsigned long)sctp_port_hashtable,
1381 get_order(sctp_port_hashsize *
1382 sizeof(struct sctp_bind_hashbucket)));
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 sctp_dbg_objcnt_exit();
1385 sctp_proc_exit();
1386 cleanup_sctp_mibs();
1387
Sridhar Samudrala827bf122007-05-04 13:36:30 -07001388 kmem_cache_destroy(sctp_chunk_cachep);
1389 kmem_cache_destroy(sctp_bucket_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392module_init(sctp_init);
1393module_exit(sctp_exit);
1394
Arnaldo Carvalho de Melobb97d312005-08-09 20:19:14 -07001395/*
1396 * __stringify doesn't likes enums, so use IPPROTO_SCTP value (132) directly.
1397 */
1398MODULE_ALIAS("net-pf-" __stringify(PF_INET) "-proto-132");
Sridhar Samudrala882a3822006-12-13 16:33:35 -08001399MODULE_ALIAS("net-pf-" __stringify(PF_INET6) "-proto-132");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400MODULE_AUTHOR("Linux Kernel SCTP developers <lksctp-developers@lists.sourceforge.net>");
1401MODULE_DESCRIPTION("Support for the SCTP protocol (RFC2960)");
1402MODULE_LICENSE("GPL");