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
)
82 struct sk_buff
*list
= skb_shinfo(skb
)->frag_list
;
83 struct sctphdr
*sh
= sctp_hdr(skb
);
84 __u32 cmp
= ntohl(sh
->checksum
);
85 __u32 val
= sctp_start_cksum((__u8
*)sh
, skb_headlen(skb
));
87 for (; list
; list
= list
->next
)
88 val
= sctp_update_cksum((__u8
*)list
->data
, skb_headlen(list
),
91 val
= sctp_end_cksum(val
);
94 /* CRC failure, dump it. */
95 SCTP_INC_STATS_BH(SCTP_MIB_CHECKSUMERRORS
);
101 struct sctp_input_cb
{
103 struct inet_skb_parm h4
;
104 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
105 struct inet6_skb_parm h6
;
108 struct sctp_chunk
*chunk
;
110 #define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
113 * This is the routine which IP calls when receiving an SCTP packet.
115 int sctp_rcv(struct sk_buff
*skb
)
118 struct sctp_association
*asoc
;
119 struct sctp_endpoint
*ep
= NULL
;
120 struct sctp_ep_common
*rcvr
;
121 struct sctp_transport
*transport
= NULL
;
122 struct sctp_chunk
*chunk
;
125 union sctp_addr dest
;
129 if (skb
->pkt_type
!=PACKET_HOST
)
132 SCTP_INC_STATS_BH(SCTP_MIB_INSCTPPACKS
);
134 if (skb_linearize(skb
))
139 /* Pull up the IP and SCTP headers. */
140 __skb_pull(skb
, skb_transport_offset(skb
));
141 if (skb
->len
< sizeof(struct sctphdr
))
143 if (!skb_csum_unnecessary(skb
) && sctp_rcv_checksum(skb
) < 0)
146 skb_pull(skb
, sizeof(struct sctphdr
));
148 /* Make sure we at least have chunk headers worth of data left. */
149 if (skb
->len
< sizeof(struct sctp_chunkhdr
))
152 family
= ipver2af(ip_hdr(skb
)->version
);
153 af
= sctp_get_af_specific(family
);
157 /* Initialize local addresses for lookups. */
158 af
->from_skb(&src
, skb
, 1);
159 af
->from_skb(&dest
, skb
, 0);
161 /* If the packet is to or from a non-unicast address,
162 * silently discard the packet.
164 * This is not clearly defined in the RFC except in section
165 * 8.4 - OOTB handling. However, based on the book "Stream Control
166 * Transmission Protocol" 2.1, "It is important to note that the
167 * IP address of an SCTP transport address must be a routable
168 * unicast address. In other words, IP multicast addresses and
169 * IP broadcast addresses cannot be used in an SCTP transport
172 if (!af
->addr_valid(&src
, NULL
, skb
) ||
173 !af
->addr_valid(&dest
, NULL
, skb
))
176 asoc
= __sctp_rcv_lookup(skb
, &src
, &dest
, &transport
);
179 ep
= __sctp_rcv_lookup_endpoint(&dest
);
181 /* Retrieve the common input handling substructure. */
182 rcvr
= asoc
? &asoc
->base
: &ep
->base
;
186 * If a frame arrives on an interface and the receiving socket is
187 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
189 if (sk
->sk_bound_dev_if
&& (sk
->sk_bound_dev_if
!= af
->skb_iif(skb
)))
192 sctp_association_put(asoc
);
195 sctp_endpoint_put(ep
);
198 sk
= sctp_get_ctl_sock();
199 ep
= sctp_sk(sk
)->ep
;
200 sctp_endpoint_hold(ep
);
205 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
206 * An SCTP packet is called an "out of the blue" (OOTB)
207 * packet if it is correctly formed, i.e., passed the
208 * receiver's checksum check, but the receiver is not
209 * able to identify the association to which this
213 if (sctp_rcv_ootb(skb
)) {
214 SCTP_INC_STATS_BH(SCTP_MIB_OUTOFBLUES
);
215 goto discard_release
;
219 if (!xfrm_policy_check(sk
, XFRM_POLICY_IN
, skb
, family
))
220 goto discard_release
;
223 if (sk_filter(sk
, skb
))
224 goto discard_release
;
226 /* Create an SCTP packet structure. */
227 chunk
= sctp_chunkify(skb
, asoc
, sk
);
229 goto discard_release
;
230 SCTP_INPUT_CB(skb
)->chunk
= chunk
;
232 /* Remember what endpoint is to handle this packet. */
235 /* Remember the SCTP header. */
236 chunk
->sctp_hdr
= sh
;
238 /* Set the source and destination addresses of the incoming chunk. */
239 sctp_init_addrs(chunk
, &src
, &dest
);
241 /* Remember where we came from. */
242 chunk
->transport
= transport
;
244 /* Acquire access to the sock lock. Note: We are safe from other
245 * bottom halves on this lock, but a user may be in the lock too,
246 * so check if it is busy.
248 sctp_bh_lock_sock(sk
);
250 if (sock_owned_by_user(sk
)) {
251 SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_BACKLOG
);
252 sctp_add_backlog(sk
, skb
);
254 SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_SOFTIRQ
);
255 sctp_inq_push(&chunk
->rcvr
->inqueue
, chunk
);
258 sctp_bh_unlock_sock(sk
);
260 /* Release the asoc/ep ref we took in the lookup calls. */
262 sctp_association_put(asoc
);
264 sctp_endpoint_put(ep
);
269 SCTP_INC_STATS_BH(SCTP_MIB_IN_PKT_DISCARDS
);
274 /* Release the asoc/ep ref we took in the lookup calls. */
276 sctp_association_put(asoc
);
278 sctp_endpoint_put(ep
);
283 /* Process the backlog queue of the socket. Every skb on
284 * the backlog holds a ref on an association or endpoint.
285 * We hold this ref throughout the state machine to make
286 * sure that the structure we need is still around.
288 int sctp_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
290 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
291 struct sctp_inq
*inqueue
= &chunk
->rcvr
->inqueue
;
292 struct sctp_ep_common
*rcvr
= NULL
;
297 /* If the rcvr is dead then the association or endpoint
298 * has been deleted and we can safely drop the chunk
299 * and refs that we are holding.
302 sctp_chunk_free(chunk
);
306 if (unlikely(rcvr
->sk
!= sk
)) {
307 /* In this case, the association moved from one socket to
308 * another. We are currently sitting on the backlog of the
309 * old socket, so we need to move.
310 * However, since we are here in the process context we
311 * need to take make sure that the user doesn't own
312 * the new socket when we process the packet.
313 * If the new socket is user-owned, queue the chunk to the
314 * backlog of the new socket without dropping any refs.
315 * Otherwise, we can safely push the chunk on the inqueue.
319 sctp_bh_lock_sock(sk
);
321 if (sock_owned_by_user(sk
)) {
322 sk_add_backlog(sk
, skb
);
325 sctp_inq_push(inqueue
, chunk
);
327 sctp_bh_unlock_sock(sk
);
329 /* If the chunk was backloged again, don't drop refs */
333 sctp_inq_push(inqueue
, chunk
);
337 /* Release the refs we took in sctp_add_backlog */
338 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
339 sctp_association_put(sctp_assoc(rcvr
));
340 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
341 sctp_endpoint_put(sctp_ep(rcvr
));
348 static void sctp_add_backlog(struct sock
*sk
, struct sk_buff
*skb
)
350 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
351 struct sctp_ep_common
*rcvr
= chunk
->rcvr
;
353 /* Hold the assoc/ep while hanging on the backlog queue.
354 * This way, we know structures we need will not disappear from us
356 if (SCTP_EP_TYPE_ASSOCIATION
== rcvr
->type
)
357 sctp_association_hold(sctp_assoc(rcvr
));
358 else if (SCTP_EP_TYPE_SOCKET
== rcvr
->type
)
359 sctp_endpoint_hold(sctp_ep(rcvr
));
363 sk_add_backlog(sk
, skb
);
366 /* Handle icmp frag needed error. */
367 void sctp_icmp_frag_needed(struct sock
*sk
, struct sctp_association
*asoc
,
368 struct sctp_transport
*t
, __u32 pmtu
)
370 if (sock_owned_by_user(sk
) || !t
|| (t
->pathmtu
== pmtu
))
373 if (t
->param_flags
& SPP_PMTUD_ENABLE
) {
374 if (unlikely(pmtu
< SCTP_DEFAULT_MINSEGMENT
)) {
375 printk(KERN_WARNING
"%s: Reported pmtu %d too low, "
376 "using default minimum of %d\n",
378 SCTP_DEFAULT_MINSEGMENT
);
379 /* Use default minimum segment size and disable
380 * pmtu discovery on this transport.
382 t
->pathmtu
= SCTP_DEFAULT_MINSEGMENT
;
383 t
->param_flags
= (t
->param_flags
& ~SPP_PMTUD
) |
389 /* Update association pmtu. */
390 sctp_assoc_sync_pmtu(asoc
);
393 /* Retransmit with the new pmtu setting.
394 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
395 * Needed will never be sent, but if a message was sent before
396 * PMTU discovery was disabled that was larger than the PMTU, it
397 * would not be fragmented, so it must be re-transmitted fragmented.
399 sctp_retransmit(&asoc
->outqueue
, t
, SCTP_RTXR_PMTUD
);
403 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
405 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
406 * or a "Protocol Unreachable" treat this message as an abort
407 * with the T bit set.
409 * This function sends an event to the state machine, which will abort the
413 void sctp_icmp_proto_unreachable(struct sock
*sk
,
414 struct sctp_association
*asoc
,
415 struct sctp_transport
*t
)
417 SCTP_DEBUG_PRINTK("%s\n", __FUNCTION__
);
419 sctp_do_sm(SCTP_EVENT_T_OTHER
,
420 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH
),
421 asoc
->state
, asoc
->ep
, asoc
, t
,
426 /* Common lookup code for icmp/icmpv6 error handler. */
427 struct sock
*sctp_err_lookup(int family
, struct sk_buff
*skb
,
428 struct sctphdr
*sctphdr
,
429 struct sctp_association
**app
,
430 struct sctp_transport
**tpp
)
432 union sctp_addr saddr
;
433 union sctp_addr daddr
;
435 struct sock
*sk
= NULL
;
436 struct sctp_association
*asoc
;
437 struct sctp_transport
*transport
= NULL
;
439 *app
= NULL
; *tpp
= NULL
;
441 af
= sctp_get_af_specific(family
);
446 /* Initialize local addresses for lookups. */
447 af
->from_skb(&saddr
, skb
, 1);
448 af
->from_skb(&daddr
, skb
, 0);
450 /* Look for an association that matches the incoming ICMP error
453 asoc
= __sctp_lookup_association(&saddr
, &daddr
, &transport
);
459 if (ntohl(sctphdr
->vtag
) != asoc
->c
.peer_vtag
) {
460 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
464 sctp_bh_lock_sock(sk
);
466 /* If too many ICMPs get dropped on busy
467 * servers this needs to be solved differently.
469 if (sock_owned_by_user(sk
))
470 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS
);
478 sctp_association_put(asoc
);
482 /* Common cleanup code for icmp/icmpv6 error handler. */
483 void sctp_err_finish(struct sock
*sk
, struct sctp_association
*asoc
)
485 sctp_bh_unlock_sock(sk
);
487 sctp_association_put(asoc
);
491 * This routine is called by the ICMP module when it gets some
492 * sort of error condition. If err < 0 then the socket should
493 * be closed and the error returned to the user. If err > 0
494 * it's just the icmp type << 8 | icmp code. After adjustment
495 * header points to the first 8 bytes of the sctp header. We need
496 * to find the appropriate port.
498 * The locking strategy used here is very "optimistic". When
499 * someone else accesses the socket the ICMP is just dropped
500 * and for some paths there is no check at all.
501 * A more general error queue to queue errors for later handling
502 * is probably better.
505 void sctp_v4_err(struct sk_buff
*skb
, __u32 info
)
507 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
508 const int ihlen
= iph
->ihl
* 4;
509 const int type
= icmp_hdr(skb
)->type
;
510 const int code
= icmp_hdr(skb
)->code
;
512 struct sctp_association
*asoc
= NULL
;
513 struct sctp_transport
*transport
;
514 struct inet_sock
*inet
;
515 sk_buff_data_t saveip
, savesctp
;
518 if (skb
->len
< ihlen
+ 8) {
519 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
523 /* Fix up skb to look at the embedded net header. */
524 saveip
= skb
->network_header
;
525 savesctp
= skb
->transport_header
;
526 skb_reset_network_header(skb
);
527 skb_set_transport_header(skb
, ihlen
);
528 sk
= sctp_err_lookup(AF_INET
, skb
, sctp_hdr(skb
), &asoc
, &transport
);
529 /* Put back, the original values. */
530 skb
->network_header
= saveip
;
531 skb
->transport_header
= savesctp
;
533 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
536 /* Warning: The sock lock is held. Remember to call
541 case ICMP_PARAMETERPROB
:
544 case ICMP_DEST_UNREACH
:
545 if (code
> NR_ICMP_UNREACH
)
548 /* PMTU discovery (RFC1191) */
549 if (ICMP_FRAG_NEEDED
== code
) {
550 sctp_icmp_frag_needed(sk
, asoc
, transport
, info
);
554 if (ICMP_PROT_UNREACH
== code
) {
555 sctp_icmp_proto_unreachable(sk
, asoc
,
560 err
= icmp_err_convert
[code
].errno
;
562 case ICMP_TIME_EXCEEDED
:
563 /* Ignore any time exceeded errors due to fragment reassembly
566 if (ICMP_EXC_FRAGTIME
== code
)
576 if (!sock_owned_by_user(sk
) && inet
->recverr
) {
578 sk
->sk_error_report(sk
);
579 } else { /* Only an error on timeout */
580 sk
->sk_err_soft
= err
;
584 sctp_err_finish(sk
, asoc
);
588 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
590 * This function scans all the chunks in the OOTB packet to determine if
591 * the packet should be discarded right away. If a response might be needed
592 * for this packet, or, if further processing is possible, the packet will
593 * be queued to a proper inqueue for the next phase of handling.
596 * Return 0 - If further processing is needed.
597 * Return 1 - If the packet can be discarded right away.
599 int sctp_rcv_ootb(struct sk_buff
*skb
)
605 ch
= (sctp_chunkhdr_t
*) skb
->data
;
607 /* Scan through all the chunks in the packet. */
609 /* Break out if chunk length is less then minimal. */
610 if (ntohs(ch
->length
) < sizeof(sctp_chunkhdr_t
))
613 ch_end
= ((__u8
*)ch
) + WORD_ROUND(ntohs(ch
->length
));
614 if (ch_end
> skb_tail_pointer(skb
))
617 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
618 * receiver MUST silently discard the OOTB packet and take no
621 if (SCTP_CID_ABORT
== ch
->type
)
624 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
625 * chunk, the receiver should silently discard the packet
626 * and take no further action.
628 if (SCTP_CID_SHUTDOWN_COMPLETE
== ch
->type
)
631 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
632 * or a COOKIE ACK the SCTP Packet should be silently
635 if (SCTP_CID_COOKIE_ACK
== ch
->type
)
638 if (SCTP_CID_ERROR
== ch
->type
) {
639 sctp_walk_errors(err
, ch
) {
640 if (SCTP_ERROR_STALE_COOKIE
== err
->cause
)
645 ch
= (sctp_chunkhdr_t
*) ch_end
;
646 } while (ch_end
< skb_tail_pointer(skb
));
654 /* Insert endpoint into the hash table. */
655 static void __sctp_hash_endpoint(struct sctp_endpoint
*ep
)
657 struct sctp_ep_common
**epp
;
658 struct sctp_ep_common
*epb
;
659 struct sctp_hashbucket
*head
;
663 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
664 head
= &sctp_ep_hashtable
[epb
->hashent
];
666 sctp_write_lock(&head
->lock
);
670 (*epp
)->pprev
= &epb
->next
;
673 sctp_write_unlock(&head
->lock
);
676 /* Add an endpoint to the hash. Local BH-safe. */
677 void sctp_hash_endpoint(struct sctp_endpoint
*ep
)
679 sctp_local_bh_disable();
680 __sctp_hash_endpoint(ep
);
681 sctp_local_bh_enable();
684 /* Remove endpoint from the hash table. */
685 static void __sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
687 struct sctp_hashbucket
*head
;
688 struct sctp_ep_common
*epb
;
692 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
694 head
= &sctp_ep_hashtable
[epb
->hashent
];
696 sctp_write_lock(&head
->lock
);
700 epb
->next
->pprev
= epb
->pprev
;
701 *epb
->pprev
= epb
->next
;
705 sctp_write_unlock(&head
->lock
);
708 /* Remove endpoint from the hash. Local BH-safe. */
709 void sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
711 sctp_local_bh_disable();
712 __sctp_unhash_endpoint(ep
);
713 sctp_local_bh_enable();
716 /* Look up an endpoint. */
717 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(const union sctp_addr
*laddr
)
719 struct sctp_hashbucket
*head
;
720 struct sctp_ep_common
*epb
;
721 struct sctp_endpoint
*ep
;
724 hash
= sctp_ep_hashfn(ntohs(laddr
->v4
.sin_port
));
725 head
= &sctp_ep_hashtable
[hash
];
726 read_lock(&head
->lock
);
727 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
729 if (sctp_endpoint_is_match(ep
, laddr
))
733 ep
= sctp_sk((sctp_get_ctl_sock()))->ep
;
737 sctp_endpoint_hold(ep
);
738 read_unlock(&head
->lock
);
742 /* Insert association into the hash table. */
743 static void __sctp_hash_established(struct sctp_association
*asoc
)
745 struct sctp_ep_common
**epp
;
746 struct sctp_ep_common
*epb
;
747 struct sctp_hashbucket
*head
;
751 /* Calculate which chain this entry will belong to. */
752 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
, asoc
->peer
.port
);
754 head
= &sctp_assoc_hashtable
[epb
->hashent
];
756 sctp_write_lock(&head
->lock
);
760 (*epp
)->pprev
= &epb
->next
;
763 sctp_write_unlock(&head
->lock
);
766 /* Add an association to the hash. Local BH-safe. */
767 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
)
808 sctp_local_bh_disable();
809 __sctp_unhash_established(asoc
);
810 sctp_local_bh_enable();
813 /* Look up an association. */
814 static struct sctp_association
*__sctp_lookup_association(
815 const union sctp_addr
*local
,
816 const union sctp_addr
*peer
,
817 struct sctp_transport
**pt
)
819 struct sctp_hashbucket
*head
;
820 struct sctp_ep_common
*epb
;
821 struct sctp_association
*asoc
;
822 struct sctp_transport
*transport
;
825 /* Optimize here for direct hit, only listening connections can
826 * have wildcards anyways.
828 hash
= sctp_assoc_hashfn(ntohs(local
->v4
.sin_port
), ntohs(peer
->v4
.sin_port
));
829 head
= &sctp_assoc_hashtable
[hash
];
830 read_lock(&head
->lock
);
831 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
832 asoc
= sctp_assoc(epb
);
833 transport
= sctp_assoc_is_match(asoc
, local
, peer
);
838 read_unlock(&head
->lock
);
844 sctp_association_hold(asoc
);
845 read_unlock(&head
->lock
);
849 /* Look up an association. BH-safe. */
851 struct sctp_association
*sctp_lookup_association(const union sctp_addr
*laddr
,
852 const union sctp_addr
*paddr
,
853 struct sctp_transport
**transportp
)
855 struct sctp_association
*asoc
;
857 sctp_local_bh_disable();
858 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
859 sctp_local_bh_enable();
864 /* Is there an association matching the given local and peer addresses? */
865 int sctp_has_association(const union sctp_addr
*laddr
,
866 const union sctp_addr
*paddr
)
868 struct sctp_association
*asoc
;
869 struct sctp_transport
*transport
;
871 if ((asoc
= sctp_lookup_association(laddr
, paddr
, &transport
))) {
872 sctp_association_put(asoc
);
880 * SCTP Implementors Guide, 2.18 Handling of address
881 * parameters within the INIT or INIT-ACK.
883 * D) When searching for a matching TCB upon reception of an INIT
884 * or INIT-ACK chunk the receiver SHOULD use not only the
885 * source address of the packet (containing the INIT or
886 * INIT-ACK) but the receiver SHOULD also use all valid
887 * address parameters contained within the chunk.
889 * 2.18.3 Solution description
891 * This new text clearly specifies to an implementor the need
892 * to look within the INIT or INIT-ACK. Any implementation that
893 * does not do this, may not be able to establish associations
894 * in certain circumstances.
897 static struct sctp_association
*__sctp_rcv_init_lookup(struct sk_buff
*skb
,
898 const union sctp_addr
*laddr
, struct sctp_transport
**transportp
)
900 struct sctp_association
*asoc
;
901 union sctp_addr addr
;
902 union sctp_addr
*paddr
= &addr
;
903 struct sctphdr
*sh
= sctp_hdr(skb
);
905 union sctp_params params
;
906 sctp_init_chunk_t
*init
;
907 struct sctp_transport
*transport
;
910 ch
= (sctp_chunkhdr_t
*) skb
->data
;
912 /* If this is INIT/INIT-ACK look inside the chunk too. */
915 case SCTP_CID_INIT_ACK
:
921 /* The code below will attempt to walk the chunk and extract
922 * parameter information. Before we do that, we need to verify
923 * that the chunk length doesn't cause overflow. Otherwise, we'll
926 if (WORD_ROUND(ntohs(ch
->length
)) > skb
->len
)
930 * This code will NOT touch anything inside the chunk--it is
931 * strictly READ-ONLY.
933 * RFC 2960 3 SCTP packet Format
935 * Multiple chunks can be bundled into one SCTP packet up to
936 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
937 * COMPLETE chunks. These chunks MUST NOT be bundled with any
938 * other chunk in a packet. See Section 6.10 for more details
942 /* Find the start of the TLVs and the end of the chunk. This is
943 * the region we search for address parameters.
945 init
= (sctp_init_chunk_t
*)skb
->data
;
947 /* Walk the parameters looking for embedded addresses. */
948 sctp_walk_params(params
, init
, init_hdr
.params
) {
950 /* Note: Ignoring hostname addresses. */
951 af
= sctp_get_af_specific(param_type2af(params
.p
->type
));
955 af
->from_addr_param(paddr
, params
.addr
, sh
->source
, 0);
957 asoc
= __sctp_lookup_association(laddr
, paddr
, &transport
);
965 /* Lookup an association for an inbound skb. */
966 static struct sctp_association
*__sctp_rcv_lookup(struct sk_buff
*skb
,
967 const union sctp_addr
*paddr
,
968 const union sctp_addr
*laddr
,
969 struct sctp_transport
**transportp
)
971 struct sctp_association
*asoc
;
973 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
975 /* Further lookup for INIT/INIT-ACK packets.
976 * SCTP Implementors Guide, 2.18 Handling of address
977 * parameters within the INIT or INIT-ACK.
980 asoc
= __sctp_rcv_init_lookup(skb
, laddr
, transportp
);