structs.h 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  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. *
  7. * This file is part of the SCTP kernel reference Implementation
  8. *
  9. * The SCTP reference implementation is free software;
  10. * 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. *
  15. * The SCTP reference implementation is distributed in the hope that it
  16. * 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. #ifndef __sctp_structs_h__
  54. #define __sctp_structs_h__
  55. #include <linux/time.h> /* We get struct timespec. */
  56. #include <linux/socket.h> /* linux/in.h needs this!! */
  57. #include <linux/in.h> /* We get struct sockaddr_in. */
  58. #include <linux/in6.h> /* We get struct in6_addr */
  59. #include <linux/ipv6.h>
  60. #include <asm/param.h> /* We get MAXHOSTNAMELEN. */
  61. #include <asm/atomic.h> /* This gets us atomic counters. */
  62. #include <linux/skbuff.h> /* We need sk_buff_head. */
  63. #include <linux/workqueue.h> /* We need tq_struct. */
  64. #include <linux/sctp.h> /* We need sctp* header structs. */
  65. /* A convenience structure for handling sockaddr structures.
  66. * We should wean ourselves off this.
  67. */
  68. union sctp_addr {
  69. struct sockaddr_in v4;
  70. struct sockaddr_in6 v6;
  71. struct sockaddr sa;
  72. };
  73. static inline void flip_to_n(union sctp_addr *to, const union sctp_addr *from)
  74. {
  75. size_t len;
  76. if (from->sa.sa_family == AF_INET6)
  77. len = sizeof(struct sockaddr_in6);
  78. else
  79. len = sizeof(struct sockaddr);
  80. memcpy(to, from, len);
  81. to->v4.sin_port = htons(from->v4.sin_port);
  82. }
  83. static inline void flip_to_h(union sctp_addr *to, const union sctp_addr *from)
  84. {
  85. size_t len;
  86. if (from->sa.sa_family == AF_INET6)
  87. len = sizeof(struct sockaddr_in6);
  88. else
  89. len = sizeof(struct sockaddr);
  90. memcpy(to, from, len);
  91. to->v4.sin_port = ntohs(from->v4.sin_port);
  92. }
  93. /* Forward declarations for data structures. */
  94. struct sctp_globals;
  95. struct sctp_endpoint;
  96. struct sctp_association;
  97. struct sctp_transport;
  98. struct sctp_packet;
  99. struct sctp_chunk;
  100. struct sctp_inq;
  101. struct sctp_outq;
  102. struct sctp_bind_addr;
  103. struct sctp_ulpq;
  104. struct sctp_ep_common;
  105. struct sctp_ssnmap;
  106. struct crypto_hash;
  107. #include <net/sctp/tsnmap.h>
  108. #include <net/sctp/ulpevent.h>
  109. #include <net/sctp/ulpqueue.h>
  110. /* Structures useful for managing bind/connect. */
  111. struct sctp_bind_bucket {
  112. unsigned short port;
  113. unsigned short fastreuse;
  114. struct sctp_bind_bucket *next;
  115. struct sctp_bind_bucket **pprev;
  116. struct hlist_head owner;
  117. };
  118. struct sctp_bind_hashbucket {
  119. spinlock_t lock;
  120. struct sctp_bind_bucket *chain;
  121. };
  122. /* Used for hashing all associations. */
  123. struct sctp_hashbucket {
  124. rwlock_t lock;
  125. struct sctp_ep_common *chain;
  126. } __attribute__((__aligned__(8)));
  127. /* The SCTP globals structure. */
  128. extern struct sctp_globals {
  129. /* RFC2960 Section 14. Suggested SCTP Protocol Parameter Values
  130. *
  131. * The following protocol parameters are RECOMMENDED:
  132. *
  133. * RTO.Initial - 3 seconds
  134. * RTO.Min - 1 second
  135. * RTO.Max - 60 seconds
  136. * RTO.Alpha - 1/8 (3 when converted to right shifts.)
  137. * RTO.Beta - 1/4 (2 when converted to right shifts.)
  138. */
  139. unsigned int rto_initial;
  140. unsigned int rto_min;
  141. unsigned int rto_max;
  142. /* Note: rto_alpha and rto_beta are really defined as inverse
  143. * powers of two to facilitate integer operations.
  144. */
  145. int rto_alpha;
  146. int rto_beta;
  147. /* Max.Burst - 4 */
  148. int max_burst;
  149. /* Whether Cookie Preservative is enabled(1) or not(0) */
  150. int cookie_preserve_enable;
  151. /* Valid.Cookie.Life - 60 seconds */
  152. unsigned int valid_cookie_life;
  153. /* Delayed SACK timeout 200ms default*/
  154. unsigned int sack_timeout;
  155. /* HB.interval - 30 seconds */
  156. unsigned int hb_interval;
  157. /* Association.Max.Retrans - 10 attempts
  158. * Path.Max.Retrans - 5 attempts (per destination address)
  159. * Max.Init.Retransmits - 8 attempts
  160. */
  161. int max_retrans_association;
  162. int max_retrans_path;
  163. int max_retrans_init;
  164. /*
  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. /*
  171. * Policy for preforming sctp/socket accounting
  172. * 0 - do socket level accounting, all assocs share sk_rcvbuf
  173. * 1 - do sctp accounting, each asoc may use sk_rcvbuf bytes
  174. */
  175. int rcvbuf_policy;
  176. /* The following variables are implementation specific. */
  177. /* Default initialization values to be applied to new associations. */
  178. __u16 max_instreams;
  179. __u16 max_outstreams;
  180. /* This is a list of groups of functions for each address
  181. * family that we support.
  182. */
  183. struct list_head address_families;
  184. /* This is the hash of all endpoints. */
  185. int ep_hashsize;
  186. struct sctp_hashbucket *ep_hashtable;
  187. /* This is the hash of all associations. */
  188. int assoc_hashsize;
  189. struct sctp_hashbucket *assoc_hashtable;
  190. /* This is the sctp port control hash. */
  191. int port_hashsize;
  192. int port_rover;
  193. spinlock_t port_alloc_lock; /* Protects port_rover. */
  194. struct sctp_bind_hashbucket *port_hashtable;
  195. /* This is the global local address list.
  196. * We actively maintain this complete list of interfaces on
  197. * the system by catching routing events.
  198. *
  199. * It is a list of sctp_sockaddr_entry.
  200. */
  201. struct list_head local_addr_list;
  202. spinlock_t local_addr_lock;
  203. /* Flag to indicate if addip is enabled. */
  204. int addip_enable;
  205. /* Flag to indicate if PR-SCTP is enabled. */
  206. int prsctp_enable;
  207. } sctp_globals;
  208. #define sctp_rto_initial (sctp_globals.rto_initial)
  209. #define sctp_rto_min (sctp_globals.rto_min)
  210. #define sctp_rto_max (sctp_globals.rto_max)
  211. #define sctp_rto_alpha (sctp_globals.rto_alpha)
  212. #define sctp_rto_beta (sctp_globals.rto_beta)
  213. #define sctp_max_burst (sctp_globals.max_burst)
  214. #define sctp_valid_cookie_life (sctp_globals.valid_cookie_life)
  215. #define sctp_cookie_preserve_enable (sctp_globals.cookie_preserve_enable)
  216. #define sctp_max_retrans_association (sctp_globals.max_retrans_association)
  217. #define sctp_sndbuf_policy (sctp_globals.sndbuf_policy)
  218. #define sctp_rcvbuf_policy (sctp_globals.rcvbuf_policy)
  219. #define sctp_max_retrans_path (sctp_globals.max_retrans_path)
  220. #define sctp_max_retrans_init (sctp_globals.max_retrans_init)
  221. #define sctp_sack_timeout (sctp_globals.sack_timeout)
  222. #define sctp_hb_interval (sctp_globals.hb_interval)
  223. #define sctp_max_instreams (sctp_globals.max_instreams)
  224. #define sctp_max_outstreams (sctp_globals.max_outstreams)
  225. #define sctp_address_families (sctp_globals.address_families)
  226. #define sctp_ep_hashsize (sctp_globals.ep_hashsize)
  227. #define sctp_ep_hashtable (sctp_globals.ep_hashtable)
  228. #define sctp_assoc_hashsize (sctp_globals.assoc_hashsize)
  229. #define sctp_assoc_hashtable (sctp_globals.assoc_hashtable)
  230. #define sctp_port_hashsize (sctp_globals.port_hashsize)
  231. #define sctp_port_rover (sctp_globals.port_rover)
  232. #define sctp_port_alloc_lock (sctp_globals.port_alloc_lock)
  233. #define sctp_port_hashtable (sctp_globals.port_hashtable)
  234. #define sctp_local_addr_list (sctp_globals.local_addr_list)
  235. #define sctp_local_addr_lock (sctp_globals.local_addr_lock)
  236. #define sctp_addip_enable (sctp_globals.addip_enable)
  237. #define sctp_prsctp_enable (sctp_globals.prsctp_enable)
  238. /* SCTP Socket type: UDP or TCP style. */
  239. typedef enum {
  240. SCTP_SOCKET_UDP = 0,
  241. SCTP_SOCKET_UDP_HIGH_BANDWIDTH,
  242. SCTP_SOCKET_TCP
  243. } sctp_socket_type_t;
  244. /* Per socket SCTP information. */
  245. struct sctp_sock {
  246. /* inet_sock has to be the first member of sctp_sock */
  247. struct inet_sock inet;
  248. /* What kind of a socket is this? */
  249. sctp_socket_type_t type;
  250. /* PF_ family specific functions. */
  251. struct sctp_pf *pf;
  252. /* Access to HMAC transform. */
  253. struct crypto_hash *hmac;
  254. /* What is our base endpointer? */
  255. struct sctp_endpoint *ep;
  256. struct sctp_bind_bucket *bind_hash;
  257. /* Various Socket Options. */
  258. __u16 default_stream;
  259. __u32 default_ppid;
  260. __u16 default_flags;
  261. __u32 default_context;
  262. __u32 default_timetolive;
  263. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  264. * the destination address every heartbeat interval. This value
  265. * will be inherited by all new associations.
  266. */
  267. __u32 hbinterval;
  268. /* This is the max_retrans value for new associations. */
  269. __u16 pathmaxrxt;
  270. /* The initial Path MTU to use for new associations. */
  271. __u32 pathmtu;
  272. /* The default SACK delay timeout for new associations. */
  273. __u32 sackdelay;
  274. /* Flags controling Heartbeat, SACK delay, and Path MTU Discovery. */
  275. __u32 param_flags;
  276. struct sctp_initmsg initmsg;
  277. struct sctp_rtoinfo rtoinfo;
  278. struct sctp_paddrparams paddrparam;
  279. struct sctp_event_subscribe subscribe;
  280. struct sctp_assocparams assocparams;
  281. int user_frag;
  282. __u32 autoclose;
  283. __u8 nodelay;
  284. __u8 disable_fragments;
  285. __u8 pd_mode;
  286. __u8 v4mapped;
  287. __u32 adaption_ind;
  288. /* Receive to here while partial delivery is in effect. */
  289. struct sk_buff_head pd_lobby;
  290. };
  291. static inline struct sctp_sock *sctp_sk(const struct sock *sk)
  292. {
  293. return (struct sctp_sock *)sk;
  294. }
  295. static inline struct sock *sctp_opt2sk(const struct sctp_sock *sp)
  296. {
  297. return (struct sock *)sp;
  298. }
  299. #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
  300. struct sctp6_sock {
  301. struct sctp_sock sctp;
  302. struct ipv6_pinfo inet6;
  303. };
  304. #endif /* CONFIG_IPV6 */
  305. /* This is our APPLICATION-SPECIFIC state cookie.
  306. * THIS IS NOT DICTATED BY THE SPECIFICATION.
  307. */
  308. /* These are the parts of an association which we send in the cookie.
  309. * Most of these are straight out of:
  310. * RFC2960 12.2 Parameters necessary per association (i.e. the TCB)
  311. *
  312. */
  313. struct sctp_cookie {
  314. /* My : Tag expected in every inbound packet and sent
  315. * Verification: in the INIT or INIT ACK chunk.
  316. * Tag :
  317. */
  318. __u32 my_vtag;
  319. /* Peer's : Tag expected in every outbound packet except
  320. * Verification: in the INIT chunk.
  321. * Tag :
  322. */
  323. __u32 peer_vtag;
  324. /* The rest of these are not from the spec, but really need to
  325. * be in the cookie.
  326. */
  327. /* My Tie Tag : Assist in discovering a restarting association. */
  328. __u32 my_ttag;
  329. /* Peer's Tie Tag: Assist in discovering a restarting association. */
  330. __u32 peer_ttag;
  331. /* When does this cookie expire? */
  332. struct timeval expiration;
  333. /* Number of inbound/outbound streams which are set
  334. * and negotiated during the INIT process.
  335. */
  336. __u16 sinit_num_ostreams;
  337. __u16 sinit_max_instreams;
  338. /* This is the first sequence number I used. */
  339. __u32 initial_tsn;
  340. /* This holds the originating address of the INIT packet. */
  341. union sctp_addr peer_addr;
  342. /* IG Section 2.35.3
  343. * Include the source port of the INIT-ACK
  344. */
  345. __u16 my_port;
  346. __u8 prsctp_capable;
  347. /* Padding for future use */
  348. __u8 padding;
  349. __u32 adaption_ind;
  350. /* This is a shim for my peer's INIT packet, followed by
  351. * a copy of the raw address list of the association.
  352. * The length of the raw address list is saved in the
  353. * raw_addr_list_len field, which will be used at the time when
  354. * the association TCB is re-constructed from the cookie.
  355. */
  356. __u32 raw_addr_list_len;
  357. struct sctp_init_chunk peer_init[0];
  358. };
  359. /* The format of our cookie that we send to our peer. */
  360. struct sctp_signed_cookie {
  361. __u8 signature[SCTP_SECRET_SIZE];
  362. __u32 __pad; /* force sctp_cookie alignment to 64 bits */
  363. struct sctp_cookie c;
  364. } __attribute__((packed));
  365. /* This is another convenience type to allocate memory for address
  366. * params for the maximum size and pass such structures around
  367. * internally.
  368. */
  369. union sctp_addr_param {
  370. struct sctp_ipv4addr_param v4;
  371. struct sctp_ipv6addr_param v6;
  372. };
  373. /* A convenience type to allow walking through the various
  374. * parameters and avoid casting all over the place.
  375. */
  376. union sctp_params {
  377. void *v;
  378. struct sctp_paramhdr *p;
  379. struct sctp_cookie_preserve_param *life;
  380. struct sctp_hostname_param *dns;
  381. struct sctp_cookie_param *cookie;
  382. struct sctp_supported_addrs_param *sat;
  383. struct sctp_ipv4addr_param *v4;
  384. struct sctp_ipv6addr_param *v6;
  385. union sctp_addr_param *addr;
  386. struct sctp_adaption_ind_param *aind;
  387. };
  388. /* RFC 2960. Section 3.3.5 Heartbeat.
  389. * Heartbeat Information: variable length
  390. * The Sender-specific Heartbeat Info field should normally include
  391. * information about the sender's current time when this HEARTBEAT
  392. * chunk is sent and the destination transport address to which this
  393. * HEARTBEAT is sent (see Section 8.3).
  394. */
  395. typedef struct sctp_sender_hb_info {
  396. struct sctp_paramhdr param_hdr;
  397. union sctp_addr daddr;
  398. unsigned long sent_at;
  399. __u64 hb_nonce;
  400. } __attribute__((packed)) sctp_sender_hb_info_t;
  401. /*
  402. * RFC 2960 1.3.2 Sequenced Delivery within Streams
  403. *
  404. * The term "stream" is used in SCTP to refer to a sequence of user
  405. * messages that are to be delivered to the upper-layer protocol in
  406. * order with respect to other messages within the same stream. This is
  407. * in contrast to its usage in TCP, where it refers to a sequence of
  408. * bytes (in this document a byte is assumed to be eight bits).
  409. * ...
  410. *
  411. * This is the structure we use to track both our outbound and inbound
  412. * SSN, or Stream Sequence Numbers.
  413. */
  414. struct sctp_stream {
  415. __u16 *ssn;
  416. unsigned int len;
  417. };
  418. struct sctp_ssnmap {
  419. struct sctp_stream in;
  420. struct sctp_stream out;
  421. int malloced;
  422. };
  423. struct sctp_ssnmap *sctp_ssnmap_new(__u16 in, __u16 out,
  424. gfp_t gfp);
  425. void sctp_ssnmap_free(struct sctp_ssnmap *map);
  426. void sctp_ssnmap_clear(struct sctp_ssnmap *map);
  427. /* What is the current SSN number for this stream? */
  428. static inline __u16 sctp_ssn_peek(struct sctp_stream *stream, __u16 id)
  429. {
  430. return stream->ssn[id];
  431. }
  432. /* Return the next SSN number for this stream. */
  433. static inline __u16 sctp_ssn_next(struct sctp_stream *stream, __u16 id)
  434. {
  435. return stream->ssn[id]++;
  436. }
  437. /* Skip over this ssn and all below. */
  438. static inline void sctp_ssn_skip(struct sctp_stream *stream, __u16 id,
  439. __u16 ssn)
  440. {
  441. stream->ssn[id] = ssn+1;
  442. }
  443. /*
  444. * Pointers to address related SCTP functions.
  445. * (i.e. things that depend on the address family.)
  446. */
  447. struct sctp_af {
  448. int (*sctp_xmit) (struct sk_buff *skb,
  449. struct sctp_transport *,
  450. int ipfragok);
  451. int (*setsockopt) (struct sock *sk,
  452. int level,
  453. int optname,
  454. char __user *optval,
  455. int optlen);
  456. int (*getsockopt) (struct sock *sk,
  457. int level,
  458. int optname,
  459. char __user *optval,
  460. int __user *optlen);
  461. int (*compat_setsockopt) (struct sock *sk,
  462. int level,
  463. int optname,
  464. char __user *optval,
  465. int optlen);
  466. int (*compat_getsockopt) (struct sock *sk,
  467. int level,
  468. int optname,
  469. char __user *optval,
  470. int __user *optlen);
  471. struct dst_entry *(*get_dst) (struct sctp_association *asoc,
  472. union sctp_addr *daddr,
  473. union sctp_addr *saddr);
  474. void (*get_saddr) (struct sctp_association *asoc,
  475. struct dst_entry *dst,
  476. union sctp_addr *daddr,
  477. union sctp_addr *saddr);
  478. void (*copy_addrlist) (struct list_head *,
  479. struct net_device *);
  480. void (*dst_saddr) (union sctp_addr *saddr,
  481. struct dst_entry *dst,
  482. __be16 port);
  483. int (*cmp_addr) (const union sctp_addr *addr1,
  484. const union sctp_addr *addr2);
  485. void (*addr_copy) (union sctp_addr *dst,
  486. union sctp_addr *src);
  487. void (*from_skb) (union sctp_addr *,
  488. struct sk_buff *skb,
  489. int saddr);
  490. void (*from_sk) (union sctp_addr *,
  491. struct sock *sk);
  492. void (*to_sk_saddr) (union sctp_addr *,
  493. struct sock *sk);
  494. void (*to_sk_daddr) (union sctp_addr *,
  495. struct sock *sk);
  496. void (*from_addr_param) (union sctp_addr *,
  497. union sctp_addr_param *,
  498. __be16 port, int iif);
  499. int (*to_addr_param) (const union sctp_addr *,
  500. union sctp_addr_param *);
  501. int (*addr_valid) (union sctp_addr *,
  502. struct sctp_sock *,
  503. const struct sk_buff *);
  504. sctp_scope_t (*scope) (union sctp_addr *);
  505. void (*inaddr_any) (union sctp_addr *, unsigned short);
  506. int (*is_any) (const union sctp_addr *);
  507. int (*available) (union sctp_addr *,
  508. struct sctp_sock *);
  509. int (*skb_iif) (const struct sk_buff *sk);
  510. int (*is_ce) (const struct sk_buff *sk);
  511. void (*seq_dump_addr)(struct seq_file *seq,
  512. union sctp_addr *addr);
  513. __u16 net_header_len;
  514. int sockaddr_len;
  515. sa_family_t sa_family;
  516. struct list_head list;
  517. };
  518. struct sctp_af *sctp_get_af_specific(sa_family_t);
  519. int sctp_register_af(struct sctp_af *);
  520. /* Protocol family functions. */
  521. struct sctp_pf {
  522. void (*event_msgname)(struct sctp_ulpevent *, char *, int *);
  523. void (*skb_msgname) (struct sk_buff *, char *, int *);
  524. int (*af_supported) (sa_family_t, struct sctp_sock *);
  525. int (*cmp_addr) (const union sctp_addr *,
  526. const union sctp_addr *,
  527. struct sctp_sock *);
  528. int (*bind_verify) (struct sctp_sock *, union sctp_addr *);
  529. int (*send_verify) (struct sctp_sock *, union sctp_addr *);
  530. int (*supported_addrs)(const struct sctp_sock *, __u16 *);
  531. struct sock *(*create_accept_sk) (struct sock *sk,
  532. struct sctp_association *asoc);
  533. void (*addr_v4map) (struct sctp_sock *, union sctp_addr *);
  534. struct sctp_af *af;
  535. };
  536. /* Structure to track chunk fragments that have been acked, but peer
  537. * fragments of the same message have not.
  538. */
  539. struct sctp_datamsg {
  540. /* Chunks waiting to be submitted to lower layer. */
  541. struct list_head chunks;
  542. /* Chunks that have been transmitted. */
  543. struct list_head track;
  544. /* Reference counting. */
  545. atomic_t refcnt;
  546. /* When is this message no longer interesting to the peer? */
  547. unsigned long expires_at;
  548. /* Did the messenge fail to send? */
  549. int send_error;
  550. char send_failed;
  551. /* Control whether chunks from this message can be abandoned. */
  552. char can_abandon;
  553. };
  554. struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *,
  555. struct sctp_sndrcvinfo *,
  556. struct msghdr *, int len);
  557. void sctp_datamsg_put(struct sctp_datamsg *);
  558. void sctp_datamsg_free(struct sctp_datamsg *);
  559. void sctp_datamsg_track(struct sctp_chunk *);
  560. void sctp_chunk_fail(struct sctp_chunk *, int error);
  561. int sctp_chunk_abandoned(struct sctp_chunk *);
  562. /* RFC2960 1.4 Key Terms
  563. *
  564. * o Chunk: A unit of information within an SCTP packet, consisting of
  565. * a chunk header and chunk-specific content.
  566. *
  567. * As a matter of convenience, we remember the SCTP common header for
  568. * each chunk as well as a few other header pointers...
  569. */
  570. struct sctp_chunk {
  571. struct list_head list;
  572. atomic_t refcnt;
  573. /* This is our link to the per-transport transmitted list. */
  574. struct list_head transmitted_list;
  575. /* This field is used by chunks that hold fragmented data.
  576. * For the first fragment this is the list that holds the rest of
  577. * fragments. For the remaining fragments, this is the link to the
  578. * frag_list maintained in the first fragment.
  579. */
  580. struct list_head frag_list;
  581. /* This points to the sk_buff containing the actual data. */
  582. struct sk_buff *skb;
  583. /* These are the SCTP headers by reverse order in a packet.
  584. * Note that some of these may happen more than once. In that
  585. * case, we point at the "current" one, whatever that means
  586. * for that level of header.
  587. */
  588. /* We point this at the FIRST TLV parameter to chunk_hdr. */
  589. union sctp_params param_hdr;
  590. union {
  591. __u8 *v;
  592. struct sctp_datahdr *data_hdr;
  593. struct sctp_inithdr *init_hdr;
  594. struct sctp_sackhdr *sack_hdr;
  595. struct sctp_heartbeathdr *hb_hdr;
  596. struct sctp_sender_hb_info *hbs_hdr;
  597. struct sctp_shutdownhdr *shutdown_hdr;
  598. struct sctp_signed_cookie *cookie_hdr;
  599. struct sctp_ecnehdr *ecne_hdr;
  600. struct sctp_cwrhdr *ecn_cwr_hdr;
  601. struct sctp_errhdr *err_hdr;
  602. struct sctp_addiphdr *addip_hdr;
  603. struct sctp_fwdtsn_hdr *fwdtsn_hdr;
  604. } subh;
  605. __u8 *chunk_end;
  606. struct sctp_chunkhdr *chunk_hdr;
  607. struct sctphdr *sctp_hdr;
  608. /* This needs to be recoverable for SCTP_SEND_FAILED events. */
  609. struct sctp_sndrcvinfo sinfo;
  610. /* Which association does this belong to? */
  611. struct sctp_association *asoc;
  612. /* What endpoint received this chunk? */
  613. struct sctp_ep_common *rcvr;
  614. /* We fill this in if we are calculating RTT. */
  615. unsigned long sent_at;
  616. /* What is the origin IP address for this chunk? */
  617. union sctp_addr source;
  618. union sctp_addr source_h;
  619. /* Destination address for this chunk. */
  620. union sctp_addr dest;
  621. /* For outbound message, track all fragments for SEND_FAILED. */
  622. struct sctp_datamsg *msg;
  623. /* For an inbound chunk, this tells us where it came from.
  624. * For an outbound chunk, it tells us where we'd like it to
  625. * go. It is NULL if we have no preference.
  626. */
  627. struct sctp_transport *transport;
  628. __u8 rtt_in_progress; /* Is this chunk used for RTT calculation? */
  629. __u8 resent; /* Has this chunk ever been retransmitted. */
  630. __u8 has_tsn; /* Does this chunk have a TSN yet? */
  631. __u8 has_ssn; /* Does this chunk have a SSN yet? */
  632. __u8 singleton; /* Was this the only chunk in the packet? */
  633. __u8 end_of_packet; /* Was this the last chunk in the packet? */
  634. __u8 ecn_ce_done; /* Have we processed the ECN CE bit? */
  635. __u8 pdiscard; /* Discard the whole packet now? */
  636. __u8 tsn_gap_acked; /* Is this chunk acked by a GAP ACK? */
  637. __s8 fast_retransmit; /* Is this chunk fast retransmitted? */
  638. __u8 tsn_missing_report; /* Data chunk missing counter. */
  639. __u8 data_accepted; /* At least 1 chunk in this packet accepted */
  640. };
  641. void sctp_chunk_hold(struct sctp_chunk *);
  642. void sctp_chunk_put(struct sctp_chunk *);
  643. int sctp_user_addto_chunk(struct sctp_chunk *chunk, int off, int len,
  644. struct iovec *data);
  645. void sctp_chunk_free(struct sctp_chunk *);
  646. void *sctp_addto_chunk(struct sctp_chunk *, int len, const void *data);
  647. struct sctp_chunk *sctp_chunkify(struct sk_buff *,
  648. const struct sctp_association *,
  649. struct sock *);
  650. void sctp_init_addrs(struct sctp_chunk *, union sctp_addr *,
  651. union sctp_addr *);
  652. const union sctp_addr *sctp_source(const struct sctp_chunk *chunk);
  653. /* This is a structure for holding either an IPv6 or an IPv4 address. */
  654. struct sctp_sockaddr_entry {
  655. struct list_head list;
  656. union sctp_addr a;
  657. union sctp_addr a_h;
  658. __u8 use_as_src;
  659. };
  660. typedef struct sctp_chunk *(sctp_packet_phandler_t)(struct sctp_association *);
  661. /* This structure holds lists of chunks as we are assembling for
  662. * transmission.
  663. */
  664. struct sctp_packet {
  665. /* These are the SCTP header values (host order) for the packet. */
  666. __u16 source_port;
  667. __u16 destination_port;
  668. __u32 vtag;
  669. /* This contains the payload chunks. */
  670. struct list_head chunk_list;
  671. /* This is the overhead of the sctp and ip headers. */
  672. size_t overhead;
  673. /* This is the total size of all chunks INCLUDING padding. */
  674. size_t size;
  675. /* The packet is destined for this transport address.
  676. * The function we finally use to pass down to the next lower
  677. * layer lives in the transport structure.
  678. */
  679. struct sctp_transport *transport;
  680. /* This packet contains a COOKIE-ECHO chunk. */
  681. char has_cookie_echo;
  682. /* This packet containsa SACK chunk. */
  683. char has_sack;
  684. /* SCTP cannot fragment this packet. So let ip fragment it. */
  685. char ipfragok;
  686. int malloced;
  687. };
  688. struct sctp_packet *sctp_packet_init(struct sctp_packet *,
  689. struct sctp_transport *,
  690. __u16 sport, __u16 dport);
  691. struct sctp_packet *sctp_packet_config(struct sctp_packet *, __u32 vtag, int);
  692. sctp_xmit_t sctp_packet_transmit_chunk(struct sctp_packet *,
  693. struct sctp_chunk *);
  694. sctp_xmit_t sctp_packet_append_chunk(struct sctp_packet *,
  695. struct sctp_chunk *);
  696. int sctp_packet_transmit(struct sctp_packet *);
  697. void sctp_packet_free(struct sctp_packet *);
  698. static inline int sctp_packet_empty(struct sctp_packet *packet)
  699. {
  700. return (packet->size == packet->overhead);
  701. }
  702. /* This represents a remote transport address.
  703. * For local transport addresses, we just use union sctp_addr.
  704. *
  705. * RFC2960 Section 1.4 Key Terms
  706. *
  707. * o Transport address: A Transport Address is traditionally defined
  708. * by Network Layer address, Transport Layer protocol and Transport
  709. * Layer port number. In the case of SCTP running over IP, a
  710. * transport address is defined by the combination of an IP address
  711. * and an SCTP port number (where SCTP is the Transport protocol).
  712. *
  713. * RFC2960 Section 7.1 SCTP Differences from TCP Congestion control
  714. *
  715. * o The sender keeps a separate congestion control parameter set for
  716. * each of the destination addresses it can send to (not each
  717. * source-destination pair but for each destination). The parameters
  718. * should decay if the address is not used for a long enough time
  719. * period.
  720. *
  721. */
  722. struct sctp_transport {
  723. /* A list of transports. */
  724. struct list_head transports;
  725. /* Reference counting. */
  726. atomic_t refcnt;
  727. int dead;
  728. /* This is the peer's IP address and port. */
  729. union sctp_addr ipaddr;
  730. union sctp_addr ipaddr_h;
  731. /* These are the functions we call to handle LLP stuff. */
  732. struct sctp_af *af_specific;
  733. /* Which association do we belong to? */
  734. struct sctp_association *asoc;
  735. /* RFC2960
  736. *
  737. * 12.3 Per Transport Address Data
  738. *
  739. * For each destination transport address in the peer's
  740. * address list derived from the INIT or INIT ACK chunk, a
  741. * number of data elements needs to be maintained including:
  742. */
  743. __u32 rtt; /* This is the most recent RTT. */
  744. /* RTO : The current retransmission timeout value. */
  745. unsigned long rto;
  746. /* RTTVAR : The current RTT variation. */
  747. __u32 rttvar;
  748. /* SRTT : The current smoothed round trip time. */
  749. __u32 srtt;
  750. /* RTO-Pending : A flag used to track if one of the DATA
  751. * chunks sent to this address is currently being
  752. * used to compute a RTT. If this flag is 0,
  753. * the next DATA chunk sent to this destination
  754. * should be used to compute a RTT and this flag
  755. * should be set. Every time the RTT
  756. * calculation completes (i.e. the DATA chunk
  757. * is SACK'd) clear this flag.
  758. */
  759. int rto_pending;
  760. /*
  761. * These are the congestion stats.
  762. */
  763. /* cwnd : The current congestion window. */
  764. __u32 cwnd; /* This is the actual cwnd. */
  765. /* ssthresh : The current slow start threshold value. */
  766. __u32 ssthresh;
  767. /* partial : The tracking method for increase of cwnd when in
  768. * bytes acked : congestion avoidance mode (see Section 6.2.2)
  769. */
  770. __u32 partial_bytes_acked;
  771. /* Data that has been sent, but not acknowledged. */
  772. __u32 flight_size;
  773. /* Destination */
  774. struct dst_entry *dst;
  775. /* Source address. */
  776. union sctp_addr saddr;
  777. union sctp_addr saddr_h;
  778. /* When was the last time(in jiffies) that a data packet was sent on
  779. * this transport? This is used to adjust the cwnd when the transport
  780. * becomes inactive.
  781. */
  782. unsigned long last_time_used;
  783. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  784. * the destination address every heartbeat interval.
  785. */
  786. unsigned long hbinterval;
  787. /* SACK delay timeout */
  788. unsigned long sackdelay;
  789. /* When was the last time (in jiffies) that we heard from this
  790. * transport? We use this to pick new active and retran paths.
  791. */
  792. unsigned long last_time_heard;
  793. /* Last time(in jiffies) when cwnd is reduced due to the congestion
  794. * indication based on ECNE chunk.
  795. */
  796. unsigned long last_time_ecne_reduced;
  797. /* This is the max_retrans value for the transport and will
  798. * be initialized from the assocs value. This can be changed
  799. * using SCTP_SET_PEER_ADDR_PARAMS socket option.
  800. */
  801. __u16 pathmaxrxt;
  802. /* PMTU : The current known path MTU. */
  803. __u32 pathmtu;
  804. /* Flags controling Heartbeat, SACK delay, and Path MTU Discovery. */
  805. __u32 param_flags;
  806. /* The number of times INIT has been sent on this transport. */
  807. int init_sent_count;
  808. /* state : The current state of this destination,
  809. * : i.e. SCTP_ACTIVE, SCTP_INACTIVE, SCTP_UNKOWN.
  810. */
  811. int state;
  812. /* These are the error stats for this destination. */
  813. /* Error count : The current error count for this destination. */
  814. unsigned short error_count;
  815. /* Per : A timer used by each destination.
  816. * Destination :
  817. * Timer :
  818. *
  819. * [Everywhere else in the text this is called T3-rtx. -ed]
  820. */
  821. struct timer_list T3_rtx_timer;
  822. /* Heartbeat timer is per destination. */
  823. struct timer_list hb_timer;
  824. /* Since we're using per-destination retransmission timers
  825. * (see above), we're also using per-destination "transmitted"
  826. * queues. This probably ought to be a private struct
  827. * accessible only within the outqueue, but it's not, yet.
  828. */
  829. struct list_head transmitted;
  830. /* We build bundle-able packets for this transport here. */
  831. struct sctp_packet packet;
  832. /* This is the list of transports that have chunks to send. */
  833. struct list_head send_ready;
  834. int malloced; /* Is this structure kfree()able? */
  835. /* State information saved for SFR_CACC algorithm. The key
  836. * idea in SFR_CACC is to maintain state at the sender on a
  837. * per-destination basis when a changeover happens.
  838. * char changeover_active;
  839. * char cycling_changeover;
  840. * __u32 next_tsn_at_change;
  841. * char cacc_saw_newack;
  842. */
  843. struct {
  844. /* An unsigned integer, which stores the next TSN to be
  845. * used by the sender, at the moment of changeover.
  846. */
  847. __u32 next_tsn_at_change;
  848. /* A flag which indicates the occurrence of a changeover */
  849. char changeover_active;
  850. /* A flag which indicates whether the change of primary is
  851. * the first switch to this destination address during an
  852. * active switch.
  853. */
  854. char cycling_changeover;
  855. /* A temporary flag, which is used during the processing of
  856. * a SACK to estimate the causative TSN(s)'s group.
  857. */
  858. char cacc_saw_newack;
  859. } cacc;
  860. /* 64-bit random number sent with heartbeat. */
  861. __u64 hb_nonce;
  862. };
  863. struct sctp_transport *sctp_transport_new(const union sctp_addr *,
  864. gfp_t);
  865. void sctp_transport_set_owner(struct sctp_transport *,
  866. struct sctp_association *);
  867. void sctp_transport_route(struct sctp_transport *, union sctp_addr *,
  868. struct sctp_sock *);
  869. void sctp_transport_pmtu(struct sctp_transport *);
  870. void sctp_transport_free(struct sctp_transport *);
  871. void sctp_transport_reset_timers(struct sctp_transport *);
  872. void sctp_transport_hold(struct sctp_transport *);
  873. void sctp_transport_put(struct sctp_transport *);
  874. void sctp_transport_update_rto(struct sctp_transport *, __u32);
  875. void sctp_transport_raise_cwnd(struct sctp_transport *, __u32, __u32);
  876. void sctp_transport_lower_cwnd(struct sctp_transport *, sctp_lower_cwnd_t);
  877. unsigned long sctp_transport_timeout(struct sctp_transport *);
  878. /* This is the structure we use to queue packets as they come into
  879. * SCTP. We write packets to it and read chunks from it.
  880. */
  881. struct sctp_inq {
  882. /* This is actually a queue of sctp_chunk each
  883. * containing a partially decoded packet.
  884. */
  885. struct list_head in_chunk_list;
  886. /* This is the packet which is currently off the in queue and is
  887. * being worked on through the inbound chunk processing.
  888. */
  889. struct sctp_chunk *in_progress;
  890. /* This is the delayed task to finish delivering inbound
  891. * messages.
  892. */
  893. struct work_struct immediate;
  894. int malloced; /* Is this structure kfree()able? */
  895. };
  896. void sctp_inq_init(struct sctp_inq *);
  897. void sctp_inq_free(struct sctp_inq *);
  898. void sctp_inq_push(struct sctp_inq *, struct sctp_chunk *packet);
  899. struct sctp_chunk *sctp_inq_pop(struct sctp_inq *);
  900. void sctp_inq_set_th_handler(struct sctp_inq *, void (*)(void *), void *);
  901. /* This is the structure we use to hold outbound chunks. You push
  902. * chunks in and they automatically pop out the other end as bundled
  903. * packets (it calls (*output_handler)()).
  904. *
  905. * This structure covers sections 6.3, 6.4, 6.7, 6.8, 6.10, 7., 8.1,
  906. * and 8.2 of the v13 draft.
  907. *
  908. * It handles retransmissions. The connection to the timeout portion
  909. * of the state machine is through sctp_..._timeout() and timeout_handler.
  910. *
  911. * If you feed it SACKs, it will eat them.
  912. *
  913. * If you give it big chunks, it will fragment them.
  914. *
  915. * It assigns TSN's to data chunks. This happens at the last possible
  916. * instant before transmission.
  917. *
  918. * When free()'d, it empties itself out via output_handler().
  919. */
  920. struct sctp_outq {
  921. struct sctp_association *asoc;
  922. /* Data pending that has never been transmitted. */
  923. struct list_head out_chunk_list;
  924. unsigned out_qlen; /* Total length of queued data chunks. */
  925. /* Error of send failed, may used in SCTP_SEND_FAILED event. */
  926. unsigned error;
  927. /* These are control chunks we want to send. */
  928. struct list_head control_chunk_list;
  929. /* These are chunks that have been sacked but are above the
  930. * CTSN, or cumulative tsn ack point.
  931. */
  932. struct list_head sacked;
  933. /* Put chunks on this list to schedule them for
  934. * retransmission.
  935. */
  936. struct list_head retransmit;
  937. /* Put chunks on this list to save them for FWD TSN processing as
  938. * they were abandoned.
  939. */
  940. struct list_head abandoned;
  941. /* How many unackd bytes do we have in-flight? */
  942. __u32 outstanding_bytes;
  943. /* Corked? */
  944. char cork;
  945. /* Is this structure empty? */
  946. char empty;
  947. /* Are we kfree()able? */
  948. char malloced;
  949. };
  950. void sctp_outq_init(struct sctp_association *, struct sctp_outq *);
  951. void sctp_outq_teardown(struct sctp_outq *);
  952. void sctp_outq_free(struct sctp_outq*);
  953. int sctp_outq_tail(struct sctp_outq *, struct sctp_chunk *chunk);
  954. int sctp_outq_flush(struct sctp_outq *, int);
  955. int sctp_outq_sack(struct sctp_outq *, struct sctp_sackhdr *);
  956. int sctp_outq_is_empty(const struct sctp_outq *);
  957. void sctp_outq_restart(struct sctp_outq *);
  958. void sctp_retransmit(struct sctp_outq *, struct sctp_transport *,
  959. sctp_retransmit_reason_t);
  960. void sctp_retransmit_mark(struct sctp_outq *, struct sctp_transport *, __u8);
  961. int sctp_outq_uncork(struct sctp_outq *);
  962. /* Uncork and flush an outqueue. */
  963. static inline void sctp_outq_cork(struct sctp_outq *q)
  964. {
  965. q->cork = 1;
  966. }
  967. /* These bind address data fields common between endpoints and associations */
  968. struct sctp_bind_addr {
  969. /* RFC 2960 12.1 Parameters necessary for the SCTP instance
  970. *
  971. * SCTP Port: The local SCTP port number the endpoint is
  972. * bound to.
  973. */
  974. __u16 port;
  975. /* RFC 2960 12.1 Parameters necessary for the SCTP instance
  976. *
  977. * Address List: The list of IP addresses that this instance
  978. * has bound. This information is passed to one's
  979. * peer(s) in INIT and INIT ACK chunks.
  980. */
  981. struct list_head address_list;
  982. int malloced; /* Are we kfree()able? */
  983. };
  984. void sctp_bind_addr_init(struct sctp_bind_addr *, __u16 port);
  985. void sctp_bind_addr_free(struct sctp_bind_addr *);
  986. int sctp_bind_addr_copy(struct sctp_bind_addr *dest,
  987. const struct sctp_bind_addr *src,
  988. sctp_scope_t scope, gfp_t gfp,
  989. int flags);
  990. int sctp_add_bind_addr(struct sctp_bind_addr *, union sctp_addr *,
  991. __u8 use_as_src, gfp_t gfp);
  992. int sctp_del_bind_addr(struct sctp_bind_addr *, union sctp_addr *);
  993. int sctp_bind_addr_match(struct sctp_bind_addr *, const union sctp_addr *,
  994. struct sctp_sock *);
  995. union sctp_addr *sctp_find_unmatch_addr(struct sctp_bind_addr *bp,
  996. const union sctp_addr *addrs,
  997. int addrcnt,
  998. struct sctp_sock *opt);
  999. union sctp_params sctp_bind_addrs_to_raw(const struct sctp_bind_addr *bp,
  1000. int *addrs_len,
  1001. gfp_t gfp);
  1002. int sctp_raw_to_bind_addrs(struct sctp_bind_addr *bp, __u8 *raw, int len,
  1003. __u16 port, gfp_t gfp);
  1004. sctp_scope_t sctp_scope(const union sctp_addr *);
  1005. int sctp_in_scope(const union sctp_addr *addr, const sctp_scope_t scope);
  1006. int sctp_is_any(const union sctp_addr *addr);
  1007. int sctp_addr_is_valid(const union sctp_addr *addr);
  1008. /* What type of endpoint? */
  1009. typedef enum {
  1010. SCTP_EP_TYPE_SOCKET,
  1011. SCTP_EP_TYPE_ASSOCIATION,
  1012. } sctp_endpoint_type_t;
  1013. /*
  1014. * A common base class to bridge the implmentation view of a
  1015. * socket (usually listening) endpoint versus an association's
  1016. * local endpoint.
  1017. * This common structure is useful for several purposes:
  1018. * 1) Common interface for lookup routines.
  1019. * a) Subfunctions work for either endpoint or association
  1020. * b) Single interface to lookup allows hiding the lookup lock rather
  1021. * than acquiring it externally.
  1022. * 2) Common interface for the inbound chunk handling/state machine.
  1023. * 3) Common object handling routines for reference counting, etc.
  1024. * 4) Disentangle association lookup from endpoint lookup, where we
  1025. * do not have to find our endpoint to find our association.
  1026. *
  1027. */
  1028. struct sctp_ep_common {
  1029. /* Fields to help us manage our entries in the hash tables. */
  1030. struct sctp_ep_common *next;
  1031. struct sctp_ep_common **pprev;
  1032. int hashent;
  1033. /* Runtime type information. What kind of endpoint is this? */
  1034. sctp_endpoint_type_t type;
  1035. /* Some fields to help us manage this object.
  1036. * refcnt - Reference count access to this object.
  1037. * dead - Do not attempt to use this object.
  1038. * malloced - Do we need to kfree this object?
  1039. */
  1040. atomic_t refcnt;
  1041. char dead;
  1042. char malloced;
  1043. /* What socket does this endpoint belong to? */
  1044. struct sock *sk;
  1045. /* This is where we receive inbound chunks. */
  1046. struct sctp_inq inqueue;
  1047. /* This substructure includes the defining parameters of the
  1048. * endpoint:
  1049. * bind_addr.port is our shared port number.
  1050. * bind_addr.address_list is our set of local IP addresses.
  1051. */
  1052. struct sctp_bind_addr bind_addr;
  1053. /* Protection during address list comparisons. */
  1054. rwlock_t addr_lock;
  1055. };
  1056. /* RFC Section 1.4 Key Terms
  1057. *
  1058. * o SCTP endpoint: The logical sender/receiver of SCTP packets. On a
  1059. * multi-homed host, an SCTP endpoint is represented to its peers as a
  1060. * combination of a set of eligible destination transport addresses to
  1061. * which SCTP packets can be sent and a set of eligible source
  1062. * transport addresses from which SCTP packets can be received.
  1063. * All transport addresses used by an SCTP endpoint must use the
  1064. * same port number, but can use multiple IP addresses. A transport
  1065. * address used by an SCTP endpoint must not be used by another
  1066. * SCTP endpoint. In other words, a transport address is unique
  1067. * to an SCTP endpoint.
  1068. *
  1069. * From an implementation perspective, each socket has one of these.
  1070. * A TCP-style socket will have exactly one association on one of
  1071. * these. An UDP-style socket will have multiple associations hanging
  1072. * off one of these.
  1073. */
  1074. struct sctp_endpoint {
  1075. /* Common substructure for endpoint and association. */
  1076. struct sctp_ep_common base;
  1077. /* Associations: A list of current associations and mappings
  1078. * to the data consumers for each association. This
  1079. * may be in the form of a hash table or other
  1080. * implementation dependent structure. The data
  1081. * consumers may be process identification
  1082. * information such as file descriptors, named pipe
  1083. * pointer, or table pointers dependent on how SCTP
  1084. * is implemented.
  1085. */
  1086. /* This is really a list of struct sctp_association entries. */
  1087. struct list_head asocs;
  1088. /* Secret Key: A secret key used by this endpoint to compute
  1089. * the MAC. This SHOULD be a cryptographic quality
  1090. * random number with a sufficient length.
  1091. * Discussion in [RFC1750] can be helpful in
  1092. * selection of the key.
  1093. */
  1094. __u8 secret_key[SCTP_HOW_MANY_SECRETS][SCTP_SECRET_SIZE];
  1095. int current_key;
  1096. int last_key;
  1097. int key_changed_at;
  1098. /* digest: This is a digest of the sctp cookie. This field is
  1099. * only used on the receive path when we try to validate
  1100. * that the cookie has not been tampered with. We put
  1101. * this here so we pre-allocate this once and can re-use
  1102. * on every receive.
  1103. */
  1104. __u8 *digest;
  1105. /* sendbuf acct. policy. */
  1106. __u32 sndbuf_policy;
  1107. /* rcvbuf acct. policy. */
  1108. __u32 rcvbuf_policy;
  1109. };
  1110. /* Recover the outter endpoint structure. */
  1111. static inline struct sctp_endpoint *sctp_ep(struct sctp_ep_common *base)
  1112. {
  1113. struct sctp_endpoint *ep;
  1114. ep = container_of(base, struct sctp_endpoint, base);
  1115. return ep;
  1116. }
  1117. /* These are function signatures for manipulating endpoints. */
  1118. struct sctp_endpoint *sctp_endpoint_new(struct sock *, gfp_t);
  1119. void sctp_endpoint_free(struct sctp_endpoint *);
  1120. void sctp_endpoint_put(struct sctp_endpoint *);
  1121. void sctp_endpoint_hold(struct sctp_endpoint *);
  1122. void sctp_endpoint_add_asoc(struct sctp_endpoint *, struct sctp_association *);
  1123. struct sctp_association *sctp_endpoint_lookup_assoc(
  1124. const struct sctp_endpoint *ep,
  1125. const union sctp_addr *paddr,
  1126. struct sctp_transport **);
  1127. int sctp_endpoint_is_peeled_off(struct sctp_endpoint *,
  1128. const union sctp_addr *);
  1129. struct sctp_endpoint *sctp_endpoint_is_match(struct sctp_endpoint *,
  1130. const union sctp_addr *);
  1131. int sctp_has_association(const union sctp_addr *laddr,
  1132. const union sctp_addr *paddr);
  1133. int sctp_verify_init(const struct sctp_association *asoc, sctp_cid_t,
  1134. sctp_init_chunk_t *peer_init, struct sctp_chunk *chunk,
  1135. struct sctp_chunk **err_chunk);
  1136. int sctp_process_init(struct sctp_association *, sctp_cid_t cid,
  1137. const union sctp_addr *peer,
  1138. sctp_init_chunk_t *init, gfp_t gfp);
  1139. __u32 sctp_generate_tag(const struct sctp_endpoint *);
  1140. __u32 sctp_generate_tsn(const struct sctp_endpoint *);
  1141. /* RFC2960
  1142. *
  1143. * 12. Recommended Transmission Control Block (TCB) Parameters
  1144. *
  1145. * This section details a recommended set of parameters that should
  1146. * be contained within the TCB for an implementation. This section is
  1147. * for illustrative purposes and should not be deemed as requirements
  1148. * on an implementation or as an exhaustive list of all parameters
  1149. * inside an SCTP TCB. Each implementation may need its own additional
  1150. * parameters for optimization.
  1151. */
  1152. /* Here we have information about each individual association. */
  1153. struct sctp_association {
  1154. /* A base structure common to endpoint and association.
  1155. * In this context, it represents the associations's view
  1156. * of the local endpoint of the association.
  1157. */
  1158. struct sctp_ep_common base;
  1159. /* Associations on the same socket. */
  1160. struct list_head asocs;
  1161. /* association id. */
  1162. sctp_assoc_t assoc_id;
  1163. /* This is our parent endpoint. */
  1164. struct sctp_endpoint *ep;
  1165. /* These are those association elements needed in the cookie. */
  1166. struct sctp_cookie c;
  1167. /* This is all information about our peer. */
  1168. struct {
  1169. /* rwnd
  1170. *
  1171. * Peer Rwnd : Current calculated value of the peer's rwnd.
  1172. */
  1173. __u32 rwnd;
  1174. /* transport_addr_list
  1175. *
  1176. * Peer : A list of SCTP transport addresses that the
  1177. * Transport : peer is bound to. This information is derived
  1178. * Address : from the INIT or INIT ACK and is used to
  1179. * List : associate an inbound packet with a given
  1180. * : association. Normally this information is
  1181. * : hashed or keyed for quick lookup and access
  1182. * : of the TCB.
  1183. * : The list is also initialized with the list
  1184. * : of addresses passed with the sctp_connectx()
  1185. * : call.
  1186. *
  1187. * It is a list of SCTP_transport's.
  1188. */
  1189. struct list_head transport_addr_list;
  1190. /* transport_count
  1191. *
  1192. * Peer : A count of the number of peer addresses
  1193. * Transport : in the Peer Transport Address List.
  1194. * Address :
  1195. * Count :
  1196. */
  1197. __u16 transport_count;
  1198. /* port
  1199. * The transport layer port number.
  1200. */
  1201. __u16 port;
  1202. /* primary_path
  1203. *
  1204. * Primary : This is the current primary destination
  1205. * Path : transport address of the peer endpoint. It
  1206. * : may also specify a source transport address
  1207. * : on this endpoint.
  1208. *
  1209. * All of these paths live on transport_addr_list.
  1210. *
  1211. * At the bakeoffs, we discovered that the intent of
  1212. * primaryPath is that it only changes when the ULP
  1213. * asks to have it changed. We add the activePath to
  1214. * designate the connection we are currently using to
  1215. * transmit new data and most control chunks.
  1216. */
  1217. struct sctp_transport *primary_path;
  1218. /* Cache the primary path address here, when we
  1219. * need a an address for msg_name.
  1220. */
  1221. union sctp_addr primary_addr;
  1222. /* active_path
  1223. * The path that we are currently using to
  1224. * transmit new data and most control chunks.
  1225. */
  1226. struct sctp_transport *active_path;
  1227. /* retran_path
  1228. *
  1229. * RFC2960 6.4 Multi-homed SCTP Endpoints
  1230. * ...
  1231. * Furthermore, when its peer is multi-homed, an
  1232. * endpoint SHOULD try to retransmit a chunk to an
  1233. * active destination transport address that is
  1234. * different from the last destination address to
  1235. * which the DATA chunk was sent.
  1236. */
  1237. struct sctp_transport *retran_path;
  1238. /* Pointer to last transport I have sent on. */
  1239. struct sctp_transport *last_sent_to;
  1240. /* This is the last transport I have received DATA on. */
  1241. struct sctp_transport *last_data_from;
  1242. /*
  1243. * Mapping An array of bits or bytes indicating which out of
  1244. * Array order TSN's have been received (relative to the
  1245. * Last Rcvd TSN). If no gaps exist, i.e. no out of
  1246. * order packets have been received, this array
  1247. * will be set to all zero. This structure may be
  1248. * in the form of a circular buffer or bit array.
  1249. *
  1250. * Last Rcvd : This is the last TSN received in
  1251. * TSN : sequence. This value is set initially by
  1252. * : taking the peer's Initial TSN, received in
  1253. * : the INIT or INIT ACK chunk, and subtracting
  1254. * : one from it.
  1255. *
  1256. * Throughout most of the specification this is called the
  1257. * "Cumulative TSN ACK Point". In this case, we
  1258. * ignore the advice in 12.2 in favour of the term
  1259. * used in the bulk of the text. This value is hidden
  1260. * in tsn_map--we get it by calling sctp_tsnmap_get_ctsn().
  1261. */
  1262. struct sctp_tsnmap tsn_map;
  1263. __u8 _map[sctp_tsnmap_storage_size(SCTP_TSN_MAP_SIZE)];
  1264. /* Ack State : This flag indicates if the next received
  1265. * : packet is to be responded to with a
  1266. * : SACK. This is initializedto 0. When a packet
  1267. * : is received it is incremented. If this value
  1268. * : reaches 2 or more, a SACK is sent and the
  1269. * : value is reset to 0. Note: This is used only
  1270. * : when no DATA chunks are received out of
  1271. * : order. When DATA chunks are out of order,
  1272. * : SACK's are not delayed (see Section 6).
  1273. */
  1274. __u8 sack_needed; /* Do we need to sack the peer? */
  1275. /* These are capabilities which our peer advertised. */
  1276. __u8 ecn_capable; /* Can peer do ECN? */
  1277. __u8 ipv4_address; /* Peer understands IPv4 addresses? */
  1278. __u8 ipv6_address; /* Peer understands IPv6 addresses? */
  1279. __u8 hostname_address;/* Peer understands DNS addresses? */
  1280. __u8 asconf_capable; /* Does peer support ADDIP? */
  1281. __u8 prsctp_capable; /* Can peer do PR-SCTP? */
  1282. __u32 adaption_ind; /* Adaption Code point. */
  1283. /* This mask is used to disable sending the ASCONF chunk
  1284. * with specified parameter to peer.
  1285. */
  1286. __be16 addip_disabled_mask;
  1287. struct sctp_inithdr i;
  1288. int cookie_len;
  1289. void *cookie;
  1290. /* ADDIP Section 4.2 Upon reception of an ASCONF Chunk.
  1291. * C1) ... "Peer-Serial-Number'. This value MUST be initialized to the
  1292. * Initial TSN Value minus 1
  1293. */
  1294. __u32 addip_serial;
  1295. } peer;
  1296. /* State : A state variable indicating what state the
  1297. * : association is in, i.e. COOKIE-WAIT,
  1298. * : COOKIE-ECHOED, ESTABLISHED, SHUTDOWN-PENDING,
  1299. * : SHUTDOWN-SENT, SHUTDOWN-RECEIVED, SHUTDOWN-ACK-SENT.
  1300. *
  1301. * Note: No "CLOSED" state is illustrated since if a
  1302. * association is "CLOSED" its TCB SHOULD be removed.
  1303. *
  1304. * In this implementation we DO have a CLOSED
  1305. * state which is used during initiation and shutdown.
  1306. *
  1307. * State takes values from SCTP_STATE_*.
  1308. */
  1309. sctp_state_t state;
  1310. /* The cookie life I award for any cookie. */
  1311. struct timeval cookie_life;
  1312. /* Overall : The overall association error count.
  1313. * Error Count : [Clear this any time I get something.]
  1314. */
  1315. int overall_error_count;
  1316. /* These are the association's initial, max, and min RTO values.
  1317. * These values will be initialized by system defaults, but can
  1318. * be modified via the SCTP_RTOINFO socket option.
  1319. */
  1320. unsigned long rto_initial;
  1321. unsigned long rto_max;
  1322. unsigned long rto_min;
  1323. /* Maximum number of new data packets that can be sent in a burst. */
  1324. int max_burst;
  1325. /* This is the max_retrans value for the association. This value will
  1326. * be initialized initialized from system defaults, but can be
  1327. * modified by the SCTP_ASSOCINFO socket option.
  1328. */
  1329. int max_retrans;
  1330. /* Maximum number of times the endpoint will retransmit INIT */
  1331. __u16 max_init_attempts;
  1332. /* How many times have we resent an INIT? */
  1333. __u16 init_retries;
  1334. /* The largest timeout or RTO value to use in attempting an INIT */
  1335. unsigned long max_init_timeo;
  1336. /* Heartbeat interval: The endpoint sends out a Heartbeat chunk to
  1337. * the destination address every heartbeat interval. This value
  1338. * will be inherited by all new transports.
  1339. */
  1340. unsigned long hbinterval;
  1341. /* This is the max_retrans value for new transports in the
  1342. * association.
  1343. */
  1344. __u16 pathmaxrxt;
  1345. /* Association : The smallest PMTU discovered for all of the
  1346. * PMTU : peer's transport addresses.
  1347. */
  1348. __u32 pathmtu;
  1349. /* Flags controling Heartbeat, SACK delay, and Path MTU Discovery. */
  1350. __u32 param_flags;
  1351. /* SACK delay timeout */
  1352. unsigned long sackdelay;
  1353. unsigned long timeouts[SCTP_NUM_TIMEOUT_TYPES];
  1354. struct timer_list timers[SCTP_NUM_TIMEOUT_TYPES];
  1355. /* Transport to which SHUTDOWN chunk was last sent. */
  1356. struct sctp_transport *shutdown_last_sent_to;
  1357. /* Transport to which INIT chunk was last sent. */
  1358. struct sctp_transport *init_last_sent_to;
  1359. /* Next TSN : The next TSN number to be assigned to a new
  1360. * : DATA chunk. This is sent in the INIT or INIT
  1361. * : ACK chunk to the peer and incremented each
  1362. * : time a DATA chunk is assigned a TSN
  1363. * : (normally just prior to transmit or during
  1364. * : fragmentation).
  1365. */
  1366. __u32 next_tsn;
  1367. /*
  1368. * Last Rcvd : This is the last TSN received in sequence. This value
  1369. * TSN : is set initially by taking the peer's Initial TSN,
  1370. * : received in the INIT or INIT ACK chunk, and
  1371. * : subtracting one from it.
  1372. *
  1373. * Most of RFC 2960 refers to this as the Cumulative TSN Ack Point.
  1374. */
  1375. __u32 ctsn_ack_point;
  1376. /* PR-SCTP Advanced.Peer.Ack.Point */
  1377. __u32 adv_peer_ack_point;
  1378. /* Highest TSN that is acknowledged by incoming SACKs. */
  1379. __u32 highest_sacked;
  1380. /* The number of unacknowledged data chunks. Reported through
  1381. * the SCTP_STATUS sockopt.
  1382. */
  1383. __u16 unack_data;
  1384. /* This is the association's receive buffer space. This value is used
  1385. * to set a_rwnd field in an INIT or a SACK chunk.
  1386. */
  1387. __u32 rwnd;
  1388. /* This is the last advertised value of rwnd over a SACK chunk. */
  1389. __u32 a_rwnd;
  1390. /* Number of bytes by which the rwnd has slopped. The rwnd is allowed
  1391. * to slop over a maximum of the association's frag_point.
  1392. */
  1393. __u32 rwnd_over;
  1394. /* This is the sndbuf size in use for the association.
  1395. * This corresponds to the sndbuf size for the association,
  1396. * as specified in the sk->sndbuf.
  1397. */
  1398. int sndbuf_used;
  1399. /* This is the amount of memory that this association has allocated
  1400. * in the receive path at any given time.
  1401. */
  1402. atomic_t rmem_alloc;
  1403. /* This is the wait queue head for send requests waiting on
  1404. * the association sndbuf space.
  1405. */
  1406. wait_queue_head_t wait;
  1407. /* The message size at which SCTP fragmentation will occur. */
  1408. __u32 frag_point;
  1409. /* Counter used to count INIT errors. */
  1410. int init_err_counter;
  1411. /* Count the number of INIT cycles (for doubling timeout). */
  1412. int init_cycle;
  1413. /* Default send parameters. */
  1414. __u16 default_stream;
  1415. __u16 default_flags;
  1416. __u32 default_ppid;
  1417. __u32 default_context;
  1418. __u32 default_timetolive;
  1419. /* This tracks outbound ssn for a given stream. */
  1420. struct sctp_ssnmap *ssnmap;
  1421. /* All outbound chunks go through this structure. */
  1422. struct sctp_outq outqueue;
  1423. /* A smart pipe that will handle reordering and fragmentation,
  1424. * as well as handle passing events up to the ULP.
  1425. */
  1426. struct sctp_ulpq ulpq;
  1427. /* Last TSN that caused an ECNE Chunk to be sent. */
  1428. __u32 last_ecne_tsn;
  1429. /* Last TSN that caused a CWR Chunk to be sent. */
  1430. __u32 last_cwr_tsn;
  1431. /* How many duplicated TSNs have we seen? */
  1432. int numduptsns;
  1433. /* Number of seconds of idle time before an association is closed.
  1434. * In the association context, this is really used as a boolean
  1435. * since the real timeout is stored in the timeouts array
  1436. */
  1437. __u32 autoclose;
  1438. /* These are to support
  1439. * "SCTP Extensions for Dynamic Reconfiguration of IP Addresses
  1440. * and Enforcement of Flow and Message Limits"
  1441. * <draft-ietf-tsvwg-addip-sctp-02.txt>
  1442. * or "ADDIP" for short.
  1443. */
  1444. /* ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
  1445. *
  1446. * R1) One and only one ASCONF Chunk MAY be in transit and
  1447. * unacknowledged at any one time. If a sender, after sending
  1448. * an ASCONF chunk, decides it needs to transfer another
  1449. * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
  1450. * returns from the previous ASCONF Chunk before sending a
  1451. * subsequent ASCONF. Note this restriction binds each side,
  1452. * so at any time two ASCONF may be in-transit on any given
  1453. * association (one sent from each endpoint).
  1454. *
  1455. * [This is our one-and-only-one ASCONF in flight. If we do
  1456. * not have an ASCONF in flight, this is NULL.]
  1457. */
  1458. struct sctp_chunk *addip_last_asconf;
  1459. /* ADDIP Section 4.2 Upon reception of an ASCONF Chunk.
  1460. *
  1461. * IMPLEMENTATION NOTE: As an optimization a receiver may wish
  1462. * to save the last ASCONF-ACK for some predetermined period
  1463. * of time and instead of re-processing the ASCONF (with the
  1464. * same serial number) it may just re-transmit the
  1465. * ASCONF-ACK. It may wish to use the arrival of a new serial
  1466. * number to discard the previously saved ASCONF-ACK or any
  1467. * other means it may choose to expire the saved ASCONF-ACK.
  1468. *
  1469. * [This is our saved ASCONF-ACK. We invalidate it when a new
  1470. * ASCONF serial number arrives.]
  1471. */
  1472. struct sctp_chunk *addip_last_asconf_ack;
  1473. /* These ASCONF chunks are waiting to be sent.
  1474. *
  1475. * These chunaks can't be pushed to outqueue until receiving
  1476. * ASCONF_ACK for the previous ASCONF indicated by
  1477. * addip_last_asconf, so as to guarantee that only one ASCONF
  1478. * is in flight at any time.
  1479. *
  1480. * ADDIP Section 4.1.1 Congestion Control of ASCONF Chunks
  1481. *
  1482. * In defining the ASCONF Chunk transfer procedures, it is
  1483. * essential that these transfers MUST NOT cause congestion
  1484. * within the network. To achieve this, we place these
  1485. * restrictions on the transfer of ASCONF Chunks:
  1486. *
  1487. * R1) One and only one ASCONF Chunk MAY be in transit and
  1488. * unacknowledged at any one time. If a sender, after sending
  1489. * an ASCONF chunk, decides it needs to transfer another
  1490. * ASCONF Chunk, it MUST wait until the ASCONF-ACK Chunk
  1491. * returns from the previous ASCONF Chunk before sending a
  1492. * subsequent ASCONF. Note this restriction binds each side,
  1493. * so at any time two ASCONF may be in-transit on any given
  1494. * association (one sent from each endpoint).
  1495. *
  1496. *
  1497. * [I really think this is EXACTLY the sort of intelligence
  1498. * which already resides in sctp_outq. Please move this
  1499. * queue and its supporting logic down there. --piggy]
  1500. */
  1501. struct list_head addip_chunk_list;
  1502. /* ADDIP Section 4.1 ASCONF Chunk Procedures
  1503. *
  1504. * A2) A serial number should be assigned to the Chunk. The
  1505. * serial number SHOULD be a monotonically increasing
  1506. * number. The serial number SHOULD be initialized at
  1507. * the start of the association to the same value as the
  1508. * Initial TSN and every time a new ASCONF chunk is created
  1509. * it is incremented by one after assigning the serial number
  1510. * to the newly created chunk.
  1511. *
  1512. * ADDIP
  1513. * 3.1.1 Address/Stream Configuration Change Chunk (ASCONF)
  1514. *
  1515. * Serial Number : 32 bits (unsigned integer)
  1516. *
  1517. * This value represents a Serial Number for the ASCONF
  1518. * Chunk. The valid range of Serial Number is from 0 to
  1519. * 4294967295 (2^32 - 1). Serial Numbers wrap back to 0
  1520. * after reaching 4294967295.
  1521. */
  1522. __u32 addip_serial;
  1523. /* Need to send an ECNE Chunk? */
  1524. char need_ecne;
  1525. /* Is it a temporary association? */
  1526. char temp;
  1527. };
  1528. /* An eyecatcher for determining if we are really looking at an
  1529. * association data structure.
  1530. */
  1531. enum {
  1532. SCTP_ASSOC_EYECATCHER = 0xa550c123,
  1533. };
  1534. /* Recover the outter association structure. */
  1535. static inline struct sctp_association *sctp_assoc(struct sctp_ep_common *base)
  1536. {
  1537. struct sctp_association *asoc;
  1538. asoc = container_of(base, struct sctp_association, base);
  1539. return asoc;
  1540. }
  1541. /* These are function signatures for manipulating associations. */
  1542. struct sctp_association *
  1543. sctp_association_new(const struct sctp_endpoint *, const struct sock *,
  1544. sctp_scope_t scope, gfp_t gfp);
  1545. void sctp_association_free(struct sctp_association *);
  1546. void sctp_association_put(struct sctp_association *);
  1547. void sctp_association_hold(struct sctp_association *);
  1548. struct sctp_transport *sctp_assoc_choose_init_transport(
  1549. struct sctp_association *);
  1550. struct sctp_transport *sctp_assoc_choose_shutdown_transport(
  1551. struct sctp_association *);
  1552. void sctp_assoc_update_retran_path(struct sctp_association *);
  1553. struct sctp_transport *sctp_assoc_lookup_paddr(const struct sctp_association *,
  1554. const union sctp_addr *);
  1555. int sctp_assoc_lookup_laddr(struct sctp_association *asoc,
  1556. const union sctp_addr *laddr);
  1557. struct sctp_transport *sctp_assoc_add_peer(struct sctp_association *,
  1558. const union sctp_addr *address,
  1559. const gfp_t gfp,
  1560. const int peer_state);
  1561. void sctp_assoc_del_peer(struct sctp_association *asoc,
  1562. const union sctp_addr *addr);
  1563. void sctp_assoc_rm_peer(struct sctp_association *asoc,
  1564. struct sctp_transport *peer);
  1565. void sctp_assoc_control_transport(struct sctp_association *,
  1566. struct sctp_transport *,
  1567. sctp_transport_cmd_t, sctp_sn_error_t);
  1568. struct sctp_transport *sctp_assoc_lookup_tsn(struct sctp_association *, __u32);
  1569. struct sctp_transport *sctp_assoc_is_match(struct sctp_association *,
  1570. const union sctp_addr *,
  1571. const union sctp_addr *);
  1572. void sctp_assoc_migrate(struct sctp_association *, struct sock *);
  1573. void sctp_assoc_update(struct sctp_association *old,
  1574. struct sctp_association *new);
  1575. __u32 sctp_association_get_next_tsn(struct sctp_association *);
  1576. void sctp_assoc_sync_pmtu(struct sctp_association *);
  1577. void sctp_assoc_rwnd_increase(struct sctp_association *, unsigned);
  1578. void sctp_assoc_rwnd_decrease(struct sctp_association *, unsigned);
  1579. void sctp_assoc_set_primary(struct sctp_association *,
  1580. struct sctp_transport *);
  1581. int sctp_assoc_set_bind_addr_from_ep(struct sctp_association *,
  1582. gfp_t);
  1583. int sctp_assoc_set_bind_addr_from_cookie(struct sctp_association *,
  1584. struct sctp_cookie*,
  1585. gfp_t gfp);
  1586. int sctp_cmp_addr_exact(const union sctp_addr *ss1,
  1587. const union sctp_addr *ss2);
  1588. struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc);
  1589. /* A convenience structure to parse out SCTP specific CMSGs. */
  1590. typedef struct sctp_cmsgs {
  1591. struct sctp_initmsg *init;
  1592. struct sctp_sndrcvinfo *info;
  1593. } sctp_cmsgs_t;
  1594. /* Structure for tracking memory objects */
  1595. typedef struct {
  1596. char *label;
  1597. atomic_t *counter;
  1598. } sctp_dbg_objcnt_entry_t;
  1599. #endif /* __sctp_structs_h__ */