blob: 4ea0ec64eadaf41cb94a6468c21a63c6668b0e2c [file] [log] [blame]
Vlad Yasevich60c778b2008-01-11 09:57:09 -05001/* SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * (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 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05007 * This file is part of the SCTP kernel implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -05009 * This SCTP implementation is free software;
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * you can redistribute it and/or modify it under the terms of
11 * the GNU General Public License as published by
12 * the Free Software Foundation; either version 2, or (at your option)
13 * any later version.
14 *
Vlad Yasevich60c778b2008-01-11 09:57:09 -050015 * This SCTP implementation is distributed in the hope that it
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
17 * ************************
18 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 * See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with GNU CC; see the file COPYING. If not, write to
23 * the Free Software Foundation, 59 Temple Place - Suite 330,
24 * Boston, MA 02111-1307, USA.
25 *
26 * Please send any bug reports or fixes you make to the
27 * email addresses:
28 * lksctp developers <lksctp-developers@lists.sourceforge.net>
29 *
30 * Or submit a bug report through the following website:
31 * http://www.sf.net/projects/lksctp
32 *
33 * Written or modified by:
34 * Randall Stewart <randall@sctp.chicago.il.us>
35 * Ken Morneau <kmorneau@cisco.com>
36 * Qiaobing Xie <qxie1@email.mot.com>
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 * Dajiang Zhang <dajiang.zhang@nokia.com>
45 * Ardelle Fan <ardelle.fan@intel.com>
46 * Ryan Layer <rmlayer@us.ibm.com>
47 * Anup Pemmaiah <pemmaiah@cc.usu.edu>
48 * Kevin Gao <kevin.gao@intel.com>
49 *
50 * Any bugs reported given to us we will try to fix... any fixes shared will
51 * be incorporated into the next SCTP release.
52 */
53
54#ifndef __sctp_structs_h__
55#define __sctp_structs_h__
56
57#include <linux/time.h> /* We get struct timespec. */
58#include <linux/socket.h> /* linux/in.h needs this!! */
59#include <linux/in.h> /* We get struct sockaddr_in. */
60#include <linux/in6.h> /* We get struct in6_addr */
61#include <linux/ipv6.h>
62#include <asm/param.h> /* We get MAXHOSTNAMELEN. */
Arun Sharma60063492011-07-26 16:09:06 -070063#include <linux/atomic.h> /* This gets us atomic counters. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <linux/skbuff.h> /* We need sk_buff_head. */
65#include <linux/workqueue.h> /* We need tq_struct. */
66#include <linux/sctp.h> /* We need sctp* header structs. */
Vlad Yasevich1f485642007-10-09 01:15:59 -070067#include <net/sctp/auth.h> /* We need auth specific structs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* A convenience structure for handling sockaddr structures.
70 * We should wean ourselves off this.
71 */
72union sctp_addr {
73 struct sockaddr_in v4;
74 struct sockaddr_in6 v6;
75 struct sockaddr sa;
76};
77
78/* Forward declarations for data structures. */
79struct sctp_globals;
80struct sctp_endpoint;
81struct sctp_association;
82struct sctp_transport;
83struct sctp_packet;
84struct sctp_chunk;
85struct sctp_inq;
86struct sctp_outq;
87struct sctp_bind_addr;
88struct sctp_ulpq;
89struct sctp_ep_common;
90struct sctp_ssnmap;
Herbert Xu1b489e12006-08-20 15:07:14 +100091struct crypto_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93
94#include <net/sctp/tsnmap.h>
95#include <net/sctp/ulpevent.h>
96#include <net/sctp/ulpqueue.h>
97
98/* Structures useful for managing bind/connect. */
99
100struct sctp_bind_bucket {
101 unsigned short port;
102 unsigned short fastreuse;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -0500103 struct hlist_node node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct hlist_head owner;
105};
106
107struct sctp_bind_hashbucket {
108 spinlock_t lock;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -0500109 struct hlist_head chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110};
111
112/* Used for hashing all associations. */
113struct sctp_hashbucket {
114 rwlock_t lock;
Vlad Yasevichd970dbf2007-11-09 11:43:40 -0500115 struct hlist_head chain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116} __attribute__((__aligned__(8)));
117
118
119/* The SCTP globals structure. */
120extern struct sctp_globals {
121 /* RFC2960 Section 14. Suggested SCTP Protocol Parameter Values
122 *
123 * The following protocol parameters are RECOMMENDED:
124 *
125 * RTO.Initial - 3 seconds
126 * RTO.Min - 1 second
127 * RTO.Max - 60 seconds
128 * RTO.Alpha - 1/8 (3 when converted to right shifts.)
129 * RTO.Beta - 1/4 (2 when converted to right shifts.)
130 */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700131 unsigned int rto_initial;
132 unsigned int rto_min;
133 unsigned int rto_max;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* Note: rto_alpha and rto_beta are really defined as inverse
136 * powers of two to facilitate integer operations.
137 */
138 int rto_alpha;
139 int rto_beta;
140
141 /* Max.Burst - 4 */
142 int max_burst;
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 /* Whether Cookie Preservative is enabled(1) or not(0) */
145 int cookie_preserve_enable;
146
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800147 /* Valid.Cookie.Life - 60 seconds */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700148 unsigned int valid_cookie_life;
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800149
150 /* Delayed SACK timeout 200ms default*/
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700151 unsigned int sack_timeout;
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800152
153 /* HB.interval - 30 seconds */
Vladislav Yasevich3fd091e2006-08-22 13:29:17 -0700154 unsigned int hb_interval;
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 /* Association.Max.Retrans - 10 attempts
157 * Path.Max.Retrans - 5 attempts (per destination address)
158 * Max.Init.Retransmits - 8 attempts
159 */
160 int max_retrans_association;
161 int max_retrans_path;
162 int max_retrans_init;
163
Neil Horman4eb701d2005-04-28 12:02:04 -0700164 /*
165 * Policy for preforming sctp/socket accounting
166 * 0 - do socket level accounting, all assocs share sk_sndbuf
167 * 1 - do sctp accounting, each asoc may use sk_sndbuf bytes
168 */
169 int sndbuf_policy;
170
Neil Horman049b3ff2005-11-11 16:08:24 -0800171 /*
172 * Policy for preforming sctp/socket accounting
173 * 0 - do socket level accounting, all assocs share sk_rcvbuf
174 * 1 - do sctp accounting, each asoc may use sk_rcvbuf bytes
175 */
176 int rcvbuf_policy;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 /* The following variables are implementation specific. */
179
180 /* Default initialization values to be applied to new associations. */
181 __u16 max_instreams;
182 __u16 max_outstreams;
183
184 /* This is a list of groups of functions for each address
185 * family that we support.
186 */
187 struct list_head address_families;
188
189 /* This is the hash of all endpoints. */
190 int ep_hashsize;
191 struct sctp_hashbucket *ep_hashtable;
192
193 /* This is the hash of all associations. */
194 int assoc_hashsize;
195 struct sctp_hashbucket *assoc_hashtable;
196
197 /* This is the sctp port control hash. */
198 int port_hashsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct sctp_bind_hashbucket *port_hashtable;
200
201 /* This is the global local address list.
Sridhar Samudrala29c7cf92006-12-13 16:26:26 -0800202 * We actively maintain this complete list of addresses on
203 * the system by catching address add/delete events.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 *
205 * It is a list of sctp_sockaddr_entry.
206 */
207 struct list_head local_addr_list;
Michio Honda9f7d6532011-04-26 19:32:51 +0900208 int default_auto_asconf;
209 struct list_head addr_waitq;
210 struct timer_list addr_wq_timer;
211 struct list_head auto_asconf_splist;
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600212 /* Lock that protects both addr_waitq and auto_asconf_splist */
Michio Honda9f7d6532011-04-26 19:32:51 +0900213 spinlock_t addr_wq_lock;
Vlad Yasevich29303542007-09-16 16:02:12 -0700214
215 /* Lock that protects the local_addr_list writers */
216 spinlock_t addr_list_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* Flag to indicate if addip is enabled. */
219 int addip_enable;
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400220 int addip_noauth_enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* Flag to indicate if PR-SCTP is enabled. */
223 int prsctp_enable;
Vlad Yasevich1f485642007-10-09 01:15:59 -0700224
225 /* Flag to idicate if SCTP-AUTH is enabled */
226 int auth_enable;
Lucas Nussbaum06e86802009-02-13 08:33:41 +0000227
Bhaskar Dutta72388432009-09-03 17:25:47 +0530228 /*
229 * Policy to control SCTP IPv4 address scoping
230 * 0 - Disable IPv4 address scoping
231 * 1 - Enable IPv4 address scoping
232 * 2 - Selectively allow only IPv4 private addresses
233 * 3 - Selectively allow only IPv4 link local address
234 */
235 int ipv4_scope_policy;
236
Lucas Nussbaum06e86802009-02-13 08:33:41 +0000237 /* Flag to indicate whether computing and verifying checksum
238 * is disabled. */
Rusty Russelleb939922011-12-19 14:08:01 +0000239 bool checksum_disable;
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500240
241 /* Threshold for rwnd update SACKS. Receive buffer shifted this many
242 * bits is an indicator of when to send and window update SACK.
243 */
244 int rwnd_update_shift;
Xi Wang2692ba62011-12-16 12:44:15 +0000245
246 /* Threshold for autoclose timeout, in seconds. */
247 unsigned long max_autoclose;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248} sctp_globals;
249
250#define sctp_rto_initial (sctp_globals.rto_initial)
251#define sctp_rto_min (sctp_globals.rto_min)
252#define sctp_rto_max (sctp_globals.rto_max)
253#define sctp_rto_alpha (sctp_globals.rto_alpha)
254#define sctp_rto_beta (sctp_globals.rto_beta)
255#define sctp_max_burst (sctp_globals.max_burst)
256#define sctp_valid_cookie_life (sctp_globals.valid_cookie_life)
257#define sctp_cookie_preserve_enable (sctp_globals.cookie_preserve_enable)
258#define sctp_max_retrans_association (sctp_globals.max_retrans_association)
Neil Horman4eb701d2005-04-28 12:02:04 -0700259#define sctp_sndbuf_policy (sctp_globals.sndbuf_policy)
Neil Horman049b3ff2005-11-11 16:08:24 -0800260#define sctp_rcvbuf_policy (sctp_globals.rcvbuf_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#define sctp_max_retrans_path (sctp_globals.max_retrans_path)
262#define sctp_max_retrans_init (sctp_globals.max_retrans_init)
Vlad Yasevich2f85a422005-06-28 13:24:23 -0700263#define sctp_sack_timeout (sctp_globals.sack_timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264#define sctp_hb_interval (sctp_globals.hb_interval)
265#define sctp_max_instreams (sctp_globals.max_instreams)
266#define sctp_max_outstreams (sctp_globals.max_outstreams)
267#define sctp_address_families (sctp_globals.address_families)
268#define sctp_ep_hashsize (sctp_globals.ep_hashsize)
269#define sctp_ep_hashtable (sctp_globals.ep_hashtable)
270#define sctp_assoc_hashsize (sctp_globals.assoc_hashsize)
271#define sctp_assoc_hashtable (sctp_globals.assoc_hashtable)
272#define sctp_port_hashsize (sctp_globals.port_hashsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#define sctp_port_hashtable (sctp_globals.port_hashtable)
274#define sctp_local_addr_list (sctp_globals.local_addr_list)
Vlad Yasevich29303542007-09-16 16:02:12 -0700275#define sctp_local_addr_lock (sctp_globals.addr_list_lock)
Michio Honda9f7d6532011-04-26 19:32:51 +0900276#define sctp_auto_asconf_splist (sctp_globals.auto_asconf_splist)
277#define sctp_addr_waitq (sctp_globals.addr_waitq)
278#define sctp_addr_wq_timer (sctp_globals.addr_wq_timer)
279#define sctp_addr_wq_lock (sctp_globals.addr_wq_lock)
280#define sctp_default_auto_asconf (sctp_globals.default_auto_asconf)
Bhaskar Dutta72388432009-09-03 17:25:47 +0530281#define sctp_scope_policy (sctp_globals.ipv4_scope_policy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define sctp_addip_enable (sctp_globals.addip_enable)
Vlad Yasevich73d9c4f2007-10-24 17:24:26 -0400283#define sctp_addip_noauth (sctp_globals.addip_noauth_enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#define sctp_prsctp_enable (sctp_globals.prsctp_enable)
Vlad Yasevich1f485642007-10-09 01:15:59 -0700285#define sctp_auth_enable (sctp_globals.auth_enable)
Lucas Nussbaum06e86802009-02-13 08:33:41 +0000286#define sctp_checksum_disable (sctp_globals.checksum_disable)
Vlad Yasevich90f2f532009-11-23 15:53:57 -0500287#define sctp_rwnd_upd_shift (sctp_globals.rwnd_update_shift)
Xi Wang2692ba62011-12-16 12:44:15 +0000288#define sctp_max_autoclose (sctp_globals.max_autoclose)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290/* SCTP Socket type: UDP or TCP style. */
291typedef enum {
292 SCTP_SOCKET_UDP = 0,
293 SCTP_SOCKET_UDP_HIGH_BANDWIDTH,
294 SCTP_SOCKET_TCP
295} sctp_socket_type_t;
296
297/* Per socket SCTP information. */
298struct sctp_sock {
299 /* inet_sock has to be the first member of sctp_sock */
300 struct inet_sock inet;
301 /* What kind of a socket is this? */
302 sctp_socket_type_t type;
303
304 /* PF_ family specific functions. */
305 struct sctp_pf *pf;
306
307 /* Access to HMAC transform. */
Herbert Xu1b489e12006-08-20 15:07:14 +1000308 struct crypto_hash *hmac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* What is our base endpointer? */
311 struct sctp_endpoint *ep;
312
313 struct sctp_bind_bucket *bind_hash;
314 /* Various Socket Options. */
315 __u16 default_stream;
316 __u32 default_ppid;
317 __u16 default_flags;
318 __u32 default_context;
319 __u32 default_timetolive;
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -0800320 __u32 default_rcv_context;
Vlad Yasevich70331572007-03-23 11:34:36 -0700321 int max_burst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Frank Filz52ccb8e2005-12-22 11:36:46 -0800323 /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
324 * the destination address every heartbeat interval. This value
325 * will be inherited by all new associations.
326 */
327 __u32 hbinterval;
328
329 /* This is the max_retrans value for new associations. */
330 __u16 pathmaxrxt;
331
332 /* The initial Path MTU to use for new associations. */
333 __u32 pathmtu;
334
335 /* The default SACK delay timeout for new associations. */
336 __u32 sackdelay;
Wei Yongjund364d922008-05-09 15:13:26 -0700337 __u32 sackfreq;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800338
Joe Perchesf4ab2f722007-12-20 13:56:32 -0800339 /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
Frank Filz52ccb8e2005-12-22 11:36:46 -0800340 __u32 param_flags;
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct sctp_initmsg initmsg;
343 struct sctp_rtoinfo rtoinfo;
344 struct sctp_paddrparams paddrparam;
345 struct sctp_event_subscribe subscribe;
346 struct sctp_assocparams assocparams;
347 int user_frag;
348 __u32 autoclose;
349 __u8 nodelay;
350 __u8 disable_fragments;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 __u8 v4mapped;
Vlad Yasevichb6e13312007-04-20 12:23:15 -0700352 __u8 frag_interleave;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800353 __u32 adaptation_ind;
Vlad Yasevichd49d91d2007-03-23 11:32:00 -0700354 __u32 pd_point;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Vlad Yasevichb6e13312007-04-20 12:23:15 -0700356 atomic_t pd_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 /* Receive to here while partial delivery is in effect. */
358 struct sk_buff_head pd_lobby;
José Adolfo Galdámez9cc712e2015-10-21 21:52:13 -0600359
360 /* These must be the last fields, as they will skipped on copies,
361 * like on accept and peeloff operations
362 */
Michio Honda9f7d6532011-04-26 19:32:51 +0900363 struct list_head auto_asconf_list;
364 int do_auto_asconf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365};
366
367static inline struct sctp_sock *sctp_sk(const struct sock *sk)
368{
369 return (struct sctp_sock *)sk;
370}
371
372static inline struct sock *sctp_opt2sk(const struct sctp_sock *sp)
373{
374 return (struct sock *)sp;
375}
376
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000377#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378struct sctp6_sock {
379 struct sctp_sock sctp;
380 struct ipv6_pinfo inet6;
381};
382#endif /* CONFIG_IPV6 */
383
384
385/* This is our APPLICATION-SPECIFIC state cookie.
386 * THIS IS NOT DICTATED BY THE SPECIFICATION.
387 */
388/* These are the parts of an association which we send in the cookie.
389 * Most of these are straight out of:
390 * RFC2960 12.2 Parameters necessary per association (i.e. the TCB)
391 *
392 */
393
394struct sctp_cookie {
395
396 /* My : Tag expected in every inbound packet and sent
397 * Verification: in the INIT or INIT ACK chunk.
398 * Tag :
399 */
400 __u32 my_vtag;
401
402 /* Peer's : Tag expected in every outbound packet except
403 * Verification: in the INIT chunk.
404 * Tag :
405 */
406 __u32 peer_vtag;
407
408 /* The rest of these are not from the spec, but really need to
409 * be in the cookie.
410 */
411
412 /* My Tie Tag : Assist in discovering a restarting association. */
413 __u32 my_ttag;
414
415 /* Peer's Tie Tag: Assist in discovering a restarting association. */
416 __u32 peer_ttag;
417
418 /* When does this cookie expire? */
419 struct timeval expiration;
420
421 /* Number of inbound/outbound streams which are set
422 * and negotiated during the INIT process.
423 */
424 __u16 sinit_num_ostreams;
425 __u16 sinit_max_instreams;
426
427 /* This is the first sequence number I used. */
428 __u32 initial_tsn;
429
430 /* This holds the originating address of the INIT packet. */
431 union sctp_addr peer_addr;
432
433 /* IG Section 2.35.3
434 * Include the source port of the INIT-ACK
435 */
436 __u16 my_port;
437
438 __u8 prsctp_capable;
439
440 /* Padding for future use */
441 __u8 padding;
442
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800443 __u32 adaptation_ind;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Vlad Yasevich1f485642007-10-09 01:15:59 -0700445 __u8 auth_random[sizeof(sctp_paramhdr_t) + SCTP_AUTH_RANDOM_LENGTH];
Wei Yongjun028dba02011-03-31 23:38:54 +0000446 __u8 auth_hmacs[SCTP_AUTH_NUM_HMACS * sizeof(__u16) + 2];
Vlad Yasevich1f485642007-10-09 01:15:59 -0700447 __u8 auth_chunks[sizeof(sctp_paramhdr_t) + SCTP_AUTH_MAX_CHUNKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /* This is a shim for my peer's INIT packet, followed by
450 * a copy of the raw address list of the association.
451 * The length of the raw address list is saved in the
452 * raw_addr_list_len field, which will be used at the time when
453 * the association TCB is re-constructed from the cookie.
454 */
455 __u32 raw_addr_list_len;
456 struct sctp_init_chunk peer_init[0];
457};
458
459
460/* The format of our cookie that we send to our peer. */
461struct sctp_signed_cookie {
462 __u8 signature[SCTP_SECRET_SIZE];
Vlad Yasevich9834a2b2006-01-17 11:52:12 -0800463 __u32 __pad; /* force sctp_cookie alignment to 64 bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 struct sctp_cookie c;
Eric Dumazetbc105022010-06-03 03:21:52 -0700465} __packed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467/* This is another convenience type to allocate memory for address
468 * params for the maximum size and pass such structures around
469 * internally.
470 */
471union sctp_addr_param {
Wei Yongjun6f4c6182007-09-19 17:19:52 +0800472 struct sctp_paramhdr p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 struct sctp_ipv4addr_param v4;
474 struct sctp_ipv6addr_param v6;
475};
476
477/* A convenience type to allow walking through the various
478 * parameters and avoid casting all over the place.
479 */
480union sctp_params {
481 void *v;
482 struct sctp_paramhdr *p;
483 struct sctp_cookie_preserve_param *life;
484 struct sctp_hostname_param *dns;
485 struct sctp_cookie_param *cookie;
486 struct sctp_supported_addrs_param *sat;
487 struct sctp_ipv4addr_param *v4;
488 struct sctp_ipv6addr_param *v6;
489 union sctp_addr_param *addr;
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -0800490 struct sctp_adaptation_ind_param *aind;
Vlad Yasevich131a47e2007-09-16 15:53:56 -0700491 struct sctp_supported_ext_param *ext;
Vlad Yasevich1f485642007-10-09 01:15:59 -0700492 struct sctp_random_param *random;
493 struct sctp_chunks_param *chunks;
494 struct sctp_hmac_algo_param *hmac_algo;
Vlad Yasevichd6de3092007-12-20 14:10:00 -0800495 struct sctp_addip_param *addip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496};
497
498/* RFC 2960. Section 3.3.5 Heartbeat.
499 * Heartbeat Information: variable length
500 * The Sender-specific Heartbeat Info field should normally include
501 * information about the sender's current time when this HEARTBEAT
502 * chunk is sent and the destination transport address to which this
503 * HEARTBEAT is sent (see Section 8.3).
504 */
505typedef struct sctp_sender_hb_info {
506 struct sctp_paramhdr param_hdr;
507 union sctp_addr daddr;
508 unsigned long sent_at;
Sridhar Samudralaad8fec12006-07-21 14:48:50 -0700509 __u64 hb_nonce;
Eric Dumazetbc105022010-06-03 03:21:52 -0700510} __packed sctp_sender_hb_info_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
512/*
513 * RFC 2960 1.3.2 Sequenced Delivery within Streams
514 *
515 * The term "stream" is used in SCTP to refer to a sequence of user
516 * messages that are to be delivered to the upper-layer protocol in
517 * order with respect to other messages within the same stream. This is
518 * in contrast to its usage in TCP, where it refers to a sequence of
519 * bytes (in this document a byte is assumed to be eight bits).
520 * ...
521 *
522 * This is the structure we use to track both our outbound and inbound
523 * SSN, or Stream Sequence Numbers.
524 */
525
526struct sctp_stream {
527 __u16 *ssn;
528 unsigned int len;
529};
530
531struct sctp_ssnmap {
532 struct sctp_stream in;
533 struct sctp_stream out;
534 int malloced;
535};
536
Alexey Dobriyan3182cd82005-07-11 20:57:47 -0700537struct sctp_ssnmap *sctp_ssnmap_new(__u16 in, __u16 out,
Al Virodd0fc662005-10-07 07:46:04 +0100538 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539void sctp_ssnmap_free(struct sctp_ssnmap *map);
540void sctp_ssnmap_clear(struct sctp_ssnmap *map);
541
542/* What is the current SSN number for this stream? */
543static inline __u16 sctp_ssn_peek(struct sctp_stream *stream, __u16 id)
544{
545 return stream->ssn[id];
546}
547
548/* Return the next SSN number for this stream. */
549static inline __u16 sctp_ssn_next(struct sctp_stream *stream, __u16 id)
550{
551 return stream->ssn[id]++;
552}
553
554/* Skip over this ssn and all below. */
555static inline void sctp_ssn_skip(struct sctp_stream *stream, __u16 id,
556 __u16 ssn)
557{
558 stream->ssn[id] = ssn+1;
559}
560
561/*
562 * Pointers to address related SCTP functions.
563 * (i.e. things that depend on the address family.)
564 */
565struct sctp_af {
566 int (*sctp_xmit) (struct sk_buff *skb,
Herbert Xuf8803742008-08-03 21:15:08 -0700567 struct sctp_transport *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int (*setsockopt) (struct sock *sk,
569 int level,
570 int optname,
571 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -0700572 unsigned int optlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int (*getsockopt) (struct sock *sk,
574 int level,
575 int optname,
576 char __user *optval,
577 int __user *optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800578 int (*compat_setsockopt) (struct sock *sk,
579 int level,
580 int optname,
581 char __user *optval,
David S. Millerb7058842009-09-30 16:12:20 -0700582 unsigned int optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800583 int (*compat_getsockopt) (struct sock *sk,
584 int level,
585 int optname,
586 char __user *optval,
587 int __user *optlen);
Vlad Yasevichda0420b2011-04-26 21:54:17 +0000588 void (*get_dst) (struct sctp_transport *t,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000589 union sctp_addr *saddr,
590 struct flowi *fl,
591 struct sock *sk);
YOSHIFUJI Hideakie5117102008-05-29 19:55:05 +0900592 void (*get_saddr) (struct sctp_sock *sk,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000593 struct sctp_transport *t,
Vlad Yasevich9914ae32011-04-26 21:51:31 +0000594 struct flowi *fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 void (*copy_addrlist) (struct list_head *,
596 struct net_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 int (*cmp_addr) (const union sctp_addr *addr1,
598 const union sctp_addr *addr2);
599 void (*addr_copy) (union sctp_addr *dst,
600 union sctp_addr *src);
601 void (*from_skb) (union sctp_addr *,
602 struct sk_buff *skb,
603 int saddr);
604 void (*from_sk) (union sctp_addr *,
605 struct sock *sk);
606 void (*to_sk_saddr) (union sctp_addr *,
607 struct sock *sk);
608 void (*to_sk_daddr) (union sctp_addr *,
609 struct sock *sk);
610 void (*from_addr_param) (union sctp_addr *,
611 union sctp_addr_param *,
Al Virodd86d132006-11-20 17:11:13 -0800612 __be16 port, int iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 int (*to_addr_param) (const union sctp_addr *,
614 union sctp_addr_param *);
615 int (*addr_valid) (union sctp_addr *,
Vlad Yasevich5636bef2006-06-17 22:55:35 -0700616 struct sctp_sock *,
617 const struct sk_buff *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 sctp_scope_t (*scope) (union sctp_addr *);
Al Viro6fbfa9f2006-11-20 17:24:53 -0800619 void (*inaddr_any) (union sctp_addr *, __be16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 int (*is_any) (const union sctp_addr *);
621 int (*available) (union sctp_addr *,
622 struct sctp_sock *);
623 int (*skb_iif) (const struct sk_buff *sk);
624 int (*is_ce) (const struct sk_buff *sk);
625 void (*seq_dump_addr)(struct seq_file *seq,
626 union sctp_addr *addr);
Vlad Yasevichb9031d92008-06-04 12:40:15 -0700627 void (*ecn_capable)(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 __u16 net_header_len;
629 int sockaddr_len;
630 sa_family_t sa_family;
631 struct list_head list;
632};
633
634struct sctp_af *sctp_get_af_specific(sa_family_t);
635int sctp_register_af(struct sctp_af *);
636
637/* Protocol family functions. */
638struct sctp_pf {
639 void (*event_msgname)(struct sctp_ulpevent *, char *, int *);
640 void (*skb_msgname) (struct sk_buff *, char *, int *);
641 int (*af_supported) (sa_family_t, struct sctp_sock *);
642 int (*cmp_addr) (const union sctp_addr *,
643 const union sctp_addr *,
644 struct sctp_sock *);
645 int (*bind_verify) (struct sctp_sock *, union sctp_addr *);
646 int (*send_verify) (struct sctp_sock *, union sctp_addr *);
Al Viro3dbe8652006-11-20 17:25:49 -0800647 int (*supported_addrs)(const struct sctp_sock *, __be16 *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 struct sock *(*create_accept_sk) (struct sock *sk,
649 struct sctp_association *asoc);
650 void (*addr_v4map) (struct sctp_sock *, union sctp_addr *);
651 struct sctp_af *af;
652};
653
654
655/* Structure to track chunk fragments that have been acked, but peer
656 * fragments of the same message have not.
657 */
658struct sctp_datamsg {
659 /* Chunks waiting to be submitted to lower layer. */
660 struct list_head chunks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /* Reference counting. */
662 atomic_t refcnt;
663 /* When is this message no longer interesting to the peer? */
664 unsigned long expires_at;
665 /* Did the messenge fail to send? */
666 int send_error;
Vlad Yasevich0e3aef82010-04-30 22:41:10 -0400667 u8 send_failed:1,
668 can_abandon:1, /* can chunks from this message can be abandoned. */
669 can_delay; /* should this message be Nagle delayed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670};
671
672struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *,
673 struct sctp_sndrcvinfo *,
674 struct msghdr *, int len);
Vlad Yasevich9c5c62b2009-08-10 13:51:03 -0400675void sctp_datamsg_free(struct sctp_datamsg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676void sctp_datamsg_put(struct sctp_datamsg *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677void sctp_chunk_fail(struct sctp_chunk *, int error);
678int sctp_chunk_abandoned(struct sctp_chunk *);
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/* RFC2960 1.4 Key Terms
681 *
682 * o Chunk: A unit of information within an SCTP packet, consisting of
683 * a chunk header and chunk-specific content.
684 *
685 * As a matter of convenience, we remember the SCTP common header for
686 * each chunk as well as a few other header pointers...
687 */
688struct sctp_chunk {
David S. Miller79af02c2005-07-08 21:47:49 -0700689 struct list_head list;
690
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 atomic_t refcnt;
692
693 /* This is our link to the per-transport transmitted list. */
694 struct list_head transmitted_list;
695
696 /* This field is used by chunks that hold fragmented data.
697 * For the first fragment this is the list that holds the rest of
698 * fragments. For the remaining fragments, this is the link to the
699 * frag_list maintained in the first fragment.
700 */
701 struct list_head frag_list;
702
703 /* This points to the sk_buff containing the actual data. */
704 struct sk_buff *skb;
705
706 /* These are the SCTP headers by reverse order in a packet.
707 * Note that some of these may happen more than once. In that
708 * case, we point at the "current" one, whatever that means
709 * for that level of header.
710 */
711
712 /* We point this at the FIRST TLV parameter to chunk_hdr. */
713 union sctp_params param_hdr;
714 union {
715 __u8 *v;
716 struct sctp_datahdr *data_hdr;
717 struct sctp_inithdr *init_hdr;
718 struct sctp_sackhdr *sack_hdr;
719 struct sctp_heartbeathdr *hb_hdr;
720 struct sctp_sender_hb_info *hbs_hdr;
721 struct sctp_shutdownhdr *shutdown_hdr;
722 struct sctp_signed_cookie *cookie_hdr;
723 struct sctp_ecnehdr *ecne_hdr;
724 struct sctp_cwrhdr *ecn_cwr_hdr;
725 struct sctp_errhdr *err_hdr;
726 struct sctp_addiphdr *addip_hdr;
727 struct sctp_fwdtsn_hdr *fwdtsn_hdr;
Vlad Yasevich1f485642007-10-09 01:15:59 -0700728 struct sctp_authhdr *auth_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } subh;
730
731 __u8 *chunk_end;
732
733 struct sctp_chunkhdr *chunk_hdr;
734 struct sctphdr *sctp_hdr;
735
736 /* This needs to be recoverable for SCTP_SEND_FAILED events. */
737 struct sctp_sndrcvinfo sinfo;
738
739 /* Which association does this belong to? */
740 struct sctp_association *asoc;
741
742 /* What endpoint received this chunk? */
743 struct sctp_ep_common *rcvr;
744
745 /* We fill this in if we are calculating RTT. */
746 unsigned long sent_at;
747
748 /* What is the origin IP address for this chunk? */
749 union sctp_addr source;
750 /* Destination address for this chunk. */
751 union sctp_addr dest;
752
753 /* For outbound message, track all fragments for SEND_FAILED. */
754 struct sctp_datamsg *msg;
755
756 /* For an inbound chunk, this tells us where it came from.
757 * For an outbound chunk, it tells us where we'd like it to
758 * go. It is NULL if we have no preference.
759 */
760 struct sctp_transport *transport;
761
Vlad Yasevichbbd0d592007-10-03 17:51:34 -0700762 /* SCTP-AUTH: For the special case inbound processing of COOKIE-ECHO
763 * we need save a pointer to the AUTH chunk, since the SCTP-AUTH
764 * spec violates the principle premis that all chunks are processed
765 * in order.
766 */
767 struct sk_buff *auth_chunk;
768
Neil Hormanc226ef92008-07-25 12:44:09 -0400769#define SCTP_CAN_FRTX 0x0
770#define SCTP_NEED_FRTX 0x1
771#define SCTP_DONT_FRTX 0x2
772 __u16 rtt_in_progress:1, /* This chunk used for RTT calc? */
Neil Hormanc226ef92008-07-25 12:44:09 -0400773 has_tsn:1, /* Does this chunk have a TSN yet? */
774 has_ssn:1, /* Does this chunk have a SSN yet? */
775 singleton:1, /* Only chunk in the packet? */
776 end_of_packet:1, /* Last chunk in the packet? */
777 ecn_ce_done:1, /* Have we processed the ECN CE bit? */
778 pdiscard:1, /* Discard the whole packet now? */
779 tsn_gap_acked:1, /* Is this chunk acked by a GAP ACK? */
780 data_accepted:1, /* At least 1 chunk accepted */
781 auth:1, /* IN: was auth'ed | OUT: needs auth */
782 has_asconf:1, /* IN: have seen an asconf before */
783 tsn_missing_report:2, /* Data chunk missing counter. */
784 fast_retransmit:2; /* Is this chunk fast retransmitted? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785};
786
787void sctp_chunk_hold(struct sctp_chunk *);
788void sctp_chunk_put(struct sctp_chunk *);
789int sctp_user_addto_chunk(struct sctp_chunk *chunk, int off, int len,
790 struct iovec *data);
791void sctp_chunk_free(struct sctp_chunk *);
792void *sctp_addto_chunk(struct sctp_chunk *, int len, const void *data);
Neil Horman5fa782c2010-04-28 10:30:59 +0000793void *sctp_addto_chunk_fixed(struct sctp_chunk *, int len, const void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794struct sctp_chunk *sctp_chunkify(struct sk_buff *,
795 const struct sctp_association *,
796 struct sock *);
797void sctp_init_addrs(struct sctp_chunk *, union sctp_addr *,
798 union sctp_addr *);
799const union sctp_addr *sctp_source(const struct sctp_chunk *chunk);
800
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800801enum {
802 SCTP_ADDR_NEW, /* new address added to assoc/ep */
803 SCTP_ADDR_SRC, /* address can be used as source */
804 SCTP_ADDR_DEL, /* address about to be deleted */
805};
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/* This is a structure for holding either an IPv6 or an IPv4 address. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808struct sctp_sockaddr_entry {
809 struct list_head list;
Vlad Yasevich29303542007-09-16 16:02:12 -0700810 struct rcu_head rcu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 union sctp_addr a;
Vlad Yasevichf57d96b2007-12-20 14:12:24 -0800812 __u8 state;
Vlad Yasevich29303542007-09-16 16:02:12 -0700813 __u8 valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814};
815
Michio Honda9f7d6532011-04-26 19:32:51 +0900816#define SCTP_ADDRESS_TICK_DELAY 500
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818typedef struct sctp_chunk *(sctp_packet_phandler_t)(struct sctp_association *);
819
820/* This structure holds lists of chunks as we are assembling for
821 * transmission.
822 */
823struct sctp_packet {
824 /* These are the SCTP header values (host order) for the packet. */
825 __u16 source_port;
826 __u16 destination_port;
827 __u32 vtag;
828
829 /* This contains the payload chunks. */
David S. Miller79af02c2005-07-08 21:47:49 -0700830 struct list_head chunk_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* This is the overhead of the sctp and ip headers. */
833 size_t overhead;
834 /* This is the total size of all chunks INCLUDING padding. */
835 size_t size;
836
837 /* The packet is destined for this transport address.
838 * The function we finally use to pass down to the next lower
839 * layer lives in the transport structure.
840 */
841 struct sctp_transport *transport;
842
Vlad Yasevich1f485642007-10-09 01:15:59 -0700843 /* pointer to the auth chunk for this packet */
844 struct sctp_chunk *auth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Vlad Yasevicha803c942009-09-04 18:21:01 -0400846 u8 has_cookie_echo:1, /* This packet contains a COOKIE-ECHO chunk. */
847 has_sack:1, /* This packet contains a SACK chunk. */
848 has_auth:1, /* This packet contains an AUTH chunk */
849 has_data:1, /* This packet contains at least 1 DATA chunk */
850 ipfragok:1, /* So let ip fragment this packet */
851 malloced:1; /* Is it malloced? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852};
853
854struct sctp_packet *sctp_packet_init(struct sctp_packet *,
855 struct sctp_transport *,
856 __u16 sport, __u16 dport);
857struct sctp_packet *sctp_packet_config(struct sctp_packet *, __u32 vtag, int);
858sctp_xmit_t sctp_packet_transmit_chunk(struct sctp_packet *,
Vlad Yasevich2e3216c2008-06-19 16:08:18 -0700859 struct sctp_chunk *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860sctp_xmit_t sctp_packet_append_chunk(struct sctp_packet *,
861 struct sctp_chunk *);
862int sctp_packet_transmit(struct sctp_packet *);
863void sctp_packet_free(struct sctp_packet *);
864
865static inline int sctp_packet_empty(struct sctp_packet *packet)
866{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000867 return packet->size == packet->overhead;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
869
870/* This represents a remote transport address.
871 * For local transport addresses, we just use union sctp_addr.
872 *
873 * RFC2960 Section 1.4 Key Terms
874 *
875 * o Transport address: A Transport Address is traditionally defined
876 * by Network Layer address, Transport Layer protocol and Transport
877 * Layer port number. In the case of SCTP running over IP, a
878 * transport address is defined by the combination of an IP address
879 * and an SCTP port number (where SCTP is the Transport protocol).
880 *
881 * RFC2960 Section 7.1 SCTP Differences from TCP Congestion control
882 *
883 * o The sender keeps a separate congestion control parameter set for
884 * each of the destination addresses it can send to (not each
885 * source-destination pair but for each destination). The parameters
886 * should decay if the address is not used for a long enough time
887 * period.
888 *
889 */
890struct sctp_transport {
891 /* A list of transports. */
892 struct list_head transports;
893
894 /* Reference counting. */
895 atomic_t refcnt;
Dan Carpenterff937932010-05-26 00:40:11 -0700896 __u32 dead:1,
Vlad Yasevichc0058a32010-04-30 22:41:09 -0400897 /* RTO-Pending : A flag used to track if one of the DATA
898 * chunks sent to this address is currently being
899 * used to compute a RTT. If this flag is 0,
900 * the next DATA chunk sent to this destination
901 * should be used to compute a RTT and this flag
902 * should be set. Every time the RTT
903 * calculation completes (i.e. the DATA chunk
904 * is SACK'd) clear this flag.
905 */
906 rto_pending:1,
907
908 /*
909 * hb_sent : a flag that signals that we have a pending
910 * heartbeat.
911 */
912 hb_sent:1,
913
Vlad Yasevichc0058a32010-04-30 22:41:09 -0400914 /* Is the Path MTU update pending on this tranport */
915 pmtu_pending:1,
916
917 /* Is this structure kfree()able? */
918 malloced:1;
919
David S. Miller8663c932011-05-06 16:32:47 -0700920 struct flowi fl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* This is the peer's IP address and port. */
923 union sctp_addr ipaddr;
924
925 /* These are the functions we call to handle LLP stuff. */
926 struct sctp_af *af_specific;
927
928 /* Which association do we belong to? */
929 struct sctp_association *asoc;
930
931 /* RFC2960
932 *
933 * 12.3 Per Transport Address Data
934 *
935 * For each destination transport address in the peer's
936 * address list derived from the INIT or INIT ACK chunk, a
937 * number of data elements needs to be maintained including:
938 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /* RTO : The current retransmission timeout value. */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800940 unsigned long rto;
Vlad Yasevichb6157d82007-10-24 15:59:16 -0400941
942 __u32 rtt; /* This is the most recent RTT. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 /* RTTVAR : The current RTT variation. */
945 __u32 rttvar;
946
947 /* SRTT : The current smoothed round trip time. */
948 __u32 srtt;
949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 /*
951 * These are the congestion stats.
952 */
953 /* cwnd : The current congestion window. */
954 __u32 cwnd; /* This is the actual cwnd. */
955
956 /* ssthresh : The current slow start threshold value. */
957 __u32 ssthresh;
958
959 /* partial : The tracking method for increase of cwnd when in
960 * bytes acked : congestion avoidance mode (see Section 6.2.2)
961 */
962 __u32 partial_bytes_acked;
963
964 /* Data that has been sent, but not acknowledged. */
965 __u32 flight_size;
966
Vlad Yasevich46d5a802009-11-23 15:54:00 -0500967 __u32 burst_limited; /* Holds old cwnd when max.burst is applied */
968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 /* Destination */
970 struct dst_entry *dst;
971 /* Source address. */
972 union sctp_addr saddr;
973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
975 * the destination address every heartbeat interval.
976 */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800977 unsigned long hbinterval;
Frank Filz52ccb8e2005-12-22 11:36:46 -0800978
979 /* SACK delay timeout */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800980 unsigned long sackdelay;
Wei Yongjund364d922008-05-09 15:13:26 -0700981 __u32 sackfreq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983 /* When was the last time (in jiffies) that we heard from this
984 * transport? We use this to pick new active and retran paths.
985 */
986 unsigned long last_time_heard;
987
988 /* Last time(in jiffies) when cwnd is reduced due to the congestion
989 * indication based on ECNE chunk.
990 */
991 unsigned long last_time_ecne_reduced;
992
Vlad Yasevich8116ffa2006-01-17 11:55:17 -0800993 /* This is the max_retrans value for the transport and will
994 * be initialized from the assocs value. This can be changed
995 * using SCTP_SET_PEER_ADDR_PARAMS socket option.
996 */
997 __u16 pathmaxrxt;
998
999 /* PMTU : The current known path MTU. */
1000 __u32 pathmtu;
1001
Joe Perchesf4ab2f722007-12-20 13:56:32 -08001002 /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001003 __u32 param_flags;
1004
Frank Filz3f7a87d2005-06-20 13:14:57 -07001005 /* The number of times INIT has been sent on this transport. */
1006 int init_sent_count;
1007
1008 /* state : The current state of this destination,
André Goddard Rosaaf901ca2009-11-14 13:09:05 -02001009 * : i.e. SCTP_ACTIVE, SCTP_INACTIVE, SCTP_UNKNOWN.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Frank Filz3f7a87d2005-06-20 13:14:57 -07001011 int state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* These are the error stats for this destination. */
1014
1015 /* Error count : The current error count for this destination. */
1016 unsigned short error_count;
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* Per : A timer used by each destination.
1019 * Destination :
1020 * Timer :
1021 *
1022 * [Everywhere else in the text this is called T3-rtx. -ed]
1023 */
1024 struct timer_list T3_rtx_timer;
1025
1026 /* Heartbeat timer is per destination. */
1027 struct timer_list hb_timer;
1028
Vlad Yasevich50b5d6a2010-05-06 00:56:07 -07001029 /* Timer to handle ICMP proto unreachable envets */
1030 struct timer_list proto_unreach_timer;
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /* Since we're using per-destination retransmission timers
1033 * (see above), we're also using per-destination "transmitted"
1034 * queues. This probably ought to be a private struct
1035 * accessible only within the outqueue, but it's not, yet.
1036 */
1037 struct list_head transmitted;
1038
1039 /* We build bundle-able packets for this transport here. */
1040 struct sctp_packet packet;
1041
1042 /* This is the list of transports that have chunks to send. */
1043 struct list_head send_ready;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 /* State information saved for SFR_CACC algorithm. The key
1046 * idea in SFR_CACC is to maintain state at the sender on a
1047 * per-destination basis when a changeover happens.
1048 * char changeover_active;
1049 * char cycling_changeover;
1050 * __u32 next_tsn_at_change;
1051 * char cacc_saw_newack;
1052 */
1053 struct {
1054 /* An unsigned integer, which stores the next TSN to be
1055 * used by the sender, at the moment of changeover.
1056 */
1057 __u32 next_tsn_at_change;
1058
1059 /* A flag which indicates the occurrence of a changeover */
1060 char changeover_active;
1061
1062 /* A flag which indicates whether the change of primary is
1063 * the first switch to this destination address during an
1064 * active switch.
1065 */
1066 char cycling_changeover;
1067
1068 /* A temporary flag, which is used during the processing of
1069 * a SACK to estimate the causative TSN(s)'s group.
1070 */
1071 char cacc_saw_newack;
1072 } cacc;
Sridhar Samudralaad8fec12006-07-21 14:48:50 -07001073
1074 /* 64-bit random number sent with heartbeat. */
1075 __u64 hb_nonce;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076};
1077
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001078struct sctp_transport *sctp_transport_new(const union sctp_addr *,
Al Virodd0fc662005-10-07 07:46:04 +01001079 gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080void sctp_transport_set_owner(struct sctp_transport *,
1081 struct sctp_association *);
1082void sctp_transport_route(struct sctp_transport *, union sctp_addr *,
1083 struct sctp_sock *);
Vlad Yasevich9914ae32011-04-26 21:51:31 +00001084void sctp_transport_pmtu(struct sctp_transport *, struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085void sctp_transport_free(struct sctp_transport *);
Vlad Yasevichae19c542010-04-30 22:41:09 -04001086void sctp_transport_reset_timers(struct sctp_transport *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087void sctp_transport_hold(struct sctp_transport *);
1088void sctp_transport_put(struct sctp_transport *);
1089void sctp_transport_update_rto(struct sctp_transport *, __u32);
1090void sctp_transport_raise_cwnd(struct sctp_transport *, __u32, __u32);
1091void sctp_transport_lower_cwnd(struct sctp_transport *, sctp_lower_cwnd_t);
Vlad Yasevich46d5a802009-11-23 15:54:00 -05001092void sctp_transport_burst_limited(struct sctp_transport *);
1093void sctp_transport_burst_reset(struct sctp_transport *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094unsigned long sctp_transport_timeout(struct sctp_transport *);
Vlad Yasevich749bf922007-03-19 17:02:30 -07001095void sctp_transport_reset(struct sctp_transport *);
Vlad Yasevichc910b472007-06-07 13:47:03 -04001096void sctp_transport_update_pmtu(struct sctp_transport *, u32);
Michio Hondaddc4bbe2011-06-17 11:03:23 +09001097void sctp_transport_immediate_rtx(struct sctp_transport *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099
1100/* This is the structure we use to queue packets as they come into
1101 * SCTP. We write packets to it and read chunks from it.
1102 */
1103struct sctp_inq {
1104 /* This is actually a queue of sctp_chunk each
1105 * containing a partially decoded packet.
1106 */
David S. Miller79af02c2005-07-08 21:47:49 -07001107 struct list_head in_chunk_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 /* This is the packet which is currently off the in queue and is
1109 * being worked on through the inbound chunk processing.
1110 */
1111 struct sctp_chunk *in_progress;
1112
1113 /* This is the delayed task to finish delivering inbound
1114 * messages.
1115 */
1116 struct work_struct immediate;
1117
1118 int malloced; /* Is this structure kfree()able? */
1119};
1120
1121void sctp_inq_init(struct sctp_inq *);
1122void sctp_inq_free(struct sctp_inq *);
1123void sctp_inq_push(struct sctp_inq *, struct sctp_chunk *packet);
1124struct sctp_chunk *sctp_inq_pop(struct sctp_inq *);
Vlad Yasevichbbd0d592007-10-03 17:51:34 -07001125struct sctp_chunkhdr *sctp_inq_peek(struct sctp_inq *);
David Howellsc4028952006-11-22 14:57:56 +00001126void sctp_inq_set_th_handler(struct sctp_inq *, work_func_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128/* This is the structure we use to hold outbound chunks. You push
1129 * chunks in and they automatically pop out the other end as bundled
1130 * packets (it calls (*output_handler)()).
1131 *
1132 * This structure covers sections 6.3, 6.4, 6.7, 6.8, 6.10, 7., 8.1,
1133 * and 8.2 of the v13 draft.
1134 *
1135 * It handles retransmissions. The connection to the timeout portion
1136 * of the state machine is through sctp_..._timeout() and timeout_handler.
1137 *
1138 * If you feed it SACKs, it will eat them.
1139 *
1140 * If you give it big chunks, it will fragment them.
1141 *
1142 * It assigns TSN's to data chunks. This happens at the last possible
1143 * instant before transmission.
1144 *
1145 * When free()'d, it empties itself out via output_handler().
1146 */
1147struct sctp_outq {
1148 struct sctp_association *asoc;
1149
1150 /* Data pending that has never been transmitted. */
David S. Miller79af02c2005-07-08 21:47:49 -07001151 struct list_head out_chunk_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 unsigned out_qlen; /* Total length of queued data chunks. */
1154
1155 /* Error of send failed, may used in SCTP_SEND_FAILED event. */
1156 unsigned error;
1157
1158 /* These are control chunks we want to send. */
David S. Miller79af02c2005-07-08 21:47:49 -07001159 struct list_head control_chunk_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 /* These are chunks that have been sacked but are above the
1162 * CTSN, or cumulative tsn ack point.
1163 */
1164 struct list_head sacked;
1165
1166 /* Put chunks on this list to schedule them for
1167 * retransmission.
1168 */
1169 struct list_head retransmit;
1170
1171 /* Put chunks on this list to save them for FWD TSN processing as
1172 * they were abandoned.
1173 */
1174 struct list_head abandoned;
1175
1176 /* How many unackd bytes do we have in-flight? */
1177 __u32 outstanding_bytes;
1178
Vlad Yasevich62aeaff2008-06-04 12:39:11 -07001179 /* Are we doing fast-rtx on this queue */
1180 char fast_rtx;
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /* Corked? */
1183 char cork;
1184
1185 /* Is this structure empty? */
1186 char empty;
1187
1188 /* Are we kfree()able? */
1189 char malloced;
1190};
1191
1192void sctp_outq_init(struct sctp_association *, struct sctp_outq *);
1193void sctp_outq_teardown(struct sctp_outq *);
1194void sctp_outq_free(struct sctp_outq*);
1195int sctp_outq_tail(struct sctp_outq *, struct sctp_chunk *chunk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196int sctp_outq_sack(struct sctp_outq *, struct sctp_sackhdr *);
1197int sctp_outq_is_empty(const struct sctp_outq *);
1198void sctp_outq_restart(struct sctp_outq *);
1199
1200void sctp_retransmit(struct sctp_outq *, struct sctp_transport *,
1201 sctp_retransmit_reason_t);
1202void sctp_retransmit_mark(struct sctp_outq *, struct sctp_transport *, __u8);
1203int sctp_outq_uncork(struct sctp_outq *);
1204/* Uncork and flush an outqueue. */
1205static inline void sctp_outq_cork(struct sctp_outq *q)
1206{
1207 q->cork = 1;
1208}
1209
1210/* These bind address data fields common between endpoints and associations */
1211struct sctp_bind_addr {
1212
1213 /* RFC 2960 12.1 Parameters necessary for the SCTP instance
1214 *
1215 * SCTP Port: The local SCTP port number the endpoint is
1216 * bound to.
1217 */
1218 __u16 port;
1219
1220 /* RFC 2960 12.1 Parameters necessary for the SCTP instance
1221 *
1222 * Address List: The list of IP addresses that this instance
1223 * has bound. This information is passed to one's
1224 * peer(s) in INIT and INIT ACK chunks.
1225 */
1226 struct list_head address_list;
1227
1228 int malloced; /* Are we kfree()able? */
1229};
1230
1231void sctp_bind_addr_init(struct sctp_bind_addr *, __u16 port);
1232void sctp_bind_addr_free(struct sctp_bind_addr *);
1233int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
1234 const struct sctp_bind_addr *src,
Al Virodd0fc662005-10-07 07:46:04 +01001235 sctp_scope_t scope, gfp_t gfp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001236 int flags);
Vlad Yasevich8e71a112007-12-06 22:50:54 -08001237int sctp_bind_addr_dup(struct sctp_bind_addr *dest,
1238 const struct sctp_bind_addr *src,
1239 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240int sctp_add_bind_addr(struct sctp_bind_addr *, union sctp_addr *,
Vlad Yasevichf57d96b2007-12-20 14:12:24 -08001241 __u8 addr_state, gfp_t gfp);
Vlad Yasevich0ed90fb2007-10-24 16:10:00 -04001242int sctp_del_bind_addr(struct sctp_bind_addr *, union sctp_addr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243int sctp_bind_addr_match(struct sctp_bind_addr *, const union sctp_addr *,
1244 struct sctp_sock *);
Vlad Yasevich7dab83d2008-07-18 23:05:40 -07001245int sctp_bind_addr_conflict(struct sctp_bind_addr *, const union sctp_addr *,
1246 struct sctp_sock *, struct sctp_sock *);
Vlad Yasevich75205f42007-12-20 14:12:59 -08001247int sctp_bind_addr_state(const struct sctp_bind_addr *bp,
1248 const union sctp_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
1250 const union sctp_addr *addrs,
1251 int addrcnt,
1252 struct sctp_sock *opt);
1253union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07001254 int *addrs_len,
Al Virodd0fc662005-10-07 07:46:04 +01001255 gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw, int len,
Al Virodd0fc662005-10-07 07:46:04 +01001257 __u16 port, gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259sctp_scope_t sctp_scope(const union sctp_addr *);
1260int sctp_in_scope(const union sctp_addr *addr, const sctp_scope_t scope);
Vlad Yasevich52cae8f2008-08-18 10:34:34 -04001261int sctp_is_any(struct sock *sk, const union sctp_addr *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262int sctp_addr_is_valid(const union sctp_addr *addr);
Michio Honda9f7d6532011-04-26 19:32:51 +09001263int sctp_is_ep_boundall(struct sock *sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265
1266/* What type of endpoint? */
1267typedef enum {
1268 SCTP_EP_TYPE_SOCKET,
1269 SCTP_EP_TYPE_ASSOCIATION,
1270} sctp_endpoint_type_t;
1271
1272/*
1273 * A common base class to bridge the implmentation view of a
1274 * socket (usually listening) endpoint versus an association's
1275 * local endpoint.
1276 * This common structure is useful for several purposes:
1277 * 1) Common interface for lookup routines.
1278 * a) Subfunctions work for either endpoint or association
1279 * b) Single interface to lookup allows hiding the lookup lock rather
1280 * than acquiring it externally.
1281 * 2) Common interface for the inbound chunk handling/state machine.
1282 * 3) Common object handling routines for reference counting, etc.
1283 * 4) Disentangle association lookup from endpoint lookup, where we
1284 * do not have to find our endpoint to find our association.
1285 *
1286 */
1287
1288struct sctp_ep_common {
1289 /* Fields to help us manage our entries in the hash tables. */
Vlad Yasevichd970dbf2007-11-09 11:43:40 -05001290 struct hlist_node node;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 int hashent;
1292
1293 /* Runtime type information. What kind of endpoint is this? */
1294 sctp_endpoint_type_t type;
1295
1296 /* Some fields to help us manage this object.
1297 * refcnt - Reference count access to this object.
1298 * dead - Do not attempt to use this object.
1299 * malloced - Do we need to kfree this object?
1300 */
1301 atomic_t refcnt;
1302 char dead;
1303 char malloced;
1304
1305 /* What socket does this endpoint belong to? */
1306 struct sock *sk;
1307
1308 /* This is where we receive inbound chunks. */
1309 struct sctp_inq inqueue;
1310
1311 /* This substructure includes the defining parameters of the
1312 * endpoint:
1313 * bind_addr.port is our shared port number.
1314 * bind_addr.address_list is our set of local IP addresses.
1315 */
1316 struct sctp_bind_addr bind_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317};
1318
1319
1320/* RFC Section 1.4 Key Terms
1321 *
1322 * o SCTP endpoint: The logical sender/receiver of SCTP packets. On a
1323 * multi-homed host, an SCTP endpoint is represented to its peers as a
1324 * combination of a set of eligible destination transport addresses to
1325 * which SCTP packets can be sent and a set of eligible source
1326 * transport addresses from which SCTP packets can be received.
1327 * All transport addresses used by an SCTP endpoint must use the
1328 * same port number, but can use multiple IP addresses. A transport
1329 * address used by an SCTP endpoint must not be used by another
1330 * SCTP endpoint. In other words, a transport address is unique
1331 * to an SCTP endpoint.
1332 *
1333 * From an implementation perspective, each socket has one of these.
1334 * A TCP-style socket will have exactly one association on one of
1335 * these. An UDP-style socket will have multiple associations hanging
1336 * off one of these.
1337 */
1338
1339struct sctp_endpoint {
1340 /* Common substructure for endpoint and association. */
1341 struct sctp_ep_common base;
1342
1343 /* Associations: A list of current associations and mappings
1344 * to the data consumers for each association. This
1345 * may be in the form of a hash table or other
1346 * implementation dependent structure. The data
1347 * consumers may be process identification
1348 * information such as file descriptors, named pipe
1349 * pointer, or table pointers dependent on how SCTP
1350 * is implemented.
1351 */
1352 /* This is really a list of struct sctp_association entries. */
1353 struct list_head asocs;
1354
1355 /* Secret Key: A secret key used by this endpoint to compute
1356 * the MAC. This SHOULD be a cryptographic quality
1357 * random number with a sufficient length.
1358 * Discussion in [RFC1750] can be helpful in
1359 * selection of the key.
1360 */
1361 __u8 secret_key[SCTP_HOW_MANY_SECRETS][SCTP_SECRET_SIZE];
1362 int current_key;
1363 int last_key;
1364 int key_changed_at;
1365
Vlad Yasevich313e7b42006-01-17 11:55:57 -08001366 /* digest: This is a digest of the sctp cookie. This field is
1367 * only used on the receive path when we try to validate
1368 * that the cookie has not been tampered with. We put
1369 * this here so we pre-allocate this once and can re-use
1370 * on every receive.
1371 */
Vlad Yasevichb68dbca2006-11-09 16:29:57 -08001372 __u8 *digest;
Vlad Yasevich313e7b42006-01-17 11:55:57 -08001373
Neil Horman4eb701d2005-04-28 12:02:04 -07001374 /* sendbuf acct. policy. */
1375 __u32 sndbuf_policy;
Neil Horman049b3ff2005-11-11 16:08:24 -08001376
1377 /* rcvbuf acct. policy. */
1378 __u32 rcvbuf_policy;
Vlad Yasevich1f485642007-10-09 01:15:59 -07001379
1380 /* SCTP AUTH: array of the HMACs that will be allocated
1381 * we need this per association so that we don't serialize
1382 */
1383 struct crypto_hash **auth_hmacs;
1384
1385 /* SCTP-AUTH: hmacs for the endpoint encoded into parameter */
1386 struct sctp_hmac_algo_param *auth_hmacs_list;
1387
1388 /* SCTP-AUTH: chunks to authenticate encoded into parameter */
1389 struct sctp_chunks_param *auth_chunk_list;
1390
1391 /* SCTP-AUTH: endpoint shared keys */
1392 struct list_head endpoint_shared_keys;
1393 __u16 active_key_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394};
1395
1396/* Recover the outter endpoint structure. */
1397static inline struct sctp_endpoint *sctp_ep(struct sctp_ep_common *base)
1398{
1399 struct sctp_endpoint *ep;
1400
1401 ep = container_of(base, struct sctp_endpoint, base);
1402 return ep;
1403}
1404
1405/* These are function signatures for manipulating endpoints. */
Al Virodd0fc662005-10-07 07:46:04 +01001406struct sctp_endpoint *sctp_endpoint_new(struct sock *, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407void sctp_endpoint_free(struct sctp_endpoint *);
1408void sctp_endpoint_put(struct sctp_endpoint *);
1409void sctp_endpoint_hold(struct sctp_endpoint *);
1410void sctp_endpoint_add_asoc(struct sctp_endpoint *, struct sctp_association *);
1411struct sctp_association *sctp_endpoint_lookup_assoc(
1412 const struct sctp_endpoint *ep,
1413 const union sctp_addr *paddr,
1414 struct sctp_transport **);
1415int sctp_endpoint_is_peeled_off(struct sctp_endpoint *,
1416 const union sctp_addr *);
1417struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *,
1418 const union sctp_addr *);
1419int sctp_has_association(const union sctp_addr *laddr,
1420 const union sctp_addr *paddr);
1421
1422int sctp_verify_init(const struct sctp_association *asoc, sctp_cid_t,
1423 sctp_init_chunk_t *peer_init, struct sctp_chunk *chunk,
1424 struct sctp_chunk **err_chunk);
Wei Yongjunde6becd2011-04-19 21:30:51 +00001425int sctp_process_init(struct sctp_association *, struct sctp_chunk *chunk,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 const union sctp_addr *peer,
Al Virodd0fc662005-10-07 07:46:04 +01001427 sctp_init_chunk_t *init, gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428__u32 sctp_generate_tag(const struct sctp_endpoint *);
1429__u32 sctp_generate_tsn(const struct sctp_endpoint *);
1430
Al Viroe1857ea2006-11-20 17:25:32 -08001431struct sctp_inithdr_host {
1432 __u32 init_tag;
1433 __u32 a_rwnd;
1434 __u16 num_outbound_streams;
1435 __u16 num_inbound_streams;
1436 __u32 initial_tsn;
1437};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
1439/* RFC2960
1440 *
1441 * 12. Recommended Transmission Control Block (TCB) Parameters
1442 *
1443 * This section details a recommended set of parameters that should
1444 * be contained within the TCB for an implementation. This section is
1445 * for illustrative purposes and should not be deemed as requirements
1446 * on an implementation or as an exhaustive list of all parameters
1447 * inside an SCTP TCB. Each implementation may need its own additional
1448 * parameters for optimization.
1449 */
1450
1451
1452/* Here we have information about each individual association. */
1453struct sctp_association {
1454
1455 /* A base structure common to endpoint and association.
1456 * In this context, it represents the associations's view
1457 * of the local endpoint of the association.
1458 */
1459 struct sctp_ep_common base;
1460
1461 /* Associations on the same socket. */
1462 struct list_head asocs;
1463
1464 /* association id. */
1465 sctp_assoc_t assoc_id;
1466
1467 /* This is our parent endpoint. */
1468 struct sctp_endpoint *ep;
1469
1470 /* These are those association elements needed in the cookie. */
1471 struct sctp_cookie c;
1472
1473 /* This is all information about our peer. */
1474 struct {
1475 /* rwnd
1476 *
1477 * Peer Rwnd : Current calculated value of the peer's rwnd.
1478 */
1479 __u32 rwnd;
1480
1481 /* transport_addr_list
1482 *
1483 * Peer : A list of SCTP transport addresses that the
1484 * Transport : peer is bound to. This information is derived
1485 * Address : from the INIT or INIT ACK and is used to
1486 * List : associate an inbound packet with a given
1487 * : association. Normally this information is
1488 * : hashed or keyed for quick lookup and access
1489 * : of the TCB.
Frank Filz3f7a87d2005-06-20 13:14:57 -07001490 * : The list is also initialized with the list
1491 * : of addresses passed with the sctp_connectx()
1492 * : call.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 *
1494 * It is a list of SCTP_transport's.
1495 */
1496 struct list_head transport_addr_list;
1497
Frank Filz3f7a87d2005-06-20 13:14:57 -07001498 /* transport_count
1499 *
1500 * Peer : A count of the number of peer addresses
1501 * Transport : in the Peer Transport Address List.
1502 * Address :
1503 * Count :
1504 */
1505 __u16 transport_count;
1506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /* port
1508 * The transport layer port number.
1509 */
1510 __u16 port;
1511
1512 /* primary_path
1513 *
1514 * Primary : This is the current primary destination
1515 * Path : transport address of the peer endpoint. It
1516 * : may also specify a source transport address
1517 * : on this endpoint.
1518 *
1519 * All of these paths live on transport_addr_list.
1520 *
1521 * At the bakeoffs, we discovered that the intent of
1522 * primaryPath is that it only changes when the ULP
1523 * asks to have it changed. We add the activePath to
1524 * designate the connection we are currently using to
1525 * transmit new data and most control chunks.
1526 */
1527 struct sctp_transport *primary_path;
1528
1529 /* Cache the primary path address here, when we
1530 * need a an address for msg_name.
1531 */
1532 union sctp_addr primary_addr;
1533
1534 /* active_path
1535 * The path that we are currently using to
1536 * transmit new data and most control chunks.
1537 */
1538 struct sctp_transport *active_path;
1539
1540 /* retran_path
1541 *
1542 * RFC2960 6.4 Multi-homed SCTP Endpoints
1543 * ...
1544 * Furthermore, when its peer is multi-homed, an
1545 * endpoint SHOULD try to retransmit a chunk to an
1546 * active destination transport address that is
1547 * different from the last destination address to
1548 * which the DATA chunk was sent.
1549 */
1550 struct sctp_transport *retran_path;
1551
1552 /* Pointer to last transport I have sent on. */
1553 struct sctp_transport *last_sent_to;
1554
1555 /* This is the last transport I have received DATA on. */
1556 struct sctp_transport *last_data_from;
1557
1558 /*
1559 * Mapping An array of bits or bytes indicating which out of
1560 * Array order TSN's have been received (relative to the
1561 * Last Rcvd TSN). If no gaps exist, i.e. no out of
1562 * order packets have been received, this array
1563 * will be set to all zero. This structure may be
1564 * in the form of a circular buffer or bit array.
1565 *
1566 * Last Rcvd : This is the last TSN received in
1567 * TSN : sequence. This value is set initially by
1568 * : taking the peer's Initial TSN, received in
1569 * : the INIT or INIT ACK chunk, and subtracting
1570 * : one from it.
1571 *
1572 * Throughout most of the specification this is called the
1573 * "Cumulative TSN ACK Point". In this case, we
1574 * ignore the advice in 12.2 in favour of the term
1575 * used in the bulk of the text. This value is hidden
1576 * in tsn_map--we get it by calling sctp_tsnmap_get_ctsn().
1577 */
1578 struct sctp_tsnmap tsn_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
1580 /* Ack State : This flag indicates if the next received
1581 * : packet is to be responded to with a
1582 * : SACK. This is initializedto 0. When a packet
1583 * : is received it is incremented. If this value
1584 * : reaches 2 or more, a SACK is sent and the
1585 * : value is reset to 0. Note: This is used only
1586 * : when no DATA chunks are received out of
1587 * : order. When DATA chunks are out of order,
1588 * : SACK's are not delayed (see Section 6).
1589 */
1590 __u8 sack_needed; /* Do we need to sack the peer? */
Wei Yongjund364d922008-05-09 15:13:26 -07001591 __u32 sack_cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /* These are capabilities which our peer advertised. */
Wei Yongjun9237ccb2009-09-04 14:33:19 +08001594 __u8 ecn_capable:1, /* Can peer do ECN? */
1595 ipv4_address:1, /* Peer understands IPv4 addresses? */
1596 ipv6_address:1, /* Peer understands IPv6 addresses? */
1597 hostname_address:1, /* Peer understands DNS addresses? */
1598 asconf_capable:1, /* Does peer support ADDIP? */
1599 prsctp_capable:1, /* Can peer do PR-SCTP? */
1600 auth_capable:1; /* Is peer doing SCTP-AUTH? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Ivan Skytte Jorgensen0f3fffd2006-12-20 16:07:04 -08001602 __u32 adaptation_ind; /* Adaptation Code point. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
1604 /* This mask is used to disable sending the ASCONF chunk
1605 * with specified parameter to peer.
1606 */
Al Virodbc16db2006-11-20 17:01:42 -08001607 __be16 addip_disabled_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Al Viroe1857ea2006-11-20 17:25:32 -08001609 struct sctp_inithdr_host i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 int cookie_len;
1611 void *cookie;
1612
1613 /* ADDIP Section 4.2 Upon reception of an ASCONF Chunk.
1614 * C1) ... "Peer-Serial-Number'. This value MUST be initialized to the
1615 * Initial TSN Value minus 1
1616 */
1617 __u32 addip_serial;
Vlad Yasevich1f485642007-10-09 01:15:59 -07001618
1619 /* SCTP-AUTH: We need to know pears random number, hmac list
1620 * and authenticated chunk list. All that is part of the
1621 * cookie and these are just pointers to those locations
1622 */
1623 sctp_random_param_t *peer_random;
1624 sctp_chunks_param_t *peer_chunks;
1625 sctp_hmac_algo_param_t *peer_hmacs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 } peer;
1627
1628 /* State : A state variable indicating what state the
1629 * : association is in, i.e. COOKIE-WAIT,
1630 * : COOKIE-ECHOED, ESTABLISHED, SHUTDOWN-PENDING,
1631 * : SHUTDOWN-SENT, SHUTDOWN-RECEIVED, SHUTDOWN-ACK-SENT.
1632 *
1633 * Note: No "CLOSED" state is illustrated since if a
1634 * association is "CLOSED" its TCB SHOULD be removed.
1635 *
1636 * In this implementation we DO have a CLOSED
1637 * state which is used during initiation and shutdown.
1638 *
1639 * State takes values from SCTP_STATE_*.
1640 */
1641 sctp_state_t state;
1642
1643 /* The cookie life I award for any cookie. */
1644 struct timeval cookie_life;
1645
1646 /* Overall : The overall association error count.
1647 * Error Count : [Clear this any time I get something.]
1648 */
1649 int overall_error_count;
1650
1651 /* These are the association's initial, max, and min RTO values.
1652 * These values will be initialized by system defaults, but can
1653 * be modified via the SCTP_RTOINFO socket option.
1654 */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001655 unsigned long rto_initial;
1656 unsigned long rto_max;
1657 unsigned long rto_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 /* Maximum number of new data packets that can be sent in a burst. */
1660 int max_burst;
1661
1662 /* This is the max_retrans value for the association. This value will
1663 * be initialized initialized from system defaults, but can be
1664 * modified by the SCTP_ASSOCINFO socket option.
1665 */
1666 int max_retrans;
1667
1668 /* Maximum number of times the endpoint will retransmit INIT */
1669 __u16 max_init_attempts;
1670
1671 /* How many times have we resent an INIT? */
1672 __u16 init_retries;
1673
1674 /* The largest timeout or RTO value to use in attempting an INIT */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001675 unsigned long max_init_timeo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
Frank Filz52ccb8e2005-12-22 11:36:46 -08001677 /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
1678 * the destination address every heartbeat interval. This value
1679 * will be inherited by all new transports.
1680 */
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001681 unsigned long hbinterval;
Frank Filz52ccb8e2005-12-22 11:36:46 -08001682
1683 /* This is the max_retrans value for new transports in the
1684 * association.
1685 */
1686 __u16 pathmaxrxt;
1687
Vlad Yasevich8a479492007-06-07 14:21:05 -04001688 /* Flag that path mtu update is pending */
1689 __u8 pmtu_pending;
1690
Frank Filz52ccb8e2005-12-22 11:36:46 -08001691 /* Association : The smallest PMTU discovered for all of the
1692 * PMTU : peer's transport addresses.
1693 */
1694 __u32 pathmtu;
1695
Joe Perchesf4ab2f722007-12-20 13:56:32 -08001696 /* Flags controlling Heartbeat, SACK delay, and Path MTU Discovery. */
Frank Filz52ccb8e2005-12-22 11:36:46 -08001697 __u32 param_flags;
1698
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001699 /* SACK delay timeout */
1700 unsigned long sackdelay;
Wei Yongjund364d922008-05-09 15:13:26 -07001701 __u32 sackfreq;
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001702
1703
1704 unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
1706
1707 /* Transport to which SHUTDOWN chunk was last sent. */
1708 struct sctp_transport *shutdown_last_sent_to;
1709
Neil Horman58fbbed2008-02-29 11:40:56 -08001710 /* How many times have we resent a SHUTDOWN */
1711 int shutdown_retries;
1712
Frank Filz3f7a87d2005-06-20 13:14:57 -07001713 /* Transport to which INIT chunk was last sent. */
1714 struct sctp_transport *init_last_sent_to;
1715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 /* Next TSN : The next TSN number to be assigned to a new
1717 * : DATA chunk. This is sent in the INIT or INIT
1718 * : ACK chunk to the peer and incremented each
1719 * : time a DATA chunk is assigned a TSN
1720 * : (normally just prior to transmit or during
1721 * : fragmentation).
1722 */
1723 __u32 next_tsn;
1724
1725 /*
1726 * Last Rcvd : This is the last TSN received in sequence. This value
1727 * TSN : is set initially by taking the peer's Initial TSN,
1728 * : received in the INIT or INIT ACK chunk, and
1729 * : subtracting one from it.
1730 *
1731 * Most of RFC 2960 refers to this as the Cumulative TSN Ack Point.
1732 */
1733
1734 __u32 ctsn_ack_point;
1735
1736 /* PR-SCTP Advanced.Peer.Ack.Point */
1737 __u32 adv_peer_ack_point;
1738
1739 /* Highest TSN that is acknowledged by incoming SACKs. */
1740 __u32 highest_sacked;
1741
Vlad Yasevichcf9b4812010-04-30 22:41:10 -04001742 /* TSN marking the fast recovery exit point */
1743 __u32 fast_recovery_exit;
1744
1745 /* Flag to track the current fast recovery state */
1746 __u8 fast_recovery;
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /* The number of unacknowledged data chunks. Reported through
1749 * the SCTP_STATUS sockopt.
1750 */
1751 __u16 unack_data;
1752
Neil Horman58fbbed2008-02-29 11:40:56 -08001753 /* The total number of data chunks that we've had to retransmit
1754 * as the result of a T3 timer expiration
1755 */
1756 __u32 rtx_data_chunks;
1757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* This is the association's receive buffer space. This value is used
1759 * to set a_rwnd field in an INIT or a SACK chunk.
1760 */
1761 __u32 rwnd;
1762
1763 /* This is the last advertised value of rwnd over a SACK chunk. */
1764 __u32 a_rwnd;
1765
1766 /* Number of bytes by which the rwnd has slopped. The rwnd is allowed
1767 * to slop over a maximum of the association's frag_point.
1768 */
1769 __u32 rwnd_over;
1770
Vlad Yasevich4d3c46e2009-09-04 18:20:59 -04001771 /* Keeps treack of rwnd pressure. This happens when we have
1772 * a window, but not recevie buffer (i.e small packets). This one
1773 * is releases slowly (1 PMTU at a time ).
1774 */
1775 __u32 rwnd_press;
1776
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 /* This is the sndbuf size in use for the association.
1778 * This corresponds to the sndbuf size for the association,
1779 * as specified in the sk->sndbuf.
1780 */
1781 int sndbuf_used;
1782
Neil Horman049b3ff2005-11-11 16:08:24 -08001783 /* This is the amount of memory that this association has allocated
1784 * in the receive path at any given time.
1785 */
1786 atomic_t rmem_alloc;
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* This is the wait queue head for send requests waiting on
1789 * the association sndbuf space.
1790 */
1791 wait_queue_head_t wait;
1792
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /* The message size at which SCTP fragmentation will occur. */
1794 __u32 frag_point;
Vlad Yasevichf68b2e02009-09-04 18:21:00 -04001795 __u32 user_frag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796
Frank Filz3f7a87d2005-06-20 13:14:57 -07001797 /* Counter used to count INIT errors. */
1798 int init_err_counter;
1799
1800 /* Count the number of INIT cycles (for doubling timeout). */
1801 int init_cycle;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
1803 /* Default send parameters. */
1804 __u16 default_stream;
1805 __u16 default_flags;
1806 __u32 default_ppid;
1807 __u32 default_context;
1808 __u32 default_timetolive;
1809
Ivan Skytte Jorgensen6ab792f2006-12-13 16:34:22 -08001810 /* Default receive parameters */
1811 __u32 default_rcv_context;
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 /* This tracks outbound ssn for a given stream. */
1814 struct sctp_ssnmap *ssnmap;
1815
1816 /* All outbound chunks go through this structure. */
1817 struct sctp_outq outqueue;
1818
1819 /* A smart pipe that will handle reordering and fragmentation,
1820 * as well as handle passing events up to the ULP.
1821 */
1822 struct sctp_ulpq ulpq;
1823
1824 /* Last TSN that caused an ECNE Chunk to be sent. */
1825 __u32 last_ecne_tsn;
1826
1827 /* Last TSN that caused a CWR Chunk to be sent. */
1828 __u32 last_cwr_tsn;
1829
1830 /* How many duplicated TSNs have we seen? */
1831 int numduptsns;
1832
Vlad Yasevich8116ffa2006-01-17 11:55:17 -08001833 /* Number of seconds of idle time before an association is closed.
1834 * In the association context, this is really used as a boolean
1835 * since the real timeout is stored in the timeouts array
1836 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 __u32 autoclose;
1838
1839 /* These are to support
1840 * "SCTP Extensions for Dynamic Reconfiguration of IP Addresses
1841 * and Enforcement of Flow and Message Limits"
1842 * <draft-ietf-tsvwg-addip-sctp-02.txt>
1843 * or "ADDIP" for short.
1844 */
1845
1846
1847
1848 /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
1849 *
1850 * R1) One and only one ASCONF Chunk MAY be in transit and
1851 * unacknowledged at any one time. If a sender, after sending
1852 * an ASCONF chunk, decides it needs to transfer another
1853 * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
1854 * returns from the previous ASCONF Chunk before sending a
1855 * subsequent ASCONF. Note this restriction binds each side,
1856 * so at any time two ASCONF may be in-transit on any given
1857 * association (one sent from each endpoint).
1858 *
1859 * [This is our one-and-only-one ASCONF in flight. If we do
1860 * not have an ASCONF in flight, this is NULL.]
1861 */
1862 struct sctp_chunk *addip_last_asconf;
1863
Vlad Yasevicha08de642007-12-20 14:11:47 -08001864 /* ADDIP Section 5.2 Upon reception of an ASCONF Chunk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 *
Vlad Yasevicha08de642007-12-20 14:11:47 -08001866 * This is needed to implement itmes E1 - E4 of the updated
1867 * spec. Here is the justification:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 *
Vlad Yasevicha08de642007-12-20 14:11:47 -08001869 * Since the peer may bundle multiple ASCONF chunks toward us,
1870 * we now need the ability to cache multiple ACKs. The section
1871 * describes in detail how they are cached and cleaned up.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 */
Vlad Yasevicha08de642007-12-20 14:11:47 -08001873 struct list_head asconf_ack_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 /* These ASCONF chunks are waiting to be sent.
1876 *
1877 * These chunaks can't be pushed to outqueue until receiving
1878 * ASCONF_ACK for the previous ASCONF indicated by
1879 * addip_last_asconf, so as to guarantee that only one ASCONF
1880 * is in flight at any time.
1881 *
1882 * ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
1883 *
1884 * In defining the ASCONF Chunk transfer procedures, it is
1885 * essential that these transfers MUST NOT cause congestion
1886 * within the network. To achieve this, we place these
1887 * restrictions on the transfer of ASCONF Chunks:
1888 *
1889 * R1) One and only one ASCONF Chunk MAY be in transit and
1890 * unacknowledged at any one time. If a sender, after sending
1891 * an ASCONF chunk, decides it needs to transfer another
1892 * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
1893 * returns from the previous ASCONF Chunk before sending a
1894 * subsequent ASCONF. Note this restriction binds each side,
1895 * so at any time two ASCONF may be in-transit on any given
1896 * association (one sent from each endpoint).
1897 *
1898 *
1899 * [I really think this is EXACTLY the sort of intelligence
1900 * which already resides in sctp_outq. Please move this
1901 * queue and its supporting logic down there. --piggy]
1902 */
David S. Miller79af02c2005-07-08 21:47:49 -07001903 struct list_head addip_chunk_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
1905 /* ADDIP Section 4.1 ASCONF Chunk Procedures
1906 *
1907 * A2) A serial number should be assigned to the Chunk. The
1908 * serial number SHOULD be a monotonically increasing
1909 * number. The serial number SHOULD be initialized at
1910 * the start of the association to the same value as the
1911 * Initial TSN and every time a new ASCONF chunk is created
1912 * it is incremented by one after assigning the serial number
1913 * to the newly created chunk.
1914 *
1915 * ADDIP
1916 * 3.1.1 Address/Stream Configuration Change Chunk (ASCONF)
1917 *
1918 * Serial Number : 32 bits (unsigned integer)
1919 *
1920 * This value represents a Serial Number for the ASCONF
1921 * Chunk. The valid range of Serial Number is from 0 to
1922 * 4294967295 (2^32 - 1). Serial Numbers wrap back to 0
1923 * after reaching 4294967295.
1924 */
1925 __u32 addip_serial;
Michio Honda8a07eb02011-04-26 20:19:36 +09001926 union sctp_addr *asconf_addr_del_pending;
1927 int src_out_of_asoc_ok;
Michio Honda6af29cc2011-06-16 17:14:34 +09001928 struct sctp_transport *new_transport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Vlad Yasevich1f485642007-10-09 01:15:59 -07001930 /* SCTP AUTH: list of the endpoint shared keys. These
1931 * keys are provided out of band by the user applicaton
1932 * and can't change during the lifetime of the association
1933 */
1934 struct list_head endpoint_shared_keys;
1935
1936 /* SCTP AUTH:
1937 * The current generated assocaition shared key (secret)
1938 */
1939 struct sctp_auth_bytes *asoc_shared_key;
1940
1941 /* SCTP AUTH: hmac id of the first peer requested algorithm
1942 * that we support.
1943 */
1944 __u16 default_hmac_id;
1945
1946 __u16 active_key_id;
1947
Wei Yongjun9237ccb2009-09-04 14:33:19 +08001948 __u8 need_ecne:1, /* Need to send an ECNE Chunk? */
1949 temp:1; /* Is it a temporary association? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950};
1951
1952
1953/* An eyecatcher for determining if we are really looking at an
1954 * association data structure.
1955 */
1956enum {
1957 SCTP_ASSOC_EYECATCHER = 0xa550c123,
1958};
1959
1960/* Recover the outter association structure. */
1961static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base)
1962{
1963 struct sctp_association *asoc;
1964
1965 asoc = container_of(base, struct sctp_association, base);
1966 return asoc;
1967}
1968
1969/* These are function signatures for manipulating associations. */
1970
1971
1972struct sctp_association *
1973sctp_association_new(const struct sctp_endpoint *, const struct sock *,
Al Virodd0fc662005-10-07 07:46:04 +01001974 sctp_scope_t scope, gfp_t gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975void sctp_association_free(struct sctp_association *);
1976void sctp_association_put(struct sctp_association *);
1977void sctp_association_hold(struct sctp_association *);
1978
Wei Yongjun9919b452009-05-12 21:52:51 +08001979struct sctp_transport *sctp_assoc_choose_alter_transport(
1980 struct sctp_association *, struct sctp_transport *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981void sctp_assoc_update_retran_path(struct sctp_association *);
1982struct sctp_transport *sctp_assoc_lookup_paddr(const struct sctp_association *,
1983 const union sctp_addr *);
1984int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
1985 const union sctp_addr *laddr);
1986struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *,
1987 const union sctp_addr *address,
Al Virodd0fc662005-10-07 07:46:04 +01001988 const gfp_t gfp,
Frank Filz3f7a87d2005-06-20 13:14:57 -07001989 const int peer_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990void sctp_assoc_del_peer(struct sctp_association *asoc,
1991 const union sctp_addr *addr);
Frank Filz3f7a87d2005-06-20 13:14:57 -07001992void sctp_assoc_rm_peer(struct sctp_association *asoc,
1993 struct sctp_transport *peer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994void sctp_assoc_control_transport(struct sctp_association *,
1995 struct sctp_transport *,
1996 sctp_transport_cmd_t, sctp_sn_error_t);
1997struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *, __u32);
1998struct sctp_transport *sctp_assoc_is_match(struct sctp_association *,
1999 const union sctp_addr *,
2000 const union sctp_addr *);
2001void sctp_assoc_migrate(struct sctp_association *, struct sock *);
2002void sctp_assoc_update(struct sctp_association *old,
2003 struct sctp_association *new);
2004
2005__u32 sctp_association_get_next_tsn(struct sctp_association *);
2006
2007void sctp_assoc_sync_pmtu(struct sctp_association *);
2008void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned);
2009void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned);
2010void sctp_assoc_set_primary(struct sctp_association *,
2011 struct sctp_transport *);
Vlad Yasevich42e30bf2007-12-20 14:08:56 -08002012void sctp_assoc_del_nonprimary_peers(struct sctp_association *,
2013 struct sctp_transport *);
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07002014int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *,
Vlad Yasevich409b95a2009-11-10 08:57:34 +00002015 sctp_scope_t, gfp_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *,
Alexey Dobriyan3182cd82005-07-11 20:57:47 -07002017 struct sctp_cookie*,
Al Virodd0fc662005-10-07 07:46:04 +01002018 gfp_t gfp);
Vlad Yasevich07d93962007-05-04 13:55:27 -07002019int sctp_assoc_set_id(struct sctp_association *, gfp_t);
Vlad Yasevicha08de642007-12-20 14:11:47 -08002020void sctp_assoc_clean_asconf_ack_cache(const struct sctp_association *asoc);
2021struct sctp_chunk *sctp_assoc_lookup_asconf_ack(
2022 const struct sctp_association *asoc,
2023 __be32 serial);
Wei Yongjuna000c012011-05-29 23:23:36 +00002024void sctp_asconf_queue_teardown(struct sctp_association *asoc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026int sctp_cmp_addr_exact(const union sctp_addr *ss1,
2027 const union sctp_addr *ss2);
2028struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc);
2029
2030/* A convenience structure to parse out SCTP specific CMSGs. */
2031typedef struct sctp_cmsgs {
2032 struct sctp_initmsg *init;
2033 struct sctp_sndrcvinfo *info;
2034} sctp_cmsgs_t;
2035
2036/* Structure for tracking memory objects */
2037typedef struct {
2038 char *label;
2039 atomic_t *counter;
2040} sctp_dbg_objcnt_entry_t;
2041
2042#endif /* __sctp_structs_h__ */