1 /* SCTP kernel reference Implementation
2 * (C) Copyright IBM Corp. 2001, 2004
3 * Copyright (c) 1999-2000 Cisco, Inc.
4 * Copyright (c) 1999-2001 Motorola, Inc.
5 * Copyright (c) 2001 Intel Corp.
6 * Copyright (c) 2001 La Monte H.P. Yarroll
8 * This file is part of the SCTP kernel reference Implementation
10 * This module provides the abstraction for an SCTP association.
12 * The SCTP reference implementation is free software;
13 * you can redistribute it and/or modify it under the terms of
14 * the GNU General Public License as published by
15 * the Free Software Foundation; either version 2, or (at your option)
18 * The SCTP reference implementation is distributed in the hope that it
19 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
20 * ************************
21 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22 * See the GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with GNU CC; see the file COPYING. If not, write to
26 * the Free Software Foundation, 59 Temple Place - Suite 330,
27 * Boston, MA 02111-1307, USA.
29 * Please send any bug reports or fixes you make to the
31 * lksctp developers <lksctp-developers@lists.sourceforge.net>
33 * Or submit a bug report through the following website:
34 * http://www.sf.net/projects/lksctp
36 * Written or modified by:
37 * La Monte H.P. Yarroll <piggy@acm.org>
38 * Karl Knutson <karl@athena.chicago.il.us>
39 * Jon Grimm <jgrimm@us.ibm.com>
40 * Xingang Guo <xingang.guo@intel.com>
41 * Hui Huang <hui.huang@nokia.com>
42 * Sridhar Samudrala <sri@us.ibm.com>
43 * Daisy Chang <daisyc@us.ibm.com>
44 * Ryan Layer <rmlayer@us.ibm.com>
45 * Kevin Gao <kevin.gao@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/fcntl.h>
53 #include <linux/poll.h>
54 #include <linux/init.h>
55 #include <linux/sched.h>
57 #include <linux/slab.h>
60 #include <net/sctp/sctp.h>
61 #include <net/sctp/sm.h>
63 /* Forward declarations for internal functions. */
64 static void sctp_assoc_bh_rcv(struct sctp_association
*asoc
);
67 /* 1st Level Abstractions. */
69 /* Initialize a new association from provided memory. */
70 static struct sctp_association
*sctp_association_init(struct sctp_association
*asoc
,
71 const struct sctp_endpoint
*ep
,
72 const struct sock
*sk
,
79 /* Retrieve the SCTP per socket area. */
80 sp
= sctp_sk((struct sock
*)sk
);
82 /* Init all variables to a known value. */
83 memset(asoc
, 0, sizeof(struct sctp_association
));
85 /* Discarding const is appropriate here. */
86 asoc
->ep
= (struct sctp_endpoint
*)ep
;
87 sctp_endpoint_hold(asoc
->ep
);
90 asoc
->base
.sk
= (struct sock
*)sk
;
91 sock_hold(asoc
->base
.sk
);
93 /* Initialize the common base substructure. */
94 asoc
->base
.type
= SCTP_EP_TYPE_ASSOCIATION
;
96 /* Initialize the object handling fields. */
97 atomic_set(&asoc
->base
.refcnt
, 1);
99 asoc
->base
.malloced
= 0;
101 /* Initialize the bind addr area. */
102 sctp_bind_addr_init(&asoc
->base
.bind_addr
, ep
->base
.bind_addr
.port
);
103 rwlock_init(&asoc
->base
.addr_lock
);
105 asoc
->state
= SCTP_STATE_CLOSED
;
107 /* Set these values from the socket values, a conversion between
108 * millsecons to seconds/microseconds must also be done.
110 asoc
->cookie_life
.tv_sec
= sp
->assocparams
.sasoc_cookie_life
/ 1000;
111 asoc
->cookie_life
.tv_usec
= (sp
->assocparams
.sasoc_cookie_life
% 1000)
114 asoc
->frag_point
= 0;
116 /* Set the association max_retrans and RTO values from the
119 asoc
->max_retrans
= sp
->assocparams
.sasoc_asocmaxrxt
;
120 asoc
->rto_initial
= msecs_to_jiffies(sp
->rtoinfo
.srto_initial
);
121 asoc
->rto_max
= msecs_to_jiffies(sp
->rtoinfo
.srto_max
);
122 asoc
->rto_min
= msecs_to_jiffies(sp
->rtoinfo
.srto_min
);
124 asoc
->overall_error_count
= 0;
126 /* Initialize the maximum mumber of new data packets that can be sent
129 asoc
->max_burst
= sctp_max_burst
;
131 /* Copy things from the endpoint. */
132 for (i
= SCTP_EVENT_TIMEOUT_NONE
; i
< SCTP_NUM_TIMEOUT_TYPES
; ++i
) {
133 asoc
->timeouts
[i
] = ep
->timeouts
[i
];
134 init_timer(&asoc
->timers
[i
]);
135 asoc
->timers
[i
].function
= sctp_timer_events
[i
];
136 asoc
->timers
[i
].data
= (unsigned long) asoc
;
139 /* Pull default initialization values from the sock options.
140 * Note: This assumes that the values have already been
141 * validated in the sock.
143 asoc
->c
.sinit_max_instreams
= sp
->initmsg
.sinit_max_instreams
;
144 asoc
->c
.sinit_num_ostreams
= sp
->initmsg
.sinit_num_ostreams
;
145 asoc
->max_init_attempts
= sp
->initmsg
.sinit_max_attempts
;
147 asoc
->max_init_timeo
=
148 msecs_to_jiffies(sp
->initmsg
.sinit_max_init_timeo
);
150 /* Allocate storage for the ssnmap after the inbound and outbound
151 * streams have been negotiated during Init.
155 /* Set the local window size for receive.
156 * This is also the rcvbuf space per association.
157 * RFC 6 - A SCTP receiver MUST be able to receive a minimum of
158 * 1500 bytes in one SCTP packet.
160 if (sk
->sk_rcvbuf
< SCTP_DEFAULT_MINWINDOW
)
161 asoc
->rwnd
= SCTP_DEFAULT_MINWINDOW
;
163 asoc
->rwnd
= sk
->sk_rcvbuf
;
165 asoc
->a_rwnd
= asoc
->rwnd
;
169 /* Use my own max window until I learn something better. */
170 asoc
->peer
.rwnd
= SCTP_DEFAULT_MAXWINDOW
;
172 /* Set the sndbuf size for transmit. */
173 asoc
->sndbuf_used
= 0;
175 init_waitqueue_head(&asoc
->wait
);
177 asoc
->c
.my_vtag
= sctp_generate_tag(ep
);
178 asoc
->peer
.i
.init_tag
= 0; /* INIT needs a vtag of 0. */
179 asoc
->c
.peer_vtag
= 0;
181 asoc
->c
.peer_ttag
= 0;
182 asoc
->c
.my_port
= ep
->base
.bind_addr
.port
;
184 asoc
->c
.initial_tsn
= sctp_generate_tsn(ep
);
186 asoc
->next_tsn
= asoc
->c
.initial_tsn
;
188 asoc
->ctsn_ack_point
= asoc
->next_tsn
- 1;
189 asoc
->adv_peer_ack_point
= asoc
->ctsn_ack_point
;
190 asoc
->highest_sacked
= asoc
->ctsn_ack_point
;
191 asoc
->last_cwr_tsn
= asoc
->ctsn_ack_point
;
192 asoc
->unack_data
= 0;
194 /* ADDIP Section 4.1 Asconf Chunk Procedures
196 * When an endpoint has an ASCONF signaled change to be sent to the
197 * remote endpoint it should do the following:
199 * A2) a serial number should be assigned to the chunk. The serial
200 * number SHOULD be a monotonically increasing number. The serial
201 * numbers SHOULD be initialized at the start of the
202 * association to the same value as the initial TSN.
204 asoc
->addip_serial
= asoc
->c
.initial_tsn
;
206 INIT_LIST_HEAD(&asoc
->addip_chunk_list
);
208 /* Make an empty list of remote transport addresses. */
209 INIT_LIST_HEAD(&asoc
->peer
.transport_addr_list
);
210 asoc
->peer
.transport_count
= 0;
212 /* RFC 2960 5.1 Normal Establishment of an Association
214 * After the reception of the first data chunk in an
215 * association the endpoint must immediately respond with a
216 * sack to acknowledge the data chunk. Subsequent
217 * acknowledgements should be done as described in Section
220 * [We implement this by telling a new association that it
221 * already received one packet.]
223 asoc
->peer
.sack_needed
= 1;
225 /* Assume that the peer recongizes ASCONF until reported otherwise
226 * via an ERROR chunk.
228 asoc
->peer
.asconf_capable
= 1;
230 /* Create an input queue. */
231 sctp_inq_init(&asoc
->base
.inqueue
);
232 sctp_inq_set_th_handler(&asoc
->base
.inqueue
,
233 (void (*)(void *))sctp_assoc_bh_rcv
,
236 /* Create an output queue. */
237 sctp_outq_init(asoc
, &asoc
->outqueue
);
239 if (!sctp_ulpq_init(&asoc
->ulpq
, asoc
))
242 /* Set up the tsn tracking. */
243 sctp_tsnmap_init(&asoc
->peer
.tsn_map
, SCTP_TSN_MAP_SIZE
, 0);
249 /* Assume that peer would support both address types unless we are
252 asoc
->peer
.ipv4_address
= 1;
253 asoc
->peer
.ipv6_address
= 1;
254 INIT_LIST_HEAD(&asoc
->asocs
);
256 asoc
->autoclose
= sp
->autoclose
;
258 asoc
->default_stream
= sp
->default_stream
;
259 asoc
->default_ppid
= sp
->default_ppid
;
260 asoc
->default_flags
= sp
->default_flags
;
261 asoc
->default_context
= sp
->default_context
;
262 asoc
->default_timetolive
= sp
->default_timetolive
;
267 sctp_endpoint_put(asoc
->ep
);
268 sock_put(asoc
->base
.sk
);
272 /* Allocate and initialize a new association */
273 struct sctp_association
*sctp_association_new(const struct sctp_endpoint
*ep
,
274 const struct sock
*sk
,
275 sctp_scope_t scope
, int gfp
)
277 struct sctp_association
*asoc
;
279 asoc
= t_new(struct sctp_association
, gfp
);
283 if (!sctp_association_init(asoc
, ep
, sk
, scope
, gfp
))
286 asoc
->base
.malloced
= 1;
287 SCTP_DBG_OBJCNT_INC(assoc
);
288 SCTP_DEBUG_PRINTK("Created asoc %p\n", asoc
);
298 /* Free this association if possible. There may still be users, so
299 * the actual deallocation may be delayed.
301 void sctp_association_free(struct sctp_association
*asoc
)
303 struct sock
*sk
= asoc
->base
.sk
;
304 struct sctp_transport
*transport
;
305 struct list_head
*pos
, *temp
;
308 list_del(&asoc
->asocs
);
310 /* Decrement the backlog value for a TCP-style listening socket. */
311 if (sctp_style(sk
, TCP
) && sctp_sstate(sk
, LISTENING
))
312 sk
->sk_ack_backlog
--;
314 /* Mark as dead, so other users can know this structure is
319 /* Dispose of any data lying around in the outqueue. */
320 sctp_outq_free(&asoc
->outqueue
);
322 /* Dispose of any pending messages for the upper layer. */
323 sctp_ulpq_free(&asoc
->ulpq
);
325 /* Dispose of any pending chunks on the inqueue. */
326 sctp_inq_free(&asoc
->base
.inqueue
);
328 /* Free ssnmap storage. */
329 sctp_ssnmap_free(asoc
->ssnmap
);
331 /* Clean up the bound address list. */
332 sctp_bind_addr_free(&asoc
->base
.bind_addr
);
334 /* Do we need to go through all of our timers and
335 * delete them? To be safe we will try to delete all, but we
336 * should be able to go through and make a guess based
339 for (i
= SCTP_EVENT_TIMEOUT_NONE
; i
< SCTP_NUM_TIMEOUT_TYPES
; ++i
) {
340 if (timer_pending(&asoc
->timers
[i
]) &&
341 del_timer(&asoc
->timers
[i
]))
342 sctp_association_put(asoc
);
345 /* Free peer's cached cookie. */
346 if (asoc
->peer
.cookie
) {
347 kfree(asoc
->peer
.cookie
);
350 /* Release the transport structures. */
351 list_for_each_safe(pos
, temp
, &asoc
->peer
.transport_addr_list
) {
352 transport
= list_entry(pos
, struct sctp_transport
, transports
);
354 sctp_transport_free(transport
);
357 asoc
->peer
.transport_count
= 0;
359 /* Free any cached ASCONF_ACK chunk. */
360 if (asoc
->addip_last_asconf_ack
)
361 sctp_chunk_free(asoc
->addip_last_asconf_ack
);
363 /* Free any cached ASCONF chunk. */
364 if (asoc
->addip_last_asconf
)
365 sctp_chunk_free(asoc
->addip_last_asconf
);
367 sctp_association_put(asoc
);
370 /* Cleanup and free up an association. */
371 static void sctp_association_destroy(struct sctp_association
*asoc
)
373 SCTP_ASSERT(asoc
->base
.dead
, "Assoc is not dead", return);
375 sctp_endpoint_put(asoc
->ep
);
376 sock_put(asoc
->base
.sk
);
378 if (asoc
->assoc_id
!= 0) {
379 spin_lock_bh(&sctp_assocs_id_lock
);
380 idr_remove(&sctp_assocs_id
, asoc
->assoc_id
);
381 spin_unlock_bh(&sctp_assocs_id_lock
);
384 if (asoc
->base
.malloced
) {
386 SCTP_DBG_OBJCNT_DEC(assoc
);
390 /* Change the primary destination address for the peer. */
391 void sctp_assoc_set_primary(struct sctp_association
*asoc
,
392 struct sctp_transport
*transport
)
394 asoc
->peer
.primary_path
= transport
;
396 /* Set a default msg_name for events. */
397 memcpy(&asoc
->peer
.primary_addr
, &transport
->ipaddr
,
398 sizeof(union sctp_addr
));
400 /* If the primary path is changing, assume that the
401 * user wants to use this new path.
403 if (transport
->state
!= SCTP_INACTIVE
)
404 asoc
->peer
.active_path
= transport
;
407 * SFR-CACC algorithm:
408 * Upon the receipt of a request to change the primary
409 * destination address, on the data structure for the new
410 * primary destination, the sender MUST do the following:
412 * 1) If CHANGEOVER_ACTIVE is set, then there was a switch
413 * to this destination address earlier. The sender MUST set
414 * CYCLING_CHANGEOVER to indicate that this switch is a
415 * double switch to the same destination address.
417 if (transport
->cacc
.changeover_active
)
418 transport
->cacc
.cycling_changeover
= 1;
420 /* 2) The sender MUST set CHANGEOVER_ACTIVE to indicate that
421 * a changeover has occurred.
423 transport
->cacc
.changeover_active
= 1;
425 /* 3) The sender MUST store the next TSN to be sent in
426 * next_tsn_at_change.
428 transport
->cacc
.next_tsn_at_change
= asoc
->next_tsn
;
431 /* Remove a transport from an association. */
432 void sctp_assoc_rm_peer(struct sctp_association
*asoc
,
433 struct sctp_transport
*peer
)
435 struct list_head
*pos
;
436 struct sctp_transport
*transport
;
438 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_rm_peer:association %p addr: ",
442 peer
->ipaddr
.v4
.sin_port
);
444 /* If we are to remove the current retran_path, update it
445 * to the next peer before removing this peer from the list.
447 if (asoc
->peer
.retran_path
== peer
)
448 sctp_assoc_update_retran_path(asoc
);
450 /* Remove this peer from the list. */
451 list_del(&peer
->transports
);
453 /* Get the first transport of asoc. */
454 pos
= asoc
->peer
.transport_addr_list
.next
;
455 transport
= list_entry(pos
, struct sctp_transport
, transports
);
457 /* Update any entries that match the peer to be deleted. */
458 if (asoc
->peer
.primary_path
== peer
)
459 sctp_assoc_set_primary(asoc
, transport
);
460 if (asoc
->peer
.active_path
== peer
)
461 asoc
->peer
.active_path
= transport
;
462 if (asoc
->peer
.last_data_from
== peer
)
463 asoc
->peer
.last_data_from
= transport
;
465 /* If we remove the transport an INIT was last sent to, set it to
466 * NULL. Combined with the update of the retran path above, this
467 * will cause the next INIT to be sent to the next available
468 * transport, maintaining the cycle.
470 if (asoc
->init_last_sent_to
== peer
)
471 asoc
->init_last_sent_to
= NULL
;
473 asoc
->peer
.transport_count
--;
475 sctp_transport_free(peer
);
478 /* Add a transport address to an association. */
479 struct sctp_transport
*sctp_assoc_add_peer(struct sctp_association
*asoc
,
480 const union sctp_addr
*addr
,
482 const int peer_state
)
484 struct sctp_transport
*peer
;
485 struct sctp_sock
*sp
;
488 sp
= sctp_sk(asoc
->base
.sk
);
490 /* AF_INET and AF_INET6 share common port field. */
491 port
= addr
->v4
.sin_port
;
493 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_add_peer:association %p addr: ",
494 " port: %d state:%s\n",
498 peer_state
== SCTP_UNKNOWN
?"UNKNOWN":"ACTIVE");
500 /* Set the port if it has not been set yet. */
501 if (0 == asoc
->peer
.port
)
502 asoc
->peer
.port
= port
;
504 /* Check to see if this is a duplicate. */
505 peer
= sctp_assoc_lookup_paddr(asoc
, addr
);
507 if (peer_state
== SCTP_ACTIVE
&&
508 peer
->state
== SCTP_UNKNOWN
)
509 peer
->state
= SCTP_ACTIVE
;
513 peer
= sctp_transport_new(addr
, gfp
);
517 sctp_transport_set_owner(peer
, asoc
);
519 /* Initialize the pmtu of the transport. */
520 sctp_transport_pmtu(peer
);
522 /* If this is the first transport addr on this association,
523 * initialize the association PMTU to the peer's PMTU.
524 * If not and the current association PMTU is higher than the new
525 * peer's PMTU, reset the association PMTU to the new peer's PMTU.
528 asoc
->pmtu
= min_t(int, peer
->pmtu
, asoc
->pmtu
);
530 asoc
->pmtu
= peer
->pmtu
;
532 SCTP_DEBUG_PRINTK("sctp_assoc_add_peer:association %p PMTU set to "
533 "%d\n", asoc
, asoc
->pmtu
);
535 asoc
->frag_point
= sctp_frag_point(sp
, asoc
->pmtu
);
537 /* The asoc->peer.port might not be meaningful yet, but
538 * initialize the packet structure anyway.
540 sctp_packet_init(&peer
->packet
, peer
, asoc
->base
.bind_addr
.port
,
545 * o The initial cwnd before DATA transmission or after a sufficiently
546 * long idle period MUST be set to
547 * min(4*MTU, max(2*MTU, 4380 bytes))
549 * o The initial value of ssthresh MAY be arbitrarily high
550 * (for example, implementations MAY use the size of the
551 * receiver advertised window).
553 peer
->cwnd
= min(4*asoc
->pmtu
, max_t(__u32
, 2*asoc
->pmtu
, 4380));
555 /* At this point, we may not have the receiver's advertised window,
556 * so initialize ssthresh to the default value and it will be set
557 * later when we process the INIT.
559 peer
->ssthresh
= SCTP_DEFAULT_MAXWINDOW
;
561 peer
->partial_bytes_acked
= 0;
562 peer
->flight_size
= 0;
564 /* By default, enable heartbeat for peer address. */
565 peer
->hb_allowed
= 1;
567 /* Initialize the peer's heartbeat interval based on the
568 * sock configured value.
570 peer
->hb_interval
= msecs_to_jiffies(sp
->paddrparam
.spp_hbinterval
);
572 /* Set the path max_retrans. */
573 peer
->max_retrans
= sp
->paddrparam
.spp_pathmaxrxt
;
575 /* Set the transport's RTO.initial value */
576 peer
->rto
= asoc
->rto_initial
;
578 /* Set the peer's active state. */
579 peer
->state
= peer_state
;
581 /* Attach the remote transport to our asoc. */
582 list_add_tail(&peer
->transports
, &asoc
->peer
.transport_addr_list
);
583 asoc
->peer
.transport_count
++;
585 /* If we do not yet have a primary path, set one. */
586 if (!asoc
->peer
.primary_path
) {
587 sctp_assoc_set_primary(asoc
, peer
);
588 asoc
->peer
.retran_path
= peer
;
591 if (asoc
->peer
.active_path
== asoc
->peer
.retran_path
) {
592 asoc
->peer
.retran_path
= peer
;
598 /* Delete a transport address from an association. */
599 void sctp_assoc_del_peer(struct sctp_association
*asoc
,
600 const union sctp_addr
*addr
)
602 struct list_head
*pos
;
603 struct list_head
*temp
;
604 struct sctp_transport
*transport
;
606 list_for_each_safe(pos
, temp
, &asoc
->peer
.transport_addr_list
) {
607 transport
= list_entry(pos
, struct sctp_transport
, transports
);
608 if (sctp_cmp_addr_exact(addr
, &transport
->ipaddr
)) {
609 /* Do book keeping for removing the peer and free it. */
610 sctp_assoc_rm_peer(asoc
, transport
);
616 /* Lookup a transport by address. */
617 struct sctp_transport
*sctp_assoc_lookup_paddr(
618 const struct sctp_association
*asoc
,
619 const union sctp_addr
*address
)
621 struct sctp_transport
*t
;
622 struct list_head
*pos
;
624 /* Cycle through all transports searching for a peer address. */
626 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
627 t
= list_entry(pos
, struct sctp_transport
, transports
);
628 if (sctp_cmp_addr_exact(address
, &t
->ipaddr
))
635 /* Engage in transport control operations.
636 * Mark the transport up or down and send a notification to the user.
637 * Select and update the new active and retran paths.
639 void sctp_assoc_control_transport(struct sctp_association
*asoc
,
640 struct sctp_transport
*transport
,
641 sctp_transport_cmd_t command
,
642 sctp_sn_error_t error
)
644 struct sctp_transport
*t
= NULL
;
645 struct sctp_transport
*first
;
646 struct sctp_transport
*second
;
647 struct sctp_ulpevent
*event
;
648 struct list_head
*pos
;
651 /* Record the transition on the transport. */
653 case SCTP_TRANSPORT_UP
:
654 transport
->state
= SCTP_ACTIVE
;
655 spc_state
= SCTP_ADDR_AVAILABLE
;
658 case SCTP_TRANSPORT_DOWN
:
659 transport
->state
= SCTP_INACTIVE
;
660 spc_state
= SCTP_ADDR_UNREACHABLE
;
667 /* Generate and send a SCTP_PEER_ADDR_CHANGE notification to the
670 event
= sctp_ulpevent_make_peer_addr_change(asoc
,
671 (struct sockaddr_storage
*) &transport
->ipaddr
,
672 0, spc_state
, error
, GFP_ATOMIC
);
674 sctp_ulpq_tail_event(&asoc
->ulpq
, event
);
676 /* Select new active and retran paths. */
678 /* Look for the two most recently used active transports.
680 * This code produces the wrong ordering whenever jiffies
681 * rolls over, but we still get usable transports, so we don't
684 first
= NULL
; second
= NULL
;
686 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
687 t
= list_entry(pos
, struct sctp_transport
, transports
);
689 if (t
->state
== SCTP_INACTIVE
)
691 if (!first
|| t
->last_time_heard
> first
->last_time_heard
) {
695 if (!second
|| t
->last_time_heard
> second
->last_time_heard
)
699 /* RFC 2960 6.4 Multi-Homed SCTP Endpoints
701 * By default, an endpoint should always transmit to the
702 * primary path, unless the SCTP user explicitly specifies the
703 * destination transport address (and possibly source
704 * transport address) to use.
706 * [If the primary is active but not most recent, bump the most
707 * recently used transport.]
709 if (asoc
->peer
.primary_path
->state
!= SCTP_INACTIVE
&&
710 first
!= asoc
->peer
.primary_path
) {
712 first
= asoc
->peer
.primary_path
;
715 /* If we failed to find a usable transport, just camp on the
716 * primary, even if it is inactive.
719 first
= asoc
->peer
.primary_path
;
720 second
= asoc
->peer
.primary_path
;
723 /* Set the active and retran transports. */
724 asoc
->peer
.active_path
= first
;
725 asoc
->peer
.retran_path
= second
;
728 /* Hold a reference to an association. */
729 void sctp_association_hold(struct sctp_association
*asoc
)
731 atomic_inc(&asoc
->base
.refcnt
);
734 /* Release a reference to an association and cleanup
735 * if there are no more references.
737 void sctp_association_put(struct sctp_association
*asoc
)
739 if (atomic_dec_and_test(&asoc
->base
.refcnt
))
740 sctp_association_destroy(asoc
);
743 /* Allocate the next TSN, Transmission Sequence Number, for the given
746 __u32
sctp_association_get_next_tsn(struct sctp_association
*asoc
)
748 /* From Section 1.6 Serial Number Arithmetic:
749 * Transmission Sequence Numbers wrap around when they reach
750 * 2**32 - 1. That is, the next TSN a DATA chunk MUST use
751 * after transmitting TSN = 2*32 - 1 is TSN = 0.
753 __u32 retval
= asoc
->next_tsn
;
760 /* Compare two addresses to see if they match. Wildcard addresses
761 * only match themselves.
763 int sctp_cmp_addr_exact(const union sctp_addr
*ss1
,
764 const union sctp_addr
*ss2
)
768 af
= sctp_get_af_specific(ss1
->sa
.sa_family
);
772 return af
->cmp_addr(ss1
, ss2
);
775 /* Return an ecne chunk to get prepended to a packet.
776 * Note: We are sly and return a shared, prealloced chunk. FIXME:
777 * No we don't, but we could/should.
779 struct sctp_chunk
*sctp_get_ecne_prepend(struct sctp_association
*asoc
)
781 struct sctp_chunk
*chunk
;
783 /* Send ECNE if needed.
784 * Not being able to allocate a chunk here is not deadly.
787 chunk
= sctp_make_ecne(asoc
, asoc
->last_ecne_tsn
);
795 * Find which transport this TSN was sent on.
797 struct sctp_transport
*sctp_assoc_lookup_tsn(struct sctp_association
*asoc
,
800 struct sctp_transport
*active
;
801 struct sctp_transport
*match
;
802 struct list_head
*entry
, *pos
;
803 struct sctp_transport
*transport
;
804 struct sctp_chunk
*chunk
;
805 __u32 key
= htonl(tsn
);
810 * FIXME: In general, find a more efficient data structure for
815 * The general strategy is to search each transport's transmitted
816 * list. Return which transport this TSN lives on.
818 * Let's be hopeful and check the active_path first.
819 * Another optimization would be to know if there is only one
820 * outbound path and not have to look for the TSN at all.
824 active
= asoc
->peer
.active_path
;
826 list_for_each(entry
, &active
->transmitted
) {
827 chunk
= list_entry(entry
, struct sctp_chunk
, transmitted_list
);
829 if (key
== chunk
->subh
.data_hdr
->tsn
) {
835 /* If not found, go search all the other transports. */
836 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
837 transport
= list_entry(pos
, struct sctp_transport
, transports
);
839 if (transport
== active
)
841 list_for_each(entry
, &transport
->transmitted
) {
842 chunk
= list_entry(entry
, struct sctp_chunk
,
844 if (key
== chunk
->subh
.data_hdr
->tsn
) {
854 /* Is this the association we are looking for? */
855 struct sctp_transport
*sctp_assoc_is_match(struct sctp_association
*asoc
,
856 const union sctp_addr
*laddr
,
857 const union sctp_addr
*paddr
)
859 struct sctp_transport
*transport
;
861 sctp_read_lock(&asoc
->base
.addr_lock
);
863 if ((asoc
->base
.bind_addr
.port
== laddr
->v4
.sin_port
) &&
864 (asoc
->peer
.port
== paddr
->v4
.sin_port
)) {
865 transport
= sctp_assoc_lookup_paddr(asoc
, paddr
);
869 if (sctp_bind_addr_match(&asoc
->base
.bind_addr
, laddr
,
870 sctp_sk(asoc
->base
.sk
)))
876 sctp_read_unlock(&asoc
->base
.addr_lock
);
880 /* Do delayed input processing. This is scheduled by sctp_rcv(). */
881 static void sctp_assoc_bh_rcv(struct sctp_association
*asoc
)
883 struct sctp_endpoint
*ep
;
884 struct sctp_chunk
*chunk
;
886 struct sctp_inq
*inqueue
;
888 sctp_subtype_t subtype
;
891 /* The association should be held so we should be safe. */
895 inqueue
= &asoc
->base
.inqueue
;
896 sctp_association_hold(asoc
);
897 while (NULL
!= (chunk
= sctp_inq_pop(inqueue
))) {
899 subtype
= SCTP_ST_CHUNK(chunk
->chunk_hdr
->type
);
901 /* Remember where the last DATA chunk came from so we
902 * know where to send the SACK.
904 if (sctp_chunk_is_data(chunk
))
905 asoc
->peer
.last_data_from
= chunk
->transport
;
907 SCTP_INC_STATS(SCTP_MIB_INCTRLCHUNKS
);
909 if (chunk
->transport
)
910 chunk
->transport
->last_time_heard
= jiffies
;
912 /* Run through the state machine. */
913 error
= sctp_do_sm(SCTP_EVENT_T_CHUNK
, subtype
,
914 state
, ep
, asoc
, chunk
, GFP_ATOMIC
);
916 /* Check to see if the association is freed in response to
917 * the incoming chunk. If so, get out of the while loop.
922 /* If there is an error on chunk, discard this packet. */
926 sctp_association_put(asoc
);
929 /* This routine moves an association from its old sk to a new sk. */
930 void sctp_assoc_migrate(struct sctp_association
*assoc
, struct sock
*newsk
)
932 struct sctp_sock
*newsp
= sctp_sk(newsk
);
933 struct sock
*oldsk
= assoc
->base
.sk
;
935 /* Delete the association from the old endpoint's list of
938 list_del_init(&assoc
->asocs
);
940 /* Decrement the backlog value for a TCP-style socket. */
941 if (sctp_style(oldsk
, TCP
))
942 oldsk
->sk_ack_backlog
--;
944 /* Release references to the old endpoint and the sock. */
945 sctp_endpoint_put(assoc
->ep
);
946 sock_put(assoc
->base
.sk
);
948 /* Get a reference to the new endpoint. */
949 assoc
->ep
= newsp
->ep
;
950 sctp_endpoint_hold(assoc
->ep
);
952 /* Get a reference to the new sock. */
953 assoc
->base
.sk
= newsk
;
954 sock_hold(assoc
->base
.sk
);
956 /* Add the association to the new endpoint's list of associations. */
957 sctp_endpoint_add_asoc(newsp
->ep
, assoc
);
960 /* Update an association (possibly from unexpected COOKIE-ECHO processing). */
961 void sctp_assoc_update(struct sctp_association
*asoc
,
962 struct sctp_association
*new)
964 struct sctp_transport
*trans
;
965 struct list_head
*pos
, *temp
;
967 /* Copy in new parameters of peer. */
969 asoc
->peer
.rwnd
= new->peer
.rwnd
;
970 asoc
->peer
.sack_needed
= new->peer
.sack_needed
;
971 asoc
->peer
.i
= new->peer
.i
;
972 sctp_tsnmap_init(&asoc
->peer
.tsn_map
, SCTP_TSN_MAP_SIZE
,
973 asoc
->peer
.i
.initial_tsn
);
975 /* Remove any peer addresses not present in the new association. */
976 list_for_each_safe(pos
, temp
, &asoc
->peer
.transport_addr_list
) {
977 trans
= list_entry(pos
, struct sctp_transport
, transports
);
978 if (!sctp_assoc_lookup_paddr(new, &trans
->ipaddr
))
979 sctp_assoc_del_peer(asoc
, &trans
->ipaddr
);
982 /* If the case is A (association restart), use
983 * initial_tsn as next_tsn. If the case is B, use
984 * current next_tsn in case data sent to peer
985 * has been discarded and needs retransmission.
987 if (asoc
->state
>= SCTP_STATE_ESTABLISHED
) {
988 asoc
->next_tsn
= new->next_tsn
;
989 asoc
->ctsn_ack_point
= new->ctsn_ack_point
;
990 asoc
->adv_peer_ack_point
= new->adv_peer_ack_point
;
992 /* Reinitialize SSN for both local streams
993 * and peer's streams.
995 sctp_ssnmap_clear(asoc
->ssnmap
);
998 /* Add any peer addresses from the new association. */
999 list_for_each(pos
, &new->peer
.transport_addr_list
) {
1000 trans
= list_entry(pos
, struct sctp_transport
,
1002 if (!sctp_assoc_lookup_paddr(asoc
, &trans
->ipaddr
))
1003 sctp_assoc_add_peer(asoc
, &trans
->ipaddr
,
1004 GFP_ATOMIC
, SCTP_ACTIVE
);
1007 asoc
->ctsn_ack_point
= asoc
->next_tsn
- 1;
1008 asoc
->adv_peer_ack_point
= asoc
->ctsn_ack_point
;
1009 if (!asoc
->ssnmap
) {
1010 /* Move the ssnmap. */
1011 asoc
->ssnmap
= new->ssnmap
;
1017 /* Update the retran path for sending a retransmitted packet.
1018 * Round-robin through the active transports, else round-robin
1019 * through the inactive transports as this is the next best thing
1022 void sctp_assoc_update_retran_path(struct sctp_association
*asoc
)
1024 struct sctp_transport
*t
, *next
;
1025 struct list_head
*head
= &asoc
->peer
.transport_addr_list
;
1026 struct list_head
*pos
;
1028 /* Find the next transport in a round-robin fashion. */
1029 t
= asoc
->peer
.retran_path
;
1030 pos
= &t
->transports
;
1034 /* Skip the head. */
1035 if (pos
->next
== head
)
1040 t
= list_entry(pos
, struct sctp_transport
, transports
);
1042 /* Try to find an active transport. */
1044 if (t
->state
!= SCTP_INACTIVE
) {
1047 /* Keep track of the next transport in case
1048 * we don't find any active transport.
1054 /* We have exhausted the list, but didn't find any
1055 * other active transports. If so, use the next
1058 if (t
== asoc
->peer
.retran_path
) {
1064 asoc
->peer
.retran_path
= t
;
1066 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
1071 t
->ipaddr
.v4
.sin_port
);
1074 /* Choose the transport for sending a INIT packet. */
1075 struct sctp_transport
*sctp_assoc_choose_init_transport(
1076 struct sctp_association
*asoc
)
1078 struct sctp_transport
*t
;
1080 /* Use the retran path. If the last INIT was sent over the
1081 * retran path, update the retran path and use it.
1083 if (!asoc
->init_last_sent_to
) {
1084 t
= asoc
->peer
.active_path
;
1086 if (asoc
->init_last_sent_to
== asoc
->peer
.retran_path
)
1087 sctp_assoc_update_retran_path(asoc
);
1088 t
= asoc
->peer
.retran_path
;
1091 SCTP_DEBUG_PRINTK_IPADDR("sctp_assoc_update_retran_path:association"
1096 t
->ipaddr
.v4
.sin_port
);
1101 /* Choose the transport for sending a SHUTDOWN packet. */
1102 struct sctp_transport
*sctp_assoc_choose_shutdown_transport(
1103 struct sctp_association
*asoc
)
1105 /* If this is the first time SHUTDOWN is sent, use the active path,
1106 * else use the retran path. If the last SHUTDOWN was sent over the
1107 * retran path, update the retran path and use it.
1109 if (!asoc
->shutdown_last_sent_to
)
1110 return asoc
->peer
.active_path
;
1112 if (asoc
->shutdown_last_sent_to
== asoc
->peer
.retran_path
)
1113 sctp_assoc_update_retran_path(asoc
);
1114 return asoc
->peer
.retran_path
;
1119 /* Update the association's pmtu and frag_point by going through all the
1120 * transports. This routine is called when a transport's PMTU has changed.
1122 void sctp_assoc_sync_pmtu(struct sctp_association
*asoc
)
1124 struct sctp_transport
*t
;
1125 struct list_head
*pos
;
1131 /* Get the lowest pmtu of all the transports. */
1132 list_for_each(pos
, &asoc
->peer
.transport_addr_list
) {
1133 t
= list_entry(pos
, struct sctp_transport
, transports
);
1134 if (!pmtu
|| (t
->pmtu
< pmtu
))
1139 struct sctp_sock
*sp
= sctp_sk(asoc
->base
.sk
);
1141 asoc
->frag_point
= sctp_frag_point(sp
, pmtu
);
1144 SCTP_DEBUG_PRINTK("%s: asoc:%p, pmtu:%d, frag_point:%d\n",
1145 __FUNCTION__
, asoc
, asoc
->pmtu
, asoc
->frag_point
);
1148 /* Should we send a SACK to update our peer? */
1149 static inline int sctp_peer_needs_update(struct sctp_association
*asoc
)
1151 switch (asoc
->state
) {
1152 case SCTP_STATE_ESTABLISHED
:
1153 case SCTP_STATE_SHUTDOWN_PENDING
:
1154 case SCTP_STATE_SHUTDOWN_RECEIVED
:
1155 case SCTP_STATE_SHUTDOWN_SENT
:
1156 if ((asoc
->rwnd
> asoc
->a_rwnd
) &&
1157 ((asoc
->rwnd
- asoc
->a_rwnd
) >=
1158 min_t(__u32
, (asoc
->base
.sk
->sk_rcvbuf
>> 1), asoc
->pmtu
)))
1167 /* Increase asoc's rwnd by len and send any window update SACK if needed. */
1168 void sctp_assoc_rwnd_increase(struct sctp_association
*asoc
, unsigned len
)
1170 struct sctp_chunk
*sack
;
1171 struct timer_list
*timer
;
1173 if (asoc
->rwnd_over
) {
1174 if (asoc
->rwnd_over
>= len
) {
1175 asoc
->rwnd_over
-= len
;
1177 asoc
->rwnd
+= (len
- asoc
->rwnd_over
);
1178 asoc
->rwnd_over
= 0;
1184 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd increased by %d to (%u, %u) "
1185 "- %u\n", __FUNCTION__
, asoc
, len
, asoc
->rwnd
,
1186 asoc
->rwnd_over
, asoc
->a_rwnd
);
1188 /* Send a window update SACK if the rwnd has increased by at least the
1189 * minimum of the association's PMTU and half of the receive buffer.
1190 * The algorithm used is similar to the one described in
1191 * Section 4.2.3.3 of RFC 1122.
1193 if (sctp_peer_needs_update(asoc
)) {
1194 asoc
->a_rwnd
= asoc
->rwnd
;
1195 SCTP_DEBUG_PRINTK("%s: Sending window update SACK- asoc: %p "
1196 "rwnd: %u a_rwnd: %u\n", __FUNCTION__
,
1197 asoc
, asoc
->rwnd
, asoc
->a_rwnd
);
1198 sack
= sctp_make_sack(asoc
);
1202 asoc
->peer
.sack_needed
= 0;
1204 sctp_outq_tail(&asoc
->outqueue
, sack
);
1206 /* Stop the SACK timer. */
1207 timer
= &asoc
->timers
[SCTP_EVENT_TIMEOUT_SACK
];
1208 if (timer_pending(timer
) && del_timer(timer
))
1209 sctp_association_put(asoc
);
1213 /* Decrease asoc's rwnd by len. */
1214 void sctp_assoc_rwnd_decrease(struct sctp_association
*asoc
, unsigned len
)
1216 SCTP_ASSERT(asoc
->rwnd
, "rwnd zero", return);
1217 SCTP_ASSERT(!asoc
->rwnd_over
, "rwnd_over not zero", return);
1218 if (asoc
->rwnd
>= len
) {
1221 asoc
->rwnd_over
= len
- asoc
->rwnd
;
1224 SCTP_DEBUG_PRINTK("%s: asoc %p rwnd decreased by %d to (%u, %u)\n",
1225 __FUNCTION__
, asoc
, len
, asoc
->rwnd
,
1229 /* Build the bind address list for the association based on info from the
1230 * local endpoint and the remote peer.
1232 int sctp_assoc_set_bind_addr_from_ep(struct sctp_association
*asoc
, int gfp
)
1237 /* Use scoping rules to determine the subset of addresses from
1240 scope
= sctp_scope(&asoc
->peer
.active_path
->ipaddr
);
1241 flags
= (PF_INET6
== asoc
->base
.sk
->sk_family
) ? SCTP_ADDR6_ALLOWED
: 0;
1242 if (asoc
->peer
.ipv4_address
)
1243 flags
|= SCTP_ADDR4_PEERSUPP
;
1244 if (asoc
->peer
.ipv6_address
)
1245 flags
|= SCTP_ADDR6_PEERSUPP
;
1247 return sctp_bind_addr_copy(&asoc
->base
.bind_addr
,
1248 &asoc
->ep
->base
.bind_addr
,
1252 /* Build the association's bind address list from the cookie. */
1253 int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association
*asoc
,
1254 struct sctp_cookie
*cookie
, int gfp
)
1256 int var_size2
= ntohs(cookie
->peer_init
->chunk_hdr
.length
);
1257 int var_size3
= cookie
->raw_addr_list_len
;
1258 __u8
*raw
= (__u8
*)cookie
->peer_init
+ var_size2
;
1260 return sctp_raw_to_bind_addrs(&asoc
->base
.bind_addr
, raw
, var_size3
,
1261 asoc
->ep
->base
.bind_addr
.port
, gfp
);
1264 /* Lookup laddr in the bind address list of an association. */
1265 int sctp_assoc_lookup_laddr(struct sctp_association
*asoc
,
1266 const union sctp_addr
*laddr
)
1270 sctp_read_lock(&asoc
->base
.addr_lock
);
1271 if ((asoc
->base
.bind_addr
.port
== ntohs(laddr
->v4
.sin_port
)) &&
1272 sctp_bind_addr_match(&asoc
->base
.bind_addr
, laddr
,
1273 sctp_sk(asoc
->base
.sk
))) {
1280 sctp_read_unlock(&asoc
->base
.addr_lock
);