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
9 * This file is part of the SCTP kernel implementation
11 * These functions handle all input from the IP layer into SCTP.
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)
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.
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.
30 * Please send any bug reports or fixes you make to the
32 * lksctp developers <lksctp-developers@lists.sourceforge.net>
34 * Or submit a bug report through the following website:
35 * http://www.sf.net/projects/lksctp
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>
47 * Any bugs reported given to us we will try to fix... any fixes shared will
48 * be incorporated into the next SCTP release.
51 #include <linux/types.h>
52 #include <linux/list.h> /* For struct list_head */
53 #include <linux/socket.h>
55 #include <linux/time.h> /* For struct timeval */
56 #include <linux/slab.h>
62 #include <net/sctp/sctp.h>
63 #include <net/sctp/sm.h>
64 #include <net/sctp/checksum.h>
65 #include <net/net_namespace.h>
67 /* Forward declarations for internal helpers. */
68 static int sctp_rcv_ootb(struct sk_buff
*);
69 static struct sctp_association
*__sctp_rcv_lookup(struct net
*net
,
71 const union sctp_addr
*paddr
,
72 const union sctp_addr
*laddr
,
73 struct sctp_transport
**transportp
);
74 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(struct net
*net
,
75 const union sctp_addr
*laddr
);
76 static struct sctp_association
*__sctp_lookup_association(
78 const union sctp_addr
*local
,
79 const union sctp_addr
*peer
,
80 struct sctp_transport
**pt
);
82 static int sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
);
85 /* Calculate the SCTP checksum of an SCTP packet. */
86 static inline int sctp_rcv_checksum(struct net
*net
, struct sk_buff
*skb
)
88 struct sctphdr
*sh
= sctp_hdr(skb
);
89 __le32 cmp
= sh
->checksum
;
92 __u32 tmp
= sctp_start_cksum((__u8
*)sh
, skb_headlen(skb
));
94 skb_walk_frags(skb
, list
)
95 tmp
= sctp_update_cksum((__u8
*)list
->data
, skb_headlen(list
),
98 val
= sctp_end_cksum(tmp
);
101 /* CRC failure, dump it. */
102 SCTP_INC_STATS_BH(net
, SCTP_MIB_CHECKSUMERRORS
);
108 struct sctp_input_cb
{
110 struct inet_skb_parm h4
;
111 #if IS_ENABLED(CONFIG_IPV6)
112 struct inet6_skb_parm h6
;
115 struct sctp_chunk
*chunk
;
117 #define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
120 * This is the routine which IP calls when receiving an SCTP packet.
122 int sctp_rcv(struct sk_buff
*skb
)
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
;
132 union sctp_addr dest
;
135 struct net
*net
= dev_net(skb
->dev
);
137 if (skb
->pkt_type
!=PACKET_HOST
)
140 SCTP_INC_STATS_BH(net
, SCTP_MIB_INSCTPPACKS
);
142 if (skb_linearize(skb
))
147 /* Pull up the IP and SCTP headers. */
148 __skb_pull(skb
, skb_transport_offset(skb
));
149 if (skb
->len
< sizeof(struct sctphdr
))
151 if (!sctp_checksum_disable
&& !skb_csum_unnecessary(skb
) &&
152 sctp_rcv_checksum(net
, skb
) < 0)
155 skb_pull(skb
, sizeof(struct sctphdr
));
157 /* Make sure we at least have chunk headers worth of data left. */
158 if (skb
->len
< sizeof(struct sctp_chunkhdr
))
161 family
= ipver2af(ip_hdr(skb
)->version
);
162 af
= sctp_get_af_specific(family
);
166 /* Initialize local addresses for lookups. */
167 af
->from_skb(&src
, skb
, 1);
168 af
->from_skb(&dest
, skb
, 0);
170 /* If the packet is to or from a non-unicast address,
171 * silently discard the packet.
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
181 if (!af
->addr_valid(&src
, NULL
, skb
) ||
182 !af
->addr_valid(&dest
, NULL
, skb
))
185 asoc
= __sctp_rcv_lookup(net
, skb
, &src
, &dest
, &transport
);
188 ep
= __sctp_rcv_lookup_endpoint(net
, &dest
);
190 /* Retrieve the common input handling substructure. */
191 rcvr
= asoc
? &asoc
->base
: &ep
->base
;
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
198 if (sk
->sk_bound_dev_if
&& (sk
->sk_bound_dev_if
!= af
->skb_iif(skb
)))
201 sctp_association_put(asoc
);
204 sctp_endpoint_put(ep
);
207 sk
= net
->sctp
.ctl_sock
;
208 ep
= sctp_sk(sk
)->ep
;
209 sctp_endpoint_hold(ep
);
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
222 if (sctp_rcv_ootb(skb
)) {
223 SCTP_INC_STATS_BH(net
, SCTP_MIB_OUTOFBLUES
);
224 goto discard_release
;
228 if (!xfrm_policy_check(sk
, XFRM_POLICY_IN
, skb
, family
))
229 goto discard_release
;
232 if (sk_filter(sk
, skb
))
233 goto discard_release
;
235 /* Create an SCTP packet structure. */
236 chunk
= sctp_chunkify(skb
, asoc
, sk
);
238 goto discard_release
;
239 SCTP_INPUT_CB(skb
)->chunk
= chunk
;
241 /* Remember what endpoint is to handle this packet. */
244 /* Remember the SCTP header. */
245 chunk
->sctp_hdr
= sh
;
247 /* Set the source and destination addresses of the incoming chunk. */
248 sctp_init_addrs(chunk
, &src
, &dest
);
250 /* Remember where we came from. */
251 chunk
->transport
= transport
;
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.
257 sctp_bh_lock_sock(sk
);
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
267 sctp_bh_unlock_sock(sk
);
269 sctp_bh_lock_sock(sk
);
272 if (sock_owned_by_user(sk
)) {
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
;
279 SCTP_INC_STATS_BH(net
, SCTP_MIB_IN_PKT_BACKLOG
);
281 SCTP_INC_STATS_BH(net
, SCTP_MIB_IN_PKT_SOFTIRQ
);
282 sctp_inq_push(&chunk
->rcvr
->inqueue
, chunk
);
285 sctp_bh_unlock_sock(sk
);
287 /* Release the asoc/ep ref we took in the lookup calls. */
289 sctp_association_put(asoc
);
291 sctp_endpoint_put(ep
);
296 SCTP_INC_STATS_BH(net
, SCTP_MIB_IN_PKT_DISCARDS
);
301 /* Release the asoc/ep ref we took in the lookup calls. */
303 sctp_association_put(asoc
);
305 sctp_endpoint_put(ep
);
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.
315 int sctp_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
317 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
318 struct sctp_inq
*inqueue
= &chunk
->rcvr
->inqueue
;
319 struct sctp_ep_common
*rcvr
= NULL
;
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.
329 sctp_chunk_free(chunk
);
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.
346 sctp_bh_lock_sock(sk
);
348 if (sock_owned_by_user(sk
)) {
349 if (sk_add_backlog(sk
, skb
, sk
->sk_rcvbuf
))
350 sctp_chunk_free(chunk
);
354 sctp_inq_push(inqueue
, chunk
);
356 sctp_bh_unlock_sock(sk
);
358 /* If the chunk was backloged again, don't drop refs */
362 sctp_inq_push(inqueue
, chunk
);
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
));
377 static int sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
)
379 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
380 struct sctp_ep_common
*rcvr
= chunk
->rcvr
;
383 ret
= sk_add_backlog(sk
, skb
, sk
->sk_rcvbuf
);
385 /* Hold the assoc/ep while hanging on the backlog queue.
386 * This way, we know structures we need will not disappear
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
));
400 /* Handle icmp frag needed error. */
401 void sctp_icmp_frag_needed(struct sock
*sk
, struct sctp_association
*asoc
,
402 struct sctp_transport
*t
, __u32 pmtu
)
404 if (!t
|| (t
->pathmtu
<= pmtu
))
407 if (sock_owned_by_user(sk
)) {
408 asoc
->pmtu_pending
= 1;
413 if (t
->param_flags
& SPP_PMTUD_ENABLE
) {
414 /* Update transports view of the MTU */
415 sctp_transport_update_pmtu(sk
, t
, pmtu
);
417 /* Update association pmtu. */
418 sctp_assoc_sync_pmtu(sk
, asoc
);
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
425 * would not be fragmented, so it must be re-transmitted fragmented.
427 sctp_retransmit(&asoc
->outqueue
, t
, SCTP_RTXR_PMTUD
);
430 void sctp_icmp_redirect(struct sock
*sk
, struct sctp_transport
*t
,
433 struct dst_entry
*dst
;
437 dst
= sctp_transport_dst_check(t
);
439 dst
->ops
->redirect(dst
, sk
, skb
);
443 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
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.
449 * This function sends an event to the state machine, which will abort the
453 void sctp_icmp_proto_unreachable(struct sock
*sk
,
454 struct sctp_association
*asoc
,
455 struct sctp_transport
*t
)
457 if (sock_owned_by_user(sk
)) {
458 if (timer_pending(&t
->proto_unreach_timer
))
461 if (!mod_timer(&t
->proto_unreach_timer
,
463 sctp_association_hold(asoc
);
466 struct net
*net
= sock_net(sk
);
468 pr_debug("%s: unrecognized next header type "
469 "encountered!\n", __func__
);
471 if (del_timer(&t
->proto_unreach_timer
))
472 sctp_association_put(asoc
);
474 sctp_do_sm(net
, SCTP_EVENT_T_OTHER
,
475 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH
),
476 asoc
->state
, asoc
->ep
, asoc
, t
,
481 /* Common lookup code for icmp/icmpv6 error handler. */
482 struct sock
*sctp_err_lookup(struct net
*net
, int family
, struct sk_buff
*skb
,
483 struct sctphdr
*sctphdr
,
484 struct sctp_association
**app
,
485 struct sctp_transport
**tpp
)
487 union sctp_addr saddr
;
488 union sctp_addr daddr
;
490 struct sock
*sk
= NULL
;
491 struct sctp_association
*asoc
;
492 struct sctp_transport
*transport
= NULL
;
493 struct sctp_init_chunk
*chunkhdr
;
494 __u32 vtag
= ntohl(sctphdr
->vtag
);
495 int len
= skb
->len
- ((void *)sctphdr
- (void *)skb
->data
);
497 *app
= NULL
; *tpp
= NULL
;
499 af
= sctp_get_af_specific(family
);
504 /* Initialize local addresses for lookups. */
505 af
->from_skb(&saddr
, skb
, 1);
506 af
->from_skb(&daddr
, skb
, 0);
508 /* Look for an association that matches the incoming ICMP error
511 asoc
= __sctp_lookup_association(net
, &saddr
, &daddr
, &transport
);
517 /* RFC 4960, Appendix C. ICMP Handling
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.
530 chunkhdr
= (void *)sctphdr
+ sizeof(struct sctphdr
);
531 if (len
< sizeof(struct sctphdr
) + sizeof(sctp_chunkhdr_t
)
533 chunkhdr
->chunk_hdr
.type
!= SCTP_CID_INIT
||
534 ntohl(chunkhdr
->init_hdr
.init_tag
) != asoc
->c
.my_vtag
) {
537 } else if (vtag
!= asoc
->c
.peer_vtag
) {
541 sctp_bh_lock_sock(sk
);
543 /* If too many ICMPs get dropped on busy
544 * servers this needs to be solved differently.
546 if (sock_owned_by_user(sk
))
547 NET_INC_STATS_BH(net
, LINUX_MIB_LOCKDROPPEDICMPS
);
555 sctp_association_put(asoc
);
559 /* Common cleanup code for icmp/icmpv6 error handler. */
560 void sctp_err_finish(struct sock
*sk
, struct sctp_association
*asoc
)
562 sctp_bh_unlock_sock(sk
);
564 sctp_association_put(asoc
);
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.
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.
582 void sctp_v4_err(struct sk_buff
*skb
, __u32 info
)
584 const struct iphdr
*iph
= (const struct iphdr
*)skb
->data
;
585 const int ihlen
= iph
->ihl
* 4;
586 const int type
= icmp_hdr(skb
)->type
;
587 const int code
= icmp_hdr(skb
)->code
;
589 struct sctp_association
*asoc
= NULL
;
590 struct sctp_transport
*transport
;
591 struct inet_sock
*inet
;
592 __u16 saveip
, savesctp
;
594 struct net
*net
= dev_net(skb
->dev
);
596 if (skb
->len
< ihlen
+ 8) {
597 ICMP_INC_STATS_BH(net
, ICMP_MIB_INERRORS
);
601 /* Fix up skb to look at the embedded net header. */
602 saveip
= skb
->network_header
;
603 savesctp
= skb
->transport_header
;
604 skb_reset_network_header(skb
);
605 skb_set_transport_header(skb
, ihlen
);
606 sk
= sctp_err_lookup(net
, AF_INET
, skb
, sctp_hdr(skb
), &asoc
, &transport
);
607 /* Put back, the original values. */
608 skb
->network_header
= saveip
;
609 skb
->transport_header
= savesctp
;
611 ICMP_INC_STATS_BH(net
, ICMP_MIB_INERRORS
);
614 /* Warning: The sock lock is held. Remember to call
619 case ICMP_PARAMETERPROB
:
622 case ICMP_DEST_UNREACH
:
623 if (code
> NR_ICMP_UNREACH
)
626 /* PMTU discovery (RFC1191) */
627 if (ICMP_FRAG_NEEDED
== code
) {
628 sctp_icmp_frag_needed(sk
, asoc
, transport
, info
);
632 if (ICMP_PROT_UNREACH
== code
) {
633 sctp_icmp_proto_unreachable(sk
, asoc
,
638 err
= icmp_err_convert
[code
].errno
;
640 case ICMP_TIME_EXCEEDED
:
641 /* Ignore any time exceeded errors due to fragment reassembly
644 if (ICMP_EXC_FRAGTIME
== code
)
650 sctp_icmp_redirect(sk
, transport
, skb
);
658 if (!sock_owned_by_user(sk
) && inet
->recverr
) {
660 sk
->sk_error_report(sk
);
661 } else { /* Only an error on timeout */
662 sk
->sk_err_soft
= err
;
666 sctp_err_finish(sk
, asoc
);
670 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
672 * This function scans all the chunks in the OOTB packet to determine if
673 * the packet should be discarded right away. If a response might be needed
674 * for this packet, or, if further processing is possible, the packet will
675 * be queued to a proper inqueue for the next phase of handling.
678 * Return 0 - If further processing is needed.
679 * Return 1 - If the packet can be discarded right away.
681 static int sctp_rcv_ootb(struct sk_buff
*skb
)
686 ch
= (sctp_chunkhdr_t
*) skb
->data
;
688 /* Scan through all the chunks in the packet. */
690 /* Break out if chunk length is less then minimal. */
691 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
694 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
695 if (ch_end
> skb_tail_pointer(skb
))
698 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
699 * receiver MUST silently discard the OOTB packet and take no
702 if (SCTP_CID_ABORT
== ch
->type
)
705 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
706 * chunk, the receiver should silently discard the packet
707 * and take no further action.
709 if (SCTP_CID_SHUTDOWN_COMPLETE
== ch
->type
)
713 * This will discard packets with INIT chunk bundled as
714 * subsequent chunks in the packet. When INIT is first,
715 * the normal INIT processing will discard the chunk.
717 if (SCTP_CID_INIT
== ch
->type
&& (void *)ch
!= skb
->data
)
720 ch
= (sctp_chunkhdr_t
*) ch_end
;
721 } while (ch_end
< skb_tail_pointer(skb
));
729 /* Insert endpoint into the hash table. */
730 static void __sctp_hash_endpoint(struct sctp_endpoint
*ep
)
732 struct net
*net
= sock_net(ep
->base
.sk
);
733 struct sctp_ep_common
*epb
;
734 struct sctp_hashbucket
*head
;
738 epb
->hashent
= sctp_ep_hashfn(net
, epb
->bind_addr
.port
);
739 head
= &sctp_ep_hashtable
[epb
->hashent
];
741 sctp_write_lock(&head
->lock
);
742 hlist_add_head(&epb
->node
, &head
->chain
);
743 sctp_write_unlock(&head
->lock
);
746 /* Add an endpoint to the hash. Local BH-safe. */
747 void sctp_hash_endpoint(struct sctp_endpoint
*ep
)
749 sctp_local_bh_disable();
750 __sctp_hash_endpoint(ep
);
751 sctp_local_bh_enable();
754 /* Remove endpoint from the hash table. */
755 static void __sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
757 struct net
*net
= sock_net(ep
->base
.sk
);
758 struct sctp_hashbucket
*head
;
759 struct sctp_ep_common
*epb
;
763 epb
->hashent
= sctp_ep_hashfn(net
, epb
->bind_addr
.port
);
765 head
= &sctp_ep_hashtable
[epb
->hashent
];
767 sctp_write_lock(&head
->lock
);
768 hlist_del_init(&epb
->node
);
769 sctp_write_unlock(&head
->lock
);
772 /* Remove endpoint from the hash. Local BH-safe. */
773 void sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
775 sctp_local_bh_disable();
776 __sctp_unhash_endpoint(ep
);
777 sctp_local_bh_enable();
780 /* Look up an endpoint. */
781 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(struct net
*net
,
782 const union sctp_addr
*laddr
)
784 struct sctp_hashbucket
*head
;
785 struct sctp_ep_common
*epb
;
786 struct sctp_endpoint
*ep
;
789 hash
= sctp_ep_hashfn(net
, ntohs(laddr
->v4
.sin_port
));
790 head
= &sctp_ep_hashtable
[hash
];
791 read_lock(&head
->lock
);
792 sctp_for_each_hentry(epb
, &head
->chain
) {
794 if (sctp_endpoint_is_match(ep
, net
, laddr
))
798 ep
= sctp_sk(net
->sctp
.ctl_sock
)->ep
;
801 sctp_endpoint_hold(ep
);
802 read_unlock(&head
->lock
);
806 /* Insert association into the hash table. */
807 static void __sctp_hash_established(struct sctp_association
*asoc
)
809 struct net
*net
= sock_net(asoc
->base
.sk
);
810 struct sctp_ep_common
*epb
;
811 struct sctp_hashbucket
*head
;
815 /* Calculate which chain this entry will belong to. */
816 epb
->hashent
= sctp_assoc_hashfn(net
, epb
->bind_addr
.port
,
819 head
= &sctp_assoc_hashtable
[epb
->hashent
];
821 sctp_write_lock(&head
->lock
);
822 hlist_add_head(&epb
->node
, &head
->chain
);
823 sctp_write_unlock(&head
->lock
);
826 /* Add an association to the hash. Local BH-safe. */
827 void sctp_hash_established(struct sctp_association
*asoc
)
832 sctp_local_bh_disable();
833 __sctp_hash_established(asoc
);
834 sctp_local_bh_enable();
837 /* Remove association from the hash table. */
838 static void __sctp_unhash_established(struct sctp_association
*asoc
)
840 struct net
*net
= sock_net(asoc
->base
.sk
);
841 struct sctp_hashbucket
*head
;
842 struct sctp_ep_common
*epb
;
846 epb
->hashent
= sctp_assoc_hashfn(net
, epb
->bind_addr
.port
,
849 head
= &sctp_assoc_hashtable
[epb
->hashent
];
851 sctp_write_lock(&head
->lock
);
852 hlist_del_init(&epb
->node
);
853 sctp_write_unlock(&head
->lock
);
856 /* Remove association from the hash table. Local BH-safe. */
857 void sctp_unhash_established(struct sctp_association
*asoc
)
862 sctp_local_bh_disable();
863 __sctp_unhash_established(asoc
);
864 sctp_local_bh_enable();
867 /* Look up an association. */
868 static struct sctp_association
*__sctp_lookup_association(
870 const union sctp_addr
*local
,
871 const union sctp_addr
*peer
,
872 struct sctp_transport
**pt
)
874 struct sctp_hashbucket
*head
;
875 struct sctp_ep_common
*epb
;
876 struct sctp_association
*asoc
;
877 struct sctp_transport
*transport
;
880 /* Optimize here for direct hit, only listening connections can
881 * have wildcards anyways.
883 hash
= sctp_assoc_hashfn(net
, ntohs(local
->v4
.sin_port
),
884 ntohs(peer
->v4
.sin_port
));
885 head
= &sctp_assoc_hashtable
[hash
];
886 read_lock(&head
->lock
);
887 sctp_for_each_hentry(epb
, &head
->chain
) {
888 asoc
= sctp_assoc(epb
);
889 transport
= sctp_assoc_is_match(asoc
, net
, local
, peer
);
894 read_unlock(&head
->lock
);
900 sctp_association_hold(asoc
);
901 read_unlock(&head
->lock
);
905 /* Look up an association. BH-safe. */
907 struct sctp_association
*sctp_lookup_association(struct net
*net
,
908 const union sctp_addr
*laddr
,
909 const union sctp_addr
*paddr
,
910 struct sctp_transport
**transportp
)
912 struct sctp_association
*asoc
;
914 sctp_local_bh_disable();
915 asoc
= __sctp_lookup_association(net
, laddr
, paddr
, transportp
);
916 sctp_local_bh_enable();
921 /* Is there an association matching the given local and peer addresses? */
922 int sctp_has_association(struct net
*net
,
923 const union sctp_addr
*laddr
,
924 const union sctp_addr
*paddr
)
926 struct sctp_association
*asoc
;
927 struct sctp_transport
*transport
;
929 if ((asoc
= sctp_lookup_association(net
, laddr
, paddr
, &transport
))) {
930 sctp_association_put(asoc
);
938 * SCTP Implementors Guide, 2.18 Handling of address
939 * parameters within the INIT or INIT-ACK.
941 * D) When searching for a matching TCB upon reception of an INIT
942 * or INIT-ACK chunk the receiver SHOULD use not only the
943 * source address of the packet (containing the INIT or
944 * INIT-ACK) but the receiver SHOULD also use all valid
945 * address parameters contained within the chunk.
947 * 2.18.3 Solution description
949 * This new text clearly specifies to an implementor the need
950 * to look within the INIT or INIT-ACK. Any implementation that
951 * does not do this, may not be able to establish associations
952 * in certain circumstances.
955 static struct sctp_association
*__sctp_rcv_init_lookup(struct net
*net
,
957 const union sctp_addr
*laddr
, struct sctp_transport
**transportp
)
959 struct sctp_association
*asoc
;
960 union sctp_addr addr
;
961 union sctp_addr
*paddr
= &addr
;
962 struct sctphdr
*sh
= sctp_hdr(skb
);
963 union sctp_params params
;
964 sctp_init_chunk_t
*init
;
965 struct sctp_transport
*transport
;
969 * This code will NOT touch anything inside the chunk--it is
970 * strictly READ-ONLY.
972 * RFC 2960 3 SCTP packet Format
974 * Multiple chunks can be bundled into one SCTP packet up to
975 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
976 * COMPLETE chunks. These chunks MUST NOT be bundled with any
977 * other chunk in a packet. See Section 6.10 for more details
981 /* Find the start of the TLVs and the end of the chunk. This is
982 * the region we search for address parameters.
984 init
= (sctp_init_chunk_t
*)skb
->data
;
986 /* Walk the parameters looking for embedded addresses. */
987 sctp_walk_params(params
, init
, init_hdr
.params
) {
989 /* Note: Ignoring hostname addresses. */
990 af
= sctp_get_af_specific(param_type2af(params
.p
->type
));
994 af
->from_addr_param(paddr
, params
.addr
, sh
->source
, 0);
996 asoc
= __sctp_lookup_association(net
, laddr
, paddr
, &transport
);
1004 /* ADD-IP, Section 5.2
1005 * When an endpoint receives an ASCONF Chunk from the remote peer
1006 * special procedures may be needed to identify the association the
1007 * ASCONF Chunk is associated with. To properly find the association
1008 * the following procedures SHOULD be followed:
1010 * D2) If the association is not found, use the address found in the
1011 * Address Parameter TLV combined with the port number found in the
1012 * SCTP common header. If found proceed to rule D4.
1014 * D2-ext) If more than one ASCONF Chunks are packed together, use the
1015 * address found in the ASCONF Address Parameter TLV of each of the
1016 * subsequent ASCONF Chunks. If found, proceed to rule D4.
1018 static struct sctp_association
*__sctp_rcv_asconf_lookup(
1020 sctp_chunkhdr_t
*ch
,
1021 const union sctp_addr
*laddr
,
1023 struct sctp_transport
**transportp
)
1025 sctp_addip_chunk_t
*asconf
= (struct sctp_addip_chunk
*)ch
;
1027 union sctp_addr_param
*param
;
1028 union sctp_addr paddr
;
1030 /* Skip over the ADDIP header and find the Address parameter */
1031 param
= (union sctp_addr_param
*)(asconf
+ 1);
1033 af
= sctp_get_af_specific(param_type2af(param
->p
.type
));
1037 af
->from_addr_param(&paddr
, param
, peer_port
, 0);
1039 return __sctp_lookup_association(net
, laddr
, &paddr
, transportp
);
1043 /* SCTP-AUTH, Section 6.3:
1044 * If the receiver does not find a STCB for a packet containing an AUTH
1045 * chunk as the first chunk and not a COOKIE-ECHO chunk as the second
1046 * chunk, it MUST use the chunks after the AUTH chunk to look up an existing
1049 * This means that any chunks that can help us identify the association need
1050 * to be looked at to find this association.
1052 static struct sctp_association
*__sctp_rcv_walk_lookup(struct net
*net
,
1053 struct sk_buff
*skb
,
1054 const union sctp_addr
*laddr
,
1055 struct sctp_transport
**transportp
)
1057 struct sctp_association
*asoc
= NULL
;
1058 sctp_chunkhdr_t
*ch
;
1060 unsigned int chunk_num
= 1;
1063 /* Walk through the chunks looking for AUTH or ASCONF chunks
1064 * to help us find the association.
1066 ch
= (sctp_chunkhdr_t
*) skb
->data
;
1068 /* Break out if chunk length is less then minimal. */
1069 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
1072 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
1073 if (ch_end
> skb_tail_pointer(skb
))
1078 have_auth
= chunk_num
;
1081 case SCTP_CID_COOKIE_ECHO
:
1082 /* If a packet arrives containing an AUTH chunk as
1083 * a first chunk, a COOKIE-ECHO chunk as the second
1084 * chunk, and possibly more chunks after them, and
1085 * the receiver does not have an STCB for that
1086 * packet, then authentication is based on
1087 * the contents of the COOKIE- ECHO chunk.
1089 if (have_auth
== 1 && chunk_num
== 2)
1093 case SCTP_CID_ASCONF
:
1094 if (have_auth
|| net
->sctp
.addip_noauth
)
1095 asoc
= __sctp_rcv_asconf_lookup(
1097 sctp_hdr(skb
)->source
,
1106 ch
= (sctp_chunkhdr_t
*) ch_end
;
1108 } while (ch_end
< skb_tail_pointer(skb
));
1114 * There are circumstances when we need to look inside the SCTP packet
1115 * for information to help us find the association. Examples
1116 * include looking inside of INIT/INIT-ACK chunks or after the AUTH
1119 static struct sctp_association
*__sctp_rcv_lookup_harder(struct net
*net
,
1120 struct sk_buff
*skb
,
1121 const union sctp_addr
*laddr
,
1122 struct sctp_transport
**transportp
)
1124 sctp_chunkhdr_t
*ch
;
1126 ch
= (sctp_chunkhdr_t
*) skb
->data
;
1128 /* The code below will attempt to walk the chunk and extract
1129 * parameter information. Before we do that, we need to verify
1130 * that the chunk length doesn't cause overflow. Otherwise, we'll
1133 if (WORD_ROUND(ntohs(ch
->length
)) > skb
->len
)
1136 /* If this is INIT/INIT-ACK look inside the chunk too. */
1139 case SCTP_CID_INIT_ACK
:
1140 return __sctp_rcv_init_lookup(net
, skb
, laddr
, transportp
);
1144 return __sctp_rcv_walk_lookup(net
, skb
, laddr
, transportp
);
1152 /* Lookup an association for an inbound skb. */
1153 static struct sctp_association
*__sctp_rcv_lookup(struct net
*net
,
1154 struct sk_buff
*skb
,
1155 const union sctp_addr
*paddr
,
1156 const union sctp_addr
*laddr
,
1157 struct sctp_transport
**transportp
)
1159 struct sctp_association
*asoc
;
1161 asoc
= __sctp_lookup_association(net
, laddr
, paddr
, transportp
);
1163 /* Further lookup for INIT/INIT-ACK packets.
1164 * SCTP Implementors Guide, 2.18 Handling of address
1165 * parameters within the INIT or INIT-ACK.
1168 asoc
= __sctp_rcv_lookup_harder(net
, skb
, laddr
, transportp
);