blob: fa91aff0238874ae21682c87abc27a640cf19401 [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (c) 1999-2000 Cisco, Inc.
3 * Copyright (c) 1999-2001 Motorola, Inc.
4 * Copyright (c) 2001-2003 International Business Machines, Corp.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 Nokia, Inc.
7 * Copyright (c) 2001 La Monte H.P. Yarroll
8 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * These functions handle all input from the IP layer into SCTP.
12 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050013 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * you can redistribute it and/or modify it under the terms of
15 * the GNU General Public License as published by
16 * the Free Software Foundation; either version 2, or (at your option)
17 * any later version.
18 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050019 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
21 * ************************
22 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
23 * See the GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with GNU CC; see the file COPYING. If not, write to
27 * the Free Software Foundation, 59 Temple Place - Suite 330,
28 * Boston, MA 02111-1307, USA.
29 *
30 * Please send any bug reports or fixes you make to the
31 * email address(es):
Daniel Borkmann91705c62013-07-23 14:51:47 +020032 * lksctp developers <linux-sctp@vger.kernel.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 *
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 * Xingang Guo <xingang.guo@intel.com>
41 * Jon Grimm <jgrimm@us.ibm.com>
42 * Hui Huang <hui.huang@nokia.com>
43 * Daisy Chang <daisyc@us.ibm.com>
44 * Sridhar Samudrala <sri@us.ibm.com>
45 * Ardelle Fan <ardelle.fan@intel.com>
46 *
47 * Any bugs reported given to us we will try to fix... any fixes shared will
48 * be incorporated into the next SCTP release.
49 */
50
51#include <linux/types.h>
52#include <linux/list.h> /* For struct list_head */
53#include <linux/socket.h>
54#include <linux/ip.h>
55#include <linux/time.h> /* For struct timeval */
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090056#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <net/ip.h>
58#include <net/icmp.h>
59#include <net/snmp.h>
60#include <net/sock.h>
61#include <net/xfrm.h>
62#include <net/sctp/sctp.h>
63#include <net/sctp/sm.h>
Vlad Yasevich9ad09772007-12-16 14:06:41 -080064#include <net/sctp/checksum.h>
Pavel Emelyanovdcfc23c2008-07-14 23:03:00 -070065#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/* Forward declarations for internal helpers. */
68static int sctp_rcv_ootb(struct sk_buff *);
Eric W. Biederman4110cc22012-08-06 08:41:13 +000069static struct sctp_association *__sctp_rcv_lookup(struct net *net,
70 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 const union sctp_addr *paddr,
Nicolas Dichtel57565992012-10-03 05:43:21 +000072 const union sctp_addr *laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct sctp_transport **transportp);
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +000074static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(struct net *net,
75 const union sctp_addr *laddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static struct sctp_association *__sctp_lookup_association(
Eric W. Biederman4110cc22012-08-06 08:41:13 +000077 struct net *net,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 const union sctp_addr *local,
79 const union sctp_addr *peer,
80 struct sctp_transport **pt);
81
Zhu Yi50b1a782010-03-04 18:01:44 +000082static int sctp_add_backlog(struct sock *sk, struct sk_buff *skb);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* Calculate the SCTP checksum of an SCTP packet. */
Eric W. Biedermanb01a2402012-08-06 08:47:55 +000086static inline int sctp_rcv_checksum(struct net *net, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087{
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -030088 struct sctphdr *sh = sctp_hdr(skb);
Vlad Yasevich4458f042009-02-13 08:33:42 +000089 __le32 cmp = sh->checksum;
Joe Stringer024ec3d2013-07-25 10:52:05 +090090 __le32 val = sctp_compute_cksum(skb, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 if (val != cmp) {
93 /* CRC failure, dump it. */
Eric W. Biedermanb01a2402012-08-06 08:47:55 +000094 SCTP_INC_STATS_BH(net, SCTP_MIB_CHECKSUMERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 return -1;
96 }
97 return 0;
98}
99
David S. Miller79af02c2005-07-08 21:47:49 -0700100struct sctp_input_cb {
101 union {
102 struct inet_skb_parm h4;
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000103#if IS_ENABLED(CONFIG_IPV6)
David S. Miller79af02c2005-07-08 21:47:49 -0700104 struct inet6_skb_parm h6;
105#endif
106 } header;
107 struct sctp_chunk *chunk;
108};
109#define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * This is the routine which IP calls when receiving an SCTP packet.
113 */
114int sctp_rcv(struct sk_buff *skb)
115{
116 struct sock *sk;
117 struct sctp_association *asoc;
118 struct sctp_endpoint *ep = NULL;
119 struct sctp_ep_common *rcvr;
120 struct sctp_transport *transport = NULL;
121 struct sctp_chunk *chunk;
122 struct sctphdr *sh;
123 union sctp_addr src;
124 union sctp_addr dest;
125 int family;
126 struct sctp_af *af;
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000127 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (skb->pkt_type!=PACKET_HOST)
130 goto discard_it;
131
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000132 SCTP_INC_STATS_BH(net, SCTP_MIB_INSCTPPACKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Herbert Xu28cd7752006-10-29 23:46:42 -0800134 if (skb_linearize(skb))
135 goto discard_it;
136
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -0300137 sh = sctp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 /* Pull up the IP and SCTP headers. */
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700140 __skb_pull(skb, skb_transport_offset(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 if (skb->len < sizeof(struct sctphdr))
142 goto discard_it;
Lucas Nussbaum06e86802009-02-13 08:33:41 +0000143 if (!sctp_checksum_disable && !skb_csum_unnecessary(skb) &&
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000144 sctp_rcv_checksum(net, skb) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 goto discard_it;
146
147 skb_pull(skb, sizeof(struct sctphdr));
148
149 /* Make sure we at least have chunk headers worth of data left. */
150 if (skb->len < sizeof(struct sctp_chunkhdr))
151 goto discard_it;
152
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700153 family = ipver2af(ip_hdr(skb)->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 af = sctp_get_af_specific(family);
155 if (unlikely(!af))
156 goto discard_it;
157
158 /* Initialize local addresses for lookups. */
159 af->from_skb(&src, skb, 1);
160 af->from_skb(&dest, skb, 0);
161
162 /* If the packet is to or from a non-unicast address,
163 * silently discard the packet.
164 *
165 * This is not clearly defined in the RFC except in section
166 * 8.4 - OOTB handling. However, based on the book "Stream Control
167 * Transmission Protocol" 2.1, "It is important to note that the
168 * IP address of an SCTP transport address must be a routable
169 * unicast address. In other words, IP multicast addresses and
170 * IP broadcast addresses cannot be used in an SCTP transport
171 * address."
172 */
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700173 if (!af->addr_valid(&src, NULL, skb) ||
174 !af->addr_valid(&dest, NULL, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 goto discard_it;
176
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000177 asoc = __sctp_rcv_lookup(net, skb, &src, &dest, &transport);
Al Viro1c7d1fc2006-11-20 17:08:09 -0800178
Neil Horman0fd9a652005-06-13 15:11:24 -0700179 if (!asoc)
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000180 ep = __sctp_rcv_lookup_endpoint(net, &dest);
Neil Horman0fd9a652005-06-13 15:11:24 -0700181
182 /* Retrieve the common input handling substructure. */
183 rcvr = asoc ? &asoc->base : &ep->base;
184 sk = rcvr->sk;
185
186 /*
187 * If a frame arrives on an interface and the receiving socket is
188 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
189 */
190 if (sk->sk_bound_dev_if && (sk->sk_bound_dev_if != af->skb_iif(skb)))
191 {
Neil Horman0fd9a652005-06-13 15:11:24 -0700192 if (asoc) {
193 sctp_association_put(asoc);
194 asoc = NULL;
195 } else {
196 sctp_endpoint_put(ep);
197 ep = NULL;
198 }
Eric W. Biederman2ce955032012-08-06 08:43:06 +0000199 sk = net->sctp.ctl_sock;
Neil Horman0fd9a652005-06-13 15:11:24 -0700200 ep = sctp_sk(sk)->ep;
201 sctp_endpoint_hold(ep);
Neil Horman0fd9a652005-06-13 15:11:24 -0700202 rcvr = &ep->base;
203 }
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /*
206 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
207 * An SCTP packet is called an "out of the blue" (OOTB)
208 * packet if it is correctly formed, i.e., passed the
209 * receiver's checksum check, but the receiver is not
210 * able to identify the association to which this
211 * packet belongs.
212 */
213 if (!asoc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (sctp_rcv_ootb(skb)) {
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000215 SCTP_INC_STATS_BH(net, SCTP_MIB_OUTOFBLUES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 goto discard_release;
217 }
218 }
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 if (!xfrm_policy_check(sk, XFRM_POLICY_IN, skb, family))
221 goto discard_release;
Patrick McHardyb59c2702006-01-06 23:06:10 -0800222 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Dmitry Mishinfda9ef52006-08-31 15:28:39 -0700224 if (sk_filter(sk, skb))
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900225 goto discard_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* Create an SCTP packet structure. */
228 chunk = sctp_chunkify(skb, asoc, sk);
Herbert Xu2babf9d2006-03-25 01:25:29 -0800229 if (!chunk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 goto discard_release;
David S. Miller79af02c2005-07-08 21:47:49 -0700231 SCTP_INPUT_CB(skb)->chunk = chunk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Remember what endpoint is to handle this packet. */
234 chunk->rcvr = rcvr;
235
236 /* Remember the SCTP header. */
237 chunk->sctp_hdr = sh;
238
239 /* Set the source and destination addresses of the incoming chunk. */
Al Virod55c41b2006-11-20 17:09:40 -0800240 sctp_init_addrs(chunk, &src, &dest);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /* Remember where we came from. */
243 chunk->transport = transport;
244
245 /* Acquire access to the sock lock. Note: We are safe from other
246 * bottom halves on this lock, but a user may be in the lock too,
247 * so check if it is busy.
248 */
249 sctp_bh_lock_sock(sk);
250
Vlad Yasevichae53b5b2009-01-22 14:53:23 -0800251 if (sk != rcvr->sk) {
252 /* Our cached sk is different from the rcvr->sk. This is
253 * because migrate()/accept() may have moved the association
254 * to a new socket and released all the sockets. So now we
255 * are holding a lock on the old socket while the user may
256 * be doing something with the new socket. Switch our veiw
257 * of the current sk.
258 */
259 sctp_bh_unlock_sock(sk);
260 sk = rcvr->sk;
261 sctp_bh_lock_sock(sk);
262 }
263
Sridhar Samudralaac0b0462006-08-22 00:15:33 -0700264 if (sock_owned_by_user(sk)) {
Zhu Yi50b1a782010-03-04 18:01:44 +0000265 if (sctp_add_backlog(sk, skb)) {
266 sctp_bh_unlock_sock(sk);
267 sctp_chunk_free(chunk);
268 skb = NULL; /* sctp_chunk_free already freed the skb */
269 goto discard_release;
270 }
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000271 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_BACKLOG);
Sridhar Samudralaac0b0462006-08-22 00:15:33 -0700272 } else {
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000273 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_SOFTIRQ);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700274 sctp_inq_push(&chunk->rcvr->inqueue, chunk);
Sridhar Samudralaac0b0462006-08-22 00:15:33 -0700275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 sctp_bh_unlock_sock(sk);
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700278
279 /* Release the asoc/ep ref we took in the lookup calls. */
280 if (asoc)
281 sctp_association_put(asoc);
282 else
283 sctp_endpoint_put(ep);
Sridhar Samudrala7a48f922006-01-17 11:51:28 -0800284
Herbert Xu2babf9d2006-03-25 01:25:29 -0800285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287discard_it:
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000288 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_DISCARDS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 kfree_skb(skb);
Herbert Xu2babf9d2006-03-25 01:25:29 -0800290 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292discard_release:
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700293 /* Release the asoc/ep ref we took in the lookup calls. */
Neil Horman0fd9a652005-06-13 15:11:24 -0700294 if (asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 sctp_association_put(asoc);
Neil Horman0fd9a652005-06-13 15:11:24 -0700296 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 sctp_endpoint_put(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 goto discard_it;
300}
301
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700302/* Process the backlog queue of the socket. Every skb on
303 * the backlog holds a ref on an association or endpoint.
304 * We hold this ref throughout the state machine to make
305 * sure that the structure we need is still around.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
307int sctp_backlog_rcv(struct sock *sk, struct sk_buff *skb)
308{
David S. Miller79af02c2005-07-08 21:47:49 -0700309 struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900310 struct sctp_inq *inqueue = &chunk->rcvr->inqueue;
311 struct sctp_ep_common *rcvr = NULL;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700312 int backloged = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900314 rcvr = chunk->rcvr;
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800315
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700316 /* If the rcvr is dead then the association or endpoint
317 * has been deleted and we can safely drop the chunk
318 * and refs that we are holding.
319 */
320 if (rcvr->dead) {
321 sctp_chunk_free(chunk);
322 goto done;
323 }
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800324
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700325 if (unlikely(rcvr->sk != sk)) {
326 /* In this case, the association moved from one socket to
327 * another. We are currently sitting on the backlog of the
328 * old socket, so we need to move.
329 * However, since we are here in the process context we
330 * need to take make sure that the user doesn't own
331 * the new socket when we process the packet.
332 * If the new socket is user-owned, queue the chunk to the
333 * backlog of the new socket without dropping any refs.
334 * Otherwise, we can safely push the chunk on the inqueue.
335 */
Sridhar Samudrala7a48f922006-01-17 11:51:28 -0800336
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700337 sk = rcvr->sk;
338 sctp_bh_lock_sock(sk);
339
340 if (sock_owned_by_user(sk)) {
Eric Dumazetf545a382012-04-22 23:34:26 +0000341 if (sk_add_backlog(sk, skb, sk->sk_rcvbuf))
Zhu Yi50b1a782010-03-04 18:01:44 +0000342 sctp_chunk_free(chunk);
343 else
344 backloged = 1;
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700345 } else
346 sctp_inq_push(inqueue, chunk);
347
348 sctp_bh_unlock_sock(sk);
349
350 /* If the chunk was backloged again, don't drop refs */
351 if (backloged)
352 return 0;
353 } else {
354 sctp_inq_push(inqueue, chunk);
355 }
356
357done:
358 /* Release the refs we took in sctp_add_backlog */
359 if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
360 sctp_association_put(sctp_assoc(rcvr));
361 else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
362 sctp_endpoint_put(sctp_ep(rcvr));
363 else
364 BUG();
365
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900366 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Zhu Yi50b1a782010-03-04 18:01:44 +0000369static int sctp_add_backlog(struct sock *sk, struct sk_buff *skb)
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800370{
Vladislav Yasevich61c9fed2006-05-19 11:01:18 -0700371 struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
372 struct sctp_ep_common *rcvr = chunk->rcvr;
Zhu Yi50b1a782010-03-04 18:01:44 +0000373 int ret;
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800374
Eric Dumazetf545a382012-04-22 23:34:26 +0000375 ret = sk_add_backlog(sk, skb, sk->sk_rcvbuf);
Zhu Yi50b1a782010-03-04 18:01:44 +0000376 if (!ret) {
377 /* Hold the assoc/ep while hanging on the backlog queue.
378 * This way, we know structures we need will not disappear
379 * from us
380 */
381 if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
382 sctp_association_hold(sctp_assoc(rcvr));
383 else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
384 sctp_endpoint_hold(sctp_ep(rcvr));
385 else
386 BUG();
387 }
388 return ret;
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800389
Sridhar Samudralac4d24442006-01-17 11:56:26 -0800390}
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392/* Handle icmp frag needed error. */
393void sctp_icmp_frag_needed(struct sock *sk, struct sctp_association *asoc,
394 struct sctp_transport *t, __u32 pmtu)
395{
Wei Yongjun91bd6b12008-10-23 00:59:52 -0700396 if (!t || (t->pathmtu <= pmtu))
Frank Filz52ccb8e2005-12-22 11:36:46 -0800397 return;
398
Vlad Yasevich8a479492007-06-07 14:21:05 -0400399 if (sock_owned_by_user(sk)) {
400 asoc->pmtu_pending = 1;
401 t->pmtu_pending = 1;
402 return;
403 }
404
Frank Filz52ccb8e2005-12-22 11:36:46 -0800405 if (t->param_flags & SPP_PMTUD_ENABLE) {
Vlad Yasevichc910b472007-06-07 13:47:03 -0400406 /* Update transports view of the MTU */
David S. Miller02f3d4c2012-07-16 03:57:14 -0700407 sctp_transport_update_pmtu(sk, t, pmtu);
Frank Filz52ccb8e2005-12-22 11:36:46 -0800408
409 /* Update association pmtu. */
David S. Miller02f3d4c2012-07-16 03:57:14 -0700410 sctp_assoc_sync_pmtu(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
Frank Filz52ccb8e2005-12-22 11:36:46 -0800413 /* Retransmit with the new pmtu setting.
414 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
415 * Needed will never be sent, but if a message was sent before
416 * PMTU discovery was disabled that was larger than the PMTU, it
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900417 * would not be fragmented, so it must be re-transmitted fragmented.
Frank Filz52ccb8e2005-12-22 11:36:46 -0800418 */
419 sctp_retransmit(&asoc->outqueue, t, SCTP_RTXR_PMTUD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420}
421
David S. Millerec18d9a2012-07-12 00:25:15 -0700422void sctp_icmp_redirect(struct sock *sk, struct sctp_transport *t,
423 struct sk_buff *skb)
David S. Miller55be7a92012-07-11 21:27:49 -0700424{
425 struct dst_entry *dst;
426
427 if (!t)
428 return;
429 dst = sctp_transport_dst_check(t);
David S. Miller1ed5c482012-07-12 00:41:25 -0700430 if (dst)
David S. Miller6700c272012-07-17 03:29:28 -0700431 dst->ops->redirect(dst, sk, skb);
David S. Miller55be7a92012-07-11 21:27:49 -0700432}
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434/*
435 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
436 *
437 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
438 * or a "Protocol Unreachable" treat this message as an abort
439 * with the T bit set.
440 *
441 * This function sends an event to the state machine, which will abort the
442 * association.
443 *
444 */
445void sctp_icmp_proto_unreachable(struct sock *sk,
YOSHIFUJI Hideakid808ad92007-02-09 23:25:18 +0900446 struct sctp_association *asoc,
447 struct sctp_transport *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
Vlad Yasevich50b5d6a2010-05-06 00:56:07 -0700449 if (sock_owned_by_user(sk)) {
450 if (timer_pending(&t->proto_unreach_timer))
451 return;
452 else {
453 if (!mod_timer(&t->proto_unreach_timer,
454 jiffies + (HZ/20)))
455 sctp_association_hold(asoc);
456 }
Vlad Yasevich50b5d6a2010-05-06 00:56:07 -0700457 } else {
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000458 struct net *net = sock_net(sk);
459
Daniel Borkmannbb333812013-06-28 19:49:40 +0200460 pr_debug("%s: unrecognized next header type "
461 "encountered!\n", __func__);
462
Ying Xue25cc4ae2013-02-03 20:32:57 +0000463 if (del_timer(&t->proto_unreach_timer))
Vlad Yasevich50b5d6a2010-05-06 00:56:07 -0700464 sctp_association_put(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Eric W. Biederman55e26eb2012-08-07 07:25:24 +0000466 sctp_do_sm(net, SCTP_EVENT_T_OTHER,
Vlad Yasevich50b5d6a2010-05-06 00:56:07 -0700467 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH),
468 asoc->state, asoc->ep, asoc, t,
469 GFP_ATOMIC);
470 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
473/* Common lookup code for icmp/icmpv6 error handler. */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000474struct sock *sctp_err_lookup(struct net *net, int family, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 struct sctphdr *sctphdr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 struct sctp_association **app,
477 struct sctp_transport **tpp)
478{
479 union sctp_addr saddr;
480 union sctp_addr daddr;
481 struct sctp_af *af;
482 struct sock *sk = NULL;
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700483 struct sctp_association *asoc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 struct sctp_transport *transport = NULL;
Wei Yongjun7115e632008-06-19 16:07:48 -0700485 struct sctp_init_chunk *chunkhdr;
486 __u32 vtag = ntohl(sctphdr->vtag);
487 int len = skb->len - ((void *)sctphdr - (void *)skb->data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700489 *app = NULL; *tpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 af = sctp_get_af_specific(family);
492 if (unlikely(!af)) {
493 return NULL;
494 }
495
496 /* Initialize local addresses for lookups. */
497 af->from_skb(&saddr, skb, 1);
498 af->from_skb(&daddr, skb, 0);
499
500 /* Look for an association that matches the incoming ICMP error
501 * packet.
502 */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000503 asoc = __sctp_lookup_association(net, &saddr, &daddr, &transport);
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700504 if (!asoc)
505 return NULL;
506
507 sk = asoc->base.sk;
508
Wei Yongjun7115e632008-06-19 16:07:48 -0700509 /* RFC 4960, Appendix C. ICMP Handling
510 *
511 * ICMP6) An implementation MUST validate that the Verification Tag
512 * contained in the ICMP message matches the Verification Tag of
513 * the peer. If the Verification Tag is not 0 and does NOT
514 * match, discard the ICMP message. If it is 0 and the ICMP
515 * message contains enough bytes to verify that the chunk type is
516 * an INIT chunk and that the Initiate Tag matches the tag of the
517 * peer, continue with ICMP7. If the ICMP message is too short
518 * or the chunk type or the Initiate Tag does not match, silently
519 * discard the packet.
520 */
521 if (vtag == 0) {
Joe Perchesea110732011-06-13 16:21:26 +0000522 chunkhdr = (void *)sctphdr + sizeof(struct sctphdr);
Wei Yongjun7115e632008-06-19 16:07:48 -0700523 if (len < sizeof(struct sctphdr) + sizeof(sctp_chunkhdr_t)
524 + sizeof(__be32) ||
525 chunkhdr->chunk_hdr.type != SCTP_CID_INIT ||
526 ntohl(chunkhdr->init_hdr.init_tag) != asoc->c.my_vtag) {
527 goto out;
528 }
529 } else if (vtag != asoc->c.peer_vtag) {
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700530 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 sctp_bh_lock_sock(sk);
534
535 /* If too many ICMPs get dropped on busy
536 * servers this needs to be solved differently.
537 */
538 if (sock_owned_by_user(sk))
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000539 NET_INC_STATS_BH(net, LINUX_MIB_LOCKDROPPEDICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 *app = asoc;
542 *tpp = transport;
543 return sk;
544
545out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (asoc)
547 sctp_association_put(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return NULL;
549}
550
551/* Common cleanup code for icmp/icmpv6 error handler. */
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700552void sctp_err_finish(struct sock *sk, struct sctp_association *asoc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 sctp_bh_unlock_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (asoc)
556 sctp_association_put(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
559/*
560 * This routine is called by the ICMP module when it gets some
561 * sort of error condition. If err < 0 then the socket should
562 * be closed and the error returned to the user. If err > 0
563 * it's just the icmp type << 8 | icmp code. After adjustment
564 * header points to the first 8 bytes of the sctp header. We need
565 * to find the appropriate port.
566 *
567 * The locking strategy used here is very "optimistic". When
568 * someone else accesses the socket the ICMP is just dropped
569 * and for some paths there is no check at all.
570 * A more general error queue to queue errors for later handling
571 * is probably better.
572 *
573 */
574void sctp_v4_err(struct sk_buff *skb, __u32 info)
575{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000576 const struct iphdr *iph = (const struct iphdr *)skb->data;
Arnaldo Carvalho de Meloa27ef742007-03-13 17:17:10 -0300577 const int ihlen = iph->ihl * 4;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300578 const int type = icmp_hdr(skb)->type;
579 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 struct sock *sk;
Sridhar Samudrala8de8c872006-05-19 10:58:12 -0700581 struct sctp_association *asoc = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 struct sctp_transport *transport;
583 struct inet_sock *inet;
Simon Hormanaef6de52013-05-30 20:36:11 +0000584 __u16 saveip, savesctp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int err;
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000586 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Arnaldo Carvalho de Meloa27ef742007-03-13 17:17:10 -0300588 if (skb->len < ihlen + 8) {
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000589 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 return;
591 }
592
593 /* Fix up skb to look at the embedded net header. */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700594 saveip = skb->network_header;
595 savesctp = skb->transport_header;
Arnaldo Carvalho de Melo31c77112007-03-10 19:04:55 -0300596 skb_reset_network_header(skb);
Arnaldo Carvalho de Meloa27ef742007-03-13 17:17:10 -0300597 skb_set_transport_header(skb, ihlen);
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000598 sk = sctp_err_lookup(net, AF_INET, skb, sctp_hdr(skb), &asoc, &transport);
Arnaldo Carvalho de Melo2e07fa92007-04-10 21:22:35 -0700599 /* Put back, the original values. */
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700600 skb->network_header = saveip;
601 skb->transport_header = savesctp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (!sk) {
Eric W. Biedermanb01a2402012-08-06 08:47:55 +0000603 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 return;
605 }
606 /* Warning: The sock lock is held. Remember to call
607 * sctp_err_finish!
608 */
609
610 switch (type) {
611 case ICMP_PARAMETERPROB:
612 err = EPROTO;
613 break;
614 case ICMP_DEST_UNREACH:
615 if (code > NR_ICMP_UNREACH)
616 goto out_unlock;
617
618 /* PMTU discovery (RFC1191) */
619 if (ICMP_FRAG_NEEDED == code) {
620 sctp_icmp_frag_needed(sk, asoc, transport, info);
621 goto out_unlock;
622 }
623 else {
624 if (ICMP_PROT_UNREACH == code) {
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700625 sctp_icmp_proto_unreachable(sk, asoc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 transport);
627 goto out_unlock;
628 }
629 }
630 err = icmp_err_convert[code].errno;
631 break;
632 case ICMP_TIME_EXCEEDED:
633 /* Ignore any time exceeded errors due to fragment reassembly
634 * timeouts.
635 */
636 if (ICMP_EXC_FRAGTIME == code)
637 goto out_unlock;
638
639 err = EHOSTUNREACH;
640 break;
David S. Miller55be7a92012-07-11 21:27:49 -0700641 case ICMP_REDIRECT:
642 sctp_icmp_redirect(sk, transport, skb);
643 err = 0;
644 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 default:
646 goto out_unlock;
647 }
648
649 inet = inet_sk(sk);
650 if (!sock_owned_by_user(sk) && inet->recverr) {
651 sk->sk_err = err;
652 sk->sk_error_report(sk);
653 } else { /* Only an error on timeout */
654 sk->sk_err_soft = err;
655 }
656
657out_unlock:
Sridhar Samudralad1ad1ff2005-07-18 13:44:10 -0700658 sctp_err_finish(sk, asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/*
662 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
663 *
664 * This function scans all the chunks in the OOTB packet to determine if
665 * the packet should be discarded right away. If a response might be needed
666 * for this packet, or, if further processing is possible, the packet will
667 * be queued to a proper inqueue for the next phase of handling.
668 *
669 * Output:
670 * Return 0 - If further processing is needed.
671 * Return 1 - If the packet can be discarded right away.
672 */
sebastian@breakpoint.cc04675212007-07-26 23:21:31 +0200673static int sctp_rcv_ootb(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 sctp_chunkhdr_t *ch;
676 __u8 *ch_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 ch = (sctp_chunkhdr_t *) skb->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679
680 /* Scan through all the chunks in the packet. */
Tsutomu Fujiia7d1f1b2006-01-17 11:57:09 -0800681 do {
682 /* Break out if chunk length is less then minimal. */
683 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
684 break;
685
686 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700687 if (ch_end > skb_tail_pointer(skb))
Tsutomu Fujiia7d1f1b2006-01-17 11:57:09 -0800688 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
691 * receiver MUST silently discard the OOTB packet and take no
692 * further action.
693 */
694 if (SCTP_CID_ABORT == ch->type)
695 goto discard;
696
697 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
698 * chunk, the receiver should silently discard the packet
699 * and take no further action.
700 */
701 if (SCTP_CID_SHUTDOWN_COMPLETE == ch->type)
702 goto discard;
703
Vlad Yasevich3c77f962007-09-17 15:14:28 -0400704 /* RFC 4460, 2.11.2
705 * This will discard packets with INIT chunk bundled as
706 * subsequent chunks in the packet. When INIT is first,
707 * the normal INIT processing will discard the chunk.
708 */
709 if (SCTP_CID_INIT == ch->type && (void *)ch != skb->data)
710 goto discard;
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 ch = (sctp_chunkhdr_t *) ch_end;
Arnaldo Carvalho de Melo27a884d2007-04-19 20:29:13 -0700713 } while (ch_end < skb_tail_pointer(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715 return 0;
716
717discard:
718 return 1;
719}
720
721/* Insert endpoint into the hash table. */
722static void __sctp_hash_endpoint(struct sctp_endpoint *ep)
723{
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000724 struct net *net = sock_net(ep->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct sctp_ep_common *epb;
726 struct sctp_hashbucket *head;
727
728 epb = &ep->base;
729
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000730 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 head = &sctp_ep_hashtable[epb->hashent];
732
733 sctp_write_lock(&head->lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -0500734 hlist_add_head(&epb->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 sctp_write_unlock(&head->lock);
736}
737
738/* Add an endpoint to the hash. Local BH-safe. */
739void sctp_hash_endpoint(struct sctp_endpoint *ep)
740{
741 sctp_local_bh_disable();
742 __sctp_hash_endpoint(ep);
743 sctp_local_bh_enable();
744}
745
746/* Remove endpoint from the hash table. */
747static void __sctp_unhash_endpoint(struct sctp_endpoint *ep)
748{
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000749 struct net *net = sock_net(ep->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct sctp_hashbucket *head;
751 struct sctp_ep_common *epb;
752
753 epb = &ep->base;
754
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000755 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 head = &sctp_ep_hashtable[epb->hashent];
758
759 sctp_write_lock(&head->lock);
Neil Horman2eebc1e2012-07-16 09:13:51 +0000760 hlist_del_init(&epb->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 sctp_write_unlock(&head->lock);
762}
763
764/* Remove endpoint from the hash. Local BH-safe. */
765void sctp_unhash_endpoint(struct sctp_endpoint *ep)
766{
767 sctp_local_bh_disable();
768 __sctp_unhash_endpoint(ep);
769 sctp_local_bh_enable();
770}
771
772/* Look up an endpoint. */
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000773static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(struct net *net,
774 const union sctp_addr *laddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct sctp_hashbucket *head;
777 struct sctp_ep_common *epb;
778 struct sctp_endpoint *ep;
779 int hash;
780
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000781 hash = sctp_ep_hashfn(net, ntohs(laddr->v4.sin_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 head = &sctp_ep_hashtable[hash];
783 read_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800784 sctp_for_each_hentry(epb, &head->chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 ep = sctp_ep(epb);
Eric W. Biederman4cdadcb2012-08-06 08:40:21 +0000786 if (sctp_endpoint_is_match(ep, net, laddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 goto hit;
788 }
789
Eric W. Biederman2ce955032012-08-06 08:43:06 +0000790 ep = sctp_sk(net->sctp.ctl_sock)->ep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792hit:
793 sctp_endpoint_hold(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 read_unlock(&head->lock);
795 return ep;
796}
797
798/* Insert association into the hash table. */
799static void __sctp_hash_established(struct sctp_association *asoc)
800{
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000801 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 struct sctp_ep_common *epb;
803 struct sctp_hashbucket *head;
804
805 epb = &asoc->base;
806
807 /* Calculate which chain this entry will belong to. */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000808 epb->hashent = sctp_assoc_hashfn(net, epb->bind_addr.port,
809 asoc->peer.port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 head = &sctp_assoc_hashtable[epb->hashent];
812
813 sctp_write_lock(&head->lock);
Vlad Yasevichd970dbf2007-11-09 11:43:40 -0500814 hlist_add_head(&epb->node, &head->chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 sctp_write_unlock(&head->lock);
816}
817
818/* Add an association to the hash. Local BH-safe. */
819void sctp_hash_established(struct sctp_association *asoc)
820{
Vlad Yasevichde76e692006-10-30 18:55:11 -0800821 if (asoc->temp)
822 return;
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 sctp_local_bh_disable();
825 __sctp_hash_established(asoc);
826 sctp_local_bh_enable();
827}
828
829/* Remove association from the hash table. */
830static void __sctp_unhash_established(struct sctp_association *asoc)
831{
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000832 struct net *net = sock_net(asoc->base.sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct sctp_hashbucket *head;
834 struct sctp_ep_common *epb;
835
836 epb = &asoc->base;
837
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000838 epb->hashent = sctp_assoc_hashfn(net, epb->bind_addr.port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 asoc->peer.port);
840
841 head = &sctp_assoc_hashtable[epb->hashent];
842
843 sctp_write_lock(&head->lock);
Neil Horman2eebc1e2012-07-16 09:13:51 +0000844 hlist_del_init(&epb->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 sctp_write_unlock(&head->lock);
846}
847
848/* Remove association from the hash table. Local BH-safe. */
849void sctp_unhash_established(struct sctp_association *asoc)
850{
Vlad Yasevichde76e692006-10-30 18:55:11 -0800851 if (asoc->temp)
852 return;
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 sctp_local_bh_disable();
855 __sctp_unhash_established(asoc);
856 sctp_local_bh_enable();
857}
858
859/* Look up an association. */
860static struct sctp_association *__sctp_lookup_association(
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000861 struct net *net,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 const union sctp_addr *local,
863 const union sctp_addr *peer,
864 struct sctp_transport **pt)
865{
866 struct sctp_hashbucket *head;
867 struct sctp_ep_common *epb;
868 struct sctp_association *asoc;
869 struct sctp_transport *transport;
870 int hash;
871
872 /* Optimize here for direct hit, only listening connections can
873 * have wildcards anyways.
874 */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000875 hash = sctp_assoc_hashfn(net, ntohs(local->v4.sin_port),
876 ntohs(peer->v4.sin_port));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 head = &sctp_assoc_hashtable[hash];
878 read_lock(&head->lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800879 sctp_for_each_hentry(epb, &head->chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 asoc = sctp_assoc(epb);
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000881 transport = sctp_assoc_is_match(asoc, net, local, peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (transport)
883 goto hit;
884 }
885
886 read_unlock(&head->lock);
887
888 return NULL;
889
890hit:
891 *pt = transport;
892 sctp_association_hold(asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 read_unlock(&head->lock);
894 return asoc;
895}
896
897/* Look up an association. BH-safe. */
Daniel Borkmanndda91922013-06-17 11:40:05 +0200898static
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000899struct sctp_association *sctp_lookup_association(struct net *net,
900 const union sctp_addr *laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 const union sctp_addr *paddr,
Daniel Borkmanndda91922013-06-17 11:40:05 +0200902 struct sctp_transport **transportp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct sctp_association *asoc;
905
906 sctp_local_bh_disable();
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000907 asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 sctp_local_bh_enable();
909
910 return asoc;
911}
912
913/* Is there an association matching the given local and peer addresses? */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000914int sctp_has_association(struct net *net,
915 const union sctp_addr *laddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 const union sctp_addr *paddr)
917{
918 struct sctp_association *asoc;
919 struct sctp_transport *transport;
920
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000921 if ((asoc = sctp_lookup_association(net, laddr, paddr, &transport))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 sctp_association_put(asoc);
923 return 1;
924 }
925
926 return 0;
927}
928
929/*
930 * SCTP Implementors Guide, 2.18 Handling of address
931 * parameters within the INIT or INIT-ACK.
932 *
933 * D) When searching for a matching TCB upon reception of an INIT
934 * or INIT-ACK chunk the receiver SHOULD use not only the
935 * source address of the packet (containing the INIT or
936 * INIT-ACK) but the receiver SHOULD also use all valid
937 * address parameters contained within the chunk.
938 *
939 * 2.18.3 Solution description
940 *
941 * This new text clearly specifies to an implementor the need
942 * to look within the INIT or INIT-ACK. Any implementation that
943 * does not do this, may not be able to establish associations
944 * in certain circumstances.
945 *
946 */
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000947static struct sctp_association *__sctp_rcv_init_lookup(struct net *net,
948 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 const union sctp_addr *laddr, struct sctp_transport **transportp)
950{
951 struct sctp_association *asoc;
952 union sctp_addr addr;
953 union sctp_addr *paddr = &addr;
Arnaldo Carvalho de Melo2c0fd382007-03-13 13:59:32 -0300954 struct sctphdr *sh = sctp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 union sctp_params params;
956 sctp_init_chunk_t *init;
957 struct sctp_transport *transport;
958 struct sctp_af *af;
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /*
961 * This code will NOT touch anything inside the chunk--it is
962 * strictly READ-ONLY.
963 *
964 * RFC 2960 3 SCTP packet Format
965 *
966 * Multiple chunks can be bundled into one SCTP packet up to
967 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
968 * COMPLETE chunks. These chunks MUST NOT be bundled with any
969 * other chunk in a packet. See Section 6.10 for more details
970 * on chunk bundling.
971 */
972
973 /* Find the start of the TLVs and the end of the chunk. This is
974 * the region we search for address parameters.
975 */
976 init = (sctp_init_chunk_t *)skb->data;
977
978 /* Walk the parameters looking for embedded addresses. */
979 sctp_walk_params(params, init, init_hdr.params) {
980
981 /* Note: Ignoring hostname addresses. */
982 af = sctp_get_af_specific(param_type2af(params.p->type));
983 if (!af)
984 continue;
985
Al Virodd86d132006-11-20 17:11:13 -0800986 af->from_addr_param(paddr, params.addr, sh->source, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Eric W. Biederman4110cc22012-08-06 08:41:13 +0000988 asoc = __sctp_lookup_association(net, laddr, paddr, &transport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (asoc)
990 return asoc;
991 }
992
993 return NULL;
994}
995
Vlad Yasevichdf218572007-12-20 14:10:38 -0800996/* ADD-IP, Section 5.2
997 * When an endpoint receives an ASCONF Chunk from the remote peer
998 * special procedures may be needed to identify the association the
999 * ASCONF Chunk is associated with. To properly find the association
1000 * the following procedures SHOULD be followed:
1001 *
1002 * D2) If the association is not found, use the address found in the
1003 * Address Parameter TLV combined with the port number found in the
1004 * SCTP common header. If found proceed to rule D4.
1005 *
1006 * D2-ext) If more than one ASCONF Chunks are packed together, use the
1007 * address found in the ASCONF Address Parameter TLV of each of the
1008 * subsequent ASCONF Chunks. If found, proceed to rule D4.
1009 */
1010static struct sctp_association *__sctp_rcv_asconf_lookup(
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001011 struct net *net,
Vlad Yasevichdf218572007-12-20 14:10:38 -08001012 sctp_chunkhdr_t *ch,
1013 const union sctp_addr *laddr,
Al Virobc92dd12008-03-17 22:47:32 -07001014 __be16 peer_port,
Vlad Yasevichdf218572007-12-20 14:10:38 -08001015 struct sctp_transport **transportp)
1016{
1017 sctp_addip_chunk_t *asconf = (struct sctp_addip_chunk *)ch;
1018 struct sctp_af *af;
1019 union sctp_addr_param *param;
1020 union sctp_addr paddr;
1021
1022 /* Skip over the ADDIP header and find the Address parameter */
1023 param = (union sctp_addr_param *)(asconf + 1);
1024
Shan Wei6a435732011-04-18 19:11:47 +00001025 af = sctp_get_af_specific(param_type2af(param->p.type));
Vlad Yasevichdf218572007-12-20 14:10:38 -08001026 if (unlikely(!af))
1027 return NULL;
1028
1029 af->from_addr_param(&paddr, param, peer_port, 0);
1030
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001031 return __sctp_lookup_association(net, laddr, &paddr, transportp);
Vlad Yasevichdf218572007-12-20 14:10:38 -08001032}
1033
1034
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001035/* SCTP-AUTH, Section 6.3:
1036* If the receiver does not find a STCB for a packet containing an AUTH
1037* chunk as the first chunk and not a COOKIE-ECHO chunk as the second
1038* chunk, it MUST use the chunks after the AUTH chunk to look up an existing
1039* association.
1040*
1041* This means that any chunks that can help us identify the association need
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001042* to be looked at to find this association.
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001043*/
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001044static struct sctp_association *__sctp_rcv_walk_lookup(struct net *net,
1045 struct sk_buff *skb,
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001046 const union sctp_addr *laddr,
1047 struct sctp_transport **transportp)
1048{
Vlad Yasevichdf218572007-12-20 14:10:38 -08001049 struct sctp_association *asoc = NULL;
1050 sctp_chunkhdr_t *ch;
1051 int have_auth = 0;
1052 unsigned int chunk_num = 1;
1053 __u8 *ch_end;
1054
1055 /* Walk through the chunks looking for AUTH or ASCONF chunks
1056 * to help us find the association.
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001057 */
Vlad Yasevichdf218572007-12-20 14:10:38 -08001058 ch = (sctp_chunkhdr_t *) skb->data;
1059 do {
1060 /* Break out if chunk length is less then minimal. */
1061 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
1062 break;
1063
1064 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
1065 if (ch_end > skb_tail_pointer(skb))
1066 break;
1067
1068 switch(ch->type) {
1069 case SCTP_CID_AUTH:
1070 have_auth = chunk_num;
1071 break;
1072
1073 case SCTP_CID_COOKIE_ECHO:
1074 /* If a packet arrives containing an AUTH chunk as
1075 * a first chunk, a COOKIE-ECHO chunk as the second
1076 * chunk, and possibly more chunks after them, and
1077 * the receiver does not have an STCB for that
1078 * packet, then authentication is based on
1079 * the contents of the COOKIE- ECHO chunk.
1080 */
1081 if (have_auth == 1 && chunk_num == 2)
1082 return NULL;
1083 break;
1084
1085 case SCTP_CID_ASCONF:
Eric W. Biedermane1fc3b12012-08-07 07:29:57 +00001086 if (have_auth || net->sctp.addip_noauth)
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001087 asoc = __sctp_rcv_asconf_lookup(
1088 net, ch, laddr,
Vlad Yasevichdf218572007-12-20 14:10:38 -08001089 sctp_hdr(skb)->source,
1090 transportp);
1091 default:
1092 break;
1093 }
1094
1095 if (asoc)
1096 break;
1097
1098 ch = (sctp_chunkhdr_t *) ch_end;
1099 chunk_num++;
1100 } while (ch_end < skb_tail_pointer(skb));
1101
1102 return asoc;
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001103}
1104
1105/*
1106 * There are circumstances when we need to look inside the SCTP packet
1107 * for information to help us find the association. Examples
1108 * include looking inside of INIT/INIT-ACK chunks or after the AUTH
1109 * chunks.
1110 */
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001111static struct sctp_association *__sctp_rcv_lookup_harder(struct net *net,
1112 struct sk_buff *skb,
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001113 const union sctp_addr *laddr,
1114 struct sctp_transport **transportp)
1115{
1116 sctp_chunkhdr_t *ch;
1117
1118 ch = (sctp_chunkhdr_t *) skb->data;
1119
Vlad Yasevichdf218572007-12-20 14:10:38 -08001120 /* The code below will attempt to walk the chunk and extract
1121 * parameter information. Before we do that, we need to verify
1122 * that the chunk length doesn't cause overflow. Otherwise, we'll
1123 * walk off the end.
1124 */
1125 if (WORD_ROUND(ntohs(ch->length)) > skb->len)
1126 return NULL;
1127
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001128 /* If this is INIT/INIT-ACK look inside the chunk too. */
1129 switch (ch->type) {
1130 case SCTP_CID_INIT:
1131 case SCTP_CID_INIT_ACK:
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001132 return __sctp_rcv_init_lookup(net, skb, laddr, transportp);
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001133 break;
1134
Vlad Yasevichdf218572007-12-20 14:10:38 -08001135 default:
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001136 return __sctp_rcv_walk_lookup(net, skb, laddr, transportp);
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001137 break;
1138 }
1139
Vlad Yasevichdf218572007-12-20 14:10:38 -08001140
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001141 return NULL;
1142}
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144/* Lookup an association for an inbound skb. */
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001145static struct sctp_association *__sctp_rcv_lookup(struct net *net,
1146 struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 const union sctp_addr *paddr,
1148 const union sctp_addr *laddr,
1149 struct sctp_transport **transportp)
1150{
1151 struct sctp_association *asoc;
1152
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001153 asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 /* Further lookup for INIT/INIT-ACK packets.
1156 * SCTP Implementors Guide, 2.18 Handling of address
1157 * parameters within the INIT or INIT-ACK.
1158 */
1159 if (!asoc)
Eric W. Biederman4110cc22012-08-06 08:41:13 +00001160 asoc = __sctp_rcv_lookup_harder(net, skb, laddr, transportp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
1162 return asoc;
1163}