structs.h 63 KB

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