1 /* SCTP kernel reference 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 reference Implementation
11 * These functions handle all input from the IP layer into SCTP.
13 * The SCTP reference 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 * The SCTP reference 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 */
61 #include <net/sctp/sctp.h>
62 #include <net/sctp/sm.h>
64 /* Forward declarations for internal helpers. */
65 static int sctp_rcv_ootb(struct sk_buff
*);
66 static struct sctp_association
*__sctp_rcv_lookup(struct sk_buff
*skb
,
67 const union sctp_addr
*laddr
,
68 const union sctp_addr
*paddr
,
69 struct sctp_transport
**transportp
);
70 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(const union sctp_addr
*laddr
);
71 static struct sctp_association
*__sctp_lookup_association(
72 const union sctp_addr
*local
,
73 const union sctp_addr
*peer
,
74 struct sctp_transport
**pt
);
76 static void sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
);
79 /* Calculate the SCTP checksum of an SCTP packet. */
80 static inline int sctp_rcv_checksum(struct sk_buff
*skb
)
84 struct sk_buff
*list
= skb_shinfo(skb
)->frag_list
;
86 sh
= (struct sctphdr
*) skb
->h
.raw
;
87 cmp
= ntohl(sh
->checksum
);
89 val
= sctp_start_cksum((__u8
*)sh
, skb_headlen(skb
));
91 for (; list
; list
= list
->next
)
92 val
= sctp_update_cksum((__u8
*)list
->data
, skb_headlen(list
),
95 val
= sctp_end_cksum(val
);
98 /* CRC failure, dump it. */
99 SCTP_INC_STATS_BH(SCTP_MIB_CHECKSUMERRORS
);
105 struct sctp_input_cb
{
107 struct inet_skb_parm h4
;
108 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
109 struct inet6_skb_parm h6
;
112 struct sctp_chunk
*chunk
;
114 #define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
117 * This is the routine which IP calls when receiving an SCTP packet.
119 int sctp_rcv(struct sk_buff
*skb
)
122 struct sctp_association
*asoc
;
123 struct sctp_endpoint
*ep
= NULL
;
124 struct sctp_ep_common
*rcvr
;
125 struct sctp_transport
*transport
= NULL
;
126 struct sctp_chunk
*chunk
;
129 union sctp_addr dest
;
133 if (skb
->pkt_type
!=PACKET_HOST
)
136 SCTP_INC_STATS_BH(SCTP_MIB_INSCTPPACKS
);
138 sh
= (struct sctphdr
*) skb
->h
.raw
;
140 /* Pull up the IP and SCTP headers. */
141 __skb_pull(skb
, skb
->h
.raw
- skb
->data
);
142 if (skb
->len
< sizeof(struct sctphdr
))
144 if (sctp_rcv_checksum(skb
) < 0)
147 skb_pull(skb
, sizeof(struct sctphdr
));
149 /* Make sure we at least have chunk headers worth of data left. */
150 if (skb
->len
< sizeof(struct sctp_chunkhdr
))
153 family
= ipver2af(skb
->nh
.iph
->version
);
154 af
= sctp_get_af_specific(family
);
158 /* Initialize local addresses for lookups. */
159 af
->from_skb(&src
, skb
, 1);
160 af
->from_skb(&dest
, skb
, 0);
162 /* If the packet is to or from a non-unicast address,
163 * silently discard the packet.
165 * This is not clearly defined in the RFC except in section
166 * 8.4 - OOTB handling. However, based on the book "Stream Control
167 * Transmission Protocol" 2.1, "It is important to note that the
168 * IP address of an SCTP transport address must be a routable
169 * unicast address. In other words, IP multicast addresses and
170 * IP broadcast addresses cannot be used in an SCTP transport
173 if (!af
->addr_valid(&src
, NULL
, skb
) ||
174 !af
->addr_valid(&dest
, NULL
, skb
))
177 asoc
= __sctp_rcv_lookup(skb
, &src
, &dest
, &transport
);
180 ep
= __sctp_rcv_lookup_endpoint(&dest
);
182 /* Retrieve the common input handling substructure. */
183 rcvr
= asoc
? &asoc
->base
: &ep
->base
;
187 * If a frame arrives on an interface and the receiving socket is
188 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
190 if (sk
->sk_bound_dev_if
&& (sk
->sk_bound_dev_if
!= af
->skb_iif(skb
)))
193 sctp_association_put(asoc
);
196 sctp_endpoint_put(ep
);
199 sk
= sctp_get_ctl_sock();
200 ep
= sctp_sk(sk
)->ep
;
201 sctp_endpoint_hold(ep
);
206 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
207 * An SCTP packet is called an "out of the blue" (OOTB)
208 * packet if it is correctly formed, i.e., passed the
209 * receiver's checksum check, but the receiver is not
210 * able to identify the association to which this
214 if (sctp_rcv_ootb(skb
)) {
215 SCTP_INC_STATS_BH(SCTP_MIB_OUTOFBLUES
);
216 goto discard_release
;
220 /* SCTP seems to always need a timestamp right now (FIXME) */
221 if (skb
->tstamp
.off_sec
== 0) {
222 __net_timestamp(skb
);
223 sock_enable_timestamp(sk
);
226 if (!xfrm_policy_check(sk
, XFRM_POLICY_IN
, skb
, family
))
227 goto discard_release
;
230 if (sk_filter(sk
, skb
, 1))
231 goto discard_release
;
233 /* Create an SCTP packet structure. */
234 chunk
= sctp_chunkify(skb
, asoc
, sk
);
236 goto discard_release
;
237 SCTP_INPUT_CB(skb
)->chunk
= chunk
;
239 /* Remember what endpoint is to handle this packet. */
242 /* Remember the SCTP header. */
243 chunk
->sctp_hdr
= sh
;
245 /* Set the source and destination addresses of the incoming chunk. */
246 sctp_init_addrs(chunk
, &src
, &dest
);
248 /* Remember where we came from. */
249 chunk
->transport
= transport
;
251 /* Acquire access to the sock lock. Note: We are safe from other
252 * bottom halves on this lock, but a user may be in the lock too,
253 * so check if it is busy.
255 sctp_bh_lock_sock(sk
);
257 if (sock_owned_by_user(sk
))
258 sctp_add_backlog(sk
, skb
);
260 sctp_inq_push(&chunk
->rcvr
->inqueue
, chunk
);
262 sctp_bh_unlock_sock(sk
);
264 /* Release the asoc/ep ref we took in the lookup calls. */
266 sctp_association_put(asoc
);
268 sctp_endpoint_put(ep
);
277 /* Release the asoc/ep ref we took in the lookup calls. */
279 sctp_association_put(asoc
);
281 sctp_endpoint_put(ep
);
286 /* Process the backlog queue of the socket. Every skb on
287 * the backlog holds a ref on an association or endpoint.
288 * We hold this ref throughout the state machine to make
289 * sure that the structure we need is still around.
291 int sctp_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
293 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
294 struct sctp_inq
*inqueue
= &chunk
->rcvr
->inqueue
;
295 struct sctp_ep_common
*rcvr
= NULL
;
300 /* If the rcvr is dead then the association or endpoint
301 * has been deleted and we can safely drop the chunk
302 * and refs that we are holding.
305 sctp_chunk_free(chunk
);
309 if (unlikely(rcvr
->sk
!= sk
)) {
310 /* In this case, the association moved from one socket to
311 * another. We are currently sitting on the backlog of the
312 * old socket, so we need to move.
313 * However, since we are here in the process context we
314 * need to take make sure that the user doesn't own
315 * the new socket when we process the packet.
316 * If the new socket is user-owned, queue the chunk to the
317 * backlog of the new socket without dropping any refs.
318 * Otherwise, we can safely push the chunk on the inqueue.
322 sctp_bh_lock_sock(sk
);
324 if (sock_owned_by_user(sk
)) {
325 sk_add_backlog(sk
, skb
);
328 sctp_inq_push(inqueue
, chunk
);
330 sctp_bh_unlock_sock(sk
);
332 /* If the chunk was backloged again, don't drop refs */
336 sctp_inq_push(inqueue
, chunk
);
340 /* Release the refs we took in sctp_add_backlog */
341 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
342 sctp_association_put(sctp_assoc(rcvr
));
343 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
344 sctp_endpoint_put(sctp_ep(rcvr
));
351 static void sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
)
353 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
354 struct sctp_ep_common
*rcvr
= chunk
->rcvr
;
356 /* Hold the assoc/ep while hanging on the backlog queue.
357 * This way, we know structures we need will not disappear from us
359 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
360 sctp_association_hold(sctp_assoc(rcvr
));
361 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
362 sctp_endpoint_hold(sctp_ep(rcvr
));
366 sk_add_backlog(sk
, skb
);
369 /* Handle icmp frag needed error. */
370 void sctp_icmp_frag_needed(struct sock
*sk
, struct sctp_association
*asoc
,
371 struct sctp_transport
*t
, __u32 pmtu
)
373 if (sock_owned_by_user(sk
) || !t
|| (t
->pathmtu
== pmtu
))
376 if (t
->param_flags
& SPP_PMTUD_ENABLE
) {
377 if (unlikely(pmtu
< SCTP_DEFAULT_MINSEGMENT
)) {
378 printk(KERN_WARNING
"%s: Reported pmtu %d too low, "
379 "using default minimum of %d\n",
381 SCTP_DEFAULT_MINSEGMENT
);
382 /* Use default minimum segment size and disable
383 * pmtu discovery on this transport.
385 t
->pathmtu
= SCTP_DEFAULT_MINSEGMENT
;
386 t
->param_flags
= (t
->param_flags
& ~SPP_HB
) |
392 /* Update association pmtu. */
393 sctp_assoc_sync_pmtu(asoc
);
396 /* Retransmit with the new pmtu setting.
397 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
398 * Needed will never be sent, but if a message was sent before
399 * PMTU discovery was disabled that was larger than the PMTU, it
400 * would not be fragmented, so it must be re-transmitted fragmented.
402 sctp_retransmit(&asoc
->outqueue
, t
, SCTP_RTXR_PMTUD
);
406 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
408 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
409 * or a "Protocol Unreachable" treat this message as an abort
410 * with the T bit set.
412 * This function sends an event to the state machine, which will abort the
416 void sctp_icmp_proto_unreachable(struct sock
*sk
,
417 struct sctp_association
*asoc
,
418 struct sctp_transport
*t
)
420 SCTP_DEBUG_PRINTK("%s\n", __FUNCTION__
);
422 sctp_do_sm(SCTP_EVENT_T_OTHER
,
423 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH
),
424 asoc
->state
, asoc
->ep
, asoc
, t
,
429 /* Common lookup code for icmp/icmpv6 error handler. */
430 struct sock
*sctp_err_lookup(int family
, struct sk_buff
*skb
,
431 struct sctphdr
*sctphdr
,
432 struct sctp_association
**app
,
433 struct sctp_transport
**tpp
)
435 union sctp_addr saddr
;
436 union sctp_addr daddr
;
438 struct sock
*sk
= NULL
;
439 struct sctp_association
*asoc
;
440 struct sctp_transport
*transport
= NULL
;
442 *app
= NULL
; *tpp
= NULL
;
444 af
= sctp_get_af_specific(family
);
449 /* Initialize local addresses for lookups. */
450 af
->from_skb(&saddr
, skb
, 1);
451 af
->from_skb(&daddr
, skb
, 0);
453 /* Look for an association that matches the incoming ICMP error
456 asoc
= __sctp_lookup_association(&saddr
, &daddr
, &transport
);
462 if (ntohl(sctphdr
->vtag
) != asoc
->c
.peer_vtag
) {
463 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
467 sctp_bh_lock_sock(sk
);
469 /* If too many ICMPs get dropped on busy
470 * servers this needs to be solved differently.
472 if (sock_owned_by_user(sk
))
473 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS
);
481 sctp_association_put(asoc
);
485 /* Common cleanup code for icmp/icmpv6 error handler. */
486 void sctp_err_finish(struct sock
*sk
, struct sctp_association
*asoc
)
488 sctp_bh_unlock_sock(sk
);
490 sctp_association_put(asoc
);
494 * This routine is called by the ICMP module when it gets some
495 * sort of error condition. If err < 0 then the socket should
496 * be closed and the error returned to the user. If err > 0
497 * it's just the icmp type << 8 | icmp code. After adjustment
498 * header points to the first 8 bytes of the sctp header. We need
499 * to find the appropriate port.
501 * The locking strategy used here is very "optimistic". When
502 * someone else accesses the socket the ICMP is just dropped
503 * and for some paths there is no check at all.
504 * A more general error queue to queue errors for later handling
505 * is probably better.
508 void sctp_v4_err(struct sk_buff
*skb
, __u32 info
)
510 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
511 struct sctphdr
*sh
= (struct sctphdr
*)(skb
->data
+ (iph
->ihl
<<2));
512 int type
= skb
->h
.icmph
->type
;
513 int code
= skb
->h
.icmph
->code
;
515 struct sctp_association
*asoc
= NULL
;
516 struct sctp_transport
*transport
;
517 struct inet_sock
*inet
;
518 char *saveip
, *savesctp
;
521 if (skb
->len
< ((iph
->ihl
<< 2) + 8)) {
522 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
526 /* Fix up skb to look at the embedded net header. */
527 saveip
= skb
->nh
.raw
;
528 savesctp
= skb
->h
.raw
;
530 skb
->h
.raw
= (char *)sh
;
531 sk
= sctp_err_lookup(AF_INET
, skb
, sh
, &asoc
, &transport
);
532 /* Put back, the original pointers. */
533 skb
->nh
.raw
= saveip
;
534 skb
->h
.raw
= savesctp
;
536 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
539 /* Warning: The sock lock is held. Remember to call
544 case ICMP_PARAMETERPROB
:
547 case ICMP_DEST_UNREACH
:
548 if (code
> NR_ICMP_UNREACH
)
551 /* PMTU discovery (RFC1191) */
552 if (ICMP_FRAG_NEEDED
== code
) {
553 sctp_icmp_frag_needed(sk
, asoc
, transport
, info
);
557 if (ICMP_PROT_UNREACH
== code
) {
558 sctp_icmp_proto_unreachable(sk
, asoc
,
563 err
= icmp_err_convert
[code
].errno
;
565 case ICMP_TIME_EXCEEDED
:
566 /* Ignore any time exceeded errors due to fragment reassembly
569 if (ICMP_EXC_FRAGTIME
== code
)
579 if (!sock_owned_by_user(sk
) && inet
->recverr
) {
581 sk
->sk_error_report(sk
);
582 } else { /* Only an error on timeout */
583 sk
->sk_err_soft
= err
;
587 sctp_err_finish(sk
, asoc
);
591 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
593 * This function scans all the chunks in the OOTB packet to determine if
594 * the packet should be discarded right away. If a response might be needed
595 * for this packet, or, if further processing is possible, the packet will
596 * be queued to a proper inqueue for the next phase of handling.
599 * Return 0 - If further processing is needed.
600 * Return 1 - If the packet can be discarded right away.
602 int sctp_rcv_ootb(struct sk_buff
*skb
)
608 ch
= (sctp_chunkhdr_t
*) skb
->data
;
610 /* Scan through all the chunks in the packet. */
612 /* Break out if chunk length is less then minimal. */
613 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
616 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
617 if (ch_end
> skb
->tail
)
620 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
621 * receiver MUST silently discard the OOTB packet and take no
624 if (SCTP_CID_ABORT
== ch
->type
)
627 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
628 * chunk, the receiver should silently discard the packet
629 * and take no further action.
631 if (SCTP_CID_SHUTDOWN_COMPLETE
== ch
->type
)
634 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
635 * or a COOKIE ACK the SCTP Packet should be silently
638 if (SCTP_CID_COOKIE_ACK
== ch
->type
)
641 if (SCTP_CID_ERROR
== ch
->type
) {
642 sctp_walk_errors(err
, ch
) {
643 if (SCTP_ERROR_STALE_COOKIE
== err
->cause
)
648 ch
= (sctp_chunkhdr_t
*) ch_end
;
649 } while (ch_end
< skb
->tail
);
657 /* Insert endpoint into the hash table. */
658 static void __sctp_hash_endpoint(struct sctp_endpoint
*ep
)
660 struct sctp_ep_common
**epp
;
661 struct sctp_ep_common
*epb
;
662 struct sctp_hashbucket
*head
;
666 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
667 head
= &sctp_ep_hashtable
[epb
->hashent
];
669 sctp_write_lock(&head
->lock
);
673 (*epp
)->pprev
= &epb
->next
;
676 sctp_write_unlock(&head
->lock
);
679 /* Add an endpoint to the hash. Local BH-safe. */
680 void sctp_hash_endpoint(struct sctp_endpoint
*ep
)
682 sctp_local_bh_disable();
683 __sctp_hash_endpoint(ep
);
684 sctp_local_bh_enable();
687 /* Remove endpoint from the hash table. */
688 static void __sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
690 struct sctp_hashbucket
*head
;
691 struct sctp_ep_common
*epb
;
695 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
697 head
= &sctp_ep_hashtable
[epb
->hashent
];
699 sctp_write_lock(&head
->lock
);
703 epb
->next
->pprev
= epb
->pprev
;
704 *epb
->pprev
= epb
->next
;
708 sctp_write_unlock(&head
->lock
);
711 /* Remove endpoint from the hash. Local BH-safe. */
712 void sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
714 sctp_local_bh_disable();
715 __sctp_unhash_endpoint(ep
);
716 sctp_local_bh_enable();
719 /* Look up an endpoint. */
720 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(const union sctp_addr
*laddr
)
722 struct sctp_hashbucket
*head
;
723 struct sctp_ep_common
*epb
;
724 struct sctp_endpoint
*ep
;
727 hash
= sctp_ep_hashfn(laddr
->v4
.sin_port
);
728 head
= &sctp_ep_hashtable
[hash
];
729 read_lock(&head
->lock
);
730 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
732 if (sctp_endpoint_is_match(ep
, laddr
))
736 ep
= sctp_sk((sctp_get_ctl_sock()))->ep
;
740 sctp_endpoint_hold(ep
);
741 read_unlock(&head
->lock
);
745 /* Insert association into the hash table. */
746 static void __sctp_hash_established(struct sctp_association
*asoc
)
748 struct sctp_ep_common
**epp
;
749 struct sctp_ep_common
*epb
;
750 struct sctp_hashbucket
*head
;
754 /* Calculate which chain this entry will belong to. */
755 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
, asoc
->peer
.port
);
757 head
= &sctp_assoc_hashtable
[epb
->hashent
];
759 sctp_write_lock(&head
->lock
);
763 (*epp
)->pprev
= &epb
->next
;
766 sctp_write_unlock(&head
->lock
);
769 /* Add an association to the hash. Local BH-safe. */
770 void sctp_hash_established(struct sctp_association
*asoc
)
772 sctp_local_bh_disable();
773 __sctp_hash_established(asoc
);
774 sctp_local_bh_enable();
777 /* Remove association from the hash table. */
778 static void __sctp_unhash_established(struct sctp_association
*asoc
)
780 struct sctp_hashbucket
*head
;
781 struct sctp_ep_common
*epb
;
785 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
,
788 head
= &sctp_assoc_hashtable
[epb
->hashent
];
790 sctp_write_lock(&head
->lock
);
794 epb
->next
->pprev
= epb
->pprev
;
795 *epb
->pprev
= epb
->next
;
799 sctp_write_unlock(&head
->lock
);
802 /* Remove association from the hash table. Local BH-safe. */
803 void sctp_unhash_established(struct sctp_association
*asoc
)
805 sctp_local_bh_disable();
806 __sctp_unhash_established(asoc
);
807 sctp_local_bh_enable();
810 /* Look up an association. */
811 static struct sctp_association
*__sctp_lookup_association(
812 const union sctp_addr
*local
,
813 const union sctp_addr
*peer
,
814 struct sctp_transport
**pt
)
816 struct sctp_hashbucket
*head
;
817 struct sctp_ep_common
*epb
;
818 struct sctp_association
*asoc
;
819 struct sctp_transport
*transport
;
822 /* Optimize here for direct hit, only listening connections can
823 * have wildcards anyways.
825 hash
= sctp_assoc_hashfn(local
->v4
.sin_port
, peer
->v4
.sin_port
);
826 head
= &sctp_assoc_hashtable
[hash
];
827 read_lock(&head
->lock
);
828 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
829 asoc
= sctp_assoc(epb
);
830 transport
= sctp_assoc_is_match(asoc
, local
, peer
);
835 read_unlock(&head
->lock
);
841 sctp_association_hold(asoc
);
842 read_unlock(&head
->lock
);
846 /* Look up an association. BH-safe. */
848 struct sctp_association
*sctp_lookup_association(const union sctp_addr
*laddr
,
849 const union sctp_addr
*paddr
,
850 struct sctp_transport
**transportp
)
852 struct sctp_association
*asoc
;
854 sctp_local_bh_disable();
855 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
856 sctp_local_bh_enable();
861 /* Is there an association matching the given local and peer addresses? */
862 int sctp_has_association(const union sctp_addr
*laddr
,
863 const union sctp_addr
*paddr
)
865 struct sctp_association
*asoc
;
866 struct sctp_transport
*transport
;
868 if ((asoc
= sctp_lookup_association(laddr
, paddr
, &transport
))) {
869 sctp_association_put(asoc
);
877 * SCTP Implementors Guide, 2.18 Handling of address
878 * parameters within the INIT or INIT-ACK.
880 * D) When searching for a matching TCB upon reception of an INIT
881 * or INIT-ACK chunk the receiver SHOULD use not only the
882 * source address of the packet (containing the INIT or
883 * INIT-ACK) but the receiver SHOULD also use all valid
884 * address parameters contained within the chunk.
886 * 2.18.3 Solution description
888 * This new text clearly specifies to an implementor the need
889 * to look within the INIT or INIT-ACK. Any implementation that
890 * does not do this, may not be able to establish associations
891 * in certain circumstances.
894 static struct sctp_association
*__sctp_rcv_init_lookup(struct sk_buff
*skb
,
895 const union sctp_addr
*laddr
, struct sctp_transport
**transportp
)
897 struct sctp_association
*asoc
;
898 union sctp_addr addr
;
899 union sctp_addr
*paddr
= &addr
;
900 struct sctphdr
*sh
= (struct sctphdr
*) skb
->h
.raw
;
902 union sctp_params params
;
903 sctp_init_chunk_t
*init
;
904 struct sctp_transport
*transport
;
907 ch
= (sctp_chunkhdr_t
*) skb
->data
;
909 /* If this is INIT/INIT-ACK look inside the chunk too. */
912 case SCTP_CID_INIT_ACK
:
918 /* The code below will attempt to walk the chunk and extract
919 * parameter information. Before we do that, we need to verify
920 * that the chunk length doesn't cause overflow. Otherwise, we'll
923 if (WORD_ROUND(ntohs(ch
->length
)) > skb
->len
)
927 * This code will NOT touch anything inside the chunk--it is
928 * strictly READ-ONLY.
930 * RFC 2960 3 SCTP packet Format
932 * Multiple chunks can be bundled into one SCTP packet up to
933 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
934 * COMPLETE chunks. These chunks MUST NOT be bundled with any
935 * other chunk in a packet. See Section 6.10 for more details
939 /* Find the start of the TLVs and the end of the chunk. This is
940 * the region we search for address parameters.
942 init
= (sctp_init_chunk_t
*)skb
->data
;
944 /* Walk the parameters looking for embedded addresses. */
945 sctp_walk_params(params
, init
, init_hdr
.params
) {
947 /* Note: Ignoring hostname addresses. */
948 af
= sctp_get_af_specific(param_type2af(params
.p
->type
));
952 af
->from_addr_param(paddr
, params
.addr
, ntohs(sh
->source
), 0);
954 asoc
= __sctp_lookup_association(laddr
, paddr
, &transport
);
962 /* Lookup an association for an inbound skb. */
963 static struct sctp_association
*__sctp_rcv_lookup(struct sk_buff
*skb
,
964 const union sctp_addr
*paddr
,
965 const union sctp_addr
*laddr
,
966 struct sctp_transport
**transportp
)
968 struct sctp_association
*asoc
;
970 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
972 /* Further lookup for INIT/INIT-ACK packets.
973 * SCTP Implementors Guide, 2.18 Handling of address
974 * parameters within the INIT or INIT-ACK.
977 asoc
= __sctp_rcv_init_lookup(skb
, laddr
, transportp
);