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