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 ((skb
->ip_summed
!= CHECKSUM_UNNECESSARY
) &&
145 (sctp_rcv_checksum(skb
) < 0))
148 skb_pull(skb
, sizeof(struct sctphdr
));
150 /* Make sure we at least have chunk headers worth of data left. */
151 if (skb
->len
< sizeof(struct sctp_chunkhdr
))
154 family
= ipver2af(skb
->nh
.iph
->version
);
155 af
= sctp_get_af_specific(family
);
159 /* Initialize local addresses for lookups. */
160 af
->from_skb(&src
, skb
, 1);
161 af
->from_skb(&dest
, skb
, 0);
163 /* If the packet is to or from a non-unicast address,
164 * silently discard the packet.
166 * This is not clearly defined in the RFC except in section
167 * 8.4 - OOTB handling. However, based on the book "Stream Control
168 * Transmission Protocol" 2.1, "It is important to note that the
169 * IP address of an SCTP transport address must be a routable
170 * unicast address. In other words, IP multicast addresses and
171 * IP broadcast addresses cannot be used in an SCTP transport
174 if (!af
->addr_valid(&src
, NULL
, skb
) ||
175 !af
->addr_valid(&dest
, NULL
, skb
))
178 asoc
= __sctp_rcv_lookup(skb
, &src
, &dest
, &transport
);
181 ep
= __sctp_rcv_lookup_endpoint(&dest
);
183 /* Retrieve the common input handling substructure. */
184 rcvr
= asoc
? &asoc
->base
: &ep
->base
;
188 * If a frame arrives on an interface and the receiving socket is
189 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
191 if (sk
->sk_bound_dev_if
&& (sk
->sk_bound_dev_if
!= af
->skb_iif(skb
)))
194 sctp_association_put(asoc
);
197 sctp_endpoint_put(ep
);
200 sk
= sctp_get_ctl_sock();
201 ep
= sctp_sk(sk
)->ep
;
202 sctp_endpoint_hold(ep
);
207 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
208 * An SCTP packet is called an "out of the blue" (OOTB)
209 * packet if it is correctly formed, i.e., passed the
210 * receiver's checksum check, but the receiver is not
211 * able to identify the association to which this
215 if (sctp_rcv_ootb(skb
)) {
216 SCTP_INC_STATS_BH(SCTP_MIB_OUTOFBLUES
);
217 goto discard_release
;
221 /* SCTP seems to always need a timestamp right now (FIXME) */
222 if (skb
->tstamp
.off_sec
== 0) {
223 __net_timestamp(skb
);
224 sock_enable_timestamp(sk
);
227 if (!xfrm_policy_check(sk
, XFRM_POLICY_IN
, skb
, family
))
228 goto discard_release
;
231 if (sk_filter(sk
, skb
, 1))
232 goto discard_release
;
234 /* Create an SCTP packet structure. */
235 chunk
= sctp_chunkify(skb
, asoc
, sk
);
237 goto discard_release
;
238 SCTP_INPUT_CB(skb
)->chunk
= chunk
;
240 /* Remember what endpoint is to handle this packet. */
243 /* Remember the SCTP header. */
244 chunk
->sctp_hdr
= sh
;
246 /* Set the source and destination addresses of the incoming chunk. */
247 sctp_init_addrs(chunk
, &src
, &dest
);
249 /* Remember where we came from. */
250 chunk
->transport
= transport
;
252 /* Acquire access to the sock lock. Note: We are safe from other
253 * bottom halves on this lock, but a user may be in the lock too,
254 * so check if it is busy.
256 sctp_bh_lock_sock(sk
);
258 if (sock_owned_by_user(sk
))
259 sctp_add_backlog(sk
, skb
);
261 sctp_inq_push(&chunk
->rcvr
->inqueue
, chunk
);
263 sctp_bh_unlock_sock(sk
);
265 /* Release the asoc/ep ref we took in the lookup calls. */
267 sctp_association_put(asoc
);
269 sctp_endpoint_put(ep
);
278 /* Release the asoc/ep ref we took in the lookup calls. */
280 sctp_association_put(asoc
);
282 sctp_endpoint_put(ep
);
287 /* Process the backlog queue of the socket. Every skb on
288 * the backlog holds a ref on an association or endpoint.
289 * We hold this ref throughout the state machine to make
290 * sure that the structure we need is still around.
292 int sctp_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
294 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
295 struct sctp_inq
*inqueue
= &chunk
->rcvr
->inqueue
;
296 struct sctp_ep_common
*rcvr
= NULL
;
301 /* If the rcvr is dead then the association or endpoint
302 * has been deleted and we can safely drop the chunk
303 * and refs that we are holding.
306 sctp_chunk_free(chunk
);
310 if (unlikely(rcvr
->sk
!= sk
)) {
311 /* In this case, the association moved from one socket to
312 * another. We are currently sitting on the backlog of the
313 * old socket, so we need to move.
314 * However, since we are here in the process context we
315 * need to take make sure that the user doesn't own
316 * the new socket when we process the packet.
317 * If the new socket is user-owned, queue the chunk to the
318 * backlog of the new socket without dropping any refs.
319 * Otherwise, we can safely push the chunk on the inqueue.
323 sctp_bh_lock_sock(sk
);
325 if (sock_owned_by_user(sk
)) {
326 sk_add_backlog(sk
, skb
);
329 sctp_inq_push(inqueue
, chunk
);
331 sctp_bh_unlock_sock(sk
);
333 /* If the chunk was backloged again, don't drop refs */
337 sctp_inq_push(inqueue
, chunk
);
341 /* Release the refs we took in sctp_add_backlog */
342 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
343 sctp_association_put(sctp_assoc(rcvr
));
344 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
345 sctp_endpoint_put(sctp_ep(rcvr
));
352 static void sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
)
354 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
355 struct sctp_ep_common
*rcvr
= chunk
->rcvr
;
357 /* Hold the assoc/ep while hanging on the backlog queue.
358 * This way, we know structures we need will not disappear from us
360 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
361 sctp_association_hold(sctp_assoc(rcvr
));
362 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
363 sctp_endpoint_hold(sctp_ep(rcvr
));
367 sk_add_backlog(sk
, skb
);
370 /* Handle icmp frag needed error. */
371 void sctp_icmp_frag_needed(struct sock
*sk
, struct sctp_association
*asoc
,
372 struct sctp_transport
*t
, __u32 pmtu
)
374 if (sock_owned_by_user(sk
) || !t
|| (t
->pathmtu
== pmtu
))
377 if (t
->param_flags
& SPP_PMTUD_ENABLE
) {
378 if (unlikely(pmtu
< SCTP_DEFAULT_MINSEGMENT
)) {
379 printk(KERN_WARNING
"%s: Reported pmtu %d too low, "
380 "using default minimum of %d\n",
382 SCTP_DEFAULT_MINSEGMENT
);
383 /* Use default minimum segment size and disable
384 * pmtu discovery on this transport.
386 t
->pathmtu
= SCTP_DEFAULT_MINSEGMENT
;
387 t
->param_flags
= (t
->param_flags
& ~SPP_HB
) |
393 /* Update association pmtu. */
394 sctp_assoc_sync_pmtu(asoc
);
397 /* Retransmit with the new pmtu setting.
398 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
399 * Needed will never be sent, but if a message was sent before
400 * PMTU discovery was disabled that was larger than the PMTU, it
401 * would not be fragmented, so it must be re-transmitted fragmented.
403 sctp_retransmit(&asoc
->outqueue
, t
, SCTP_RTXR_PMTUD
);
407 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
409 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
410 * or a "Protocol Unreachable" treat this message as an abort
411 * with the T bit set.
413 * This function sends an event to the state machine, which will abort the
417 void sctp_icmp_proto_unreachable(struct sock
*sk
,
418 struct sctp_association
*asoc
,
419 struct sctp_transport
*t
)
421 SCTP_DEBUG_PRINTK("%s\n", __FUNCTION__
);
423 sctp_do_sm(SCTP_EVENT_T_OTHER
,
424 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH
),
425 asoc
->state
, asoc
->ep
, asoc
, t
,
430 /* Common lookup code for icmp/icmpv6 error handler. */
431 struct sock
*sctp_err_lookup(int family
, struct sk_buff
*skb
,
432 struct sctphdr
*sctphdr
,
433 struct sctp_association
**app
,
434 struct sctp_transport
**tpp
)
436 union sctp_addr saddr
;
437 union sctp_addr daddr
;
439 struct sock
*sk
= NULL
;
440 struct sctp_association
*asoc
;
441 struct sctp_transport
*transport
= NULL
;
443 *app
= NULL
; *tpp
= NULL
;
445 af
= sctp_get_af_specific(family
);
450 /* Initialize local addresses for lookups. */
451 af
->from_skb(&saddr
, skb
, 1);
452 af
->from_skb(&daddr
, skb
, 0);
454 /* Look for an association that matches the incoming ICMP error
457 asoc
= __sctp_lookup_association(&saddr
, &daddr
, &transport
);
463 if (ntohl(sctphdr
->vtag
) != asoc
->c
.peer_vtag
) {
464 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
468 sctp_bh_lock_sock(sk
);
470 /* If too many ICMPs get dropped on busy
471 * servers this needs to be solved differently.
473 if (sock_owned_by_user(sk
))
474 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS
);
482 sctp_association_put(asoc
);
486 /* Common cleanup code for icmp/icmpv6 error handler. */
487 void sctp_err_finish(struct sock
*sk
, struct sctp_association
*asoc
)
489 sctp_bh_unlock_sock(sk
);
491 sctp_association_put(asoc
);
495 * This routine is called by the ICMP module when it gets some
496 * sort of error condition. If err < 0 then the socket should
497 * be closed and the error returned to the user. If err > 0
498 * it's just the icmp type << 8 | icmp code. After adjustment
499 * header points to the first 8 bytes of the sctp header. We need
500 * to find the appropriate port.
502 * The locking strategy used here is very "optimistic". When
503 * someone else accesses the socket the ICMP is just dropped
504 * and for some paths there is no check at all.
505 * A more general error queue to queue errors for later handling
506 * is probably better.
509 void sctp_v4_err(struct sk_buff
*skb
, __u32 info
)
511 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
512 struct sctphdr
*sh
= (struct sctphdr
*)(skb
->data
+ (iph
->ihl
<<2));
513 int type
= skb
->h
.icmph
->type
;
514 int code
= skb
->h
.icmph
->code
;
516 struct sctp_association
*asoc
= NULL
;
517 struct sctp_transport
*transport
;
518 struct inet_sock
*inet
;
519 char *saveip
, *savesctp
;
522 if (skb
->len
< ((iph
->ihl
<< 2) + 8)) {
523 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
527 /* Fix up skb to look at the embedded net header. */
528 saveip
= skb
->nh
.raw
;
529 savesctp
= skb
->h
.raw
;
531 skb
->h
.raw
= (char *)sh
;
532 sk
= sctp_err_lookup(AF_INET
, skb
, sh
, &asoc
, &transport
);
533 /* Put back, the original pointers. */
534 skb
->nh
.raw
= saveip
;
535 skb
->h
.raw
= savesctp
;
537 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
540 /* Warning: The sock lock is held. Remember to call
545 case ICMP_PARAMETERPROB
:
548 case ICMP_DEST_UNREACH
:
549 if (code
> NR_ICMP_UNREACH
)
552 /* PMTU discovery (RFC1191) */
553 if (ICMP_FRAG_NEEDED
== code
) {
554 sctp_icmp_frag_needed(sk
, asoc
, transport
, info
);
558 if (ICMP_PROT_UNREACH
== code
) {
559 sctp_icmp_proto_unreachable(sk
, asoc
,
564 err
= icmp_err_convert
[code
].errno
;
566 case ICMP_TIME_EXCEEDED
:
567 /* Ignore any time exceeded errors due to fragment reassembly
570 if (ICMP_EXC_FRAGTIME
== code
)
580 if (!sock_owned_by_user(sk
) && inet
->recverr
) {
582 sk
->sk_error_report(sk
);
583 } else { /* Only an error on timeout */
584 sk
->sk_err_soft
= err
;
588 sctp_err_finish(sk
, asoc
);
592 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
594 * This function scans all the chunks in the OOTB packet to determine if
595 * the packet should be discarded right away. If a response might be needed
596 * for this packet, or, if further processing is possible, the packet will
597 * be queued to a proper inqueue for the next phase of handling.
600 * Return 0 - If further processing is needed.
601 * Return 1 - If the packet can be discarded right away.
603 int sctp_rcv_ootb(struct sk_buff
*skb
)
609 ch
= (sctp_chunkhdr_t
*) skb
->data
;
611 /* Scan through all the chunks in the packet. */
613 /* Break out if chunk length is less then minimal. */
614 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
617 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
618 if (ch_end
> skb
->tail
)
621 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
622 * receiver MUST silently discard the OOTB packet and take no
625 if (SCTP_CID_ABORT
== ch
->type
)
628 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
629 * chunk, the receiver should silently discard the packet
630 * and take no further action.
632 if (SCTP_CID_SHUTDOWN_COMPLETE
== ch
->type
)
635 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
636 * or a COOKIE ACK the SCTP Packet should be silently
639 if (SCTP_CID_COOKIE_ACK
== ch
->type
)
642 if (SCTP_CID_ERROR
== ch
->type
) {
643 sctp_walk_errors(err
, ch
) {
644 if (SCTP_ERROR_STALE_COOKIE
== err
->cause
)
649 ch
= (sctp_chunkhdr_t
*) ch_end
;
650 } while (ch_end
< skb
->tail
);
658 /* Insert endpoint into the hash table. */
659 static void __sctp_hash_endpoint(struct sctp_endpoint
*ep
)
661 struct sctp_ep_common
**epp
;
662 struct sctp_ep_common
*epb
;
663 struct sctp_hashbucket
*head
;
667 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
668 head
= &sctp_ep_hashtable
[epb
->hashent
];
670 sctp_write_lock(&head
->lock
);
674 (*epp
)->pprev
= &epb
->next
;
677 sctp_write_unlock(&head
->lock
);
680 /* Add an endpoint to the hash. Local BH-safe. */
681 void sctp_hash_endpoint(struct sctp_endpoint
*ep
)
683 sctp_local_bh_disable();
684 __sctp_hash_endpoint(ep
);
685 sctp_local_bh_enable();
688 /* Remove endpoint from the hash table. */
689 static void __sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
691 struct sctp_hashbucket
*head
;
692 struct sctp_ep_common
*epb
;
696 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
698 head
= &sctp_ep_hashtable
[epb
->hashent
];
700 sctp_write_lock(&head
->lock
);
704 epb
->next
->pprev
= epb
->pprev
;
705 *epb
->pprev
= epb
->next
;
709 sctp_write_unlock(&head
->lock
);
712 /* Remove endpoint from the hash. Local BH-safe. */
713 void sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
715 sctp_local_bh_disable();
716 __sctp_unhash_endpoint(ep
);
717 sctp_local_bh_enable();
720 /* Look up an endpoint. */
721 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(const union sctp_addr
*laddr
)
723 struct sctp_hashbucket
*head
;
724 struct sctp_ep_common
*epb
;
725 struct sctp_endpoint
*ep
;
728 hash
= sctp_ep_hashfn(laddr
->v4
.sin_port
);
729 head
= &sctp_ep_hashtable
[hash
];
730 read_lock(&head
->lock
);
731 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
733 if (sctp_endpoint_is_match(ep
, laddr
))
737 ep
= sctp_sk((sctp_get_ctl_sock()))->ep
;
741 sctp_endpoint_hold(ep
);
742 read_unlock(&head
->lock
);
746 /* Insert association into the hash table. */
747 static void __sctp_hash_established(struct sctp_association
*asoc
)
749 struct sctp_ep_common
**epp
;
750 struct sctp_ep_common
*epb
;
751 struct sctp_hashbucket
*head
;
755 /* Calculate which chain this entry will belong to. */
756 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
, asoc
->peer
.port
);
758 head
= &sctp_assoc_hashtable
[epb
->hashent
];
760 sctp_write_lock(&head
->lock
);
764 (*epp
)->pprev
= &epb
->next
;
767 sctp_write_unlock(&head
->lock
);
770 /* Add an association to the hash. Local BH-safe. */
771 void sctp_hash_established(struct sctp_association
*asoc
)
773 sctp_local_bh_disable();
774 __sctp_hash_established(asoc
);
775 sctp_local_bh_enable();
778 /* Remove association from the hash table. */
779 static void __sctp_unhash_established(struct sctp_association
*asoc
)
781 struct sctp_hashbucket
*head
;
782 struct sctp_ep_common
*epb
;
786 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
,
789 head
= &sctp_assoc_hashtable
[epb
->hashent
];
791 sctp_write_lock(&head
->lock
);
795 epb
->next
->pprev
= epb
->pprev
;
796 *epb
->pprev
= epb
->next
;
800 sctp_write_unlock(&head
->lock
);
803 /* Remove association from the hash table. Local BH-safe. */
804 void sctp_unhash_established(struct sctp_association
*asoc
)
806 sctp_local_bh_disable();
807 __sctp_unhash_established(asoc
);
808 sctp_local_bh_enable();
811 /* Look up an association. */
812 static struct sctp_association
*__sctp_lookup_association(
813 const union sctp_addr
*local
,
814 const union sctp_addr
*peer
,
815 struct sctp_transport
**pt
)
817 struct sctp_hashbucket
*head
;
818 struct sctp_ep_common
*epb
;
819 struct sctp_association
*asoc
;
820 struct sctp_transport
*transport
;
823 /* Optimize here for direct hit, only listening connections can
824 * have wildcards anyways.
826 hash
= sctp_assoc_hashfn(local
->v4
.sin_port
, peer
->v4
.sin_port
);
827 head
= &sctp_assoc_hashtable
[hash
];
828 read_lock(&head
->lock
);
829 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
830 asoc
= sctp_assoc(epb
);
831 transport
= sctp_assoc_is_match(asoc
, local
, peer
);
836 read_unlock(&head
->lock
);
842 sctp_association_hold(asoc
);
843 read_unlock(&head
->lock
);
847 /* Look up an association. BH-safe. */
849 struct sctp_association
*sctp_lookup_association(const union sctp_addr
*laddr
,
850 const union sctp_addr
*paddr
,
851 struct sctp_transport
**transportp
)
853 struct sctp_association
*asoc
;
855 sctp_local_bh_disable();
856 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
857 sctp_local_bh_enable();
862 /* Is there an association matching the given local and peer addresses? */
863 int sctp_has_association(const union sctp_addr
*laddr
,
864 const union sctp_addr
*paddr
)
866 struct sctp_association
*asoc
;
867 struct sctp_transport
*transport
;
869 if ((asoc
= sctp_lookup_association(laddr
, paddr
, &transport
))) {
870 sctp_association_put(asoc
);
878 * SCTP Implementors Guide, 2.18 Handling of address
879 * parameters within the INIT or INIT-ACK.
881 * D) When searching for a matching TCB upon reception of an INIT
882 * or INIT-ACK chunk the receiver SHOULD use not only the
883 * source address of the packet (containing the INIT or
884 * INIT-ACK) but the receiver SHOULD also use all valid
885 * address parameters contained within the chunk.
887 * 2.18.3 Solution description
889 * This new text clearly specifies to an implementor the need
890 * to look within the INIT or INIT-ACK. Any implementation that
891 * does not do this, may not be able to establish associations
892 * in certain circumstances.
895 static struct sctp_association
*__sctp_rcv_init_lookup(struct sk_buff
*skb
,
896 const union sctp_addr
*laddr
, struct sctp_transport
**transportp
)
898 struct sctp_association
*asoc
;
899 union sctp_addr addr
;
900 union sctp_addr
*paddr
= &addr
;
901 struct sctphdr
*sh
= (struct sctphdr
*) skb
->h
.raw
;
903 union sctp_params params
;
904 sctp_init_chunk_t
*init
;
905 struct sctp_transport
*transport
;
908 ch
= (sctp_chunkhdr_t
*) skb
->data
;
910 /* If this is INIT/INIT-ACK look inside the chunk too. */
913 case SCTP_CID_INIT_ACK
:
919 /* The code below will attempt to walk the chunk and extract
920 * parameter information. Before we do that, we need to verify
921 * that the chunk length doesn't cause overflow. Otherwise, we'll
924 if (WORD_ROUND(ntohs(ch
->length
)) > skb
->len
)
928 * This code will NOT touch anything inside the chunk--it is
929 * strictly READ-ONLY.
931 * RFC 2960 3 SCTP packet Format
933 * Multiple chunks can be bundled into one SCTP packet up to
934 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
935 * COMPLETE chunks. These chunks MUST NOT be bundled with any
936 * other chunk in a packet. See Section 6.10 for more details
940 /* Find the start of the TLVs and the end of the chunk. This is
941 * the region we search for address parameters.
943 init
= (sctp_init_chunk_t
*)skb
->data
;
945 /* Walk the parameters looking for embedded addresses. */
946 sctp_walk_params(params
, init
, init_hdr
.params
) {
948 /* Note: Ignoring hostname addresses. */
949 af
= sctp_get_af_specific(param_type2af(params
.p
->type
));
953 af
->from_addr_param(paddr
, params
.addr
, ntohs(sh
->source
), 0);
955 asoc
= __sctp_lookup_association(laddr
, paddr
, &transport
);
963 /* Lookup an association for an inbound skb. */
964 static struct sctp_association
*__sctp_rcv_lookup(struct sk_buff
*skb
,
965 const union sctp_addr
*paddr
,
966 const union sctp_addr
*laddr
,
967 struct sctp_transport
**transportp
)
969 struct sctp_association
*asoc
;
971 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
973 /* Further lookup for INIT/INIT-ACK packets.
974 * SCTP Implementors Guide, 2.18 Handling of address
975 * parameters within the INIT or INIT-ACK.
978 asoc
= __sctp_rcv_init_lookup(skb
, laddr
, transportp
);