structs.h 61 KB

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