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