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