structs.h 64 KB

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