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
);
77 /* Calculate the SCTP checksum of an SCTP packet. */
78 static inline int sctp_rcv_checksum(struct sk_buff
*skb
)
82 struct sk_buff
*list
= skb_shinfo(skb
)->frag_list
;
84 sh
= (struct sctphdr
*) skb
->h
.raw
;
85 cmp
= ntohl(sh
->checksum
);
87 val
= sctp_start_cksum((__u8
*)sh
, skb_headlen(skb
));
89 for (; list
; list
= list
->next
)
90 val
= sctp_update_cksum((__u8
*)list
->data
, skb_headlen(list
),
93 val
= sctp_end_cksum(val
);
96 /* CRC failure, dump it. */
97 SCTP_INC_STATS_BH(SCTP_MIB_CHECKSUMERRORS
);
103 struct sctp_input_cb
{
105 struct inet_skb_parm h4
;
106 #if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
107 struct inet6_skb_parm h6
;
110 struct sctp_chunk
*chunk
;
112 #define SCTP_INPUT_CB(__skb) ((struct sctp_input_cb *)&((__skb)->cb[0]))
115 * This is the routine which IP calls when receiving an SCTP packet.
117 int sctp_rcv(struct sk_buff
*skb
)
120 struct sctp_association
*asoc
;
121 struct sctp_endpoint
*ep
= NULL
;
122 struct sctp_ep_common
*rcvr
;
123 struct sctp_transport
*transport
= NULL
;
124 struct sctp_chunk
*chunk
;
127 union sctp_addr dest
;
132 if (skb
->pkt_type
!=PACKET_HOST
)
135 SCTP_INC_STATS_BH(SCTP_MIB_INSCTPPACKS
);
137 sh
= (struct sctphdr
*) skb
->h
.raw
;
139 /* Pull up the IP and SCTP headers. */
140 __skb_pull(skb
, skb
->h
.raw
- skb
->data
);
141 if (skb
->len
< sizeof(struct sctphdr
))
143 if (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(skb
->nh
.iph
->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
) || !af
->addr_valid(&dest
, NULL
))
175 asoc
= __sctp_rcv_lookup(skb
, &src
, &dest
, &transport
);
178 ep
= __sctp_rcv_lookup_endpoint(&dest
);
180 /* Retrieve the common input handling substructure. */
181 rcvr
= asoc
? &asoc
->base
: &ep
->base
;
185 * If a frame arrives on an interface and the receiving socket is
186 * bound to another interface, via SO_BINDTODEVICE, treat it as OOTB
188 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
);
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 ret
= sk_filter(sk
, skb
, 1);
232 goto discard_release
;
234 /* Create an SCTP packet structure. */
235 chunk
= sctp_chunkify(skb
, asoc
, sk
);
238 goto discard_release
;
240 SCTP_INPUT_CB(skb
)->chunk
= chunk
;
242 /* Remember what endpoint is to handle this packet. */
245 /* Remember the SCTP header. */
246 chunk
->sctp_hdr
= sh
;
248 /* Set the source and destination addresses of the incoming chunk. */
249 sctp_init_addrs(chunk
, &src
, &dest
);
251 /* Remember where we came from. */
252 chunk
->transport
= transport
;
254 /* Acquire access to the sock lock. Note: We are safe from other
255 * bottom halves on this lock, but a user may be in the lock too,
256 * so check if it is busy.
258 sctp_bh_lock_sock(sk
);
260 if (sock_owned_by_user(sk
))
261 sk_add_backlog(sk
, skb
);
263 sctp_backlog_rcv(sk
, skb
);
265 /* Release the sock and any reference counts we took in the
268 sctp_bh_unlock_sock(sk
);
270 sctp_association_put(asoc
);
272 sctp_endpoint_put(ep
);
281 /* Release any structures we may be holding. */
284 sctp_association_put(asoc
);
286 sctp_endpoint_put(ep
);
291 /* Handle second half of inbound skb processing. If the sock was busy,
292 * we may have need to delay processing until later when the sock is
293 * released (on the backlog). If not busy, we call this routine
294 * directly from the bottom half.
296 int sctp_backlog_rcv(struct sock
*sk
, struct sk_buff
*skb
)
298 struct sctp_chunk
*chunk
= SCTP_INPUT_CB(skb
)->chunk
;
299 struct sctp_inq
*inqueue
= &chunk
->rcvr
->inqueue
;
301 sctp_inq_push(inqueue
, chunk
);
305 /* Handle icmp frag needed error. */
306 void sctp_icmp_frag_needed(struct sock
*sk
, struct sctp_association
*asoc
,
307 struct sctp_transport
*t
, __u32 pmtu
)
309 if (sock_owned_by_user(sk
) || !t
|| (t
->pathmtu
== pmtu
))
312 if (t
->param_flags
& SPP_PMTUD_ENABLE
) {
313 if (unlikely(pmtu
< SCTP_DEFAULT_MINSEGMENT
)) {
314 printk(KERN_WARNING
"%s: Reported pmtu %d too low, "
315 "using default minimum of %d\n",
317 SCTP_DEFAULT_MINSEGMENT
);
318 /* Use default minimum segment size and disable
319 * pmtu discovery on this transport.
321 t
->pathmtu
= SCTP_DEFAULT_MINSEGMENT
;
322 t
->param_flags
= (t
->param_flags
& ~SPP_HB
) |
328 /* Update association pmtu. */
329 sctp_assoc_sync_pmtu(asoc
);
332 /* Retransmit with the new pmtu setting.
333 * Normally, if PMTU discovery is disabled, an ICMP Fragmentation
334 * Needed will never be sent, but if a message was sent before
335 * PMTU discovery was disabled that was larger than the PMTU, it
336 * would not be fragmented, so it must be re-transmitted fragmented.
338 sctp_retransmit(&asoc
->outqueue
, t
, SCTP_RTXR_PMTUD
);
342 * SCTP Implementer's Guide, 2.37 ICMP handling procedures
344 * ICMP8) If the ICMP code is a "Unrecognized next header type encountered"
345 * or a "Protocol Unreachable" treat this message as an abort
346 * with the T bit set.
348 * This function sends an event to the state machine, which will abort the
352 void sctp_icmp_proto_unreachable(struct sock
*sk
,
353 struct sctp_association
*asoc
,
354 struct sctp_transport
*t
)
356 SCTP_DEBUG_PRINTK("%s\n", __FUNCTION__
);
358 sctp_do_sm(SCTP_EVENT_T_OTHER
,
359 SCTP_ST_OTHER(SCTP_EVENT_ICMP_PROTO_UNREACH
),
360 asoc
->state
, asoc
->ep
, asoc
, t
,
365 /* Common lookup code for icmp/icmpv6 error handler. */
366 struct sock
*sctp_err_lookup(int family
, struct sk_buff
*skb
,
367 struct sctphdr
*sctphdr
,
368 struct sctp_association
**app
,
369 struct sctp_transport
**tpp
)
371 union sctp_addr saddr
;
372 union sctp_addr daddr
;
374 struct sock
*sk
= NULL
;
375 struct sctp_association
*asoc
= NULL
;
376 struct sctp_transport
*transport
= NULL
;
378 *app
= NULL
; *tpp
= NULL
;
380 af
= sctp_get_af_specific(family
);
385 /* Initialize local addresses for lookups. */
386 af
->from_skb(&saddr
, skb
, 1);
387 af
->from_skb(&daddr
, skb
, 0);
389 /* Look for an association that matches the incoming ICMP error
392 asoc
= __sctp_lookup_association(&saddr
, &daddr
, &transport
);
398 if (ntohl(sctphdr
->vtag
) != asoc
->c
.peer_vtag
) {
399 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
403 sctp_bh_lock_sock(sk
);
405 /* If too many ICMPs get dropped on busy
406 * servers this needs to be solved differently.
408 if (sock_owned_by_user(sk
))
409 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS
);
418 sctp_association_put(asoc
);
422 /* Common cleanup code for icmp/icmpv6 error handler. */
423 void sctp_err_finish(struct sock
*sk
, struct sctp_association
*asoc
)
425 sctp_bh_unlock_sock(sk
);
428 sctp_association_put(asoc
);
432 * This routine is called by the ICMP module when it gets some
433 * sort of error condition. If err < 0 then the socket should
434 * be closed and the error returned to the user. If err > 0
435 * it's just the icmp type << 8 | icmp code. After adjustment
436 * header points to the first 8 bytes of the sctp header. We need
437 * to find the appropriate port.
439 * The locking strategy used here is very "optimistic". When
440 * someone else accesses the socket the ICMP is just dropped
441 * and for some paths there is no check at all.
442 * A more general error queue to queue errors for later handling
443 * is probably better.
446 void sctp_v4_err(struct sk_buff
*skb
, __u32 info
)
448 struct iphdr
*iph
= (struct iphdr
*)skb
->data
;
449 struct sctphdr
*sh
= (struct sctphdr
*)(skb
->data
+ (iph
->ihl
<<2));
450 int type
= skb
->h
.icmph
->type
;
451 int code
= skb
->h
.icmph
->code
;
453 struct sctp_association
*asoc
;
454 struct sctp_transport
*transport
;
455 struct inet_sock
*inet
;
456 char *saveip
, *savesctp
;
459 if (skb
->len
< ((iph
->ihl
<< 2) + 8)) {
460 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
464 /* Fix up skb to look at the embedded net header. */
465 saveip
= skb
->nh
.raw
;
466 savesctp
= skb
->h
.raw
;
468 skb
->h
.raw
= (char *)sh
;
469 sk
= sctp_err_lookup(AF_INET
, skb
, sh
, &asoc
, &transport
);
470 /* Put back, the original pointers. */
471 skb
->nh
.raw
= saveip
;
472 skb
->h
.raw
= savesctp
;
474 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS
);
477 /* Warning: The sock lock is held. Remember to call
482 case ICMP_PARAMETERPROB
:
485 case ICMP_DEST_UNREACH
:
486 if (code
> NR_ICMP_UNREACH
)
489 /* PMTU discovery (RFC1191) */
490 if (ICMP_FRAG_NEEDED
== code
) {
491 sctp_icmp_frag_needed(sk
, asoc
, transport
, info
);
495 if (ICMP_PROT_UNREACH
== code
) {
496 sctp_icmp_proto_unreachable(sk
, asoc
,
501 err
= icmp_err_convert
[code
].errno
;
503 case ICMP_TIME_EXCEEDED
:
504 /* Ignore any time exceeded errors due to fragment reassembly
507 if (ICMP_EXC_FRAGTIME
== code
)
517 if (!sock_owned_by_user(sk
) && inet
->recverr
) {
519 sk
->sk_error_report(sk
);
520 } else { /* Only an error on timeout */
521 sk
->sk_err_soft
= err
;
525 sctp_err_finish(sk
, asoc
);
529 * RFC 2960, 8.4 - Handle "Out of the blue" Packets.
531 * This function scans all the chunks in the OOTB packet to determine if
532 * the packet should be discarded right away. If a response might be needed
533 * for this packet, or, if further processing is possible, the packet will
534 * be queued to a proper inqueue for the next phase of handling.
537 * Return 0 - If further processing is needed.
538 * Return 1 - If the packet can be discarded right away.
540 int sctp_rcv_ootb(struct sk_buff
*skb
)
546 ch
= (sctp_chunkhdr_t
*) skb
->data
;
547 ch_end
= ((__u8
*) ch
) + WORD_ROUND(ntohs(ch
->length
));
549 /* Scan through all the chunks in the packet. */
550 while (ch_end
> (__u8
*)ch
&& ch_end
< skb
->tail
) {
552 /* RFC 8.4, 2) If the OOTB packet contains an ABORT chunk, the
553 * receiver MUST silently discard the OOTB packet and take no
556 if (SCTP_CID_ABORT
== ch
->type
)
559 /* RFC 8.4, 6) If the packet contains a SHUTDOWN COMPLETE
560 * chunk, the receiver should silently discard the packet
561 * and take no further action.
563 if (SCTP_CID_SHUTDOWN_COMPLETE
== ch
->type
)
566 /* RFC 8.4, 7) If the packet contains a "Stale cookie" ERROR
567 * or a COOKIE ACK the SCTP Packet should be silently
570 if (SCTP_CID_COOKIE_ACK
== ch
->type
)
573 if (SCTP_CID_ERROR
== ch
->type
) {
574 sctp_walk_errors(err
, ch
) {
575 if (SCTP_ERROR_STALE_COOKIE
== err
->cause
)
580 ch
= (sctp_chunkhdr_t
*) ch_end
;
581 ch_end
= ((__u8
*) ch
) + WORD_ROUND(ntohs(ch
->length
));
590 /* Insert endpoint into the hash table. */
591 static void __sctp_hash_endpoint(struct sctp_endpoint
*ep
)
593 struct sctp_ep_common
**epp
;
594 struct sctp_ep_common
*epb
;
595 struct sctp_hashbucket
*head
;
599 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
600 head
= &sctp_ep_hashtable
[epb
->hashent
];
602 sctp_write_lock(&head
->lock
);
606 (*epp
)->pprev
= &epb
->next
;
609 sctp_write_unlock(&head
->lock
);
612 /* Add an endpoint to the hash. Local BH-safe. */
613 void sctp_hash_endpoint(struct sctp_endpoint
*ep
)
615 sctp_local_bh_disable();
616 __sctp_hash_endpoint(ep
);
617 sctp_local_bh_enable();
620 /* Remove endpoint from the hash table. */
621 static void __sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
623 struct sctp_hashbucket
*head
;
624 struct sctp_ep_common
*epb
;
628 epb
->hashent
= sctp_ep_hashfn(epb
->bind_addr
.port
);
630 head
= &sctp_ep_hashtable
[epb
->hashent
];
632 sctp_write_lock(&head
->lock
);
636 epb
->next
->pprev
= epb
->pprev
;
637 *epb
->pprev
= epb
->next
;
641 sctp_write_unlock(&head
->lock
);
644 /* Remove endpoint from the hash. Local BH-safe. */
645 void sctp_unhash_endpoint(struct sctp_endpoint
*ep
)
647 sctp_local_bh_disable();
648 __sctp_unhash_endpoint(ep
);
649 sctp_local_bh_enable();
652 /* Look up an endpoint. */
653 static struct sctp_endpoint
*__sctp_rcv_lookup_endpoint(const union sctp_addr
*laddr
)
655 struct sctp_hashbucket
*head
;
656 struct sctp_ep_common
*epb
;
657 struct sctp_endpoint
*ep
;
660 hash
= sctp_ep_hashfn(laddr
->v4
.sin_port
);
661 head
= &sctp_ep_hashtable
[hash
];
662 read_lock(&head
->lock
);
663 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
665 if (sctp_endpoint_is_match(ep
, laddr
))
669 ep
= sctp_sk((sctp_get_ctl_sock()))->ep
;
673 sctp_endpoint_hold(ep
);
675 read_unlock(&head
->lock
);
679 /* Insert association into the hash table. */
680 static void __sctp_hash_established(struct sctp_association
*asoc
)
682 struct sctp_ep_common
**epp
;
683 struct sctp_ep_common
*epb
;
684 struct sctp_hashbucket
*head
;
688 /* Calculate which chain this entry will belong to. */
689 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
, asoc
->peer
.port
);
691 head
= &sctp_assoc_hashtable
[epb
->hashent
];
693 sctp_write_lock(&head
->lock
);
697 (*epp
)->pprev
= &epb
->next
;
700 sctp_write_unlock(&head
->lock
);
703 /* Add an association to the hash. Local BH-safe. */
704 void sctp_hash_established(struct sctp_association
*asoc
)
706 sctp_local_bh_disable();
707 __sctp_hash_established(asoc
);
708 sctp_local_bh_enable();
711 /* Remove association from the hash table. */
712 static void __sctp_unhash_established(struct sctp_association
*asoc
)
714 struct sctp_hashbucket
*head
;
715 struct sctp_ep_common
*epb
;
719 epb
->hashent
= sctp_assoc_hashfn(epb
->bind_addr
.port
,
722 head
= &sctp_assoc_hashtable
[epb
->hashent
];
724 sctp_write_lock(&head
->lock
);
728 epb
->next
->pprev
= epb
->pprev
;
729 *epb
->pprev
= epb
->next
;
733 sctp_write_unlock(&head
->lock
);
736 /* Remove association from the hash table. Local BH-safe. */
737 void sctp_unhash_established(struct sctp_association
*asoc
)
739 sctp_local_bh_disable();
740 __sctp_unhash_established(asoc
);
741 sctp_local_bh_enable();
744 /* Look up an association. */
745 static struct sctp_association
*__sctp_lookup_association(
746 const union sctp_addr
*local
,
747 const union sctp_addr
*peer
,
748 struct sctp_transport
**pt
)
750 struct sctp_hashbucket
*head
;
751 struct sctp_ep_common
*epb
;
752 struct sctp_association
*asoc
;
753 struct sctp_transport
*transport
;
756 /* Optimize here for direct hit, only listening connections can
757 * have wildcards anyways.
759 hash
= sctp_assoc_hashfn(local
->v4
.sin_port
, peer
->v4
.sin_port
);
760 head
= &sctp_assoc_hashtable
[hash
];
761 read_lock(&head
->lock
);
762 for (epb
= head
->chain
; epb
; epb
= epb
->next
) {
763 asoc
= sctp_assoc(epb
);
764 transport
= sctp_assoc_is_match(asoc
, local
, peer
);
769 read_unlock(&head
->lock
);
775 sctp_association_hold(asoc
);
777 read_unlock(&head
->lock
);
781 /* Look up an association. BH-safe. */
783 struct sctp_association
*sctp_lookup_association(const union sctp_addr
*laddr
,
784 const union sctp_addr
*paddr
,
785 struct sctp_transport
**transportp
)
787 struct sctp_association
*asoc
;
789 sctp_local_bh_disable();
790 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
791 sctp_local_bh_enable();
796 /* Is there an association matching the given local and peer addresses? */
797 int sctp_has_association(const union sctp_addr
*laddr
,
798 const union sctp_addr
*paddr
)
800 struct sctp_association
*asoc
;
801 struct sctp_transport
*transport
;
803 if ((asoc
= sctp_lookup_association(laddr
, paddr
, &transport
))) {
804 sock_put(asoc
->base
.sk
);
805 sctp_association_put(asoc
);
813 * SCTP Implementors Guide, 2.18 Handling of address
814 * parameters within the INIT or INIT-ACK.
816 * D) When searching for a matching TCB upon reception of an INIT
817 * or INIT-ACK chunk the receiver SHOULD use not only the
818 * source address of the packet (containing the INIT or
819 * INIT-ACK) but the receiver SHOULD also use all valid
820 * address parameters contained within the chunk.
822 * 2.18.3 Solution description
824 * This new text clearly specifies to an implementor the need
825 * to look within the INIT or INIT-ACK. Any implementation that
826 * does not do this, may not be able to establish associations
827 * in certain circumstances.
830 static struct sctp_association
*__sctp_rcv_init_lookup(struct sk_buff
*skb
,
831 const union sctp_addr
*laddr
, struct sctp_transport
**transportp
)
833 struct sctp_association
*asoc
;
834 union sctp_addr addr
;
835 union sctp_addr
*paddr
= &addr
;
836 struct sctphdr
*sh
= (struct sctphdr
*) skb
->h
.raw
;
838 union sctp_params params
;
839 sctp_init_chunk_t
*init
;
840 struct sctp_transport
*transport
;
843 ch
= (sctp_chunkhdr_t
*) skb
->data
;
845 /* If this is INIT/INIT-ACK look inside the chunk too. */
848 case SCTP_CID_INIT_ACK
:
854 /* The code below will attempt to walk the chunk and extract
855 * parameter information. Before we do that, we need to verify
856 * that the chunk length doesn't cause overflow. Otherwise, we'll
859 if (WORD_ROUND(ntohs(ch
->length
)) > skb
->len
)
863 * This code will NOT touch anything inside the chunk--it is
864 * strictly READ-ONLY.
866 * RFC 2960 3 SCTP packet Format
868 * Multiple chunks can be bundled into one SCTP packet up to
869 * the MTU size, except for the INIT, INIT ACK, and SHUTDOWN
870 * COMPLETE chunks. These chunks MUST NOT be bundled with any
871 * other chunk in a packet. See Section 6.10 for more details
875 /* Find the start of the TLVs and the end of the chunk. This is
876 * the region we search for address parameters.
878 init
= (sctp_init_chunk_t
*)skb
->data
;
880 /* Walk the parameters looking for embedded addresses. */
881 sctp_walk_params(params
, init
, init_hdr
.params
) {
883 /* Note: Ignoring hostname addresses. */
884 af
= sctp_get_af_specific(param_type2af(params
.p
->type
));
888 af
->from_addr_param(paddr
, params
.addr
, ntohs(sh
->source
), 0);
890 asoc
= __sctp_lookup_association(laddr
, paddr
, &transport
);
898 /* Lookup an association for an inbound skb. */
899 static struct sctp_association
*__sctp_rcv_lookup(struct sk_buff
*skb
,
900 const union sctp_addr
*paddr
,
901 const union sctp_addr
*laddr
,
902 struct sctp_transport
**transportp
)
904 struct sctp_association
*asoc
;
906 asoc
= __sctp_lookup_association(laddr
, paddr
, transportp
);
908 /* Further lookup for INIT/INIT-ACK packets.
909 * SCTP Implementors Guide, 2.18 Handling of address
910 * parameters within the INIT or INIT-ACK.
913 asoc
= __sctp_rcv_init_lookup(skb
, laddr
, transportp
);