drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / net / sctp / input.c
CommitLineData
60c778b2 1/* SCTP kernel implementation
1da177e4
LT
2 * 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 *
60c778b2 9 * This file is part of the SCTP kernel implementation
1da177e4
LT
10 *
11 * These functions handle all input from the IP layer into SCTP.
12 *
60c778b2 13 * This SCTP implementation is free software;
1da177e4
LT
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 *
60c778b2 19 * This SCTP implementation is distributed in the hope that it
1da177e4
LT
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 * 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 */
5a0e3ad6 56#include <linux/slab.h>
1da177e4
LT
57#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>
9ad0977f 64#include <net/sctp/checksum.h>
dcfc23ca 65#include <net/net_namespace.h>
1da177e4
LT
66
67/* Forward declarations for internal helpers. */
68static int sctp_rcv_ootb(struct sk_buff *);
4110cc25
EB
69static struct sctp_association *__sctp_rcv_lookup(struct net *net,
70 struct sk_buff *skb,
1da177e4 71 const union sctp_addr *paddr,
57565993 72 const union sctp_addr *laddr,
1da177e4 73 struct sctp_transport **transportp);
4cdadcbc
EB
74static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(struct net *net,
75 const union sctp_addr *laddr);
1da177e4 76static struct sctp_association *__sctp_lookup_association(
4110cc25 77 struct net *net,
1da177e4
LT
78 const union sctp_addr *local,
79 const union sctp_addr *peer,
80 struct sctp_transport **pt);
81
50b1a782 82static int sctp_add_backlog(struct sock *sk, struct sk_buff *skb);
61c9fed4 83
1da177e4
LT
84
85/* Calculate the SCTP checksum of an SCTP packet. */
b01a2407 86static inline int sctp_rcv_checksum(struct net *net, struct sk_buff *skb)
1da177e4 87{
2c0fd387 88 struct sctphdr *sh = sctp_hdr(skb);
4458f04c 89 __le32 cmp = sh->checksum;
1b003be3 90 struct sk_buff *list;
4458f04c
VY
91 __le32 val;
92 __u32 tmp = sctp_start_cksum((__u8 *)sh, skb_headlen(skb));
1da177e4 93
1b003be3 94 skb_walk_frags(skb, list)
4458f04c
VY
95 tmp = sctp_update_cksum((__u8 *)list->data, skb_headlen(list),
96 tmp);
1da177e4 97
4458f04c 98 val = sctp_end_cksum(tmp);
1da177e4
LT
99
100 if (val != cmp) {
101 /* CRC failure, dump it. */
b01a2407 102 SCTP_INC_STATS_BH(net, SCTP_MIB_CHECKSUMERRORS);
1da177e4
LT
103 return -1;
104 }
105 return 0;
106}
107
79af02c2
DM
108struct sctp_input_cb {
109 union {
110 struct inet_skb_parm h4;
dfd56b8b 111#if IS_ENABLED(CONFIG_IPV6)
79af02c2
DM
112 struct inet6_skb_parm h6;
113#endif
114 } header;
115 struct sctp_chunk *chunk;
116};
117#define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
118
1da177e4
LT
119/*
120 * This is the routine which IP calls when receiving an SCTP packet.
121 */
122int sctp_rcv(struct sk_buff *skb)
123{
124 struct sock *sk;
125 struct sctp_association *asoc;
126 struct sctp_endpoint *ep = NULL;
127 struct sctp_ep_common *rcvr;
128 struct sctp_transport *transport = NULL;
129 struct sctp_chunk *chunk;
130 struct sctphdr *sh;
131 union sctp_addr src;
132 union sctp_addr dest;
133 int family;
134 struct sctp_af *af;
4cdadcbc 135 struct net *net = dev_net(skb->dev);
1da177e4
LT
136
137 if (skb->pkt_type!=PACKET_HOST)
138 goto discard_it;
139
b01a2407 140 SCTP_INC_STATS_BH(net, SCTP_MIB_INSCTPPACKS);
1da177e4 141
28cd7752
HX
142 if (skb_linearize(skb))
143 goto discard_it;
144
2c0fd387 145 sh = sctp_hdr(skb);
1da177e4
LT
146
147 /* Pull up the IP and SCTP headers. */
ea2ae17d 148 __skb_pull(skb, skb_transport_offset(skb));
1da177e4
LT
149 if (skb->len < sizeof(struct sctphdr))
150 goto discard_it;
06e86806 151 if (!sctp_checksum_disable && !skb_csum_unnecessary(skb) &&
b01a2407 152 sctp_rcv_checksum(net, skb) < 0)
1da177e4
LT
153 goto discard_it;
154
155 skb_pull(skb, sizeof(struct sctphdr));
156
157 /* Make sure we at least have chunk headers worth of data left. */
158 if (skb->len < sizeof(struct sctp_chunkhdr))
159 goto discard_it;
160
eddc9ec5 161 family = ipver2af(ip_hdr(skb)->version);
1da177e4
LT
162 af = sctp_get_af_specific(family);
163 if (unlikely(!af))
164 goto discard_it;
165
166 /* Initialize local addresses for lookups. */
167 af->from_skb(&src, skb, 1);
168 af->from_skb(&dest, skb, 0);
169
170 /* If the packet is to or from a non-unicast address,
171 * silently discard the packet.
172 *
173 * This is not clearly defined in the RFC except in section
174 * 8.4 - OOTB handling. However, based on the book "Stream Control
175 * Transmission Protocol" 2.1, "It is important to note that the
176 * IP address of an SCTP transport address must be a routable
177 * unicast address. In other words, IP multicast addresses and
178 * IP broadcast addresses cannot be used in an SCTP transport
179 * address."
180 */
5636bef7
VY
181 if (!af->addr_valid(&src, NULL, skb) ||
182 !af->addr_valid(&dest, NULL, skb))
1da177e4
LT
183 goto discard_it;
184
4110cc25 185 asoc = __sctp_rcv_lookup(net, skb, &src, &dest, &transport);
1c7d1fc1 186
0fd9a65a 187 if (!asoc)
4cdadcbc 188 ep = __sctp_rcv_lookup_endpoint(net, &dest);
0fd9a65a
NH
189
190 /* Retrieve the common input handling substructure. */
191 rcvr = asoc ? &asoc->base : &ep->base;
192 sk = rcvr->sk;
193
194 /*
195 * If a frame arrives on an interface and the receiving socket is
196 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
197 */
198 if (sk->sk_bound_dev_if && (sk->sk_bound_dev_if != af->skb_iif(skb)))
199 {
0fd9a65a
NH
200 if (asoc) {
201 sctp_association_put(asoc);
202 asoc = NULL;
203 } else {
204 sctp_endpoint_put(ep);
205 ep = NULL;
206 }
2ce95503 207 sk = net->sctp.ctl_sock;
0fd9a65a
NH
208 ep = sctp_sk(sk)->ep;
209 sctp_endpoint_hold(ep);
0fd9a65a
NH
210 rcvr = &ep->base;
211 }
212
1da177e4
LT
213 /*
214 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
215 * An SCTP packet is called an "out of the blue" (OOTB)
216 * packet if it is correctly formed, i.e., passed the
217 * receiver's checksum check, but the receiver is not
218 * able to identify the association to which this
219 * packet belongs.
220 */
221 if (!asoc) {
1da177e4 222 if (sctp_rcv_ootb(skb)) {
b01a2407 223 SCTP_INC_STATS_BH(net, SCTP_MIB_OUTOFBLUES);
1da177e4
LT
224 goto discard_release;
225 }
226 }
227
1da177e4
LT
228 if (!xfrm_policy_check(sk, XFRM_POLICY_IN, skb, family))
229 goto discard_release;
b59c2701 230 nf_reset(skb);
1da177e4 231
fda9ef5d 232 if (sk_filter(sk, skb))
d808ad9a 233 goto discard_release;
1da177e4
LT
234
235 /* Create an SCTP packet structure. */
236 chunk = sctp_chunkify(skb, asoc, sk);
2babf9da 237 if (!chunk)
1da177e4 238 goto discard_release;
79af02c2 239 SCTP_INPUT_CB(skb)->chunk = chunk;
1da177e4 240
1da177e4
LT
241 /* Remember what endpoint is to handle this packet. */
242 chunk->rcvr = rcvr;
243
244 /* Remember the SCTP header. */
245 chunk->sctp_hdr = sh;
246
247 /* Set the source and destination addresses of the incoming chunk. */
d55c41b1 248 sctp_init_addrs(chunk, &src, &dest);
1da177e4
LT
249
250 /* Remember where we came from. */
251 chunk->transport = transport;
252
253 /* Acquire access to the sock lock. Note: We are safe from other
254 * bottom halves on this lock, but a user may be in the lock too,
255 * so check if it is busy.
256 */
257 sctp_bh_lock_sock(sk);
258
ae53b5bd
VY
259 if (sk != rcvr->sk) {
260 /* Our cached sk is different from the rcvr->sk. This is
261 * because migrate()/accept() may have moved the association
262 * to a new socket and released all the sockets. So now we
263 * are holding a lock on the old socket while the user may
264 * be doing something with the new socket. Switch our veiw
265 * of the current sk.
266 */
267 sctp_bh_unlock_sock(sk);
268 sk = rcvr->sk;
269 sctp_bh_lock_sock(sk);
270 }
271
ac0b0462 272 if (sock_owned_by_user(sk)) {
50b1a782
ZY
273 if (sctp_add_backlog(sk, skb)) {
274 sctp_bh_unlock_sock(sk);
275 sctp_chunk_free(chunk);
276 skb = NULL; /* sctp_chunk_free already freed the skb */
277 goto discard_release;
278 }
b01a2407 279 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_BACKLOG);
ac0b0462 280 } else {
b01a2407 281 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_SOFTIRQ);
61c9fed4 282 sctp_inq_push(&chunk->rcvr->inqueue, chunk);
ac0b0462 283 }
1da177e4 284
1da177e4 285 sctp_bh_unlock_sock(sk);
61c9fed4
VY
286
287 /* Release the asoc/ep ref we took in the lookup calls. */
288 if (asoc)
289 sctp_association_put(asoc);
290 else
291 sctp_endpoint_put(ep);
7a48f923 292
2babf9da 293 return 0;
1da177e4
LT
294
295discard_it:
b01a2407 296 SCTP_INC_STATS_BH(net, SCTP_MIB_IN_PKT_DISCARDS);
1da177e4 297 kfree_skb(skb);
2babf9da 298 return 0;
1da177e4
LT
299
300discard_release:
61c9fed4 301 /* Release the asoc/ep ref we took in the lookup calls. */
0fd9a65a 302 if (asoc)
1da177e4 303 sctp_association_put(asoc);
0fd9a65a 304 else
1da177e4 305 sctp_endpoint_put(ep);
1da177e4
LT
306
307 goto discard_it;
308}
309
61c9fed4
VY
310/* Process the backlog queue of the socket. Every skb on
311 * the backlog holds a ref on an association or endpoint.
312 * We hold this ref throughout the state machine to make
313 * sure that the structure we need is still around.
1da177e4
LT
314 */
315int sctp_backlog_rcv(struct sock *sk, struct sk_buff *skb)
316{
79af02c2 317 struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
d808ad9a
YH
318 struct sctp_inq *inqueue = &chunk->rcvr->inqueue;
319 struct sctp_ep_common *rcvr = NULL;
61c9fed4 320 int backloged = 0;
7a48f923 321
d808ad9a 322 rcvr = chunk->rcvr;
c4d2444e 323
61c9fed4
VY
324 /* If the rcvr is dead then the association or endpoint
325 * has been deleted and we can safely drop the chunk
326 * and refs that we are holding.
327 */
328 if (rcvr->dead) {
329 sctp_chunk_free(chunk);
330 goto done;
331 }
332
333 if (unlikely(rcvr->sk != sk)) {
334 /* In this case, the association moved from one socket to
335 * another. We are currently sitting on the backlog of the
336 * old socket, so we need to move.
337 * However, since we are here in the process context we
338 * need to take make sure that the user doesn't own
339 * the new socket when we process the packet.
340 * If the new socket is user-owned, queue the chunk to the
341 * backlog of the new socket without dropping any refs.
342 * Otherwise, we can safely push the chunk on the inqueue.
343 */
344
345 sk = rcvr->sk;
346 sctp_bh_lock_sock(sk);
347
348 if (sock_owned_by_user(sk)) {
f545a38f 349 if (sk_add_backlog(sk, skb, sk->sk_rcvbuf))
50b1a782
ZY
350 sctp_chunk_free(chunk);
351 else
352 backloged = 1;
61c9fed4
VY
353 } else
354 sctp_inq_push(inqueue, chunk);
355
356 sctp_bh_unlock_sock(sk);
357
358 /* If the chunk was backloged again, don't drop refs */
359 if (backloged)
360 return 0;
361 } else {
362 sctp_inq_push(inqueue, chunk);
363 }
364
365done:
366 /* Release the refs we took in sctp_add_backlog */
367 if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
368 sctp_association_put(sctp_assoc(rcvr));
369 else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
370 sctp_endpoint_put(sctp_ep(rcvr));
371 else
372 BUG();
373
d808ad9a 374 return 0;
1da177e4
LT
375}
376
50b1a782 377static int sctp_add_backlog(struct sock *sk, struct sk_buff *skb)
c4d2444e 378{
61c9fed4
VY
379 struct sctp_chunk *chunk = SCTP_INPUT_CB(skb)->chunk;
380 struct sctp_ep_common *rcvr = chunk->rcvr;
50b1a782 381 int ret;
c4d2444e 382
f545a38f 383 ret = sk_add_backlog(sk, skb, sk->sk_rcvbuf);
50b1a782
ZY
384 if (!ret) {
385 /* Hold the assoc/ep while hanging on the backlog queue.
386 * This way, we know structures we need will not disappear
387 * from us
388 */
389 if (SCTP_EP_TYPE_ASSOCIATION == rcvr->type)
390 sctp_association_hold(sctp_assoc(rcvr));
391 else if (SCTP_EP_TYPE_SOCKET == rcvr->type)
392 sctp_endpoint_hold(sctp_ep(rcvr));
393 else
394 BUG();
395 }
396 return ret;
61c9fed4 397
c4d2444e
SS
398}
399
1da177e4
LT
400/* Handle icmp frag needed error. */
401void sctp_icmp_frag_needed(struct sock *sk, struct sctp_association *asoc,
402 struct sctp_transport *t, __u32 pmtu)
403{
91bd6b1e 404 if (!t || (t->pathmtu <= pmtu))
52ccb8e9
FF
405 return;
406
8a479491
VY
407 if (sock_owned_by_user(sk)) {
408 asoc->pmtu_pending = 1;
409 t->pmtu_pending = 1;
410 return;
411 }
412
52ccb8e9 413 if (t->param_flags & SPP_PMTUD_ENABLE) {
c910b47e 414 /* Update transports view of the MTU */
02f3d4ce 415 sctp_transport_update_pmtu(sk, t, pmtu);
1da177e4 416
52ccb8e9 417 /* Update association pmtu. */
02f3d4ce 418 sctp_assoc_sync_pmtu(sk, asoc);
1da177e4 419 }
52ccb8e9
FF
420
421 /* Retransmit with the new pmtu setting.
422 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
423 * Needed will never be sent, but if a message was sent before
424 * PMTU discovery was disabled that was larger than the PMTU, it
d808ad9a 425 * would not be fragmented, so it must be re-transmitted fragmented.
52ccb8e9
FF
426 */
427 sctp_retransmit(&asoc->outqueue, t, SCTP_RTXR_PMTUD);
1da177e4
LT
428}
429
ec18d9a2
DM
430void sctp_icmp_redirect(struct sock *sk, struct sctp_transport *t,
431 struct sk_buff *skb)
55be7a9c
DM
432{
433 struct dst_entry *dst;
434
435 if (!t)
436 return;
437 dst = sctp_transport_dst_check(t);
1ed5c48f 438 if (dst)
6700c270 439 dst->ops->redirect(dst, sk, skb);
55be7a9c
DM
440}
441
1da177e4
LT
442/*
443 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
444 *
445 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
446 * or a "Protocol Unreachable" treat this message as an abort
447 * with the T bit set.
448 *
449 * This function sends an event to the state machine, which will abort the
450 * association.
451 *
452 */
453void sctp_icmp_proto_unreachable(struct sock *sk,
d808ad9a
YH
454 struct sctp_association *asoc,
455 struct sctp_transport *t)
1da177e4 456{
0dc47877 457 SCTP_DEBUG_PRINTK("%s\n", __func__);
1da177e4 458
50b5d6ad
VY
459 if (sock_owned_by_user(sk)) {
460 if (timer_pending(&t->proto_unreach_timer))
461 return;
462 else {
463 if (!mod_timer(&t->proto_unreach_timer,
464 jiffies + (HZ/20)))
465 sctp_association_hold(asoc);
466 }
467
468 } else {
55e26eb9
EB
469 struct net *net = sock_net(sk);
470
25cc4ae9 471 if (del_timer(&t->proto_unreach_timer))
50b5d6ad 472 sctp_association_put(asoc);
1da177e4 473
55e26eb9 474 sctp_do_sm(net, SCTP_EVENT_T_OTHER,
50b5d6ad
VY
475 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH),
476 asoc->state, asoc->ep, asoc, t,
477 GFP_ATOMIC);
478 }
1da177e4
LT
479}
480
481/* Common lookup code for icmp/icmpv6 error handler. */
4110cc25 482struct sock *sctp_err_lookup(struct net *net, int family, struct sk_buff *skb,
1da177e4 483 struct sctphdr *sctphdr,
1da177e4
LT
484 struct sctp_association **app,
485 struct sctp_transport **tpp)
486{
487 union sctp_addr saddr;
488 union sctp_addr daddr;
489 struct sctp_af *af;
490 struct sock *sk = NULL;
8de8c873 491 struct sctp_association *asoc;
1da177e4 492 struct sctp_transport *transport = NULL;
7115e632
WY
493 struct sctp_init_chunk *chunkhdr;
494 __u32 vtag = ntohl(sctphdr->vtag);
495 int len = skb->len - ((void *)sctphdr - (void *)skb->data);
1da177e4 496
d1ad1ff2 497 *app = NULL; *tpp = NULL;
1da177e4
LT
498
499 af = sctp_get_af_specific(family);
500 if (unlikely(!af)) {
501 return NULL;
502 }
503
504 /* Initialize local addresses for lookups. */
505 af->from_skb(&saddr, skb, 1);
506 af->from_skb(&daddr, skb, 0);
507
508 /* Look for an association that matches the incoming ICMP error
509 * packet.
510 */
4110cc25 511 asoc = __sctp_lookup_association(net, &saddr, &daddr, &transport);
d1ad1ff2
SS
512 if (!asoc)
513 return NULL;
1da177e4 514
d1ad1ff2 515 sk = asoc->base.sk;
1da177e4 516
7115e632
WY
517 /* RFC 4960, Appendix C. ICMP Handling
518 *
519 * ICMP6) An implementation MUST validate that the Verification Tag
520 * contained in the ICMP message matches the Verification Tag of
521 * the peer. If the Verification Tag is not 0 and does NOT
522 * match, discard the ICMP message. If it is 0 and the ICMP
523 * message contains enough bytes to verify that the chunk type is
524 * an INIT chunk and that the Initiate Tag matches the tag of the
525 * peer, continue with ICMP7. If the ICMP message is too short
526 * or the chunk type or the Initiate Tag does not match, silently
527 * discard the packet.
528 */
529 if (vtag == 0) {
ea110733 530 chunkhdr = (void *)sctphdr + sizeof(struct sctphdr);
7115e632
WY
531 if (len < sizeof(struct sctphdr) + sizeof(sctp_chunkhdr_t)
532 + sizeof(__be32) ||
533 chunkhdr->chunk_hdr.type != SCTP_CID_INIT ||
534 ntohl(chunkhdr->init_hdr.init_tag) != asoc->c.my_vtag) {
535 goto out;
536 }
537 } else if (vtag != asoc->c.peer_vtag) {
d1ad1ff2
SS
538 goto out;
539 }
1da177e4
LT
540
541 sctp_bh_lock_sock(sk);
542
543 /* If too many ICMPs get dropped on busy
544 * servers this needs to be solved differently.
545 */
546 if (sock_owned_by_user(sk))
b01a2407 547 NET_INC_STATS_BH(net, LINUX_MIB_LOCKDROPPEDICMPS);
1da177e4 548
1da177e4
LT
549 *app = asoc;
550 *tpp = transport;
551 return sk;
552
553out:
1da177e4
LT
554 if (asoc)
555 sctp_association_put(asoc);
1da177e4
LT
556 return NULL;
557}
558
559/* Common cleanup code for icmp/icmpv6 error handler. */
d1ad1ff2 560void sctp_err_finish(struct sock *sk, struct sctp_association *asoc)
1da177e4
LT
561{
562 sctp_bh_unlock_sock(sk);
1da177e4
LT
563 if (asoc)
564 sctp_association_put(asoc);
1da177e4
LT
565}
566
567/*
568 * This routine is called by the ICMP module when it gets some
569 * sort of error condition. If err < 0 then the socket should
570 * be closed and the error returned to the user. If err > 0
571 * it's just the icmp type << 8 | icmp code. After adjustment
572 * header points to the first 8 bytes of the sctp header. We need
573 * to find the appropriate port.
574 *
575 * The locking strategy used here is very "optimistic". When
576 * someone else accesses the socket the ICMP is just dropped
577 * and for some paths there is no check at all.
578 * A more general error queue to queue errors for later handling
579 * is probably better.
580 *
581 */
582void sctp_v4_err(struct sk_buff *skb, __u32 info)
583{
b71d1d42 584 const struct iphdr *iph = (const struct iphdr *)skb->data;
a27ef749 585 const int ihlen = iph->ihl * 4;
88c7664f
ACM
586 const int type = icmp_hdr(skb)->type;
587 const int code = icmp_hdr(skb)->code;
1da177e4 588 struct sock *sk;
8de8c873 589 struct sctp_association *asoc = NULL;
1da177e4
LT
590 struct sctp_transport *transport;
591 struct inet_sock *inet;
2e07fa9c 592 sk_buff_data_t saveip, savesctp;
1da177e4 593 int err;
4110cc25 594 struct net *net = dev_net(skb->dev);
1da177e4 595
a27ef749 596 if (skb->len < ihlen + 8) {
b01a2407 597 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
1da177e4
LT
598 return;
599 }
600
601 /* Fix up skb to look at the embedded net header. */
b0e380b1
ACM
602 saveip = skb->network_header;
603 savesctp = skb->transport_header;
31c7711b 604 skb_reset_network_header(skb);
a27ef749 605 skb_set_transport_header(skb, ihlen);
4110cc25 606 sk = sctp_err_lookup(net, AF_INET, skb, sctp_hdr(skb), &asoc, &transport);
2e07fa9c 607 /* Put back, the original values. */
b0e380b1
ACM
608 skb->network_header = saveip;
609 skb->transport_header = savesctp;
1da177e4 610 if (!sk) {
b01a2407 611 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
1da177e4
LT
612 return;
613 }
614 /* Warning: The sock lock is held. Remember to call
615 * sctp_err_finish!
616 */
617
618 switch (type) {
619 case ICMP_PARAMETERPROB:
620 err = EPROTO;
621 break;
622 case ICMP_DEST_UNREACH:
623 if (code > NR_ICMP_UNREACH)
624 goto out_unlock;
625
626 /* PMTU discovery (RFC1191) */
627 if (ICMP_FRAG_NEEDED == code) {
628 sctp_icmp_frag_needed(sk, asoc, transport, info);
629 goto out_unlock;
630 }
631 else {
632 if (ICMP_PROT_UNREACH == code) {
d1ad1ff2 633 sctp_icmp_proto_unreachable(sk, asoc,
1da177e4
LT
634 transport);
635 goto out_unlock;
636 }
637 }
638 err = icmp_err_convert[code].errno;
639 break;
640 case ICMP_TIME_EXCEEDED:
641 /* Ignore any time exceeded errors due to fragment reassembly
642 * timeouts.
643 */
644 if (ICMP_EXC_FRAGTIME == code)
645 goto out_unlock;
646
647 err = EHOSTUNREACH;
648 break;
55be7a9c
DM
649 case ICMP_REDIRECT:
650 sctp_icmp_redirect(sk, transport, skb);
e4e7ba12 651 /* Fall through to out_unlock. */
1da177e4
LT
652 default:
653 goto out_unlock;
654 }
655
656 inet = inet_sk(sk);
657 if (!sock_owned_by_user(sk) && inet->recverr) {
658 sk->sk_err = err;
659 sk->sk_error_report(sk);
660 } else { /* Only an error on timeout */
661 sk->sk_err_soft = err;
662 }
663
664out_unlock:
d1ad1ff2 665 sctp_err_finish(sk, asoc);
1da177e4
LT
666}
667
668/*
669 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
670 *
671 * This function scans all the chunks in the OOTB packet to determine if
672 * the packet should be discarded right away. If a response might be needed
673 * for this packet, or, if further processing is possible, the packet will
674 * be queued to a proper inqueue for the next phase of handling.
675 *
676 * Output:
677 * Return 0 - If further processing is needed.
678 * Return 1 - If the packet can be discarded right away.
679 */
04675210 680static int sctp_rcv_ootb(struct sk_buff *skb)
1da177e4
LT
681{
682 sctp_chunkhdr_t *ch;
683 __u8 *ch_end;
1da177e4
LT
684
685 ch = (sctp_chunkhdr_t *) skb->data;
1da177e4
LT
686
687 /* Scan through all the chunks in the packet. */
a7d1f1b6
TF
688 do {
689 /* Break out if chunk length is less then minimal. */
690 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
691 break;
692
693 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
27a884dc 694 if (ch_end > skb_tail_pointer(skb))
a7d1f1b6 695 break;
1da177e4
LT
696
697 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
698 * receiver MUST silently discard the OOTB packet and take no
699 * further action.
700 */
701 if (SCTP_CID_ABORT == ch->type)
702 goto discard;
703
704 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
705 * chunk, the receiver should silently discard the packet
706 * and take no further action.
707 */
708 if (SCTP_CID_SHUTDOWN_COMPLETE == ch->type)
709 goto discard;
710
3c77f961
VY
711 /* RFC 4460, 2.11.2
712 * This will discard packets with INIT chunk bundled as
713 * subsequent chunks in the packet. When INIT is first,
714 * the normal INIT processing will discard the chunk.
715 */
716 if (SCTP_CID_INIT == ch->type && (void *)ch != skb->data)
717 goto discard;
718
1da177e4 719 ch = (sctp_chunkhdr_t *) ch_end;
27a884dc 720 } while (ch_end < skb_tail_pointer(skb));
1da177e4
LT
721
722 return 0;
723
724discard:
725 return 1;
726}
727
728/* Insert endpoint into the hash table. */
729static void __sctp_hash_endpoint(struct sctp_endpoint *ep)
730{
4cdadcbc 731 struct net *net = sock_net(ep->base.sk);
1da177e4
LT
732 struct sctp_ep_common *epb;
733 struct sctp_hashbucket *head;
734
735 epb = &ep->base;
736
4cdadcbc 737 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port);
1da177e4
LT
738 head = &sctp_ep_hashtable[epb->hashent];
739
740 sctp_write_lock(&head->lock);
d970dbf8 741 hlist_add_head(&epb->node, &head->chain);
1da177e4
LT
742 sctp_write_unlock(&head->lock);
743}
744
745/* Add an endpoint to the hash. Local BH-safe. */
746void sctp_hash_endpoint(struct sctp_endpoint *ep)
747{
748 sctp_local_bh_disable();
749 __sctp_hash_endpoint(ep);
750 sctp_local_bh_enable();
751}
752
753/* Remove endpoint from the hash table. */
754static void __sctp_unhash_endpoint(struct sctp_endpoint *ep)
755{
4cdadcbc 756 struct net *net = sock_net(ep->base.sk);
1da177e4
LT
757 struct sctp_hashbucket *head;
758 struct sctp_ep_common *epb;
759
760 epb = &ep->base;
761
4cdadcbc 762 epb->hashent = sctp_ep_hashfn(net, epb->bind_addr.port);
1da177e4
LT
763
764 head = &sctp_ep_hashtable[epb->hashent];
765
766 sctp_write_lock(&head->lock);
2eebc1e1 767 hlist_del_init(&epb->node);
1da177e4
LT
768 sctp_write_unlock(&head->lock);
769}
770
771/* Remove endpoint from the hash. Local BH-safe. */
772void sctp_unhash_endpoint(struct sctp_endpoint *ep)
773{
774 sctp_local_bh_disable();
775 __sctp_unhash_endpoint(ep);
776 sctp_local_bh_enable();
777}
778
779/* Look up an endpoint. */
4cdadcbc
EB
780static struct sctp_endpoint *__sctp_rcv_lookup_endpoint(struct net *net,
781 const union sctp_addr *laddr)
1da177e4
LT
782{
783 struct sctp_hashbucket *head;
784 struct sctp_ep_common *epb;
785 struct sctp_endpoint *ep;
786 int hash;
787
4cdadcbc 788 hash = sctp_ep_hashfn(net, ntohs(laddr->v4.sin_port));
1da177e4
LT
789 head = &sctp_ep_hashtable[hash];
790 read_lock(&head->lock);
b67bfe0d 791 sctp_for_each_hentry(epb, &head->chain) {
1da177e4 792 ep = sctp_ep(epb);
4cdadcbc 793 if (sctp_endpoint_is_match(ep, net, laddr))
1da177e4
LT
794 goto hit;
795 }
796
2ce95503 797 ep = sctp_sk(net->sctp.ctl_sock)->ep;
1da177e4
LT
798
799hit:
800 sctp_endpoint_hold(ep);
1da177e4
LT
801 read_unlock(&head->lock);
802 return ep;
803}
804
805/* Insert association into the hash table. */
806static void __sctp_hash_established(struct sctp_association *asoc)
807{
4110cc25 808 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
809 struct sctp_ep_common *epb;
810 struct sctp_hashbucket *head;
811
812 epb = &asoc->base;
813
814 /* Calculate which chain this entry will belong to. */
4110cc25
EB
815 epb->hashent = sctp_assoc_hashfn(net, epb->bind_addr.port,
816 asoc->peer.port);
1da177e4
LT
817
818 head = &sctp_assoc_hashtable[epb->hashent];
819
820 sctp_write_lock(&head->lock);
d970dbf8 821 hlist_add_head(&epb->node, &head->chain);
1da177e4
LT
822 sctp_write_unlock(&head->lock);
823}
824
825/* Add an association to the hash. Local BH-safe. */
826void sctp_hash_established(struct sctp_association *asoc)
827{
de76e695
VY
828 if (asoc->temp)
829 return;
830
1da177e4
LT
831 sctp_local_bh_disable();
832 __sctp_hash_established(asoc);
833 sctp_local_bh_enable();
834}
835
836/* Remove association from the hash table. */
837static void __sctp_unhash_established(struct sctp_association *asoc)
838{
4110cc25 839 struct net *net = sock_net(asoc->base.sk);
1da177e4
LT
840 struct sctp_hashbucket *head;
841 struct sctp_ep_common *epb;
842
843 epb = &asoc->base;
844
4110cc25 845 epb->hashent = sctp_assoc_hashfn(net, epb->bind_addr.port,
1da177e4
LT
846 asoc->peer.port);
847
848 head = &sctp_assoc_hashtable[epb->hashent];
849
850 sctp_write_lock(&head->lock);
2eebc1e1 851 hlist_del_init(&epb->node);
1da177e4
LT
852 sctp_write_unlock(&head->lock);
853}
854
855/* Remove association from the hash table. Local BH-safe. */
856void sctp_unhash_established(struct sctp_association *asoc)
857{
de76e695
VY
858 if (asoc->temp)
859 return;
860
1da177e4
LT
861 sctp_local_bh_disable();
862 __sctp_unhash_established(asoc);
863 sctp_local_bh_enable();
864}
865
866/* Look up an association. */
867static struct sctp_association *__sctp_lookup_association(
4110cc25 868 struct net *net,
1da177e4
LT
869 const union sctp_addr *local,
870 const union sctp_addr *peer,
871 struct sctp_transport **pt)
872{
873 struct sctp_hashbucket *head;
874 struct sctp_ep_common *epb;
875 struct sctp_association *asoc;
876 struct sctp_transport *transport;
877 int hash;
878
879 /* Optimize here for direct hit, only listening connections can
880 * have wildcards anyways.
881 */
4110cc25
EB
882 hash = sctp_assoc_hashfn(net, ntohs(local->v4.sin_port),
883 ntohs(peer->v4.sin_port));
1da177e4
LT
884 head = &sctp_assoc_hashtable[hash];
885 read_lock(&head->lock);
b67bfe0d 886 sctp_for_each_hentry(epb, &head->chain) {
1da177e4 887 asoc = sctp_assoc(epb);
4110cc25 888 transport = sctp_assoc_is_match(asoc, net, local, peer);
1da177e4
LT
889 if (transport)
890 goto hit;
891 }
892
893 read_unlock(&head->lock);
894
895 return NULL;
896
897hit:
898 *pt = transport;
899 sctp_association_hold(asoc);
1da177e4
LT
900 read_unlock(&head->lock);
901 return asoc;
902}
903
904/* Look up an association. BH-safe. */
905SCTP_STATIC
4110cc25
EB
906struct sctp_association *sctp_lookup_association(struct net *net,
907 const union sctp_addr *laddr,
1da177e4
LT
908 const union sctp_addr *paddr,
909 struct sctp_transport **transportp)
910{
911 struct sctp_association *asoc;
912
913 sctp_local_bh_disable();
4110cc25 914 asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
1da177e4
LT
915 sctp_local_bh_enable();
916
917 return asoc;
918}
919
920/* Is there an association matching the given local and peer addresses? */
4110cc25
EB
921int sctp_has_association(struct net *net,
922 const union sctp_addr *laddr,
1da177e4
LT
923 const union sctp_addr *paddr)
924{
925 struct sctp_association *asoc;
926 struct sctp_transport *transport;
927
4110cc25 928 if ((asoc = sctp_lookup_association(net, laddr, paddr, &transport))) {
1da177e4
LT
929 sctp_association_put(asoc);
930 return 1;
931 }
932
933 return 0;
934}
935
936/*
937 * SCTP Implementors Guide, 2.18 Handling of address
938 * parameters within the INIT or INIT-ACK.
939 *
940 * D) When searching for a matching TCB upon reception of an INIT
941 * or INIT-ACK chunk the receiver SHOULD use not only the
942 * source address of the packet (containing the INIT or
943 * INIT-ACK) but the receiver SHOULD also use all valid
944 * address parameters contained within the chunk.
945 *
946 * 2.18.3 Solution description
947 *
948 * This new text clearly specifies to an implementor the need
949 * to look within the INIT or INIT-ACK. Any implementation that
950 * does not do this, may not be able to establish associations
951 * in certain circumstances.
952 *
953 */
4110cc25
EB
954static struct sctp_association *__sctp_rcv_init_lookup(struct net *net,
955 struct sk_buff *skb,
1da177e4
LT
956 const union sctp_addr *laddr, struct sctp_transport **transportp)
957{
958 struct sctp_association *asoc;
959 union sctp_addr addr;
960 union sctp_addr *paddr = &addr;
2c0fd387 961 struct sctphdr *sh = sctp_hdr(skb);
1da177e4
LT
962 union sctp_params params;
963 sctp_init_chunk_t *init;
964 struct sctp_transport *transport;
965 struct sctp_af *af;
966
1da177e4
LT
967 /*
968 * This code will NOT touch anything inside the chunk--it is
969 * strictly READ-ONLY.
970 *
971 * RFC 2960 3 SCTP packet Format
972 *
973 * Multiple chunks can be bundled into one SCTP packet up to
974 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
975 * COMPLETE chunks. These chunks MUST NOT be bundled with any
976 * other chunk in a packet. See Section 6.10 for more details
977 * on chunk bundling.
978 */
979
980 /* Find the start of the TLVs and the end of the chunk. This is
981 * the region we search for address parameters.
982 */
983 init = (sctp_init_chunk_t *)skb->data;
984
985 /* Walk the parameters looking for embedded addresses. */
986 sctp_walk_params(params, init, init_hdr.params) {
987
988 /* Note: Ignoring hostname addresses. */
989 af = sctp_get_af_specific(param_type2af(params.p->type));
990 if (!af)
991 continue;
992
dd86d136 993 af->from_addr_param(paddr, params.addr, sh->source, 0);
1da177e4 994
4110cc25 995 asoc = __sctp_lookup_association(net, laddr, paddr, &transport);
1da177e4
LT
996 if (asoc)
997 return asoc;
998 }
999
1000 return NULL;
1001}
1002
df218577
VY
1003/* ADD-IP, Section 5.2
1004 * When an endpoint receives an ASCONF Chunk from the remote peer
1005 * special procedures may be needed to identify the association the
1006 * ASCONF Chunk is associated with. To properly find the association
1007 * the following procedures SHOULD be followed:
1008 *
1009 * D2) If the association is not found, use the address found in the
1010 * Address Parameter TLV combined with the port number found in the
1011 * SCTP common header. If found proceed to rule D4.
1012 *
1013 * D2-ext) If more than one ASCONF Chunks are packed together, use the
1014 * address found in the ASCONF Address Parameter TLV of each of the
1015 * subsequent ASCONF Chunks. If found, proceed to rule D4.
1016 */
1017static struct sctp_association *__sctp_rcv_asconf_lookup(
4110cc25 1018 struct net *net,
df218577
VY
1019 sctp_chunkhdr_t *ch,
1020 const union sctp_addr *laddr,
bc92dd19 1021 __be16 peer_port,
df218577
VY
1022 struct sctp_transport **transportp)
1023{
1024 sctp_addip_chunk_t *asconf = (struct sctp_addip_chunk *)ch;
1025 struct sctp_af *af;
1026 union sctp_addr_param *param;
1027 union sctp_addr paddr;
1028
1029 /* Skip over the ADDIP header and find the Address parameter */
1030 param = (union sctp_addr_param *)(asconf + 1);
1031
6a435732 1032 af = sctp_get_af_specific(param_type2af(param->p.type));
df218577
VY
1033 if (unlikely(!af))
1034 return NULL;
1035
1036 af->from_addr_param(&paddr, param, peer_port, 0);
1037
4110cc25 1038 return __sctp_lookup_association(net, laddr, &paddr, transportp);
df218577
VY
1039}
1040
1041
bbd0d598
VY
1042/* SCTP-AUTH, Section 6.3:
1043* If the receiver does not find a STCB for a packet containing an AUTH
1044* chunk as the first chunk and not a COOKIE-ECHO chunk as the second
1045* chunk, it MUST use the chunks after the AUTH chunk to look up an existing
1046* association.
1047*
1048* This means that any chunks that can help us identify the association need
25985edc 1049* to be looked at to find this association.
bbd0d598 1050*/
4110cc25
EB
1051static struct sctp_association *__sctp_rcv_walk_lookup(struct net *net,
1052 struct sk_buff *skb,
bbd0d598
VY
1053 const union sctp_addr *laddr,
1054 struct sctp_transport **transportp)
1055{
df218577
VY
1056 struct sctp_association *asoc = NULL;
1057 sctp_chunkhdr_t *ch;
1058 int have_auth = 0;
1059 unsigned int chunk_num = 1;
1060 __u8 *ch_end;
1061
1062 /* Walk through the chunks looking for AUTH or ASCONF chunks
1063 * to help us find the association.
bbd0d598 1064 */
df218577
VY
1065 ch = (sctp_chunkhdr_t *) skb->data;
1066 do {
1067 /* Break out if chunk length is less then minimal. */
1068 if (ntohs(ch->length) < sizeof(sctp_chunkhdr_t))
1069 break;
1070
1071 ch_end = ((__u8 *)ch) + WORD_ROUND(ntohs(ch->length));
1072 if (ch_end > skb_tail_pointer(skb))
1073 break;
1074
1075 switch(ch->type) {
1076 case SCTP_CID_AUTH:
1077 have_auth = chunk_num;
1078 break;
1079
1080 case SCTP_CID_COOKIE_ECHO:
1081 /* If a packet arrives containing an AUTH chunk as
1082 * a first chunk, a COOKIE-ECHO chunk as the second
1083 * chunk, and possibly more chunks after them, and
1084 * the receiver does not have an STCB for that
1085 * packet, then authentication is based on
1086 * the contents of the COOKIE- ECHO chunk.
1087 */
1088 if (have_auth == 1 && chunk_num == 2)
1089 return NULL;
1090 break;
1091
1092 case SCTP_CID_ASCONF:
e1fc3b14 1093 if (have_auth || net->sctp.addip_noauth)
4110cc25
EB
1094 asoc = __sctp_rcv_asconf_lookup(
1095 net, ch, laddr,
df218577
VY
1096 sctp_hdr(skb)->source,
1097 transportp);
1098 default:
1099 break;
1100 }
1101
1102 if (asoc)
1103 break;
1104
1105 ch = (sctp_chunkhdr_t *) ch_end;
1106 chunk_num++;
1107 } while (ch_end < skb_tail_pointer(skb));
1108
1109 return asoc;
bbd0d598
VY
1110}
1111
1112/*
1113 * There are circumstances when we need to look inside the SCTP packet
1114 * for information to help us find the association. Examples
1115 * include looking inside of INIT/INIT-ACK chunks or after the AUTH
1116 * chunks.
1117 */
4110cc25
EB
1118static struct sctp_association *__sctp_rcv_lookup_harder(struct net *net,
1119 struct sk_buff *skb,
bbd0d598
VY
1120 const union sctp_addr *laddr,
1121 struct sctp_transport **transportp)
1122{
1123 sctp_chunkhdr_t *ch;
1124
1125 ch = (sctp_chunkhdr_t *) skb->data;
1126
df218577
VY
1127 /* The code below will attempt to walk the chunk and extract
1128 * parameter information. Before we do that, we need to verify
1129 * that the chunk length doesn't cause overflow. Otherwise, we'll
1130 * walk off the end.
1131 */
1132 if (WORD_ROUND(ntohs(ch->length)) > skb->len)
1133 return NULL;
1134
bbd0d598
VY
1135 /* If this is INIT/INIT-ACK look inside the chunk too. */
1136 switch (ch->type) {
1137 case SCTP_CID_INIT:
1138 case SCTP_CID_INIT_ACK:
4110cc25 1139 return __sctp_rcv_init_lookup(net, skb, laddr, transportp);
bbd0d598
VY
1140 break;
1141
df218577 1142 default:
4110cc25 1143 return __sctp_rcv_walk_lookup(net, skb, laddr, transportp);
bbd0d598
VY
1144 break;
1145 }
1146
df218577 1147
bbd0d598
VY
1148 return NULL;
1149}
1150
1da177e4 1151/* Lookup an association for an inbound skb. */
4110cc25
EB
1152static struct sctp_association *__sctp_rcv_lookup(struct net *net,
1153 struct sk_buff *skb,
1da177e4
LT
1154 const union sctp_addr *paddr,
1155 const union sctp_addr *laddr,
1156 struct sctp_transport **transportp)
1157{
1158 struct sctp_association *asoc;
1159
4110cc25 1160 asoc = __sctp_lookup_association(net, laddr, paddr, transportp);
1da177e4
LT
1161
1162 /* Further lookup for INIT/INIT-ACK packets.
1163 * SCTP Implementors Guide, 2.18 Handling of address
1164 * parameters within the INIT or INIT-ACK.
1165 */
1166 if (!asoc)
4110cc25 1167 asoc = __sctp_rcv_lookup_harder(net, skb, laddr, transportp);
1da177e4
LT
1168
1169 return asoc;
1170}